2009-10-12 18:36:19 +02:00
|
|
|
|
{ config, pkgs, ... }:
|
2009-05-01 19:57:07 +02:00
|
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
|
with pkgs.lib;
|
2009-05-01 19:57:07 +02:00
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
|
|
cfg = config.services.openvpn;
|
|
|
|
|
|
|
|
|
|
inherit (pkgs) openvpn;
|
|
|
|
|
|
2012-02-20 21:10:07 +01:00
|
|
|
|
makeOpenVPNJob = cfg: name:
|
2009-05-01 19:57:07 +02:00
|
|
|
|
let
|
2012-02-20 21:10:07 +01:00
|
|
|
|
|
2013-01-16 12:33:18 +01:00
|
|
|
|
path = (getAttr "openvpn-${name}" config.systemd.services).path;
|
2012-08-31 03:11:36 +02:00
|
|
|
|
|
2009-05-01 19:57:07 +02:00
|
|
|
|
upScript = ''
|
2012-02-20 21:10:07 +01:00
|
|
|
|
#! /bin/sh
|
|
|
|
|
export PATH=${path}
|
|
|
|
|
|
|
|
|
|
# For convenience in client scripts, extract the remote domain
|
|
|
|
|
# name and name server.
|
|
|
|
|
for var in ''${!foreign_option_*}; do
|
|
|
|
|
x=(''${!var})
|
|
|
|
|
if [ "''${x[0]}" = dhcp-option ]; then
|
|
|
|
|
if [ "''${x[1]}" = DOMAIN ]; then domain="''${x[2]}"
|
|
|
|
|
elif [ "''${x[1]}" = DNS ]; then nameserver="''${x[2]}"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
done
|
2012-08-31 03:11:36 +02:00
|
|
|
|
|
2009-05-01 19:57:07 +02:00
|
|
|
|
${cfg.up}
|
|
|
|
|
'';
|
2012-08-31 03:11:36 +02:00
|
|
|
|
|
2009-05-01 19:57:07 +02:00
|
|
|
|
downScript = ''
|
2012-02-20 21:10:07 +01:00
|
|
|
|
#! /bin/sh
|
|
|
|
|
export PATH=${path}
|
2009-05-01 19:57:07 +02:00
|
|
|
|
${cfg.down}
|
|
|
|
|
'';
|
2012-08-31 03:11:36 +02:00
|
|
|
|
|
2009-10-23 13:30:54 +02:00
|
|
|
|
configFile = pkgs.writeText "openvpn-config-${name}"
|
2009-10-12 18:36:19 +02:00
|
|
|
|
''
|
2013-05-28 14:38:13 +02:00
|
|
|
|
errors-to-stderr
|
2012-02-20 21:10:07 +01:00
|
|
|
|
${optionalString (cfg.up != "" || cfg.down != "") "script-security 2"}
|
2009-10-12 18:36:19 +02:00
|
|
|
|
${cfg.config}
|
2012-02-20 21:10:07 +01:00
|
|
|
|
${optionalString (cfg.up != "") "up ${pkgs.writeScript "openvpn-${name}-up" upScript}"}
|
|
|
|
|
${optionalString (cfg.down != "") "down ${pkgs.writeScript "openvpn-${name}-down" downScript}"}
|
2009-10-12 18:36:19 +02:00
|
|
|
|
'';
|
2012-08-31 03:11:36 +02:00
|
|
|
|
|
2009-05-01 19:57:07 +02:00
|
|
|
|
in {
|
2012-02-20 21:10:07 +01:00
|
|
|
|
description = "OpenVPN instance ‘${name}’";
|
2009-05-01 19:57:07 +02:00
|
|
|
|
|
2013-06-02 10:23:03 +02:00
|
|
|
|
wantedBy = optional cfg.autoStart "multi-user.target";
|
2013-05-28 14:38:13 +02:00
|
|
|
|
after = [ "network-interfaces.target" ];
|
2009-05-01 19:57:07 +02:00
|
|
|
|
|
2012-02-20 21:10:07 +01:00
|
|
|
|
path = [ pkgs.iptables pkgs.iproute pkgs.nettools ];
|
2009-10-23 13:30:54 +02:00
|
|
|
|
|
2013-05-28 14:38:13 +02:00
|
|
|
|
serviceConfig.ExecStart = "@${openvpn}/sbin/openvpn openvpn --config ${configFile}";
|
|
|
|
|
serviceConfig.Restart = "always";
|
2009-10-23 13:30:54 +02:00
|
|
|
|
};
|
|
|
|
|
|
2009-05-01 19:57:07 +02:00
|
|
|
|
in
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
|
|
options = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2012-02-20 21:10:07 +01:00
|
|
|
|
/* !!! Obsolete. */
|
|
|
|
|
services.openvpn.enable = mkOption {
|
|
|
|
|
default = true;
|
|
|
|
|
description = "Whether to enable OpenVPN.";
|
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2012-02-20 21:10:07 +01:00
|
|
|
|
services.openvpn.servers = mkOption {
|
|
|
|
|
default = {};
|
|
|
|
|
|
2013-10-30 16:19:07 +01:00
|
|
|
|
example = literalExample ''
|
|
|
|
|
{
|
|
|
|
|
server = {
|
|
|
|
|
config = '''
|
|
|
|
|
# Simplest server configuration: http://openvpn.net/index.php/documentation/miscellaneous/static-key-mini-howto.html.
|
|
|
|
|
# server :
|
|
|
|
|
dev tun
|
|
|
|
|
ifconfig 10.8.0.1 10.8.0.2
|
|
|
|
|
secret /root/static.key
|
|
|
|
|
''';
|
|
|
|
|
up = "ip route add ...";
|
|
|
|
|
down = "ip route del ...";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
client = {
|
|
|
|
|
config = '''
|
|
|
|
|
client
|
|
|
|
|
remote vpn.example.org
|
|
|
|
|
dev tun
|
|
|
|
|
proto tcp-client
|
|
|
|
|
port 8080
|
|
|
|
|
ca /root/.vpn/ca.crt
|
|
|
|
|
cert /root/.vpn/alice.crt
|
|
|
|
|
key /root/.vpn/alice.key
|
|
|
|
|
''';
|
|
|
|
|
up = "echo nameserver $nameserver | ''${pkgs.openresolv}/sbin/resolvconf -m 0 -a $dev";
|
|
|
|
|
down = "''${pkgs.openresolv}/sbin/resolvconf -d $dev";
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
'';
|
2009-10-12 18:36:19 +02:00
|
|
|
|
|
2012-02-20 21:10:07 +01:00
|
|
|
|
description = ''
|
2013-10-31 13:26:06 +01:00
|
|
|
|
Each attribute of this option defines a systemd service that
|
|
|
|
|
runs an OpenVPN instance. These can be OpenVPN servers or
|
|
|
|
|
clients. The name of each systemd service is
|
|
|
|
|
<literal>openvpn-<replaceable>name</replaceable>.service</literal>,
|
2012-02-20 21:10:07 +01:00
|
|
|
|
where <replaceable>name</replaceable> is the corresponding
|
|
|
|
|
attribute name.
|
|
|
|
|
'';
|
2009-10-23 13:30:54 +02:00
|
|
|
|
|
2012-02-20 21:10:07 +01:00
|
|
|
|
type = types.attrsOf types.optionSet;
|
2012-08-31 03:11:36 +02:00
|
|
|
|
|
2013-10-28 00:08:42 +01:00
|
|
|
|
options = {
|
2012-02-20 21:10:07 +01:00
|
|
|
|
|
|
|
|
|
config = mkOption {
|
2013-10-28 00:08:42 +01:00
|
|
|
|
type = types.lines;
|
|
|
|
|
description = ''
|
2012-02-20 21:10:07 +01:00
|
|
|
|
Configuration of this OpenVPN instance. See
|
|
|
|
|
<citerefentry><refentrytitle>openvpn</refentrytitle><manvolnum>8</manvolnum></citerefentry>
|
|
|
|
|
for details.
|
|
|
|
|
'';
|
2009-10-23 13:30:54 +02:00
|
|
|
|
};
|
|
|
|
|
|
2012-02-20 21:10:07 +01:00
|
|
|
|
up = mkOption {
|
|
|
|
|
default = "";
|
2013-10-28 00:08:42 +01:00
|
|
|
|
type = types.lines;
|
2012-02-20 21:10:07 +01:00
|
|
|
|
description = ''
|
|
|
|
|
Shell commands executed when the instance is starting.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2009-10-23 13:30:54 +02:00
|
|
|
|
|
2012-02-20 21:10:07 +01:00
|
|
|
|
down = mkOption {
|
|
|
|
|
default = "";
|
2013-10-28 00:08:42 +01:00
|
|
|
|
type = types.lines;
|
2012-02-20 21:10:07 +01:00
|
|
|
|
description = ''
|
|
|
|
|
Shell commands executed when the instance is shutting down.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2009-10-23 13:30:54 +02:00
|
|
|
|
|
2013-05-28 14:38:13 +02:00
|
|
|
|
autoStart = mkOption {
|
|
|
|
|
default = true;
|
|
|
|
|
type = types.bool;
|
|
|
|
|
description = "Whether this OpenVPN instance should be started automatically.";
|
|
|
|
|
};
|
|
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
|
};
|
2009-10-23 13:30:54 +02:00
|
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
2009-05-01 19:57:07 +02:00
|
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
|
###### implementation
|
2009-05-01 19:57:07 +02:00
|
|
|
|
|
2012-02-20 21:10:07 +01:00
|
|
|
|
config = mkIf (cfg.servers != {}) {
|
2010-10-18 12:40:08 +02:00
|
|
|
|
|
2013-05-28 14:38:13 +02:00
|
|
|
|
systemd.services = listToAttrs (mapAttrsFlatten (name: value: nameValuePair "openvpn-${name}" (makeOpenVPNJob value name)) cfg.servers);
|
2010-10-18 12:40:08 +02:00
|
|
|
|
|
|
|
|
|
environment.systemPackages = [ openvpn ];
|
2012-08-31 03:11:36 +02:00
|
|
|
|
|
2012-02-20 21:10:07 +01:00
|
|
|
|
boot.kernelModules = [ "tun" ];
|
2012-08-31 03:11:36 +02:00
|
|
|
|
|
2009-05-01 19:57:07 +02:00
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2009-05-01 19:57:07 +02:00
|
|
|
|
}
|