Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-09-12 | sys/syscall_mi is only included by MD trap.c files, which have reason to | 1 | -4/+1 | ||
include param.h/systm.h/proc.h themselves (and already do). ok guenther | |||||
2015-09-12 | Explicitely include <arm/armreg.h> here instead of expecting previously | 1 | -1/+2 | ||
included files to bring it in. | |||||
2015-09-12 | use .Cm rather than .Ar for fixed string arguments | 2 | -12/+12 | ||
2015-09-12 | Remove most of the SSLv3 version checks and a few TLS v1.0. | 14 | -236/+114 | ||
We can now assume >= TLS v1.0 since SSL2_VERSION, SSL3_VERSION and DTLS1_BAD_VER support was removed. "reads ok" miod@ | |||||
2015-09-12 | Use kbind for lazy binding GOT/PLT updates on arm. | 1 | -23/+28 | ||
While here add some gcc __predict hints. Much testing, discussion, pondering, and flailing from miod and deraadt ok miod@ | |||||
2015-09-12 | use sysctl() to get FSCALE value; ok guenther | 1 | -12/+10 | ||
2015-09-12 | mark up arguments individually and drop redundant .Bk | 2 | -12/+10 | ||
2015-09-12 | sync | 2 | -1/+1 | ||
2015-09-12 | Add openssl(1) speed support for AEAD algorithms. | 1 | -17/+96 | ||
This adds aes-128-gcm aes-256-gcm chacha20-poly1305 from Adam Langley's original patch for OpenSSL ok beck@ jsing@ | |||||
2015-09-12 | don't use literal brackets to indicate optional syntax elements, | 1 | -4/+4 | ||
use the .Op macro (or in this case, .Oo/.Oc) | |||||
2015-09-12 | Cleanup enginetest a bit. | 1 | -104/+84 | ||
It was the only thing preventing -Werror from building on some systems due to the unchecked asprintf's. | |||||
2015-09-12 | Wrap <dbm.h> and <ndbm.h> so that calls go direct and the symbols are all weak | 3 | -1/+74 | ||
2015-09-12 | Wrap <bsd_auth.h> so that calls go direct and the symbols are all weak | 3 | -2/+86 | ||
2015-09-12 | Wrap <assert.h> so that __assert2() goes direct | 2 | -1/+29 | ||
2015-09-12 | add missing .Ar macros | 1 | -4/+4 | ||
2015-09-12 | use .Cm for fixed string arguments | 3 | -31/+19 | ||
2015-09-12 | Uncopy and unpaste dtls1_send_newsession_ticket() - another 111 lines of | 4 | -222/+6 | ||
code deduped. | |||||
2015-09-12 | Fix the openssl(1) prime command: When checking a decimal number for | 1 | -3/+2 | ||
primality, do not unnecessarily convert the original decimal number to hex in the output. Hex numbers explicitly specified with -hex remain unchanged. ok beck@ deraadt@ jsing@ miod@ | |||||
2015-09-12 | Move handshake message header length determination into a separate | 8 | -46/+54 | ||
ssl3_handshake_msg_hdr_len() function. Use this to correct several places that have magic numbers with header lengths hardcoded as '4'. ok beck@ | |||||
2015-09-12 | ktrcsw(9) has been removed, so remove its man page too. | 2 | -18/+4 | ||
ok guenther@ miod@ sthen@ | |||||
2015-09-12 | Wrap shm_open() to go direct and mark shm_{mkstemp,unlink}() as weak | 2 | -5/+6 | ||
2015-09-12 | Wrap <unistd.h> so that internal calls go direct and they're all weak symbols | 18 | -20/+117 | ||
Delete unused 'fd' argument from internal function oldttyname() | |||||
2015-09-12 | Wrap <getopt.h> to make the functions weak and make access to the initialized | 2 | -1/+43 | ||
variables go direct. (Common variables cannot be aliased.) | |||||
2015-09-12 | Provide an ftpproxy6 rc script. ftp-proxy can only open one listening socket | 4 | -10/+23 | ||
at a time, so a second instance of the daemon is required. OK mikeb stsp ajacoutot | |||||
2015-09-12 | Wrap <time.h> so that internal calls go direct and symbols not in C99 are weak | 6 | -7/+51 | ||
Add prototypes to localtime.c for offtime(), time2posix(), posix2time() to reduce noise with -Wmissing-prototypes Eliminate unnecessary #includes | |||||
2015-09-12 | Uncopy and unpaste dtls1_send_certificate_request() - removes another 80 | 4 | -160/+6 | ||
lines of code, while gaining SIGALGs support. | |||||
2015-09-12 | Wrap <syslog.h> so that internal calls go direct and they're all weak symbols | 3 | -35/+55 | ||
Delete code that's a no-op now that we don't use sockets Eliminate unnecessary #includes | |||||
2015-09-12 | Uncopy and unpaste dtls1_send_server_key_exchange(). Removes another 329 | 4 | -658/+6 | ||
lines of code, while gaining bug fixes and SIGALGs support. | |||||
2015-09-12 | obvious macros fixes: | 1 | -44/+40 | ||
* use .Cm for fixed argument strings * properly use .Ar on individual arguments * drop redundant .Bk | |||||
2015-09-12 | Use rtfree() instead of playing with the refcount directly. Some care is | 1 | -6/+11 | ||
needed since rt0 as passed from the upper layer is freed by that layer. Also if_output does not free the rt so handle that as well. With and OK mpi@ | |||||
2015-09-12 | It is not necessary to reset errno to 0 since we use logerrorx(). | 1 | -5/+1 | ||
Spotted by jung@ | |||||
2015-09-12 | Uncopy and unpaste dtls1_send_server_done(). | 4 | -36/+6 | ||
2015-09-12 | Wrap <dirent.h> so that internal calls go direct and they're all weak symbols | 7 | -5/+48 | ||
2015-09-12 | Introduce if_input_local() a function to feed local traffic back to | 9 | -60/+74 | ||
the protocol queues. It basically does what looutput() was doing but having a generic function will allow us to get rid of the loopback hack overwwritting the rt_ifp field of RTF_LOCAL routes. ok mikeb@, dlg@, claudio@ | |||||
2015-09-12 | Wrap <fts.h> and <ftw.h> so that internal calls to fts_*() go direct and | 3 | -1/+61 | ||
fts_*(), ftw(), and nftw() are weak symbols | |||||
2015-09-12 | Uncopy and unpaste dtls1_send_server_hello(). | 4 | -136/+6 | ||
2015-09-12 | Make these timer_* stubs weak symbols | 5 | -16/+19 | ||
Provide declarations to reduce noise when using -Wmissing-prototypes | |||||
2015-09-12 | Uncopy and unpaste dtls1_send_hello_request(). | 4 | -36/+6 | ||
2015-09-12 | Convert the rest of the server handshake functions to ssl3_handshake_msg_*. | 2 | -88/+70 | ||
ok beck@ | |||||
2015-09-12 | Uncopy and unpaste dtls1_send_client_verify() - the | 4 | -148/+6 | ||
ssl3_send_client_verify() is different, but it correctly supports things like SIGALGS. Another 74 lines of code bites the dust. | |||||
2015-09-12 | Remove dead get_host_seed() function; Martin Natano | 2 | -12/+2 | ||
2015-09-12 | Uncopy and unpaste dtls1_send_client_key_exchange() - the | 4 | -538/+10 | ||
ssl3_send_client_key_exchange() is effectively identical, in fact it has a number of bug fixes and improvements that never got merged into the DTLS copy of the code. Flenses another 264 lines of code. ok beck@ | |||||
2015-09-12 | Use explicit_bzero() instead of memset() when clearing private keys. | 2 | -6/+8 | ||
ok bcook@ beck@ miod@ | |||||
2015-09-12 | Old diff found in my tree: Add HISTORY; info from the CSRG CDs. | 1 | -2/+7 | ||
2015-09-12 | typo that breaks the build | 1 | -2/+3 | ||
2015-09-12 | Fix two cases where it was possible to call if_put with an uninitialized ifp | 1 | -3/+3 | ||
Found by jsg@ with clang | |||||
2015-09-12 | show a few more lines of trace; discussed in the room | 1 | -2/+2 | ||
2015-09-12 | Pull variable assignment out from function call, fix indentation and set | 2 | -16/+14 | ||
state after calling ssl3_handshake_msg_finish(). | |||||
2015-09-12 | More ifmedia64 fallout; that should be the last. | 3 | -7/+8 | ||
2015-09-12 | style(9) and whitespace cleanups. | 2 | -58/+50 | ||