summaryrefslogtreecommitdiff
path: root/sbin
AgeCommit message (Collapse)Author
2012-05-14ansi. no binary changeJonathan Gray
2012-05-08When setting up NAT-T notify payloads, make sure to supply anMike Belopuhov
actual source address so that a valid hash can be generated. Fixes a bug introduces some time ago that prevented iked from initiating if NAT-T wasn't disabled (via -T) and local address wasn't specified.
2012-05-08rename espxforms to ipsecxforms for clarityMike Belopuhov
2012-05-07fixup formatting in the generated filesMike Belopuhov
2012-05-07fix printing of wildcard anchors, from lteo, ok phessler sthen meHenning Brauer
2012-05-07Sync up several defines with RFC 5996. IANA has changed the existingMike Belopuhov
IKEv2 Payload Type "Encrypted" (E) to "Encrypted and Authenticated" (SK).
2012-05-02remove redundant check; from lteo; ok haesbaertHenning Brauer
2012-05-02don't call getifmtu in -n mode, assume 1500. calling getifmtu requiresHenning Brauer
the interface in question to be there, breaking ruleset verification From: Silamael <Silamael at coronamundi dot de>
2012-04-25Before writing it to disk, warn the user if their new MBR containsMatthew Dempsky
more than one OpenBSD partition. ok deraadt
2012-04-24take a stab at documenting when arguments need quoted, and valid macroJason McIntyre
characters; prompted by a diff from robert peichaer org thanks gilles and henning for feedback ok deraadt zinke
2012-04-19clear memory before passing to ioctl routines instead of praying itTheo de Raadt
will be ok and not break things upon return. ok claudio
2012-04-18not (unsigned); ok henningTheo de Raadt
2012-04-18undo an error introduced by myself in previous;Jason McIntyre
spotted by Sebastian Rother
2012-04-17typoTheo de Raadt
2012-04-17Add type numbers for upcoming sgi work, forgotten during newport(4) import.Miod Vallat
2012-04-15fix a leakJonathan Gray
ok krw@
2012-04-12do not downsize a type before calling mallocTheo de Raadt
2012-04-12remove rfork(); ok guenther miodTheo de Raadt
2012-04-10Document new KERN_NTHREADS and KERN_MAXTHREAD sysctlsPhilip Guenthe
2012-04-06there is no need to cast an unsigned type with (unsigned).Theo de Raadt
ok jsing
2012-04-06no need to (unsigned) a small constantTheo de Raadt
2012-04-06Put raidctl in the attic.Joel Sing
2012-04-06tedu the raidctl.Joel Sing
ok deraadt@
2012-04-05rate-limit accepting of new connections while we are experiencingTheo de Raadt
fd exhaustion. ok mikeb
2012-04-04Return an error much earlier if recvmsg failsTheo de Raadt
2012-04-04Don't 'reserve' a head/track if there is only only 1 head and 1Kenneth R Westerback
cylinder. If there is only one head but multiple cylinders reserve one cylinder. Prevents nonsense MBR being created on scsi attached floppies, which have a 'geometry' of 1/1/2888. No change to less pathological cases.
2012-03-31Make fsck_msdos work with non-512-byte sector devices. Problem notedKenneth R Westerback
by and fixes tested by Alexey Vatchenko. Add a bunch of tests and error messages so whatever media/devices this breaks will be more easily fixed. Ignore invalid signatures since we have other checks and many media have missing signatures. Use character device to read disk even when called directly.
2012-03-24fix some leaksJonathan Gray
ok miod@
2012-03-24set the vendor string to OpenBSD-5.2; ok mikeb@Markus Friedl
2012-03-24fix some leaksJonathan Gray
ok mikeb@
2012-03-18clarify the nwkey text; requested by Doug FordhamJason McIntyre
ok jsg
2012-03-18getuint() -> getuint64() to make it crystal clear. No functionalKenneth R Westerback
change.
2012-03-18Wrap some long lines I keep fixing, shrinking various diffs. NoKenneth R Westerback
change to executable.
2012-03-17remove IP_JUMBO, SO_JUMBO, and RTF_JUMBO.David Gwynne
no objection from mcbride@ krw@ markus@ deraadt@
2012-03-11typo reported by Ville Valkonen <weezelding at gmail dot com> on tech@Ingo Schwarze
2012-03-05fix format string:Henning Brauer
use %zu for size_t and %d for signed ints first one triggered by a mail from joerg @ netbsd, thanks. ok millert dlg
2012-02-08Hammer fstab entries and command line entries into same format withKenneth R Westerback
realpath() and opendev() so duid and device names work consistantly. Also lets duid fstab entries work. ok deraadt@
2012-02-02add netflow v9/ipfix support to pflow(4).Sebastian Benoit
large parts written by Florian Obser (florian -at- narrans -dot- de). feedback from sperreault@ gollo@ sthen@ ok from gollo@ dlg@ henning@
2012-01-31fix a typo; Steffen Daode NurpmesoTheo de Raadt
2012-01-30fix format stringCharles Longeau
ok krw@ otto@
2012-01-29use Pp, not blank lines;Jason McIntyre
2012-01-29Add CAVEAT that only 512-byte sector devices are supported.Kenneth R Westerback
ok jsing@ jmc@
2012-01-29Remove -Werror so that we do not break builds on systems running withJoel Sing
WARNINGS=yes. Found the hard way by nicm@ ok nicm@
2012-01-22If no controller name is provided, use the program name as a prefix. Also,Joel Sing
exit with an "unknown error" if a bio(4) error is reported but no status message has been provided.
2012-01-20Teach bioctl(8) about the new status interface for bio(4). With theJoel Sing
exception of a few messages specific to softraid(4) CRYPTO, there should be no functional change for drivers that do not yet implement the interface (which is currently all of them).
2012-01-19Even 'X'perts should not be able to use the built in editor toKenneth R Westerback
create ffs partitions with invalid fsize and bsize values newfs will croak on. However, they should be able to set them to whatever consistent values they want, not just make them smaller. Also tweak some verbiage.
2012-01-19remove unused variable.Charles Longeau
ok yasuoka@
2012-01-17No need for saying out loud what we're thinking during auto-allocation.Kenneth R Westerback
i.e. when rounding off various values. ok deraadt@ sthen@
2012-01-17Move the bio(4) cookie into a separate struct and make this struct theJoel Sing
first member of each ioctl data structure. This will allow for future changes to bio(4) status handling.
2012-01-17CONCAT requires at least two disks.Joel Sing