forked from TomMD/pam-u2f
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.c
1543 lines (1283 loc) · 37.6 KB
/
util.c
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
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (C) 2014-2022 Yubico AB - See COPYING
*/
#include <fido.h>
#include <fido/es256.h>
#include <fido/rs256.h>
#include <fido/eddsa.h>
#include <openssl/ec.h>
#include <openssl/obj_mac.h>
#include <inttypes.h>
#include <limits.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <pwd.h>
#include <errno.h>
#include <unistd.h>
#include <string.h>
#include <arpa/inet.h>
#include "b64.h"
#include "debug.h"
#include "util.h"
#define SSH_MAX_SIZE 8192
#define SSH_HEADER "-----BEGIN OPENSSH PRIVATE KEY-----\n"
#define SSH_HEADER_LEN (sizeof(SSH_HEADER) - 1)
#define SSH_TRAILER "-----END OPENSSH PRIVATE KEY-----\n"
#define SSH_TRAILER_LEN (sizeof(SSH_TRAILER) - 1)
#define SSH_AUTH_MAGIC "openssh-key-v1"
#define SSH_AUTH_MAGIC_LEN (sizeof(SSH_AUTH_MAGIC)) // AUTH_MAGIC includes \0
#define SSH_ES256 "sk-ecdsa-sha2-nistp256@openssh.com"
#define SSH_ES256_LEN (sizeof(SSH_ES256) - 1)
#define SSH_ES256_POINT_LEN 65
#define SSH_P256_NAME "nistp256"
#define SSH_P256_NAME_LEN (sizeof(SSH_P256_NAME) - 1)
#define SSH_EDDSA "sk-ssh-ed25519@openssh.com"
#define SSH_EDDSA_LEN (sizeof(SSH_EDDSA) - 1)
#define SSH_EDDSA_POINT_LEN 32
#define SSH_SK_USER_PRESENCE_REQD 0x01
#define SSH_SK_USER_VERIFICATION_REQD 0x04
#define SSH_SK_RESIDENT_KEY 0x20
struct opts {
fido_opt_t up;
fido_opt_t uv;
fido_opt_t pin;
};
struct pk {
void *ptr;
int type;
};
static int hex_decode(const char *ascii_hex, unsigned char **blob,
size_t *blob_len) {
*blob = NULL;
*blob_len = 0;
if (ascii_hex == NULL || (strlen(ascii_hex) % 2) != 0)
return (0);
*blob_len = strlen(ascii_hex) / 2;
*blob = calloc(1, *blob_len);
if (*blob == NULL)
return (0);
for (size_t i = 0; i < *blob_len; i++) {
unsigned int c;
int n = -1;
int r = sscanf(ascii_hex, "%02x%n", &c, &n);
if (r != 1 || n != 2 || c > UCHAR_MAX) {
free(*blob);
*blob = NULL;
*blob_len = 0;
return (0);
}
(*blob)[i] = (unsigned char) c;
ascii_hex += n;
}
return (1);
}
static char *normal_b64(const char *websafe_b64) {
char *b64;
char *p;
size_t n;
n = strlen(websafe_b64);
if (n > SIZE_MAX - 3)
return (NULL);
b64 = calloc(1, n + 3);
if (b64 == NULL)
return (NULL);
memcpy(b64, websafe_b64, n);
p = b64;
while ((p = strpbrk(p, "-_")) != NULL) {
switch (*p) {
case '-':
*p++ = '+';
break;
case '_':
*p++ = '/';
break;
}
}
switch (n % 4) {
case 1:
b64[n] = '=';
break;
case 2:
case 3:
b64[n] = '=';
b64[n + 1] = '=';
break;
}
return (b64);
}
static int translate_old_format_pubkey(es256_pk_t *es256_pk,
const unsigned char *pk, size_t pk_len) {
EC_KEY *ec = NULL;
EC_POINT *q = NULL;
const EC_GROUP *g = NULL;
int r = FIDO_ERR_INTERNAL;
if (es256_pk == NULL)
goto fail;
if ((ec = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1)) == NULL ||
(g = EC_KEY_get0_group(ec)) == NULL)
goto fail;
if ((q = EC_POINT_new(g)) == NULL ||
!EC_POINT_oct2point(g, q, pk, pk_len, NULL) ||
!EC_KEY_set_public_key(ec, q))
goto fail;
r = es256_pk_from_EC_KEY(es256_pk, ec);
fail:
if (ec != NULL)
EC_KEY_free(ec);
if (q != NULL)
EC_POINT_free(q);
return r;
}
static int is_resident(const char *kh) { return strcmp(kh, "*") == 0; }
static void reset_device(device_t *device) {
free(device->keyHandle);
free(device->publicKey);
free(device->coseType);
free(device->attributes);
memset(device, 0, sizeof(*device));
}
static int parse_native_credential(const cfg_t *cfg, char *s, device_t *cred) {
const char *delim = ",";
const char *kh, *pk, *type, *attr;
char *saveptr = NULL;
memset(cred, 0, sizeof(*cred));
if ((kh = strtok_r(s, delim, &saveptr)) == NULL) {
debug_dbg(cfg, "Missing key handle");
goto fail;
}
if ((pk = strtok_r(NULL, delim, &saveptr)) == NULL) {
debug_dbg(cfg, "Missing public key");
goto fail;
}
if ((type = strtok_r(NULL, delim, &saveptr)) == NULL) {
debug_dbg(cfg, "Old format, assume es256 and +presence");
cred->old_format = 1;
type = "es256";
attr = "+presence";
} else if ((attr = strtok_r(NULL, delim, &saveptr)) == NULL) {
debug_dbg(cfg, "Empty attributes");
attr = "";
}
cred->keyHandle = cred->old_format ? normal_b64(kh) : strdup(kh);
if (cred->keyHandle == NULL || (cred->publicKey = strdup(pk)) == NULL ||
(cred->coseType = strdup(type)) == NULL ||
(cred->attributes = strdup(attr)) == NULL) {
debug_dbg(cfg, "Unable to allocate memory for credential components");
goto fail;
}
return 1;
fail:
reset_device(cred);
return 0;
}
static int parse_native_format(const cfg_t *cfg, const char *username,
FILE *opwfile, device_t *devices,
unsigned *n_devs) {
char *s_user, *s_credential;
char *buf = NULL;
size_t bufsiz = 0;
ssize_t len;
unsigned i;
int r = 0;
while ((len = getline(&buf, &bufsiz, opwfile)) != -1) {
char *saveptr = NULL;
if (len > 0 && buf[len - 1] == '\n')
buf[len - 1] = '\0';
debug_dbg(cfg, "Read %zu bytes", len);
s_user = strtok_r(buf, ":", &saveptr);
if (s_user && strcmp(username, s_user) == 0) {
debug_dbg(cfg, "Matched user: %s", s_user);
// only keep last line for this user
for (i = 0; i < *n_devs; i++) {
reset_device(&devices[i]);
}
*n_devs = 0;
i = 0;
while ((s_credential = strtok_r(NULL, ":", &saveptr))) {
if ((*n_devs)++ > cfg->max_devs - 1) {
*n_devs = cfg->max_devs;
debug_dbg(cfg,
"Found more than %d devices, ignoring the remaining ones",
cfg->max_devs);
break;
}
if (!parse_native_credential(cfg, s_credential, &devices[i])) {
debug_dbg(cfg, "Failed to parse credential");
goto fail;
}
debug_dbg(cfg, "KeyHandle for device number %u: %s", i + 1,
devices[i].keyHandle);
debug_dbg(cfg, "publicKey for device number %u: %s", i + 1,
devices[i].publicKey);
debug_dbg(cfg, "COSE type for device number %u: %s", i + 1,
devices[i].coseType);
debug_dbg(cfg, "Attributes for device number %u: %s", i + 1,
devices[i].attributes);
i++;
}
}
}
if (!feof(opwfile)) {
debug_dbg(cfg, "authfile parsing ended before eof (%d)", errno);
goto fail;
}
r = 1;
fail:
free(buf);
return r;
}
static int load_ssh_key(const cfg_t *cfg, char **out, FILE *opwfile,
size_t opwfile_size) {
size_t buf_size;
char *buf = NULL;
char *cp = NULL;
int r = 0;
int ch;
*out = NULL;
if (opwfile_size < SSH_HEADER_LEN + SSH_TRAILER_LEN) {
debug_dbg(cfg, "Malformed SSH key (length)");
goto fail;
}
buf_size = opwfile_size > SSH_MAX_SIZE ? SSH_MAX_SIZE : opwfile_size;
if ((cp = buf = calloc(1, buf_size)) == NULL) {
debug_dbg(cfg, "Failed to allocate buffer for SSH key");
goto fail;
}
// NOTE(adma): +1 for \0
if (fgets(buf, SSH_HEADER_LEN + 1, opwfile) == NULL ||
strlen(buf) != SSH_HEADER_LEN ||
strncmp(buf, SSH_HEADER, SSH_HEADER_LEN) != 0) {
debug_dbg(cfg, "Malformed SSH key (header)");
goto fail;
}
while (opwfile_size > 0 && buf_size > 1) {
ch = fgetc(opwfile);
if (ch == EOF) {
debug_dbg(cfg, "Unexpected authfile termination");
goto fail;
}
opwfile_size--;
if (ch != '\n' && ch != '\r') {
*cp = (char) ch;
buf_size--;
if (ch == '-') {
// NOTE(adma): no +1 here since we already read one '-'
if (buf_size < SSH_TRAILER_LEN ||
fgets(cp + 1, SSH_TRAILER_LEN, opwfile) == NULL ||
strlen(cp) != SSH_TRAILER_LEN ||
strncmp(cp, SSH_TRAILER, SSH_TRAILER_LEN) != 0) {
debug_dbg(cfg, "Malformed SSH key (trailer)");
goto fail;
}
r = 1;
*(cp) = '\0';
break;
} else {
cp++;
}
}
}
fail:
if (r != 1) {
free(buf);
buf = NULL;
}
*out = buf;
return r;
}
static int ssh_get(const unsigned char **buf, size_t *size, unsigned char *dst,
size_t len) {
if (*size < len)
return 0;
if (dst != NULL)
memcpy(dst, *buf, len);
*buf += len;
*size -= len;
return 1;
}
static int ssh_get_u8(const unsigned char **buf, size_t *size, uint8_t *val) {
return ssh_get(buf, size, val, sizeof(*val));
}
static int ssh_get_u32(const unsigned char **buf, size_t *size, uint32_t *val) {
if (!ssh_get(buf, size, (unsigned char *) val, sizeof(*val)))
return 0;
if (val != NULL)
*val = ntohl(*val);
return 1;
}
static int ssh_get_string_ref(const unsigned char **buf, size_t *size,
const unsigned char **ref, size_t *lenp) {
uint32_t len;
if (!ssh_get_u32(buf, size, &len))
return 0;
if (!ssh_get(buf, size, NULL, len))
return 0;
if (ref != NULL)
*ref = *buf - len;
if (lenp != NULL)
*lenp = len;
return 1;
}
static int ssh_get_cstring(const unsigned char **buf, size_t *size, char **str,
size_t *lenp) {
const unsigned char *ref;
size_t len;
if (!ssh_get_string_ref(buf, size, &ref, &len))
return 0;
if (str != NULL) {
if (len > SIZE_MAX - 1 || (*str = calloc(1, len + 1)) == NULL)
return 0;
memcpy(*str, ref, len);
}
if (lenp != NULL)
*lenp = len;
return 1;
}
static int ssh_log_cstring(const cfg_t *cfg, const unsigned char **buf,
size_t *size, const char *name) {
char *str = NULL;
size_t len;
(void) name; // silence compiler warnings if PAM_DEBUG disabled
if (!ssh_get_cstring(buf, size, &str, &len)) {
debug_dbg(cfg, "Malformed SSH key (%s)", name);
return 0;
}
debug_dbg(cfg, "%s (%zu) \"%s\"", name, len, str);
free(str);
return 1;
}
static int ssh_get_attrs(const cfg_t *cfg, const unsigned char **buf,
size_t *size, char **attrs) {
char tmp[32] = {0};
uint8_t flags;
int r;
// flags
if (!ssh_get_u8(buf, size, &flags)) {
debug_dbg(cfg, "Malformed SSH key (flags)");
return 0;
}
debug_dbg(cfg, "flags: %02x", flags);
r = snprintf(tmp, sizeof(tmp), "%s%s",
flags & SSH_SK_USER_PRESENCE_REQD ? "+presence" : "",
flags & SSH_SK_USER_VERIFICATION_REQD ? "+verification" : "");
if (r < 0 || (size_t) r >= sizeof(tmp)) {
debug_dbg(cfg, "Unable to prepare flags");
return 0;
}
if ((*attrs = strdup(tmp)) == NULL) {
debug_dbg(cfg, "Unable to allocate attributes");
return 0;
}
return 1;
}
static int ssh_get_pubkey(const cfg_t *cfg, const unsigned char **buf,
size_t *size, char **type_p, char **pubkey_p) {
char *ssh_type = NULL;
char *ssh_curve = NULL;
const unsigned char *blob;
size_t len;
int type;
size_t point_len;
int ok = 0;
*type_p = NULL;
*pubkey_p = NULL;
// key type
if (!ssh_get_cstring(buf, size, &ssh_type, &len)) {
debug_dbg(cfg, "Malformed SSH key (keytype)");
goto err;
}
if (len == SSH_ES256_LEN && memcmp(ssh_type, SSH_ES256, SSH_ES256_LEN) == 0) {
type = COSE_ES256;
point_len = SSH_ES256_POINT_LEN;
} else if (len == SSH_EDDSA_LEN &&
memcmp(ssh_type, SSH_EDDSA, SSH_EDDSA_LEN) == 0) {
type = COSE_EDDSA;
point_len = SSH_EDDSA_POINT_LEN;
} else {
debug_dbg(cfg, "Unknown key type %s", ssh_type);
goto err;
}
debug_dbg(cfg, "keytype (%zu) \"%s\"", len, ssh_type);
if (type == COSE_ES256) {
// curve name
if (!ssh_get_cstring(buf, size, &ssh_curve, &len)) {
debug_dbg(cfg, "Malformed SSH key (curvename)");
goto err;
}
if (len == SSH_P256_NAME_LEN &&
memcmp(ssh_curve, SSH_P256_NAME, SSH_P256_NAME_LEN) == 0) {
debug_dbg(cfg, "curvename (%zu) \"%s\"", len, ssh_curve);
} else {
debug_dbg(cfg, "Unknown curve %s", ssh_curve);
goto err;
}
}
// point
if (!ssh_get_string_ref(buf, size, &blob, &len)) {
debug_dbg(cfg, "Malformed SSH key (point)");
goto err;
}
if (len != point_len) {
debug_dbg(cfg, "Invalid point length, should be %zu, found %zu", point_len,
len);
goto err;
}
if (type == COSE_ES256) {
// Skip the initial '04'
if (len < 1) {
debug_dbg(cfg, "Failed to skip initial '04'");
goto err;
}
blob++;
len--;
}
if (!b64_encode(blob, len, pubkey_p)) {
debug_dbg(cfg, "Unable to allocate public key");
goto err;
}
if ((*type_p = strdup(cose_string(type))) == NULL) {
debug_dbg(cfg, "Unable to allocate COSE type");
goto err;
}
ok = 1;
err:
if (!ok) {
free(*type_p);
free(*pubkey_p);
*type_p = NULL;
*pubkey_p = NULL;
}
free(ssh_type);
free(ssh_curve);
return ok;
}
static int parse_ssh_format(const cfg_t *cfg, FILE *opwfile,
size_t opwfile_size, device_t *devices,
unsigned *n_devs) {
char *b64 = NULL;
const unsigned char *decoded;
unsigned char *decoded_initial = NULL;
size_t decoded_len;
const unsigned char *blob;
uint32_t check1, check2, tmp;
size_t len;
int r = 0;
// The logic below is inspired by
// how ssh parses its own keys. See sshkey.c
reset_device(&devices[0]);
*n_devs = 0;
if (!load_ssh_key(cfg, &b64, opwfile, opwfile_size) ||
!b64_decode(b64, (void **) &decoded_initial, &decoded_len)) {
debug_dbg(cfg, "Unable to decode credential");
goto out;
}
decoded = decoded_initial;
// magic
if (decoded_len < SSH_AUTH_MAGIC_LEN ||
memcmp(decoded, SSH_AUTH_MAGIC, SSH_AUTH_MAGIC_LEN) != 0) {
debug_dbg(cfg, "Malformed SSH key (magic)");
goto out;
}
decoded += SSH_AUTH_MAGIC_LEN;
decoded_len -= SSH_AUTH_MAGIC_LEN;
if (!ssh_log_cstring(cfg, &decoded, &decoded_len, "ciphername") ||
!ssh_log_cstring(cfg, &decoded, &decoded_len, "kdfname") ||
!ssh_log_cstring(cfg, &decoded, &decoded_len, "kdfoptions"))
goto out;
if (!ssh_get_u32(&decoded, &decoded_len, &tmp)) {
debug_dbg(cfg, "Malformed SSH key (nkeys)");
goto out;
}
debug_dbg(cfg, "nkeys: %" PRIu32, tmp);
if (tmp != 1) {
debug_dbg(cfg, "Multiple keys not supported");
goto out;
}
// public_key (skip)
if (!ssh_get_string_ref(&decoded, &decoded_len, NULL, NULL)) {
debug_dbg(cfg, "Malformed SSH key (pubkey)");
goto out;
}
// private key (consume length)
if (!ssh_get_u32(&decoded, &decoded_len, &tmp) || decoded_len < tmp) {
debug_dbg(cfg, "Malformed SSH key (pvtkey length)");
goto out;
}
// check1, check2
if (!ssh_get_u32(&decoded, &decoded_len, &check1) ||
!ssh_get_u32(&decoded, &decoded_len, &check2)) {
debug_dbg(cfg, "Malformed SSH key (check1, check2)");
goto out;
}
debug_dbg(cfg, "check1: %" PRIu32, check1);
debug_dbg(cfg, "check2: %" PRIu32, check2);
if (check1 != check2) {
debug_dbg(cfg, "Mismatched check values");
goto out;
}
if (!ssh_get_pubkey(cfg, &decoded, &decoded_len, &devices[0].coseType,
&devices[0].publicKey) ||
!ssh_log_cstring(cfg, &decoded, &decoded_len, "application") ||
!ssh_get_attrs(cfg, &decoded, &decoded_len, &devices[0].attributes))
goto out;
// keyhandle
if (!ssh_get_string_ref(&decoded, &decoded_len, &blob, &len) ||
!b64_encode(blob, len, &devices[0].keyHandle)) {
debug_dbg(cfg, "Malformed SSH key (keyhandle)");
goto out;
}
debug_dbg(cfg, "KeyHandle for device number 1: %s", devices[0].keyHandle);
debug_dbg(cfg, "publicKey for device number 1: %s", devices[0].publicKey);
debug_dbg(cfg, "COSE type for device number 1: %s", devices[0].coseType);
debug_dbg(cfg, "Attributes for device number 1: %s", devices[0].attributes);
// reserved (skip)
if (!ssh_get_string_ref(&decoded, &decoded_len, NULL, NULL)) {
debug_dbg(cfg, "Malformed SSH key (reserved)");
goto out;
}
// comment
if (!ssh_log_cstring(cfg, &decoded, &decoded_len, "comment"))
goto out;
// padding
if (decoded_len >= 255) {
debug_dbg(cfg, "Malformed SSH key (padding length)");
goto out;
}
for (int i = 1; (unsigned) i <= decoded_len; i++) {
if (decoded[i - 1] != i) {
debug_dbg(cfg, "Malformed SSH key (padding)");
goto out;
}
}
*n_devs = 1;
r = 1;
out:
if (r != 1) {
reset_device(&devices[0]);
*n_devs = 0;
}
free(decoded_initial);
free(b64);
return r;
}
int get_devices_from_authfile(const cfg_t *cfg, const char *username,
device_t *devices, unsigned *n_devs) {
int retval = 0;
int fd = -1;
struct stat st;
struct passwd *pw = NULL, pw_s;
char buffer[BUFSIZE];
int gpu_ret;
FILE *opwfile = NULL;
size_t opwfile_size;
unsigned i;
/* Ensure we never return uninitialized count. */
*n_devs = 0;
fd = open(cfg->auth_file, O_RDONLY | O_CLOEXEC | O_NOCTTY);
if (fd < 0) {
debug_dbg(cfg, "Cannot open authentication file: %s", strerror(errno));
goto err;
}
if (fstat(fd, &st) < 0) {
debug_dbg(cfg, "Cannot stat authentication file: %s", strerror(errno));
goto err;
}
if (!S_ISREG(st.st_mode)) {
debug_dbg(cfg, "Authentication file is not a regular file");
goto err;
}
if (st.st_size == 0) {
debug_dbg(cfg, "Authentication file is empty");
goto err;
}
opwfile_size = st.st_size;
gpu_ret = getpwuid_r(st.st_uid, &pw_s, buffer, sizeof(buffer), &pw);
if (gpu_ret != 0 || pw == NULL) {
debug_dbg(cfg, "Unable to retrieve credentials for uid %u, (%s)", st.st_uid,
strerror(errno));
goto err;
}
if (strcmp(pw->pw_name, username) != 0 && strcmp(pw->pw_name, "root") != 0) {
if (strcmp(username, "root") != 0) {
debug_dbg(cfg,
"The owner of the authentication file is neither %s nor root",
username);
} else {
debug_dbg(cfg, "The owner of the authentication file is not root");
}
goto err;
}
opwfile = fdopen(fd, "r");
if (opwfile == NULL) {
debug_dbg(cfg, "fdopen: %s", strerror(errno));
goto err;
} else {
fd = -1; /* fd belongs to opwfile */
}
if (cfg->sshformat == 0) {
retval = parse_native_format(cfg, username, opwfile, devices, n_devs);
} else {
retval = parse_ssh_format(cfg, opwfile, opwfile_size, devices, n_devs);
}
if (retval != 1) {
// NOTE(adma): error message is logged by the previous function
goto err;
}
debug_dbg(cfg, "Found %d device(s) for user %s", *n_devs, username);
retval = 1;
err:
if (retval != 1) {
for (i = 0; i < *n_devs; i++) {
reset_device(&devices[i]);
}
*n_devs = 0;
}
if (opwfile)
fclose(opwfile);
if (fd != -1)
close(fd);
return retval;
}
void free_devices(device_t *devices, const unsigned n_devs) {
unsigned i;
if (!devices)
return;
for (i = 0; i < n_devs; i++) {
reset_device(&devices[i]);
}
free(devices);
devices = NULL;
}
static int get_authenticators(const cfg_t *cfg, const fido_dev_info_t *devlist,
size_t devlist_len, fido_assert_t *assert,
const int rk, fido_dev_t **authlist) {
const fido_dev_info_t *di = NULL;
fido_dev_t *dev = NULL;
int r;
size_t i;
size_t j;
debug_dbg(cfg, "Working with %zu authenticator(s)", devlist_len);
for (i = 0, j = 0; i < devlist_len; i++) {
debug_dbg(cfg, "Checking whether key exists in authenticator %zu", i);
di = fido_dev_info_ptr(devlist, i);
if (!di) {
debug_dbg(cfg, "Unable to get device pointer");
continue;
}
debug_dbg(cfg, "Authenticator path: %s", fido_dev_info_path(di));
dev = fido_dev_new();
if (!dev) {
debug_dbg(cfg, "Unable to allocate device type");
continue;
}
r = fido_dev_open(dev, fido_dev_info_path(di));
if (r != FIDO_OK) {
debug_dbg(cfg, "Failed to open authenticator: %s (%d)", fido_strerr(r),
r);
fido_dev_free(&dev);
continue;
}
if (rk || cfg->nodetect) {
/* resident credential or nodetect: try all authenticators */
authlist[j++] = dev;
} else {
r = fido_dev_get_assert(dev, assert, NULL);
if ((!fido_dev_is_fido2(dev) && r == FIDO_ERR_USER_PRESENCE_REQUIRED) ||
(fido_dev_is_fido2(dev) && r == FIDO_OK)) {
authlist[j++] = dev;
debug_dbg(cfg, "Found key in authenticator %zu", i);
return (1);
}
debug_dbg(cfg, "Key not found in authenticator %zu", i);
fido_dev_close(dev);
fido_dev_free(&dev);
}
}
if (j != 0)
return (1);
else {
debug_dbg(cfg, "Key not found");
return (0);
}
}
static void init_opts(struct opts *opts) {
opts->up = FIDO_OPT_FALSE;
opts->uv = FIDO_OPT_OMIT;
opts->pin = FIDO_OPT_FALSE;
}
static void parse_opts(const cfg_t *cfg, const char *attr, struct opts *opts) {
if (cfg->userpresence == 1 || strstr(attr, "+presence")) {
opts->up = FIDO_OPT_TRUE;
} else if (cfg->userpresence == 0) {
opts->up = FIDO_OPT_FALSE;
} else {
opts->up = FIDO_OPT_OMIT;
}
if (cfg->userverification == 1 || strstr(attr, "+verification")) {
opts->uv = FIDO_OPT_TRUE;
} else if (cfg->userverification == 0)
opts->uv = FIDO_OPT_FALSE;
else {
opts->uv = FIDO_OPT_OMIT;
}
if (cfg->pinverification == 1 || strstr(attr, "+pin")) {
opts->pin = FIDO_OPT_TRUE;
} else if (cfg->pinverification == 0) {
opts->pin = FIDO_OPT_FALSE;
} else {
opts->pin = FIDO_OPT_OMIT;
}
}
static int get_device_opts(fido_dev_t *dev, int *pin, int *uv) {
fido_cbor_info_t *info = NULL;
char *const *ptr;
const bool *val;
size_t len;
*pin = *uv = -1; /* unsupported */
if (fido_dev_is_fido2(dev)) {
if ((info = fido_cbor_info_new()) == NULL ||
fido_dev_get_cbor_info(dev, info) != FIDO_OK) {
fido_cbor_info_free(&info);
return 0;
}
ptr = fido_cbor_info_options_name_ptr(info);
val = fido_cbor_info_options_value_ptr(info);
len = fido_cbor_info_options_len(info);
for (size_t i = 0; i < len; i++) {
if (strcmp(ptr[i], "clientPin") == 0) {
*pin = val[i];
} else if (strcmp(ptr[i], "uv") == 0) {
*uv = val[i];
}
}
}
fido_cbor_info_free(&info);
return 1;
}
static int match_device_opts(fido_dev_t *dev, struct opts *opts) {
int pin, uv;
/* FIXME: fido_dev_{supports,has}_{pin,uv} (1.7.0) */
if (!get_device_opts(dev, &pin, &uv)) {
return -1;
}
if (opts->uv == FIDO_OPT_FALSE && uv < 0) {
opts->uv = FIDO_OPT_OMIT;
}
if ((opts->pin == FIDO_OPT_TRUE && pin != 1) ||
(opts->uv == FIDO_OPT_TRUE && uv != 1)) {
return 0;
}
return 1;
}
static int set_opts(const cfg_t *cfg, const struct opts *opts,
fido_assert_t *assert) {
if (fido_assert_set_up(assert, opts->up) != FIDO_OK) {
debug_dbg(cfg, "Failed to set UP");
return 0;
}
if (fido_assert_set_uv(assert, opts->uv) != FIDO_OK) {
debug_dbg(cfg, "Failed to set UV");
return 0;
}
return 1;
}
static int set_cdh(const cfg_t *cfg, fido_assert_t *assert) {
unsigned char cdh[32];
int r;
if (!random_bytes(cdh, sizeof(cdh))) {
debug_dbg(cfg, "Failed to generate challenge");
return 0;
}
r = fido_assert_set_clientdata_hash(assert, cdh, sizeof(cdh));
if (r != FIDO_OK) {
debug_dbg(cfg, "Unable to set challenge: %s (%d)", fido_strerr(r), r);
return 0;
}
return 1;
}
static fido_assert_t *prepare_assert(const cfg_t *cfg, const device_t *device,
const struct opts *opts) {
fido_assert_t *assert = NULL;
unsigned char *buf = NULL;
size_t buf_len;
int ok = 0;
int r;
if ((assert = fido_assert_new()) == NULL) {
debug_dbg(cfg, "Unable to allocate assertion");
goto err;
}
if (device->old_format)
r = fido_assert_set_rp(assert, cfg->appid);
else
r = fido_assert_set_rp(assert, cfg->origin);
if (r != FIDO_OK) {
debug_dbg(cfg, "Unable to set origin: %s (%d)", fido_strerr(r), r);
goto err;
}
if (is_resident(device->keyHandle)) {
debug_dbg(cfg, "Credential is resident");
} else {
debug_dbg(cfg, "Key handle: %s", device->keyHandle);
if (!b64_decode(device->keyHandle, (void **) &buf, &buf_len)) {
debug_dbg(cfg, "Failed to decode key handle");
goto err;
}
r = fido_assert_allow_cred(assert, buf, buf_len);
if (r != FIDO_OK) {
debug_dbg(cfg, "Unable to set keyHandle: %s (%d)", fido_strerr(r), r);
goto err;