summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-09-04correct function name in error messagesDamien Miller
2015-09-04better document ExitOnForwardFailure; bz#2444, ok dtucker@Damien Miller
2015-09-04don't record hostbased authentication hostkeys as user keysDamien Miller
in test for multiple authentication with the same key
2015-09-04trim junk from end of file; bz#2455 from Jakub JelenDamien Miller
2015-09-04remove extra newline in nethack-mode hostkey;Damien Miller
from Christian Hesse bz#2686
2015-09-04fix a race when fetching files from the kernel. the number of filesDavid Gwynne
might have increased between when we got the number of files and when we requested that number of files. now we allocate another 10ish percent on top of what the kernel says we need, and retry if that still isnt enough. while here use realloc instead of constantly going through free/malloc sequences. with input from claudio@ deraadt@ ok millert@ guenther@
2015-09-04add kvm_realloc() as a private function.David Gwynne
part of a larger diff ok millert@ guenther@
2015-09-03synchronize synopsis and usage.Igor Sobrado
2015-09-03append the year Zilog Z-80 8-bit microprocessor was introduced;Igor Sobrado
a nice processor, learnt assembly on a Z-80A when I was twelve years old. ok jmc@
2015-09-03In sendsyslog(2) I got the plural s of messages right. The messagesAlexander Bluhm
of syslogd(8) should be alike. syslogd: dropped 1 message OK lteo@ millert@
2015-09-03replace permfail calls with errc. the permfail calls had been retained forTed Unangst
clarity and/or future use, but if people send me diffs fixing it, it's not worth fighting for. from Martin Natano
2015-09-03Fix a race in pmap_page_remove_86() and pmap_page_remove_pae().Mark Kettenis
ok millert@, tedu@, mlarkin@
2015-09-03Fix a race in pmap_page_remove().Mark Kettenis
This should get mail from the mailing lists flowing again. Thanks to millert@ for helping me tracking this down. ok millert@, tedu@, mlarkin@
2015-09-03Add test for sendsyslog(2) dropped message reporting.Alexander Bluhm
2015-09-03No real point in having efifb(4) on the floppies; we want it on everythingMark Kettenis
else! ok deraadt@
2015-09-03Move tricky system calls up and sensitive data calculations down soFlorian Obser
that tame(2) can sit in the middle. diff from deraadt@ "you can commit that diff" deraadt@
2015-09-03sync with ISO web site; ok millert@Christian Weisgerber
2015-09-03revert previous since the v6 address order has been restoredMike Belopuhov
2015-09-03Change the order of operations for loopback interfaces to haveMartin Pieuchot
::1 configured before fe80::1. (lo0:0) in pf should resolve to 127.0.0.1 ::1. reported by and ok mikeb@
2015-09-03match amd64; bios_efi_info_t is required here as well, because acpidumpTheo de Raadt
compiles on more than one platform.
2015-09-03Properly cancel any pending USB abort task when aborting a transferVisa Hankala
and skip completed transfers in dwc2_abort_xfer(). This fixes some timeout-related crashes. Feedback and ok mpi@
2015-09-03Revert (again!) the two uses of rtisvalid(9), they break NFS!Martin Pieuchot
Found the hardway by naddy@
2015-09-03Instead of creating a line buffer on the stack, tcp_readcb() canAlexander Bluhm
use the global linebuf like the other libevent read callbacks. OK jung@
2015-09-03A couple of style nits.Nicholas Marriott
2015-09-03Remove the abort_task field in struct dwc2_xfer. There is an identicalVisa Hankala
field in struct usbd_xfer which is part of dwc2_xfer. ok mpi@
2015-09-03route-to, reply-to and dup-to are no longer supported on block rulesMike Belopuhov
2015-09-03Remove sc->sc_lock and add several splusb()'s in dwc2, to avoid aVisa Hankala
possible lock recursion panic on transfer timeout. The lock is not needed yet because the USB stack is not MP-safe. ok mpi@, "makes sense" jasper@
2015-09-03order of assigned v6 addresses has slightly changedMike Belopuhov
2015-09-03sync to reflect changes in pfctl_parser.c -r1.305Mike Belopuhov
2015-09-03interface should only be specified for root queues; found by jsgMike Belopuhov
2015-09-03Document spool dir in smtpd's FILES section and be consistent withTodd C. Miller
using compact lists for FILES in the other manual pages. OK gilles@
2015-09-03Fix !INET6 build.Martin Pieuchot
2015-09-03Modify acpidump to work on systems booted from efi boot. Use the ACPIYASUOKA Masahiko
config address passed through the boot parameter. ok mlarkin
2015-09-03reorg code, preliminary step to more cleanupMarc Espie
- split the two blobs in main into separate functions - use return instead of exit okay millert@
2015-09-03Convert ip{,6}_output() (cached) route entry checks to rtisvalid(9).Martin Pieuchot
This introduces a behavior change as we now reject !RTF_UP routes to output packets. This stricter check exposed a bug in the setup of new routes and was the reason for the previous revert. This should be now fixed by r1.229 of sys/net/route.c . ok bluhm@
2015-09-03Unconditionally set the RTF_UP flags when adding a route to the table.Martin Pieuchot
This makes dhclient(8) configured default routes usable without relying on the link-state change hooks not present in RAMDISK kernels. ok krw@, claudio@
2015-09-03Improve the code that tries to figure out which device we booted from. TheMark Kettenis
EFI Loaded Image Device Path Protocol typically includes partition and file components. We want to match it to a "raw" Device Path without these components though, so we declare we have found the boot device as soon as the Device Path matches the initial components of the Loaded Image Device Path. ok yasuoka@
2015-09-03Add missing net/art.c, found the hardway by reyk@Martin Pieuchot
2015-09-03Do not use an intermediary buffer on the stack of the caller whenMartin Pieuchot
submitting a read request. This also means big read requests are no longer split into multiple small transfers something that libusb consumers do not expect. Tested by ajacatoutot@. Found by Grant Czajkowski <czajkow2 AT illinois DOT edu> during the GSoC 2015.
2015-09-03move paren to correctly return a negative error value instead of theJonathan Gray
result of the < 0 test which would be 1. ok gilles@
2015-09-03the session kicking mechanism has an accounting bug leading to some legitGilles Chehade
sessions being kicked if they generate too many consecutive errors. remove the mechanism altogether until it is redesigned.
2015-09-03no more gcc2.Daniel Dickman
ok deraadt@
2015-09-03Fix the condition of finding SMBIOS. Found by gerhard@.YASUOKA Masahiko
ok gerhard uebayasi deraadt
2015-09-02Make pmap_kenter_pa(9) and pmap_kremove(9) mpsafe. This required me toMark Kettenis
use atomic operations to operate on pm_stats.resident_count. Is it really necessary to keep track of that for the kernel pmap?
2015-09-02Use the pointer we got back from alloc() when calling free() instead ofMark Kettenis
something that points smack in the middle of the buffer.
2015-09-02Replace dtls1_client_hello() with ssl3_client_hello() - both are basicallyJoel Sing
the same code, with two slight differences for DTLS handling. Also, make use of send_cookie to determine if the client random needs to be preserved, rather than testing if it is zeroed (hopefully your random number generator never returned all zeros, since the existing code would break). Inspired by BoringSSL. ok doug@
2015-09-02Fewer magic numbers - we already have defines for the header lengths, soJoel Sing
make use of them. ok doug@
2015-09-02Log pane which received input data.Nicholas Marriott
2015-09-02A one line helper function is a little silly.Nicholas Marriott
2015-09-02We no longer need the terminal service class, so don't bother asking for it.Nicholas Marriott