summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-07-10fix some errors in lockdebug code. not enabled by default.Mike Larkin
ok dlg@
2014-07-10boot(): Unify declarationsMasao Uebayashi
OK deraadt@
2014-07-10One sure hopes that OPENSSL_cleanse will:Joel Sing
/* Clear password from memory */
2014-07-10Remove #if 0 code which dumps your data to stdout.Miod Vallat
2014-07-10Tweak some comments. We do not really need to know that "New!" flags wereJoel Sing
added 10+ years ago (they're kinda somewhat stale by now...)
2014-07-10Add bus and root hub routines to prevent panic at attach.Paul Irofti
Root hub routines inspired by xhci(4) with help from mpi@. dmesg progress: octhci0 at iobus0 irq 56 core version 2 pass 3.5 usb0 at octhci0: USB revision 2.0 uhub0 at usb0 " octHCI root hub" rev 2.00/1.00 addr 1 uhub0: cannot open interrupt pipe usb0: root device is not a hub
2014-07-10Force iobus0 for octhci and maintain spacing style.Paul Irofti
2014-07-10Uncompress ssltest.Joel Sing
2014-07-10Remove more compression tendrils.Joel Sing
ok tedu@
2014-07-10Clear CPUF_PARK flag to avoid re-parking on resume.Mike Larkin
2014-07-10Add support to test handling of repeated headers.Reyk Floeter
From RFC 7230, section 3.2.2: "A sender MUST NOT generate multiple header fields with the same field name in a message unless either the entire field value for that header field is defined as a comma-separated list [i.e., #(values)] or the header field is a well-known exception (as noted below)."
2014-07-10time to claim copyrightHenning Brauer
2014-07-10Always assign the device address found by the USB stack even if itMartin Pieuchot
does not match the hardware address. This change only matters for xHCI buses where the controller assigns device addresses. But it is the simplest way to comply with the stack requirement of assigning the first `logical' address to the root hub device. Device addresses are not much used anyway and a cleanup will follow to avoid possible confusions. This makes usbdevs(8) correctly report devices connected to xhci(4).
2014-07-10some say you don't need NULL checks before free(). Not 0 either.Henning Brauer
2014-07-10Stop playing with the RSA_FLAG_BLINDING flag. It does nothing.Joel Sing
ok miod@
2014-07-10Show eeprom version of ath devices in dmesg; ok reykStefan Sperling
2014-07-10delete some casts. ok miodTed Unangst
2014-07-10Missing allocation checks and potential NULL pointer dereference in theMiod Vallat
error path in PEM_X509_INFO_read_bio(); ok guenther@ jsing@
2014-07-10add a note that fields are returned in input order. ok deraadt sthenTed Unangst
2014-07-10more missing rcs idsJasper Lievisse Adriaanse
"sure" deraadt@
2014-07-10record the size of the rx rings so we can wrap around them correctly.David Gwynne
fixes a panic, reported by paul de weerd.
2014-07-10Move games files and subdirs to the game set.Antoine Jacoutot
ok deraadt@
2014-07-10Remove RSA_FLAG_NO_EXP_CONSTTIME, which was deprecated 12+ years ago.Joel Sing
sthen@ confirmed that no ports are referencing it. ok miod@.
2014-07-10introduce the revolutionary concept of NULL pointers. ok gccHenning Brauer
2014-07-10/var/games/tetris.scores will move away from the etc set.Antoine Jacoutot
2014-07-10pool_debug still needed for non-DIAGNOSTIC kernelsTheo de Raadt
2003-05-11import 0.9.7b (without idea and rc5)Markus Friedl
2014-07-10syncTheo de Raadt
2014-07-10prevent users from adding timestamp themselvesMarc Espie
2014-07-10add a separate timestamp annotation to have this as metadataMarc Espie
2014-07-10add rcs idsJasper Lievisse Adriaanse
ok deraadt@
2014-07-10Implement non-persistent connections in a cleaner way. Every testAlexander Bluhm
that offers multiple requets per HTTP connection is run twice. First all requests are run over a single TCP connection. Then for each requests a separate TCP connection is established. If a requests during a persistent connection fails, a reconnect is done as relayd cancels the whole connection. This allows stricter tests for filters. OK reyk@
2014-07-10Remove more compression related code.Joel Sing
2014-07-10Remove DEBUG_KEYGEN and DEBUG_DECRYPT support.Miod Vallat
2014-07-10introduce bpf_mcopy_stripvlan, which cuts the 4 extra bytes out of theHenning Brauer
ether_vlan_header to make it a regular ether_header while copying into the bpf buffer. add bpf_mtap_stripvlan, which is a 1-line wrapper around _bpf_mtap passing this copy function in. ok benno
2014-07-10replace getservbyname_r with getaddrinfo for portabilitybcook
ok jsing@
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