2009-10-12 19:27:57 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2007-02-22 15:26:53 +01:00
|
|
|
|
2008-11-08 22:32:48 +01:00
|
|
|
let
|
|
|
|
|
|
|
|
inherit (pkgs) nettools dhcp lib;
|
2007-02-22 15:26:53 +01:00
|
|
|
|
2011-03-15 16:13:48 +01:00
|
|
|
# Don't start dhclient on explicitly configured interfaces or on
|
|
|
|
# interfaces that are part of a bridge.
|
2011-09-14 20:20:50 +02:00
|
|
|
ignoredInterfaces =
|
2011-03-15 16:13:48 +01:00
|
|
|
map (i: i.name) (lib.filter (i: i ? ipAddress && i.ipAddress != "" ) config.networking.interfaces)
|
|
|
|
++ concatLists (attrValues (mapAttrs (n: v: v.interfaces) config.networking.bridges));
|
2007-02-22 15:26:53 +01:00
|
|
|
|
2007-03-20 12:04:45 +01:00
|
|
|
stateDir = "/var/lib/dhcp"; # Don't use /var/state/dhcp; not FHS-compliant.
|
2009-05-28 01:30:29 +02:00
|
|
|
|
|
|
|
dhclientExitHooks = pkgs.writeText "dhclient-exit-hooks"
|
|
|
|
''
|
2010-08-05 15:32:58 +02:00
|
|
|
#echo "$reason" >> /tmp/dhcp-exit
|
|
|
|
#echo "$exit_status" >> /tmp/dhcp-exit
|
2009-05-28 01:30:29 +02:00
|
|
|
|
|
|
|
if test "$reason" = BOUND -o "$reason" = REBOOT; then
|
2009-06-02 21:42:31 +02:00
|
|
|
# Restart ntpd. (The "ip-up" event below will trigger the
|
|
|
|
# restart.) 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
|
|
|
|
# anything ever again ("couldn't resolve ..., giving up on
|
|
|
|
# it"), so we silently lose time synchronisation.
|
2009-11-06 10:36:35 +01:00
|
|
|
${config.system.build.upstart}/sbin/initctl stop ntpd
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-11-06 22:38:40 +01:00
|
|
|
${config.system.build.upstart}/sbin/initctl emit -n ip-up
|
2009-05-28 01:30:29 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$reason" = EXPIRE -o "$reason" = RELEASE; then
|
2009-11-06 22:38:40 +01:00
|
|
|
${config.system.build.upstart}/sbin/initctl emit -n ip-down
|
2009-05-28 01:30:29 +02:00
|
|
|
fi
|
|
|
|
'';
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2007-02-22 15:26:53 +01:00
|
|
|
in
|
2006-11-19 23:05:49 +01:00
|
|
|
|
|
|
|
{
|
2008-11-08 22:32:48 +01:00
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
###### implementation
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
config = mkIf config.networking.useDHCP {
|
2007-02-20 15:20:33 +01:00
|
|
|
|
2012-03-17 18:26:17 +01:00
|
|
|
# dhclient barfs if /proc/net/if_inet6 doesn't exist.
|
|
|
|
boot.kernelModules = [ "ipv6" ];
|
|
|
|
|
2011-09-14 20:20:50 +02:00
|
|
|
jobs.dhclient =
|
2009-11-06 23:19:17 +01:00
|
|
|
{ startOn = "started network-interfaces";
|
|
|
|
stopOn = "stopping network-interfaces";
|
2006-11-24 17:31:01 +01:00
|
|
|
|
2011-11-25 17:32:54 +01:00
|
|
|
path = [ dhcp ];
|
|
|
|
|
2009-07-24 02:31:22 +02:00
|
|
|
script =
|
|
|
|
''
|
2009-07-15 13:19:11 +02:00
|
|
|
# Determine the interface on which to start dhclient.
|
|
|
|
interfaces=
|
2009-05-28 01:30:29 +02:00
|
|
|
|
2009-07-15 13:19:11 +02:00
|
|
|
for i in $(cd /sys/class/net && ls -d *); do
|
2010-01-22 21:34:32 +01:00
|
|
|
# Only run dhclient on interfaces of type ARPHRD_ETHER
|
2010-09-14 13:17:48 +02:00
|
|
|
# (1), i.e. Ethernet. Ignore peth* devices; on Xen,
|
|
|
|
# they're renamed physical Ethernet cards used for
|
2011-03-15 16:30:12 +01:00
|
|
|
# bridging. Likewise for vif* and tap* (Xen) and
|
2012-04-30 19:46:11 +02:00
|
|
|
# virbr* and vnet* (libvirt).
|
2010-09-14 13:17:48 +02:00
|
|
|
if [ "$(cat /sys/class/net/$i/type)" = 1 ]; then
|
|
|
|
if ! for j in ${toString ignoredInterfaces}; do echo $j; done | grep -F -x -q "$i" &&
|
2012-04-30 19:46:11 +02:00
|
|
|
! echo "$i" | grep -x -q "peth.*\|vif.*\|tap.*\|virbr.*\|vnet.*";
|
2010-09-14 13:17:48 +02:00
|
|
|
then
|
2010-01-22 21:34:32 +01:00
|
|
|
echo "Running dhclient on $i"
|
|
|
|
interfaces="$interfaces $i"
|
|
|
|
fi
|
2009-07-15 13:19:11 +02:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if test -z "$interfaces"; then
|
|
|
|
echo 'No interfaces on which to start dhclient!'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkdir -m 755 -p ${stateDir}
|
|
|
|
|
2011-11-25 17:32:54 +01:00
|
|
|
exec dhclient -d $interfaces -e "PATH=$PATH" -lf ${stateDir}/dhclient.leases -sf ${dhcp}/sbin/dhclient-script
|
2009-07-24 02:31:22 +02:00
|
|
|
'';
|
|
|
|
};
|
2009-07-15 13:19:11 +02:00
|
|
|
|
|
|
|
environment.systemPackages = [dhcp];
|
|
|
|
|
|
|
|
environment.etc =
|
|
|
|
[ # Dhclient hooks for emitting ip-up/ip-down events.
|
|
|
|
{ source = dhclientExitHooks;
|
|
|
|
target = "dhclient-exit-hooks";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2009-11-15 21:40:41 +01:00
|
|
|
powerManagement.resumeCommands =
|
|
|
|
''
|
2012-02-19 23:53:25 +01:00
|
|
|
${config.system.build.upstart}/sbin/restart dhclient
|
|
|
|
'';
|
|
|
|
|
|
|
|
networking.interfaceMonitor.commands =
|
|
|
|
''
|
|
|
|
if [ "$status" = up ]; then
|
|
|
|
${config.system.build.upstart}/sbin/restart dhclient
|
|
|
|
fi
|
2009-11-15 21:40:41 +01:00
|
|
|
'';
|
|
|
|
|
2011-09-14 20:20:50 +02:00
|
|
|
};
|
|
|
|
|
2006-11-19 23:05:49 +01:00
|
|
|
}
|