Commit Graph

4098 Commits

Author SHA1 Message Date
roy 76a8def0a9 Sync with dhcpcd-10.0.8 2024-05-24 16:09:09 +00:00
roy ed7347c8ff Update to dhcpcd-10.0.8 with the following fixes:
* Fixed compile without ARP
 * Fixed spelling of ADVERTISEMENT
2024-05-24 16:07:42 +00:00
roy 31430cea00 Sync with dhcpcd-10.0.7 2024-05-24 11:30:29 +00:00
roy 4dcbd9d51d Update to dhcpcd-10.0.7 with the following changes:
* DHCP: use request_time, fallback_time and ipv4ll_time rather than reboot timeout
* DHCP6: Wait for IRT to elapse before requesting advertisments
* DHCPv6: Don't re-INFORM if the RA changes
* privsep: Reduce fd use
* dhcpcd: Add support for arp persist defence
* Move dhcp(v4) packet size check earlier
* Define the Azure Endpoint and other site-specific options
* add RFC4191 support by @goertzenator in #297
* dhcpcd: Respect IPV6_PREFERRED_ONLY flag regardless of state
* Fix time_offset to be int to match RFC-2132
* hooks/30-hostname: Exit with 0 if setting hostname is not needed
2024-05-24 11:28:00 +00:00
andvar cc8d93b4cd agrep(1): remove duplicated and obsolete imports.
dirent import is the only one which stays in the odd location.

Part of PR bin/53513.
2024-05-24 07:52:45 +00:00
andvar 45e3b02ce0 agrep(1): rewrite binary check introduced with recursive search on rev 1.3 to
match more closely grep(1) implementation. Instead of opening and scanning
full file every time, check for the \0 symbol once the file buffer is filled up
for the first time.

Patch fixes stdin, adds binary check for it as well, and works more efficiently
(at the cost of not scanning the full file).

Also original implementation forgot to add break if binary file is detected,
causing duplicate binary matches in the output result.

Due to full file scans on each match instead of once for the specific file,
scans may have been considerably slow.

Fixes PR bin/53513

Needs pullups to netbsd-9,-10.

Thanks for the help from mlelstv and dh in reviewing and finalizing the patch.
2024-05-23 22:07:16 +00:00
maya acbe8419a2 Remove documentation for long removed -F option
Suggested by Robert Whitlock in PR bin/58177

I've sent this patch to the nvi maintainers but the response suggested
patching this downstream, as there would be no further releases of nvi.
2024-04-29 00:50:42 +00:00
rillig d122acbd72 libntf: make MKREPRO timestamp compatible with NetBSD 10
In NetBSD 10, make(1) cannot handle :gmtime arguments that are
expressions, resulting in the error message "Unknown modifier '1'".
2024-04-21 17:19:52 +00:00
rillig 7202b80324 libntp: clean up MKREPRO_TIMESTAMP handling
NetBSD's make has built-in support for formatting timestamps, so use
that instead of relying on an external tool.  The month name is still
always in the C locale, and possible errors are reported in the affected
line, due to the ':=' assignment operator.

Without the ':=' assignment operator, the intermediate variable would
not be necessary, but in that case, make's error handling is broken and
unspecific.
2024-04-20 08:03:08 +00:00
jakllsch 466d1a15ac fix copy/paste-o 2024-04-19 16:04:28 +00:00
jakllsch 7386dcbbb8 Increase MKREPRO robustness
- Use C locale to ensure month abbreviations are as expected
 - bail out if MKREPRO_TIMESTAMP is not defined
 - bail out if resulting __DATE__/__TIME__ replacement strings are empty
2024-04-19 14:58:18 +00:00
jakllsch 05916288da The substitute __DATE__ should be %b %e %Y per a C18 draft
Subtle change that won't make a functional difference in this case;
changed only for semantic correctness.
2024-04-19 13:34:15 +00:00
jakllsch 1784c46724 Format MKREPRO_TIMESTAMP with "%b %d %Y" to correctly substitute __DATE__ 2024-04-18 19:23:53 +00:00
jakllsch 308afeb1b5 remove now-unused assignment 2024-04-12 19:06:45 +00:00
rillig c070e60d9e flex.1: fix single-bit error in contributor name 2024-04-05 22:21:40 +00:00
christos e84b33b8b9 break strength ties so that qsort is deterministic 2024-04-05 16:56:58 +00:00
riastradh 3f53e7a4bf external/bsd/am-utils: delete outdated amd2netbsd under dist
This was stored as a local change to dist, where it doesn't belong --
it belongs outside dist.  But we already have an amd2netbsd with the
correct path outside of dist.
2024-04-04 20:33:59 +00:00
christos 0ba9bcdd8c fix format. 2024-04-03 00:38:36 +00:00
christos 3a91ec0ace use ${MKREPRO_TIMESTAMP} for baking in the date and time. 2024-04-02 14:19:02 +00:00
riastradh ad49149131 elftoolchain: Be consistent about which ELF header files we use.
1. For tools that use elftoolchain: always use elftoolchain's
   elfdefinitions.h.  Don't even think about looking at the host's
   sys/exec_elf.h, which makes no sense and should never happen.

   (ELF tools that don't use elftoolchain, like m68k-elf2coff,
   continue to use nbincludes/sys/exec_elf.h.  But no more nbincludes
   hacks in elftoolchain.)

2. For kernel components (solaris, zfs, dtrace): always use
   sys/exec_elf.h, even in Solaris components via sys/elf.h.
   elfdefinitions.h is not wired up in the kernel build at all.

