summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-01-21getting sysctl(net.inet6.ip6.def_hlim) need int variable, not u_longJun-ichiro itojun Hagino
2003-01-21Style, punctuation and grammar fixups from Ted Unangst on bugs@.Hugh Graham
2003-01-21Do not do multiple stackgap_init calls in the same syscall execution,Niklas Hallqvist
chances are big that entities allocated early should live longer than later stackgap_init invocations. This fixes UDP problems in Linux emulation, most notably YP, and some DNS issues. ok fgsch@, jasoni@ & pvalchev@
2003-01-21correct arg size for IPV6_UNICAST_HOPS socket option. Hiroki SatoJun-ichiro itojun Hagino
2003-01-21bzero() siop_target structure after malloc().Kenneth R Westerback
In combination with previous openings fix makes Niklas happy. Probably fixes some negotiation bugs too. Another good candidate for -stable.
2003-01-21Get rid of vm_{offset,size}_t on i386.Artur Grabowski
deraadt@ ok.
2003-01-20remove directory statement, not needed since we chroot by defaultJakob Schlyter
2003-01-20generated shared secret for rndc/bind9; ok millert@Jakob Schlyter
2003-01-20bind9 configuration filesJakob Schlyter
2003-01-20regen with autoconf 2.52Jakob Schlyter
2003-01-20document our local changesJakob Schlyter
2003-01-20write pid-file before chroot (also specifiable via -i on the command line).Jakob Schlyter
2003-01-20fall back to system random device if chrootJakob Schlyter
2003-01-20syncTheo de Raadt
2003-01-20close /dev/null on shutdownJakob Schlyter
2003-01-20open /dev/null before chrootJakob Schlyter
2003-01-20indentJakob Schlyter
2003-01-20call tzset() before chrootJakob Schlyter
2003-01-20include lcg.h instead of lfsr.hJakob Schlyter
2003-01-20better serial generationJakob Schlyter
2003-01-20use arc4random()Jakob Schlyter
2003-01-20add lcg test programJakob Schlyter
2003-01-20add option to force IPv4/IPv6Jakob Schlyter
2003-01-20better id generationJakob Schlyter
2003-01-20test for tzset()Jakob Schlyter
2003-01-20test for arc4random()Jakob Schlyter
2003-01-20use arc4random() instead of rand() if availibleJakob Schlyter
2003-01-20use isc_random_get instead of rand()Jakob Schlyter
2003-01-20use lcg instad of lfsr for id generationJakob Schlyter
2003-01-20fix broken lfsr implementationJakob Schlyter
2003-01-20add lcg.hJakob Schlyter
2003-01-20prevent the compiler from blowing up on sparc64; from NetBSD via millert@Jakob Schlyter
2003-01-20add Linear Congruential Generator implementationJakob Schlyter
2003-01-20initJakob Schlyter
2003-01-20chroot to /var/named by defaultJakob Schlyter
setuid to named by default
2003-01-20skip dnssec programsJakob Schlyter
2003-01-20ISC BIND version 9.2.2rc1Jakob Schlyter
2003-01-20Add /var/empty/devTodd C. Miller
2003-01-20Sync with pfctl fixes.Cedric Berger
2003-01-20Cut & paste madness. We were (un)lucky it worked before!Cedric Berger
2003-01-20Add a /var/empty/dev/log socket for things that chroot to /var/empty.Todd C. Miller
2003-01-20It's difficult to create a table by changing its flags.Cedric Berger
2003-01-20Don't reconnect to logging socket if send() returns an error and errnoTodd C. Miller
== ENOBUFS, there is no point and it hurts chroot'ed processes. Don't return immediately from syslog_r() when the send(), we may have more work to do. deraadt@ OK
2003-01-20replace references to libc_r with libpthread. Note that -pthreadMarco S Hyman
should be used, not -lpthread.
2003-01-20typos; alan@alanday.comTheo de Raadt
2003-01-20use LOG_NDELAY in chroot() using daemonsTheo de Raadt
2003-01-20remove libc_r mention in commentMarco S Hyman
2003-01-20remove libc_r mention in commentMarco S Hyman
2003-01-20Allow the fetching of current stack info from threaded apps.Marco S Hyman
This is necessary for alpha setjmp. The alpha setjmp/longjmp regression tests pass with -pthread with this change
2003-01-20unused var; found by dhartmei@ and camield@Henning Brauer