summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-01-04mark the driver MPSAFE. most of this is cleaning up the oactive handling.David Gwynne
if there's lingering bugs we'll deal with them in tree. ok jmatthew@
2016-01-04Remove parameter name from gpt_chk_mbr() prototype and add prototypeKenneth R Westerback
for findopenbsd_gpt().
2016-01-04Use the correct values for TLS certificate / private key flags.Brent Cook
fix from Andreas Bartelt <obsd at bartula.de>
2016-01-04bzero -> memset for consistencyMike Larkin
2016-01-04Calling clone(2) with CLONE_NEWPID yields multiple processes with pid=1.Brent Cook
Work around this particular case by reseeding whenever pid=1, but as guenther@ notes, directly calling clone(2), and then forking to match another pid, provides other ways to bypass new process detection on Linux. Hopefully at some point Linux implements something like MAP_INHERIT_ZERO, and does not invent a corresponding mechanism to subvert it. Noted by Sebastian Krahmer and the opmsg team. See http://stealth.openwall.net/crypto/randup.c for a test program. ok beck@
2016-01-04Do proper termination of VMs by doing proper VCPU run state management.Mike Larkin
This should fix some of the odd termination errors people have been seeing (vmctl status showing running VMs after they have exited/crashed, and invalid instruction panics on vmptrld during certain races) This diff also implements dropping the biglock when running a VCPU, and reacquiring the lock as needed based on the type of exit (normal vs. external interrupt) diff supplied by Stefan Kempf <sn.kempf at t-online.de>, many thanks!
2016-01-04wrap a long lineMike Larkin
2016-01-03Clarify vmctl console operation.Mike Larkin
From Michal Mazurek, thanks!
2016-01-03Add a cleanup block, fix a couple of memory leaks, fix a typo and a bitMike Larkin
of KNF. Submitted by Michal Mazurek, thanks!
2016-01-03Fix typo in comment.Mark Kettenis
Pointed out by mlarkin@
2016-01-03Allow macro execution to continue without delay in the event of aMark Lumsden
visble bell call.
2016-01-03Fix description of fuser -u: what's usually reported in brackets is thetb
username, as determined by the real user id, not the real user id itself. ok jmc@
2016-01-03forgot to call RB_INIT. but yet things mostly worked...Ted Unangst
2016-01-03fix wording which becomes confusing now that filters is a real thingGilles Chehade
diff from Marcus MERIGHI <mcmer-openbsd@tor.at> ok jmc@ while at it, fixed an example
2016-01-03The pkgpath given mentioned -qt4, but the description wrongly told -main.Vadim Zhukov
2016-01-03Don't need two 16K static buffers to checksum the GPT entries and find theKenneth R Westerback
OpenBSD partition. Just one 128-byte stack copy of a single entry. Problems with EFI installs involving many disks reported by and fix tested by Thomas Bohl. Stefan Kempf pointed finger of suspicion at the addition of the 2nd 16K static buffer for softraid GPT and suggested/reviewed several versions of the diff. Tweaked and ok jsing@
2016-01-03Add missing pledge "getpw". If -s or -o were specified on the commandtb
line and the `remote file name' is subject to `tilde expansion', a call to getpwnam(3) happens. ok semarie@
2016-01-03About 13 years ago when the idiom srandom(time()), and sometimesmestre
srandom(time()+getpid()), was changed by srandomdev(), but #include <time.h> lived up until this day so remove it. Additionally, earlier than that, 18 years ago, random(6) was one of the first consumers of arc4random(3) family, and was pulling it from dev/rndvar.h but these days we pull it from stdlib.h, which is already done, so while here remove dev/rndvar.h also. "seems comprehensive to me" deraadt@ and OK tb@
2016-01-03Remove obsolete and undocumented "-carpdev" option, from Fabian Raetz.Martin Pieuchot
ok benno@, claudio@
2016-01-03enable pchtemp(4) on i386.Daniel Dickman
ok kettenis@
2016-01-03Add support for 100 series to pchtemp(4).Daniel Dickman
ok kettenis@
2016-01-03syncTheo de Raadt
2016-01-03copyright++;Jonathan Gray
2016-01-02make sure debug will be initialized, choose "unknown" (because pfctlSebastian Benoit
loglevel_to_string() uses "unknown" as well) ok kettenis@ florian@
2016-01-02garbage collect unused variable tmSebastian Benoit
ok kettenis@ florian@
2016-01-02remove unused variable cur. code probably c&p from print_bar_title().Sebastian Benoit
remove useless decleration of variable change. ok kettenis@ florian@
2016-01-02clock-mode needs CMD_PANE.Nicholas Marriott
2016-01-02fix typo in comment, found by Michal Mazurek, thanksSebastian Benoit
2016-01-02garbage collect unsused variableSebastian Benoit
found by evh -AT- riseup -DOT- net, ok florian@
2016-01-02Sync magdir/animation with file 5.25, amongst other updates this fixes anStuart Henderson
incorrect detection of mp3 sample frequency/audio channels with non-mp3 files tracked down by Brandon Vincent. ok nicm@
2016-01-02fixes fuser(1) when invoking with -u: it requires "getpw" promise.Sebastien Marie
problem reported by Michael Reed m.reed at mykolab dot com. ok tb@ and benno@ (which as provided near the same diff, but 5min later :p)
2016-01-02Add dired-find-alternate-file.Mark Lumsden
2016-01-02update currency exchange rates;Jason McIntyre
2016-01-02tweak previous;Jason McIntyre
2016-01-02tweak previous;Jason McIntyre
2016-01-02Document recent videoio.h changes.Ingo Feinerer
ok jmc@
2016-01-02Take the PHY of iec(4) out of reset before attaching the interface.Visa Hankala
Otherwise the PHY goes undetected on the slave node of a dual-node Origin 200. The PHY gets enabled by diagnostic checks but only on the master node. As the attach code will now do the enabling, the checks can be disabled on reboot, making reboots faster especially on IP27. Tested on Origin 200 (IP27), Fuel (IP35 with iec), and Origin 350 (IP35 without iec). Diff from miod@, ok krw@
2016-01-02mmcc noticed that nd.ni_pledge was uninitialized in doopenat() for theTheo de Raadt
oflags & 3 == 3 case. Therefore this depends on vn_open() blocking the operation later. Probably this meant the ni_pledge request would be too high, causing transient operation failure, rather than transient operation passage). Instead of initializing based on the oflags value use the result of FFLAGS(). I should have done this from the start. ok semarie [oflags & 3 == 3 is major dejavu for me]
2016-01-01Improve error message for sed -i by appending strerror(errno).tb
From Michael Reed, thanks! ok deraadt@
2016-01-01The pointer buf is a user space string which was directly passedAlexander Bluhm
to tputchar() and could crash the kernel. Better use cnwrite() in sendsyslog2() for writing to console. It takes a struct uio which does the copyin() automatically. In addition cnwrite() outputs to the real console or to a redirected one, whichever is appropriate. One drawback is that the syslog priority cannot be stripped off easily. OK deraadt@
2016-01-01Mention that GH_* yield a default for DISTNAMEJasper Lievisse Adriaanse
2016-01-01The "-P" option does not need to read routing table symbols so do notMartin Pieuchot
check for them. ok benno@, bluhm@
2016-01-01Tweak the installation notes regarding references to FTP.Robert Peichaer
'Sure' deraadt@
2016-01-01don't declar main. from Michal MazurekTed Unangst
2016-01-01Sync formatting and a few comments with upstream. No functional change.Ingo Feinerer
2016-01-01Reimplement vga_put() such that it compiles on i386 as well.Mark Kettenis
2016-01-01doas.conf lives in /etc. from Amit KulkarniTed Unangst
2016-01-01Sync V4L2 header file with upstream (i.e., recent Linux kernel) headers.Ingo Feinerer
This syncs our videoio.h with upstream videodev2.h and inlines their v4l2-controls.h (which was split off from videodev2.h). Another header, v4l2-common.h, is currently not imported as it is GPL2 licensed. There will be a second commit just addressing whitespace and formatting. The current version has only real changes whereas the second commit will bring videoio.h in line with videodev2.h formatting so that potential syncs in the future are easier to implement. Bulk build by ajacoutot@; ok robert@; "you should go for it" deraadt@
2016-01-01rmeove unused noprint variableJoerg Jung
from Fabian Raetz via tech@ ok krw
2016-01-01add grp.h for setgroups, not necessarily required on OpenBSD but reduces diffJoerg Jung
to -portable ok gilles