3. For most userland components that involve libelf: use
   elfdefinitions.h via libelf header files (libelf.h, gelf.h).

   libdtrace in particular requires _all_ R_* reloc type definitions,
   but sys/exec_elf.h brings in only the _current machine's_ R_*
   reloc type definitions.  (While here: Use uintptr_t instead of
   Elf_Addr for pointer-to-integer cast, since Elf_Addr is MD and
   provided only by sys/exec_elf.h, not by elfdefinitions.h.)

   And most userland components using libelf don't rely on any
   properties of the current machine from sys/exec_elf.h, so they can
   use libelf's elfdefinition.h.

   Exceptions:

   - dtrace drti.c relies on link.h -> link_elf.h -> sys/exec_elf.h,
     but it also relies on sys/dtrace.h -> sys/elf.h ->
     elfdefinitions.h like other userland components using sys/elf.h.

   - kdump-ioctl.c uses sys/exec_elf.h directly and sys/dtrace.h ->
     sys/elf.h -> elfdefinitions like other userland components using
     sys/elf.h.

   - t_ptrace_wait.c (via t_ptrace_core_wait.h) uses libelf to parse
     core files, but relies on sys/exec_elf.h for struct
     netbsd_elfcore_procinfo.

   None of these exceptions needs all R_* reloc type definitions, so
   as a workaround, we can just suppress libelf's elfdefinitions.h by
   defining _SYS_ELFDEFINITIONS_H_ and use sys/exec_elf.h in these
   exceptions.

And undo the whole BUILTIN_ELF_HEADERS mistake.  This was:

- half bogus workarounds for missing build_install dependencies in
  tools/Makefile, which are no longer missing now, and
- half futile attempt to use src/sys/sys/exec_elf.h via nbincludes in
  tools involving libelf instead of libelf's elfdefinitions.h, which
  collides.

Longer-term, we may wish to unify sys/exec_elf.h and libelf's
elfdefinitions.h, so we don't have to play these games.

But at least now the games are limited to three .c files (one of
which is generated by Makefile.ioctl-c), rather than haphazardly
applied tree-wide by monstrous kludges in widely used .h files with
broken hackarounds to get the tools build lurching to completion.
2024-04-01 18:33:22 +00:00
christos 97a4ef4394 Restore the minimum build to install elfdefinitions.h. Provide a pre-built
copy, since we don't have m4 available. Use pax to install it because
using the Makefile needs more stuff available (nbsed) which we have not
built yet.
2024-03-31 03:20:38 +00:00
christos d40876c8a3 Add ${_MKTARGET_CREATE} 2024-03-27 21:55:08 +00:00
christos 89eb4d6b6c Don't try to compile the arch-specific relocation code if we don't have the
built-in headers (for tools)
2024-03-27 21:53:06 +00:00
christos ab764c6f4a Fix DEBUG build. 2024-03-04 17:10:33 +00:00
christos ae8567df4e add one more source file 2024-03-03 19:13:59 +00:00
christos 7301e11f26 Use README to import 2024-03-03 17:41:48 +00:00
christos 5ac3bc719c Merge subversion r4037 2024-03-03 17:37:29 +00:00
christos 4639c15b67 Import new elftoolchain at SVN-r4037 2024-03-03 14:41:47 +00:00
christos 14b2fa6e0f merge differences between 1.16.3 and 1.19.1 2024-02-17 18:31:17 +00:00
christos 91f7d55fb6 Import 1.19.1 (previous was 1.16.3)
2 November 2023: Wouter
	- Set version number to 1.19.0.
	- Tag for 1.19.0rc1 release.

1 November 2023: George
	- Mention flex and bison in README.md when building from repository
	  source.

1 November 2023: Wouter
	- Fix SSL compile failure for definition in log_crypto_err_io_code_arg.
	- Fix SSL compile failure for other missing definitions in
	  log_crypto_err_io_code_arg.
	- Fix compilation without openssl, remove unused function warning.

31 October 2023: George
	- Fix #941: dnscrypt doesn't work after upgrade to 1.18 with
	  suggestion by dukeartem to also fix the udp_ancil with dnscrypt.

30 October 2023: George
	- Merge #930 from Stuart Henderson: add void to
	  log_ident_revert_to_default declaration.

30 October 2023: Wouter
	- autoconf.

24 October 2023: George
	- Clearer configure text for missing protobuf-c development libraries.

20 October 2023: Wouter
	- Merge #951: Cachedb no store. The cachedb-no-store: yes option is
	  used to stop cachedb from writing messages to the backend storage.
	  It reads messages when data is available from the backend. The
	  default is no.

19 October 2023: Wouter
	- Fix to print detailed errors when an SSL IO routine fails via
	  SSL_get_error.

18 October 2023: George
	- Mailing list patches from Daniel Gröber for DNS64 fallback to plain
	  AAAA when no A record exists for synthesis, and minor DNS64 code
	  refactoring for better readability.
	- Fixes for the DNS64 patches.
	- Update the dns64_lookup.rpl test for the DNS64 fallback patch.
	- Merge #955 from buevsan: fix ipset wrong behavior.
	- Update testdata/ipset.tdir test for ipset fix.

17 October 2023: Wouter
	- Fix #954: Inconsistent RPZ handling for A record returned along with
	  CNAME.

