Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-10 | Xr pci(4) | Jonathan Gray | |
2018-07-10 | sync arm64 and armv7 pci | Jonathan Gray | |
2018-07-09 | no more i386_vm86.2; | Jason McIntyre | |
2018-07-09 | these pages don;t need Bk/Ek; | Jason McIntyre | |
order the options in pkg_outdated; | |||
2018-07-09 | out-of-date -> pkg_outdated; | Jason McIntyre | |
2018-07-09 | out-of-date -> pkg_outdated | Marc Espie | |
2018-07-09 | resolve-lib -> port-resolve-lib-helper; | Jason McIntyre | |
2018-07-09 | resolve-lib -> port-resolve-lib-helper | Marc Espie | |
2018-07-09 | move helper script to a more sensible name | Marc Espie | |
2018-07-09 | rename pure helper script, not for user consumption | Marc Espie | |
2018-07-09 | dolock -> portlock; | Jason McIntyre | |
2018-07-09 | dolock -> portlock | Marc Espie | |
(no discussion about this one) | |||
2018-07-09 | manpage for bnxt(4) | Jonathan Matthew | |
2018-07-09 | remove bogus .Sx macros; noticed by Mikhail <mp39590 at gmail dot com> | Ingo Schwarze | |
OK jmc@ | |||
2018-07-08 | Include the standard string mentioning 802.11 versions in bwfm(4)'s | Stuart Henderson | |
description, to aid searches. ok and reminder for usb(4) and pci(4) jmc@ | |||
2018-07-05 | supply an arch for Dt; | Jason McIntyre | |
2018-07-05 | acpipci(4) | Mark Kettenis | |
2018-07-05 | update the route message documentation | Sebastian Benoit | |
ok claudio@ | |||
2018-07-05 | Add support for the VIA VX900 chipset in viapm(4). | Frederic Cambus | |
OK kettenis@ | |||
2018-07-02 | Add @acpi attachment. | Mark Kettenis | |
Pointed out by mlarkin@ | |||
2018-07-01 | sync description for acpisurface and remove a blank line; | Jason McIntyre | |
ok mlarkin | |||
2018-06-30 | end of line requires \ | Theo de Raadt | |
2018-06-30 | acpisurface(4): man pages and makefile changes | Mike Larkin | |
2018-06-27 | certificate keyword renamed to cert; from raf czlonka | Jason McIntyre | |
2018-06-26 | add missing .An and .Mt macros below AUTHORS | Ingo Schwarze | |
2018-06-26 | various minor tweaks; | Jason McIntyre | |
2018-06-26 | move ports infra manpages into base, as discussed with | Marc Espie | |
schwarze@, deraadt@, landry@... | |||
2018-06-23 | Small wording tweak which is slightly closer to the ever elusive truth. | rob | |
Ok tb@ | |||
2018-06-19 | Rename some unused fields in struct uvmexp to | Kenneth R Westerback | |
unusedNN. Missing man page bits pointed out by jmc@. Ports source scan by sthen@. ok deraadt@ guenther@ | |||
2018-06-19 | Update update-patches description, document EDIT_PATCHES | kn | |
OK jca | |||
2018-06-19 | describe more supported hardware | Jonathan Matthew | |
2018-06-19 | Correct pfCntProtoCksum description. | Martin Pieuchot | |
From joel@ | |||
2018-06-19 | eoip tunnels Ethernet, not IP | David Gwynne | |
2018-06-18 | space needed between macro args and punctuation; | Jason McIntyre | |
2018-06-18 | point readers to multicast(4) directly, the documentation has moved. | Sebastian Benoit | |
ok jmc@ | |||
2018-06-18 | Talk about the common USE_LIBTOOL vs BUILD_DEPENDS case (ports that only | Stuart Henderson | |
need libtool.m4 from devel/libtool just need BUILD_DEPENDS, USE_LIBTOOL is a special case for things that don't work with base libtool). ok aja espie | |||
2018-06-18 | consistently spell "real-time clock"; | Jason McIntyre | |
ok deraadt bentley schwarze | |||
2018-06-18 | the directive is "listen on"; | Jason McIntyre | |
2018-06-18 | remove the example output from ifconfig and route: it will keep getting out of | Jason McIntyre | |
date and provided little aid anyway; merge the network if and routing tables sections; ok benno | |||
2018-06-17 | if there is an audioamd page, i can;t find it; | Jason McIntyre | |
while here, kill some Tn; | |||
2018-06-16 | TIOCSTI is gone | Theo de Raadt | |
2018-06-16 | Mention i.MX 7. | Mark Kettenis | |
2018-06-16 | imxrtc(4) | Mark Kettenis | |
2018-06-13 | Tweak about "-p" and "-pg". | YASUOKA Masahiko | |
ok jsg | |||
2018-06-11 | use the correct name for the cert; ok gilles | Jason McIntyre | |
2018-06-07 | Make callers of VOP_CREATE(9) and VOP_MKNOD(9) responsible for | Visa Hankala | |
unlocking the directory vnode. OK mpi@, helg@ | |||
2018-06-07 | tweak previous; | Jason McIntyre | |
2018-06-07 | Mention enabling PIE by default is turned off by using "-pg". | YASUOKA Masahiko | |
2018-06-06 | pluart(4) is mi now | Jonathan Gray | |
2018-06-06 | Add RETGUARD to clang for amd64. This security mechanism uses per-function | mortimer | |
random cookies to protect access to function return instructions, with the effect that the integrity of the return address is protected, and function return instructions are harder to use in ROP gadgets. On function entry the return address is combined with a per-function random cookie and stored in the stack frame. The integrity of this value is verified before function return, and if this check fails, the program aborts. In this way RETGUARD is an improved stack protector, since the cookies are per-function. The verification routine is constructed such that the binary space immediately before each ret instruction is padded with int03 instructions, which makes these return instructions difficult to use in ROP gadgets. In the kernel, this has the effect of removing approximately 50% of total ROP gadgets, and 15% of unique ROP gadgets compared to the 6.3 release kernel. Function epilogues are essentially gadget free, leaving only the polymorphic gadgets that result from jumping into the instruction stream partway through other instructions. Work to remove these gadgets will continue through other mechanisms. Remaining work includes adding this mechanism to assembly routines, which must be done by hand. Many thanks to all those who helped test and provide feedback, especially deaadt, tb, espie and naddy. ok deraadt@ |