Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-06-08 | When prebind_newfile() is called the input file is replaced with the new | Dale Rahn | |
file, thus leaking the file descriptor, close the input file when it done. | |||
2008-05-26 | sort flags on both the synopsis and usage. | Igor Sobrado | |
ok jmc@ | |||
2008-05-24 | IPv6 support for standalone mode with assistance from millert@ and deraadt@ | Brad Smith | |
Tested by brad@ and sobrado@ ok deraadt@ | |||
2008-05-22 | version 2 of spamd sync protocol for two reasons: | Theo de Raadt | |
1) ip addresses were accidentally being sent in host-byte order, which caused compatibility problems (spotted by jbg) 2) the sub-headers in the frame were not natively aligned, thus timeout values were incorrectly sent by 64-bit machines ok beck | |||
2008-05-17 | documentation tweaks. | Igor Sobrado | |
ok (some time ago) jmc@ | |||
2008-05-09 | As was done in dhcpd, insert pad blocks after sub-messages to keep the | Theo de Raadt | |
structures aligned to 16 byte boundaries for maximum portability (somewhat similar to CMSG's). Old spamd's and new spamd's can still communicate with this change. It would be nice if someone tested spamd on 64-bit unaligned architectures (with and without this change) ok beck | |||
2008-05-07 | check if the received buffer of a sync element is even big enough to | Reyk Floeter | |
hold the header with length field. ok deraadt@ beck@ | |||
2008-05-05 | Constantly fill in the program header pointer and count in elf_object_t | Kurt Miller | |
for all objects which simplifies phdr usage in a few places. "go for it" drahn@ | |||
2008-04-24 | compare strings with reality for expected behavior; ok millert@ | Todd T. Fries | |
2008-04-13 | Use arc4random_buf() when requesting more than a single word of output | Damien Miller | |
Use arc4random_uniform() when the desired random number upper bound is not a power of two ok deraadt@ millert@ | |||
2008-04-12 | yes, all; girishvenkatachalam | Theo de Raadt | |
2008-04-11 | Correct a bug where _dl_error was set to DL_NOT_FOUND when a shared lib | Kurt Miller | |
was found but failed to load. Adjust _dl_load_shlib() to only attempt to load the first matching shared lib which allows the correct _dl_error to propagate out upon load failure. okay drahn@ | |||
2008-04-09 | Improve support for shared libs linked at non-zero addreses: | Kurt Miller | |
- rename private values in struct elf_object to better describe their meaning: s/load_offs/obj_base/ "object's address '0' base" s/load_addr/load_base/ "The base address of the loadable segments" - gdb needs the obj_base value so swap positions with load_base in struct elf_object - fix a few occurrences of where load_base was used instead of obj_base. With help and okay drahn@ | |||
2008-04-08 | should not call setpwent(); millert agrees | Theo de Raadt | |
2008-04-03 | Use the libgcc version of these functions, no point in having extra copies. | Dale Rahn | |
2008-04-02 | Use the proper define for this address, not a incorrect (on 64bit) define. | Dale Rahn | |
ok kurt@ | |||
2008-03-28 | typo, ok beck@ | Alexander von Gernler | |
2008-03-24 | msg_controllen has to be CMSG_SPACE so that the kernel can account for | Theo de Raadt | |
each cmsg_len (ie. msg_controllen = sum of CMSG_ALIGN(cmsg_len). This works now that kernel fd passing has been fixed to accept a bit of sloppiness because of this ABI repair. lots of discussion with kettenis | |||
2008-03-15 | Repair more msg_controllen dealing with structures or arrays of | Theo de Raadt | |
descriptors; ok hshoexer, also looked at by kettenis and henning | |||
2008-03-15 | Repair the simple cases for msg_controllen where it should just be | Theo de Raadt | |
CMSG_SIZE(sizeof(int)), not sizeof(buffer) which may be larger because of alignment; ok kettenis hshoexer | |||
2008-03-13 | Correct CMSG_SPACE and CMSG_LEN usage everywhere in the tree. Due to | Theo de Raadt | |
an extensive discussion with otto, kettenis, millert, and hshoexer | |||
2008-02-24 | Use rounded down address when changing memory protections on the GOT, such | Dale Rahn | |
that we don't accidentally touch the page after the GOT. Bug found on sparc64 affected other platforms as well. ok kettenis@ | |||
2008-02-24 | Use rounded down address when changing memory protections on the GOT, such | Mark Kettenis | |
that we don't accidentally touch the page after the GOT. ok drahn@ | |||
2008-02-09 | Remove an old workaround that was needed in SCCS times (%M% expanding to the | Marc Balmer | |
filename). ok mikeb, millert | |||
2008-01-08 | simplify the suggested pf ruleset; ok beck | Jason McIntyre | |
2008-01-02 | Update commented out kerberos bits in case someone wants to add missing | Todd C. Miller | |
kerb5 support to login_chpass. | |||
2007-12-27 | Add a missing length check of received spamd sync packet headers. | Reyk Floeter | |
From Diego Giagio (dgiagio at gmail) with input from tedu@ | |||
2007-12-14 | Add radius-port login.conf variable to allow people to configure a | Todd C. Miller | |
non-standard port name or number for use when connecting to radiusd. | |||
2007-11-29 | - get synopsis/usage() right | Jason McIntyre | |
- improve options text no one objected... | |||
2007-11-27 | Fix dlsym w/special handles when called from an executable that has been | Kurt Miller | |
linked without -E. dlsym issues reported by Pedro Martelletto <pedro at ambientworks.net>. okay tedu@ | |||
2007-11-27 | Make _dl_md_reloc_got() report errors, and take them into account. | Miod Vallat | |
Fixes PR #5579. | |||
2007-11-27 | tweak previous; | Jason McIntyre | |
2007-11-27 | add missing header for inet_ntoa. | Charles Longeau | |
"sure" deraadt@ | |||
2007-11-26 | add logging option, ok deraadt@ | Jolan Luff | |
2007-11-03 | PR 5621 - spamd doesn't clear the last entry from an empty TRAP list, | Bob Beck | |
noticed and patch from Piotr Sikora <piotr@sikora.nu> | |||
2007-09-26 | From Tamas TEVESZ: | Ray Lai | |
- Use strcspn to strip \r and \n. OK chl. | |||
2007-09-26 | From Tamas TEVESZ: | Ray Lai | |
- atoi -> strtonum with proper bounds check - Use vfprintf and vsyslog in the appropriate places. OK millert. | |||
2007-09-25 | - sort options and sync usage() | Jason McIntyre | |
- kill some .Tn whilst here | |||
2007-09-25 | more accurate description of -U; from Tamas TEVESZ | Jason McIntyre | |
ok millert | |||
2007-09-25 | better wording; from Tamas TEVESZ | Jason McIntyre | |
2007-09-02 | use calloc() to avoid malloc(n * m) overflows; checked by djm canacar jsg | Theo de Raadt | |
2007-08-26 | Fix some error messages and comments, from Brad. | Ray Lai | |
OK otto. | |||
2007-08-22 | err msg looks better with a \n | Marc Espie | |
2007-08-16 | - Don't fill spamd debug with bogus config errors if there are no | Ray Lai | |
traps. - Change count to size_t to avoid a size_t -> int conversion. - Since configure_spamd always returns 0, change to void. - Since configure_spamd now returns void, remove unreachable logging statement. OK ckuethe and deraadt, initial diff from fgsch@ and OKed by beck. | |||
2007-08-11 | tweak previous: | Jason McIntyre | |
- this document talks about "default mode", not "greylisting mode" - kill trailing whitespace | |||
2007-08-11 | Add note to the effect that the spamd pf table is no | Jonathan Gray | |
longer used in greylisting mode. ok ckuethe@ | |||
2007-08-08 | on NOPIC architectures, do not build and install ld.so. this is in | Theo de Raadt | |
particular for landisk (sh) where ld.so does not yet 100% work, but was still being installed. libtool cares. modified from matthieu patch; ok drahn | |||
2007-07-31 | From Gilles Chehade: | Ray Lai | |
- Use strtonum instead of atoi. - Improve strtol error checking. - Change strchr calls to strcspn and eliminating some unused variables as a result. OK moritz | |||
2007-07-27 | Fix potential memory leak, when snprintf(3) returns an empty buffer. | Moritz Jodeit | |
OK ray@ | |||
2007-07-26 | Remove the space after "Password:" in password prompts where echo is | Todd C. Miller | |
turned off. This is consistent with historic UNIX behavior. |