diff options
author | Tom Gundersen <teg@jklm.no> | 2014-03-21 18:36:32 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-03-21 18:36:32 +0100 |
commit | 4644fee04fb515787bcfbba53b3cabe58c81d317 (patch) | |
tree | 281ec9f90238811bf30460db1ae54b734041718f /src/libsystemd-network/sd-ipv4ll.c | |
parent | 9765ce69e15fd294db9553777b621515fa57f2c6 (diff) |
sd-dhcp-client/sd-ipv4ll: allow mac address to be updated at any time
If necessary, restart the clients to deal with a changing mac address
at runtime. This will solve the problem of starting clients on bridges
before they have received their final MAC address.
Diffstat (limited to 'src/libsystemd-network/sd-ipv4ll.c')
-rw-r--r-- | src/libsystemd-network/sd-ipv4ll.c | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/libsystemd-network/sd-ipv4ll.c b/src/libsystemd-network/sd-ipv4ll.c index 689dce9adf..ad8b4e3b43 100644 --- a/src/libsystemd-network/sd-ipv4ll.c +++ b/src/libsystemd-network/sd-ipv4ll.c @@ -375,10 +375,25 @@ int sd_ipv4ll_set_index(sd_ipv4ll *ll, int interface_index) { } int sd_ipv4ll_set_mac(sd_ipv4ll *ll, const struct ether_addr *addr) { + bool need_restart = false; + assert_return(ll, -EINVAL); - assert_return(ll->state == IPV4LL_STATE_INIT, -EBUSY); + assert_return(addr, -EINVAL); + + if (memcmp(&ll->mac_addr, addr, ETH_ALEN) == 0) + return 0; + + if (ll->state != IPV4LL_STATE_INIT) { + log_ipv4ll(ll, "Changing MAC address on running IPv4LL " + "client, restarting"); + sd_ipv4ll_stop(ll); + need_restart = true; + } + + memcpy(&ll->mac_addr, addr, ETH_ALEN); - memcpy(&ll->mac_addr.ether_addr_octet, addr, ETH_ALEN); + if (need_restart) + sd_ipv4ll_start(ll); return 0; } |