blob: 90ad5f0fa656db9c3ba795c8f81e4c67d1ece543 (
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
{ config, lib, pkgs, ... }:
with lib;
let
portSpec = name: ''
port ${name}
type pipe
protocol e
reliable true
command ${pkgs.openssh}/bin/ssh -x -o batchmode=yes ${name}
'';
sysSpec = name: ''
system ${name}
time Any
port ${name}
chat ""
protocol e
command-path ${concatStringsSep " " config.services.uucp.commandPath}
'';
in {
options = {
services.uucp = {
enable = mkOption {
type = types.bool;
default = false;
description = ''
If enabled we set up an account accesible via uucp over ssh
'';
};
nodeName = mkOption {
type = types.str;
default = "nixos";
description = "uucp node name";
};
sshUser = mkOption {
type = types.attrs;
default = {};
description = "Overrides for the local uucp linux-user";
};
sshConfig = mkOption {
type = types.str;
default = "";
description = "~uucp/.ssh/config";
};
remoteNodes = mkOption {
type = types.listOf types.str;
default = {};
description = ''
Ports to set up
Names will probably need to be configured in sshConfig
'';
};
commandPath = mkOption {
type = types.listOf types.path;
default = [ "${pkgs.rmail}/bin" ];
description = ''
Command search path for all systems
'';
};
spoolDir = mkOption {
type = types.path;
default = "/var/spool/uucp";
description = "Spool directory";
};
lockDir = mkOption {
type = types.path;
default = "/var/spool/uucp";
description = "Lock directory";
};
pubDir = mkOption {
type = types.path;
default = "/var/spool/uucppublic";
description = "Public directory";
};
logFile = mkOption {
type = types.path;
default = "/var/log/uucp";
description = "Log file";
};
statFile = mkOption {
type = types.path;
default = "/var/log/uucp.stat";
description = "Statistics file";
};
debugFile = mkOption {
type = types.path;
default = "/var/log/uucp.debug";
description = "Debug file";
};
interval = mkOption {
type = types.nullOr types.str;
default = "00 * * * *";
description = ''
Specification of when to run `uucico' in format used by cron
The default is to do so every hour
'';
};
extraConfig = mkOption {
type = types.string;
default = "";
description = "Extra configuration to append verbatim to `/etc/uucp/config'";
};
};
};
config = mkIf config.services.uucp.enable {
environment.etc."uucp/config" = {
text = ''
hostname ${config.services.uucp.nodeName}
spool ${config.services.uucp.spoolDir}
lockdir ${config.services.uucp.lockDir}
pubdir ${config.services.uucp.pubDir}
logfile ${config.services.uucp.logFile}
statfile ${config.services.uucp.statFile}
debugfile ${config.services.uucp.debugFile}
${config.services.uucp.extraConfig}
'';
};
users.users."uucp" = {
name = "uucp";
isSystemUser = true;
isNormalUser = false;
createHome = true;
home = config.services.uucp.spoolDir;
description = "User for uucp over ssh";
useDefaultShell = true;
} // config.services.uucp.sshUser;
system.activationScripts."uucp-sshconfig" = ''
mkdir -p ${config.users.users."uucp".home}/.ssh
chown ${config.users.users."uucp".name}:${config.users.users."uucp".group} ${config.users.users."uucp".home}/.ssh
chmod 700 ${config.users.users."uucp".home}/.ssh
ln -fs ${builtins.toFile "ssh-config" config.services.uucp.sshConfig} ${config.users.users."uucp".home}/.ssh/config
'';
system.activationScripts."uucp-logs" = ''
touch ${config.services.uucp.logFile}
chown ${config.users.users."uucp".name}:${config.users.users."uucp".group} ${config.services.uucp.logFile}
chmod 644 ${config.services.uucp.logFile}
touch ${config.services.uucp.statFile}
chown ${config.users.users."uucp".name}:${config.users.users."uucp".group} ${config.services.uucp.statFile}
chmod 644 ${config.services.uucp.statFile}
touch ${config.services.uucp.debugFile}
chown ${config.users.users."uucp".name}:${config.users.users."uucp".group} ${config.services.uucp.debugFile}
chmod 644 ${config.services.uucp.debugFile}
'';
environment.etc."uucp/port" = {
text = ''
port ssh
type stdin
protocol e
'' + concatStringsSep "\n" (map portSpec config.services.uucp.remoteNodes);
};
environment.etc."uucp/sys" = {
text = concatStringsSep "\n" (map sysSpec config.services.uucp.remoteNodes);
};
security.setuidOwners = map (p: {program = p; owner = "root"; group = "root"; setuid = true; setgid = false;}) ["uucico" "uuxqt" "cu" "uucp" "uuname" "uustat" "uux"];
nixpkgs.config.packageOverrides = pkgs: with pkgs; {
uucp = stdenv.lib.overrideDerivation uucp (oldAttrs: {
configureFlags = "--with-newconfigdir=/etc/uucp";
});
rmail = pkgs.writeScriptBin "rmail" ''
#!${pkgs.stdenv.shell}
# Dummy UUCP rmail command for postfix/qmail systems
IFS=" " read junk from junk junk junk junk junk junk junk relay
case "$from" in
*[@!]*) ;;
*) from="$from@$relay";;
esac
exec /var/setuid-wrappers/sendmail -i -f "$from" -- "$@"
'';
};
environment.systemPackages = with pkgs; [
uucp
];
services.cron.systemCronJobs = (map (name: "${config.services.uucp.interval} /var/setuid-wrappers/uucico -D -s ${name}") (if (config.services.uucp.interval != null) then config.services.uucp.remoteNodes else []));
};
}
|