2009-10-12 18:36:19 +02:00
|
|
|
{ config, pkgs, ... }:
|
2008-02-07 13:41:18 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
with pkgs.lib;
|
2008-02-07 13:41:18 +01:00
|
|
|
|
2011-09-14 20:20:50 +02:00
|
|
|
let
|
2009-03-06 13:26:43 +01:00
|
|
|
|
2013-10-12 01:04:59 +02:00
|
|
|
/* minimal secure setup:
|
|
|
|
|
|
|
|
enable = true;
|
|
|
|
forceLocalLoginsSSL = true;
|
|
|
|
forceLocalDataSSL = true;
|
|
|
|
userlistDeny = false;
|
|
|
|
localUsers = true;
|
|
|
|
userlist = ["non-root-user" "other-non-root-user"];
|
|
|
|
rsaCertFile = "/var/vsftpd/vsftpd.pem";
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
cfg = config.services.vsftpd;
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
inherit (pkgs) vsftpd;
|
2009-03-06 13:26:43 +01:00
|
|
|
|
2013-10-12 01:04:59 +02:00
|
|
|
yesNoOption = nixosName: vsftpdName: default: description: {
|
|
|
|
cfgText = "${vsftpdName}=${if getAttr nixosName cfg then "YES" else "NO"}";
|
|
|
|
|
|
|
|
nixosOption = {
|
|
|
|
name = nixosName;
|
|
|
|
value = mkOption {
|
|
|
|
inherit description default;
|
|
|
|
type = types.bool;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
optionDescription = [
|
|
|
|
|
|
|
|
(yesNoOption "anonymousUser" "anonymous_enable" false ''
|
|
|
|
Whether to enable the anonymous FTP user.
|
|
|
|
'')
|
|
|
|
(yesNoOption "localUsers" "local_enable" false ''
|
|
|
|
Whether to enable FTP for local users.
|
|
|
|
'')
|
|
|
|
(yesNoOption "writeEnable" "write_enable" false ''
|
|
|
|
Whether any write activity is permitted to users.
|
|
|
|
'')
|
|
|
|
(yesNoOption "anonymousUploadEnable" "anon_upload_enable" false ''
|
|
|
|
Whether any uploads are permitted to anonymous users.
|
|
|
|
'')
|
|
|
|
(yesNoOption "anonymousMkdirEnable" "anon_mkdir_write_enable" false ''
|
|
|
|
Whether any uploads are permitted to anonymous users.
|
|
|
|
'')
|
|
|
|
(yesNoOption "chrootlocalUser" "chroot_local_user" false ''
|
|
|
|
Whether local users are confined to their home directory.
|
|
|
|
'')
|
|
|
|
(yesNoOption "userlistEnable" "userlist_enable" false ''
|
|
|
|
Whether users are included.
|
|
|
|
'')
|
|
|
|
(yesNoOption "userlistDeny" "userlist_deny" false ''
|
|
|
|
Specifies whether <option>userlistFile</option> is a list of user
|
|
|
|
names to allow or deny access.
|
|
|
|
The default <literal>false</literal> means whitelist/allow.
|
|
|
|
'')
|
|
|
|
(yesNoOption "forceLocalLoginsSSL" "force_local_logins_ssl" true ''
|
|
|
|
Only applies if <option>sslEnable</option> is true. Non anonymous (local) users
|
|
|
|
must use a secure SSL connection to send a password.
|
|
|
|
'')
|
|
|
|
(yesNoOption "forceLocalDataSSL" "force_local_data_ssl" true ''
|
|
|
|
Only applies if <option>sslEnable</option> is true. Non anonymous (local) users
|
|
|
|
must use a secure SSL connection for sending/receiving data on data connection.
|
|
|
|
'')
|
|
|
|
(yesNoOption "ssl_tlsv1" "ssl_tlsv1" true '' '')
|
|
|
|
(yesNoOption "ssl_sslv2" "ssl_sslv2" false '' '')
|
|
|
|
(yesNoOption "ssl_sslv3" "ssl_sslv3" false '' '')
|
|
|
|
|
|
|
|
{
|
|
|
|
cfgText = if cfg.rsaCertFile == null then ""
|
|
|
|
else ''
|
|
|
|
sslEnable=YES
|
|
|
|
rsa_cert_file=${cfg.rsaCertFile}
|
|
|
|
'';
|
|
|
|
|
|
|
|
nixosOption = {
|
|
|
|
name = "rsaCertFile";
|
|
|
|
value = mkOption {
|
|
|
|
default = null;
|
|
|
|
description = ''
|
|
|
|
rsa certificate file.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
2009-03-06 13:26:43 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
in
|
2009-04-08 16:01:16 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
services.vsftpd = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = "Whether to enable the vsftpd FTP server.";
|
2009-03-06 13:26:43 +01:00
|
|
|
};
|
|
|
|
|
2013-10-12 01:04:59 +02:00
|
|
|
userlist = mkOption {
|
|
|
|
default = [];
|
2009-03-06 13:26:43 +01:00
|
|
|
|
2013-10-12 01:04:59 +02:00
|
|
|
description = ''
|
|
|
|
See <option>userlistFile</option>.
|
|
|
|
'';
|
2009-10-12 18:36:19 +02:00
|
|
|
};
|
|
|
|
|
2013-10-12 01:04:59 +02:00
|
|
|
userlistFile = mkOption {
|
|
|
|
default = pkgs.writeText "userlist" (concatMapStrings (x: "${x}\n") cfg.userlist);
|
|
|
|
description = ''
|
|
|
|
Newline separated list of names to be allowed/denied if <option>userlistEnable</option>
|
|
|
|
is <literal>true</literal>. Meaning see <option>userlistDeny</option>.
|
2009-10-12 18:36:19 +02:00
|
|
|
|
2013-10-12 01:04:59 +02:00
|
|
|
The default is a file containing the users from <option>userlist</option>.
|
2009-10-12 18:36:19 +02:00
|
|
|
|
2013-10-12 01:04:59 +02:00
|
|
|
If explicitely set to null userlist_file will not be set in vsftpd's config file.
|
|
|
|
'';
|
2009-10-12 18:36:19 +02:00
|
|
|
};
|
|
|
|
|
2013-10-12 01:04:59 +02:00
|
|
|
} // (listToAttrs (catAttrs "nixosOption" optionDescription)) ;
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-03-06 13:26:43 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
###### implementation
|
2009-03-06 13:26:43 +01:00
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
2013-10-12 01:04:59 +02:00
|
|
|
assertions = [
|
|
|
|
{
|
|
|
|
assertion =
|
|
|
|
(cfg.forceLocalLoginsSSL -> cfg.rsaCertFile != null)
|
|
|
|
&& (cfg.forceLocalDataSSL -> cfg.rsaCertFile != null);
|
|
|
|
message = "vsftpd: If forceLocalLoginsSSL or forceLocalDataSSL is true then a rsaCertFile must be provided!";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
users.extraUsers =
|
|
|
|
[ { name = "vsftpd";
|
2009-05-29 16:25:56 +02:00
|
|
|
uid = config.ids.uids.vsftpd;
|
2009-03-06 13:26:43 +01:00
|
|
|
description = "VSFTPD user";
|
|
|
|
home = "/homeless-shelter";
|
|
|
|
}
|
2009-10-12 18:36:19 +02:00
|
|
|
] ++ pkgs.lib.optional cfg.anonymousUser
|
2009-03-06 13:26:43 +01:00
|
|
|
{ name = "ftp";
|
2009-05-29 16:25:56 +02:00
|
|
|
uid = config.ids.uids.ftp;
|
2009-03-06 13:26:43 +01:00
|
|
|
group = "ftp";
|
2009-10-12 18:36:19 +02:00
|
|
|
description = "Anonymous FTP user";
|
|
|
|
home = cfg.anonymousUserHome;
|
2009-03-06 13:26:43 +01:00
|
|
|
};
|
|
|
|
|
2009-10-12 18:36:19 +02:00
|
|
|
users.extraGroups = singleton
|
2009-03-06 13:26:43 +01:00
|
|
|
{ name = "ftp";
|
2009-05-29 16:25:56 +02:00
|
|
|
gid = config.ids.gids.ftp;
|
2009-10-12 18:36:19 +02:00
|
|
|
};
|
|
|
|
|
2013-10-12 01:04:59 +02:00
|
|
|
# If you really have to access root via FTP use mkOverride or userlistDeny
|
|
|
|
# = false and whitelist root
|
|
|
|
services.vsftpd.userlist = if cfg.userlistDeny then ["root"] else [];
|
|
|
|
|
|
|
|
environment.etc."vsftpd.conf".text =
|
|
|
|
concatMapStrings (x: "${x.cfgText}\n") optionDescription
|
|
|
|
+ ''
|
|
|
|
${if cfg.userlistFile == null then ""
|
|
|
|
else "userlist_file=${cfg.userlistFile}"}
|
|
|
|
background=NO
|
|
|
|
listen=YES
|
|
|
|
nopriv_user=vsftpd
|
|
|
|
secure_chroot_dir=/var/empty
|
|
|
|
'';
|
|
|
|
|
2009-10-12 20:09:34 +02:00
|
|
|
jobs.vsftpd =
|
2009-10-12 18:36:19 +02:00
|
|
|
{ description = "vsftpd server";
|
|
|
|
|
2009-11-06 23:19:17 +01:00
|
|
|
startOn = "started network-interfaces";
|
|
|
|
stopOn = "stopping network-interfaces";
|
2009-10-12 18:36:19 +02:00
|
|
|
|
|
|
|
preStart =
|
|
|
|
''
|
2010-05-08 21:12:36 +02:00
|
|
|
${if cfg.anonymousUser then ''
|
2011-07-28 11:42:20 +02:00
|
|
|
mkdir -p -m 555 ${cfg.anonymousUserHome}
|
2010-05-08 21:12:36 +02:00
|
|
|
chown -R ftp:ftp ${cfg.anonymousUserHome}
|
|
|
|
'' else ""}
|
2009-10-12 18:36:19 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
exec = "${vsftpd}/sbin/vsftpd /etc/vsftpd.conf";
|
|
|
|
};
|
2009-03-06 13:26:43 +01:00
|
|
|
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2008-02-07 13:41:18 +01:00
|
|
|
}
|