summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2004-02-23document that this even more off-limits than the rest of theMarc Espie
(so far and intentionally) undocumented interface.
2004-02-23bogus leftover SRCS lineTed Unangst
2004-02-23remove security considerations section. this has been fixed.Ted Unangst
2004-02-23supposed to use cflags, oopsTed Unangst
2004-02-23WallTed Unangst
2004-02-23make sure we don't backwards before bufferTed Unangst
2004-02-23buffer len paranoiaTed Unangst
2004-02-23procmap seems to work well enough now. ok deraadt@Ted Unangst
2004-02-23if the heap is non-exec, it makes it hard to find by looking for an execTed Unangst
mapping. much better heuristic.
2004-02-23I was hunting this bug for quite some time. Don't use a value you need laterClaudio Jeker
as counter. This fixes the bad nlri prefix errors I got. OK henning@
2004-02-23While searching a different bug found those two gems. The ntohs is obviousClaudio Jeker
the plen adjusting is needed to jump over the value that we ignore. yaya henning@
2004-02-23unknown is less ugly than ??, and not a trigraph. requested by deraadtTed Unangst
2004-02-23no peeking at kernel or other processes for normal users. ok deraadt@Ted Unangst
2004-02-21distinguish between unreadable directories and non packages.Marc Espie
problem found by John L. Scarfone, who runs a paranoid root.
2004-02-21keep O_NONBLOCK after teh tcp sessions are established, claudio okHenning Brauer
2004-02-20Print ifname in PFSYNC_ACT_CLR message if present.Ryan Thomas McBride
2004-02-20PKG_DESTDIR / -B support in pkg_add.Marc Espie
2004-02-20move wildcard rewriting down. Allows flavors in package-specs toMarc Espie
properly contain a dot and other fun characters. Reported by Jason Ish. Survives a full ports build.
2004-02-20ypbin creates /var/yp/binding/<domainname>.<version> and /var/run/ypbind.lockHenning Brauer
using open(2) with mode 0644 - however, these files _have_ to be world readable, and open's mode is subject to umask. do an explicit fchmod after open to set the mode to 0644 regardless of umask. ok maja@ deraadt@
2004-02-19typo; jjy2+@pitt.eduTheo de Raadt
2004-02-19Add support for basic filters. Nothing optimized and it has some issues butClaudio Jeker
this is a huge step forward. OK henning@
2004-02-19Make the code more portable. Add some missing header files and make the useClaudio Jeker
of the queue(3) makros more portable. OK henning@ some time ago.
2004-02-19Doh. Copy pasto. The if is always false and bogus.Claudio Jeker
2004-02-19takin out the trashTed Unangst
2004-02-19pedro martelletto tells me stroul returns an unsigned long whichTed Unangst
may be bigger than a pid_t
2004-02-18Do aspath loop detecion for outgoing messages too, but this time with theClaudio Jeker
remote peer as. OK henning@
2004-02-18Correctly handle parse errors in aspath and prefixes. Also do input aspathClaudio Jeker
loop detection. OK henning@
2004-02-18clean up openssl req;Jason McIntyre
2004-02-18sort options and SYNOPSIS;Jason McIntyre
sync usage();
2004-02-18Bring the path attribute parsing on big step closer to the RFC.Claudio Jeker
Check that evry attribut is only allowed once and ensure that the mandatory attributes are present. no objections henning@
2004-02-18Fix a nasty memory leak. OK henning@Claudio Jeker
2004-02-18Check for optional path attributes error. This kills some XXX in the code.Claudio Jeker
OK henning@
2004-02-18strtoul for getting pid. ok and numerous hints from deraadt@Ted Unangst
also correct errbuf size
2004-02-18revoke privs asap; tedu okTheo de Raadt
2004-02-18a pinch of knfTheo de Raadt
2004-02-18little cleanup. strlcat. usage. don't call atoi on non-numbers.Ted Unangst
mostly spotted by deraadt@
2004-02-18printing (null) is not so useful. instead print names of missing symbolsTed Unangst
with a useful message.
2004-02-18fix thinko in the revents & (POLLIN|POLLOUT) caseHenning Brauer
2004-02-17improve logging on connection open failHenning Brauer
2004-02-17init wbuf.sock too in init_peer()Henning Brauer
2004-02-17little easierHenning Brauer
2004-02-17bit better err msgs after buf_close (which can't fail anyway actually)Henning Brauer
2004-02-17couple more bits from wiz@netbsd;Jason McIntyre
2004-02-17check for EAGAIN after readHenning Brauer
2004-02-17tidy this page up a bit;Jason McIntyre
2004-02-17malloc checks, strlcpy. based on patch from Vink Joris <nimadeus@pandora.be>Ted Unangst
2004-02-17Somehow size needs some time to settle. The direct inline call of attr_errorClaudio Jeker
caused troubles on my test machines which manifested in garbage size values. OK henning@
2004-02-17missing bzero() of the iovecHenning Brauer
2004-02-17two more returns; open msg counter might have gotten increased too muchHenning Brauer
2004-02-17On write error return and do not try to make a read. OK henning@Claudio Jeker