summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/misc.c
AgeCommit message (Expand)Author
2020-05-29Allow some keywords to expand shell-style ${ENV} environmentDarren Tucker
2020-05-29Fix multiplier in convtime when handling seconds after other units.Darren Tucker
2020-05-26add fmt_timeframe() (from bgpd) to format a time interval in a human-Damien Miller
2020-04-25We've standardized on memset over bzero, replace a couple that had slippedDarren Tucker
2020-01-28make IPTOS_DSCP_LE available via IPQoS directive; bz2986, based onDamien Miller
2020-01-24add xextendf() to extend a string with a format (reallocating asDamien Miller
2020-01-23Replace all calls to signal(2) with a wrapper around sigaction(2).Darren Tucker
2019-11-22Wait for FD to be readable or writeable during a nonblocking connect,Darren Tucker
2019-09-03move authorized_keys option parsing helpsers to misc.c and makeDamien Miller
2019-09-03move skip_space() to misc.c and make it public; ok markus@Damien Miller
2019-08-16switch percent_expand() to use sshbuf instead of a limited fixed buffer;Damien Miller
2019-06-28When system calls indicate an error they return -1, not some arbitraryTheo de Raadt
2019-06-27Some asprintf() calls were checked < 0, rather than the precise == -1.Theo de Raadt
2019-01-23Remove support for obsolete host/port syntax.Darren Tucker
2018-12-27move client/server SSH-* banners to buffers under ssh->kex and factorDamien Miller
2018-12-07Fix calculation of initial bandwidth limits.Darren Tucker
2018-11-16use path_absolute() for pathname checks; from Manoj AmpalamDamien Miller
2018-10-05Support using service names for port numbers.Christian Weisgerber
2018-10-03Allow ssh_config IdentityAgent directive to accept environment variableDamien Miller
2018-07-27Remove uid checks from low port binds. Now that ssh cannot beDarren Tucker
2018-07-18Remove support for running ssh(1) setuid and fatal if attempted.Darren Tucker
2018-06-09add a SetEnv directive to ssh_config that allows setting environmentDamien Miller
2018-06-06switch config file parsing to getline(3) as this avoids static limitsMarkus Friedl
2018-03-12add valid-before="[time]" authorized_keys option. A simple way ofDamien Miller
2018-03-07revert recent strdelim() change, it causes problems with some configs.Damien Miller
2018-03-03switch over to the new authorized_keys options API and remove theDamien Miller
2018-03-02Allow escaped quotes \" and \' in ssh_config and sshd_config quotesDamien Miller
2018-01-08move subprocess() so scp/sftp do not need uidswap.o; ok djm@Markus Friedl
2017-12-08fix ordering in previous to ensure errno isn't clobbered beforeDamien Miller
2017-12-08for some reason unix_listener() logged most errors twice with eachDamien Miller
2017-12-05Replace atoi and strtol conversions for integer arguments to configDarren Tucker
2017-11-25Add monotime_ts and monotime_tv that return monotonic timespec andDarren Tucker
2017-10-25add sshd_config RDomain keyword to place sshd and the subsequentDamien Miller
2017-10-25Add optional rdomain qualifier to sshd_config's ListenAddress optionDamien Miller
2017-10-24Kill dead store and some spaces vs. tabs indent in parse_user_host_path().Todd C. Miller
2017-10-23Expose devices allocated for tun/tap forwarding.Damien Miller
2017-10-21Add URI support to ssh, sftp and scp. For example ssh://user@hostTodd C. Miller
2017-08-18add a "quiet" flag to exited_cleanly() that supresses errors aboutDamien Miller
2017-08-18Move several subprocess-related functions from various locations toDamien Miller
2017-07-23Allow IPQoS=none in ssh/sshd to not set an explicit ToS/DSCP valueDamien Miller
2017-05-31Switch to recallocarray() for a few operations. Both growth and shrinkageTheo de Raadt
2017-03-14Fix convtime() overflow test on boundary condition, spotted by & ok djm.Darren Tucker
2017-03-14Check for integer overflow when parsing times in convtime(). Reported byDarren Tucker
2016-11-30On startup, check to see if sshd is already daemonized and if so,Darren Tucker
2016-10-23Factor out "can bind to low ports" check into its own function. This will makeDarren Tucker
2016-07-15Add a ProxyJump ssh_config(5) option and corresponding -J ssh(1)Damien Miller
2016-04-06don't record duplicate LocalForward and RemoteForward entries;Damien Miller
2016-04-02Another use for fcntl() and thus of the superfluous 3rd parameterKenneth R Westerback
2016-03-02Improve precision of progressmeter for sftp and scp by storing sub-secondDarren Tucker
2016-01-20Include sys/time.h for gettimeofday. From sortie at maxsi.org.Darren Tucker