16 October 2023: George
	- Expose the script filename in the Python module environment 'mod_env'
	  instead of the config_file structure which includes the linked list
	  of scripts in a multi Python module setup; fixes #79.
	- Expose the configured listening and outgoing interfaces, if any, as
	  a list of strings in the Python 'config_file' class instead of the
	  current Swig object proxy; fixes #79.
	- For multi Python module setups, clean previously parsed module
	  functions in __main__'s dictionary, if any, so that only current
	  module functions are registered.

13 October 2023: George
	- Better fix for infinite loop when reading multiple lines of input on
	  a broken remote control socket, by treating a zero byte line the
	  same as transmission end. Addesses #947 and #948.

12 October 2023: Wouter
	- Merge #944: Disable EDNS DO.
	  Disable the EDNS DO flag in upstream requests. This can be helpful
	  for devices that cannot handle DNSSEC information. But it should not
	  be enabled otherwise, because that would stop DNSSEC validation. The
	  DNSSEC validation would not work for Unbound itself, and also not
	  for downstream users. Default is no. The option
	  is disable-edns-do: no

11 October 2023: George
	- Fix #850: [FR] Ability to use specific database in Redis, with new
	  redis-logical-db configuration option.

11 October 2023: Wouter
	- Fix #949: "could not create control compt".
	- Fix that cachedb does not warn when serve-expired is disabled about
	  use of serve-expired-reply-ttl and serve-expired-client-timeout.
	- Fix for #949: Fix pythonmod/ubmodule-tst.py for Python 3.x.

10 October 2023: George
	- Fix infinite loop when reading multiple lines of input on a broken
	  remote control socket. Addesses #947 and #948.

9 October 2023: Wouter
	- Fix edns subnet so that queries with a source prefix of zero cause
	  the recursor send no edns subnet option to the upstream.
	- Fix that printout of EDNS options shows the EDNS cookie option by
	  name.

4 October 2023: Wouter
	- Fix #946: Forwarder returns servfail on upstream response noerror no
	  data.

3 October 2023: George
	- Merge #881: Generalise the proxy protocol code.

2 October 2023: George
	- Fix misplaced comment.

22 September 2023: Wouter
	- Fix #942: 1.18.0 libunbound DNS regression when built without
	  OpenSSL.

18 September 2023: Wouter
	- Fix rpz tcp-only action with rpz triggers nsdname and nsip.

15 September 2023: Wouter
	- Merge #936: Check for c99 with autoconf versions prior to 2.70.
	- Fix to remove two c99 notations.

14 September 2023: Wouter
	- Fix authority zone answers for obscured DNAMEs and delegations.

8 September 2023: Wouter
	- Fix send of udp retries when ENOBUFS is returned. It stops looping
	  and also waits for the condition to go away. Reported by Florian
	  Obser.

7 September 2023: Wouter
	- Fix to scrub resource records of type A and AAAA that have an
	  inappropriate size. They are removed from responses.
	- Fix to move msgparse_rrset_remove_rr code to util/msgparse.c.
	- Fix to add EDE text when RRs have been removed due to length.
	- Fix to set ede match in unit test for rr length removal.
	- Fix to print EDE text in readable form in output logs.

6 September 2023: Wouter
	- Merge #931: Prevent warnings from -Wmissing-prototypes.

31 August 2023: Wouter
	- Fix autoconf 2.69 warnings in configure.
	- Fix #927: unbound 1.18.0 make test error. Fix make test without SHA1.

30 August 2023: Wouter
	- Fix for WKS call to getservbyname that creates allocation on exit
	  in unit test by testing numbers first and testing from the services
	  list later.

28 August 2023: Wouter
	- Fix for version generation race condition that ignored changes.

25 August 2023: Wouter
	- Fix compile error on NetBSD in util/netevent.h.

23 August 2023: Wouter
	- Tag for 1.18.0rc1 release. This became the 1.18.0 release on
	  30 aug 2023, with the fix from 25 aug, fix compile on NetBSD
	  included. The repository continues with version 1.18.1.

22 August 2023: Wouter
	- Set version number to 1.18.0.

21 August 2023: Wouter
	- Debug Windows ci workflow.
	- Fix windows ci workflow to install bison and flex.
	- Fix for #925: unbound.service: Main process exited, code=killed,
	  status=11/SEGV. Fixes cachedb configuration handling.
	- Fix #923: processQueryResponse() THROWAWAY should be mindful of
	  fail_reply.
	- Fix unit test for unbound-control to work when threads are disabled,
	  and fix cache dump check.

18 August 2023: Wouter
	- Fix for iter_dec_attempts that could cause a hang, part of
	  capsforid and qname minimisation, depending on the settings.
	- Fix uninitialized memory passed in padding bytes of cmsg to sendmsg.
	- Fix stat_values test to work with dig that enables DNS cookies.

17 August 2023: Wouter
	- Merge PR #762: Downstream DNS Server Cookies a la RFC7873 and
	  RFC9018. Create server cookies for clients that send client cookies.
	  This needs to be explicitly turned on in the config file with:
	  `answer-cookie: yes`. A `cookie-secret:` can be configured for
	  anycast setups. Without one, a random cookie secret is generated.
	  The acl option `allow_cookie` allows queries with either a valid
	  cookie or over a stateful transport. The statistics output has
	  `queries_cookie_valid` and `queries_cookie_client` and
	  `queries_cookie_invalid` information. The `ip\-ratelimit\-cookie:`
	  value determines a rate limit for queries with cookies, if desired.
	- Fix regional_alloc_init for potential unaligned source of the copy.
	- Fix ip_ratelimit test to work with dig that enables DNS cookies.

2 August 2023: George
	- Move a cache reply callback in worker.c closer to the cache reply
	  generation.

