summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-add.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-06-14for public key authentication, check AuthorizedKeysFiles files beforedjm1-11/+18
consulting AuthorizedKeysCommand; ok dtucker markus
2019-06-14if passed a bad fd, log what it wasdjm1-2/+2
2019-06-13Use the right client when working out where to save or load the buffer,nicm2-4/+4
reported by kn@.
2019-06-13Do not crash if the environment variable is present but empty.nicm1-2/+2
2019-06-13Use PWAIT instead of PUSER in exit1().mpi1-2/+2
When the main thread of a MT process dies, it doesn't matter at which priority it gets awaken to do the lasts cleanups. Not using PUSER makes it easier to understand the existing scheduler logic. ok visa@
2019-06-13free(9) sizes for buffers.mpi1-4/+4
ok anton@, sashan@
2019-06-13free(9) sizes.mpi1-4/+3
ok kn@
2019-06-13tweak previous;jmc1-3/+3
2019-06-13Do not consider the pipe as halted if the device is gone.mpi1-1/+3
Analysed by and ok claudio@
2019-06-13When tcp_close() is running in parallel with fill_file(), the kernelbluhm1-2/+17
could crash due to missing inp_ppcb. This happend when fstat(1) was called often and TCP was aborted with reset. Protect the sysctl path with the net lock. OK mpi@
2019-06-13Do memory size calculations as unsigned long. Otherwisebluhm1-2/+2
netstat -m would print the result of a signed interger overflow if kern.maxclusters is 1048576 or above. OK claudio@
2019-06-13Set the cursor x at the same time as changing the y or the end of linenicm1-5/+5
marker may not be redrawn.
2019-06-13Add regular expression support for the format search, match andnicm6-67/+240
substitute modifiers.
2019-06-13su(I) goes back all the way to v1:schwarze1-4/+4
https://www.tuhs.org/Archive/Distributions/Research/Dennis_v1/man13.pdf It wasn't in v0 PDP-7 UNIX though: https://www.tuhs.org/Archive/Distributions/Research/McIlroy_v0/UnixEditionZero.txt
2019-06-13extend the resolver interface to delegate res_query() calls to the lka.eric5-8/+107
ok gilles@ sunil@
2019-06-13In arp_rtrequest and nd6_rtrequest return early if the RTF_MPLS flag isclaudio2-4/+5
set. These mpls routes use the rt_llinfo structure to store the MPLS label and would confuse the arp and nd6 code. OK bluhm@ anton@ Reported-by: syzbot+927e93a362f3ae33dd9c@syzkaller.appspotmail.com
2019-06-13Copy the user provided sockaddr into a normalized sockaddr in rtrequest()claudio5-20/+67
before adding it to the routing table. The rtable code is doing memcmp() of those rt_dest sockaddrs so it is important that they are stored in a canonical form. To do this struct domain is extended to include the sockaddr size for this address family. OK bluhm@ anton@ Reported-by: syzbot+10fe9cd8d0211c562ead@syzkaller.appspotmail.com
2019-06-13Add more options to pkcs12 and smime in appstest.shinoguchi1-10/+13
2019-06-13vmm(4): Pass through CPUID function/leaf 0x16 for processor speed.mlarkin1-8/+6
ok deraadt, pd, phessler
2019-06-13the rx drops field is 8 bits (and a 24 bit flow tag), not 32 bits.dlg1-2/+3
sympathy from jmatthew@
2019-06-12The output of line info in the line.log file now contains thelum1-5/+16
character the cursor is over. This corresponds to the 'a' character before the '|' character below: >0x78898a94340 b^0x7889632b320 f.0x7889632b340 3 3 a|abc Previously it would not have been shown: >0x78898a94340 b^0x7889632b320 f.0x7889632b340 3 3 |abc Also, a fake new-line character is shown with '-' before the '|' char. >0x78898a94340 b^0x7889632b320 f.0x7889632b340 3 3 -|
2019-06-12change "ssl" to "tls" in various identifiers.eric9-126/+126
no functional change. ok gilles@
2019-06-12tweak previous;jmc1-2/+7
2019-06-12Hostname->HostName cleanup; from lauri tirkkonenjmc7-22/+22
ok dtucker
2019-06-12Set malloc_options in global scope with an initializer.bluhm2-10/+8
recommended by otto@
2019-06-12these were moved to key.[ch] in previous commitgilles2-0/+0
2019-06-12use acme-client to sign certificated with ecdsa keysgilles12-132/+229
diff from Renaud Allard <renaud@allard.it>, ok to get in from florian@
2019-06-12add missing backlinks to ssl(3)schwarze31-64/+100
2019-06-12Do not use $TMUX to find the session because for windows in multiplenicm1-65/+10
sessions it is wrong as often as it is right, and for windows in one session it is pointless. Instead check TMUX_PANE to find the pane and look for the MRU session as usual. GitHub issue 1793.
2019-06-12List all 17 SSL pages that were missing.schwarze1-51/+89
Split some excessively long lists into useful sub-categories. Add a new, very short subsection "Obsolete functions" at the end. OK tb@ jmc@
2019-06-12Pass target on to new commands with if -F.nicm1-7/+8
2019-06-12when "login" is not specified, "root" is used;schwarze1-2/+7
omission reported by Nan Xiao <xiaonan830818 at gmail dot com> on misc@
2019-06-12Do not always resize the window back to its original size after applyingnicm1-5/+2
a layout, let the normal window resize process do it. This means windows are not resized at all if window-size is manual, and are not resized multiple times if later attached to a different size terminal.
2019-06-12A note about log.c.lum1-1/+11
2019-06-12deraadt noticed some inconsistency in the way we denote the "Hostname" andjmc2-10/+10
"X11UseLocalhost" keywords; this makes things consistent (effectively reversing my commit of yesterday); ok deraadt markus djm
2019-06-12Fix init of syslog for childs and teach dns process about synced state.otto6-30/+39
ok benno@
2019-06-12a few cleanups and simplifications possible now that static pw is gone.tedu1-12/+11
noted by martijn. ok martijn.
2019-06-12Set interrupt moderation on the completion queue for around 10000jmatthew1-2/+8
interrupts per second, or 90% of the cq size. ok dlg@
2019-06-11Disable junking with malloc options. If set, the test hangs on lowbluhm1-2/+5
memory arm64 machines. found by patrick@; OK otto@
2019-06-11Fix typo which resulted in a segfault in ebgp multihop setups.florian1-2/+2
OK claudio
2019-06-11fix bogus cross references: there is no ELF(3) manual page;schwarze1-4/+4
pointed out by naddy@
2019-06-11do not use plain-text ELF(3) to reference page titles, use .Nm or .Xr.:schwarze6-16/+34
issue noticed by naddy@ when he inspected a bug report from aalm@; while here, use .At where appropriate; OK naddy@ jmc@
2019-06-11make things slightly less insane:espie1-25/+23
- actually use the ERRORS framework for REGRESS_LOG - put it at end of file, as best working (years of practice on bsd.port.mk) - actually use .SILENT - fix REGRESS_IGNORE_FAIL. Don't put a - in front of lines, but just don't error out as false on FAILED tests. This finally allows ^C to actually interrupt a testsuite. - add one missing .PHONY (quite a few more for later) okay bluhm@
2019-06-11Do not access a NULL pointer if a table contains a horizontal lineschwarze4-7/+110
next to a table line having fewer columns than the table as a whole. Bug found by Stephen Gregoratto <dev at sgregoratto dot me> with aerc-config(5).
2019-06-11Remove unused scheduler related definitions.mpi5-19/+5
ok visa@
2019-06-11regenjcs13-26/+39
2019-06-11make 10 wsmouse devicesjcs1-2/+2
for anything other than a regular old mouse, X needs to be able to directly talk to the device and newer machines can have all kinds of touchscreens, pen devices, touchpads, etc. ok deraadt
2019-06-11consistent lettering for "HostName" keyword; from lauri tirkkonenjmc1-3/+3
2019-06-11Do not resize panes unless they are in an attached, active window. Fromnicm1-2/+9
Morten M Neergaard in GitHub issue 1782.
2019-06-11drm: don't block fb changes for async plane updatesjsg2-10/+20
From Helen Koike fbb7e114e6e690c46f170dedd6fd2fb22f241519 in linux 4.19.y/4.19.50 89a4aac0ab0e6f5eea10d7bf4869dd15c3de2cd4 in mainline linux