Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-01-12 | replace s/routine/function/, as other manuals do | Alexandre Ratchov | |
from Thomas Pfaff <tpfaff(at)tp76.info>, thanks! ok jmc@ | |||
2009-01-12 | convert a strdup (into a purpose-allocated buffer) in libcrypto to a | Damien Miller | |
memcpy to avoid linker deprecation warnings; pointed out by dkrause@ | |||
2009-01-10 | make all private functions static | Alexandre Ratchov | |
2009-01-10 | The process number is longer used to replace trailing 'Xs'. | Tobias Stoeckmann | |
ok jmc, millert | |||
2009-01-09 | openssl-0.9.8j enables RFC3546 TLS extensions by default (e.g. the very | Damien Miller | |
useful "server name indication" that allows multihomed TLS server), so remove the #define to disable it here | |||
2009-01-09 | adjust Makefile and crank major for openssl-0.9.8j | Damien Miller | |
2009-01-09 | resolve conflicts | Damien Miller | |
2009-01-09 | import openssl-0.9.8j | Damien Miller | |
2009-01-08 | oops, i messed up tim's patch; correction from Tim van der Molen | Jason McIntyre | |
2009-01-08 | Add a missing MLINK for BIO_new_socket. | Owain Ainsworth | |
Noticed by blambert@. Ok jmc@. | |||
2009-01-08 | a little macro cleanup; from Tim van der Molen | Jason McIntyre | |
2009-01-05 | import openssl-0.9.8j | Damien Miller | |
2009-01-05 | update to openssl-0.9.8i; tested by several, especially krw@ | Damien Miller | |
2009-01-03 | reintroduce extra malloc protections, but avoiding the use of | Damien Miller | |
PAGE_(SIZE|SHIFT|MASK) defines that evaluate to variables on the sparc architecture; ok otto@ tested on my reanimated ss20 | |||
2009-01-02 | Sync _kvm_kvatop with existing pmap code: handle direct mappings and | Miod Vallat | |
level 2 large pages. | |||
2008-12-31 | PAGE_SIZE is not a valid symbol to use in that way. In particular, | Theo de Raadt | |
on sparc, it expands to something that just plain does not work, because the page size can be variable. Sorry we didn't spot this before. Backing it all out to allow sparc to build; please find a different way to fix it. | |||
2008-12-30 | Remove mprotecting of struct dir_info introduced in previous commit | Damien Miller | |
(MALLOC_OPTIONS=L). It was too slow to turn on by default, and we don't do optional security. requested by deraadt@ grumbling ok otto@ | |||
2008-12-29 | extra paranoia for malloc(3): | Damien Miller | |
Move all runtime options into a structure that is made read-only (via mprotect) after initialisation to protect against attacks that overwrite options to turn off malloc protections (e.g. use-after-free) Allocate the main bookkeeping data (struct dir_info) using mmap(), thereby giving it an unpredictable address. Place a PROT_NONE guard page on either side to further frustrate attacks on it. Add a new 'L' option that maps struct dir_info PROT_NONE except when in the allocator code itself. Makes attacks on it basically impossible. feedback tedu deraadt otto canacar ok otto | |||
2008-12-27 | Fix file descriptor leak in fts_children(); okay dhill@, millert@, | Pedro Martelletto | |
tedu@, thib@. | |||
2008-12-27 | when polling aucat(1) socket, don't set the POLLIN bit if we | Alexandre Ratchov | |
don't expect messages. Avoids busy loops in programs calling poll(2) on a stopped device. | |||
2008-12-27 | when using the aucat(1) backend, don't mask the POLLHUP bit | Alexandre Ratchov | |
even if the device is not started yet. This way, if the server is killed programs can notice it. | |||
2008-12-23 | repair the ARC4 story; ok jmc djm millert | Theo de Raadt | |
2008-12-23 | ddb.console does not override machdep.kbdreset, so don't say it does; | Jason McIntyre | |
2008-12-22 | document yp_maplist(); from Ingo Schwarze | Jason McIntyre | |
ok deraadt | |||
2008-12-22 | The example for detecting malicious PTR records could be easily misinterpreted. | Jacek Masiulaniec | |
Make it less ambiguous; ok gilles@ claudio@ | |||
2008-12-22 | Let this compile with gcc 2. | Miod Vallat | |
2008-12-21 | remove mixer bits from the audio(4) backend of libsndio, it's not | Alexandre Ratchov | |
possible to get them right in the current state of the mixer. discussed with jakemsr | |||
2008-12-21 | fix more spelling errors and typos, | Alexandre Ratchov | |
from Thomas Pfaff <tpfaff(at)@tp76.info>, thanks | |||
2008-12-20 | Add man page for wcstol and friends. | Mark Kettenis | |
ok jmc@ | |||
2008-12-18 | Add pthread_attr_[sg]etguardsize() to match rthread, including manpages | Philip Guenthe | |
Bump lib minor ok otto@ kurt@ marc@; doc review by jmc@ | |||
2008-12-17 | stop using stderr in the library, wrap all diagnostic fprintfs | Alexandre Ratchov | |
so they are visible only when the DEBUG macro is #defined and SIO_DEBUG env. variable is set. requested by many, discussed with jakemsr | |||
2008-12-17 | Document ENOBUFS for writev(2). | Ray Lai | |
Okay claudio, deraadt. | |||
2008-12-17 | tweak previous; | Jason McIntyre | |
2008-12-17 | fix spell errors, from Thomas Pfaff <tpfaff(at)tp76.info>, thanks! | Alexandre Ratchov | |
2008-12-17 | add a writable ``appbufsz'' field to the sa_par structure, containing | Alexandre Ratchov | |
the program-part of the buffer size, ie the part that is subject to underruns. Useful for apps like cdio(1) that don't have their own rings, or to apps that have a minimum ring size constraint. Setting the ``bufsz'' parameter becomes deprecated. ok jakemsr | |||
2008-12-15 | shave off more bytes than you expect by declaring a few const local arrays | Otto Moerbeek | |
as static const | |||
2008-12-12 | __isinff and __isnanf | Martynas Venckus | |
2008-12-12 | space | Martynas Venckus | |
2008-12-12 | do the same as was done in mi version: do not include math.h, since isinf, | Martynas Venckus | |
and isnan would expand to macros and compatibility aliases won't work | |||
2008-12-12 | strcpy -> strlcpy; ok mbalmer@ martynas@ | Otto Moerbeek | |
2008-12-12 | - document and mlink frexpf, ldexpf, modff added 13 years ago | Martynas Venckus | |
- document frexpl, ldexpl added recently a tweak and ok jmc@ | |||
2008-12-12 | document and mlink long double functions. ok jmc@ | Martynas Venckus | |
2008-12-11 | remove an unneccessary addition to SEE ALSO: all the information | Jason McIntyre | |
is already there; ok martynas | |||
2008-12-10 | no spaces allowed in the macro arguments. completely insanity! | Theo de Raadt | |
2008-12-10 | use sys/cdefs.h; pointed out by theo | Martynas Venckus | |
2008-12-10 | use sys/cdefs.h; pointed out by theo | Martynas Venckus | |
2008-12-10 | use sys/cdefs.h | Theo de Raadt | |
2008-12-09 | pass CPPFLAGS+= -D__STDC__ for vax, to get the right definitions | Martynas Venckus | |
from asm.h. discussed w/ millert@ | |||
2008-12-09 | these were not needed | Martynas Venckus | |
2008-12-09 | ditto frexpl and ldexpl | Martynas Venckus | |