Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-12-24 | streamline parser loops, now we've got a simple loop with flags, instead | Marc Espie | |
of involved loops. Makes it MUCH easier to have uniform treatment of various constructs. okay millert@ | |||
2004-12-22 | some -Wimplicit-function-declaration cleaning; ok millert@ | David Krause | |
2004-12-20 | change mail address | Moritz Jodeit | |
ok henning@ | |||
2004-12-11 | make syscalls in the monitor restartable when signals occur, as was | Moritz Jodeit | |
the case before privsep and only wait() for our slave processes. with help from millert@ ok millert@ henning@ | |||
2004-12-06 | seperate reply_r, like earlier change but safer; moritz ok | Theo de Raadt | |
2004-12-06 | make signal blocking a lot easier. | Moritz Jodeit | |
ok millert@, henning@ | |||
2004-12-04 | reply() used to play a lot with stdout, expecially fflush(stdout). | Theo de Raadt | |
The recent change is to avoid stdio. That's good, except there are nearly 130 calls to this function, yet what if one of them depended on fflush() or something else in this code? The semantic change was never checked. That is not how we do development -- back this out until we know that checking work has been done. | |||
2004-12-04 | fix a signal race which could kill unrelated processes. | Moritz Jodeit | |
signal handler could be interrupted by another instance of itself because it was used for multiple signals and only one signal was blocked. ok beck@ henning@ | |||
2004-12-03 | make reply() reentrant. fixes a signal race. | Moritz Jodeit | |
ok henning@ | |||
2004-12-01 | fix dlsym(RTLD_NEXT,...) when called from the last shared object | Kurt Miller | |
loaded. ok drahn@ | |||
2004-11-29 | fix nasty signal races by blocking signals in signal handlers. | Henning Brauer | |
with moritz jodeit and theo, ok theo | |||
2004-11-28 | logging fixes: | Henning Brauer | |
-don't prefix ftpd: in syslog(), it does that for us -replace a bad (too late) err() by syslog + exit from moritz | |||
2004-11-28 | use gettimeofday() instead of time() in functions called from signal ↵ | Theo de Raadt | |
handlers; henning ok | |||
2004-11-28 | slave_pid -1 by default, not 0, and reset to -1 when it goes away, with theo | Henning Brauer | |
2004-11-28 | bump version | Henning Brauer | |
2004-11-28 | remove no longer appropriate bugs section | Henning Brauer | |
2004-11-28 | fix ttyline setting, fixes proctitle. | Henning Brauer | |
notice independently by theo and pval, fix from moritz jodeit | |||
2004-11-28 | privilege seperate ftpd | Henning Brauer | |
handle the pre-authentication phase (minus a tiny tiny tiny amount of code after accept()) in an unprivileged process, asking the privileged monitor for help where needed. work by Moritz Jodeit <moritz@jodeit.org> with help from theo and me tests theo ian@ matthieu@ ben@networkinsanity.com a.schlichting@lemarit.com | |||
2004-11-24 | Enable krb5 authentication (from Gabriel Kihlman) and encryption | Bjorn Sandell | |
"go for it" deraadt@ | |||
2004-11-22 | .{N,O}x fixes; | Jason McIntyre | |
2004-11-22 | More sensible error when both the -n and -A flags are used. Text OK jmc@ | Todd C. Miller | |
2004-11-21 | clarify -A option; | Jason McIntyre | |
from a discussion on misc@ | |||
2004-11-19 | options sort and sync usage(); | Jason McIntyre | |
from wiz@netbsd | |||
2004-11-17 | - \r\n fix for QUIT command | Bob Beck | |
- Implement RSET in spamd - some virus scanning products (notably symantec's viruswall) spew a RSET into the smtp stream before every attempted delivery. (noticed by reitenba@fh-brandenburg.de and some others). This ensures such things can successfully talk to a spamd greylister. ok millert@ henning@ | |||
2004-11-17 | remove NI_WITHSCOPEID (which is not standard) | Jun-ichiro itojun Hagino | |
2004-11-10 | use ${STATIC} rather than -static. ok miod | Dale Rahn | |
2004-11-09 | Avoid use after free(), slight optimization. From Patrick Latifi. | Otto Moerbeek | |
ok tom@ deraadt@ | |||
2004-11-04 | some delint, grudging ok from otto, because it is messy stuff | Theo de Raadt | |
2004-10-17 | Fix some problems related to LD_LIBRARY_PATH parsing where it would not | Dale Rahn | |
correctly deal with current directory searches specified by "::", ":foo" or "foo:" | |||
2004-10-14 | Add dl_iterate_phdr() support. | Mark Kettenis | |
ok drahn@, millert@ | |||
2004-10-05 | Change the default passtime to 25 minutes, | Bob Beck | |
MTA's with a quadratic retry schedule have a retry after 26 minutes, and then again after an hour, so this probably makes a lot more sense than the old 30 minute default. ok henning@ | |||
2004-10-05 | change default to 451 for greylisting, thanks to a number of | Bob Beck | |
people on misc, and some observations by Evan harris on the greylisting mailing list that a number of clustered mailers like aol behave better (and retry from the same IP) when they see a 451, but do not when they see a 450 (traditionally used for mailbox lock failure) 450 was the original for spamd, as the default for the tarpit is to encourage quick retries to punish blacklisted smtp servers more. This got carried over to the greylisting implementation, and isnt' really optimal for that case. ok millert@, henning@, todd@ | |||
2004-10-01 | Fix GOT reloc which had flaws in reloc processing. | Per Fogelstrom | |
Big thanks to Mark Kettenis for finding the problem! | |||
2004-09-30 | cope nicer with accept() failures, from freebsd; millert ok | Theo de Raadt | |
2004-09-30 | handle unaligned in local relocs as well (c++) | Per Fogelstrom | |
2004-09-28 | tweaks; | Jason McIntyre | |
2004-09-28 | pass lint | Theo de Raadt | |
2004-09-28 | login script to provide TIS Firewall Toolkit authentication | Todd C. Miller | |
2004-09-23 | When doing relocs to .rodata this section must be RW protected. | Per Fogelstrom | |
It would be nice to fix this so it does not do a mprotect call for each and every reloc but it will need a change in MI code so we just fix it like this for now. There are not so many relocs in ld.so itself. | |||
2004-09-21 | Automatically adapt to actual text/data alignment | Per Fogelstrom | |
2004-09-21 | ELF64 and got ro prot | Per Fogelstrom | |
2004-09-18 | ARGSUSED signal handler | Theo de Raadt | |
2004-09-18 | fix pr 3914, spamd doesn't log only incoming with -I, | Bob Beck | |
and change to look only at S/SA so people logging all crud don't get slaughtered by entries. again from mike@tric.tomsk.gov.ru ok henning@ | |||
2004-09-18 | This should be info, from mike@tric.ru | Bob Beck | |
ok henning@ | |||
2004-09-18 | ARGSUSED on signal handlers | Theo de Raadt | |
2004-09-16 | more signal flag races; ok miod@ | Otto Moerbeek | |
2004-09-16 | i hate macros with 50 , :? and ())()()((()())); otto ok | Theo de Raadt | |
2004-09-16 | clean C for a change | Theo de Raadt | |
2004-09-16 | remove unused variables | Theo de Raadt | |
2004-09-16 | more unsigned char | Theo de Raadt | |