Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-12-04 | Simplify the MSI bits a bit. | Brad Smith | |
2014-12-04 | Stop people from cheating. Especially those that believe in FIPS, they | Theo de Raadt | |
are the worst. ok millert ingo tedu | |||
2014-12-04 | init the mutex used in sleeping pool_gets with the right ipl if the | David Gwynne | |
pool hasnt had pool_setipl called. ok kettenis@ ages ago | |||
2014-12-04 | stop viral header propagation. none of this code uses sys/hash.h | Ted Unangst | |
from Max Fillinger | |||
2014-12-04 | add RevokedHostKeys option for the client | Damien Miller | |
Allow textfile or KRL-based revocation of hostkeys. | |||
2014-12-04 | fix handling of roff requests having a default scale other than "n", | Ingo Schwarze | |
in particular .sp which uses "v", when the scale is not specified; cures groff-mandoc differences in about a dozen Xenocara manuals | |||
2014-12-04 | split the word ops into int and longs so things that care a lot | David Gwynne | |
about types are happy. ok jsg@ | |||
2014-12-04 | convert KRL code to new buffer API | Damien Miller | |
ok markus@ | |||
2014-12-04 | Ignore macros that never produce any text when deciding whether | Ingo Schwarze | |
vertical whitespace is needed before a section or subsection. Cures groff-mandoc differences in more than 300 manuals, mostly Xenocara, some curses, a few GNU. | |||
2014-12-04 | simplify wording; triggered by a shorter diff from Kaspars Bankovskis; | Ingo Schwarze | |
OK jmc@ jasper@ | |||
2014-12-04 | AnonCVS is designed to work with a user account that has no password and a | Ingo Schwarze | |
very special shell, so do not complain about that particular combination. Idea originally brought up by landry@ five years ago, repeatedly forgotten. Using feedback from sthen@ millert@ halex@; OK landry@ ajacoutot@. | |||
2014-12-04 | replace md5 with sha512. ok deraadt | Ted Unangst | |
2014-12-04 | use siphash for trunk loadbalancing. ok deraadt | Ted Unangst | |
2014-12-04 | use siphash for dirhash. ok deraadt dlg | Ted Unangst | |
2014-12-03 | sync | Theo de Raadt | |
2014-12-03 | Init SPI using arc4random_buf, rather than (r << 32) | r | Theo de Raadt | |
ok matthew | |||
2014-12-03 | Use arc4random_buf() rather than iterating word by wordo | Theo de Raadt | |
itk florian | |||
2014-12-03 | use arc4random_buf() instead of (r << 32) | r; discussed with matthew | Theo de Raadt | |
2014-12-03 | zap extra parameter that my first read missed, because that one is constant. | Marc Espie | |
Strangeness noticed by aja@ | |||
2014-12-03 | Allow overriding the path to the testssl and openssl binaries. | Brent Cook | |
This is needed by the portable tree to point directly to the newly-built binaries when running unit tests. discussed with jsing@ and others | |||
2014-12-03 | Move Windows OS-specific functions to make porting easier. | Brent Cook | |
Several functions that need to be redefined for a Windows port are right in the middle of other code that is relatively portable. This patch isolates the functions that need Windows-specific implementations so they can be built conditionally in the portable tree. Add calls to BIO_sock_init() as-needed to openssl(1) so that socket IO works on Windows. Sorry, these are no-op on other platforms. ok jsing@ deraadt@ | |||
2014-12-03 | Move Windows OS-specific functions to make porting easier. | Brent Cook | |
Several functions that need to be redefined for a Windows port are right in the middle of other code that is relatively portable. This patch isolates the functions that need Windows-specific implementations so they can be built conditionally in the portable tree. ok jsing@ deraadt@ | |||
2014-12-03 | We're not supporting 16-bit Windows, remove cast. | Brent Cook | |
ok jsing@ deraadt@ | |||
2014-12-03 | ifconfig $if inet6 autoconf sends periodic router solicitations. | Florian Obser | |
input jmc@ | |||
2014-12-03 | rtsol is gone | Florian Obser | |
OK deraadt@ | |||
2014-12-03 | Unhook rtsol(8) and rtsold(8) from the build. | Florian Obser | |
OK deraadt@ | |||
2014-12-03 | rtsol(8) is no longer needed on the ramdisks. | Florian Obser | |
OK deraadt@ | |||
2014-12-03 | More duplicate #include cleanout. | Kenneth R Westerback | |
ok deraadt@ tedu@ | |||
2014-12-03 | The kernel handles rtsol(8) functionality since some time now. | Florian Obser | |
Treat rtsol in hostname.if as a keyword like dhcp and call ifconfig inet6 autoconf. "reads good" todd@ OK krw@ (who is *not* an IPv6 person), but I recruited him in his capacity as an installer person. | |||
2014-12-03 | handle the (impossible) situation of a size_t - 1 buffer from | Theo de Raadt | |
EC_POINT_point2oct so that later allocation does not overflow with miod | |||
2014-12-03 | Spotted another opportunity to use reallocarray(). | Theo de Raadt | |
ok miod | |||
2014-12-03 | document -o and -a; requested by yon | Jason McIntyre | |
i had to tweak their descriptions a little to make the text read nicely while here, fix some minor issues: - kill some unneeded Xo/Xc - kill some unneeded Tn - replace "\*Gt" with ">" | |||
2014-12-03 | Correct comment to state that the BPF program is patched in | Kenneth R Westerback | |
if_register_receive. | |||
2014-12-03 | Fill the buffer with 'z' instead of 'a' since 'a' is part of the | Todd C. Miller | |
string we are testing. Add tests to verify that we get SIGSEGV when passed a NULL src or dst. It is better to crash than for an implementation to check for NULL and try to recover. | |||
2014-12-03 | no md5 in the kernel? not even close to true | Theo de Raadt | |
2014-12-03 | Fix off by one in check for socket path too long. From Nicolas Bedos. | Todd C. Miller | |
2014-12-03 | Fix buffer overflow in .PS parsing. Found by afl and based on a | Todd C. Miller | |
diff from jsg@. OK jsg@ | |||
2014-12-03 | Restore packetp and snapend pointers once we're done with an incorrectly | Mike Belopuhov | |
aligned IP/IPv6 packet so that tcpdump can print hexdump of the whole packet including the Ethernet header (if requested) and not only the IP/IPv6 part of it. ok jsg | |||
2014-12-03 | Fixup a crash found by jsg using the AFL fuzzer. IP and IPv6 printing | Mike Belopuhov | |
routines should check that there's at least a complete IP/IPv6 header available in the buffer before trying to do anything else. ok jsg | |||
2014-12-03 | wb_init() calls wb_stop() and wb_reset() so remove some redundant calls | Brad Smith | |
to those functions before wb_init() within wb_watchdog() / wb_intr() and wb_rxeof(). | |||
2014-12-03 | md5 when wlan is needed too. fixes i386 ramdiskC | Ted Unangst | |
2014-12-03 | deraadt points out i forgot about tcp_signature, although this won't | Ted Unangst | |
usually matter as all generic configs with tcp sigs have crypto too. | |||
2014-12-03 | should no longer need md5 by default in all kernel builds. | Ted Unangst | |
tested with a few generic and ramdisk configs. | |||
2014-12-03 | Turn ahci port start into a callback so sxiahci can do some magic to | Jonathan Gray | |
setup dma. Modified version of a patch from Edwin Amsler which was based on changes made in Bitrig by Artturi Alm. ok dlg@ | |||
2014-12-03 | stale header: this code hasn't used hash.h in a while | Ted Unangst | |
2014-12-03 | test backslash handling because it was on my todo list; | Ingo Schwarze | |
fortunately, it already seems to work | |||
2014-12-03 | in the recent update of capitals, this critical file was forgotten | Ingo Schwarze | |
2014-12-02 | Add -F to if-shell to allow it to be used to check for format or option | Nicholas Marriott | |
values rather than executing a command. | |||
2014-12-02 | Permit option values to be used in formats. | Nicholas Marriott | |
2014-12-02 | Add brainpool curves to eccurves_default[], accidentally missing from 1.32; | Miod Vallat | |
from OpenSSL HEAD via Thomas Jakobi. |