-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmodule.nix
More file actions
636 lines (573 loc) · 22.9 KB
/
module.nix
File metadata and controls
636 lines (573 loc) · 22.9 KB
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
self:
{
config,
pkgs,
lib,
...
}:
let
inherit (builtins) hashString;
inherit (lib.trivial) isInt mod toHexString;
inherit (lib.strings)
isString
typeOf
substring
split
escapeRegex
escapeURL
escapeShellArg
concatStrings
concatStringsSep
replaceStrings
fixedWidthString
toJSON
;
inherit (lib.lists)
elemAt
length
filter
singleton
imap0
foldl
;
inherit (lib.attrsets)
mapAttrs
mapAttrs'
mapAttrsToList
filterAttrs
optionalAttrs
nameValuePair
;
inherit (lib.options) mkOption literalExpression;
inherit (lib.modules) mkIf mkMerge mkRenamedOptionModule;
inherit (lib) types;
# Parses a PKCS#11 id into an integer.
parseId =
keyName: id:
if isInt id && id >= 0 then
id
else if isString id then
(builtins.fromTOML "id=0x${id}").id
else
throw "ID for nixpkcs key '${keyName}' was not an unsigned integer or hex string";
# Creates a PKCS#11 URI.
mkPkcs11Uri =
{
authority,
# The authority
query ? { }, # The query
}:
let
/*
Converts an integer to a value in a PKCS#11 URI using the following rules:
0: %00
1: %01
10: %0a
256: %01%00
...
That is: it's interpreted as a 63-bit positive integer and leading zeroes are stripped.
*/
intToUriValue =
value:
let
zero = "%00";
# Support Nix's full integer width for PKCS#11 IDs.
paddedValue = fixedWidthString 16 "0" (toHexString value);
splitValue = split "([0-9A-F]{2})" paddedValue;
replacedValue = imap0 (
idx: vals:
let
even = mod idx 2 == 0;
val = if even then vals else elemAt vals 0;
splitLength = length splitValue;
in
if even && idx < splitLength - 1 && val == "" then "%" else val
) splitValue;
deprefixedValue =
let
regexSplit = split "^(${escapeRegex zero})+" (concatStrings replacedValue);
in
elemAt regexSplit (length regexSplit - 1);
in
if deprefixedValue == "" then zero else deprefixedValue;
# Serializes a string or int to a PKCS#11 value.
serializePkcs11UriValue =
value:
if isInt value && value >= 0 then
intToUriValue value
else if isString value then
escapeURL value
else
throw "only 8-bit ints and strings are supported in PKCS#11 URIs; got '${typeOf value}'";
# Converts a list of URI attrs to a query string.
toQuery = mapAttrsToList (
name: value:
if value == null then null else (escapeURL name) + "=" + (serializePkcs11UriValue value)
);
# The authority string. Just a query string joined with ;.
authorityString = concatStringsSep ";" (filter (x: x != null) (toQuery authority));
# The query string.
queryString =
let
queryValue = concatStringsSep "&" (filter (x: x != null) (toQuery query));
in
if queryValue == "" then "" else "?" + queryValue;
in
"pkcs11:" + authorityString + queryString;
# The nixpkcs config.
cfg = config.security.pkcs11;
in
{
imports = [
(mkRenamedOptionModule [ "nixpkcs" ] [ "security" "pkcs11" ])
];
options = {
security.pkcs11 = {
enable = mkOption {
type = types.bool;
default = false;
description = "Set to true to enable automated key management using nixpkcs.";
};
pcsc = {
enable = mkOption {
type = types.bool;
default = false;
description = "Set to true to enable PKCS#11 support using pcsc-lite";
};
users = mkOption {
description = "Any users that should be allowed to access pcsc-lite.";
default = [ ];
example = [ "alice" ];
type = types.listOf types.str;
};
};
tpm2 = {
enable = mkOption {
type = types.bool;
default = false;
description = "Set to true to enable TPM2 support";
};
};
environment = {
enable = mkOption {
type = types.bool;
default = true;
description = "Set to true to populate the system environment with nixpkcs keypairs' extraEnv.";
};
};
uri = {
enable = mkOption {
type = types.bool;
default = true;
description = "Set to true to enable the `nixpkcs-uri` command converting keypair names into URIs.";
};
package = mkOption {
type = types.package;
default = pkgs.writeShellApplication {
name = "nixpkcs-uri";
text = ''
set -euo pipefail
# Prints a key name and URI as a tab-separated string.
print_key() {
printf '%s\t%s\n' "$1" "''${keys["$1"]}"
}
declare -A keys=(
${concatStringsSep "\n " (
mapAttrsToList (name: value: "[${escapeShellArg name}]=${escapeShellArg value.uri}") cfg.keypairs
)}
)
if [ $# -gt 0 ]; then
# Require that all keys specified exist.
for key in "$@"; do
if [[ ! -v keys["$key"] ]]; then
echo "unknown key '$key'" >&2
exit 1
fi
done
if [ $# -gt 1 ]; then
# Print them all out with the requested names.
for key in "$@"; do
print_key "$key"
done
else
# Just print the URI if one is provided.
echo "''${keys["$1"]}"
fi
else
# Print all the key names and URIs if none are specified.
for key in "''${!keys[@]}"; do
print_key "$key"
done
fi
'';
};
description = "Override the nixpkcs-uri package, used to convert key names into PKCS#11 URIs.";
};
};
keypairs = mkOption {
description = "Keypairs to let nixpkcs manage on this host.";
default = { };
type = types.attrsOf (
types.submodule (
{ name, config, ... }:
{
options =
let
authority = {
inherit (config) token;
id = parseId name config.id;
slot-id = if config.slot == null then null else toString config.slot;
type = "private";
}
// optionalAttrs (!(config.pkcs11Module.noLabels or false)) {
# Only supply this for tokens that support labels.
object = name;
};
query = optionalAttrs (config.certOptions.pinFile != null) {
pin-source = "file:${config.certOptions.pinFile}";
};
in
{
enable = mkOption {
type = types.bool;
default = true;
description = "Set to true to disable this key.";
};
pkcs11Module = mkOption {
type = types.attrs;
description = "The PKCS#11 module to use for this key.";
example = literalExpression ''
inherit (pkgs.yubico-piv-tool) pkcs11Module;
'';
};
storeInitHook = mkOption {
type = with types; nullOr path;
default = pkgs.writeShellScript "default-store-init-hook" ":";
description = ''
Run the given script after the store is initialized and before nixpkcs runs.
This script has NIXPKCS_STORE_DIR exported to it.
This script also always has access to a wrapped OpenSSL and pkcs11-tool on its PATH, in addition to jq.
Returning nonzero from this script aborts nixpkcs.
'';
example = literalExpression ''
pkgs.writeShellScript "store-init-hook" '''
chown -R alice:users "$NIXPKCS_STORE_DIR"
'''
'';
};
token = mkOption {
type = types.str;
default = "nixpkcs";
description = "The token label.";
example = "YubiKey PIV #123456";
};
id = mkOption {
type = with types; either ints.unsigned (strMatching "^[0-9a-fA-F]{1,16}$");
description = "The PKCS#11 key ID.";
example = 42;
};
slot = mkOption {
type = with types; nullOr ints.u8;
default = null;
description = "The PKCS#11 slot ID. Not always required, but may be in some cases.";
example = 42;
};
uri = mkOption {
type = types.str;
default = mkPkcs11Uri {
inherit authority;
query = query // {
module-path = config.pkcs11Module.path;
};
};
description = "Overrides the PKCS#11 URI.";
example = "pkcs11:token=YubiKey%20PIV%20%23123456;id=%05;type=private";
};
rfc7512Uri = mkOption {
type = types.str;
default = mkPkcs11Uri {
inherit authority query;
};
description = "Overrides the PKCS#11 URI for applications that strictly follow the RFC.";
example = "pkcs11:token=YubiKey%20PIV%20%23123456;id=%05;type=private";
};
extraEnv = mkOption {
type = with types; attrsOf str;
default = config.pkcs11Module.mkEnv { };
description = "Extra environment variables to pass to this key's systemd unit";
example = literalExpression ''
{ NSS_LIB_PARAMS = "configDir=/etc/softokn"; }
'';
};
debug = mkOption {
type = types.bool;
default = false;
description = "Set to true to output verbose debugging messages for this key.";
example = true;
};
keyOptions = {
algorithm = mkOption {
type = types.str;
default = "EC";
description = "The key algorithm (EC, RSA).";
example = "EC";
};
type = mkOption {
type = types.str;
default = "secp384r1";
description = "The type of key to generate. Algorithm specific.";
example = "secp256r1";
};
usage = mkOption {
type = with types; listOf str;
default = [
"sign"
"derive"
];
description = "The key usage. An array of sign|derive|decrypt|wrap.";
example = literalExpression ''
["sign" "derive" "decrypt"]
'';
};
soPinFile = mkOption {
type = with types; nullOr path;
default = null;
description = "The file containing the security officer PIN.";
example = "/etc/nixpkcs/so.pin";
};
softFail = mkOption {
type = types.bool;
default = false;
description = ''
If set to true, exit with success if we can't check the key for renewal.
This is useful for removable devices like yubikeys.
'';
example = true;
};
force = mkOption {
type = types.bool;
default = false;
description = "Regenerate the key every time. This is dangerous, and is disabled by default.";
example = true;
};
destroyOld = mkOption {
type = types.bool;
default = false;
description = "Destroy the old key on the token when generating a new key. Defaults to false.";
example = true;
};
loginAsUser = mkOption {
type = types.bool;
default = true;
description = "Some tokens use the user login for key generation, and the SO login for personalization. If set, this will log in as the 'user' instead.";
example = true;
};
};
certOptions = {
digest = mkOption {
type = types.str;
default = "SHA256";
description = "The digest to use for this certificate.";
example = "SHA384";
};
serial = mkOption {
type = with types; nullOr str;
default = null;
description = "The serial to use for this certificate. Set to null to autogenerate. This should be a hex string, not decimal.";
example = "09f91102";
};
validStarting = mkOption {
type = with types; nullOr (strMatching "^[0-9]{4}-[0-9]{2}-[0-9]{2}$");
default = null;
description = "The date that this key should be generated, in YYYY-MM-DD format. Default today.";
example = "2025-12-25";
};
validityDays = mkOption {
type = types.ints.positive;
default = 365;
description = "The number of days that this cert should be valid for.";
example = 365 * 3;
};
renewalPeriod = mkOption {
type = types.int;
default = -1;
description = "The number of days before expiration that this certificate should be renewed. Set to -1 to disable auto-renewal.";
example = 14;
};
subject = mkOption {
type = types.str;
default = "O=NixOS/CN=nixpkcs Certificate";
description = "The subject to use for this certificate.";
example = "C=US/ST=California/L=Carlsbad/O=nixpkcs/CN=nixpkcs Example CA";
};
extensions = mkOption {
type = with types; listOf str;
default = [ ];
description = ''
Extensions to add. See OpenSSL documentation for the syntax.
If a `key=value` formatted item is provided, will add it using `-addext`.
Otherwise, adds it using `-extensions`.
'';
example = literalExpression ''
["v3_ca" "keyUsage=critical,nonRepudiation,keyCertSign,digitalSignature,cRLSign"]
'';
};
pinFile = mkOption {
type = with types; nullOr path;
default = null;
description = "The file containing the user PIN.";
example = "/etc/nixpkcs/user.pin";
};
writeTo = mkOption {
type = with types; nullOr path;
default = null;
description = "Write the certificate to this path whenever we regenerate it. Overridden by manually setting rekeyHook.";
example = "/home/alice/cert.crt";
};
rekeyHook = mkOption {
type = with types; nullOr path;
default =
if config.certOptions.writeTo == null then
null
else
pkgs.writeShellScript "default-rekey-hook" ''
cat > ${escapeShellArg config.certOptions.writeTo}
'';
description = ''
Run the given script whenever nixpkcs runs. The certificate is passed in on stdin.
NIXPKCS_KEY_SPEC is passed in as an environment variable, containing the NixOS module options.
You may use this to restart services when keys change.
- $1 is set to the name of the key.
- $2 is set to 'old' or 'new' depending on whether the certificate is the old or new one.
You may use this to do something with the certificate when it's checked or when it's renewed.
This script always has access to a wrapped OpenSSL and pkcs11-tool on its PATH, in addition to jq.
Returning nonzero from this script aborts rekey but returns normally.
'';
example = literalExpression ''
pkgs.writeShellScript "rekey-hook" '''
if [ "$2" == 'new' ]; then
cat > /home/alice/cert.crt
chown alice:alice /home/alice/cert.crt
fi
'''
'';
};
};
};
}
)
);
};
};
};
config =
let
enabledKeypairs = if cfg.enable then filterAttrs (_: value: value.enable) cfg.keypairs else [ ];
in
mkMerge [
(mkIf cfg.enable {
environment = {
# Place the nixpkgs-uri package on PATH.
systemPackages = mkIf cfg.uri.enable (singleton cfg.uri.package);
# Automatically set environment variables for the specified keypairs.
variables = mkIf cfg.environment.enable (
foldl (s: x: s // x) { } (mapAttrsToList (name: value: value.extraEnv) enabledKeypairs)
);
};
systemd.services = mapAttrs' (
name: value:
nameValuePair "nixpkcs@${name}" {
description = "nixpkcs service for key '${name}'";
startAt = "*-*-* 00:00:00";
wants = [ "basic.target" ];
after = [
"basic.target"
"multi-user.target"
];
wantedBy = [ "multi-user.target" ];
environment =
let
# Escapes systemd %-specifiers in the given value.
escapeSpecifiers = value: replaceStrings [ "%" ] [ "%%" ] (toString value);
in
mapAttrs (_: envValue: (escapeSpecifiers envValue)) (
value.extraEnv
// {
NIXPKCS_KEY_SPEC =
let
filteredValue = {
id = parseId name value.id;
# We don't want to pass the whole PKCS#11 module here; this should be enough.
inherit (value)
token
uri
keyOptions
certOptions
;
};
in
toJSON filteredValue;
NIXPKCS_LOCK_FILE =
let
# Come up with a lockfile key. We want to avoid concurrently running two instances
# of the script that use the same PKCS#11 module since there will frequently be
# connections to hardware involved. Better safe than sorry with hardware and
# cryptographic keying, and this involves both. So just use the Nix store path
# of the PKCS#11 token library we are using.
pkcs11ModuleKey = substring 0 8 (hashString "sha256" value.pkcs11Module.path);
lockfileKey = "nixpkcs-${pkcs11ModuleKey}.lock";
in
"/var/lock/${lockfileKey}";
}
// optionalAttrs ((value.pkcs11Module.storeInit or null) != null) {
NIXPKCS_STORE_INIT = value.pkcs11Module.storeInit;
}
// optionalAttrs (value.storeInitHook != null) {
NIXPKCS_STORE_INIT_HOOK = value.storeInitHook;
}
// optionalAttrs (value.pkcs11Module.noLabels or false) {
# For, e.g. Yubikeys, which don't support them.
NIXPKCS_NO_LABELS = 1;
}
// optionalAttrs value.debug {
NIXPKCS_DEBUG = 1;
}
);
serviceConfig = {
Type = "oneshot";
ExecStart = "@${pkgs.nixpkcs.withPkcs11Module value}/bin/nixpkcs.sh nixpkcs ${name}";
};
}
) enabledKeypairs;
})
(mkIf cfg.pcsc.enable {
services.pcscd.enable = true;
})
(mkIf (cfg.pcsc.enable && length cfg.pcsc.users > 0) {
environment.systemPackages =
let
pcscPolkitRule = pkgs.writeTextDir "share/polkit-1/rules.d/10-pcsc.rules" ''
var users = ${toJSON cfg.pcsc.users};
polkit.addRule(function (action, subject) {
if (action.id === "org.debian.pcsc-lite.access_pcsc" ||
action.id === "org.debian.pcsc-lite.access_card") {
for (var idx = 0; idx < users.length; idx++) {
if (subject.user === users[idx]) {
return polkit.Result.YES;
}
}
return polkit.Result.NO;
}
});
'';
in
singleton pcscPolkitRule;
})
(mkIf cfg.tpm2.enable {
security.tpm2 = {
enable = true;
abrmd.enable = true;
};
})
];
}