1 August 2023: George
	- Merge #911 from natalie-reece: Exclude EDE before other EDNS options
	  when there isn't enough space.
	- For #911: Try to trim EXTRA-TEXT (and LDNS_EDE_OTHER options
	  altogether) before giving up on attaching EDE options.
	- More braces and formatting for Fix for EDNS EDE size calculation to
	  avoid future bugs.
	- Fix to use the now cached EDE, if any, for CD_bit queries.

1 August 2023: Wouter
	- Fix for EDNS EDE size calculation.

31 July 2023: George
	- Merge #790 from Tom Carpay: Add support for EDE caching in cachedb
	  and subnetcache.

31 July 2023: Wouter
	- iana portlist update.

30 July 2023: George
	- Merge #759 from Tom Carpay: Add EDE (RFC8914) caching.

28 July 2023: George
	- Fix unused variable compile warning for kernel timestamps in
	  netevent.c

21 July 2023: George
	- Merge #857 from eaglegai: fix potential memory leaks when errors
	  happen.
	- For #857: fix mixed declarations and code.
	- Merge #118 from mibere: Changed verbosity level for Redis init &
	  deinit.
	- Merge #390 from Frank Riley: Add missing callbacks to the python
	  module.
	- Cleaner failure code for callback functions in interface.i.
	- Merge #889 from borisVanhoof: Free memory in error case + remove
	  unused function.
	- For #889: use netcat-openbsd instead of netcat-traditional.
	- For #889: Account for num_detached_states before possible
	  mesh_state_delete when erroring out.

20 July 2023: George
	- Merge #909 from headshog: Numeric truncation when parsing TYPEXX and
	  CLASSXX representation.
	- For #909: Fix return values.
	- Merge #901 from Sergei Trofimovich: config: improve handling of
	  unknown modules.

20 July 2023: Wouter
	- For #909: Fix RR class comparison.

14 July 2023: George
	- More clear description of the different auth-zone behaviors on the
	  man page.

13 July 2023: George
	- Merge #880 from chipitsine: services/authzone.c: remove redundant
	  check.

11 July 2023: George
	- Merge #664 from tilan7763: Add prefetch support for subnet cache
	  entries.
	- For #664: Easier code flow for subnetcache prefetching.
	- For #664: Add testcase.
	- For #664: Rename subnet_prefetch tests to subnet_global_prefetch to
	  differentiate from the new subnet prefetch support.

3 July 2023: George
	- Merge #739: Add SVCB dohpath support.
	- Code cleanup for sldns_str2wire_svcparam_key_lookup.
	- Merge #802: add validation EDEs to queries where the CD bit is set.
	- For #802: Cleanup comments and add RCODE check for CD bit test case.
	- Skip the 00-lint test. splint is not maintained; it either does not
	  work or produces false positives. Static analysis is handled in the
	  clang test.

3 July 2023: Wouter
	- Fix #906: warning: ‘Py_SetProgramName’ is deprecated.
	- Fix dereference of NULL variable warning in mesh_do_callback.

29 June 2023: George
	- More fixes for reference counting for python module and clean up
	  failure code.
	- Merge #827 from rcmcdonald91: Eliminate unnecessary Python reloading
	  which causes memory leaks.

29 June 2023: Wouter
	- Fix python modules with multiple scripts, by incrementing reference
	  counts.

27 June 2023: George
	- Merge #892: Add cachedb hit stat. Introduces 'num.query.cachedb' as
	  a new statistical counter.
	- Remove warning about unknown cast-function-type warning pragma.

22 June 2023: Wouter
	- Merge #903: contrib: add yocto compatible init script.

15 June 2023: Philip
	- Fix for issue #887 (Timeouts to forward servers on BSD based
	  system with ASLR)
	- Probably fixes #516 (Stream reuse does not work on Windows) as well

14 June 2023: George
	- Properly handle all return values of worker_check_request during
	  early EDE code.
	- Do not check the incoming request more than once.

12 June 2023: Wouter
	- Merge #896: Fix: #895: pythonmodule: add all site-packages
	  directories to sys.path.
	- Fix #895: python + sysconfig gives ANOTHER path comparing to
	  distutils.
	- Fix for uncertain unit test for doh buffer size events.

25 May 2023: Wouter
	- Fix unbound-dnstap-socket printout when no query is present.
	- Fix unbound-dnstap-socket time fraction conversion for printout.

19 May 2023: Wouter
	- Fix RPZ removal of client-ip, nsip, nsdname triggers from IXFR.
	- Fix to remove unused variables from RPZ clientip data structure.

16 May 2023: Wouter
	- Fix #888: [FR] Use kernel timestamps for dnstap.
	- Fix to print debug log for ancillary data with correct IP address.

11 May 2023: Wouter
	- Fix warning in windows compile, in set_recvtimestamp.

4 May 2023: Wouter
	- Fix #885: Error: util/configlexer.c: No such file or directory,
	  adds error messages explaining to install flex and bison.
	- Fix to remove unused whitespace from acx_nlnetlabs.m4 and config.h.
	- Fix doxygen in addr_to_nat64 header definition.

1 May 2023: George
	- Merge #722 from David 'eqvinox' Lamparter: NAT64 support.
	- For #722: minor fixes, formatting, refactoring.

1 May 2023: Wouter
	- Fix RPZ IP responses with trigger rpz-drop on cache entries, that
	  they are dropped.

26 April 2023: Philip
	- Fix issue #860: Bad interaction with 0 TTL records and serve-expired

