summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-12-29encrypt is now built into instbin, do not need to use the /mnt versionTheo de Raadt
2014-12-29switch encrypt to auto scaling bcrypt rounds. ok deraadtTed Unangst
2014-12-29don't leak timing info about padding errors by generating a fake keyTed Unangst
afterwards. openssl has a more complicated fix, but it's less intrusive for now to simply hoist the expensive part (fake key generation) up without sweating a branch or two. ok bcook jsing
2014-12-29document ordering more explicitly;Ingo Schwarze
feedback and ok ajacoutot@ rpe@
2014-12-29useless change. overwriting the nul byte with a newline means b64_ntopTed Unangst
can use the whole buffer, even the last byte.
2014-12-29rename fingerprint struct field. no longer exposed to users, but since it'sTed Unangst
not technically a fingerprint as others understand the term, pick another. now it's a keynum! after an email from Florian Weimer
2014-12-29remove the inspect debug command. should not be used by users, who are notTed Unangst
supposed to know what fingerprints are or that they exist.
2014-12-29Assert that rtrequest1(9) is always called at IPL_SOFTNET instead ofMartin Pieuchot
doing a spl dance. This matters for RTM_DELETE because a deleted route entry is always returned without having its reference counter increased when an `rtp' argument is given. In this case, we do not want to call splx() that might free this route. Inputs from millert@, ok blambert@, mikeb@
2014-12-29Add line continuation to be consistent with rc_pre(); ok sthen@Antoine Jacoutot
2014-12-29pexp is not needed; ok sthen@Antoine Jacoutot
2014-12-29syncJonathan Gray
2014-12-29re-add missing space in confirm prompt that got lost in -r1.18Jasper Lievisse Adriaanse
ok espie@
2014-12-29Explicitely include <uvm/uvm_extern.h> in order to build on variable page sizeMiod Vallat
architectures.
2014-12-29Some missing break's.Brad Smith
2014-12-29Some cleaning up of the ioctl handling bits to bring things in lineBrad Smith
with the other drivers.
2014-12-29Some cleaning up of the ioctl handling bits to bring things in lineBrad Smith
with the other drivers.
2014-12-29It sends and receives packets (until we run out of the initial receive blocks).Mark Kettenis
2014-12-28The greatest happiness is to scatter inferiour APIs, to drive themKenneth R Westerback
before you, to see their files reduced to ashes, to see those who love them shrouded in tears, and to gather into your API all their invocations. In other words, workq is no more. There is only taskq. ok kettenis@ dlg@ (creator of taskq) jmc@
2014-12-28spelling fix; from daria suchecka via krzystof warzechaJason McIntyre
2014-12-28Fairly complete Rx path hardware initialization.Mark Kettenis
2014-12-28Replace last workq in tree (reading disklabels from newly attachedKenneth R Westerback
disks) with taskq. Diff originally from blambert@. ok kettenis@
2014-12-28Fix subtle typo.Joel Sing
2014-12-28Add regress tests for default option handling.Joel Sing
2014-12-28Allow a default option to be specified by having a NULL name, but a validJoel Sing
option type. In this case process the option as per normal.
2014-12-28Add regress tests for multiple argument callback functions.Joel Sing
2014-12-28Provide an option type that allows for a callback function to consume anJoel Sing
arbitrary number of arguments. This will allow for more complex option handling as required by some of the openssl(1) applications.
2014-12-28Add option parsing regress tests with end of options handling.Joel Sing
2014-12-28Teach option parsing that a single hyphen denotes the end of named optionsJoel Sing
(as currently only implemented by some of the openssl(1) applications).
2014-12-28Add regress tests for option parsing with multiple unnamed arguments.Joel Sing
2014-12-28Provide a mechanism for option parsing to return the number of argumentsJoel Sing
that it has consumed. This allows for the handling of multiple unnamed arguments, including lists of filenames.
2014-12-28Attach USB HID devices from the Generic Destop page, usage pointer toMatthieu Herrb
ums. This is how the USB Tablet from Qemu in libvirt/kvm shows up and it works with ums(4). ok mpi@
2014-12-28Improve documentation of the header/footer macros .Dt, .Os, .TH:Ingo Schwarze
* State the defaults for .Os and the fourth .TH argument. * Sync the section titles, and stop advertising obscure sections that aren't actually fully supported and certainly not recommended for use.
2014-12-28Update regress to match change in unnamed argument handling.Joel Sing
2014-12-28Only accept a single unnamed argument - the existing behaviour is toJoel Sing
silently accept multiple unnamed arguments, ignoring all except the last. This behaviour was already inconsistent between openssl(1) applications; apply the principal of least surprise. This will also simplify the addition of upcoming functionality.
2014-12-28Slightly simplify options parsing logic.Joel Sing
2014-12-28mdoc(7) already uses the mandoc(1) -Ios argument in the footer lineIngo Schwarze
when .Os has no argument, so do the same for man(7) when .TH has less than four arguments; there is no reason to treat both differently. Issue found following a question from Thomas Klausner <wiz at NetBSD>.
2014-12-28Update options regress to match option function pointer change.Joel Sing
2014-12-28Provide two different function pointers for option function callbacks. ThisJoel Sing
allows for simpler code in the common cases and will allow for further extension to support the complex cases.
2014-12-28remove a surplus argument to printf caught by -WformatJonathan Gray
ok claudio@
2014-12-28Unbreak the tree. Looks like tedu did not tedu enough when killing KPDKClaudio Jeker
support.
2014-12-28improve previous: do the size check up front to avoid leaking memoryIngo Schwarze
2014-12-28Add regression tests where OpenBSD syslogd is sending messages toAlexander Bluhm
rsyslogd from ports. If the rsyslog package is installed, rsyslogd is used as drain to test interoperability. This will be especially useful for syslog via TCP and TLS.
2014-12-28Provide initial regress tests for the complex option parsing that is neededJoel Sing
for openssl(1), which is also variable in behaviour between applications (and currently inconsistent).
2014-12-28mask with & not &&Jonathan Gray
ok claudio@
2014-12-28Change the default ext_addr from "egress" to "*". Listening on theReyk Floeter
egress group only works if you have a default route; this confused some people.
2014-12-28Change the default example from "listen on egress" to "listen on *".Reyk Floeter
Listening on the egress group only works if you have a default route; this confused some people.
2014-12-28Add an audio driver, necsb(4), for NEC PC-9801-86 sound board onKenji Aoyama
cbus(4). This work is based on the source code of NetBSD/pc98, an unofficial NetBSD port for NEC PC-9801 series, written about 16 years ago. Thanks to NetBSD/pc98 porting staff for their work, especially NAGAO Tadaaki and N. Honda who wrote the original driver. ok miod@
2014-12-28With revision 1.93 a space character got lost when printing theAlexander Bluhm
signal action. Print the space again. OK jsg@
2014-12-28convert bcopy to memcpy in md5 and sha1. also be consistent about clearingTed Unangst
context and making digest required to Final.
2014-12-28remove KPDK. not really used, and a bad choice anyway. ok naddyTed Unangst