aboutsummaryrefslogtreecommitdiff
path: root/nix/service.mod.nix
blob: b87418b11163a55042f37cb2f52864d4fd11bfe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
  config,
  lib,
  pkgs,
  ...
}:

let
  cfg = config.services.tickwatch;
  forEachMonitor =
    f:
    lib.mapAttrs' (name: cfg: {
      name = "tickwatch-${name}";
      value = f cfg;
    }) cfg.monitors;

  monitor.options = {
    enable = lib.mkOption {
      type = lib.types.bool;
      default = true;
      description = "Whether to enable this monitor.";
    };

    monitor = lib.mkOption {
      type = lib.types.str;
      example = "ping";
      description = "Type of this monitor.";
    };

    target = lib.mkOption {
      type = lib.types.str;
      example = "6/example.net";
      description = "Target of this monitor.";
    };

    settings = lib.mkOption {
      type =
        with lib.types;
        attrsOf (oneOf [
          str
          int
          bool
        ]);
      example = {
        timestamp = "none";
        range = "0:100";
      };
      description = "Settings for this monitor.";
    };

    logFile = lib.mkOption {
      type = lib.types.str;
      default = "";
      description = ''
        Path to output log file for this monitor.
        Must be writable by this monitor's user.
        Leave empty to log to the service's journald.
      '';
    };

    user = lib.mkOption {
      type = lib.types.str;
      default = "";
      description = ''
        User as which to run this monitor.
        Leave empty to use a restricted dynamically-allocated user.
      '';
    };

    group = lib.mkOption {
      type = lib.types.str;
      default = "";
      description = ''
        Group as which to run this monitor.
        Leave empty to use a restricted dynamically-allocated group.
      '';
    };
  };

in
{
  meta = {
    maintainers = with lib.maintainers; [ euxane ];
  };

  options.services.tickwatch = {
    package = lib.mkPackageOption pkgs "tickwatch" { };

    monitors = lib.mkOption {
      type = with lib.types; attrsOf (submodule monitor);
      default = { };
      description = "Configuration for tickwatch monitors.";
    };
  };

  config = lib.mkIf (cfg.monitors != { }) {
    systemd.services = forEachMonitor (monCfg: {
      wantedBy = [ "multi-user.target" ];
      after = [ "network.target" ];

      script = ''
        ${lib.getExe cfg.package} ${
          lib.escapeShellArgs (
            (lib.cli.toGNUCommandLine {
              optionValueSeparator = "=";
            } monCfg.settings)
            ++ [
              monCfg.monitor
              monCfg.target
            ]
          )
        } ${lib.optionalString (monCfg.logFile != "") ">> ${monCfg.logFile}"}
      '';

      serviceConfig =
        {
          Restart = "on-failure";
          RestartSec = 30;

          # for ping monitor
          CapabilityBoundingSet = [ "CAP_NET_RAW" ];
          AmbientCapabilities = [ "CAP_NET_RAW" ];
          PrivateNetwork = false;

          # service hardening
          PrivateTmp = true;
          PrivateDevices = true;
          ProtectKernelTunables = true;
          ProtectControlGroups = true;
          RestrictSUIDSGID = true;
          ProtectKernelModules = true;
          SystemCallArchitectures = "native";
          PrivateMounts = true;
          LockPersonality = true;
          ProtectHostname = true;
          RestrictRealtime = true;
          ProtectSystem = "strict";
          ProtectHome = true;
          NoNewPrivileges = true;
          RestrictAddressFamilies = [
            "AF_INET"
            "AF_INET6"
          ];
          MemoryDenyWriteExecute = true;
          PrivateUsers = false;
          SystemCallErrorNumber = "EPERM";
          SystemCallFilter = [ "@system-service" ];
          ProtectKernelLogs = true;
          DevicePolicy = "closed";
          ProtectClock = true;
          ProtectProc = "noaccess";
          ProcSubset = "pid";
          RestrictNamespaces = true;
          RemoveIPC = true;
          UMask = "0077";
        }
        // (
          if (monCfg.user != "" || monCfg.group != "") then
            {
              User = monCfg.user;
              Group = monCfg.group;
            }
          else
            {
              DynamicUser = true;
            }
        );
    });
  };
}