26 April 2023: Wouter
	- Merge #882 from vvfedorenko: Features/dropqueuedpackets, with
	  sock-queue-timeout option that drops packets that have been in the
	  socket queue for too long. Added statistics num.queries_timed_out
	  and query.queue_time_us.max that track the socket queue timeouts.
	- Fix for #882: small changes, date updated in Copyright for
	  util/timeval_func.c and util/timeval_func.h. Man page entries and
	  example entry.
	- Fix for #882: document variable to stop doxygen warning.

19 April 2023: Wouter
	- Fix for #878: Invalid IP address in unbound.conf causes Segmentation
	  Fault on OpenBSD.

14 April 2023: Wouter
	- Merge #875: change obsolete txt URL in unbound-anchor.c to point
	  to RFC 7958, and Fix #874.

13 April 2023: Wouter
	- Fix build badge, from failing travis link to github ci action link.

6 April 2023: Wouter
	- Fix for #870: Add test case for the qname minimisation and CNAME.

4 April 2023: Wouter
	- Fix #870: NXDOMAIN instead of NOERROR rcode when asked for existing
	  CNAME record.

24 March 2023: Philip
	- Fix issue #676: Unencrypted query is sent when
	  forward-tls-upstream: yes is used without tls-cert-bundle
	- Extra consistency check to make sure that when TLS is requested,
	  either we set up a TLS connection or we return an error.

21 March 2023: Philip
	- Fix issue #851: reserved identifier violation

20 March 2023: Wouter
	- iana portlist update.

17 March 2023: George
	- Fix #812, fix #846, by using the SSL_OP_IGNORE_UNEXPECTED_EOF option
	  to ignore the unexpected eof while reading in openssl >= 3.

16 March 2023: Wouter
	- Fix ssl.h include brackets, instead of quotes.

14 March 2023: Wouter
	- Fix unbound-dnstap-socket test program to reply the finish frame
	  over a TLS connection correctly.

23 February 2023: Wouter
	- Fix for #852: Completion of error handling.

21 February 2023: Philip
       - Fix #825: Unexpected behavior with client-subnet-always-forward
         and serve-expired

10 February 2023: George
	- Clean up iterator/iterator.c::error_response_cache() and allow for
	  better interaction with serve-expired, prefetch and cached error
	  responses.

9 February 2023: George
	- Allow TTL refresh of expired error responses.
	- Add testcase for refreshing expired error responses.

9 February 2023: Wouter
	- Fix to ignore entirely empty responses, and try at another authority.
	  This turns completely empty responses, a type of noerror/nodata into
	  a servfail, but they do not conform to RFC2308, and the retry can
	  fetch improved content.
	- Fix unit tests for spurious empty messages.
	- Fix consistency of unit test without roundrobin answers for the
	  cnametooptout unit test.
	- Fix to git ignore the library symbol file that configure can create.

8 February 2023: Wouter
	- Fix #841: Unbound won't build with aaaa-filter-iterator.patch.

30 January 2023: George
	- Add duration variable for speed_local.test.

26 January 2023: Wouter
	- Fix acx_nlnetlabs.m4 for -Wstrict-prototypes.

23 January 2023: George
	- Fix #833: [FR] Ability to set the Redis password.

23 January 2023: Wouter
	- Fix #835: [FR] Ability to use Redis unix sockets.

20 January 2023: Wouter
	- Merge #819: Added new static zone type block_a to suppress all A
	  queries for specific zones.

19 January 2023: Wouter
	- Set max-udp-size default to 1232. This is the same default value as
	  the default value for edns-buffer-size. It restricts client edns
	  buffer size choices, and makes unbound behave similar to other DNS
	  resolvers. The new choice, down from 4096 means it is harder to get
	  large responses from Unbound. Thanks to Xiang Li, from NISL Lab,
	  Tsinghua University.
	- Add harden-unknown-additional option. It removes
	  unknown records from the authority section and additional section.
	  Thanks to Xiang Li, from NISL Lab, Tsinghua University.
	- Set default for harden-unknown-additional to no. So that it does
	  not hamper future protocol developments.
	- Fix test for new default.

18 January 2023: Wouter
	- Fix not following cleared RD flags potentially enables amplification
	  DDoS attacks, reported by Xiang Li and Wei Xu from NISL Lab,
	  Tsinghua University. The fix stops query loops, by refusing to send
	  RD=0 queries to a forwarder, they still get answered from cache.

13 January 2023: Wouter
	- Merge #826: Аdd a metric about the maximum number of collisions in
	  lrushah.
	- Improve documentation for #826, describe the large collisions amount.

9 January 2023: Wouter
	- Fix python module install path detection.
	- Fix python version detection in configure.

6 January 2023: Wouter
	- Fix #823: Response change to NODATA for some ANY queries since
	  1.12, tested on 1.16.1.
	- Fix wildcard in hyperlocal zone service degradation, reported
	  by Sergey Kacheev. This fix is included in 1.17.1rc2.
	  That became 1.17.1 on 12 Jan 2023, the code repo continues
	  with 1.17.2. 1.17.1 excludes fix #823, it is included forwards.

5 January 2023: Wouter
	- Tag for 1.17.1 release.

2 January 2023: Wouter
	- Fix windows compile for libunbound subprocess reap comm point closes.
	- Update github workflows to use checkout v3.

14 December 2022: George
	- Merge #569 from JINMEI Tatuya: add keep-cache option to
	  'unbound-control reload' to keep caches.

