2012-02-20 02:17:53 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
inherit (pkgs) dhcpcd;
|
|
|
|
|
2013-10-29 17:34:43 +01:00
|
|
|
# Don't start dhcpcd on explicitly configured interfaces or on
|
2012-02-20 02:17:53 +01:00
|
|
|
# interfaces that are part of a bridge.
|
|
|
|
ignoredInterfaces =
|
2012-11-02 17:08:11 +01:00
|
|
|
map (i: i.name) (filter (i: i.ipAddress != null) (attrValues config.networking.interfaces))
|
2012-05-08 13:46:01 +02:00
|
|
|
++ concatLists (attrValues (mapAttrs (n: v: v.interfaces) config.networking.bridges))
|
2013-12-30 10:14:41 +01:00
|
|
|
++ concatLists (attrValues (mapAttrs (n: v: v.interfaces) config.networking.bonds))
|
2012-05-08 13:46:01 +02:00
|
|
|
++ config.networking.dhcpcd.denyInterfaces;
|
2012-02-20 02:17:53 +01:00
|
|
|
|
2012-02-20 14:13:29 +01:00
|
|
|
# Config file adapted from the one that ships with dhcpcd.
|
|
|
|
dhcpcdConf = pkgs.writeText "dhcpcd.conf"
|
|
|
|
''
|
|
|
|
# Inform the DHCP server of our hostname for DDNS.
|
|
|
|
hostname
|
|
|
|
|
|
|
|
# A list of options to request from the DHCP server.
|
|
|
|
option domain_name_servers, domain_name, domain_search, host_name
|
|
|
|
option classless_static_routes, ntp_servers, interface_mtu
|
|
|
|
|
|
|
|
# A ServerID is required by RFC2131.
|
2012-12-05 22:52:24 +01:00
|
|
|
# Commented out because of many non-compliant DHCP servers in the wild :(
|
|
|
|
#require dhcp_server_identifier
|
2012-02-20 14:13:29 +01:00
|
|
|
|
|
|
|
# A hook script is provided to lookup the hostname if not set by
|
|
|
|
# the DHCP server, but it should not be run by default.
|
|
|
|
nohook lookup-hostname
|
|
|
|
|
|
|
|
# Ignore peth* devices; on Xen, they're renamed physical
|
|
|
|
# Ethernet cards used for bridging. Likewise for vif* and tap*
|
2012-04-30 19:46:11 +02:00
|
|
|
# (Xen) and virbr* and vnet* (libvirt).
|
|
|
|
denyinterfaces ${toString ignoredInterfaces} peth* vif* tap* tun* virbr* vnet* vboxnet*
|
2013-07-22 14:16:13 +02:00
|
|
|
|
|
|
|
${config.networking.dhcpcd.extraConfig}
|
2012-02-20 14:13:29 +01:00
|
|
|
'';
|
|
|
|
|
2012-02-20 16:19:46 +01:00
|
|
|
# Hook for emitting ip-up/ip-down events.
|
|
|
|
exitHook = pkgs.writeText "dhcpcd.exit-hook"
|
|
|
|
''
|
|
|
|
#exec >> /var/log/dhcpcd 2>&1
|
|
|
|
#set -x
|
2012-04-01 12:54:15 +02:00
|
|
|
|
|
|
|
params="IFACE=$interface REASON=$reason"
|
|
|
|
|
|
|
|
# only works when interface is wireless and wpa_supplicant has a control socket
|
|
|
|
# but we allow it to fail silently
|
2012-04-10 14:07:30 +02:00
|
|
|
${optionalString config.networking.wireless.enable ''
|
|
|
|
params+=" $(${pkgs.wpa_supplicant}/sbin/wpa_cli -i$interface status 2>/dev/null | grep ssid | sed 's|^b|B|;s|ssid|SSID|' | xargs)"
|
|
|
|
''}
|
2012-04-01 12:54:15 +02:00
|
|
|
|
2012-02-20 16:19:46 +01:00
|
|
|
if [ "$reason" = BOUND -o "$reason" = REBOOT ]; then
|
2012-07-21 00:24:55 +02:00
|
|
|
# Restart ntpd. We need to restart it to make sure that it
|
|
|
|
# will actually do something: if ntpd cannot resolve the
|
|
|
|
# server hostnames in its config file, then it will never do
|
2012-02-20 16:19:46 +01:00
|
|
|
# anything ever again ("couldn't resolve ..., giving up on
|
|
|
|
# it"), so we silently lose time synchronisation.
|
2013-01-16 13:17:57 +01:00
|
|
|
${config.systemd.package}/bin/systemctl try-restart ntpd.service
|
2012-02-20 16:19:46 +01:00
|
|
|
|
2013-01-16 13:17:57 +01:00
|
|
|
${config.systemd.package}/bin/systemctl start ip-up.target
|
2012-02-20 16:19:46 +01:00
|
|
|
fi
|
|
|
|
|
2012-07-21 00:24:55 +02:00
|
|
|
#if [ "$reason" = EXPIRE -o "$reason" = RELEASE -o "$reason" = NOCARRIER ] ; then
|
2013-01-16 13:17:57 +01:00
|
|
|
# ${config.systemd.package}/bin/systemctl start ip-down.target
|
2012-07-21 00:24:55 +02:00
|
|
|
#fi
|
2012-02-20 16:19:46 +01:00
|
|
|
'';
|
|
|
|
|
2012-02-20 02:17:53 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
2012-05-08 13:46:01 +02:00
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
networking.dhcpcd.denyInterfaces = mkOption {
|
|
|
|
default = [];
|
|
|
|
description = ''
|
2013-08-10 23:07:13 +02:00
|
|
|
Disable the DHCP client for any interface whose name matches
|
2012-05-08 13:46:01 +02:00
|
|
|
any of the shell glob patterns in this list. The purpose of
|
2013-08-10 23:07:13 +02:00
|
|
|
this option is to blacklist virtual interfaces such as those
|
2012-05-08 13:46:01 +02:00
|
|
|
created by Xen, libvirt, LXC, etc.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2013-07-22 14:16:13 +02:00
|
|
|
networking.dhcpcd.extraConfig = mkOption {
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Literal string to append to the config file generated for dhcpcd.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2012-05-08 13:46:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-02-20 02:17:53 +01:00
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf config.networking.useDHCP {
|
|
|
|
|
2013-01-16 12:33:18 +01:00
|
|
|
systemd.services.dhcpcd =
|
2012-08-15 21:38:52 +02:00
|
|
|
{ description = "DHCP Client";
|
|
|
|
|
2012-10-11 23:57:54 +02:00
|
|
|
wantedBy = [ "network.target" ];
|
2012-02-20 02:17:53 +01:00
|
|
|
|
2013-01-05 01:05:25 +01:00
|
|
|
# Stopping dhcpcd during a reconfiguration is undesirable
|
|
|
|
# because it brings down the network interfaces configured by
|
|
|
|
# dhcpcd. So do a "systemctl restart" instead.
|
|
|
|
stopIfChanged = false;
|
|
|
|
|
2012-02-20 02:17:53 +01:00
|
|
|
path = [ dhcpcd pkgs.nettools pkgs.openresolv ];
|
|
|
|
|
2013-11-26 18:17:12 +01:00
|
|
|
unitConfig.ConditionCapability = "CAP_NET_ADMIN";
|
|
|
|
|
2012-08-17 17:01:07 +02:00
|
|
|
serviceConfig =
|
2012-10-01 22:27:42 +02:00
|
|
|
{ Type = "forking";
|
|
|
|
PIDFile = "/run/dhcpcd.pid";
|
2012-11-02 14:20:05 +01:00
|
|
|
ExecStart = "@${dhcpcd}/sbin/dhcpcd dhcpcd --config ${dhcpcdConf}";
|
2012-10-01 22:27:42 +02:00
|
|
|
ExecReload = "${dhcpcd}/sbin/dhcpcd --rebind";
|
2012-10-31 14:24:22 +01:00
|
|
|
StandardError = "null";
|
2012-11-02 17:08:11 +01:00
|
|
|
Restart = "always";
|
2012-10-01 22:27:42 +02:00
|
|
|
};
|
2012-02-20 02:17:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
environment.systemPackages = [ dhcpcd ];
|
|
|
|
|
2012-02-20 16:19:46 +01:00
|
|
|
environment.etc =
|
|
|
|
[ { source = exitHook;
|
|
|
|
target = "dhcpcd.exit-hook";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2012-02-20 02:17:53 +01:00
|
|
|
powerManagement.resumeCommands =
|
|
|
|
''
|
2012-03-23 22:00:32 +01:00
|
|
|
# Tell dhcpcd to rebind its interfaces if it's running.
|
2013-01-16 13:17:57 +01:00
|
|
|
${config.systemd.package}/bin/systemctl reload dhcpcd.service
|
2012-02-20 02:17:53 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|