diff options
author | Job Snijders <job@cvs.openbsd.org> | 2024-03-20 04:36:31 +0000 |
---|---|---|
committer | Job Snijders <job@cvs.openbsd.org> | 2024-03-20 04:36:31 +0000 |
commit | 019ca87fb158d1fac8d42aaf1d39ff20b853c6f7 (patch) | |
tree | 6d673251c9511021d3e58e9347415f6472ac0ed9 /usr.sbin/rpki-client | |
parent | 63fec4f5ed39afa1b2081e98e6861a434424e552 (diff) |
Check whether filename and SIA match
Verify whether the filename as presented by the publication point (which
is unsigned information) matches the filename in the SIA attribute
(which is signed information). Based on RFC 6487 section 4.8.8.
with and OK tb@
Diffstat (limited to 'usr.sbin/rpki-client')
-rw-r--r-- | usr.sbin/rpki-client/x509.c | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/usr.sbin/rpki-client/x509.c b/usr.sbin/rpki-client/x509.c index 86ba7689a47..962cd829d68 100644 --- a/usr.sbin/rpki-client/x509.c +++ b/usr.sbin/rpki-client/x509.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509.c,v 1.82 2024/03/19 05:04:13 tb Exp $ */ +/* $OpenBSD: x509.c,v 1.83 2024/03/20 04:36:30 job Exp $ */ /* * Copyright (c) 2022 Theo Buehler <tb@openbsd.org> * Copyright (c) 2021 Claudio Jeker <claudio@openbsd.org> @@ -536,7 +536,23 @@ x509_get_sia(X509 *x, const char *fn, char **sia) continue; if (strncasecmp(*sia, "rsync://", 8) == 0) { + const char *p = *sia + strlen("rsync://"); + size_t fnlen, plen; + rsync_found = 1; + + if (filemode) + continue; + + fnlen = strlen(fn); + plen = strlen(p); + + if (fnlen < plen || strcmp(p, fn + fnlen - plen) != 0) { + warnx("%s: mismatch between pathname and SIA " + "(%s)", fn, *sia); + goto out; + } + continue; } |