optionally allow normal users to control wpa_supplicant through

wpa_gui or wpa_cli.

Comes with a default wpa_supplicant.conf, which gets updated through
aforementioned utilities.

svn path=/nixos/trunk/; revision=33510
This commit is contained in:
Mathijs Kwik 2012-04-01 10:54:10 +00:00
parent 7f84957ff2
commit 7ba690add6

View File

@ -4,10 +4,11 @@ with pkgs.lib;
let let
cfg = config.networking.wireless;
configFile = "/etc/wpa_supplicant.conf"; configFile = "/etc/wpa_supplicant.conf";
ifaces = ifaces =
config.networking.wireless.interfaces ++ cfg.interfaces ++
optional (config.networking.WLANInterface != "") config.networking.WLANInterface; optional (config.networking.WLANInterface != "") config.networking.WLANInterface;
in in
@ -18,7 +19,13 @@ in
options = { options = {
networking.wireless.enable = mkOption { networking.WLANInterface = mkOption {
default = "";
description = "Obsolete. Use <option>networking.wireless.interfaces</option> instead.";
};
networking.wireless = {
enable = mkOption {
default = false; default = false;
description = '' description = ''
Whether to start <command>wpa_supplicant</command> to scan for Whether to start <command>wpa_supplicant</command> to scan for
@ -32,12 +39,7 @@ in
''; '';
}; };
networking.WLANInterface = mkOption { interfaces = mkOption {
default = "";
description = "Obsolete. Use <option>networking.wireless.interfaces</option> instead.";
};
networking.wireless.interfaces = mkOption {
default = []; default = [];
example = [ "wlan0" "wlan1" ]; example = [ "wlan0" "wlan1" ];
description = '' description = ''
@ -46,12 +48,40 @@ in
''; '';
}; };
driver = mkOption {
default = "";
example = "nl80211";
description = "force a specific wpa_supplicant driver";
};
userControlled = {
enable = mkOption {
default = false;
description = ''
Allow normal users to control wpa_supplicant through wpa_gui or wpa_cli.
This is useful for laptop users that switch networks a lot.
When you want to use this, make sure ${configFile} doesn't exist.
It will be created for you.
Currently it is also necesarry to explicitly specify networking.wireless.interfaces
'';
};
group = mkOption {
default = "wheel";
example = "network";
type = types.string;
description = "members of this group can control wpa_supplicant";
};
};
};
}; };
###### implementation ###### implementation
config = mkIf config.networking.wireless.enable { config = mkIf cfg.enable {
environment.systemPackages = [ pkgs.wpa_supplicant ]; environment.systemPackages = [ pkgs.wpa_supplicant ];
@ -63,10 +93,14 @@ in
path = [ pkgs.wpa_supplicant ]; path = [ pkgs.wpa_supplicant ];
preStart = preStart = ''
''
touch -a ${configFile} touch -a ${configFile}
chmod 600 ${configFile} chmod 600 ${configFile}
'' + optionalString cfg.userControlled.enable ''
if [ ! -s ${configFile} ]; then
echo "ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=${cfg.userControlled.group}" >> ${configFile}
echo "update_config=1" >> ${configFile}
fi
''; '';
script = script =
@ -80,7 +114,7 @@ in
'' else '' '' else ''
ifaces="${concatStringsSep " -N " (map (i: "-i${i}") ifaces)}" ifaces="${concatStringsSep " -N " (map (i: "-i${i}") ifaces)}"
''} ''}
exec wpa_supplicant -s -u -c ${configFile} $ifaces exec wpa_supplicant -s -u ${optionalString (cfg.driver != "") "-D${cfg.driver}"} -c ${configFile} $ifaces
''; '';
}; };
@ -89,6 +123,10 @@ in
${config.system.build.upstart}/sbin/restart wpa_supplicant ${config.system.build.upstart}/sbin/restart wpa_supplicant
''; '';
assertions = [{ assertion = !cfg.userControlled.enable || cfg.interfaces != [];
message = "user controlled wpa_supplicant needs explicit networking.wireless.interfaces";}];
}; };
} }