summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-07-10Add internal buffering when dumping a device with non-512 byteKenneth R Westerback
sectors. This ensures that the requested data, and all the requested data, is actually read from the device. Should have no effect on 512-byte sector devices, but makes dump work on 4096-byte sector devices. Problem noted by and fix tested by David Vasek.
2014-07-10Tame the tedu... we still want to know that Compression and Expansion areJoel Sing
NONE, even if this is due to the fact that we do not support compression.
2014-07-10Put back some parts of the public SSL API that should not have beenJoel Sing
completely decompressed.
2014-07-10prepare for upcoming ext4 read supportMartin Pelikan
Parts of the on-disk inode changed their meaning in order to support bigger sizes. More flags & prettification. No functional change. ok guenther
2014-07-10forgot to decompress here tooTed Unangst
2014-07-10Don't document the guts of struct syslog_data. This man page only needsTheo de Raadt
to demonstrate to use it with syslog_r. pointed out by millert
2014-07-10check all memory allocations; ok miod@ guenther@Otto Moerbeek
2014-07-10Remove bogus preprocessor statements trying to pick the largest integerMiod Vallat
type for BF_LONG, MD[45]_LONG and SHA_LONG. First, the preprocessor symbols they check for a 64-bit system is __ILP64__ which no sane system provides; second, on the platforms which have assembler code to speed things up, the assembler code assumes a 32-bit type will be used.
2014-07-10check return value of write.bcook
ok beck@ jsing@
2014-07-10syncTheo de Raadt
2014-07-10Print an understandable error message when we fail to read the reportMartin Pieuchot
descriptor. Pointed out by benno@
2014-07-10Add new sendsyslog(const char *, size_t) system call which simply passesTheo de Raadt
a message up into syslogd's /dev/log interface. This will be used to make syslog_r work during file descriptor exhaustion, or inside sandboxes which prohibit socket, connect, sendto, etc. The system call is being added about a week before the library and daemon changes. ok guenther tedu miod matthew
2014-07-10crank major for decompression featureTed Unangst
2014-07-10decompress libssl. ok beck jsingTed Unangst
2014-07-10Align octhci(4) with the other HC drivers and add it as a commented entryMartin Pieuchot
to GENERIC. ok pirofti@
2014-07-10KNF comments, reflowing and moving out of the middle of argument lists inPhilip Guenther
places ok jsing@
2014-07-10fix version comparison for openssl-like versions (1.0.1g etc)Jasper Lievisse Adriaanse
found, tested and OK sthen@
2014-07-10remove unused ecc_pkey_size.bcook
ok jsing@ miod@
2014-07-10hide the biglock thrashing under pool_debug so it can be turned offTed Unangst
2014-07-10BN_free, BN_clear_free, BN_CTX_free, BN_BLINDING_free and BN_MONT_CTX_freeJoel Sing
all have implicit NULL checks, so we do not need them here. ok miod@
2014-07-10Use a while loop instead of an ifdowhile loop.Joel Sing
ok miod@ tedu@
2014-07-10typo in previousMiod Vallat
2014-07-10likewise for X, locate directoryMarc Espie
2014-07-10rings that dont rx packets dont need to be refilled.David Gwynne
2014-07-10syncTheo de Raadt
2014-07-10divert-packet no longer uses the PACKET_TAG_PF_DIVERT mbuf tag.Lawrence Teo
2014-07-10Simplify the way divert(4) sends packets to userspace: Instead ofLawrence Teo
unnecessarily allocating an mbuf tag to store the divert port, just pass the divert port directly to divert_packet() or divert6_packet() as an argument. includes a style fix pointed out by bluhm@ ok bluhm@ henning@ reyk@
2014-07-10guenther spotted my bad copy and pasting.David Gwynne
fall back to htobe64 for htobem64 instead of htole64 on LE archs.
2014-07-10Fix another free error.Reyk Floeter
ok benno@
2014-07-09Add some extra sanity checks to make sure the test functions actuallyMatthew Dempsky
run on altstack.
2014-07-09include <limits.h> for LONG_MIN/LONG_MAX.bcook
Also remove <sys/filio.h> added from previous commit. This was the wrong way to get FIONBIO. ok jsing@
2014-07-09regenBrad Smith
2014-07-09shorten a bitBrad Smith
2014-07-09When copying structures via imsg, the contents should not containReyk Floeter
bogus pointer values - make sure to zero the first rule_kv element. awesome benno@
2014-07-09floppy disks are obsolete. recommend keeping the keyfile on a flash diskTed Unangst
instead. ok mlarkin
2014-07-09small alignment tweakJasper Lievisse Adriaanse
2014-07-09Add work-in-progress octeon USB host controller support.Paul Irofti
Not enabled for now. It's easier for me to work on it in-tree. Discussed with and okay miod@
2014-07-09ASN1_STRING_free can handle NULL, so callers don't need to check. ok miodTed Unangst
2014-07-09add some (currently failing) tests for openssl-like version number (1.0.1g) ↵Jasper Lievisse Adriaanse
comparisons
2014-07-09- do the actual viomb_deflate() after printing the debug messageJasper Lievisse Adriaanse
- whitespace cleanup ok sf@
2014-07-09Changes in relayd's regression tests have to be discussed.Reyk Floeter
As discussed with bluhm@ deraadt@
2014-07-09Don't assign garbage in kv_extend().Reyk Floeter
Found by clang.
2014-07-09regensasano
2014-07-09add devices for DM&P Vortex86EX SoCsasano
ok by miod@ and deraadt@
2014-07-09unfidef RL_DEBUG. hopefully it's been debugged by nowTed Unangst
2014-07-09firebomb some MDEBUG leftoversTed Unangst
2014-07-09unifdef a whole bunch of NO RSA/DSA/ECDH defines i deleted from libsslTed Unangst
2014-07-09clean up if 0/if 1 code. we don't care anymore.Ted Unangst
2014-07-09move a commentTed Unangst
2014-07-09reset host, port, path to null after freeing so the caller doesn'tTed Unangst
accidentally free them again. actually a bug in the caller and (hey hey) apps/ocsp.c has exactly that bug, but it's easier/safer to fix here.