Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-04-21 | KNF. | Joel Sing | |
2014-04-21 | KNF. | Joel Sing | |
2014-04-21 | KNF. | Joel Sing | |
2014-04-21 | use mallocarray(a,b) instead of malloc(a*b) | Theo de Raadt | |
2014-04-21 | more malloc/realloc/calloc cleanups; ok beck kettenis | Theo de Raadt | |
2014-04-21 | KNF. | Joel Sing | |
2014-04-21 | no need for malloc casts | Theo de Raadt | |
2014-04-21 | KNF. | Joel Sing | |
2014-04-21 | More KNF. | Joel Sing | |
2014-04-21 | KNF. | Joel Sing | |
2014-04-21 | KNF. | Joel Sing | |
2014-04-21 | KNF. | Joel Sing | |
2014-04-21 | wrong calloc, see people do care | Theo de Raadt | |
2014-04-21 | KNF. | Joel Sing | |
2014-04-21 | improve realloc/calloc/malloc patterns; ok guenther | Theo de Raadt | |
2014-04-21 | Delete #if 0'd time related functions which are totally expired. | Theo de Raadt | |
No point even seeing these when we do the 2038 audit later on... | |||
2014-04-21 | modernize malloc call | Theo de Raadt | |
2014-04-21 | Replace entire printf-like guts with calls to libc snprintf. | Theo de Raadt | |
funopen(3) is used to interface to BIO descriptors. ok guenther | |||
2014-04-21 | Bring malloc/calloc/realloc sequences to modern standard | Theo de Raadt | |
ok guenther | |||
2014-04-21 | KNF. | Joel Sing | |
2014-04-21 | clean up files we don't need | Ted Unangst | |
2014-04-21 | fix accidentally deleted deref. | Bob Beck | |
2014-04-20 | ASN1_STRING cleanup - realloc has handled NULL since I had a mullet | Bob Beck | |
and parachute pants - and since it's obvious there is no guarantee the caller doesn't pass in the data area in the argument, use memmove instead of memcpy so overlapping areas are handled correctly. Also, pointers can be usefully printed in hex with %p, in error messaeges rather than the bizzaro stuff that was there using mystical buffer lengths and abuse of strlcpy-converted-blindly-from-strcpy | |||
2014-04-20 | replace a bunch of pointer-arithmatic-strcpy-converted-blindly-to-strlcpy | Bob Beck | |
cruft with an snprintf. "better than what was there" ok guenther@ | |||
2014-04-20 | Eliminate duplicated logic by switching from malloc+snprintf to asprintf | Philip Guenther | |
ok beck@ | |||
2014-04-20 | Chop off more SSLv2 tentacles and start fixing and noting y2038 issues. | Philip Guenther | |
APIs that pass times as longs will have to change at some point... Bump major on both libcrypto and libssl. ok tedu@ | |||
2014-04-20 | Restore beck's (void)snprintf(): they were reviewed. | Philip Guenther | |
2014-04-20 | Restore beck's rev 1.8: snprintf() was reviewed. | Philip Guenther | |
2014-04-20 | Restore tedu's rev 1.4: snprintf() was reviewed. | Philip Guenther | |
2014-04-20 | Restore beck's rev 1.7: snprintf() was reviewed. | Philip Guenther | |
Also, use sizeof() for snprintf()'s size argument | |||
2014-04-20 | Restore beck's rev 1.21: snprintf() was reviewed | Philip Guenther | |
2014-04-20 | theo found a file we don't seem to need, but just in case, i will paste | Ted Unangst | |
the contents below: #!/usr/local/bin/perl # x86 assember | |||
2014-04-20 | Restore beck's rev 1.9: snprintf() was reviewed | Philip Guenther | |
2014-04-20 | KNF. | Joel Sing | |
2014-04-20 | Restore beck's rev 1.3: snprintf() was reviewed | Philip Guenther | |
2014-04-20 | More KNF. | Joel Sing | |
2014-04-20 | KNF. | Joel Sing | |
2014-04-20 | KNF. | Joel Sing | |
2014-04-20 | KNF. | Joel Sing | |
2014-04-20 | More KNF. | Joel Sing | |
2014-04-20 | More KNF. | Joel Sing | |
2014-04-20 | gettimeofday() is portable enough and does not need a wrapper | Theo de Raadt | |
2014-04-20 | calloc() rather than malloc+memset | Theo de Raadt | |
2014-04-20 | Fix indentation, adding braces and combining a nested if to reduce depth | Philip Guenther | |
2014-04-20 | KNF. | Joel Sing | |
2014-04-20 | KNF. | Joel Sing | |
2014-04-20 | Chop off more SSLv2 tentacles and start fixing and noting y2038 issues. | Philip Guenther | |
APIs that pass times as longs will have to change at some point... Bump major on both libcrypto and libssl. ok tedu@ | |||
2014-04-20 | return after error instead of plowing ahead. noticed by mancha1 at zoho | Ted Unangst | |
2014-04-20 | Use calloc(a,b) instead of malloc(a*b) + memset(a*b). I don't know if | Theo de Raadt | |
this instance is integer-overflowable, but we cannot keep hand-auditing every instance (or apathetically ignoring these issues) when the simple calloc idiom is better in the presence of a good calloc(). It is simply unfeasible to always enter correct range checks before the aggregate size calculation, just go find some 4000 lines of code, REPAIR THEM ALL, then come back and tell me I am wrong. This only works on systems where calloc() does the integer overflow check, but if your system doesn't do this, you need to ask your vendor WHY THEY ARE 10 YEARS BEHIND IN BEST PRACTICE? This is the kind of problem that needs to be solved at the right layer. malloc integer-overflow was implicated in the 2002 OpenSSH hole. OpenSSH and much other code is now written to use calloc(), for instance OpenSSH has 103 calls to it. We feel safer with our use of calloc(). It is a natural approach for us to use calloc(). How safe do you feel on systems which lack that range check in their calloc()? Good writeup from 2006: http://undeadly.org/cgi?action=article&sid=20060330071917 | |||
2014-04-20 | KNF. | Joel Sing | |