2012-03-19 20:10:27 +01:00
|
|
|
|
{ config, pkgs, ... }:
|
2006-12-13 15:24:33 +01:00
|
|
|
|
|
2009-08-10 20:41:57 +02:00
|
|
|
|
with pkgs.lib;
|
2009-03-06 13:26:48 +01:00
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
2009-08-10 21:27:15 +02:00
|
|
|
|
inherit (pkgs) stdenv writeText udev procps;
|
2006-12-13 15:24:33 +01:00
|
|
|
|
|
2008-07-03 12:45:14 +02:00
|
|
|
|
cfg = config.services.udev;
|
|
|
|
|
|
2009-08-10 21:05:20 +02:00
|
|
|
|
extraUdevRules = pkgs.writeTextFile {
|
|
|
|
|
name = "extra-udev-rules";
|
|
|
|
|
text = cfg.extraRules;
|
|
|
|
|
destination = "/etc/udev/rules.d/10-local.rules";
|
|
|
|
|
};
|
2009-03-06 13:26:48 +01:00
|
|
|
|
|
2009-08-10 21:05:20 +02:00
|
|
|
|
nixosRules = ''
|
2008-07-02 20:06:34 +02:00
|
|
|
|
# Miscellaneous devices.
|
|
|
|
|
KERNEL=="kvm", MODE="0666"
|
2010-05-16 11:39:41 +02:00
|
|
|
|
KERNEL=="kqemu", MODE="0666"
|
2008-07-02 20:06:34 +02:00
|
|
|
|
'';
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2007-03-04 00:20:08 +01:00
|
|
|
|
# Perform substitutions in all udev rules files.
|
|
|
|
|
udevRules = stdenv.mkDerivation {
|
|
|
|
|
name = "udev-rules";
|
2008-07-02 20:06:34 +02:00
|
|
|
|
buildCommand = ''
|
2007-03-04 00:20:08 +01:00
|
|
|
|
ensureDir $out
|
2007-07-22 04:07:02 +02:00
|
|
|
|
shopt -s nullglob
|
2009-08-10 21:05:20 +02:00
|
|
|
|
|
2009-08-11 23:16:15 +02:00
|
|
|
|
# Set a reasonable $PATH for programs called by udev rules.
|
2010-09-16 17:23:12 +02:00
|
|
|
|
echo 'ENV{PATH}="${udevPath}/bin:${udevPath}/sbin"' > $out/00-path.rules
|
2009-08-11 23:16:15 +02:00
|
|
|
|
|
|
|
|
|
# Set the firmware search path so that the firmware.sh helper
|
|
|
|
|
# called by 50-firmware.rules works properly.
|
2010-04-26 11:08:05 +02:00
|
|
|
|
echo 'ENV{FIRMWARE_DIRS}="/root/test-firmware ${toString config.hardware.firmware}"' >> $out/00-path.rules
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2010-01-07 23:39:35 +01:00
|
|
|
|
# Add the udev rules from other packages.
|
|
|
|
|
for i in ${toString cfg.packages}; do
|
2010-08-27 17:32:49 +02:00
|
|
|
|
echo "Adding rules for package $i"
|
2010-01-07 23:39:35 +01:00
|
|
|
|
for j in $i/*/udev/rules.d/*; do
|
2011-08-24 23:24:39 +02:00
|
|
|
|
echo "Copying $j to $out/$(basename $j)"
|
|
|
|
|
echo "# Copied from $j" > $out/$(basename $j)
|
|
|
|
|
cat $j >> $out/$(basename $j)
|
2010-01-07 23:39:35 +01:00
|
|
|
|
done
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
# Fix some paths in the standard udev rules. Hacky.
|
2009-08-11 23:16:15 +02:00
|
|
|
|
for i in $out/*.rules; do
|
|
|
|
|
substituteInPlace $i \
|
2012-03-17 18:26:17 +01:00
|
|
|
|
--replace \"/sbin/modprobe \"${config.system.sbin.modprobe}/sbin/modprobe \
|
2011-08-24 23:24:39 +02:00
|
|
|
|
--replace \"/sbin/mdadm \"${pkgs.mdadm}/sbin/mdadm \
|
|
|
|
|
--replace \"/sbin/blkid \"${pkgs.utillinux}/sbin/blkid \
|
|
|
|
|
--replace \"/bin/mount \"${pkgs.utillinux}/bin/mount
|
2009-08-11 23:16:15 +02:00
|
|
|
|
done
|
2009-08-10 21:05:20 +02:00
|
|
|
|
|
|
|
|
|
# If auto-configuration is disabled, then remove
|
|
|
|
|
# udev's 80-drivers.rules file, which contains rules for
|
|
|
|
|
# automatically calling modprobe.
|
2009-08-11 23:16:15 +02:00
|
|
|
|
${if !config.boot.hardwareScan then "rm $out/80-drivers.rules" else ""}
|
2009-08-10 21:05:20 +02:00
|
|
|
|
|
2011-08-24 23:24:39 +02:00
|
|
|
|
echo -n "Checking that all programs called by relative paths in udev rules exist in ${udev}/lib/udev ... "
|
|
|
|
|
import_progs=$(grep 'IMPORT{program}="[^/$]' $out/* |
|
|
|
|
|
sed -e 's/.*IMPORT{program}="\([^ "]*\)[ "].*/\1/' | uniq)
|
2011-12-05 17:53:58 +01:00
|
|
|
|
run_progs=$(grep -v '^[[:space:]]*#' $out/* | grep 'RUN+="[^/$]' |
|
2011-08-24 23:24:39 +02:00
|
|
|
|
sed -e 's/.*RUN+="\([^ "]*\)[ "].*/\1/' | uniq)
|
|
|
|
|
for i in $import_progs $run_progs; do
|
2011-08-25 10:06:09 +02:00
|
|
|
|
if [[ ! -x ${pkgs.udev}/lib/udev/$i && ! $i =~ socket:.* ]]; then
|
2011-08-24 23:24:39 +02:00
|
|
|
|
echo "FAIL"
|
|
|
|
|
echo "$i is called in udev rules but not installed by udev"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
echo "OK"
|
|
|
|
|
|
|
|
|
|
echo -n "Checking that all programs call by absolute paths in udev rules exist ... "
|
2012-06-27 20:41:07 +02:00
|
|
|
|
import_progs=$(grep 'IMPORT{program}="\/' $out/* |
|
2011-08-24 23:24:39 +02:00
|
|
|
|
sed -e 's/.*IMPORT{program}="\([^ "]*\)[ "].*/\1/' | uniq)
|
2011-12-05 17:53:58 +01:00
|
|
|
|
run_progs=$(grep -v '^[[:space:]]*#' $out/* | grep 'RUN+="/' |
|
2011-08-24 23:24:39 +02:00
|
|
|
|
sed -e 's/.*RUN+="\([^ "]*\)[ "].*/\1/' | uniq)
|
|
|
|
|
for i in $import_progs $run_progs; do
|
|
|
|
|
if [[ ! -x $i ]]; then
|
|
|
|
|
echo "FAIL"
|
|
|
|
|
echo "$i is called in udev rules but not installed by udev"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
echo "OK"
|
|
|
|
|
|
|
|
|
|
echo "Consider fixing the following udev rules:"
|
|
|
|
|
for i in ${toString cfg.packages}; do
|
|
|
|
|
grep -l '\(RUN+\|IMPORT{program}\)="\(/usr\)\?/s\?bin' $i/*/udev/rules.d/* || true
|
|
|
|
|
done
|
|
|
|
|
|
2009-08-11 23:16:15 +02:00
|
|
|
|
# Use the persistent device rules (naming for CD/DVD and
|
2011-09-14 20:20:50 +02:00
|
|
|
|
# network devices) stored in
|
2009-08-11 23:16:15 +02:00
|
|
|
|
# /var/lib/udev/rules.d/70-persistent-{cd,net}.rules. These are
|
|
|
|
|
# modified by the write_{cd,net}_rules helpers called from
|
|
|
|
|
# 75-cd-aliases-generator.rules and
|
|
|
|
|
# 75-persistent-net-generator.rules.
|
2010-05-19 21:15:49 +02:00
|
|
|
|
ln -sv /var/lib/udev/rules.d/70-persistent-cd.rules $out/
|
|
|
|
|
ln -sv /var/lib/udev/rules.d/70-persistent-net.rules $out/
|
2008-07-02 20:06:34 +02:00
|
|
|
|
''; # */
|
2007-03-04 00:20:08 +01:00
|
|
|
|
};
|
|
|
|
|
|
2008-08-09 00:44:45 +02:00
|
|
|
|
# The udev configuration file.
|
2008-02-04 11:52:58 +01:00
|
|
|
|
conf = writeText "udev.conf" ''
|
|
|
|
|
udev_rules="${udevRules}"
|
|
|
|
|
#udev_log="debug"
|
|
|
|
|
'';
|
2006-12-13 15:24:33 +01:00
|
|
|
|
|
2010-09-16 17:23:12 +02:00
|
|
|
|
# Udev has a 512-character limit for ENV{PATH}, so create a symlink
|
|
|
|
|
# tree to work around this.
|
|
|
|
|
udevPath = pkgs.buildEnv {
|
|
|
|
|
name = "udev-path";
|
|
|
|
|
paths = cfg.path;
|
|
|
|
|
pathsToLink = [ "/bin" "/sbin" ];
|
|
|
|
|
ignoreCollisions = true;
|
|
|
|
|
};
|
|
|
|
|
|
2006-12-13 15:24:33 +01:00
|
|
|
|
in
|
2006-12-13 13:17:38 +01:00
|
|
|
|
|
|
|
|
|
{
|
2008-06-20 18:09:48 +02:00
|
|
|
|
|
2009-08-10 20:41:57 +02:00
|
|
|
|
###### interface
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-08-10 20:41:57 +02:00
|
|
|
|
options = {
|
2008-06-20 18:09:48 +02:00
|
|
|
|
|
2009-08-10 20:41:57 +02:00
|
|
|
|
boot.hardwareScan = mkOption {
|
|
|
|
|
default = true;
|
|
|
|
|
description = ''
|
|
|
|
|
Whether to try to load kernel modules for all detected hardware.
|
|
|
|
|
Usually this does a good job of providing you with the modules
|
|
|
|
|
you need, but sometimes it can crash the system or cause other
|
2011-11-03 01:46:29 +01:00
|
|
|
|
nasty effects.
|
2009-08-10 20:41:57 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-08-10 20:41:57 +02:00
|
|
|
|
services.udev = {
|
|
|
|
|
|
2009-08-10 21:05:20 +02:00
|
|
|
|
packages = mkOption {
|
2009-08-10 20:41:57 +02:00
|
|
|
|
default = [];
|
2009-08-10 21:05:20 +02:00
|
|
|
|
merge = mergeListOption;
|
2009-08-10 20:41:57 +02:00
|
|
|
|
description = ''
|
|
|
|
|
List of packages containing <command>udev</command> rules.
|
|
|
|
|
All files found in
|
2009-08-10 21:05:20 +02:00
|
|
|
|
<filename><replaceable>pkg</replaceable>/etc/udev/rules.d</filename> and
|
|
|
|
|
<filename><replaceable>pkg</replaceable>/lib/udev/rules.d</filename>
|
2009-08-10 20:41:57 +02:00
|
|
|
|
will be included.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2009-03-06 13:26:48 +01:00
|
|
|
|
|
2010-09-16 17:23:12 +02:00
|
|
|
|
path = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
merge = mergeListOption;
|
|
|
|
|
description = ''
|
|
|
|
|
Packages added to the <envar>PATH</envar> environment variable when
|
|
|
|
|
executing programs from Udev rules.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-08-10 20:41:57 +02:00
|
|
|
|
extraRules = mkOption {
|
|
|
|
|
default = "";
|
|
|
|
|
example = ''
|
|
|
|
|
KERNEL=="eth*", ATTR{address}=="00:1D:60:B9:6D:4F", NAME="my_fast_network_card"
|
|
|
|
|
'';
|
2011-12-29 01:51:35 +01:00
|
|
|
|
type = with pkgs.lib.types; string;
|
2009-08-10 20:41:57 +02:00
|
|
|
|
description = ''
|
|
|
|
|
Additional <command>udev</command> rules. They'll be written
|
|
|
|
|
into file <filename>10-local.rules</filename>. Thus they are
|
|
|
|
|
read before all other rules.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2009-03-06 13:26:48 +01:00
|
|
|
|
|
2009-08-11 23:16:15 +02:00
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-08-11 23:16:15 +02:00
|
|
|
|
hardware.firmware = mkOption {
|
|
|
|
|
default = [];
|
2010-08-08 15:57:21 +02:00
|
|
|
|
example = [ "/root/my-firmware" ];
|
2011-09-14 20:20:50 +02:00
|
|
|
|
merge = mergeListOption;
|
2009-08-11 23:16:15 +02:00
|
|
|
|
description = ''
|
|
|
|
|
List of directories containing firmware files. Such files
|
|
|
|
|
will be loaded automatically if the kernel asks for them
|
|
|
|
|
(i.e., when it has detected specific hardware that requires
|
2012-02-21 11:02:58 +01:00
|
|
|
|
firmware to function). If more than one path contains a
|
|
|
|
|
firmware file with the same name, the first path in the list
|
|
|
|
|
takes precedence. Note that you must rebuild your system if
|
|
|
|
|
you add files to any of these directories. For quick testing,
|
|
|
|
|
put firmware files in /root/test-firmware and add that
|
|
|
|
|
directory to the list.
|
|
|
|
|
Note that you can also add firmware packages to this
|
|
|
|
|
list as these are directories in the nix store.
|
2009-08-11 23:16:15 +02:00
|
|
|
|
'';
|
2010-04-25 20:26:56 +02:00
|
|
|
|
apply = list: pkgs.buildEnv {
|
|
|
|
|
name = "firmware";
|
|
|
|
|
paths = list;
|
|
|
|
|
pathsToLink = [ "/" ];
|
2012-02-21 11:02:58 +01:00
|
|
|
|
ignoreCollisions = true;
|
2010-04-25 20:26:56 +02:00
|
|
|
|
};
|
2009-08-10 20:41:57 +02:00
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-08-10 20:41:57 +02:00
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-08-10 20:41:57 +02:00
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
|
2009-08-10 21:05:20 +02:00
|
|
|
|
services.udev.extraRules = nixosRules;
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2011-08-24 23:24:39 +02:00
|
|
|
|
services.udev.packages = [ pkgs.udev extraUdevRules ];
|
2010-09-16 17:23:12 +02:00
|
|
|
|
|
2011-07-26 23:01:36 +02:00
|
|
|
|
services.udev.path = [ pkgs.coreutils pkgs.gnused pkgs.gnugrep pkgs.utillinux pkgs.udev ];
|
2009-08-10 21:05:20 +02:00
|
|
|
|
|
2009-10-12 20:09:34 +02:00
|
|
|
|
jobs.udev =
|
2009-10-12 19:27:57 +02:00
|
|
|
|
{ startOn = "startup";
|
2009-08-10 20:41:57 +02:00
|
|
|
|
|
|
|
|
|
environment = { UDEV_CONFIG_FILE = conf; };
|
|
|
|
|
|
2011-11-25 17:32:54 +01:00
|
|
|
|
path = [ udev ];
|
|
|
|
|
|
2009-08-10 20:41:57 +02:00
|
|
|
|
preStart =
|
|
|
|
|
''
|
2010-07-25 00:05:27 +02:00
|
|
|
|
echo "" > /proc/sys/kernel/hotplug || true
|
2009-03-06 13:26:48 +01:00
|
|
|
|
|
2010-06-01 17:53:24 +02:00
|
|
|
|
mkdir -p /var/lib/udev/rules.d
|
2011-07-17 13:01:31 +02:00
|
|
|
|
touch /var/lib/udev/rules.d/70-persistent-cd.rules /var/lib/udev/rules.d/70-persistent-net.rules
|
2009-08-11 23:16:15 +02:00
|
|
|
|
|
2010-06-01 17:53:24 +02:00
|
|
|
|
mkdir -p /dev/.udev # !!! bug in udev?
|
2009-11-06 16:23:16 +01:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
daemonType = "fork";
|
2009-03-06 13:26:48 +01:00
|
|
|
|
|
2011-11-25 17:32:54 +01:00
|
|
|
|
exec = "udevd --daemon";
|
2012-03-18 15:03:42 +01:00
|
|
|
|
|
|
|
|
|
postStart =
|
|
|
|
|
''
|
|
|
|
|
# Do the loading of additional stage 2 kernel modules.
|
|
|
|
|
# This needs to be done while udevd is running, because
|
|
|
|
|
# the modules may call upon udev's firmware loading rule.
|
|
|
|
|
for i in ${toString config.boot.kernelModules}; do
|
|
|
|
|
echo "loading kernel module ‘$i’..."
|
|
|
|
|
${config.system.sbin.modprobe}/sbin/modprobe $i || true
|
|
|
|
|
done
|
|
|
|
|
'';
|
2010-06-07 14:39:50 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
jobs.udevtrigger =
|
|
|
|
|
{ startOn = "started udev";
|
|
|
|
|
|
|
|
|
|
task = true;
|
2009-11-06 16:23:16 +01:00
|
|
|
|
|
2011-11-25 17:32:54 +01:00
|
|
|
|
path = [ udev ];
|
|
|
|
|
|
2010-06-07 14:39:50 +02:00
|
|
|
|
script =
|
2009-11-06 16:23:16 +01:00
|
|
|
|
''
|
2009-03-06 13:26:48 +01:00
|
|
|
|
# Let udev create device nodes for all modules that have already
|
|
|
|
|
# been loaded into the kernel (or for which support is built into
|
2012-03-19 20:10:27 +01:00
|
|
|
|
# the kernel).
|
2011-11-25 17:32:54 +01:00
|
|
|
|
udevadm trigger --action=add
|
2012-03-19 16:10:39 +01:00
|
|
|
|
udevadm settle || true # wait for udev to finish
|
2009-03-06 13:26:48 +01:00
|
|
|
|
|
2009-11-06 22:38:40 +01:00
|
|
|
|
initctl emit -n new-devices
|
2009-08-10 20:41:57 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
2010-09-16 17:23:12 +02:00
|
|
|
|
|
2009-03-06 13:26:48 +01:00
|
|
|
|
};
|
2009-08-10 20:41:57 +02:00
|
|
|
|
|
2006-12-13 13:17:38 +01:00
|
|
|
|
}
|