Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-22 | mop up a barely started project... getting in the way of grepping the tree! | Theo de Raadt | |
2014-11-20 | user error is not a bug. fingerd is not responsible for filtering out | Ted Unangst | |
incorrect client garbage. ok deraadt sthen | |||
2014-11-19 | Nuke yet more obvious #include duplications. | Kenneth R Westerback | |
ok deraadt@ | |||
2014-11-18 | Nuke some obvious #include duplications. | Kenneth R Westerback | |
ok espie@ deraadt@ millert@ tedu@ | |||
2014-11-15 | Reduce instances of `` '' in manuals. | Anthony J. Bentley | |
troff displays these as typographic quotes, but nroff implementations almost always print them literally, which rarely has the intended effect with modern fonts, even in stock xterm. These uses of `` '' can be replaced either with more semantic alternatives or with Dq, which prints typographic quotes in a UTF-8 locale (but will automatically fall back to `` '' in an ASCII locale). improvements and ok schwarze@ | |||
2014-11-15 | ELF files have moved up a level | Philip Guenther | |
pointed out by deraadt@ | |||
2014-11-03 | Eliminate RTLD_PROTECT_PLT: ld.so is built with -Bsymbolic so the | Philip Guenther | |
PLT is empty/unused. On at least macppc and sparc64, ld.so's attempt to mprotect its PLT could instead hit its own allocated data and cause a segfault shortly there after. While here, take a shot at preventing the same issue with the GOT by checking for __got_start != __got_end. reproduction *with ktracing* by afresh1@ provided the key data ok miod@ deraadt@ | |||
2014-11-03 | reduce dependency on passwd. just call bcrypt_newhash to do the dummy work. | Ted Unangst | |
2014-11-03 | arc4random_uniform() transformation was off, resulting in badly skewed | Philip Guenther | |
distribution in the placement of malloc's dir_info. ok otto@ deraadt@ | |||
2014-10-25 | Remove unnecessary netinet/in_systm.h include. | Lawrence Teo | |
ok millert@ | |||
2014-10-19 | Revert last commit due to changed semantics found by make release. | Doug Hogan | |
2014-10-18 | Better POSIX compliance in realpath(3). | Doug Hogan | |
millert@ made changes to realpath.c based on FreeBSD's version. I merged Todd's changes into dl_realpath.c. ok millert@, guenther@ | |||
2014-10-18 | Convert some malloc() and realloc() calls to reallocarray(). | Doug Hogan | |
ok deraadt@ | |||
2014-10-18 | Simple malloc() to reallocarray() conversion. | Doug Hogan | |
ok deraadt@ | |||
2014-10-11 | Fix manpage: -y only takes interface names, and doesnt take ip addresses. | Landry Breuil | |
Fix example while here. ok back@ | |||
2014-10-11 | obvious reallocarray | Theo de Raadt | |
2014-10-11 | Userland reallocarray() audit. | Doug Hogan | |
Avoid potential integer overflow in the size argument of malloc() and realloc() by using reallocarray() to avoid unchecked multiplication. ok deraadt@ | |||
2014-10-09 | obvious reallocarray() conversions | Theo de Raadt | |
2014-10-08 | obvious reallocarray() use for * int overflow; ok doug | Theo de Raadt | |
2014-10-08 | remove useless cast | Theo de Raadt | |
2014-10-08 | do not need a cast from void * | Theo de Raadt | |
2014-10-05 | we use tradcpp instead; ok jsg | Theo de Raadt | |
2014-09-22 | Correct the token used. | Brad Smith | |
Pointed out by LLVM. ldasm.S:111:74: error: unexpected token in '.type' directive .section ".text" ; .align 4 ; .global _dl_issetugid ; .type _dl_issetugid%function ;_dl_issetugid: ; movl $253,%eax; int $0x80 ; jb .L_cerr ; ret ^ ok guenther@ | |||
2014-09-16 | use crypt_checkpass function to make things simple | Ted Unangst | |
2014-09-16 | less sendmail; | Jason McIntyre | |
2014-09-16 | less sendmail; | Jason McIntyre | |
2014-09-16 | no need to Xr sendmail here; | Jason McIntyre | |
2014-09-15 | Remove non-standard <sys/dkstat.h> header. It has not contained anything | Miod Vallat | |
related to disk stastics for almost 17 years, and the remaining userland-visible defines duplicate those found in <sys/sched.h>. Move the remaining _KERNEL defines to <sys/tty.h> where they belong, and update all users to cope with this. ok kettenis@ | |||
2014-09-01 | Sync readlink(2) with IEEE Std 1003.1-2008. | Doug Hogan | |
discussion, help and ok guenther@ | |||
2014-09-01 | Simplify the syslog.conf example: .info means that *and higher* | Philip Guenther | |
ok beck@ | |||
2014-08-30 | Make the handling of PLT entries above the 32k mark thread-safe. | Philip Guenther | |
Also, make a comment not lie: use the V9 ISA's relative branch immediate instruction for short (with in 2^19 words) PLT branches. ok miod@ | |||
2014-08-25 | Delete secret or secret-derived data with explicit_bzero. | Doug Hogan | |
concept ok deraadt@ diff looks ok tedu@ | |||
2014-08-19 | ld.so(1): Missing stack var initialization | Masao Uebayashi | |
Explicitly zero-clear stack array to read dynamic segments. This code has been working because stack is mapped as anon and zero'ed right after execve(2). Found by work-in-progress Valgrind port for OpenBSD/amd64. OK millert@ guenther@ | |||
2014-08-10 | Only need <stdint.h> and not all of <inttypes.h> here | Philip Guenther | |
2014-08-08 | some basic fixes; | Jason McIntyre | |
2014-08-08 | Add support for using - as shorthand for stdin/stdout in tradcpp. | Jonathan Gray | |
When looking into switching the /usr/bin/cpp wrapper to tradcpp I came across "| ${CPP} ${CPPFLAGS} -" in usr.bin/which. gcc documents this behaviour for cpp here: https://gcc.gnu.org/onlinedocs/cpp/Invocation.html Versions of the John F. Reiser derived cpp in 32V and CSRG SCCS accept this usage as well, as does the cpp in PCC. | |||
2014-07-30 | unhook auxcpp | Jonathan Gray | |
2014-07-30 | descend into tradcpp | Jonathan Gray | |
2014-07-30 | Add tradcpp 0.4, a standalone traditional whitespace preserving cpp | Jonathan Gray | |
by David A. Holland of NetBSD. | |||
2014-07-28 | _dl_sigprocmask() works better when it actually saves the returned sigmask | Philip Guenther | |
asm suggestion from kettenis@ tested by miod@, suffering under the brain-destroying summer heat | |||
2014-07-16 | zap trailing newlines; "go for it" deraadt | Okan Demirmen | |
2014-07-14 | The file /etc/exports is now optional and not installed by default, | Ingo Schwarze | |
so do not complain when it is absent. issue found by and patch ok by ajacoutot@ "I don't do perl, but seems ok" deraadt@ | |||
2014-07-14 | explicit copyright, as authorized by Thomas. Thanks! | Marc Espie | |
2014-07-14 | Now that we have sendsyslog(2), we can directly use it in the | Theo de Raadt | |
(previously completely retarded) stack_smash_handler of ld.so ok beck miod tedu | |||
2014-07-12 | Hook auxcpp | Matthieu Herrb | |
2014-07-12 | Eliminate strcpy() and sprintf() in auxcpp. ok deraadt@ | Matthieu Herrb | |
2014-07-12 | Local tweaks to ucpp: | Matthieu Herrb | |
- exit on the 1st error it finds. Better than stopping processing input - accept -P as a synonym for -l since this is what xrdb uses to suppress #line markers. | |||
2014-07-12 | Rename the manual page to auxcpp.1 | Matthieu Herrb | |
2014-07-12 | BSD Makefile for auxcpp | Matthieu Herrb | |
2014-07-12 | Import a copy of ucpp, lightweight cpp that doesn't depend | Matthieu Herrb | |
on the 'comp' set. Moving from xenocara with a new name. ok deraadt@. |