summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2022-07-17Pull up following revision(s) (requested by simonb in ticket #1480):martin
usr.bin/vmstat/vmstat.c: revision 1.255 When operating on core files or /dev/mem when using the -M option, use 64-bit math to calculate pool sizes. Fixes overflow errors for pools larger than 4GB and gives the correct output with "vmstat -m" for in use, total allocation and utilisation numbers.
2022-03-13Pull up following revision(s) (requested by gutteridge in ticket #1433):martin
usr.bin/man/man.c: revision 1.69 usr.bin/man/man.c: revision 1.70 usr.bin/man/man.c: revision 1.72 man.c: fix -m option so it works as documented Refactoring work in man.c r. 1.40 from twelve years ago introduced a regression where input from the -m option was appended rather than prepended to the search paths. Problem reported by C. Chapman on netbsd-users. man: fix type mismatch between enum and int (since yesterday) No binary change. man: remove unused global variable 'instype' (since yesterday) No functional change.
2021-11-30Pull up following revision(s) (requested by nia in ticket #1379):martin
usr.bin/msgs/pathnames.h: revision 1.5 msgs(1): avoid executing /usr/bin/Mail, it no longer exists.
2021-10-24Pull up following revision(s) (requested by lukem in ticket #1367):martin
usr.bin/ftp/ftp.c: revision 1.174 ftp: remove unnecessary variable assignments Remove assignment to error in initconn(); it's not tested anywhere after the initial use, so no need to set it before goto bad. (Looks like copypasta from the initial addition of the code in rev 1.48.)
2021-10-24Pull up following revision(s) (requested by lukem in ticket #1366):martin
usr.bin/ftp/ftp.c: revision 1.173 ftp: validate address from PASV and LPSV response Fail if the server's response to PASV or LPSV contains an IP address that doesn't match that of the control connection. (EPSV already only uses the port portion of the server's response, per RFC 2428). Previously a hostile server could cause ftp to open a data connection elsewhere. Many other ftp implementations have had a similar change for many years, including those in popular browsers (before they deprecated FTP ...) Thanks to Simon Josefsson notifying me about https://lists.gnu.org/archive/html/bug-inetutils/2021-06/msg00002.html
2021-10-24Pull up following revision(s) (requested by lukem in ticket #1365):martin
usr.bin/ftp/fetch.c: revision 1.233 Use raw write(2) instead of fwrite(3) to avoid stream corruption because of the progress bar interrupts. From RVP.
2021-06-14Pull up following revision(s) (requested by lukem in ticket #1295):martin
usr.bin/ftp/ssl.c: revision 1.10 usr.bin/ftp/ssl.h: revision 1.5 usr.bin/ftp/version.h: revision 1.93 usr.bin/ftp/Makefile: revision 1.39 use fetch_*() for I/O with SMALLPROG / !WITH_SSL builds Adapt the SMALLPROG / -UWITH_SSL build to also use the fetch_*() methods from ssl.c, instead of using stdio, as stdio isn't robust when using interruptable signals. Disable ssl-specific support in the fetch_*() methods if WITH_SSL isn't defined, so SMALLPROG still doesn't have ssl support (as expected). The resulting SMALLPROG binary is slightly larger than before (e.g., 157KiB vs 153KiB on amd64). Set version to 20210603 for this fix and the SO_KEEPALIVE fix for PR 56129. PR install/56219
2021-06-14Pull up following revision(s) (requested by lukem in ticket #1294):martin
usr.bin/ftp/cmds.c: revision 1.141 usr.bin/ftp/ftp.1: revision 1.143 ftp(1): fix description of "debug" "debug" command and documentation got accidentally renamed to "ftp_debug" 13 years ago, and was only partially fixed.
2021-06-14Pull up following revision(s) (requested by lukem in ticket #1293):martin
usr.bin/ftp/ftp.c: revision 1.172 set SO_KEEPALIVE on control connection Attempt to prevent timeouts of the control connection by setting SO_KEEPALIVE. This matches the equivalent behaviour in ftpd. Note: This is a much simpler change than adding a background polling event to invoke "STAT" (or "NOOP") on the control connection during a transfer. (It's unclear from RFC 959 whether "NOOP" is even permitted during a transfer). PR bin/56129
2021-06-14Pull up following revision(s) (requested by lukem in ticket #1292):martin
usr.bin/ftp/fetch.c: revision 1.232 fetch_url: improve signal handler restoration Use SIG_ERR not NULL as the indicator that a signal handler hasn't been changed, so that SIG_DFL (equivalent to NULL) will be restored. Fix restoration of SIGQUIT; use the old handler not SIGPIPE's.
2021-06-14Pull up following revision(s) (requested by lukem in ticket #1291):martin
usr.bin/ftp/ftp.c: revision 1.169 usr.bin/ftp/util.c: revision 1.161 ftp: exit if lostpeer invoked by a signal lostpeer() calls too many async-unsafe functions (both directly and indirectly) to close and cleanup the remote connections, so just exit after the cleanup if invoked by a signal. Reported in private mail by Qi Hou. May also resolve a crash reported by Thomas Klausner.
2021-06-14Pull up following revision(s) (requested by lukem in ticket #1290):martin
usr.bin/ftp/version.h: revision 1.90 usr.bin/ftp/ftp.c: revision 1.170 ftp.c: improve signal handler restoration Only invoke the old signal handler if it's a real signal handler and not SIG_IGN, SIG_DFL, SIG_HOLD, or SIG_ERR, using new static function issighandler(). Avoids an intermittent race condition with a null pointer dereference via (*SIG_DFL)(). Bug class reported by Joyu Liao from Juniper Networks. Use SIG_ERR instead of NULL as the indicator that a signal handler hasn't been changed, so that SIG_DFL (equivalent to NULL) will be restored.
2021-04-30Pull up following revision(s) (requested by mrg in ticket #1263):martin
bin/pax/options.c: revision 1.119 usr.bin/config/scan.l: revision 1.32 usr.bin/make/main.c: revision 1.274 bin/pax/extern.h: revision 1.60 usr.bin/config/defs.h: revision 1.106 usr.bin/make/make.h: revision 1.105 sbin/newfs_udf/udf_create.c: revision 1.27 (patch) sbin/newfs_udf/newfs_udf.h: revision 1.7 (patch) usr.bin/config/main.c: revision 1.100 Avoid depending on common symbols.
2021-02-26Pull up following revision(s) (requested by nia in ticket #1215):martin
usr.bin/patch/backupfile.c: revision 1.16 usr.bin/patch/backupfile.h: revision 1.7 usr.bin/patch/patch.c: revision 1.30 patch: make '-V none' work in the expected way Internally the code confuses the concept of "the user doesn't want a backup file" and "the user hasn't defined a type of backup file". Introduce a new "undefined" backup type to serve the purpose "none" previously did, and make "none" not generate backup files, as expected. http://mail-index.netbsd.org/tech-userlevel/2021/02/19/msg012901.html XXX pullup?
2021-02-10Pull up following revision(s) (requested by ginsbach in ticket #1202):martin
usr.bin/nl/nl.c: revision 1.13 usr.bin/nl/nl.c: revision 1.14 usr.bin/nl/nl.c: revision 1.15 nl(1): remove superfluous exit Remove exit(3) call missed when errors were converted to errx(3). nl: fix -d delim parsing for POSIX POSIX specifies it is possible to specify a one delimiter character. Fix the logic so that both one and two character delimiters are accepted. PR/55891 supress displaying separator when numbers supressed Fix based on patch provided by Kobayashi Takashi. This brings nl(1) further in to POSIX compliance. Verified behavior with classic SysV nl(1) and GNU nl(1). There could still be edge cases here not specified by POSIX.
2021-01-29Pull up following revision(s) (requested by lukem in ticket #1190):martin
usr.bin/ftp/progressbar.c: revision 1.24 usr.bin/ftp/ssl.c: revision 1.9 usr.bin/ftp/progressbar.h: revision 1.9 usr.bin/ftp/ftp.c: revision 1.171 usr.bin/ftp/version.h: revision 1.92 ftp: don't use restartable signals Refactor to not rely upon restartable signals (SA_RESTART), possibly fixing intermittent failures with -q QUITTIME. ftp transfers: handle EINTR/EAGAIN in copy_bytes(), instead of relying upon restartable signals. http/https transfers: Explicitly print an error similar to progressmeter() when timing-out for -Q QUITTIME in fetch_wait(), and set errno to ETIMEDOUT so that the warn() in fetch_url() prints a more accurate error message. PR/55857
2021-01-29Pull up following revision(s) (requested by lukem in ticket #1189):martin
usr.bin/progress/progress.c: revision 1.23 progress: handle EINTR in writes. PR/55914
2020-12-27Pull up following revision(s) (requested by maya in ticket #1160):martin
usr.bin/calendar/calendars/calendar.judaic: revision 1.10 Update to 2021, hopefully less errors made in this year.
2020-12-18Pull up following revision(s) (requested by mrg in ticket #1153):martin
usr.bin/vmstat/vmstat.c: revision 1.232 (patch) move the time nlist fetches into their own namelist and only fetch them when necessary. allow for fallback uses of older time sources if others are not present. this stops vmstat from exiting if it can't get the addresses of these time values it often doesn't need (eg, running kernels use the sysctl method), which has cropped up recently wit the removal of boottime variable. a slighly modified version of this patch (modified to handle the old boottime variable over the new one) works against a netbsd-9 vmstat in -current too. XXX: pullup
2020-09-13Pull up following revision(s) (requested by kim in ticket #1079):martin
usr.bin/sockstat/sockstat.c: revision 1.22 usr.bin/sockstat/Makefile: revision 1.5 usr.bin/sockstat/Makefile: revision 1.6 RR/54971: scole_mail: sockstat command output incorrect for normal user As the PR hints, it is not enough to have kern.expose_address=1 to see kernel addresses, we also need to have the PK_KMEM bit set which we achieve by installing sockstat setgid kmem and opening and closing /dev/mem. (/usr/src/sys/kern/kern_proc.c:311). It is unfortunate that we need to give the program more privilege, to prove to the kernel that we have the privilege to see the data. turn on fortify since it is setgid (from scole_mail)
2020-08-02Pull up following revision(s) (requested by kim in ticket #1034):martin
usr.bin/w/w.c: revision 1.88 usr.bin/w/w.c: revision 1.89 usr.bin/w/w.c: revision 1.90 Handle hostname from DISPLAY="[2001:db8::dead:beef]:0" or similar. Restore ']' if not using a result from an address lookup. Skip bracket processing if -n is used. XXX: This could be improved to skip even more processing.
2020-07-07Pull up following revision(s) (requested by kim in ticket #982):martin
usr.bin/w/w.c: revision 1.87 Don't overwrite host_buf as x might be pointing to wanted data in it
2020-07-07Pull up following revision(s) (requested by uwe in ticket #981):martin
usr.bin/m4/m4.1: revision 1.28 usr.bin/m4/m4.1: revision 1.29 usr.bin/m4/extern.h: revision 1.20 usr.bin/m4/main.c: revision 1.49 usr.bin/m4/m4.1: revision 1.30 usr.bin/m4/trace.c: revision 1.9 usr.bin/m4/main.c: revision 1.50 Try not to lose error output with --error-output. Try to avoid the trap we set up ourselves while avoiding freopen(3). When exit flushes and closes open streams it may close sfp first and when it comes about to flush and close stderr, the descriptor is already gone and we lose any buffered error output. This actually happens on some hosts, breaking --trace output used by autoconf. Fix --error-output to be more like GNU m4. GNU m4 --error-output is the same as -o despite the name. It does NOT affect warnings, error messages, and 'errprint' output so drop the misguided bit of code that tried to freopen stderr without closing it on failure. Drop -e (which was our local invention) and make merge --error-output with -o so that both set traceout. Make trace_file() preserve the old traceout on error and return error status so that the caller can emit appropriate warning. Do not yet support disabling tracing with an empty name, the rest of the code is not ready, we don't do -o positionally and we don't have `debugfile'. Fix --error-output to be more like GNU m4. It's a long version of -o. Bump date for previous. Use a date that is actually a real date.
2020-06-30Pull up following revision(s) (requested by kim in ticket #979):martin
usr.bin/w/w.c: revision 1.86 usr.bin/w/w.c: revision 1.85 Compute a value for domain before comparing against it Remove local domain always, not just when looking up addresses
2020-06-30Pull up following revision(s) (requested by kim in ticket #977):martin
usr.bin/cal/cal.c: revision 1.30 Use two-letter weekday abbreviations in the heading This matches output from ncal (a.k.a. cal) as found in FreeBSD and bsdmainutils. (Why had "T" been found more ambiguous than "S" already?)
2020-06-21Pull up following revision(s) (requested by sevan in ticket #969):martin
usr.bin/calendar/calendars/calendar.music: revision 1.24 usr.bin/calendar/calendars/calendar.birthday: revision 1.42 usr.bin/calendar/calendars/calendar.birthday: revision 1.43 usr.bin/calendar/calendars/calendar.birthday: revision 1.44 usr.bin/calendar/calendars/calendar.computer: revision 1.13 usr.bin/calendar/calendars/calendar.computer: revision 1.14 usr.bin/calendar/calendars/calendar.computer: revision 1.15 It was aboard the Space Shuttle Atlantis using a Macintosh Portable. https://support.apple.com/kb/TA30635 Add RISC-V's birthday https://riscv.org/2020/05/happy-10th-birthday-risc-v/ X turned 36 today http://www.talisman.org/x-debut.shtml Fix typo Add Margaret Hamilton, Florian Schneider, Ron Hardy, Little Richard Add Allen Ginsberg The Hacienda must be rebuilt. https://twitter.com/McrHistory/status/1263386700249776130 https://twitter.com/Mr_Dave_Haslam/status/1263373996172640256
2020-05-07Pull up following revision(s) (requested by kim in ticket #894):martin
usr.bin/finger/finger.1: revision 1.22 usr.bin/finger/util.c: revision 1.30 Add lastlogx support
2020-04-28Pull up following revision(s) (requested by sevan in ticket #859):martin
usr.bin/calendar/calendars/calendar.netbsd: revision 1.45 usr.bin/calendar/calendars/calendar.netbsd: revision 1.46 usr.bin/calendar/calendars/calendar.music: revision 1.21 usr.bin/calendar/calendars/calendar.music: revision 1.22 usr.bin/calendar/calendars/calendar.music: revision 1.23 usr.bin/calendar/calendars/calendar.birthday: revision 1.40 usr.bin/calendar/calendars/calendar.birthday: revision 1.41 usr.bin/calendar/calendars/calendar.computer: revision 1.10 usr.bin/calendar/calendars/calendar.computer: revision 1.11 usr.bin/calendar/calendars/calendar.computer: revision 1.12 usr.bin/calendar/calendars/calendar.birthday: revision 1.37 usr.bin/calendar/calendars/calendar.birthday: revision 1.38 usr.bin/calendar/calendars/calendar.birthday: revision 1.39 usr.bin/calendar/calendars/calendar.netbsd: revision 1.44 Add Doug Engelbart Apple buys NeXT Add Andrew Weatherall https://www.bbc.co.uk/news/entertainment-arts-51535685 http://www.rottersgolfclub.com/ Add Larry Tesler https://www.nytimes.com/2020/02/20/technology/lawrence-tesler-dead.html Add Bert Sutherland https://twitter.com/ComputerHistory/status/1230200277141250050 Add Ivan Sutherland's birthday Add Ken Kesey Add The KLF's Chill Out Add K&R publish date https://twitter.com/MIT_CSAIL/status/1231263883303645184 Note the birthday of Symbolics.com Add higher state of consciousness https://twitter.com/joshwink1/status/1243360644042113024 Add NetBSD 9.0 & 8.2 Heads up by Harold Gutch align just spaces
2020-04-25Pull up following revision(s) (requested by simonb in ticket #853):martin
bin/csh/time.c: revision 1.22 usr.bin/time/time.c: revision 1.24 bin/csh/extern.h: revision 1.32 usr.bin/time/time.1: revision 1.29 usr.bin/time/ext.h: revision 1.4 Add '-t' option for tcsh-style time output.
2020-04-09Pull up following revision(s) (requested by maya in ticket #824):martin
usr.bin/man/man.c: revision 1.68 Exit successfully after printing the search path, stop further processing. Continuing to process had the unintended effect that `man` failed to find a matching manual page for {EMPTY LIST OF REQUESTED MANUAL PAGES}, and exited with 1. Prompted by a fish shell snippet that tried and failed to distinguish between FreeBSD man (-p takes argument) and NetBSD man (-p no argument) by comparing `man -p` exit code. ok riastradh, logix (which also pointed out the manual page SYNOPSIS is saying man -p should be used this way).
2020-03-09Addionally pull up for ticket ticket #776, requested by christos:martin
src/usr.bin/config/scan.l 1.31 Add an enabled bit to keep track of the parent state (if we are ignoring or parsing). Idea from uwe.
2020-03-09Pull up the following, requested by christos in ticket #776:martin
usr.bin/config/TODO up to 1.32 usr.bin/config/defs.h up to 1.105 usr.bin/config/files.c up to 1.37 usr.bin/config/gram.y up to 1.55 usr.bin/config/main.c up to 1.99 usr.bin/config/scan.l up to 1.30 usr.bin/config/sem.c up to 1.84 usr.bin/config/util.c up to 1.21 config(1): fix issue with incorrect handling of elifdef statements.
2020-02-10Pull up following revision(s) (requested by ryo in ticket #690):martin
usr.bin/mkubootimage/mkubootimage.c: revision 1.30 arm64_image_header->image_size must be included size of arm64_image_header. with -u option, image_size should be binary (file) size (header included). without -u option, image_size should be binary (file) size + header size.
2020-01-23Pull up following revision(s) (requested by sevan in ticket #642):martin
usr.bin/calendar/calendars/calendar.birthday: revision 1.36 Add Terry Jones, once clarified who wasn't the messiah, but a very naughty boy
2020-01-02Pull up following revision(s) (requested by skrll in ticket #596):martin
usr.bin/mkubootimage/mkubootimage.c: revision 1.28 usr.bin/mkubootimage/mkubootimage.c: revision 1.29 Adjust image size appropriately when using update_image OK jmcneill Avoid mixing signed/unsigned arguments to the ? operator.
2019-12-24Pull up following revision(s) (requested by sevan in ticket #577):martin
usr.bin/calendar/calendars/calendar.holiday: revision 1.30 usr.bin/calendar/calendars/calendar.christian: revision 1.8 usr.bin/calendar/calendars/calendar.usholiday: revision 1.10 usr.bin/calendar/calendars/calendar.judaic: revision 1.8 usr.bin/calendar/calendars/calendar.judaic: revision 1.9 Update to 2020 dates. While here: - Add regional holidays: Sigd (Beta Israel), Mimouna (Morrocan). - Transliterate some things in an Israeli Hebrew accent (Succos -> Sukkot, Atzeres -> Atzeret) Avoid the risk of being wrong and don't expand meaning of holiday. update calendar files with all dates in 2020 as next release is expect late 2019
2019-12-17Pull up following revision(s) (requested by christos in ticket #555):martin
usr.bin/mail/mime_child.c: revision 1.10 usr.bin/mail/mail.1: revision 1.68 usr.bin/mail/complete.c: revision 1.21 PR/54766: elo: Broken mime-hooks handling in mail(1) pullup-9. PR/54765: elo: Minor error in the mail(1) man page (-F description truncated) pullup-9 PR/54764: elo: Incorrect '+file' filename completion in mail(1) Add propel completion stem so that file completion works. pullup-9
2019-12-09Pull up following revision(s) (requested by jmcneill in ticket #525):martin
external/cddl/osnet/dev/dtrace/aarch64/dtrace_isa.c: revision 1.1 distrib/sets/lists/modules/md.i386: revision 1.83 share/mk/bsd.own.mk: revision 1.1168 usr.bin/mkubootimage/mkubootimage.c: revision 1.25 sys/modules/dtrace/Makefile: revision 1.7 usr.bin/mkubootimage/mkubootimage.c: revision 1.26 sys/modules/dtrace/Makefile: revision 1.8 external/cddl/osnet/dist/lib/libdtrace/aarch64/dt_isadep.c: revision 1.2 distrib/sets/lists/modules/mi: revision 1.128 sys/arch/aarch64/include/frame.h: revision 1.3 sys/arch/evbarm/conf/mk.generic64: revision 1.4 external/cddl/osnet/dist/lib/libdtrace/common/dt_link.c: revision 1.12 sys/modules/cyclic/Makefile: revision 1.4 sys/arch/aarch64/conf/Makefile.aarch64: revision 1.16 external/cddl/osnet/dev/dtrace/aarch64/dtrace_subr.c: revision 1.1 sys/arch/aarch64/aarch64/start.S: revision 1.3 sys/arch/aarch64/aarch64/trap.c: revision 1.22 external/cddl/osnet/dev/fbt/aarch64/fbt_isa.c: revision 1.1 external/cddl/osnet/dev/dtrace/aarch64/dtrace_asm.S: revision 1.1 external/cddl/osnet/dev/fbt/aarch64/fbt_isa.h: revision 1.1 external/cddl/osnet/dev/dtrace/aarch64/regset.h: revision 1.1 external/cddl/osnet/lib/libdtrace/Makefile: revision 1.26 distrib/sets/lists/modules/md.amd64: revision 1.82 usr.bin/mkubootimage/mkubootimage.1: revision 1.13 distrib/sets/lists/modules/ad.arm: revision 1.14 Add KDTRACE_HOOKS support. Define lwp_trapframe() macro dtrace: add support for aarch64 Add syscall_linux back for other arm architectures (accidently removed in previous) Add -u flag for updating headers in place. Fix alignment of .text section by changing load address to 0xffffffc000000000 and adding 64 bytes of padding before the entry point. Update arm64 image header in place Move dtrace_syscall_linux out of mi set list Enable DTrace on aarch64 Fix signed/unsigned comparison
2019-12-09Pull up following revision(s) (requested by uwe in ticket #520):martin
usr.bin/menuc/testm/main.c: revision 1.8 usr.bin/menuc/testm/menus.mc: revision 1.13 Fix typo in ad clause. Ok perry@.
2019-12-08Pull up following revision(s) (requested by sevan in ticket #500):martin
usr.bin/calendar/calendars/calendar.music: revision 1.20 usr.bin/calendar/calendars/calendar.computer: revision 1.8 usr.bin/calendar/calendars/calendar.computer: revision 1.9 usr.bin/calendar/calendars/calendar.usholiday: revision 1.9 usr.bin/calendar/calendars/calendar.birthday: revision 1.30 usr.bin/calendar/calendars/calendar.birthday: revision 1.31 usr.bin/calendar/calendars/calendar.birthday: revision 1.32 usr.bin/calendar/calendars/calendar.birthday: revision 1.33 usr.bin/calendar/calendars/calendar.birthday: revision 1.34 usr.bin/calendar/calendars/calendar.birthday: revision 1.35 usr.bin/calendar/calendars/calendar.netbsd: revision 1.41 usr.bin/calendar/calendars/calendar.netbsd: revision 1.42 usr.bin/calendar/calendars/calendar.netbsd: revision 1.43 Add Danny Cohen https://www.nytimes.com/2019/08/16/obituaries/danny-cohen-who-helped-set-the-stage-for-a-digital-era-dies-at-81.html Add 8.1 release sort We use spaces, not tabs here Add Alan Perlis Add SICP https://twitter.com/mit_csail/status/1164226910035087360 Add Ted Nelson's birthday Belatedly update several entries that move from year to year. Add Aaron Swartz and Steve Jobs Add Grace Hopper and Richard Feynman Sort
2019-11-26Pull up following revision(s) (requested by nakayama in ticket #469):martin
lib/libc/tls/tls.c: revision 1.10 lib/libc/tls/tls.c: revision 1.11 lib/libc/tls/tls.c: revision 1.12 lib/libc/tls/tls.c: revision 1.13 libexec/ld.elf_so/tls.c: revision 1.13 libexec/ld.elf_so/tls.c: revision 1.14 libexec/ld.elf_so/Makefile: revision 1.142 lib/libc/tls/Makefile.inc: revision 1.3 usr.bin/ldd/Makefile.elf: revision 1.6 PR 54093: Align static TLS area to max_align_t. Use alignof and not size_t for platforms with non-natural base alignments. Mirror the ld.elf_so logic for handling aligning the TLS size. Most noticable, recompute the start of the TLS area for variant I relative to the TCB. This makes a difference when the segment size and base alignment don't agree. Fix PR/54074 and PR/54093 completely. More similar to the ld.elf_so logic, it is necessary to align with p_align first. Also, invert the #ifdef condition for consistency. Should fix regression for static linking binaries: http://releng.netbsd.org/b5reports/sparc/commits-2019.11.html#2019.11.10.23.39.03 http://releng.netbsd.org/b5reports/sparc64/commits-2019.11.html#2019.11.16.04.10.33
2019-11-17Pull up following revision(s) (requested by martin in ticket #433):msaitoh
usr.bin/msgc/msg_sys.def: revision 1.48 msg_table_add(): fix mishap in the format safety changes in r1.45
2019-09-29Pull up following revision(s) (requested by isaki in ticket #267):martin
usr.bin/audiocfg/dtmf.c: revision 1.4 usr.bin/audiocfg/main.c: revision 1.14 (via patch) usr.bin/audiocfg/audiodev.c: revision 1.12 Use err(3)/warn(3) instead of perror(3)/fprintf(stderr,...). Use getprogname(3) for usage().
2019-09-28Pull up following revision(s) (requested by isaki in ticket #262):martin
usr.bin/audiocfg/main.c: revision 1.10 usr.bin/audiocfg/main.c: revision 1.11 usr.bin/audiocfg/audiodev.c: revision 1.8 usr.bin/audiocfg/audiodev.h: revision 1.6 usr.bin/audiocfg/audiodev.c: revision 1.9 usr.bin/audiocfg/audiodev.h: revision 1.7 Rename some members in adev for clarity. No functional changes intended. Revert to use single descriptor for "audiocfg test" as before.
2019-09-28Pull up following revision(s) (requested by isaki in ticket #261):martin
usr.bin/audiocfg/audiocfg.1: revision 1.6 Fix markup. index of list command is optional.
2019-09-28Pull up following revision(s) (requested by isaki in ticket #258):martin
usr.bin/audiocfg/main.c: revision 1.9 Fix assertion of "audiocfg list <n>" when n is an illegal index.
2019-09-12Sync external/mpl/bind to HEAD and pullup additional changes to fix themartin
set lists and lint, requested by christos in ticket #195: external/mpl/bind/dist/bin/pkcs11/Makefile up to 1.1.1.1 external/mpl/bind/dist/bin/tests/pkcs11/benchmarks/Makefile up to 1.1.1.1 external/mpl/bind/dist/bin/tests/pkcs11/Makefile up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/additional/ns1/root.db up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/additional/ns3/ex.db up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/additional/ns3/ex2.db up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/checkconf/good-dup-managed-key.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/checkconf/good-dup-trusted-key.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/checkconf/warn-duplicate-key.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/checkconf/warn-duplicate-root-key.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/checkconf/warn-validation-auto-key.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/cookie/bad-cookie-badaes.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/cookie/bad-cookie-badsiphash24.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/cookie/good-cookie-aes.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/cookie/good-cookie-siphash24.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dlv/ns7/hints up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dlv/ns7/named.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dlv/ns8/hints up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dlv/ns8/named.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dlzexternal/ns1/dlzs.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dns64/conf/bad18.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dns64/conf/bad19.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dns64/conf/warn1.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dns64/conf/warn2.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dns64/conf/warn3.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dns64/conf/warn4.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dns64/conf/warn5.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dns64/conf/warn6.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dns64/conf/warn7.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dns64/conf/warn8.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dnssec/ns2/key.db.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dnssec/ns2/template.secure.db.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dnssec/ns3/key.db.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dnssec/ns8/named.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dnssec/ns9/named.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dnstap/README up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dnstap/bad-missing-dnstap-output.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/dnstap/large-answer.fstrm up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/eddsa/ns2/Xexample.com.+016+09713.key up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/eddsa/ns2/Xexample.com.+016+09713.private up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/eddsa/ns2/Xexample.com.+016+38353.key up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/eddsa/ns2/Xexample.com.+016+38353.private up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip/ns2/named16.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/conf/bad-areacode.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/conf/bad-dbname.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/conf/bad-netspeed.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/conf/bad-regiondb.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/conf/bad-threeletter.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/conf/good-options.conf up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/clean.sh up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/prereq.sh up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/setup.sh up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/tests.sh up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/data/GeoIP2-City.json up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/data/GeoIP2-City.mmdb up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/data/GeoIP2-Country.json up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/data/GeoIP2-Country.mmdb up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/data/GeoIP2-Domain.json up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/data/GeoIP2-Domain.mmdb up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/data/GeoIP2-ISP.json up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/data/GeoIP2-ISP.mmdb up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/data/GeoLite2-ASN.json up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/data/GeoLite2-ASN.mmdb up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/data/README.md up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/data/write-test-data.pl up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/ns2/example.db.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named1.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named10.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named11.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named12.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named2.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named3.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named4.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named5.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named6.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named7.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named8.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named9.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/inline/ns3/master6.db.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/ixfr/ns5/named.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/parallel.sh up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/rpz/ns9/hints up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/rpz/ns9/rpz.db up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/rpz/ns9/named.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/serve-stale/ns4/named.conf.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/statschannel/ns2/dnssec.db.in up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/statschannel/ns2/sign.sh up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/statschannel/zones-json.pl up to 1.1.1.1 external/mpl/bind/dist/bin/tests/system/statschannel/zones-xml.pl up to 1.1.1.1 external/mpl/bind/dist/bin/tests/virtual-time/Makefile up to 1.1.1.1 external/mpl/bind/dist/bin/tests/virtual-time/conf.sh up to 1.1.1.1 external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.c up to 1.2 external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/cdnskey up to 1.1.1.1 external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/smimea up to 1.1.1.1 external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/sshfp up to 1.1.1.1 external/mpl/bind/dist/contrib/scripts/check-secure-delegation.pl up to 1.1.1.1 external/mpl/bind/dist/contrib/scripts/zone-edit.sh up to 1.1.1.1 external/mpl/bind/dist/lib/dns/geoip2.c up to 1.2 external/mpl/bind/dist/lib/isc/siphash.c up to 1.2 external/mpl/bind/dist/lib/isc/include/isc/endian.h up to 1.2 external/mpl/bind/dist/lib/isc/include/isc/siphash.h up to 1.2 external/mpl/bind/dist/lib/isc/tests/siphash_test.c up to 1.2 external/mpl/bind/dist/lib/ns/include/ns/pfilter.h up to 1.1 external/mpl/bind/dist/lib/ns/pfilter.c up to 1.1 external/mpl/bind/dist/lib/samples/Makefile-postinstall up to 1.1.1.1 external/mpl/bind/dist/m4/ax_restore_flags.m4 up to 1.1.1.1 external/mpl/bind/dist/m4/ax_save_flags.m4 up to 1.1.1.1 external/mpl/bind/dist/m4/compat.m4 up to 1.1.1.1 external/mpl/bind/dist/unit/unittest.sh up to 1.1.1.1 external/mpl/bind/dist/bin/named/pfilter.c delete external/mpl/bind/dist/bin/named/pfilter.h delete external/mpl/bind/dist/bin/tests/system/wildcard/ns2/hints delete external/mpl/bind/dist/bin/tests/system/wildcard/ns3/hints delete external/mpl/bind/dist/bin/tests/system/wildcard/ns5/hints delete external/mpl/bind/dist/lib/dns/rdata/generic/unspec_103.c delete external/mpl/bind/dist/lib/dns/rdata/generic/unspec_103.h delete external/mpl/bind/Makefile.inc up to 1.5 external/mpl/bind/bin/named/Makefile up to 1.3 external/mpl/bind/dist/CHANGES up to 1.1.1.5 external/mpl/bind/dist/CONTRIBUTING up to 1.1.1.2 external/mpl/bind/dist/HISTORY up to 1.1.1.2 external/mpl/bind/dist/Makefile.in up to 1.4 external/mpl/bind/dist/OPTIONS up to 1.1.1.3 external/mpl/bind/dist/PLATFORMS up to 1.1.1.4 external/mpl/bind/dist/PLATFORMS.md up to 1.1.1.4 external/mpl/bind/dist/README up to 1.1.1.5 external/mpl/bind/dist/README.md up to 1.1.1.5 external/mpl/bind/dist/aclocal.m4 up to 1.1.1.3 external/mpl/bind/dist/config.h.in up to 1.6 external/mpl/bind/dist/config.h.win32 up to 1.1.1.4 external/mpl/bind/dist/configure up to 1.6 external/mpl/bind/dist/configure.ac up to 1.1.1.4 external/mpl/bind/dist/srcid up to 1.1.1.5 external/mpl/bind/dist/version up to 1.1.1.5 external/mpl/bind/dist/bin/check/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/bin/confgen/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/bin/delv/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/bin/dig/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/bin/dig/dig.1 up to 1.5 external/mpl/bind/dist/bin/dig/dig.c up to 1.4 external/mpl/bind/dist/bin/dig/dig.docbook up to 1.1.1.4 external/mpl/bind/dist/bin/dig/dig.html up to 1.1.1.4 external/mpl/bind/dist/bin/dig/dighost.c up to 1.5 external/mpl/bind/dist/bin/dnssec/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/bin/named/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/bin/named/bind9.xsl up to 1.1.1.3 external/mpl/bind/dist/bin/named/bind9.xsl.h up to 1.4 external/mpl/bind/dist/bin/named/config.c up to 1.5 external/mpl/bind/dist/bin/named/fuzz.c up to 1.4 external/mpl/bind/dist/bin/named/geoip.c up to 1.3 external/mpl/bind/dist/bin/named/main.c up to 1.5 external/mpl/bind/dist/bin/named/named.conf.5 up to 1.6 external/mpl/bind/dist/bin/named/named.conf.docbook up to 1.1.1.5 external/mpl/bind/dist/bin/named/named.conf.html up to 1.1.1.4 external/mpl/bind/dist/bin/named/server.c up to 1.7 external/mpl/bind/dist/bin/named/statschannel.c up to 1.4 external/mpl/bind/dist/bin/named/zoneconf.c up to 1.4 external/mpl/bind/dist/bin/named/include/named/geoip.h up to 1.3 external/mpl/bind/dist/bin/named/include/named/globals.h up to 1.5 external/mpl/bind/dist/bin/named/unix/dlz_dlopen_driver.c up to 1.5 external/mpl/bind/dist/bin/named/win32/named.vcxproj.filters.in up to 1.1.1.3 external/mpl/bind/dist/bin/named/win32/named.vcxproj.in up to 1.1.1.3 external/mpl/bind/dist/bin/named/win32/ntservice.c up to 1.4 external/mpl/bind/dist/bin/named/win32/os.c up to 1.5 external/mpl/bind/dist/bin/nsupdate/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/bin/pkcs11/pkcs11-keygen.c up to 1.4 external/mpl/bind/dist/bin/plugins/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/bin/plugins/filter-aaaa.c up to 1.4 external/mpl/bind/dist/bin/rndc/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/bin/rndc/rndc.8 up to 1.5 external/mpl/bind/dist/bin/rndc/rndc.docbook up to 1.1.1.4 external/mpl/bind/dist/bin/rndc/rndc.html up to 1.1.1.4 external/mpl/bind/dist/bin/tests/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/optional/Makefile.in up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/Makefile.in up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/conf.sh.common up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/conf.sh.in up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/conf.sh.win32 up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/feature-test.c up to 1.6 external/mpl/bind/dist/bin/tests/system/genzone.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/ifconfig.bat up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/ifconfig.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/run.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/runall.sh up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/stop.pl up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/additional/tests.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/additional/ns1/named1.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/additional/ns1/named2.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/additional/ns1/named3.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/additional/ns1/named4.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/additional/ns1/naptr.db up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/additional/ns1/naptr2.db up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/additional/ns1/nid.db up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/additional/ns1/rt.db up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/additional/ns1/rt2.db up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/additional/ns3/named.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/allow-query/ns1/root.db up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/autosign/tests.sh up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/cacheclean/clean.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/cacheclean/tests.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/cds/setup.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/checkconf/tests.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/cookie/clean.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/cookie/tests.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/cookie/ns4/named.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/cookie/ns5/named.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/cookie/ns6/named.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/digdelv/tests.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/digdelv/ns2/sign.sh up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/dlv/clean.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/dlv/setup.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/dlv/tests.sh up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/dlv/ns1/root.db.in up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/dlv/ns1/sign.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/dlv/ns2/named.conf.in up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/dlv/ns2/utld.db up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/dlv/ns3/named.conf.in up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/dlv/ns3/sign.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/dlv/ns5/named.conf.in up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/dlzexternal/driver.c up to 1.6 external/mpl/bind/dist/bin/tests/system/dns64/clean.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/dns64/tests.sh up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/dnssec/README up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/dnssec/clean.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/dnssec/setup.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/dnssec/tests.sh up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/dnssec/ns1/root.db.in up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/dnssec/ns1/sign.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/dnssec/ns2/named.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/dnssec/ns2/sign.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/dnssec/ns3/named.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/dnssec/ns3/sign.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/dnssec/ns5/sign.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/dnssec/ns6/sign.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/dnssec/ns7/sign.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/dnstap/tests.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/dsdigest/ns2/sign.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/dyndb/driver/driver.c up to 1.4 external/mpl/bind/dist/bin/tests/system/eddsa/tests.sh up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/eddsa/ns2/example.com.db up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/eddsa/ns2/sign.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/filter-aaaa/ns2/hints up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/filter-aaaa/ns3/hints up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/filter-aaaa/ns5/hints up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/geoip/clean.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/geoip/tests.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/geoip/ns2/named15.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/idna/tests.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/inline/setup.sh up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/inline/tests.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/inline/ns3/named.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/inline/ns3/sign.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/ixfr/clean.sh up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/ixfr/setup.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/ixfr/tests.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/ixfr/ns3/mytest0.db up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/ixfr/ns3/mytest1.db up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/ixfr/ns3/mytest2.db up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/legacy/tests.sh up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/legacy/ns6/edns512.db.in up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/legacy/ns7/edns512-notcp.db.in up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/metadata/tests.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/mkeys/README up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/mkeys/tests.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/mkeys/ns1/sign.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/nsupdate/tests.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/pipelined/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/qmin/tests.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/qmin/ans3/ans.py up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/rndc/clean.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/rndc/tests.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/rpz/setup.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/rpz/tests.sh up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/rpz/ns1/root.db up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/rsabigexponent/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/serve-stale/clean.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/serve-stale/setup.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/serve-stale/tests.sh up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/serve-stale/ns1/named1.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/serve-stale/ns1/named2.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/sfcache/clean.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/sfcache/tests.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/smartsign/tests.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/spf/tests.sh up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/staticstub/ns1/root.db up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/statistics/clean.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/statistics/tests.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/statistics/ns3/named.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/statschannel/clean.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/statschannel/setup.sh up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/statschannel/tests.sh up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/statschannel/ns2/named.conf.in up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/tkey/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/tkey/ns1/setup.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/verify/zones/genzones.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/wildcard/ns1/sign.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/wildcard/ns2/named.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/wildcard/ns3/named.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/wildcard/ns5/named.conf.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/xfer/dig1.good up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/xfer/dig2.good up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/xfer/prereq.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/xfer/tests.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tools/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/bin/tools/dnstap-read.c up to 1.5 external/mpl/bind/dist/bin/tools/mdig.c up to 1.4 external/mpl/bind/dist/contrib/dlz/modules/common/dlz_dbi.c up to 1.5 external/mpl/bind/dist/doc/arm/Bv9ARM-book.xml up to 1.1.1.5 external/mpl/bind/dist/doc/arm/Bv9ARM.ch01.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/Bv9ARM.ch02.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/Bv9ARM.ch03.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/Bv9ARM.ch04.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/Bv9ARM.ch05.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/Bv9ARM.ch06.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/Bv9ARM.ch07.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/Bv9ARM.ch08.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/Bv9ARM.ch09.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/Bv9ARM.ch10.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/Bv9ARM.ch11.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/Bv9ARM.ch12.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/Bv9ARM.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/Bv9ARM.pdf up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.arpaname.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.ddns-confgen.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.delv.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.dig.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.dnssec-cds.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.dnssec-checkds.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.dnssec-coverage.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.dnssec-dsfromkey.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.dnssec-importkey.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.dnssec-keyfromlabel.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.dnssec-keygen.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.dnssec-keymgr.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.dnssec-revoke.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.dnssec-settime.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.dnssec-signzone.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.dnssec-verify.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.dnstap-read.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.filter-aaaa.html up to 1.1.1.4 external/mpl/bind/dist/doc/arm/man.host.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.mdig.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.named-checkconf.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.named-checkzone.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.named-journalprint.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.named-nzd2nzf.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.named-rrchecker.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.named.conf.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.named.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.nsec3hash.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.nslookup.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.nsupdate.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.pkcs11-destroy.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.pkcs11-keygen.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.pkcs11-list.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.pkcs11-tokens.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.rndc-confgen.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.rndc.conf.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/man.rndc.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/notes.html up to 1.1.1.5 external/mpl/bind/dist/doc/arm/notes.pdf up to 1.1.1.5 external/mpl/bind/dist/doc/arm/notes.txt up to 1.1.1.5 external/mpl/bind/dist/doc/arm/notes.xml up to 1.1.1.5 external/mpl/bind/dist/doc/arm/options.grammar.xml up to 1.1.1.4 external/mpl/bind/dist/doc/misc/options up to 1.1.1.5 external/mpl/bind/dist/doc/misc/rfc-compliance up to 1.1.1.3 external/mpl/bind/dist/doc/tex/notestyle.sty up to 1.1.1.2 external/mpl/bind/dist/fuzz/Makefile.in up to 1.1.1.2 external/mpl/bind/dist/lib/bind9/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/lib/bind9/api up to 1.1.1.5 external/mpl/bind/dist/lib/bind9/check.c up to 1.6 external/mpl/bind/dist/lib/dns/Makefile.in up to 1.1.1.5 external/mpl/bind/dist/lib/dns/acl.c up to 1.4 external/mpl/bind/dist/lib/dns/api up to 1.1.1.5 external/mpl/bind/dist/lib/dns/client.c up to 1.5 external/mpl/bind/dist/lib/dns/dispatch.c up to 1.4 external/mpl/bind/dist/lib/dns/dnstap.c up to 1.6 external/mpl/bind/dist/lib/dns/gen-unix.h up to 1.4 external/mpl/bind/dist/lib/dns/gen.c up to 1.5 external/mpl/bind/dist/lib/dns/master.c up to 1.4 external/mpl/bind/dist/lib/dns/masterdump.c up to 1.5 external/mpl/bind/dist/lib/dns/message.c up to 1.6 external/mpl/bind/dist/lib/dns/name.c up to 1.4 external/mpl/bind/dist/lib/dns/openssleddsa_link.c up to 1.4 external/mpl/bind/dist/lib/dns/rbtdb.c up to 1.5 external/mpl/bind/dist/lib/dns/rdata.c up to 1.5 external/mpl/bind/dist/lib/dns/resolver.c up to 1.6 external/mpl/bind/dist/lib/dns/rpz.c up to 1.5 external/mpl/bind/dist/lib/dns/stats.c up to 1.4 external/mpl/bind/dist/lib/dns/update.c up to 1.4 external/mpl/bind/dist/lib/dns/view.c up to 1.5 external/mpl/bind/dist/lib/dns/zone.c up to 1.6 external/mpl/bind/dist/lib/dns/include/dns/acl.h up to 1.4 external/mpl/bind/dist/lib/dns/include/dns/clientinfo.h up to 1.4 external/mpl/bind/dist/lib/dns/include/dns/ecs.h up to 1.5 external/mpl/bind/dist/lib/dns/include/dns/geoip.h up to 1.4 external/mpl/bind/dist/lib/dns/include/dns/message.h up to 1.5 external/mpl/bind/dist/lib/dns/include/dns/resolver.h up to 1.5 external/mpl/bind/dist/lib/dns/include/dns/rpz.h up to 1.5 external/mpl/bind/dist/lib/dns/include/dns/stats.h up to 1.4 external/mpl/bind/dist/lib/dns/include/dns/types.h up to 1.4 external/mpl/bind/dist/lib/dns/include/dns/view.h up to 1.4 external/mpl/bind/dist/lib/dns/include/dns/zone.h up to 1.4 external/mpl/bind/dist/lib/dns/rdata/generic/ds_43.c up to 1.5 external/mpl/bind/dist/lib/dns/rdata/generic/key_25.c up to 1.5 external/mpl/bind/dist/lib/dns/rdata/generic/opt_41.c up to 1.4 external/mpl/bind/dist/lib/dns/rdata/generic/sshfp_44.c up to 1.5 external/mpl/bind/dist/lib/dns/tests/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/lib/dns/tests/acl_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/db_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/dbdiff_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/dbiterator_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/dbversion_test.c up to 1.5 external/mpl/bind/dist/lib/dns/tests/dh_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/dispatch_test.c up to 1.5 external/mpl/bind/dist/lib/dns/tests/dnstap_test.c up to 1.5 external/mpl/bind/dist/lib/dns/tests/dnstest.c up to 1.5 external/mpl/bind/dist/lib/dns/tests/dst_test.c up to 1.6 external/mpl/bind/dist/lib/dns/tests/geoip_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/keytable_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/master_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/name_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/nsec3_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/peer_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/private_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/rbt_serialize_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/rbt_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/rdata_test.c up to 1.6 external/mpl/bind/dist/lib/dns/tests/rdataset_test.c up to 1.5 external/mpl/bind/dist/lib/dns/tests/rdatasetstats_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/resolver_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/result_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/rsa_test.c up to 1.5 external/mpl/bind/dist/lib/dns/tests/sigs_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/time_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/tkey_test.c up to 1.3 external/mpl/bind/dist/lib/dns/tests/tsig_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/update_test.c up to 1.5 external/mpl/bind/dist/lib/dns/tests/zonemgr_test.c up to 1.4 external/mpl/bind/dist/lib/dns/tests/zt_test.c up to 1.5 external/mpl/bind/dist/lib/dns/tests/testdata/master/master8.data up to 1.1.1.2 external/mpl/bind/dist/lib/dns/win32/libdns.def.in up to 1.1.1.4 external/mpl/bind/dist/lib/dns/win32/libdns.vcxproj.filters.in up to 1.1.1.4 external/mpl/bind/dist/lib/dns/win32/libdns.vcxproj.in up to 1.1.1.4 external/mpl/bind/dist/lib/irs/tests/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/lib/irs/tests/resconf_test.c up to 1.4 external/mpl/bind/dist/lib/isc/Makefile.in up to 1.1.1.4 external/mpl/bind/dist/lib/isc/api up to 1.1.1.5 external/mpl/bind/dist/lib/isc/hash.c up to 1.4 external/mpl/bind/dist/lib/isc/ht.c up to 1.4 external/mpl/bind/dist/lib/isc/mem.c up to 1.5 external/mpl/bind/dist/lib/isc/rwlock.c up to 1.7 external/mpl/bind/dist/lib/isc/sockaddr.c up to 1.5 external/mpl/bind/dist/lib/isc/stats.c up to 1.5 external/mpl/bind/dist/lib/isc/task.c up to 1.5 external/mpl/bind/dist/lib/isc/include/isc/Makefile.in up to 1.1.1.4 external/mpl/bind/dist/lib/isc/include/isc/hash.h up to 1.4 external/mpl/bind/dist/lib/isc/include/isc/util.h up to 1.6 external/mpl/bind/dist/lib/isc/tests/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/lib/isc/tests/aes_test.c up to 1.4 external/mpl/bind/dist/lib/isc/tests/buffer_test.c up to 1.5 external/mpl/bind/dist/lib/isc/tests/counter_test.c up to 1.5 external/mpl/bind/dist/lib/isc/tests/crc64_test.c up to 1.3 external/mpl/bind/dist/lib/isc/tests/errno_test.c up to 1.4 external/mpl/bind/dist/lib/isc/tests/hash_test.c up to 1.4 external/mpl/bind/dist/lib/isc/tests/heap_test.c up to 1.5 external/mpl/bind/dist/lib/isc/tests/hmac_test.c up to 1.3 external/mpl/bind/dist/lib/isc/tests/ht_test.c up to 1.4 external/mpl/bind/dist/lib/isc/tests/lex_test.c up to 1.5 external/mpl/bind/dist/lib/isc/tests/mem_test.c up to 1.4 external/mpl/bind/dist/lib/isc/tests/netaddr_test.c up to 1.5 external/mpl/bind/dist/lib/isc/tests/parse_test.c up to 1.4 external/mpl/bind/dist/lib/isc/tests/pool_test.c up to 1.5 external/mpl/bind/dist/lib/isc/tests/queue_test.c up to 1.4 external/mpl/bind/dist/lib/isc/tests/radix_test.c up to 1.4 external/mpl/bind/dist/lib/isc/tests/random_test.c up to 1.4 external/mpl/bind/dist/lib/isc/tests/regex_test.c up to 1.6 external/mpl/bind/dist/lib/isc/tests/result_test.c up to 1.6 external/mpl/bind/dist/lib/isc/tests/safe_test.c up to 1.4 external/mpl/bind/dist/lib/isc/tests/sockaddr_test.c up to 1.4 external/mpl/bind/dist/lib/isc/tests/socket_test.c up to 1.5 external/mpl/bind/dist/lib/isc/tests/symtab_test.c up to 1.4 external/mpl/bind/dist/lib/isc/tests/task_test.c up to 1.4 external/mpl/bind/dist/lib/isc/tests/taskpool_test.c up to 1.5 external/mpl/bind/dist/lib/isc/tests/time_test.c up to 1.4 external/mpl/bind/dist/lib/isc/tests/timer_test.c up to 1.4 external/mpl/bind/dist/lib/isc/unix/socket.c up to 1.11 external/mpl/bind/dist/lib/isc/win32/libisc.def.in up to 1.1.1.5 external/mpl/bind/dist/lib/isc/win32/libisc.vcxproj.filters.in up to 1.1.1.4 external/mpl/bind/dist/lib/isc/win32/libisc.vcxproj.in up to 1.1.1.4 external/mpl/bind/dist/lib/isccc/tests/result_test.c up to 1.5 external/mpl/bind/dist/lib/isccfg/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/lib/isccfg/aclconf.c up to 1.4 external/mpl/bind/dist/lib/isccfg/api up to 1.1.1.5 external/mpl/bind/dist/lib/isccfg/namedconf.c up to 1.6 external/mpl/bind/dist/lib/isccfg/parser.c up to 1.5 external/mpl/bind/dist/lib/isccfg/include/isccfg/aclconf.h up to 1.4 external/mpl/bind/dist/lib/isccfg/tests/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/lib/isccfg/tests/parser_test.c up to 1.5 external/mpl/bind/dist/lib/ns/Makefile.in up to 1.2 external/mpl/bind/dist/lib/ns/api up to 1.1.1.5 external/mpl/bind/dist/lib/ns/client.c up to 1.6 external/mpl/bind/dist/lib/ns/interfacemgr.c up to 1.5 external/mpl/bind/dist/lib/ns/query.c up to 1.7 external/mpl/bind/dist/lib/ns/update.c up to 1.5 external/mpl/bind/dist/lib/ns/xfrout.c up to 1.6 external/mpl/bind/dist/lib/ns/include/ns/client.h up to 1.6 external/mpl/bind/dist/lib/ns/include/ns/interfacemgr.h up to 1.5 external/mpl/bind/dist/lib/ns/include/ns/types.h up to 1.4 external/mpl/bind/dist/lib/ns/tests/Makefile.in up to 1.1.1.4 external/mpl/bind/dist/lib/ns/tests/listenlist_test.c up to 1.4 external/mpl/bind/dist/lib/ns/tests/notify_test.c up to 1.5 external/mpl/bind/dist/lib/ns/tests/plugin_test.c up to 1.2 external/mpl/bind/dist/lib/ns/tests/query_test.c up to 1.5 external/mpl/bind/dist/lib/samples/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/m4/ax_check_openssl.m4 up to 1.1.1.2 external/mpl/bind/dist/make/rules.in up to 1.1.1.4 external/mpl/bind/dist/win32utils/Configure up to 1.1.1.5 external/mpl/bind/dist/win32utils/build.txt up to 1.1.1.3 external/mpl/bind/dist/win32utils/readme1st.txt up to 1.1.1.2 external/mpl/bind/include/config.h up to 1.6 external/mpl/bind/include/dns/code.h up to 1.4 external/mpl/bind/include/dns/enumtype.h up to 1.4 external/mpl/bind/include/dns/rdatastruct.h up to 1.5 external/mpl/bind/lib/libbind9/shlib_version up to 1.5 external/mpl/bind/lib/libdns/shlib_version up to 1.5 external/mpl/bind/lib/libirs/shlib_version up to 1.5 external/mpl/bind/lib/libisc/Makefile up to 1.10 external/mpl/bind/lib/libisc/shlib_version up to 1.5 external/mpl/bind/lib/libisccc/shlib_version up to 1.5 external/mpl/bind/lib/libisccfg/shlib_version up to 1.5 external/mpl/bind/lib/libns/Makefile up to 1.4 external/mpl/bind/lib/libns/shlib_version up to 1.5 distrib/sets/lists/base/shl.mi: revision 1.870 distrib/sets/lists/debug/shl.mi: revision 1.227 distrib/sets/lists/debug/shl.mi: revision 1.228 distrib/sets/lists/base/shl.mi: revision 1.869 usr.bin/xlint/lint1/scan.l: revision 1.90 Fix set lists for bumped bind version. - lint(1): fix decorators for __thread, add _Thread_local. - Import BIND 9.14.5: --- 9.14.5 released --- 5277. [bug] Cache DB statistics could underflow when serve-stale was in use, because of a bug in counter maintenance when RRsets become stale. Functions for dumping statistics have been updated to dump active, stale, and ancient statistic counters. Ancient RRset counters are prefixed with '~'; stale RRset counters are still prefixed with '#'. [GL #602] 5275. [bug] Mark DS records included in referral messages with trust level "pending" so that they can be validated and cached immediately, with no need to re-query. [GL #964] 5274. [bug] Address potential use after free race when shutting down rpz. [GL #1175] 5273. [bug] Check that bits [64..71] of a dns64 prefix are zero. [GL #1159] 5269. [port] cygwin: can return ETIMEDOUT on connect() with a non-blocking socket. [GL #1133] 5268. [bug] named could crash during configuration if configured to use "geoip continent" ACLs with legacy GeoIP. [GL #1163] 5266. [bug] named-checkconf failed to report dnstap-output missing from named.conf when dnstap was specified. [GL #1136] 5265. [bug] DNS64 and RPZ nodata (CNAME *.) rules interacted badly [GL #1106] 5264. [func] New DNS Cookie algorithm - siphash24 - has been added to BIND 9. [GL #605] 5236. [func] Add SipHash 2-4 implementation in lib/isc/siphash.c and switch isc_hash_function() to use SipHash 2-4. [GL #605] --- 9.14.4 released --- 5260. [bug] dnstap-read was producing malformed output for large packets. [GL #1093] 5258. [func] Added support for the GeoIP2 API from MaxMind, when BIND is compiled using "configure --with-geoip2". The legacy GeoIP API can be enabled by using "configure --with-geoip" instead. These options cannot be used together. Certain geoip ACL settings that were available with legacy GeoIP are not available when using GeoIP2. See the ARM for details. [GL #182] 5257. [bug] Some statistics data was not being displayed. Add shading to the zone tables. [GL #1030] 5256. [bug] Ensure that glue records are included in root priming responses if "minimal-responses" is not set to "yes". [GL #1092] 5255. [bug] Errors encountered while reloading inline-signing zones could be ignored, causing the zone content to be left in an incompletely updated state rather than reverted. [GL #1109] 5254. [func] Collect metrics to report to the statistics-channel DNSSEC signing operations (dnssec-sign) and refresh operations (dnssec-refresh) per zone and per keytag. [GL #513] 5253. [port] Support platforms that don't define ULLONG_MAX. [GL #1098] 5251. [bug] Statistics were broken in x86 Windows builds. [GL #1081] 5249. [bug] Fix a possible underflow in recursion clients statistics when hitting recursive clients soft quota. [GL #1067] --- 9.14.3 released --- 5244. [security] Fixed a race condition in dns_dispatch_getnext() that could cause an assertion failure if a significant number of incoming packets were rejected. (CVE-2019-6471) [GL #942] 5243. [bug] Fix a possible race between dispatcher and socket code in a high-load cold-cache resolver scenario. [GL #943] 5242. [bug] In relaxed qname minimizatiom mode, fall back to normal resolution when encountering a lame delegation, and use _.domain/A queries rather than domain/NS. [GL #1055] 5241. [bug] Fix Ed448 private and public key ASN.1 prefix blobs. [GL #225] 5240. [bug] Remove key id calculation for RSAMD5. [GL #996] 5238. [bug] Fix a possible deadlock in TCP code. [GL #1046] 5237. [bug] Recurse to find the root server list with 'dig +trace'. [GL #1028] 5234. [port] arm: just use the compiler's default support for yield. [GL #981] --- 9.14.2 released --- 5233. [bug] Negative trust anchors did not work with "forward only;" to validating resolvers. [GL #997] 5231. [protocol] Add support for displaying CLIENT-TAG and SERVER-TAG. [GL #960] 5229. [protocol] Enforce known SSHFP fingerprint lengths. [GL #852] 5228. [cleanup] If trusted-keys and managed-keys are configured simultaneously for the same name, the key cannot be rolled automatically. This configuration now logs a warning. [GL #868] 5224. [bug] Only test provide-ixfr on TCP streams. [GL #991] 5223. [bug] Fixed a race in the filter-aaaa plugin accessing the hash table. [GL #1005] 5222. [bug] 'delv -t ANY' could leak memory. [GL #983] 5221. [test] Enable parallel execution of system tests on Windows. [GL !4101] 5220. [cleanup] Refactor the isc_stat structure to take advantage of stdatomic. [GL !1493] 5219. [bug] Fixed a race in the filter-aaaa plugin that could trigger a crash when returning an instance object to the memory pool. [GL #982] 5218. [bug] Conditionally include <dlfcn.h>. [GL #995] 5217. [bug] Restore key id calculation for RSAMD5. [GL #996] 5216. [bug] Fetches-per-zone counter wasn't updated correctly when doing qname minimization. [GL #992] 5215. [bug] Change #5124 was incomplete; named could still return FORMERR instead of SERVFAIL in some cases. [GL #990] 5214. [bug] win32: named now removes its lock file upon shutdown. [GL #979] 5213. [bug] win32: Eliminated a race which allowed named.exe running as a service to be killed prematurely during shutdown. [GL #978] 5211. [bug] Allow out-of-zone additional data to be included in authoritative responses if recursion is allowed and "minimal-responses" is disabled. This behavior was inadvertently removed in change #4605. [GL #817] 5210. [bug] When dnstap is enabled and recursion is not available, incoming queries are now logged as "auth". Previously, this depended on whether recursion was requested by the client, not on whether recursion was available. [GL #963] 5209. [bug] When update-check-ksk is true, add_sigs was not considering offline keys, leaving record sets signed with the incorrect type key. [GL #763] 5208. [test] Run valid rdata wire encodings through totext+fromtext and tofmttext+fromtext methods to check these methods. [GL #899] 5207. [test] Check delv and dig TTL values. [GL #965] 5206. [bug] Delv could print out bad TTLs. [GL #965] 5205. [bug] Enforce that a DS hash exists. [GL #899] 5204. [test] Check that dns_rdata_fromtext() produces a record that will be accepted by dns_rdata_fromwire(). [GL #852] 5203. [bug] Enforce whether key rdata exists or not in KEY, DNSKEY, CDNSKEY and RKEY. [GL #899] 5202. [bug] <dns/ecs.h> was missing ISC_LANG_ENDDECLS. [GL #976] 5190. [bug] Ignore trust anchors using disabled algorithms. [GL #806]
2019-09-05Pull up following revision(s) (requested by sevan in ticket #174):martin
lib/libc/sys/chmod.2: revision 1.48 lib/libc/sys/stat.2: revision 1.59 lib/libc/sys/unlink.2: revision 1.30 lib/libc/sys/lseek.2: revision 1.25 lib/libc/sys/getuid.2: revision 1.18 lib/libc/sys/chown.2: revision 1.37 lib/libm/man/exp.3: revision 1.32 lib/libm/man/log.3: revision 1.7 lib/libc/sys/open.2: revision 1.60 lib/libc/stdio/fopen.3: revision 1.36 lib/libc/stdio/putc.3: revision 1.14 lib/libc/sys/mount.2: revision 1.51 share/man/man9/copy.9: revision 1.22 share/man/man9/uiomove.9: revision 1.20 lib/libc/sys/setuid.2: revision 1.23 lib/libc/sys/close.2: revision 1.18 sbin/init/init.8: revision 1.61 lib/libc/sys/write.2: revision 1.36 lib/libc/sys/read.2: revision 1.39 sbin/init/init.8: revision 1.62 lib/libc/sys/wait.2: revision 1.40 usr.bin/tty/tty.1: revision 1.10 lib/libc/sys/link.2: revision 1.33 usr.bin/du/du.1: revision 1.24 lib/libc/stdlib/exit.3: revision 1.17 usr.bin/su/su.1: revision 1.53 usr.bin/mail/mail.1: revision 1.66 lib/libc/sys/fork.2: revision 1.25 usr.bin/su/su.1: revision 1.54 usr.bin/mail/mail.1: revision 1.67 lib/libm/man/sin.3: revision 1.15 share/man/man9/intro.9: revision 1.26 share/man/man5/utmp.5: revision 1.17 lib/libc/compat-43/creat.3: revision 1.17 lib/libc/time/ctime.3: revision 1.61 lib/libcompat/4.1/stty.3: revision 1.10 usr.bin/dc/dc.1: revision 1.3 lib/libm/man/cos.3: revision 1.17 lib/libc/sys/chdir.2: revision 1.23 lib/libc/gen/exec.3: revision 1.30 lib/libc/gen/exec.3: revision 1.31 games/bcd/bcd.6: revision 1.18 games/bcd/bcd.6: revision 1.19 usr.bin/write/write.1: revision 1.7 usr.bin/wc/wc.1: revision 1.18 usr.bin/pr/pr.1: revision 1.24 usr.bin/who/who.1: revision 1.25 lib/libc/sys/mkdir.2: revision 1.30 lib/libc/stdio/getc.3: revision 1.13 usr.bin/sort/sort.1: revision 1.40 usr.bin/mesg/mesg.1: revision 1.11 share/man/man5/passwd.5: revision 1.34 sort was there since v1 https://www.bell-labs.com/usr/dmr/www/man61.pdf dc was in v1 https://www.bell-labs.com/usr/dmr/www/man12.pdf du was in v1 https://www.bell-labs.com/usr/dmr/www/man12.pdf mail was in v1 https://www.bell-labs.com/usr/dmr/www/man12.pdf mesg was in v1 https://www.bell-labs.com/usr/dmr/www/man12.pdf Document history https://www.bell-labs.com/usr/dmr/www/man13.pdf su was in v1 https://www.bell-labs.com/usr/dmr/www/man13.pdf Document history https://www.bell-labs.com/usr/dmr/www/man13.pdf Document history https://www.bell-labs.com/usr/dmr/www/man14.pdf Update URL write was in v1 https://www.bell-labs.com/usr/dmr/www/man14.pdf grammar passwd(5) was in v1 https://www.bell-labs.com/usr/dmr/www/man51.pdf utmp(5) was present in v1 https://www.bell-labs.com/usr/dmr/www/man51.pdf Earliest version of wtmp I could find was in v3 https://minnie.tuhs.org/cgi-bin/utree.pl?file=V3/man/man5/wtmp.5 Document history of chdir(2) https://www.bell-labs.com/usr/dmr/www/man21.pdf Document history of chmod(2) https://www.bell-labs.com/usr/dmr/www/man21.pdf Document history of chown(2) https://www.bell-labs.com/usr/dmr/www/man21.pdf Document history https://www.bell-labs.com/usr/dmr/www/man21.pdf create was present in v1 https://www.bell-labs.com/usr/dmr/www/man21.pdf Document history of exec() Move statement on execlpe() & execvpe() to HISTORY section. Document history https://www.bell-labs.com/usr/dmr/www/man21.pdf fork was present in v1 https://www.bell-labs.com/usr/dmr/www/man21.pdf stat() was present in v1 https://www.bell-labs.com/usr/dmr/www/man22.pdf document history of fstat() https://www.bell-labs.com/usr/dmr/www/man21.pdf getuid was present in v1 https://www.bell-labs.com/usr/dmr/www/man21.pdf Document history https://www.bell-labs.com/usr/dmr/www/man21.pdf Document history https://www.bell-labs.com/usr/dmr/www/man21.pdf stty & gtty were around since v1 https://www.bell-labs.com/usr/dmr/www/man21.pdf https://www.bell-labs.com/usr/dmr/www/man22.pdf mount & umount were present in v1 https://www.bell-labs.com/usr/dmr/www/man22.pdf Open was present in v1 https://www.bell-labs.com/usr/dmr/www/man22.pdf read was present in v1 https://www.bell-labs.com/usr/dmr/www/man22.pdf seek was present in v1 https://www.bell-labs.com/usr/dmr/www/man22.pdf setuid was in v1 https://www.bell-labs.com/usr/dmr/www/man22.pdf unlink was presen in v1 https://www.bell-labs.com/usr/dmr/www/man22.pdf wait was present in v1 https://www.bell-labs.com/usr/dmr/www/man22.pdf write was present in v1 https://www.bell-labs.com/usr/dmr/www/man22.pdf start documenting history exp was present in v1 https://www.bell-labs.com/usr/dmr/www/man31.pdf Start documenting history https://www.bell-labs.com/usr/dmr/www/man31.pdf Start documenting history https://www.bell-labs.com/usr/dmr/www/man31.pdf log appeared in v1 https://www.bell-labs.com/usr/dmr/www/man31.pdf putc & putw were in v1 https://www.bell-labs.com/usr/dmr/www/man31.pdf putchar was in v4 https://minie.tuhs.org/cgi-bin/utree.pl?file=V4/man/man3/putchr.3 Start documenting history https://www.bell-labs.com/usr/dmr/www/man31.pdf Document history. https://www.bell-labs.com/usr/dmr/www/man11.pdf Between v1 & v6 UNIX, bcd was rewritten in C, but I don't know if which version, hence I've skipped mentioning it. End sentence with a dot. Remove superfluous Pp. Remove superfluous Pp. Remove superfluous Ns. Remove superfluous Pp. fetch(9) -> ufetch(9) fetch(9) -> ufetch(9). Remove superfluous Pp. fetch(9) -> ufetch(9). Remove reference to unimplemented ppi(9).
2019-08-19Pull up following revision(s) (requested by kamil in ticket #96):martin
usr.bin/sockstat/sockstat.c: revision 1.21 usr.bin/sockstat/prog_ops.h: revision 1.2 usr.bin/sockstat/sockstat_rumpops.c: revision 1.2 usr.bin/sockstat/sockstat_hostops.c: revision 1.2 usr.bin/sockstat/Makefile: revision 1.4 sockstat: Add indirection of symbols to remove clash with sanitizers Add indirection and symbol renaming under MKSANITIZER for the linked in version of sysctlgetmibinfo and sysctlnametomib.
2019-08-19Pull up following revision(s) (requested by kamil in ticket #94):martin
usr.bin/netstat/netstat_rumpops.c: revision 1.2 usr.bin/netstat/netstat_hostops.c: revision 1.2 usr.bin/netstat/inet6.c: revision 1.73 usr.bin/netstat/bpf.c: revision 1.14 usr.bin/netstat/Makefile: revision 1.46 usr.bin/netstat/prog_ops.h: revision 1.3 usr.bin/netstat/pfsync.c: revision 1.2 usr.bin/netstat/pfkey.c: revision 1.2 usr.bin/netstat/fast_ipsec.c: revision 1.23 usr.bin/netstat/atalk.c: revision 1.17 usr.bin/netstat/inet.c: revision 1.110 netstat: Add indirection of symbols to remove clash with sanitizers Add indirection and symbol renaming under MKSANITIZER for the linked in version of sysctlbyname, sysctlgetmibinfo and sysctlnametomib.