13 December 2022: George
	- Expose 'statistics-inhibit-zero' as a configuration option; the
	  default value retains Unbound's behavior.
	- Expose 'max-sent-count' as a configuration option; the
	  default value retains Unbound's behavior.
	- Merge #461 from Christian Allred: Add max-query-restarts option.
	  Exposes an internal configuration but the default value retains
	  Unbound's behavior.

13 December 2022: Wouter
	- Merge #808: Wrap Makefile script's directory variables in quotes.
	- Fix to wrap Makefile scripts directory in quotes for uninstall.

1 December 2022: Wouter
	- Fix #773: When used with systemd-networkd, unbound does not start
	  until systemd-networkd-wait-online.service times out.

30 November 2022: George
	- Add SVCB and HTTPS to the types removed by 'unbound-control flush'.
	- Clear documentation for interactivity between the subnet module and
	  the serve-expired and prefetch configuration options.

30 November 2022: Wouter
	- Fix #782: Segmentation fault in stats.c:404.

28 November 2022: Wouter
	- Fix for the ignore of tcp events for closed comm points, preserve
	  the use after free protection features.

23 November 2022: Philip
	- Merge #720 from jonathangray: fix use after free when
	  WSACreateEvent() fails.

22 November 2022: George
	- Ignore expired error responses.

11 November 2022: Wouter
	- Fix #779: [doc] Missing documention in ub_resolve_event() for
	  callback parameter was_ratelimited.

9 November 2022: George
	- Complementary fix for distutils.sysconfig deprecation in Python 3.10
	  to commit 62c5039ab9da42713e006e840b7578e01d66e7f2.

8 November 2022: Wouter
	- Fix to ignore tcp events for closed comm points.
	- Fix to make sure to not read again after a tcp comm point is closed.
	- Fix #775: libunbound: subprocess reap causes parent process reap
	  to hang.
	- iana portlist update.

21 October 2022: George
	- Merge #767 from jonathangray: consistently use IPv4/IPv6 in
	  unbound.conf.5.

21 October 2022: Wouter
	- Fix that cachedb does not store failures in the external cache.

18 October 2022: George
	- Clarify the use of MAX_SENT_COUNT in the iterator code.

17 October 2022: Wouter
	- testcode/dohclient sets log identity to its name.

14 October 2022: Wouter
	- Merge #768 from fobser: Arithmetic on a pointer to void is a GNU
	  extension.
	- In unit test, print python script name list correctly.

13 October 2022: Wouter
	- Tag for 1.17.0 release. The code repository continues with 1.17.1.

11 October 2022: George
	- Fix PROXYv2 header read for TCP connections when no proxied addresses
	  are provided.

7 October 2022: Wouter
	- Tag for 1.17.0rc1 release.

7 October 2022: George
	- Fix to stop possible loops in the tcp reuse code (write_wait list
	  and tcp_wait list). Based on analysis and patch from Prad Seniappan
	  and Karthik Umashankar.
	- Fix unit test to properly test the reuse_write_wait_pop function.

6 October 2022: Wouter
	- Fix to stop responses with TC flag from resulting in partial
	  responses. It retries to fetch the data elsewhere, or fails the
	  query and in depth fix removes the TC flag from the cached item.
	- Fix proxy length debug output printout typecasts.

5 October 2022: Wouter
	- Fix dnscrypt compile for proxy protocol code changes.

5 October 2022: George
	- Use DEBUG_TDIR from environment in mini_tdir.sh for debugging.
	- Fix string comparison in mini_tdir.sh.
	- Make ede.tdir test more predictable by using static data.
	- Fix checkconf test for dnscrypt and proxy port.

4 October 2022: George
	- Merge #764: Leniency for target discovery when under load (for
	  NRDelegation changes).

4 October 2022: Wouter
	- Fix static analysis report to remove dead code from the
	  rpz_callback_from_iterator_module function.
	- Fix to clean up after the acl_interface unit test.

3 October 2022: George
	- Merge #760: PROXYv2 downstream support. (New proxy-protocol-port
	  configuration option).

3 October 2022: Wouter
	- Fix to remove erroneous TC flag from TCP upstream.
	- Fix test tdir skip report printout.
	- Fix windows compile, the identifier interface is defined in headers.
	- Fix to close errno block in comm_point_tcp_handle_read outside of
	  ifdef.

26 September 2022: George
	- Better output for skipped tdir tests.
2024-02-17 18:06:18 +00:00
christos 36f29c42dc merge differences between nsd-4.6.0 and nsd-4.8.0 2024-02-17 17:43:19 +00:00
christos 811a4a0195 Import 4.8.0 (previous was 4.6.0)
29 November 2023: Wouter
	- Tag for 4.8.0rc1.

28 November 2023: Wouter
	- Set up doc/RELNOTES for upcoming release.
	- Fix unit test kill_from_pidfile function for nonexistent files
	  because the argument is evaluated before the test expression.
	- Fix rr-test to also convert the contents of the just written output
	  file.
	- Fix test set to remove -f nsd.db and rm nsd.db commands.
	- Fix test set to remove difffile option.

27 November 2023: Jeroen
	- Fix #14: Set timeout to 3s when servicing remaining TCP connections.
	- Fix: Always instate write handler after reading queries from TCP.
	- Answer first query on connections accepted just before reload.

27 November 2023: Wouter
	- Merge #305: faster stats. Statistics can be gathered while a reload
	  is in progress.

27 November 2023: Willem
	- Merge #302: Test package fixes. Correct Auxfiles, kill_from_pidfile
	  function and fix drop_updates, rr-test and xfr_update tests.

