Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-12-17 | remove unused macros; | Jason McIntyre | |
2019-12-17 | copy pledge code from nslookup | Theo de Raadt | |
2019-12-17 | Since dscp probing (setsockopt, special cmsg handling, etc) no longer occurs | Theo de Raadt | |
late, pledge "dns" is enough and "inet" is not required. | |||
2019-12-17 | disable all the dscp probing code. it sees all the dscp option | Theo de Raadt | |
defines, but is trying to determine if the kernel has it enabled/disabled, mostly by performing tests against localhost. instead, just declare dscp works. since dscp probing happens late, it runs into problems with pledge. we prefer pledge over this lovecraftian horror. | |||
2019-12-17 | correct some uses of .Nm | Jonathan Gray | |
2019-12-17 | We aren't going to update to a MPL licensed bind codebase so replace | Jonathan Gray | |
the man pages we install which were man(7) generated from docbook with mdoc(7) pages. Adjusted output of textproc/docbook2mdoc on 9.10.8-P1. ok sthen@ jmc@ kn@ | |||
2019-12-17 | - isc-config isn't needed, we're only using bind sources for dig/host/nslookup | Stuart Henderson | |
and aren't installing libraries for use by other software - config.h.win32 isn't needed | |||
2019-12-17 | avoid line wrap in the dkimsign filter line; | Jason McIntyre | |
2019-12-17 | tweak the rspamd bits a little. we really don;t need to repeat the | Jason McIntyre | |
previous example; ok gilles | |||
2019-12-17 | kn pointed out that the changes i made to "socket owner" can be | Jason McIntyre | |
applied to "owner" too; | |||
2019-12-17 | Use local variable isntead of function parameter | kn | |
The parse_size() wrapper around scan_scaled(3) writes its intermediate result to the function argument which is always passed as literal zero. This seems odd, the function parameter has no meaning but merely serves as storage, so let's use a proper function scoped variable instead. OK pd | |||
2019-12-17 | combine "socket owner user[:group]" and "socket owner :group" | Jason McIntyre | |
into one logical item; ok pd | |||
2019-12-17 | what is docbook? | Theo de Raadt | |
2019-12-17 | Add back some SOCK_DNS to socket() calls, and add a few more while | Theo de Raadt | |
here (since this codebase will only support dig & nslookup) | |||
2019-12-17 | merge in https://github.com/isc-projects/bind9/commit/b8a04d50a361.patch | Stuart Henderson | |
(pre MPL), v4/v6-only wasn't working correctly (trying to use an v6-mapped v4 address when set for v6-only) | |||
2019-12-17 | update to 9.10.8-P1, last isc-licensed release | Stuart Henderson | |
2019-12-17 | rm more unuseful files | Stuart Henderson | |
2019-12-16 | scrap some unused files, part of a bigger diff to update to 9.10.8-P1 | Stuart Henderson | |
(last ISC licensed release) but that has an issue with dig -6 so I'm breaking it out for now | |||
2019-12-16 | knock out some unused variable warnings | Theo de Raadt | |
2019-12-16 | disable IP_RECVTOS below try_proto() also | Theo de Raadt | |
2019-12-16 | pledge +inet until the try_proto() garbage is neutered | Theo de Raadt | |
2019-12-16 | don't pick up libjson, it also adds /usr/local/include to header search path | Stuart Henderson | |
2019-12-16 | Update to bind-9.10.5-P3, which appears to have been the last ISC version. | Theo de Raadt | |
We only use this tree to build dig and nslookup. Our previous version predated edns0 support in those tools, and we want that. This is the worst code I've looked at in years, with layers and layers of spaghetti abstraction clearly unfit for reuse, but then reused anyways, and the old ones remain behind. So this is a 8MB diff. florian, sthen, and otto tried this merge before but failed. | |||
2019-12-16 | Update to bind-9.10.5-P3, which appears to have been the last ISC version. | Theo de Raadt | |
We only use this tree to build dig and nslookup. Our previous version predated edns0 support in those tools, and we want that. This is the worst code I've looked at in years, with layers and layers of spaghetti abstraction clearly unfit for reuse, but then reused anyways, and the old ones remain behind. So this is a 8MB diff. florian, sthen, and otto tried this merge before but failed. | |||
2019-12-16 | When rsync exits non zero because of network issues or because the | Claudio Jeker | |
provided URI is bogous, rpki-client should try to work with the cache it has and not exit with an error. This should help when URI to localhost are published which happened at least 2 times already. Agreed by deraadt@ and benno@ | |||
2007-01-10 | ISC BIND release 9.3.3 | Jakob Schlyter | |
2006-04-05 | ISC BIND release 9.3.2 | Jakob Schlyter | |
2006-04-05 | ISC BIND release 9.3.2 | Jakob Schlyter | |
2005-03-22 | ISC BIND release 9.3.1. ok deraadt@ | Jakob Schlyter | |
2004-09-28 | ISC BIND version 9.3.0. ok deraadt@ | Jakob Schlyter | |
2004-09-28 | ISC BIND version 9.3.0. ok deraadt@ | Jakob Schlyter | |
2003-01-20 | ISC BIND version 9.2.2rc1 | Jakob Schlyter | |
2019-12-16 | Instead of passing the peer id down to peer specific functions do the lookup | Claudio Jeker | |
in the imsg handler and pass a struct rde_peer pointer to those functions. OK denis@ | |||
2019-12-16 | Rework route priority filter. | denis | |
reads OK benno@ remi@ | |||
2019-12-15 | Clear r_list if the interface is passive. Additionaly move the check | remi | |
for passive interface a bit further up so that the function can return earlier. Memory leak observed and reported by Jason Tubnor. OK benno@ | |||
2019-12-15 | Explicitly print root user in status OWNER column | kn | |
With "owner root:wheel" (any group) the status output prints ":wheel" only, presumably to emphasize that only group membership matters. Always print whatever is configured to be explicit and less confusing. OK jasper | |||
2019-12-14 | failing fsync() with EINVAL should not cause a TempFail in mboxfile, | Gilles Chehade | |
it means the file was most likely a device not supporting fsync() so we can't do much and retrying isn't going to help. | |||
2019-12-14 | introduce a bypass keyword so that builtin filters can bypass processing of | Gilles Chehade | |
a phase when a condition is met suggested by several people including jung@, ok jung@ | |||
2019-12-14 | Strip out the optional login style before looking up user in passwd. | Todd C. Miller | |
Reported by Dennis Lindroos. OK tb@ | |||
2019-12-13 | fix DKIM example | Gilles Chehade | |
mistake spotted by jmc@ | |||
2019-12-13 | occuring -> occurring | Gilles Chehade | |
spotted by jmc@ | |||
2019-12-13 | trim previous; ok gilles | Jason McIntyre | |
2019-12-13 | In rde_dispatch_imsg_session() reorder the case blocks a bit so they | Claudio Jeker | |
group better together. | |||
2019-12-13 | add support for CIDR in a: spf atoms | Gilles Chehade | |
diff from Quentin Rameau <quinq@fifth.space> | |||
2019-12-13 | file no longer exists | Gilles Chehade | |
2019-12-13 | lka_proc.c had common code to fork a proc filter for lka_filter.c and | Gilles Chehade | |
lka_report.c, but now that lka_filter.c encompasses all the filter API, we might as well merge lka_proc.c and its handful of functions in it. | |||
2019-12-13 | Remove some more show_*_head() functions. Compiler agrees. | Claudio Jeker | |
2019-12-13 | Remove show_rib_summary_head() it is no longer used. | Claudio Jeker | |
Reminded by denis@ | |||
2019-12-13 | First step of refactoring the output processing of bgpctl. Move | Claudio Jeker | |
header printing into show_head() and printing of the data into show(), these are now the only entrypoints where data is printed. OK denis@ | |||
2019-12-13 | add IMSG_REPORT_SMTP_LINK_GREETING, IMSG_REPORT_SMTP_LINK_IDENTIFY and | Gilles Chehade | |
IMSG_REPORT_SMTP_LINK_AUTH to imsg_to_str() |