summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-11-19Sprinkle const in static (internal) routines.Miod Vallat
2014-11-19bulk convert memcpy to memmove. at least one bcopy conversion was wrong,Ted Unangst
so use the safer function. can be converted back to memcpy if necessary, but later and only after more careful inspection.
2014-11-19No boot block code shall include <string.h>.Miod Vallat
2014-11-19We don't need no stinkin' non-new-curses code. Also eliminates aKenneth R Westerback
double #include. ok deraadt@ tedu@
2014-11-19delete the KERN_VNODE sysctl. it fails to provide any isolation from theTed Unangst
kernel struct vnode defintion, and the only consumer (pstat) still needs kvm to read much of the required information. no great loss to always use kvm until there's a better replacement interface. ok deraadt millert uebayasi
2011-12-04test some simple macros; written while working on -TmanIngo Schwarze
2014-11-19syncTheo de Raadt
2014-11-19syncTheo de Raadt
2014-11-19Nuke yet more obvious #include duplications.Kenneth R Westerback
ok deraadt@
2014-11-19move to stravis so doug@ will stop laughing at my misuse of strnvis.David Gwynne
ok doug@ millert@
2014-11-19include camellia.h using the public include pathBrent Cook
2014-11-19file overlooked in previous snmpd commitBret Lambert
2014-11-19Support exporting relayd statistics via AgentX/snmpdBret Lambert
This should be equivalent to the statistics available via the various relaydctl show commands okay benno@ reyk@
2014-11-19add support for AgentX subagents in snmpdBret Lambert
snmp requests are now packaged into pseudo-continuations to allow for being dispatched to seperate processes; lightly tested for interoperability with NetSNMP, but doesn't implement the complete set of AgentX messages while here, clean up return types of mps_get* functions, and make smi_insert refuse to insert duplicate OIDs okay benno@ reyk@
2014-11-19Fix a memory leak with pkey in client key exchangeDoug Hogan
Based on boringssl commit: 1df112448b41c3568477f3fcd3b8fc820ce80066 ok miod@ jsing@
2014-11-19document when to pass free() a size, and hey -- if it is impossible trackTheo de Raadt
it down, that is ok, you can pass 0. (but it is slower)
2014-11-19abort() doesn't call atexit handlers any morePhilip Guenther
2014-11-19remove duplicate publication year; carsten dot kunze at arcor dot deIngo Schwarze
2014-11-19two obvious markup fixes; from frankgroeneveld dot nlIngo Schwarze
2014-11-19Remove ifdef checks for LIBRARY.Anthony J. Bentley
It is undocumented and triggers the same conditional inclusions as PURIFY does. From Martin Natano.
2014-11-19Bugfix: run for the specified number of seconds as described in the manual,Ingo Schwarze
not for a fixed number of iterations. This makes a difference on terminals not fast enough to update every second, in particular in -s mode. Inspired by FreeBSD, but implemented differently with less bugs. Patch from pjanzen@, slightly tweaked by me.
2014-11-19Escape sequences terminate high-level macro names, and when doing so,Ingo Schwarze
they are ignored, just in the same way as for request names and for low-level macro names. This also cures a warning in the pod2man(1) preamble.
2014-11-19Bring in a change present in binutils 2.17 to allow sahf/lahfJonathan Gray
instructions on amd64. ok deraadt@ miod@ mlarkin@
2014-11-19Add support for stopping the operation of the chipset within re_stop()Brad Smith
for newer generations of chipsets. From FreeBSD Tested with 8169, 8168C, 8168D, 8168G and by stsp@ with WOL.
2014-11-19Support the ".if v" conditional operator (vroff mode, always false)Ingo Schwarze
for groff compatibility because pod2man(1) uses it that way. Weirdly, groff documents it as "for compatibility with other troff versions" but neither Heirloom nor Plan 9 have it. Issue reported by giovanni@ via sthen@.
2014-11-18Nuke yet more obvious #include duplications.Kenneth R Westerback
ok miod@
2014-11-18dc_init() calls dc_stop() and dc_reset() so remove some redundant callsBrad Smith
to those functions before dc_init() within dc_watchdog() and dc_intr(). ok deraadt@
2014-11-18Sync AES code to the one shipped in OpenSSL/LibreSSL.Mike Belopuhov
This includes a commit made by Andy Polyakov <appro at openssl ! org> to the OpenSSL source tree on Wed, 28 Jun 2006 with the following message: "Mitigate cache-collision timing attack on last round." OK naddy, miod, djm
2014-11-18Recognize dcbzl, backported from binutils-2.17.Martin Pieuchot
ok miod@, deraadt@
2014-11-18add crypt_newhash to NAME and add an MLINK;Jason McIntyre
2014-11-18GOST regression tests; from Dmitry Eremin-SolenikovMiod Vallat
2014-11-18Argh, another bug introduced in r1.3; Dmitry Eremin-SolenikovMiod Vallat
2014-11-18Disable the page zeroing thread on MULTIPROCESSOR mips64 kernels as well.Miod Vallat
Regression spotted by tobiasu@. XXX I wonder if the page zeroing thread shouldn't perform explicit XXX pmap_update(pmap_kernel()) calls after each page zeroing... but that XXX might not be enough.
2014-11-18Nuke more obvious #include duplications.Kenneth R Westerback
ok deraadt@ millert@ tedu@
2014-11-18Nuke some obvious #include duplications.Kenneth R Westerback
ok espie@ deraadt@ millert@ tedu@
2014-11-18sigwinch support for resizing. from pjanzenTed Unangst
2014-11-18We have dbm.h, so unbreak the treeAndrew Fresh
2014-11-18Ignore invalid directories in man.conf(5) and MANPATH, even if theirIngo Schwarze
parent directories exist, but complain about invalid directories given on the command line. Intended to fix an oddity reported by sthen@.
2014-11-18Delete tmp directory in /mnt/var during upgrades right before theRobert Peichaer
extraction of baseXX.tgz creates the symlink to ../tmp. OK deraadt
2014-11-18Don't build support in perl for *dbm not in the base systemAndrew Fresh
OK millert@
2014-11-18Add __attribute__((__bounded__)) to arc4random_buf().Miod Vallat
ok deraadt@ tedu@
2013-11-26import NSD 4.0.0, tests from Dorian Büttner, Patrik Lundin, requested by ↵Stuart Henderson
brad@
2014-11-18syncTheo de Raadt
2014-11-18Avoid iterating over end of string.Tobias Stoeckmann
ok millert, otto
2014-11-18make pmap_zero_page MP-safe, by using the directmapTheo de Raadt
mpi will investigate speedups after this. ok mpi kettenis
2014-11-18drop "pl" from the pool name and use pool_setlowatMike Belopuhov
2014-11-18DTYPE_CRYPTO is not used anymore; ok guenther (a while ago)Mike Belopuhov
2014-11-18udf needs siphash to build.David Gwynne
i dont know if this is the right fix, but the tree needs to build.
2014-11-18syncTheo de Raadt
2014-11-18use siphash for key lookups in all the filesystem hashes.David Gwynne
ok deraadt@ tedu@