summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2012-04-16add missing header needed by str* and mem* functionsCharles Longeau
ok gilles@
2012-04-16supplementary code for SamplesMarc Espie
2012-04-16use explicit pattern to avoid huge results from pkg_locate we willMarc Espie
then have to trim.
2012-04-16display truely unknown stuff firstMarc Espie
2012-04-16new glue: figure out how to install pkglocatedb on our own (if notMarc Espie
already there), and use it to locate unknown objects in the file system.
2012-04-15when using aliases, the *real* delivery user is not set on expand nodesGilles Chehade
which prevents filters / filenames from working from /etc/mail/aliases. in aliases_get() during the rb tree iteration, copy the username to the expand node. diff from Christopher Zimmermann, thankkkks and sorry for the delay
2012-04-15Remove dead assignments and newly created unused variables.Charles Longeau
Found by LLVM/Clang Static Analyzer. ok gilles@
2012-04-15fix a leakJonathan Gray
ok krw@
2012-04-15fix some leaksJonathan Gray
ok krw@
2012-04-14update to 1.0.15Robert Nagy
2012-04-14improve readabilityEric Faurot
ok gilles@
2012-04-14Kill Boehms GC dead.Christiano F. Haesbaert
ok mikeb@ sure deraadt@
2012-04-14read returns ssize_t not int.Christiano F. Haesbaert
ok mikeb@
2012-04-14Kill useless memset.Christiano F. Haesbaert
ok mikeb@ "looks good" deraadt@
2012-04-14Don't return from main with 2 uppon issuing double -c option, printChristiano F. Haesbaert
proper usage() message. ok mikeb@ "looks good" deraadt@
2012-04-14Add CDIAGFLAGS infrastructure.Christiano F. Haesbaert
Fix signed vs unsigned and dup symbol shadow. ok mikeb@ "looks good" deraadt@
2012-04-13clarify "hostname"; from robert peichaer orgJason McIntyre
ok gilles
2012-04-12use a shared stripping function for chroot and make sureRobert Nagy
that the path starts with the chroot prefix before doing anything with it
2012-04-12accept pacing ldpd way. Since this daemon has multiple listening fdsClaudio Jeker
we add them all to a accept queue that does the pacing with the accept_pause() and accept_unpause() calls. With and OK deraadt@
2012-04-12The ebgp flags is just a truth value and it is better to not == 1 compares.Claudio Jeker
OK henning@ sthen@
2012-04-12aspath_neighbor() should return the local AS number for empty AS pathes.Claudio Jeker
OK henning@ sthen@
2012-04-12accept() pacing for bgpd based on similar work done on other daemons.Claudio Jeker
OK henning@ sthen@
2012-04-11delete excessive evtimer_pending; ok claudioTheo de Raadt
2012-04-11rate limiting of accept() in various cases. Testing by jmatthew. thereTheo de Raadt
maybe still be a corner case where it needs one more file descriptor beyond the limit..
2012-04-11Do rate limiting of accept() when under pressure, like in other recentTheo de Raadt
daemons. Light testing by some relayd users; let me know if issues develop.
2012-04-11accept() pacing on the control socket if E*FILE errors are returned.Claudio Jeker
Based on work by Theo for ospfd and friends. OK deraadt@
2012-04-10prevent dpb trace handler from getting in the way of normal usage error reports.Marc Espie
2012-04-10Build with -O1 on vax for now, pcre_exec can not build with -O2.Miod Vallat
2012-04-10Handle file descriptor exhaustion in the accept() case.Theo de Raadt
ok claudio
2012-04-08add the evtimout rate-limiting code for accept() here too.Theo de Raadt
eyed a little by joel
2012-04-07The Route Distinguishers should not be used to control distribution.Claudio Jeker
Found by and fix tested by Rimi Philippe
2012-04-07grammar fix;Jason McIntyre
2012-04-06iterate over e_shnum using Elf32_Word instead of intTheo de Raadt
2012-04-06BIOCGBLEN is using a u_int, not an intTheo de Raadt
and casting to size_t for malloc is better
2012-04-06unlike the previous century, the malloc argument now has an accurate typeTheo de Raadt
rather than just "(unsigned)"
2012-04-05Rate-limit accepting of new connections while we are experiencingCamiel Dobbelaar
fd exhaustion. ok deraadt mikeb
2012-04-05Mention the -u flag to tell nginx not to chroot.Stuart Henderson
Help with wording from jmc@, thanks!
2012-04-04Both LSA_TYPE_AREA_OPAQ and LSA_TYPE_AS_OPAQ can be found when traversingClaudio Jeker
the LSDB. So adjust SPF calculation to not trigger a fatal. Problem found and fix tested by Chris Wopat
2012-04-04Disable the install target in nsd and unbound's Makefiles, so if someone runsStuart Henderson
'make install' rather than 'make -f Makefile.bsd-wrapper install' it will just do nothing rather than put files into /usr/local. ok jakob@
2012-04-04Return an error much earlier if recvmsg failsTheo de Raadt
2012-04-04Honour CFLAGS in nginx build, discussed with robert@Stuart Henderson
2012-04-04Set the correct string lengths when stripping the chroot prefixRobert Nagy
from the paths because ngx_str_set() does not set it correctly for us. This change also avoid a use after free() case which was discovered by sthen@ Based on a diff from Steffen Daode Nurpmeso, tested by me and sthen@
2012-04-03Call setusercontext() before chrooting, from Bjorn Ketelaars.Stuart Henderson
2012-04-03regenStuart Henderson
2012-04-03Fix typo in configure.ac, UNBOUND_CHOOT_DIRStuart Henderson
2012-04-02Fix memory leak in error path, originally based on a diff from jsg@.Todd C. Miller
OK deraadt@
2012-04-02make sure we strip the chroot prefix from all root variables, not just theRobert Nagy
first one
2012-04-02bring back an overwritten change which is essential for the chrootedRobert Nagy
version to strip the chroot prefix from root paths
2012-04-01btctl can go too, jmc noticesTheo de Raadt
2012-04-01use our umask() before AF_UNIX bind() semantics; ok pyrTheo de Raadt