summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2016-10-31Pass the errno value to vfatal(), renaming it to vfatalc() to match,Philip Guenther
intead of using errno as an implicit argument ok reyk@
2016-10-30large-community needs to have an argumentPeter Hessler
2016-10-30If a length from an ip packet encapsulated in gre or etherip would causeJonathan Gray
the position to go past snapend truncate. Found with afl.
2016-10-30Replace a snapend test in ip_print() with a call to TCHECK2 as thereJonathan Gray
is already a trunc label with the same printf in the function.
2016-10-29Simple grammar tweak: allow to specify interface options in a single line.Reyk Floeter
2016-10-29Separate parsing vms and switches from starting them in vmd(8).Edd Barrett
Brings us one step closer to having disabled by default vms is vm.conf(5), which can be started with vmctl(8). Input, testing and OK reyk@. Thanks.
2016-10-28Make snmpctl compile again after the env -> snmpd_env rename in snmpd'sMartin Natano
smi.c r1.20. ok cc(1)
2016-10-28Return early from atalk_print_llap() if the length is less than theJonathan Gray
size of a header to avoid an integer underflow. Found with afl.
2016-10-28Don't assume s->ifname is NUL terminated and printable.Jonathan Gray
As in pfsync_print_clr() use vis(3) in print_state(). This was also found with afl though with a different input.
2016-10-28Sync snmpd(8) with other daemons proc.c and teach him how to fork+exec.Rafael Zalamena
ok jca@, reyk@
2016-10-28Use snmpd_env as the only global variable for env to simplify the daemonRafael Zalamena
and avoid problems. ok jca@
2016-10-27Remove some code that was already disabled when it was committedTheo Buehler
20 years ago. While there, eliminate two dead assignments. ok natano
2016-10-27Remove OLDSCSIBUS conditional. Unused since it was imported 21 years ago.Theo Buehler
ok natano
2016-10-27Don't assume clr->ifname is a NUL-terminated printable string.Todd C. Miller
Use vis(3) to safely print ifname and stop at IFNAMSIZ bytes. Found with afl by jsg@. OK jsg@
2016-10-27Huawei squatted on BGP Path Attribute 30, and Cisco squatted on 31. So,Peter Hessler
IANA moved the Large Communities attribute to 32, which is a nice pun on the problem it is solving.
2016-10-26nicer list width; from julien dhailleJason McIntyre
2016-10-26s/EXIT_FAILURE/1/Martin Natano
2016-10-26mac68k is discontinuedMartin Natano
2016-10-26Add the omit-trailing-period cd9660 option to the manual.Martin Natano
2016-10-26Remove cd9660's chrp-boot option. deraadt confirmed we don't support anyMartin Natano
CHRP hardware.
2016-10-26Use OPT_BOOL, not OPT_INT32 for boolean cd9660 options.Martin Natano
2016-10-26Remove FS-specific option descriptions from the source code. We have aMartin Natano
manual for that. While there document the isolevel option and remove some dysfunctional cd9660 options.
2016-10-26vmd(8)/vmctl(8) for i386. Some ugliness in #ifdef __i386__ areas will beMike Larkin
fixed in tree, but the changes required were pretty minimal. Note that i386 hosts are still presently limited to running i386 guests. ok deraadt, stefan, jca
2016-10-25Add missing OpenBSD keyword in the first line.Rafael Zalamena
2016-10-25convert usage() to just spit out the normal options list,Jason McIntyre
instead of trying to list all the fs-specific stuff; help/ok natano
2016-10-24Compare server-identifiers and reject packets only *after* applyingKenneth R Westerback
value specified in dhcpd.conf. i.e. don't assume it is always the primary address of the interface the packet arrived on. Fixes issues with redundant dhcpd servers and CARP'd interfaces. Issue reported and fix tested by Johan Huldtgren
2016-10-24document the options for msdos systems; help/ok natanoJason McIntyre
2016-10-24do not ignore -Wsign-compare; requested by deraadt@Florian Obser
2016-10-24regenFlorian Obser
2016-10-24Update to 4.1.13Florian Obser
Testing millert, brad and myself. OK millert@
2013-11-26import NSD 4.0.0, tests from Dorian Büttner, Patrik Lundin, requested by ↵Stuart Henderson
brad@
2010-01-15NSD v3.2.4Jakob Schlyter
2016-10-23For -d, if there is no modifier, don't go down the "longformat" path.Mark Kettenis
Fixes cases like "pstat -d x ticks" on armv7. ok jca@, deraadt@
2016-10-23unbreak by fixing obvious pastosChristian Weisgerber
2016-10-23No verbose flag for cd9660.Martin Natano
2016-10-23Remove the msdos no_create option.Martin Natano
2016-10-23Remove cd9660's keep-bad-images option.Martin Natano
2016-10-23Remove short option names for -o.Martin Natano
2016-10-23listen on inet6 sockets as well. we need this because stolen inet6 socketsTed Unangst
can't be redirected to inet4 listeners.
2016-10-22Dedup msdosfs/{bootsect.h,bpb.h}.Martin Natano
2016-10-22Teach tcpdump(8) how to read OpenFlow packets. This initial implementationRafael Zalamena
supports the following message types: hello, error, echo request/reply, feature request/reply, set config, packet-in, packet-out, flow removed and flow mod. We currently only support printing this messages for OpenFlow 1.3.5, however it is possible to reuse some functions and get other versions working too. ok deraadt@
2016-10-22-#include <stdbool.h>Martin Natano
2016-10-22various cleanup; ok natanoJason McIntyre
2016-10-22Get rid of remaining FFS byteswap function stubs.Martin Natano
2016-10-22More "debug" code that has to go.Martin Natano
2016-10-22Clean up timestamp handling code to be less confusing.Martin Natano
2016-10-22Remove huge amounts of debug code, that make the code nearly unreadable.Martin Natano
2016-10-22s/panic/errx/ This is userland.Martin Natano
2016-10-22Include our own <ufs/ufs/dinode.h>, <ufs/ufs/dir.h> and <ufs/ffs/fs.h>Martin Natano
header files instead of relying on copies of NetBSD's headers. This required some changes in the .c files, due to renamed fields, functions and preprocessor macros. Also pull in our own ffs_tables.c. As a bonus this diff gets rid of layout compatibility issues in the superblock (position of the fs_flags field).
2016-10-22Remove unused code for 4.3BSD format filesystems.Martin Natano