1 November 2023: Jeroen
	- Remove on-disk database.

31 October 2023: Wouter
	- Merge #301: improve the logging of ixfr fallbacks to axfr.

30 October 2023: Jeroen
	- Fix processing of consolidated IXFRs.

30 October 2023: Wouter
	- Fix for interprocess communication to set quit sync command from
	  main process explicitly.

3 October 2023: Wouter
	- Merge #281: Proxy protocol. An implementation of PROXYv2 for NSD.
	  It can be configured with proxy-protocol-port: portnum with the
	  port number of the interface on which proxy traffic is handled.
	  The interface can support proxy traffic for UDP, TCP and TLS.

21 September 2023: Wouter
	- Merge #295: Update e-mail addresses, add ref to support contracts

31 August 2023: Wouter
	- Fix autoconf 2.69 warnings in configure.

14 July 2023: Wouter
	- Merge #287: Update nsd.conf.5.in.

11 July 2023: Wouter
	- Fix unused variable warning in unit test of udb.

22 June 2023: Wouter
	- Fix #284: dnstap_collector.c: SOCK_NONBLOCK is not available on
	  Mac/Darwin.

7 June 2023: Wouter
	- Merge #282: Improve nsd.conf man page.
	- Fix unused but set variable warning.
	- Fix #283: Compile failure in remote.c when --disable-bind8-stats
	  and --without-ssl are specified.

31 May 2023: Wouter
	- Add missing items to doc/RELNOTES.
	- Tag for 4.7.0rc1. It became release 4.7.0 on 7 june 2023. The code
	  repository continues with 4.7.1.

30 May 2023: Jeroen
	- Fix #240: Prefix messages originating from verifier.
	- Fix #275: Drop unnecessary root server checks.

30 May 2023: Wouter
	- Next version is 4.7.0, instead of 4.6.2, because of the added
	  features, like TLS for DNSTAP.
	- Fix unused variable warning in unit test, from clang compile.

24 May 2023: Wouter
	- For #279: Note that autoreconf -fi creates the configure script
	  and also the needed auxiliary files, for autoconf 2.69 and 2.71.

4 May 2023: Wouter
	- Fix to remove unused whitespace from acx_nlnetlabs.m4 and config.h.

1 May 2023: Wouter
	- make depend.
	- Fix for build to run flex and bison before compiling code that needs
	  the headers.

13 April 2023: Wouter
	- Fix cirrus script for submit to coverity scan to libtoolize
	  the configure script components config.guess and config.sub.
	- Fix readme status badge links.

28 March 2023: Wouter
	- Fix #273: Large TXT record breaks AXFR.
	- Fix ixfr create from adding too many record types.

16 March 2023: Wouter
	- Fix include brackets for ssl.h include statements, instead of quotes.
	- Fix static analyzer warning about nsd_event_method initialization.

15 March 2023: Wouter
	- Dnstap tls code fixes.

14 March 2023: Wouter
	- Fix dnstap to not check socket path when using IP address.
	- dnstap over TLS, default enabled. Configured with the
	  options dnstap-tls, dnstap-tls-server-name, dnstap-tls-cert-bundle,
	  dnstap-tls-client-key-file and dnstap-tls-client-cert-file.
	- Fix to compile without ssl with dnstap-tls code.

9 March 2023: Wouter
	- Fix #271: DNSTAP over TCP, with dnstap-ip: "127.0.0.1@3333".
	- Fix to clean more memory on exit of dnstap collector.

23 February 2023: Wouter
	- Fix #270: reserved identifier violation.

20 February 2023: Wouter
	- Merge #269 from Fale: Add systemd service unit.

16 February 2023: Wouter
	- Fix #266: Fix build with --without-ssl.
	- Fix #267: Allow unencrypted local operation of nsd-control.
	- Fix for #267: neater variable definitions.

2 February 2023: Wouter
	- Merge #265: Fix C99 compatibility issue.

30 January 2023: Wouter
	- Merge #263: Add bash autocompletion script for nsd-control.
	- Fix for #262: More error logging for SSL read failures for zone
	  transfers.

27 January 2023: Wouter
	- Fix #262: Zone(s) not synchronizing properly via TLS.
	- Fix ixfr_and_restart test to wait for processes to come to a stop.

26 January 2023: Wouter
	- Fix configure for -Wstrict-prototypes.

10 November 2022: Wouter
	- Tag for NSD 4.6.1, the repository continues with version 4.6.2.
	- Fix #239: -Wincompatible-pointer-types warning in remote.c.
	- Fix unit tests to succeed with --disable-bind8-stats.

1 November 2022: Wouter
	- Fixup for non-trailing newline lexer change warnings.
	- Update doc/RELNOTES for changes.
	- Fix ixfr_gone unit test to not use system default zone list file.
	- Fix credns tests for vm usage, and not use system default zone
	  list file.
	- Fix verify tests to use more portable bash location in script.
	- Fix verify_again test to use ipv4 address for test.

1 November 2022: Tom
	- Add SVCB dohpath support

28 September 2022: Jeroen
	- Set ALPN "dot" token during connection establishment as per RFC9103
	  section 7.1 (Thanks Cesar Kuroiwa).

21 September 2022: Tom
	- Change zone parsing to accept non-trailing newline.

1 September 2022: Wouter
	- Merge #231 from moritzbuhl: Fix checking if nonblocking sockets work
	  on OpenBSD.

