2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2006-12-13 15:24:33 +01:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2009-03-06 13:26:48 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2013-01-16 13:17:57 +01:00
|
|
|
udev = config.systemd.package;
|
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;
|
2016-02-17 02:55:26 +01:00
|
|
|
destination = "/etc/udev/rules.d/99-local.rules";
|
2009-08-10 21:05:20 +02:00
|
|
|
};
|
2009-03-06 13:26:48 +01:00
|
|
|
|
2016-01-31 15:31:07 +01:00
|
|
|
extraHwdbFile = pkgs.writeTextFile {
|
|
|
|
name = "extra-hwdb-file";
|
|
|
|
text = cfg.extraHwdb;
|
2016-02-17 02:55:26 +01:00
|
|
|
destination = "/etc/udev/hwdb.d/99-local.hwdb";
|
2016-01-31 15:31:07 +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"
|
2014-04-28 19:12:48 +02:00
|
|
|
|
|
|
|
# Needed for gpm.
|
2014-05-20 13:07:40 +02:00
|
|
|
SUBSYSTEM=="input", KERNEL=="mice", TAG+="systemd"
|
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.
|
2016-09-27 15:26:37 +02:00
|
|
|
udevRules = pkgs.runCommand "udev-rules"
|
|
|
|
{ preferLocalBuild = true;
|
|
|
|
allowSubstitutes = false;
|
2017-03-21 17:41:25 +01:00
|
|
|
packages = unique (map toString cfg.packages);
|
2016-09-27 15:26:37 +02:00
|
|
|
}
|
|
|
|
''
|
2012-06-15 19:09:22 +02:00
|
|
|
mkdir -p $out
|
2007-07-22 04:07:02 +02:00
|
|
|
shopt -s nullglob
|
2014-10-19 19:29:28 +02:00
|
|
|
set +o pipefail
|
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
|
|
|
|
2010-01-07 23:39:35 +01:00
|
|
|
# Add the udev rules from other packages.
|
2017-03-21 17:41:25 +01:00
|
|
|
for i in $packages; do
|
2010-08-27 17:32:49 +02:00
|
|
|
echo "Adding rules for package $i"
|
2012-06-15 19:09:22 +02:00
|
|
|
for j in $i/{etc,lib}/udev/rules.d/*; do
|
2011-08-24 23:24:39 +02:00
|
|
|
echo "Copying $j to $out/$(basename $j)"
|
2013-02-11 16:01:01 +01:00
|
|
|
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 \
|
2016-08-14 12:00:52 +02:00
|
|
|
--replace \"/sbin/modprobe \"${pkgs.kmod}/bin/modprobe \
|
2011-08-24 23:24:39 +02:00
|
|
|
--replace \"/sbin/mdadm \"${pkgs.mdadm}/sbin/mdadm \
|
|
|
|
--replace \"/sbin/blkid \"${pkgs.utillinux}/sbin/blkid \
|
2016-02-03 15:12:57 +01:00
|
|
|
--replace \"/bin/mount \"${pkgs.utillinux}/bin/mount \
|
|
|
|
--replace /usr/bin/readlink ${pkgs.coreutils}/bin/readlink \
|
|
|
|
--replace /usr/bin/basename ${pkgs.coreutils}/bin/basename
|
2009-08-11 23:16:15 +02:00
|
|
|
done
|
2009-08-10 21:05:20 +02:00
|
|
|
|
2015-10-03 20:52:03 +02:00
|
|
|
echo -n "Checking that all programs called by relative paths in udev rules exist in ${udev}/lib/udev... "
|
2011-08-24 23:24:39 +02:00
|
|
|
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
|
2015-10-03 20:52:03 +02:00
|
|
|
if [[ ! -x ${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"
|
|
|
|
|
2012-06-28 20:19:38 +02:00
|
|
|
echo -n "Checking that all programs called 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"
|
2019-06-21 18:05:14 +02:00
|
|
|
echo "$i is called in udev rules but is not executable or does not exist"
|
2011-08-24 23:24:39 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo "OK"
|
|
|
|
|
2016-02-03 14:21:45 +01:00
|
|
|
filesToFixup="$(for i in "$out"/*; do
|
|
|
|
grep -l '\B\(/usr\)\?/s\?bin' "$i" || :
|
|
|
|
done)"
|
|
|
|
|
|
|
|
if [ -n "$filesToFixup" ]; then
|
|
|
|
echo "Consider fixing the following udev rules:"
|
|
|
|
echo "$filesToFixup" | while read localFile; do
|
|
|
|
remoteFile="origin unknown"
|
|
|
|
for i in ${toString cfg.packages}; do
|
|
|
|
for j in "$i"/*/udev/rules.d/*; do
|
2016-02-05 14:56:06 +01:00
|
|
|
[ -e "$out/$(basename "$j")" ] || continue
|
|
|
|
[ "$(basename "$j")" = "$(basename "$localFile")" ] || continue
|
|
|
|
remoteFile="originally from $j"
|
|
|
|
break 2
|
2016-02-03 14:21:45 +01:00
|
|
|
done
|
|
|
|
done
|
|
|
|
refs="$(
|
|
|
|
grep -o '\B\(/usr\)\?/s\?bin/[^ "]\+' "$localFile" \
|
|
|
|
| sed -e ':r;N;''${s/\n/ and /;br};s/\n/, /g;br'
|
|
|
|
)"
|
|
|
|
echo "$localFile ($remoteFile) contains references to $refs."
|
|
|
|
done
|
2016-02-03 16:40:41 +01:00
|
|
|
exit 1
|
2016-02-03 14:21:45 +01:00
|
|
|
fi
|
2013-02-11 16:01:01 +01:00
|
|
|
|
2013-02-21 11:32:51 +01:00
|
|
|
# If auto-configuration is disabled, then remove
|
|
|
|
# udev's 80-drivers.rules file, which contains rules for
|
|
|
|
# automatically calling modprobe.
|
|
|
|
${optionalString (!config.boot.hardwareScan) ''
|
|
|
|
ln -s /dev/null $out/80-drivers.rules
|
|
|
|
''}
|
2008-07-02 20:06:34 +02:00
|
|
|
''; # */
|
2007-03-04 00:20:08 +01:00
|
|
|
|
2016-09-27 15:26:37 +02:00
|
|
|
hwdbBin = pkgs.runCommand "hwdb.bin"
|
|
|
|
{ preferLocalBuild = true;
|
|
|
|
allowSubstitutes = false;
|
2017-03-21 17:41:25 +01:00
|
|
|
packages = unique (map toString ([udev] ++ cfg.packages));
|
2016-09-27 15:26:37 +02:00
|
|
|
}
|
|
|
|
''
|
2016-01-31 15:31:07 +01:00
|
|
|
mkdir -p etc/udev/hwdb.d
|
2017-03-21 17:41:25 +01:00
|
|
|
for i in $packages; do
|
2016-01-31 15:31:07 +01:00
|
|
|
echo "Adding hwdb files for package $i"
|
|
|
|
for j in $i/{etc,lib}/udev/hwdb.d/*; do
|
|
|
|
ln -s $j etc/udev/hwdb.d/$(basename $j)
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
echo "Generating hwdb database..."
|
2017-01-12 09:11:20 +01:00
|
|
|
# hwdb --update doesn't return error code even on errors!
|
2018-02-28 02:34:41 +01:00
|
|
|
res="$(${pkgs.buildPackages.udev}/bin/udevadm hwdb --update --root=$(pwd) 2>&1)"
|
2017-01-12 09:11:20 +01:00
|
|
|
echo "$res"
|
|
|
|
[ -z "$(echo "$res" | egrep '^Error')" ]
|
2016-01-31 15:31:07 +01:00
|
|
|
mv etc/udev/hwdb.bin $out
|
|
|
|
'';
|
|
|
|
|
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 {
|
2013-10-30 17:37:45 +01:00
|
|
|
type = types.bool;
|
2009-08-10 20:41:57 +02:00
|
|
|
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 {
|
2013-10-28 16:14:15 +01:00
|
|
|
type = types.listOf types.path;
|
2009-08-10 20:41:57 +02:00
|
|
|
default = [];
|
|
|
|
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.
|
|
|
|
'';
|
2016-05-14 04:12:52 +02:00
|
|
|
apply = map getBin;
|
2009-08-10 20:41:57 +02:00
|
|
|
};
|
2009-03-06 13:26:48 +01:00
|
|
|
|
2010-09-16 17:23:12 +02:00
|
|
|
path = mkOption {
|
2013-10-28 16:14:15 +01:00
|
|
|
type = types.listOf types.path;
|
2010-09-16 17:23:12 +02:00
|
|
|
default = [];
|
|
|
|
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"
|
|
|
|
'';
|
2013-02-11 16:01:01 +01:00
|
|
|
type = types.lines;
|
2009-08-10 20:41:57 +02:00
|
|
|
description = ''
|
|
|
|
Additional <command>udev</command> rules. They'll be written
|
2016-02-17 02:55:26 +01:00
|
|
|
into file <filename>99-local.rules</filename>. Thus they are
|
|
|
|
read and applied after all other rules.
|
2009-08-10 20:41:57 +02:00
|
|
|
'';
|
|
|
|
};
|
2009-03-06 13:26:48 +01:00
|
|
|
|
2016-01-31 15:31:07 +01:00
|
|
|
extraHwdb = mkOption {
|
|
|
|
default = "";
|
|
|
|
example = ''
|
|
|
|
evdev:input:b0003v05AFp8277*
|
|
|
|
KEYBOARD_KEY_70039=leftalt
|
|
|
|
KEYBOARD_KEY_700e2=leftctrl
|
|
|
|
'';
|
|
|
|
type = types.lines;
|
|
|
|
description = ''
|
|
|
|
Additional <command>hwdb</command> files. They'll be written
|
|
|
|
into file <filename>10-local.hwdb</filename>. Thus they are
|
|
|
|
read before all other files.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
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 {
|
2015-08-25 00:27:06 +02:00
|
|
|
type = types.listOf types.package;
|
2009-08-11 23:16:15 +02:00
|
|
|
default = [];
|
|
|
|
description = ''
|
2015-08-25 00:27:06 +02:00
|
|
|
List of packages containing firmware files. Such files
|
2009-08-11 23:16:15 +02:00
|
|
|
will be loaded automatically if the kernel asks for them
|
|
|
|
(i.e., when it has detected specific hardware that requires
|
2015-08-25 00:27:06 +02:00
|
|
|
firmware to function). If multiple packages contain firmware
|
|
|
|
files with the same name, the first package in the list takes
|
|
|
|
precedence. Note that you must rebuild your system if you add
|
2015-09-07 22:54:51 +02:00
|
|
|
files to any of these directories.
|
2009-08-11 23:16:15 +02:00
|
|
|
'';
|
2010-04-25 20:26:56 +02:00
|
|
|
apply = list: pkgs.buildEnv {
|
|
|
|
name = "firmware";
|
|
|
|
paths = list;
|
2015-08-25 00:27:06 +02:00
|
|
|
pathsToLink = [ "/lib/firmware" ];
|
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
|
|
|
|
2013-02-11 16:01:01 +01:00
|
|
|
networking.usePredictableInterfaceNames = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Whether to assign <link
|
|
|
|
xlink:href='http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames'>predictable
|
|
|
|
names to network interfaces</link>. If enabled, interfaces
|
|
|
|
are assigned names that contain topology information
|
|
|
|
(e.g. <literal>wlp3s0</literal>) and thus should be stable
|
|
|
|
across reboots. If disabled, names depend on the order in
|
|
|
|
which interfaces are discovered by the kernel, which may
|
|
|
|
change randomly across reboots; for instance, you may find
|
|
|
|
<literal>eth0</literal> and <literal>eth1</literal> flipping
|
|
|
|
unpredictably.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
|
2013-11-27 16:54:20 +01:00
|
|
|
config = mkIf (!config.boot.isContainer) {
|
2009-08-10 20:41:57 +02:00
|
|
|
|
2009-08-10 21:05:20 +02:00
|
|
|
services.udev.extraRules = nixosRules;
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2016-01-31 15:31:07 +01:00
|
|
|
services.udev.packages = [ extraUdevRules extraHwdbFile ];
|
2009-03-06 13:26:48 +01:00
|
|
|
|
2012-06-15 19:09:22 +02:00
|
|
|
services.udev.path = [ pkgs.coreutils pkgs.gnused pkgs.gnugrep pkgs.utillinux udev ];
|
2009-08-11 23:16:15 +02:00
|
|
|
|
2019-05-09 14:13:26 +02:00
|
|
|
boot.kernelParams = mkIf (!config.networking.usePredictableInterfaceNames) [ "net.ifnames=0" ];
|
|
|
|
|
2012-06-15 19:09:22 +02:00
|
|
|
environment.etc =
|
|
|
|
[ { source = udevRules;
|
|
|
|
target = "udev/rules.d";
|
|
|
|
}
|
2016-01-31 15:31:07 +01:00
|
|
|
{ source = hwdbBin;
|
|
|
|
target = "udev/hwdb.bin";
|
|
|
|
}
|
2012-06-15 19:09:22 +02:00
|
|
|
];
|
2010-09-16 17:23:12 +02:00
|
|
|
|
2012-08-06 23:02:35 +02:00
|
|
|
system.requiredKernelConfig = with config.lib.kernelConfig; [
|
|
|
|
(isEnabled "UNIX")
|
|
|
|
(isYes "INOTIFY_USER")
|
|
|
|
(isYes "NET")
|
|
|
|
];
|
2009-08-10 20:41:57 +02:00
|
|
|
|
2015-08-25 00:27:06 +02:00
|
|
|
boot.extraModprobeConfig = "options firmware_class path=${config.hardware.firmware}/lib/firmware";
|
2013-03-27 22:08:25 +01:00
|
|
|
|
2013-11-27 16:54:20 +01:00
|
|
|
system.activationScripts.udevd =
|
2013-03-27 22:08:25 +01:00
|
|
|
''
|
2015-04-06 09:14:54 +02:00
|
|
|
# The deprecated hotplug uevent helper is not used anymore
|
|
|
|
if [ -e /proc/sys/kernel/hotplug ]; then
|
|
|
|
echo "" > /proc/sys/kernel/hotplug
|
|
|
|
fi
|
2015-03-06 15:59:06 +01:00
|
|
|
|
2014-10-20 13:13:10 +02:00
|
|
|
# Allow the kernel to find our firmware.
|
|
|
|
if [ -e /sys/module/firmware_class/parameters/path ]; then
|
2015-08-25 00:27:06 +02:00
|
|
|
echo -n "${config.hardware.firmware}/lib/firmware" > /sys/module/firmware_class/parameters/path
|
2014-10-20 13:13:10 +02:00
|
|
|
fi
|
2013-03-27 22:08:25 +01:00
|
|
|
'';
|
|
|
|
|
2014-04-17 12:22:24 +02:00
|
|
|
systemd.services.systemd-udevd =
|
2016-08-14 12:01:14 +02:00
|
|
|
{ restartTriggers = cfg.packages;
|
2014-04-17 12:22:24 +02:00
|
|
|
};
|
|
|
|
|
2013-03-04 15:42:03 +01:00
|
|
|
};
|
2006-12-13 13:17:38 +01:00
|
|
|
}
|