2019-08-19 13:44:10 -07:00
|
|
|
# See `man systemd.exec` and `man systemd.resource-control` for an explanation
|
|
|
|
# of the various systemd options available through this module.
|
|
|
|
|
2020-05-22 06:59:18 -07:00
|
|
|
lib: pkgs:
|
2019-04-27 16:53:26 -07:00
|
|
|
|
|
|
|
with lib;
|
2019-11-27 05:04:22 -08:00
|
|
|
{
|
2020-05-06 01:57:48 -07:00
|
|
|
# These settings roughly follow systemd's "strict" security profile
|
2019-04-27 12:21:45 -07:00
|
|
|
defaultHardening = {
|
|
|
|
PrivateTmp = "true";
|
2020-05-05 08:15:16 -07:00
|
|
|
ProtectSystem = "strict";
|
2019-04-27 15:27:25 -07:00
|
|
|
ProtectHome = "true";
|
2019-04-27 12:21:45 -07:00
|
|
|
NoNewPrivileges = "true";
|
|
|
|
PrivateDevices = "true";
|
|
|
|
MemoryDenyWriteExecute = "true";
|
2019-04-27 15:27:25 -07:00
|
|
|
ProtectKernelTunables = "true";
|
|
|
|
ProtectKernelModules = "true";
|
|
|
|
ProtectControlGroups = "true";
|
|
|
|
RestrictAddressFamilies = "AF_UNIX AF_INET AF_INET6";
|
2019-04-28 06:11:27 -07:00
|
|
|
RestrictNamespaces = "true";
|
2019-04-27 15:27:25 -07:00
|
|
|
LockPersonality = "true";
|
2019-04-27 16:53:26 -07:00
|
|
|
IPAddressDeny = "any";
|
2020-05-06 01:28:00 -07:00
|
|
|
PrivateUsers = "true";
|
2020-05-06 01:19:14 -07:00
|
|
|
RestrictSUIDSGID = "true";
|
|
|
|
RemoveIPC = "true";
|
|
|
|
RestrictRealtime = "true";
|
|
|
|
ProtectHostname = "true";
|
2020-05-05 06:27:07 -07:00
|
|
|
CapabilityBoundingSet = "";
|
2020-05-06 01:57:48 -07:00
|
|
|
# @system-service whitelist and docker seccomp blacklist (except for "clone"
|
|
|
|
# which is a core requirement for systemd services)
|
|
|
|
SystemCallFilter = [ "@system-service" "~add_key clone3 get_mempolicy kcmp keyctl mbind move_pages name_to_handle_at personality process_vm_readv process_vm_writev request_key set_mempolicy setns unshare userfaultfd" ];
|
2019-05-01 01:20:31 -07:00
|
|
|
SystemCallArchitectures= "native";
|
2019-04-27 12:21:45 -07:00
|
|
|
};
|
2019-11-27 05:04:22 -08:00
|
|
|
|
2019-05-03 03:44:16 -07:00
|
|
|
# nodejs applications apparently rely on memory write execute
|
|
|
|
nodejs = { MemoryDenyWriteExecute = "false"; };
|
2019-04-27 16:53:26 -07:00
|
|
|
# Allow tor traffic. Allow takes precedence over Deny.
|
2019-04-28 11:54:13 -07:00
|
|
|
allowTor = {
|
|
|
|
IPAddressAllow = "127.0.0.1/32 ::1/128";
|
|
|
|
};
|
2019-04-27 16:53:26 -07:00
|
|
|
# Allow any traffic
|
|
|
|
allowAnyIP = { IPAddressAllow = "any"; };
|
2019-08-19 14:11:08 -07:00
|
|
|
allowAnyProtocol = { RestrictAddressFamilies = "~"; };
|
2019-04-27 16:53:26 -07:00
|
|
|
|
2019-08-07 05:52:34 -07:00
|
|
|
enforceTor = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
"Whether to force Tor on a service by only allowing connections from and
|
|
|
|
to 127.0.0.1;";
|
|
|
|
'';
|
|
|
|
};
|
2020-05-22 06:59:18 -07:00
|
|
|
|
|
|
|
script = src: pkgs.writers.writeBash "script" ''
|
|
|
|
set -eo pipefail
|
|
|
|
${src}
|
|
|
|
'';
|
2019-04-27 12:21:45 -07:00
|
|
|
}
|