summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/misc.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* highly polished whitespace, mostly fixing spaces-for-tab and baddjm2021-04-031-2/+2
* Fix two problems in string->argv conversion: 1) multiple backslashesdjm2021-04-031-7/+4
* Do not try to reset signal handler for signal 0 in subprocess.dtucker2021-02-281-2/+2
* factor out opt_array_append; ok djm@markus2021-02-151-1/+27
* Change types in convtime() unit test to int to match change its new type.dtucker2021-01-151-3/+3
* In waitfd(), when poll returns early we are subtracting the elapsed timedtucker2021-01-151-2/+2
* Change convtime() from returning long to returning int. On platformsdtucker2021-01-111-5/+5
* move subprocess() from auth.c to misc.cdjm2020-12-221-1/+170
* Set the specified TOS/DSCP for interactive use prior to TCP connect.djm2020-11-271-1/+44
* use the new variant log macros instead of prepending __func__ anddjm2020-10-181-54/+43
* There are lots of place where we want to redirect stdin, stdoutdjm2020-10-031-1/+22
* handle EINTR in waitfd() and timeout_connect() helpers;djm2020-06-261-8/+13
* Make dollar_expand variadic and pass a real va_list to vdollar_percent_expand.dtucker2020-05-291-3/+12
* Pass a NULL instead of zeroed out va_list from dollar_expand. The originaldtucker2020-05-291-4/+2
* Allow some keywords to expand shell-style ${ENV} environmentdtucker2020-05-291-31/+134
* Fix multiplier in convtime when handling seconds after other units.dtucker2020-05-291-2/+3
* add fmt_timeframe() (from bgpd) to format a time interval in a human-djm2020-05-261-20/+51
* We've standardized on memset over bzero, replace a couple that had slippeddtucker2020-04-251-2/+2
* make IPTOS_DSCP_LE available via IPQoS directive; bz2986, based ondjm2020-01-281-1/+2
* add xextendf() to extend a string with a format (reallocating asdjm2020-01-241-1/+28
* Replace all calls to signal(2) with a wrapper around sigaction(2).dtucker2020-01-231-1/+18
* Wait for FD to be readable or writeable during a nonblocking connect,dtucker2019-11-221-6/+16
* move authorized_keys option parsing helpsers to misc.c and makedjm2019-09-031-1/+73
* move skip_space() to misc.c and make it public; ok markus@djm2019-09-031-1/+11
* switch percent_expand() to use sshbuf instead of a limited fixed buffer;djm2019-08-161-15/+24
* When system calls indicate an error they return -1, not some arbitraryderaadt2019-06-281-9/+9
* Some asprintf() calls were checked < 0, rather than the precise == -1.deraadt2019-06-271-2/+2
* Remove support for obsolete host/port syntax.dtucker2019-01-231-2/+2
* move client/server SSH-* banners to buffers under ssh->kex and factordjm2018-12-271-1/+76
* Fix calculation of initial bandwidth limits.dtucker2018-12-071-5/+4
* use path_absolute() for pathname checks; from Manoj Ampalamdjm2018-11-161-1/+8
* Support using service names for port numbers.naddy2018-10-051-4/+8
* Allow ssh_config IdentityAgent directive to accept environment variabledjm2018-10-031-1/+20
* Remove uid checks from low port binds. Now that ssh cannot bedtucker2018-07-271-10/+1
* Remove support for running ssh(1) setuid and fatal if attempted.dtucker2018-07-181-2/+1
* add a SetEnv directive to ssh_config that allows setting environmentdjm2018-06-091-6/+26
* switch config file parsing to getline(3) as this avoids static limitsmarkus2018-06-061-26/+1
* add valid-before="[time]" authorized_keys option. A simple way ofdjm2018-03-121-1/+54
* revert recent strdelim() change, it causes problems with some configs.djm2018-03-071-19/+8
* switch over to the new authorized_keys options API and remove thedjm2018-03-031-1/+2
* Allow escaped quotes \" and \' in ssh_config and sshd_config quotesdjm2018-03-021-8/+19
* move subprocess() so scp/sftp do not need uidswap.o; ok djm@markus2018-01-081-153/+1
* fix ordering in previous to ensure errno isn't clobbered beforedjm2017-12-081-4/+4
* for some reason unix_listener() logged most errors twice with eachdjm2017-12-081-9/+10
* Replace atoi and strtol conversions for integer arguments to configdtucker2017-12-051-1/+15
* Add monotime_ts and monotime_tv that return monotonic timespec anddtucker2017-11-251-13/+26
* add sshd_config RDomain keyword to place sshd and the subsequentdjm2017-10-251-2/+18
* Add optional rdomain qualifier to sshd_config's ListenAddress optiondjm2017-10-251-1/+39
* Kill dead store and some spaces vs. tabs indent in parse_user_host_path().millert2017-10-241-4/+4
* Expose devices allocated for tun/tap forwarding.djm2017-10-231-2/+8