summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-10-08obvious realloc -> reallocarray conversionTheo de Raadt
2014-10-08obvious reallocarray()Theo de Raadt
2014-10-08using reallocarray() gives us multiplicative integer overflow checkingTheo de Raadt
in case something wants to create massive amounts of environment, like a bit more than 1/4 of a 32-bit address space. unrealistic -- but why audit one code path, and not treat others the same? then you have to re-engage everytime you see the code. read the news, that isn't what developers do. At least if the code paths look the same, there is hope, because they are easier to verify for correctness. developers need to give other developers a chance to want to care.
2014-10-08obvious conversion of realloc() to reallocarray(). Luckily this isTheo de Raadt
using pollfd, because if this was fd_set... it would not be obvious (or easy)
2014-10-08obvious reallocarray(); ok dougTheo de Raadt
2014-10-08obvious malloc -> reallocarray, for mult int oflowTheo de Raadt
2014-10-08Remove the i830/i845 pipe A force quirks, matching changesJonathan Gray
in recent versions of the linux drm code. drm/i915: Nuke pipe A quirk on i830M From Daniel Vetter 0e8abc81bf4b54a01bb026ba4d883de7c415cc03 in mainline linux drm/i915: Undo the PIPEA quirk for i845 From Chris Wilson a4945f9522d27e1e6d64a02ad055e83768cb0896 in mainline linux With this change a hardware lockup with i845g reported by "THEvoid" via bugs@ is avoided.
2014-10-08obvious reallocarray()Theo de Raadt
2014-10-08if SMALL_KERNEL do not register the imc_watchdog_cb callback. We stillTheo de Raadt
use the callback function to clear conditions on boot... but no callback hook. Should work :)
2014-10-08obvious malloc() -> reallocarray() oflow check; ok dougTheo de Raadt
2014-10-08KNFTheo de Raadt
2014-10-08easy realloc() -> reallocarray() which gives us mult int overflow checkingTheo de Raadt
for free, FREE, FREEEEE ok doug
2014-10-08obvious realloc() -> reallocarray() conversionsTheo de Raadt
ok doug
2014-10-08remove a spaceTheo de Raadt
2014-10-08use reallocarray(NULL, a, b) instead of malloc(a*b)Theo de Raadt
ok doug
2014-10-08easy obvious use of reallocarray(); ok dougTheo de Raadt
2014-10-08use reallocarray(); ok dougTheo de Raadt
2014-10-08use reallocarray(). BTW << 3 is a sloppy compared to * sizeof(u_int64_t)...Theo de Raadt
ok doug
2014-10-08obvious reallocarray() use for * int overflow; ok dougTheo de Raadt
2014-10-08reallocarray() to detect potential int overflow; ok dougTheo de Raadt
2014-10-08reallocarray() for mult int overflow detect; ok dougTheo de Raadt
2014-10-08remove useless castTheo de Raadt
2014-10-08simple reallocarray() use; ok dougTheo de Raadt
2014-10-08use reallocarray() to detect int overflow; ok dougTheo de Raadt
2014-10-08use reallocarray() to cope with multiplicative integer overflow; ok dougTheo de Raadt
2014-10-08use reallocarray() instead of realloc() to handle potential integer ↵Theo de Raadt
overflow; ok doug
2014-10-08add a xreallocarray() like the existing fatal xmalloc(), and use it toTheo de Raadt
detect potential integer. ok doug
2014-10-08reallocarray() to detect integer overflow; ok dougTheo de Raadt
2014-10-08userland reallocarray audit.Doug Hogan
Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the size argument with reallocarray(). ok deraadt@
2014-10-08userland reallocarray audit.Doug Hogan
Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the size argument with reallocarray(). ok deraadt@
2014-10-08userland reallocarray audit.Doug Hogan
Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the size argument with reallocarray(). ok deraadt@
2014-10-08userland reallocarray audit.Doug Hogan
Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the size argument with reallocarray(). ok deraadt@
2014-10-08userland reallocarray audit.Doug Hogan
Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the arguments with reallocarray(). ok deraadt@
2014-10-08userland reallocarray audit.Doug Hogan
Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the arguments with reallocarray(). ok deraadt@
2014-10-08fix an indentation that makes me upsetTheo de Raadt
2014-10-08userland reallocarray audit.Doug Hogan
Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the arguments with reallocarray(). ok deraadt@
2014-10-08userland reallocarray audit.Doug Hogan
Replace malloc() and realloc() calls that may have integer overflow in the multiplication of the arguments with reallocarray(). ok deraadt@
2014-10-08remove stupid castTheo de Raadt
2014-10-08do not need a cast from void *Theo de Raadt
2014-10-08bump max columns out to 768. screens are getting bigger...David Gwynne
ok deraadt@
2014-10-08sl(4) was tedu'd. No need to filter it out of interface list anymore.Kenneth R Westerback
2014-10-07no more Xr to gzsigTheo de Raadt
2014-10-07syncTheo de Raadt
2014-10-07remove preliminary AOE (ata over ethernet) support. not finished afterTed Unangst
many years and wide spread demand for support never materialized. time to pack it in.
2014-10-07fix a critical DDOS in head. use the correct exit code on failure.Ted Unangst
reported by craig skinner. ok deraadt schwarze
2014-10-07remove gzsig. we have no use for this now.Ted Unangst
2014-10-07be a bit more patient, 1s is sometimes insufficient for legitimate queriesIngo Schwarze
2014-10-07Switch HTML output to polyglot HTML5; have only one single -Thml mode.Ingo Schwarze
Replace hard-coded widths and alignments with a minimal embedded stylesheet. Do not use <p> because it cannot appear inside block macros. Remove the "summary" attribute because it is not HTML5. Written by kristaps@ some months ago, finished during EuroBSDCon.
2005-05-28import gzsig by Dug Song. marius eriksen
a bunch of lumberjack work, zapped support for keynote and SSH1 and added support for SSH2 keys. ok millert@ deraadt@
2014-10-07If a tbl(7) layout contains unknown font modifiers, fall back to theIngo Schwarze
default font rather than failing the whole table. Needed by some pages in books/man-pages-posix. Written on the plane back from EuroBSDCon in Sofia.