]> git.ipfire.org Git - thirdparty/dhcpcd.git/log
thirdparty/dhcpcd.git
40 hours agoprivsep: Reduce fd use free_fd
Roy Marples [Sat, 4 May 2024 11:33:24 +0000 (12:33 +0100)] 
privsep: Reduce fd use

On start close all FD's above stderr.
Close some fd's we don't need in processes spawned from priv.
Ensure we init some FD's to -1 to ensure we don't close stdin.
If DEBUG_FD is defined, we log FD's opened by pid.
Audit process FD usage and document it so I don't forget it.

Fixes #316.

40 hours agoAdd compat support for closefrom cribbed from libbsd
Roy Marples [Sat, 20 Apr 2024 19:06:22 +0000 (20:06 +0100)] 
Add compat support for closefrom cribbed from libbsd

We had compat support in older dhcpcd but we want it faster
when linux supports faster, because, you know, fast.

8 days agodhcpcd: Only drop/release address family specified when given
Roy Marples [Sat, 20 Apr 2024 13:48:10 +0000 (13:48 +0000)] 
dhcpcd: Only drop/release address family specified when given

Fixes #311

8 days agoFix time_offset to be int to match RFC-2132
Colin McInnes [Fri, 26 Apr 2024 18:03:00 +0000 (12:03 -0600)] 
Fix time_offset to be int to match RFC-2132

https://datatracker.ietf.org/doc/html/rfc2132#section-3.4

time_offset (dhcp v4 option 2) should be int32, not uint32, as it can
indicate a time offset east (positive) or west (negative) of zero
meridian.

3 weeks agohooks: stop wpa_supplicant on STOPPED
Roy Marples [Sat, 13 Apr 2024 10:16:58 +0000 (11:16 +0100)] 
hooks: stop wpa_supplicant on STOPPED

Taken from Void Linux package

3 weeks agolinux: modern kernels can create stable private addresses
Roy Marples [Mon, 8 Apr 2024 08:30:03 +0000 (09:30 +0100)] 
linux: modern kernels can create stable private addresses

Just improve the comment.
Closes #301

4 weeks agoRespect IPV6_PREFERRED_ONLY flag on DHS_NONE state
Taoyu Li [Tue, 12 Mar 2024 02:38:28 +0000 (11:38 +0900)] 
Respect IPV6_PREFERRED_ONLY flag on DHS_NONE state

Current IPv6_PREFERRED_ONLY (option 108) handling code is only effective
when current state is DHS_DISCOVER and DHS_REBOOT. However, when we
receive multiple ACKs upon our REQUEST, the first ACK will trigger the
use_v6only code path and dhcp_drop() us into DHS_NONE state, as a result
the option 108 on the second ACK won't be handled correctly and we'll
bind to the lease instead.

This patch fixes the issue by adding DHS_NONE as a state to respect
option 108 as well.

4 weeks agocompat: stub out _rs_forkhandler for compat/arc4random.c
Roy Marples [Tue, 2 Apr 2024 08:55:18 +0000 (09:55 +0100)] 
compat: stub out _rs_forkhandler for compat/arc4random.c

We need to keep the fd open at fork, but we retained the code to
handle a fork.

The original update to chacha avoided this by guarding the call
but left the code alive which produced an unused function warning
on the GitHub Ubuntu runner.
This update fixes that.

5 weeks agoDHCP6: Remove leading space from delegated_dhcp6_prefix
Roy Marples [Thu, 28 Mar 2024 16:50:32 +0000 (16:50 +0000)] 
DHCP6: Remove leading space from delegated_dhcp6_prefix