19 August 2022: Wouter
	- Update cirrus build script for newer Ubuntu image, and FreeBSD
	  build with libtoolize to install auxiliary files.
	- Update to clang 14 in cirrus build test on Ubuntu Jammy 22.04.

7 July 2022: Tom
	- Fix #212: Change commandline control actions to always log.

1 July 2022: Wouter
	- Fix static analyzer reports, fix wrong log print when skipping xfr,
	  fix to print error on pipe read fail, and assert an xfr is in
	  progress during packet checks.
2024-02-17 17:31:21 +00:00
christos 74cc861970 https://www.phoronix.com/news/IWD-WPA-WiFi-Auth-Vulns
https://www.top10vpn.com/research/wifi-vulnerabilities/

PEAP client: Update Phase 2 authentication requirements

The previous PEAP client behavior allowed the server to skip Phase 2
authentication with the expectation that the server was authenticated
during Phase 1 through TLS server certificate validation. Various PEAP
specifications are not exactly clear on what the behavior on this front
is supposed to be and as such, this ended up being more flexible than
the TTLS/FAST/TEAP cases. However, this is not really ideal when
unfortunately common misconfiguration of PEAP is used in deployed
devices where the server trust root (ca_cert) is not configured or the
user has an easy option for allowing this validation step to be skipped.

Change the default PEAP client behavior to be to require Phase 2
authentication to be successfully completed for cases where TLS session
resumption is not used and the client certificate has not been
configured. Those two exceptions are the main cases where a deployed
authentication server might skip Phase 2 and as such, where a more
strict default behavior could result in undesired interoperability
issues. Requiring Phase 2 authentication will end up disabling TLS
session resumption automatically to avoid interoperability issues.

Allow Phase 2 authentication behavior to be configured with a new phase1
configuration parameter option:
'phase2_auth' option can be used to control Phase 2 (i.e., within TLS
tunnel) behavior for PEAP:
 * 0 = do not require Phase 2 authentication
 * 1 = require Phase 2 authentication when client certificate
   (private_key/client_cert) is no used and TLS session resumption was
   not used (default)
 * 2 = require Phase 2 authentication in all cases
2024-02-13 18:43:45 +00:00
christos 35cdec5580 PR/57905: Mark Davies: handle empty string. 2024-02-09 15:15:32 +00:00
wiz a65e909eea add an IPv6 example to blocklistd.conf example file 2024-02-09 01:00:12 +00:00
wiz a3661e4b10 add an IPv6 example to blocklistd.conf(5) 2024-02-09 00:59:08 +00:00
wiz edd572a700 Spelling fixes 2024-02-09 00:53:30 +00:00
christos 71b672060e fix typo 2024-02-09 00:39:16 +00:00
christos f4a9e2ba6c PR/57905: Mark Davies: blocklistd fails to parse ipv6 addresses. 2024-02-09 00:37:06 +00:00
mrg 2026b7285b update my email address. 2024-02-04 05:43:05 +00:00
christos 914f0ba5d8 Sync with pkgsrc and try to fix more memory corruption from PR/57179. 2024-02-02 22:19:05 +00:00
prlw1 c9f3803501 libproc: sanitize process symbols so binary doesn't end up in dtrace profiling
From RVP on current-users
https://mail-index.netbsd.org/current-users/2023/12/27/msg044840.html
2024-01-15 12:38:56 +00:00
uwe 5803926fcb tmux: perform substitution(s) in the man page 2024-01-04 13:20:22 +00:00
riastradh 5defc0df3d fetch(3): Backport SSL validation from pkgsrc libfetch 2.40.
We should really sync with pkgsrc libfetch to avoid divergence, but
this is a low-risk, high-priority change for NetBSD 10:

https://mail-index.netbsd.org/pkgsrc-changes/2024/01/03/msg290052.html
2024-01-03 11:40:38 +00:00
christos e7a5d8902b PR/57179: Christof Meerwald: Fix bugs in fetch_cache_{get,put}. 2023-12-29 00:55:46 +00:00
christos 3b89067e4a PR/57767: Yoshitaka Tokugawa: When restoring, do so from a readonly copy
of the database and update the read-write copy with the new firewall ids.
Before we did not update the state file so it contained the old firewall ids.
2023-12-23 21:53:54 +00:00
riastradh 3305a62508 libiscsi: Fix types of Time2Wait and Time2Retain in logout decap.
According to https://www.rfc-editor.org/rfc/rfc7143#section-11.15,
these are both 2-byte quantities.  Loading 4-byte quantities and
passing them through ISCSI_NTOHS might have worked by accident on
x86, but it's not gonna fly on big-endian.  (Fortunately sparc64 is
not just big-endian but also strict-alignment so it caught this
problem!)

XXX Is there an upstream for this code?  doc/3RDPARTY doesn't cite
any easily-followed references.

PR port-sparc64/57784

XXX pullup-10
XXX pullup-9
XXX pullup-8
2023-12-19 02:16:07 +00:00
roy 01c391e4d6 Fix import 2023-12-18 16:03:26 +00:00
roy 743878cf46 Sync with dhcpcd-10.0.6 2023-12-18 15:51:28 +00:00
roy c9f4661bc0 Import dhcpcd-10.0.6 with the following changes:
* privsep: Stop proxying stderr to console and fix some detachment issues
 * non-privsep: Fix launcher hangup
 * DHCP6: Allow the invalid interface name - to mean don't assign an address from a delegated prefix
 * DHCP6: Load the configuration for the interface being activated from prefix delegation
2023-12-18 15:49:41 +00:00