summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2017-09-10Assorted simple improvements:Ingo Schwarze
- Considerably simplify the first paragraph; suggested by Raf Czlonka. - No need to say twice that "file" must be in the correct format. - Clarify which file is checked by -c. - Clarify that -p creates passwd(5) in addition, not instead. - Simplify reference to the master.passwd(5) format. - Turn one sentence into a standard EXIT STATUS section. - New HISTORY and AUTHORS sections, based on the CSRG archive CDs.
2017-09-08Whoops, remove extra include.Bryan Steele
2017-09-08fork+exec model for tcpdump(8); re-exec the privileged child after forkBryan Steele
While tcpdump isn't a daemon in the traditional sense, it's not uncommon for people to have long running sessions. At least on OpenBSD, this is even safe thanks to the existing privsep design by otto@, canacar@ and pledge(2) work done by deraadt. ok deraadt@
2017-09-08remove more filter-related cruftEric Faurot
ok gilles@
2017-09-08use plain values for transaction error codes rather than a bitmask.Eric Faurot
rename ill-named "msgflags" to "error" while there. ok gilles@
2017-09-08better VM termination handling.Mike Larkin
diff provided by Carlos Cardenas, thanks
2017-09-08fix a wrong comment.Mike Larkin
Noticed by Carlos Cardenas
2017-09-08vmctl: style cleanup - spaces vs tabs.Mike Larkin
Noticed by Carlos Cardenas
2017-09-08vmd: add more explanatory log_debug messagesMike Larkin
From Carlos Cardenas, many thanks!
2017-09-08vmd: handle queue index wraparound in viornd. Without this, openbsd guestsMike Larkin
used to crash after roughly 68 hours uptime. ok deraadt
2017-09-07unifdef some ancient COMPAT code that's not used. 500 byte blocks!Ted Unangst
noticed by miod
2017-09-06ntpd has been on by default for over two years now, so reworkJason McIntyre
the text about enabling it; ok deraadt
2017-09-05Detail how VM guests acquire a nameserver for local interfaces.Edd Barrett
OK mlarkin@, krw@. Thanks!
2017-09-05Add HISTORY and AUTHORS, using hints from miod@ and my own research.Ingo Schwarze
Sources: http://minnie.tuhs.org/ and the NetBSD CVS.
2017-09-01more code cleanup after filter removalEric Faurot
ok gilles@
2017-09-01Make 'tcpdump -v' decode RSN information elements in beaconsStefan Sperling
instead of lazily dumping them in hex. ok mpi@
2017-09-01disable a few warnings so we can start to see the relevant ones;Otto Moerbeek
ok sthen@
2017-09-01the wait_filter_data session set is now pointlessEric Faurot
2017-09-01vmctl: -L option clarification in man pageMike Larkin
2017-08-31enum can be signed or unsigned depending on the compiler; so make sure weOtto Moerbeek
cast to unsigned and test for > X to avoid warnings that comparing an unsigned < 0 make no sense; ok deraadt@
2017-08-31assorted warning fixes; ok millert@Otto Moerbeek
2017-08-31vmctl: change a feedback message displayed to the user from "terminatedMike Larkin
vm X" to "sent request to terminate vm X". vmctl/vmd have not forcibly terminated VMs in a while, we try to let vmmci(4) gracefully shutdown the VM, so "vmctl stop" commands are really requests to stop, not forced stops. The new message indicates that a shutdown is (possibly) in progress and not "complete".
2017-08-31vmd: fix two wrong comments I stumbled across while updating the vmctl(8)Mike Larkin
man page
2017-08-31vmd/vmctl: disallow use of block or character devices as disks in VMs.Mike Larkin
These don't work today and present the user with a confusing error message if an attempt is made to use them. This commit detects attempts to use block or character devices and if detected, presents the user with a better message. ok jasper From Carlos Cardenas, thanks!
2017-08-31match vmctl.8 vm name constraintsJasper Lievisse Adriaanse
from Carlos Cardenas
2017-08-30unused fileEric Faurot
2017-08-30Add support for interface departure and arrival.rob
Ok jca@, benno@
2017-08-30rename smtp_filter_fd() to smtp_message_fd() and cleanup code.Eric Faurot
ok gilles@
2017-08-30unsigneds cannot be < 0; ok jca@Otto Moerbeek
2017-08-30rename functionEric Faurot
2017-08-30remove smtp_filter_*() indirections.Eric Faurot
ok gilles@
2017-08-30remove use of PAGE_SIZE and #include <sys/param.h>Mike Larkin
ok deraadt
2017-08-29quarterly rescan of the tree: remove unneccessary sys/param.h, andTheo de Raadt
annotate the ones which are needed.
2017-08-29missing word; from raf czlonkaJason McIntyre
2017-08-29avoid double search. Fix abieber's commit vaguely. (todo: speed-ups)Marc Espie
2017-08-29While failing to relink the kernel is not fatal to syspatch, we still needAntoine Jacoutot
to warn the user and return a proper error code.
2017-08-29Fix logic to not error out.Antoine Jacoutot
2017-08-29do not claim that this is isc dhcpd (but retain credit);Jason McIntyre
issue pointed out by miod ok krw miod
2017-08-29Change the table parser logic. If the table is untyped, determineEric Faurot
its type by examining the first entry: if it contains a separator, type is "mapping", otherwise type is "list". All entries are then parsed according to the table type. The "list" type can also be forced by using the "@list" directive in a comment. This allows to define list of entries containing a separator. Also, log parse errors. ok gilles@
2017-08-29zap trailing whitespace;Jason McIntyre
2017-08-28Do not close the relay if data is still in the output buffer.Alexander Bluhm
Otherwise data not written could get lost. Also try to drain the buffers when socket splicing should be enabled. The latter was lost when the expicit bufferevent_enable() was added in relay_write(). bug report, analysis, initial fix, testing Rivo Nurges; OK beck@
2017-08-28add -z and -Z options to auto suspend or hibernate when low on battery.Ted Unangst
from Jesper Wallin
2017-08-28print id first to make this symetrical to address proposalsFlorian Obser
2017-08-28Inform the user when we are relinking the kernel.Antoine Jacoutot
2017-08-2865535 is a valid port to listen on.Florian Obser
Off-by-one pointed out by and diff from Kris Katterjohn katterjohn AT gmail, thanks! chris@ pointed out that more than httpd(8) is effected. OK gilles@
2017-08-25-Wextra is over the top; note that int < sizeof(..) is generally safe, sinceOtto Moerbeek
the left hand side gets converted to size_t, making negative values very large so the test fails; ok kettenis deraadt@
2017-08-24Disable enum warnings after checking the code is ok. ok millert@Otto Moerbeek
2017-08-23No need to handle more than one routing message here.Jeremie Courreges-Anglas
2017-08-23sync with upstream; unbound 1.6.5Stuart Henderson
2017-08-23Fix trust anchor installation when two anchors are present. Concretely, fixesStuart Henderson
root.key creation if unbound is installed between sep11 and oct11 2017. Looks good to jca. This is the only substantial change in Unbound 1.6.5; next commit will sync ancillary files.