8 weeks agoadd RFC4191 support (#297)
Daniel Goertzen [Sat, 9 Mar 2024 01:27:57 +0000 (19:27 -0600)] 
add RFC4191 support (#297)

* add RFC4191 support

- handles route information options from RAs.
- refactor `sa_fromprefix()` to expose lower level functionality
- refactor `ipv6nd_rtprefix()` to be usable outside of `struct ra` context

* changes as requested by RM

- mostly minor/cosmetic changes
- functional change: "no longer a default router" warning moved to capture changes from routeinfo options

* simplify routeinfo_find/new

2 months agoDefine the Azure Endpoint and other site-specific options (#299)
Lloyd Parkes [Sun, 25 Feb 2024 12:21:12 +0000 (01:21 +1300)] 
Define the Azure Endpoint and other site-specific options (#299)

Added the azureendpoint site-specific option as an ipaddress
definition to make it easier for Azure VMs using dhcpcd to get their
WireServer endpoint address.

Added binhex definitions for all otherwise undefined site-specific
options so that site-specific hooks can use them.

2 months agoMove dhcp(v4) packet size check earlier (#295)
Petr Menšík [Fri, 16 Feb 2024 16:15:35 +0000 (17:15 +0100)] 
Move dhcp(v4) packet size check earlier (#295)

dhcp_handlebootp handled zero sized packets correctly, but
dhcp_redirect_dhcp did not have such protection. Move size check before
both of them. Size when called from dhcp_packet is checked by
is_packet_udp_bootp call. Only dhcp_recvmsg needs earlier checking to be
added.

Fixes #283

4 months agoDHCP: DECLINE address on ARP defend failure
Roy Marples [Sun, 24 Dec 2023 12:07:25 +0000 (12:07 +0000)] 
DHCP: DECLINE address on ARP defend failure

Also, drop the lease.
This should get us a new address from the DHCP server when we
re-enter DISCOVER to avoid looping on the same address and fail
again.

4 months agodhcpcd: Add support for arp persist defence (#273)
pradeep-brightsign [Thu, 21 Dec 2023 10:26:09 +0000 (10:26 +0000)] 
dhcpcd: Add support for arp persist defence (#273)

RFC 5227 recommends 3 ways to deal with address conflict detection.
a) Stop everything.
b) Defend and then stop on fail - this is what dhcpcd currently does.
c) Notify and carry on.

The current change implements the option c. A new option arp_persistdefence
has been added and when this is enabled, the a defence is attempted upon a
conflict and when that fails, an error is logged on every other conflict
within the DEFEND_INTERVAL and the current IP address is retained.

Fixes #272

4 months agoRelease dhcpcd-10.0.6 v10.0.6
Roy Marples [Mon, 18 Dec 2023 15:39:51 +0000 (15:39 +0000)] 
Release dhcpcd-10.0.6

4 months agoDHCP6: For Prefix Delegation, the - interface means no assignment
Roy Marples [Mon, 18 Dec 2023 12:22:13 +0000 (12:22 +0000)] 
DHCP6: For Prefix Delegation, the - interface means no assignment

- is an invalid interface name.
So we take this to mean don't assign the Delegated Prefix to
any interfaces.
The reject route for the Delegated Prefix is still installed.

Fixes #270

4 months agoDHCP6: Improve logging when changing IA type
Roy Marples [Mon, 18 Dec 2023 12:15:10 +0000 (12:15 +0000)] 
DHCP6: Improve logging when changing IA type

Changing from PD to IA or IA to PD can result in a diagnostic
when there is no address to confirm AND we haven't loaded
a lease.
This improves the check and no more Success errors should
be reported.

4 months agoFully configure an interface when being activated.
Roy Marples [Sun, 10 Dec 2023 07:34:19 +0000 (07:34 +0000)] 
Fully configure an interface when being activated.

We need the full configuration - for example dhcpcd.conf
might have environment options for the hooks for the interface
being activated.

Because we now guard against starting protocols with IF_ACTIVE_USER
this is safe.

Fixes #257.

4 months agoFix year
Roy Marples [Tue, 12 Dec 2023 07:13:29 +0000 (07:13 +0000)] 
Fix year

4 months agoDocument that limiting address protocol can affect signalling dhcpcd
Roy Marples [Sun, 10 Dec 2023 08:27:30 +0000 (08:27 +0000)] 
Document that limiting address protocol can affect signalling dhcpcd

Fixes #264

5 months agoFix an unused var warning for capsicum for prior
Roy Marples [Mon, 13 Nov 2023 16:05:04 +0000 (16:05 +0000)] 
Fix an unused var warning for capsicum for prior

5 months agoFix privsep builds for prior.
Roy Marples [Mon, 13 Nov 2023 15:54:50 +0000 (15:54 +0000)] 
Fix privsep builds for prior.

5 months agodhcpcd: Remove stdio callback and detach on daemonise
Roy Marples [Mon, 13 Nov 2023 10:29:58 +0000 (10:29 +0000)] 
dhcpcd: Remove stdio callback and detach on daemonise

For some reason, the stdio callback is extremely flaky on
*some* Linux based distributions making it very hard to debug some
things.
Removing it is fine because we now enforce that we have file descriptors
for stdin, stdout and stdrr on launch and dup them to /dev/null on daemonise.

It's also interesting to see behavioural differences between
some socketpair implementations that emit a HANGUP and some don't.

As such, we now close the fork socket on daemonise once more AND
in the fork_cb depending on if we hangup or read zero first.

Fixes #262

5 months agocontrol: Abort control recv path on hangup
Roy Marples [Mon, 13 Nov 2023 10:24:15 +0000 (10:24 +0000)] 
control: Abort control recv path on hangup

This fixes a crash when we try and re-use it in another function.

5 months agodhcpcd: Detach from launcher before stopping root process
Roy Marples [Sun, 12 Nov 2023 12:16:53 +0000 (12:16 +0000)] 
dhcpcd: Detach from launcher before stopping root process

This fixes non privsep builds where the launcher reports dhcpcd
hungup. Unsure why this happens, but it should not be a problem.

While here, shutdown has no effect on non STREAM sockets and
remove the silly error logging in fork_cb that we read an
error. We already printed the error so this makes no sense.

Hopefully fixes #262.

5 months agocontrol: Fix hangup for non privsep builds
Roy Marples [Sun, 12 Nov 2023 11:30:01 +0000 (11:30 +0000)] 
control: Fix hangup for non privsep builds

Fix related to #262.

5 months agoRelease dhcpcd-10.0.5 v10.0.5
Roy Marples [Fri, 10 Nov 2023 14:25:12 +0000 (14:25 +0000)] 
Release dhcpcd-10.0.5

5 months agoprivsep: Note that unveil(2) is not needed
Roy Marples [Fri, 10 Nov 2023 12:02:19 +0000 (12:02 +0000)] 
privsep: Note that unveil(2) is not needed

As we are in a chroot.
https://www.mail-archive.com/misc@openbsd.org/msg171664.html

5 months agoprivsep: Allow dup3 on Linux
Roy Marples [Thu, 9 Nov 2023 09:21:20 +0000 (09:21 +0000)] 
privsep: Allow dup3 on Linux

It seems some libc will really call dup3 rather than dup2.
Another fix for #260.

5 months agodev: Don't fail to start if we cannot open the dev plugin path
Roy Marples [Wed, 8 Nov 2023 14:27:36 +0000 (14:27 +0000)] 
dev: Don't fail to start if we cannot open the dev plugin path

We accidently returned stdin fd in this case - return -1 instead.

5 months agodhcpcd: Close fork_fd on hangup
Roy Marples [Wed, 8 Nov 2023 11:09:52 +0000 (11:09 +0000)] 
dhcpcd: Close fork_fd on hangup

Closing it early results in zero length reads in some situations.
Logging that we forked via the launcher process also make more sense
and allows us to use log* functions.

While here, handle error condtions better by forcing a return
rather than handling an invalid state.

Fixes #260.

5 months agoconfigure: guard config.h with #ifdef CONFIG_H
Roy Marples [Wed, 8 Nov 2023 10:10:35 +0000 (10:10 +0000)] 
configure: guard config.h with #ifdef CONFIG_H

Rename CONFIG_H guard in defs.h to DEFS_H
This avoids a redeclaration issue on DragonFly.

6 months agoIPv4LL: Don't start if already started
Roy Marples [Mon, 23 Oct 2023 15:25:13 +0000 (15:25 +0000)] 
IPv4LL: Don't start if already started

It's just pointless noise.
A follow-on fix for #255.

6 months agoDHCP: re-enter DISCOVER phase if server doesn't reply to our REQUEST
Roy Marples [Mon, 23 Oct 2023 15:24:00 +0000 (15:24 +0000)] 
DHCP: re-enter DISCOVER phase if server doesn't reply to our REQUEST

Use the reboot timeout as per the initial DISCOVER timeout.

Fixes #255

6 months agoExpose memset_s on FreeBSD
Roy Marples [Mon, 23 Oct 2023 14:39:20 +0000 (15:39 +0100)] 
Expose memset_s on FreeBSD

6 months agoFix tests or #252.
Roy Marples [Mon, 23 Oct 2023 14:31:02 +0000 (15:31 +0100)] 
Fix tests or #252.

6 months agocompat: test for memset_explicit, explicit_bzero and memset_s
Roy Marples [Mon, 23 Oct 2023 14:26:16 +0000 (15:26 +0100)] 
compat: test for memset_explicit, explicit_bzero and memset_s

These won't be optimised away by the compiler and our arc4random
compat function should use them *if* available.
If none are then a warning will be emitted to say it's potentially insecure.

Hopefully only uclibc users will see this message.

Fixes #252.

6 months agoImprove comment about capturing script output.
Roy Marples [Fri, 20 Oct 2023 06:53:20 +0000 (06:53 +0000)] 
Improve comment about capturing script output.

6 months agoRelease dhcpcd-10.0.4 v10.0.4
Roy Marples [Thu, 19 Oct 2023 11:15:31 +0000 (12:15 +0100)] 
Release dhcpcd-10.0.4

6 months agodhcpcd: Improve script status handling
Roy Marples [Thu, 19 Oct 2023 11:06:22 +0000 (12:06 +0100)] 
dhcpcd: Improve script status handling

6 months agoprivsep: Allow dup2 with SECCOMP
Roy Marples [Thu, 19 Oct 2023 10:34:30 +0000 (11:34 +0100)] 
privsep: Allow dup2 with SECCOMP

6 months agoprivsep: Notify processes when dhcpcd has daemonised
Roy Marples [Thu, 19 Oct 2023 10:11:05 +0000 (11:11 +0100)] 
privsep: Notify processes when dhcpcd has daemonised

This allows us to dup stdout and stderr onto stdin which is
guaranteed to be dupped to /dev/null.
This in turn avoids SIGPIPE when the privileged proccess launches
the script and it wants to write to stdout/stderr or stupidly
read from stdin.

6 months agocompat/arc4random.c: use memset instead of explicit_bzero (#252)
Fabrice Fontaine [Mon, 16 Oct 2023 17:03:41 +0000 (19:03 +0200)] 
compat/arc4random.c: use memset instead of explicit_bzero (#252)

Use memset instead of explicit_bzero to avoid the following build
failure with uclibc-ng since version 10.0.3 and
https://github.com/NetworkConfiguration/dhcpcd/commit/837d09e34c487edaa92aa2ae71a630d84c927f8e:

/home/fabrice/buildroot/output/host/lib/gcc/arm-buildroot-linux-uclibcgnueabi/12.3.0/../../../../arm-buildroot-linux-uclibcgnueabi/bin/ld: ../compat/arc4random.o: in function `_rs_stir_if_needed':
arc4random.c:(.text+0x8cc): undefined reference to `explicit_bzero'

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
6 months agoprivsep: allow __NR_clock_gettime32 syscall (#254)
Oleg Lyovin [Mon, 16 Oct 2023 16:59:00 +0000 (19:59 +0300)] 
privsep: allow __NR_clock_gettime32 syscall (#254)

musl libc doesn't have __NR_clock_gettime definition,
but has __NR_clock_gettime32. clock_gettime implementation
fallbacks to 32-bit version if 64-bit is not supported by the kernel.

Signed-off-by: Oleg Lyovin <ovlevin@sberdevices.ru>
6 months agoprivsep: allow __NR_mmap2 syscall (#253)
Oleg Lyovin [Thu, 12 Oct 2023 16:47:05 +0000 (19:47 +0300)] 
privsep: allow __NR_mmap2 syscall (#253)

The issue occured while compiled by musl toolchain:

    mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = ?
    +++ killed by SIGSYS +++

This patchs allows seccomp to make __NR_mmap2 syscall.

Signed-off-by: Oleg Lyovin <ovlevin@sberdevices.ru>
6 months agodhcpcd: freopen of stdin/stdout may change the fd
Roy Marples [Mon, 9 Oct 2023 13:03:37 +0000 (14:03 +0100)] 
dhcpcd: freopen of stdin/stdout may change the fd

So use dup2 instead.

6 months agoprivsep: Log script exit status.
Roy Marples [Mon, 9 Oct 2023 11:20:08 +0000 (12:20 +0100)] 
privsep: Log script exit status.

6 months agoRelease dhcpcd-10.0.3 v10.0.3
Roy Marples [Fri, 6 Oct 2023 08:27:53 +0000 (09:27 +0100)] 
Release dhcpcd-10.0.3

7 months agoDHCP6: Set all requested addrs as not stale when starting discovery
Roy Marples [Wed, 4 Oct 2023 16:38:08 +0000 (17:38 +0100)] 
DHCP6: Set all requested addrs as not stale when starting discovery

Hopefully fixes #249.

7 months agodoc: mention using `--with-openssl`
Roy Marples [Wed, 4 Oct 2023 12:47:57 +0000 (13:47 +0100)] 
doc: mention using `--with-openssl`

Fixes #225

7 months agoIPv6: Be explicit that lifetime zero means no longer a default router
Roy Marples [Wed, 4 Oct 2023 12:38:44 +0000 (13:38 +0100)] 
IPv6: Be explicit that lifetime zero means no longer a default router

Fixes #244

7 months agooptions: introduce the uri option as opposed to a string
Roy Marples [Wed, 4 Oct 2023 12:03:21 +0000 (13:03 +0100)] 
options: introduce the uri option as opposed to a string

Currently we don't attempt to validate a uri given, aside from
not allowing any space characters within.

If the option is `array uri` then the first two bytes are the
length of the uri in network order and the rest is a uri element.
The uri's are space separated for the variable because space is not
allowed within the uri.

This allows us to implement RFC 8572, Secure Zero Touch Provisioning.

7 months agooptions: andsf6 is DHCPv6, not DHCP
Roy Marples [Mon, 2 Oct 2023 10:01:39 +0000 (11:01 +0100)] 
options: andsf6 is DHCPv6, not DHCP

7 months agoCast a compile warning away
Roy Marples [Mon, 2 Oct 2023 09:54:36 +0000 (10:54 +0100)] 
Cast a compile warning away

7 months agocompat: use OpenSSL RAND_priv_bytes() for entropy (#248)
Tobias Heider [Fri, 29 Sep 2023 07:57:41 +0000 (09:57 +0200)] 
compat: use OpenSSL RAND_priv_bytes() for entropy (#248)

* compat: use OpenSSL RAND_priv_bytes() for entropy

Use OpenSSL random number generator to seed arc4random() if available,
if it fails fall back to /dev/urandom.

* tests: link eloop-bench against LDADD lib

arc4random might depend on libcrypto so we need to link it.

7 months agoSend correct amount of used buffer for prefix exclude option (#250)
Christian Tomahogh [Thu, 28 Sep 2023 23:04:37 +0000 (01:04 +0200)] 
Send correct amount of used buffer for prefix exclude option (#250)

The payload of the prefix exclude option was correctly created
but the amount of bytes to send in the DHCPv6 request was
always set to 0 which resulted in an invalid prefix exclude option

This patch fixes this behavior by calculating the correct amount
of bytes to send.

7 months agoGuard against handling many SIGTERM/SIGINT.
Roy Marples [Mon, 25 Sep 2023 09:34:12 +0000 (10:34 +0100)] 
Guard against handling many SIGTERM/SIGINT.

Privsep has a mini-eloop for reading data from other processes.
This mini-eloop processes signals as well so we can reap children.
During teardown we don't want to process SIGTERM or SIGINT again,
as that could trigger memory issues.

Hopefully fixes #247.

7 months agoUse a local variable instead of the optind (#86)
Petr Gotthard [Mon, 25 Sep 2023 09:00:27 +0000 (11:00 +0200)] 
Use a local variable instead of the optind (#86)

The optind get overwritten by reload_config(), so the reconf_reboot()
used a wrong argument count.

Signed-off-by: Petr Gotthard <petr.gotthard@centrum.cz>
7 months agoSupport libcrypto for hmac and sha256 (#223)
Tobias Heider [Mon, 25 Sep 2023 08:49:00 +0000 (10:49 +0200)] 
Support libcrypto for hmac and sha256 (#223)

* compat: Add OpenSSL libcrypto compatibility layer

Detect libcrypto in configure script.  Only fall back
to using libcrypto when /usr libs are allowed and no
other compatible implementation is available or when
--with-openssl is passed explicitly.
Make sure libcrypto and libmd are never linked at the
same time.

Add OpenSSL based SHA256 and HMAC compat shims in
compat/crypt_openssl. Depeding on version and build flags,
libcrypto ships with a compatible SHA256 API in
"openssl/sha.h".  OpenSSL 3 has deprecated the SHA API,
so if it is not detected we fall back to an EVP_DIGEST
based version.
Because the API might still be in use in OpenSSL internally,
the compatibility wrappers have a dhcpcd_ prefix to avoid
symbol conflicts.

* Add sha256 tests based on the existing hmac-md5 tests.

7 months agoFix some grammar in README.md
Ido Rosen [Tue, 12 Sep 2023 05:16:26 +0000 (22:16 -0700)] 
Fix some grammar in README.md

7 months agoClarify persistent wording to address confusion.
Ido Rosen [Sat, 9 Sep 2023 06:41:45 +0000 (23:41 -0700)] 
Clarify persistent wording to address confusion.

When persistent is not specified, dhcpcd de-configures the interface at exit.
However, the default dhcpcd.conf example provided enables the option.
See https://github.com/NetworkConfiguration/dhcpcd/discussions/140

7 months agoIgnore VSCode .vscode and macOS .DS_Store files
Ido Rosen [Sat, 9 Sep 2023 06:02:35 +0000 (23:02 -0700)] 
Ignore VSCode .vscode and macOS .DS_Store files

8 months agocompat: update arc4random() to newer chacha20 based version from OpenBSD (#227)
Tobias Heider [Mon, 4 Sep 2023 13:53:44 +0000 (15:53 +0200)] 
compat: update arc4random() to newer chacha20 based version from OpenBSD (#227)

* compat: update arc4random() to newer chacha20 based version from OpenBSD

* arc4random: keep fd after first call to arc4random

privsep + chroot doesn't allow us to reopen /dev/urandom in
an unpriviledged process so we open the fd once and then
hold onto it.

8 months agoci: execute tests after successful build (#243)
Tobias Heider [Mon, 4 Sep 2023 13:53:10 +0000 (15:53 +0200)] 
ci: execute tests after successful build (#243)

8 months agolinux: fix wireless roaming
Roy Marples [Fri, 21 Jul 2023 14:41:03 +0000 (15:41 +0100)] 
linux: fix wireless roaming

Fixes #228.

8 months agoprivsep: Fix a FD leak when processes exit
Roy Marples [Tue, 22 Aug 2023 12:59:23 +0000 (12:59 +0000)] 
privsep: Fix a FD leak when processes exit

Add commentary to say they are closed on receipt of SIGCHLD.

8 months agoprivsep: fix strlcpy overflow in psp_ifname (#239)
Tobias Heider [Tue, 15 Aug 2023 16:06:48 +0000 (18:06 +0200)] 
privsep: fix strlcpy overflow in psp_ifname (#239)

When running our Ubuntu tests with libc6 and strlcpy overflow checks
enabled we found that the wrong size is passed to strlcpy resulting
in a crash because of an overflow.

8 months agodhcpcd: Fix off-by-one overflow when read() writes full BUFSIZ (#236)
Tobias Heider [Sat, 12 Aug 2023 19:59:21 +0000 (21:59 +0200)] 
dhcpcd: Fix off-by-one overflow when read() writes full BUFSIZ (#236)

9 months agoAdd CI builds for Ubuntu, OpenBSD, FreeBSD and NetBSD (#229)
Tobias Heider [Fri, 4 Aug 2023 17:00:26 +0000 (19:00 +0200)] 
Add CI builds for Ubuntu, OpenBSD, FreeBSD and NetBSD (#229)

9 months agoDo not crash on dhcpcd test run (#231)
Petr Menšík [Fri, 4 Aug 2023 16:45:25 +0000 (18:45 +0200)] 
Do not crash on dhcpcd test run (#231)

Check if state->bpf is allocated before attempting to write there.

9 months agoFix --enable-secomp
Roy Marples [Thu, 20 Jul 2023 09:48:37 +0000 (10:48 +0100)] 
Fix --enable-secomp

9 months agoprivsep: Allow diabling of SECCOMP on Linux
Roy Marples [Thu, 20 Jul 2023 09:32:26 +0000 (10:32 +0100)] 
privsep: Allow diabling of SECCOMP on Linux

This allows a POSIX resource limited sandbox to be used at least
with privilege separation, which is better than just disabling
privilege separation entirely for when SECCOMP stops working due to
libc/kernel changes.

9 months agoRelease dhcpcd-10.0.2 v10.0.2
Roy Marples [Wed, 19 Jul 2023 13:34:04 +0000 (14:34 +0100)] 
Release dhcpcd-10.0.2

9 months agoFix compile warning with rb.c sync
Roy Marples [Wed, 19 Jul 2023 12:46:08 +0000 (13:46 +0100)] 
Fix compile warning with rb.c sync

9 months agocompat sync (#226)
Tobias Heider [Wed, 19 Jul 2023 12:29:48 +0000 (14:29 +0200)] 
compat sync (#226)

* compat: sync pidfile.c with netbsd v1.16

- fix typos in word "otherwise".
- s/sucess/success/ in comment.

* compat: sync rb.c with netbsd v1.16

- fix typos in word "successfully", mainly s/succesfully/successfully/.
- toolify

* compat: sync strlcpy.c with openbsd v1.16

- I am retiring my old email address;  replace it with my OpenBSD one.

* compat: sync arc4random_uniform.c with openbsd v1.3

9 months agolinux: consider IFF_LOWER_UP and !IFF_DORMANT for LINK_UP
Roy Marples [Mon, 17 Jul 2023 22:48:18 +0000 (23:48 +0100)] 
linux: consider IFF_LOWER_UP and !IFF_DORMANT for LINK_UP

9 months agoprivsep: Send only what we have put in the buffer to script env
Roy Marples [Wed, 19 Jul 2023 11:42:49 +0000 (12:42 +0100)] 
privsep: Send only what we have put in the buffer to script env

Rather then sending the whole buffer size.
If there is an error writing the last option, it may not be
NUL terminated correctly causing an assert.
Even so, we should not write the failed option to the environment
either as it would be a false positive for an empty option.

10 months agocommon: Allow hwaddr_ntoa to print an empty string
Roy Marples [Mon, 3 Jul 2023 12:11:05 +0000 (13:11 +0100)] 
common: Allow hwaddr_ntoa to print an empty string

This fixes #218 where we get a zero hardware address length in
an ARP packet or a length that overflows the string buffer.

10 months agocommon: Improve valid_domain and check correct return
Roy Marples [Mon, 3 Jul 2023 11:52:19 +0000 (12:52 +0100)] 
common: Improve valid_domain and check correct return

Improvement for #218.

10 months agoprivsep: Only unlink control sockets if we created them
Roy Marples [Sun, 2 Jul 2023 00:28:34 +0000 (01:28 +0100)] 
privsep: Only unlink control sockets if we created them

Fixes a segfault when trying to start dhcpcd as a non root user.
Closes #219 without an explicit test for being the root user.

10 months agorisc-v fix vendor error (#213)
Xea [Mon, 19 Jun 2023 16:20:29 +0000 (16:20 +0000)] 
risc-v fix vendor error (#213)

* added mproc for risc-v

* make mproc arches alphabetically sorted again

10 months agoAdditional DHCP options (#214)
Rob Gill [Mon, 19 Jun 2023 16:19:21 +0000 (02:19 +1000)] 
Additional DHCP options (#214)

DDoS Open Threat Signaling (DOTS) Agent Discovery, RFC8973
DHCP option 147,147; DHCPv6 option 141,142

Captive Portal, RFC8910
DHCP option 114; DHCVv6 option 104

update to attribution for MUD URL - RFC8520

Signed-off-by: Rob Gill <rrobgill@protonmail.com>
10 months agoprivsep: Check if we have a root process before sending it stuff
Roy Marples [Mon, 19 Jun 2023 16:04:03 +0000 (17:04 +0100)] 
privsep: Check if we have a root process before sending it stuff

Fixes #210

11 months agoLinux: Improve learning IPv6 address flags
Roy Marples [Tue, 23 May 2023 21:14:57 +0000 (22:14 +0100)] 
Linux: Improve learning IPv6 address flags

Rather than matching addresses during netlink message processing,
extract the local, address and flag parts.
Once done, then match local and address to the address we are
looking for and if equal apply the flags.

Fixes #201 and maybe #149.

11 months agochore: Link to GitHub for the commit log and release announcements (#203)
frazar [Thu, 18 May 2023 21:09:53 +0000 (23:09 +0200)] 
chore: Link to GitHub for the commit log and release announcements (#203)

Fixes one of the two rotten links reported in #202

11 months agoLinux: fix disabling of kernel RA autoconf
Roy Marples [Thu, 18 May 2023 11:27:10 +0000 (12:27 +0100)] 
Linux: fix disabling of kernel RA autoconf

Well, that was a big whups leaving it turned on.
Thanks to Klaus Frank for the spot.
Fixes #176.

11 months agochore: Fix generation of dependency file
Roy Marples [Thu, 18 May 2023 11:15:49 +0000 (12:15 +0100)] 
chore: Fix generation of dependency file

11 months agobuild: Remove suffix prerequisite rules
Roy Marples [Thu, 18 May 2023 10:40:55 +0000 (11:40 +0100)] 
build: Remove suffix prerequisite rules

Just to silence GNU make.
This makes development slightly harder on BSDs, just have to
do a `make clean` when changing configuration options.

Fixes #197.

11 months agochore: Document building a bit more
Roy Marples [Thu, 18 May 2023 10:40:19 +0000 (11:40 +0100)] 
chore: Document building a bit more

And the fact that configure is not GNU.

11 months agooptions: Allow waitip to take space separated address families
Roy Marples [Thu, 18 May 2023 09:41:56 +0000 (10:41 +0100)] 
options: Allow waitip to take space separated address families

This is easier than writing confusing documentation to clarify.
Fixes #206.

11 months agodhcpcd: Fix waitip address family
Roy Marples [Wed, 17 May 2023 16:52:19 +0000 (17:52 +0100)] 
dhcpcd: Fix waitip address family

Minor fix for #206.

11 months agodhcpcd: support HANGUP of stderr cb
Roy Marples [Wed, 17 May 2023 16:39:27 +0000 (17:39 +0100)] 
dhcpcd: support HANGUP of stderr cb

11 months agocontrol: Ingore control not connected errors too
Roy Marples [Wed, 17 May 2023 09:52:23 +0000 (10:52 +0100)] 
control: Ingore control not connected errors too

For FreeBSD.
Another one for #205.

11 months agocontrol: ignore EPIPE errors on write
Roy Marples [Wed, 17 May 2023 09:45:34 +0000 (09:45 +0000)] 
control: ignore EPIPE errors on write

Other end has shutdown.

11 months agocontrol: deal with hangup better
Roy Marples [Wed, 17 May 2023 02:08:45 +0000 (03:08 +0100)] 
control: deal with hangup better

Maybe fix #205

11 months agoprivsep: Allow zero length messages through
Roy Marples [Tue, 16 May 2023 16:16:26 +0000 (17:16 +0100)] 
privsep: Allow zero length messages through

They should be handled gracefully without privsep anyway.
Fix for #179.

11 months agoDHCP: Don't enforce the message came port 67
Roy Marples [Mon, 8 May 2023 14:52:11 +0000 (15:52 +0100)] 
DHCP: Don't enforce the message came port 67

RFC2131 and updates make no mention of what the source port
should or must be.

Update for #179.

12 months agoBSD: Fix non INET6 builds
J. Hannken-Illjes [Thu, 27 Apr 2023 11:43:33 +0000 (12:43 +0100)] 
BSD: Fix non INET6 builds

12 months agoOpenBSD: Ensure if_afreq is correct initialised.
Roy Marples [Wed, 26 Apr 2023 13:29:46 +0000 (14:29 +0100)] 
OpenBSD: Ensure if_afreq is correct initialised.

12 months agoBSD: When we get RTM_NEWADDR the interface must have IFF_UP.
Roy Marples [Wed, 26 Apr 2023 13:15:07 +0000 (14:15 +0100)] 
BSD: When we get RTM_NEWADDR the interface must have IFF_UP.

This is apparently historic behaviour.
It's not always mirrored in RTM_IFINFO either so we need to
replicate the behaviour if we had got it earlier.

This fixes dhcpcd requiring at least something to set the interface
up before starting on OpenBSD.
Other BSD are less impacted because it's a lot harder to get into
this state as we have more control over setting the IPv6 LL address.