summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/sshd.c
AgeCommit message (Expand)Author
2021-03-12Add ModuliFile keyword to sshd_config to specify the location of theDarren Tucker
2021-02-05Remove debug message from sigchld handler. While this works on OpenBSDDarren Tucker
2021-01-27make ssh->kex->session_id a sshbuf instead of u_char*/size_t andDamien Miller
2021-01-27remove global variable used to stash compat flags and use theDamien Miller
2021-01-09Add PerSourceMaxStartups and PerSourceNetBlockSize options which provideDarren Tucker
2020-12-29Update/replace the experimental post-quantim hybrid key exchangeDamien Miller
2020-11-08Replace WITH_OPENSSL ifdefs in log calls with a macro. The log callsDarren Tucker
2020-10-18use the new variant log macros instead of prepending __func__ andDamien Miller
2020-10-16LogVerbose keyword for ssh and sshdDamien Miller
2020-10-03There are lots of place where we want to redirect stdin, stdoutDamien Miller
2020-08-27support for user-verified FIDO keysDamien Miller
2020-07-03update setproctitle after re-exec; ok djmMarkus Friedl
2020-07-03keep ignoring HUP after fork+exec; ok djmMarkus Friedl
2020-07-03don't exit the listener on send_rexec_state errors; ok djmMarkus Friedl
2020-06-18check public host key matches private; ok markus@ (as part ofDamien Miller
2020-06-05unbreak "sshd -ddd" - close of config passing fd happened too early.Damien Miller
2020-05-26improve logging for MaxStartups connection throttling: have sshd logDamien Miller
2020-05-15sshd listener must not block if reexecd sshd exits early:Markus Friedl
2020-05-08fix compilation with DEBUG_KEXDH; bz#3160 ok dtucker@Damien Miller
2020-03-13use sshpkt_fatal() for kex_exchange_identification() errors.Damien Miller
2020-03-13Don't clear alarm timers in listening sshd. Previously these timers wereDarren Tucker
2020-03-13spelling errors in comments; no code changeDamien Miller
2020-01-31whitespaceDamien Miller
2020-01-31force early logging to stderr if debug_flag (-d) is set; avoidsDamien Miller
2020-01-31mistake in previous: filling the incorrect bufferDamien Miller
2020-01-31Add a sshd_config "Include" directive to allow inclusion of files.Damien Miller
2020-01-24tweak proctitle to include sshd arguments, as these are frequentlyDamien Miller
2020-01-23Replace all calls to signal(2) with a wrapper around sigaction(2).Darren Tucker
2020-01-21expose the number of currently-authenticating connectionsDamien Miller
2019-12-15allow security keys to act as host keys as well as user keys.Damien Miller
2019-11-18additional missing stdarg.h includes when built without WITH_OPENSSL; ok djm@Christian Weisgerber
2019-11-13When clients get denied by MaxStartups, send a noification prior toDarren Tucker
2019-10-31Refactor signing - use sshkey_sign for everything, including the newDamien Miller
2019-10-29Signal handler cleanup: remove leftover support for unreliable signalsDarren Tucker
2019-06-28When system calls indicate an error they return -1, not some arbitraryTheo de Raadt
2019-06-21Add protection for private keys at rest in RAM against speculationDamien Miller
2019-06-06Replace calls to ssh_malloc_init() by a static init of malloc_options.Otto Moerbeek
2019-04-18When running sshd -T, assume any attibute not provided by -C does not match,Darren Tucker
2019-03-01Fix two race conditions in sshd relating to SIGHUP:Damien Miller
2019-01-21merge kexkem[cs] into kexgenDamien Miller
2019-01-21use KEM API for vanilla ECDHDamien Miller
2019-01-21use KEM API for vanilla DH KEXDamien Miller
2019-01-21use KEM API for vanilla c25519 KEXDamien Miller
2019-01-21Add support for a PQC KEX/KEM: sntrup4591761x25519-sha512@tinyssh.orgDamien Miller
2019-01-19remove last references to active_stateDamien Miller
2019-01-19convert monitor.c to new packet APIDamien Miller
2019-01-19convert sshd.c to new packet APIDamien Miller
2019-01-19convert auth2.c to new packet APIDamien Miller
2019-01-19convert servconf.c to new packet APIDamien Miller
2019-01-19begin landing remaining refactoring of packet parsing API, startedDamien Miller