summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-04-21th_code is in network byte orderDavid Gwynne
2014-04-21clean up files we don't needTed Unangst
2014-04-21fix accidentally deleted deref.Bob Beck
2014-04-20ASN1_STRING cleanup - realloc has handled NULL since I had a mulletBob 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
2003-05-11import 0.9.7b (without idea and rc5)Markus Friedl
1998-10-05Import of SSLeay-0.9.0b with RSA and IDEA stubbed + OpenBSD buildryker
functionality for shared libs. Note that routines such as sslv2_init and friends that use RSA will not work due to lack of RSA in this library. Needs documentation and help from ports for easy upgrade to full functionality where legally possible.
2014-04-20tweak previous;Jason McIntyre
2014-04-20Prevent lpd(8) from looking into hosts.equiv.Antoine Jacoutot
Access control is now done only using hosts.lpd. See lpd(8) for more information about the format of this file. "seems reasonable" tedu@ "looks good" deraadt@ ok sthen@
2014-04-20replace a bunch of pointer-arithmatic-strcpy-converted-blindly-to-strlcpyBob Beck
cruft with an snprintf. "better than what was there" ok guenther@
2014-04-20Eliminate duplicated logic by switching from malloc+snprintf to asprintfPhilip Guenther
ok beck@
2014-04-20Add iscsictl bits to show the vscsi stats.Claudio Jeker
2014-04-20Introduce some basic stats for the vscsi layer. Just counting the commandsClaudio Jeker
and the bytes we push through vscsi(4).
2014-04-20check_hosts_equiv -> check_hosts_lpdAntoine Jacoutot
i.e. don't check for hosts.equiv anymore. input/ok schwarze@, ok sthen@
2014-04-20in debug messages, truncating strings of excessive lengths is actuallyIngo Schwarze
a good thing, so cast the return value from sprintf to (void); this concludes the mandoc sprintf audit
2014-04-20Make -L even more useful to monitoring processes. Truncate andKenneth R Westerback
refill the file rather than creating a new one, which preserves an fd being monitored. And truncate file on losing link. Things like sysutils/ertn should now be able to see new leases, lease renewals and cable unplugs. tweaks by and ok sthen@
2014-04-20strlen+malloc+snprintf is error prone;Ingo Schwarze
rewrite post_lb() to use asprintf(3) instead
2014-04-20regenStefan Sperling
2014-04-20Add device ID for Ralink (now branded Mediatek) MT7601 USB wifi deviceStefan Sperling
2014-04-20fix unchecked snprintf(3) in page header printing:Ingo Schwarze
the length of the title is unknown, and speed doesn't matter here, so use asprintf/free rather than a static buffer
2014-04-20Chop 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-20After doing all of the loging dance to get the target's params it makesClaudio Jeker
sense to merge them into the active set. At least that way we run with the right params and finally do reads and writes that are > 8k.
2014-04-20Restore beck's (void)snprintf(): they were reviewed.Philip Guenther
2014-04-20Restore beck's rev 1.8: snprintf() was reviewed.Philip Guenther
2014-04-20Restore tedu's rev 1.4: snprintf() was reviewed.Philip Guenther
2014-04-20Restore beck's rev 1.7: snprintf() was reviewed.Philip Guenther
Also, use sizeof() for snprintf()'s size argument
2014-04-20make sure static buffers for snprintf(3) are large enoughIngo Schwarze
and cast snprintf return value to (void) where they are
2014-04-20Remove unused/never installed libssl tools and docs and references to themAndrew Fresh
Sure deraadt
2014-04-20Restore beck's rev 1.21: snprintf() was reviewedPhilip Guenther
2014-04-20Use only one style for "return foo;"Claudio Jeker
2014-04-20Add a few more overflow checks for strlc* functions in parse.yReyk Floeter
2014-04-20clarify a bit about hosts.lpdTed Unangst
2014-04-20hosts.equiv is a ghost from bsd pastTed Unangst
2014-04-20theo found a file we don't seem to need, but just in case, i will pasteTed Unangst
the contents below: #!/usr/local/bin/perl # x86 assember
2014-04-20Style improvement based on espie@'s feedback: provide and useVadim Zhukov
LT::UList->new() instead of calling tie() manually. As a bonus, few extra lines in actual code go away. okay espie@ who still thinks that I test things _before_ commit
2014-04-20Restore beck's rev 1.9: snprintf() was reviewedPhilip Guenther
2014-04-20Move session params initialization to when we start a session and notClaudio Jeker
when it is created. That way the config params from the config file have a chance to stick.
2014-04-20Fix conn_gen_kvp and its caller to fill the kvp array properly (includingClaudio Jeker
the NULL terminator at the end). Now iscsid does proper LoginOperational negotiation (which will bump the MaxRecvDataSegmentLength to 64k)
2010-10-01import OpenSSL-1.0.0aDamien Miller
2005-04-29import of openssl-0.9.7g; tested on platforms from alpha to zaurus, ok deraadt@Damien Miller
2003-05-11import 0.9.7b (without idea and rc5)Markus Friedl
2014-04-20move in6_cksum_phdr from in6.h to ip6_output.c to mirror in_cksum_phdrChristian Weisgerber
ok henning@
2014-04-20KNF: case (FOO): -> case FOO, remove /* LINTED */ and /* ARGSUSED */,Ingo Schwarze
remove trailing whitespace and blanks before tabs, improve some indenting; no functional change
2014-04-20KNF.Joel Sing
2014-04-20Check another strlcpy overflow that is very unlikely to happen.Reyk Floeter
2014-04-20Check for strlcpy overflow when expanding the HTTP input value.Reyk Floeter
2014-04-20Restore beck's rev 1.3: snprintf() was reviewedPhilip Guenther
2014-04-20More KNF.Joel Sing
2014-04-20Check strlcpy of the script path names for overflow and use the size of theReyk Floeter
destination buffer instead of the source buffer as the argument.
2014-04-20KNF.Joel Sing
2014-04-20Just to be pedantic, fail if strlcpy managed to overflow the socket path.Reyk Floeter