aboutsummaryrefslogtreecommitdiff
path: root/nix/service.mod.nix
blob: 6b283707c98668d5b1c3baae000ee11e5adaf7e1 (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
{
  config,
  lib,
  pkgs,
  ...
}:

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

  monitor = { name, ... }: {
    options = {
      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
          ]);
        default = { };
        example = {
          timestamp = "none";
          range = "0:100";
        };
        description = "Settings for this monitor.";
      };

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

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;

        DynamicUser = true;
        User = "tickwatch";
        Group = "tickwatch";
        LogsDirectory = "tickwatch";

        # 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;
      };
    });
  };
}