summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/sshd.c
AgeCommit message (Expand)Author
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
2019-01-17many of the global variables in this file can be made static;Damien Miller
2018-12-27move client/server SSH-* banners to buffers under ssh->kex and factorDamien Miller
2018-11-19silence (to log level debug2) failure messages when loading the defaultDamien Miller
2018-11-16use path_absolute() for pathname checks; from Manoj AmpalamDamien Miller
2018-10-23refer to OpenSSL not SSLeay;Damien Miller
2018-09-21when compiled with GSSAPI support, cache supported method OIDs byDamien Miller
2018-09-13hold our collective noses and use the openssl-1.1.x API in OpenSSH;Damien Miller
2018-08-13revert compat.[ch] section of the following change. It causesDamien Miller
2018-07-31fix some memory leaks spotted by Coverity via Jakub Jelen in bz#2366Damien Miller
2018-07-11remove legacy key emulation layer; ok djm@Markus Friedl
2018-07-09sshd: switch config to sshbuf API; ok djm@Markus Friedl