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
|
/* $OpenBSD: filemode.c,v 1.6 2022/05/09 17:02:34 job Exp $ */
/*
* Copyright (c) 2019 Claudio Jeker <claudio@openbsd.org>
* Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/queue.h>
#include <sys/tree.h>
#include <sys/types.h>
#include <assert.h>
#include <err.h>
#include <fcntl.h>
#include <poll.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include <unistd.h>
#include <imsg.h>
#include <openssl/asn1.h>
#include <openssl/err.h>
#include <openssl/evp.h>
#include <openssl/x509.h>
#include <openssl/x509v3.h>
#include "extern.h"
static X509_STORE_CTX *ctx;
static struct auth_tree auths = RB_INITIALIZER(&auths);
static struct crl_tree crlt = RB_INITIALIZER(&crlt);
struct tal *talobj[TALSZ_MAX];
/*
* Use the X509 CRL Distribution Points to locate the CRL needed for
* verification.
*/
static void
parse_load_crl(char *uri)
{
struct crl *crl;
char *f;
size_t flen;
if (uri == NULL)
return;
if (strncmp(uri, "rsync://", strlen("rsync://")) != 0) {
warnx("bad CRL distribution point URI %s", uri);
return;
}
uri += strlen("rsync://");
f = load_file(uri, &flen);
if (f == NULL) {
warn("parse file %s", uri);
return;
}
crl = crl_parse(uri, f, flen);
if (crl != NULL && !crl_insert(&crlt, crl))
crl_free(crl);
free(f);
}
/*
* Parse the cert pointed at by the AIA URI while doing that also load
* the CRL of this cert. While the CRL is validated the returned cert
* is not. The caller needs to make sure it is validated once all
* necessary certs were loaded. Returns NULL on failure.
*/
static struct cert *
parse_load_cert(char *uri)
{
struct cert *cert = NULL;
char *f;
size_t flen;
if (uri == NULL)
return NULL;
if (strncmp(uri, "rsync://", strlen("rsync://")) != 0) {
warnx("bad authority information access URI %s", uri);
return NULL;
}
uri += strlen("rsync://");
f = load_file(uri, &flen);
if (f == NULL) {
warn("parse file %s", uri);
goto done;
}
cert = cert_parse_pre(uri, f, flen);
free(f);
if (cert == NULL)
goto done;
if (cert->purpose != CERT_PURPOSE_CA) {
warnx("AIA reference to bgpsec cert %s", uri);
goto done;
}
/* try to load the CRL of this cert */
parse_load_crl(cert->crl);
return cert;
done:
cert_free(cert);
return NULL;
}
/*
* Build the certificate chain by using the Authority Information Access.
* This requires that the TA are already validated and added to the auths
* tree. Once the TA is located in the chain the chain is validated in
* reverse order.
*/
static void
parse_load_certchain(char *uri)
{
struct cert *stack[MAX_CERT_DEPTH] = { 0 };
char *filestack[MAX_CERT_DEPTH];
struct cert *cert;
struct crl *crl;
struct auth *a;
int i;
for (i = 0; i < MAX_CERT_DEPTH; i++) {
filestack[i] = uri;
stack[i] = cert = parse_load_cert(uri);
if (cert == NULL || cert->purpose != CERT_PURPOSE_CA) {
warnx("failed to build authority chain");
goto fail;
}
if (auth_find(&auths, cert->ski) != NULL) {
assert(i == 0);
goto fail;
}
if ((a = auth_find(&auths, cert->aki)) != NULL)
break; /* found chain to TA */
uri = cert->aia;
}
if (i >= MAX_CERT_DEPTH) {
warnx("authority chain exceeds max depth of %d",
MAX_CERT_DEPTH);
goto fail;
}
/* TA found play back the stack and add all certs */
for (; i >= 0; i--) {
cert = stack[i];
uri = filestack[i];
crl = crl_get(&crlt, a);
if (!valid_x509(uri, ctx, cert->x509, a, crl, 0) ||
!valid_cert(uri, a, cert))
goto fail;
cert->talid = a->cert->talid;
a = auth_insert(&auths, cert, a);
stack[i] = NULL;
}
return;
fail:
for (i = 0; i < MAX_CERT_DEPTH; i++)
cert_free(stack[i]);
}
static void
parse_load_ta(struct tal *tal)
{
const char *filename;
struct cert *cert;
unsigned char *f = NULL;
char *file;
size_t flen;
/* does not matter which URI, all end with same filename */
filename = strrchr(tal->uri[0], '/');
assert(filename);
if (asprintf(&file, "ta/%s%s", tal->descr, filename) == -1)
err(1, NULL);
f = load_file(file, &flen);
if (f == NULL) {
warn("parse file %s", file);
goto out;
}
/* Extract certificate data. */
cert = cert_parse_pre(file, f, flen);
cert = ta_parse(file, cert, tal->pkey, tal->pkeysz);
if (cert == NULL)
goto out;
cert->talid = tal->id;
if (!valid_ta(file, &auths, cert))
cert_free(cert);
else
auth_insert(&auths, cert, NULL);
out:
free(file);
free(f);
}
static struct tal *
find_tal(struct cert *cert)
{
EVP_PKEY *pk, *opk;
struct tal *tal;
int i;
if ((opk = X509_get0_pubkey(cert->x509)) == NULL)
return NULL;
for (i = 0; i < TALSZ_MAX; i++) {
const unsigned char *pkey;
if (talobj[i] == NULL)
break;
tal = talobj[i];
pkey = tal->pkey;
pk = d2i_PUBKEY(NULL, &pkey, tal->pkeysz);
if (pk == NULL)
continue;
if (EVP_PKEY_cmp(pk, opk) == 1) {
EVP_PKEY_free(pk);
return tal;
}
EVP_PKEY_free(pk);
}
return NULL;
}
/*
* Parse file passed with -f option.
*/
static void
proc_parser_file(char *file, unsigned char *buf, size_t len)
{
static int num;
X509 *x509 = NULL;
struct cert *cert = NULL;
struct crl *crl = NULL;
struct mft *mft = NULL;
struct roa *roa = NULL;
struct gbr *gbr = NULL;
struct tal *tal = NULL;
struct rsc *rsc = NULL;
char *aia = NULL, *aki = NULL;
char filehash[SHA256_DIGEST_LENGTH];
char *hash;
enum rtype type;
int is_ta = 0;
if (num++ > 0) {
if (outformats & FORMAT_JSON)
printf("\n");
else
printf("--\n");
}
if (strncmp(file, "rsync://", strlen("rsync://")) == 0) {
file += strlen("rsync://");
buf = load_file(file, &len);
if (buf == NULL) {
warn("parse file %s", file);
return;
}
}
if (!EVP_Digest(buf, len, filehash, NULL, EVP_sha256(), NULL))
errx(1, "EVP_Digest failed in %s", __func__);
if (base64_encode(filehash, sizeof(filehash), &hash) == -1)
errx(1, "base64_encode failed in %s", __func__);
if (outformats & FORMAT_JSON) {
printf("{\n\t\"file\": \"%s\",\n", file);
printf("\t\"hash_id\": \"%s\",\n", hash);
} else {
printf("File: %s\n", file);
printf("Hash identifier: %s\n", hash);
}
free(hash);
type = rtype_from_file_extension(file);
switch (type) {
case RTYPE_CER:
cert = cert_parse_pre(file, buf, len);
if (cert == NULL)
break;
is_ta = X509_get_extension_flags(cert->x509) & EXFLAG_SS;
if (!is_ta)
cert = cert_parse(file, cert);
if (cert == NULL)
break;
cert_print(cert);
aia = cert->aia;
aki = cert->aki;
x509 = cert->x509;
if (X509_up_ref(x509) == 0)
errx(1, "%s: X509_up_ref failed", __func__);
break;
case RTYPE_CRL:
crl = crl_parse(file, buf, len);
if (crl == NULL)
break;
crl_print(crl);
break;
case RTYPE_MFT:
mft = mft_parse(&x509, file, buf, len);
if (mft == NULL)
break;
mft_print(x509, mft);
aia = mft->aia;
aki = mft->aki;
break;
case RTYPE_ROA:
roa = roa_parse(&x509, file, buf, len);
if (roa == NULL)
break;
roa_print(x509, roa);
aia = roa->aia;
aki = roa->aki;
break;
case RTYPE_GBR:
gbr = gbr_parse(&x509, file, buf, len);
if (gbr == NULL)
break;
gbr_print(x509, gbr);
aia = gbr->aia;
aki = gbr->aki;
break;
case RTYPE_TAL:
tal = tal_parse(file, buf, len);
if (tal == NULL)
break;
tal_print(tal);
break;
case RTYPE_RSC:
rsc = rsc_parse(&x509, file, buf, len);
if (rsc == NULL)
break;
rsc_print(x509, rsc);
aia = rsc->aia;
aki = rsc->aki;
break;
default:
printf("%s: unsupported file type\n", file);
break;
}
if (outformats & FORMAT_JSON)
printf("\t\"validation\": \"");
else
printf("Validation: ");
if (aia != NULL) {
struct auth *a;
struct crl *c;
char *crl_uri;
x509_get_crl(x509, file, &crl_uri);
parse_load_crl(crl_uri);
free(crl_uri);
if (auth_find(&auths, aki) == NULL)
parse_load_certchain(aia);
a = auth_find(&auths, aki);
c = crl_get(&crlt, a);
if (valid_x509(file, ctx, x509, a, c, 0))
printf("OK");
else
printf("Failed");
} else if (is_ta) {
if ((tal = find_tal(cert)) != NULL) {
cert = ta_parse(file, cert, tal->pkey, tal->pkeysz);
if (cert != NULL)
printf("OK");
else
printf("Failed");
if (outformats & FORMAT_JSON)
printf("\",\n\t\"tal\": \"%s", tal->descr);
else
printf("\nTAL: %s", tal->descr);
tal = NULL;
} else {
cert_free(cert);
cert = NULL;
printf("Failed");
}
}
if (outformats & FORMAT_JSON)
printf("\"\n}");
else
printf("\n");
X509_free(x509);
cert_free(cert);
crl_free(crl);
mft_free(mft);
roa_free(roa);
gbr_free(gbr);
tal_free(tal);
}
/*
* Process a file request, in general don't send anything back.
*/
static void
parse_file(struct entityq *q, struct msgbuf *msgq)
{
struct entity *entp;
struct ibuf *b;
struct tal *tal;
while ((entp = TAILQ_FIRST(q)) != NULL) {
TAILQ_REMOVE(q, entp, entries);
switch (entp->type) {
case RTYPE_FILE:
proc_parser_file(entp->file, entp->data, entp->datasz);
break;
case RTYPE_TAL:
if ((tal = tal_parse(entp->file, entp->data,
entp->datasz)) == NULL)
errx(1, "%s: could not parse tal file",
entp->file);
tal->id = entp->talid;
talobj[tal->id] = tal;
parse_load_ta(tal);
break;
default:
errx(1, "unhandled entity type %d", entp->type);
}
b = io_new_buffer();
io_simple_buffer(b, &entp->type, sizeof(entp->type));
io_str_buffer(b, entp->file);
io_close_buffer(msgq, b);
entity_free(entp);
}
}
/*
* Process responsible for parsing and validating content.
* All this process does is wait to be told about a file to parse, then
* it parses it and makes sure that the data being returned is fully
* validated and verified.
* The process will exit cleanly only when fd is closed.
*/
void
proc_filemode(int fd)
{
struct entityq q;
struct msgbuf msgq;
struct pollfd pfd;
struct entity *entp;
struct ibuf *b, *inbuf = NULL;
/* Only allow access to the cache directory. */
if (unveil(".", "r") == -1)
err(1, "unveil cachedir");
if (pledge("stdio rpath", NULL) == -1)
err(1, "pledge");
ERR_load_crypto_strings();
OpenSSL_add_all_ciphers();
OpenSSL_add_all_digests();
x509_init_oid();
if ((ctx = X509_STORE_CTX_new()) == NULL)
cryptoerrx("X509_STORE_CTX_new");
TAILQ_INIT(&q);
msgbuf_init(&msgq);
msgq.fd = fd;
pfd.fd = fd;
for (;;) {
pfd.events = POLLIN;
if (msgq.queued)
pfd.events |= POLLOUT;
if (poll(&pfd, 1, INFTIM) == -1) {
if (errno == EINTR)
continue;
err(1, "poll");
}
if ((pfd.revents & (POLLERR|POLLNVAL)))
errx(1, "poll: bad descriptor");
/* If the parent closes, return immediately. */
if ((pfd.revents & POLLHUP))
break;
if ((pfd.revents & POLLIN)) {
b = io_buf_read(fd, &inbuf);
if (b != NULL) {
entp = calloc(1, sizeof(struct entity));
if (entp == NULL)
err(1, NULL);
entity_read_req(b, entp);
TAILQ_INSERT_TAIL(&q, entp, entries);
ibuf_free(b);
}
}
if (pfd.revents & POLLOUT) {
switch (msgbuf_write(&msgq)) {
case 0:
errx(1, "write: connection closed");
case -1:
err(1, "write");
}
}
parse_file(&q, &msgq);
}
msgbuf_clear(&msgq);
while ((entp = TAILQ_FIRST(&q)) != NULL) {
TAILQ_REMOVE(&q, entp, entries);
entity_free(entp);
}
/* XXX free auths and crl tree */
X509_STORE_CTX_free(ctx);
exit(0);
}
|