Adam Langley | 57707c7 | 2016-01-14 11:25:12 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project |
| 3 | * 1999. |
| 4 | */ |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 5 | /* ==================================================================== |
| 6 | * Copyright (c) 1999 The OpenSSL Project. All rights reserved. |
| 7 | * |
| 8 | * Redistribution and use in source and binary forms, with or without |
| 9 | * modification, are permitted provided that the following conditions |
| 10 | * are met: |
| 11 | * |
| 12 | * 1. Redistributions of source code must retain the above copyright |
Adam Langley | 57707c7 | 2016-01-14 11:25:12 -0800 | [diff] [blame] | 13 | * notice, this list of conditions and the following disclaimer. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 14 | * |
| 15 | * 2. Redistributions in binary form must reproduce the above copyright |
| 16 | * notice, this list of conditions and the following disclaimer in |
| 17 | * the documentation and/or other materials provided with the |
| 18 | * distribution. |
| 19 | * |
| 20 | * 3. All advertising materials mentioning features or use of this |
| 21 | * software must display the following acknowledgment: |
| 22 | * "This product includes software developed by the OpenSSL Project |
| 23 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" |
| 24 | * |
| 25 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to |
| 26 | * endorse or promote products derived from this software without |
| 27 | * prior written permission. For written permission, please contact |
| 28 | * licensing@OpenSSL.org. |
| 29 | * |
| 30 | * 5. Products derived from this software may not be called "OpenSSL" |
| 31 | * nor may "OpenSSL" appear in their names without prior written |
| 32 | * permission of the OpenSSL Project. |
| 33 | * |
| 34 | * 6. Redistributions of any form whatsoever must retain the following |
| 35 | * acknowledgment: |
| 36 | * "This product includes software developed by the OpenSSL Project |
| 37 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" |
| 38 | * |
| 39 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY |
| 40 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 41 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 42 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR |
| 43 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 44 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 45 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 46 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 47 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 48 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 49 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 50 | * OF THE POSSIBILITY OF SUCH DAMAGE. |
| 51 | * ==================================================================== |
| 52 | * |
| 53 | * This product includes cryptographic software written by Eric Young |
| 54 | * (eay@cryptsoft.com). This product includes software written by Tim |
| 55 | * Hudson (tjh@cryptsoft.com). */ |
| 56 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 57 | #include <openssl/err.h> |
| 58 | #include <openssl/mem.h> |
| 59 | #include <openssl/obj.h> |
| 60 | #include <openssl/x509v3.h> |
| 61 | |
David Benjamin | fd86eaa | 2020-06-17 15:13:16 -0400 | [diff] [blame] | 62 | #include "../x509v3/internal.h" |
David Benjamin | 9f55d97 | 2021-05-05 16:37:05 -0400 | [diff] [blame] | 63 | #include "internal.h" |
| 64 | |
David Benjamin | fd86eaa | 2020-06-17 15:13:16 -0400 | [diff] [blame] | 65 | |
David Benjamin | af0739f | 2023-01-09 10:03:02 -0800 | [diff] [blame] | 66 | static int tr_cmp(const X509_TRUST *const *a, const X509_TRUST *const *b); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 67 | static void trtable_free(X509_TRUST *p); |
| 68 | |
| 69 | static int trust_1oidany(X509_TRUST *trust, X509 *x, int flags); |
| 70 | static int trust_1oid(X509_TRUST *trust, X509 *x, int flags); |
| 71 | static int trust_compat(X509_TRUST *trust, X509 *x, int flags); |
| 72 | |
| 73 | static int obj_trust(int id, X509 *x, int flags); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 74 | |
David Benjamin | 4635048 | 2022-06-16 14:03:12 -0400 | [diff] [blame] | 75 | // WARNING: the following table should be kept in order of trust and without |
| 76 | // any gaps so we can just subtract the minimum trust value to get an index |
| 77 | // into the table |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 78 | |
| 79 | static X509_TRUST trstandard[] = { |
Adam Langley | 57707c7 | 2016-01-14 11:25:12 -0800 | [diff] [blame] | 80 | {X509_TRUST_COMPAT, 0, trust_compat, (char *)"compatible", 0, NULL}, |
| 81 | {X509_TRUST_SSL_CLIENT, 0, trust_1oidany, (char *)"SSL Client", |
| 82 | NID_client_auth, NULL}, |
| 83 | {X509_TRUST_SSL_SERVER, 0, trust_1oidany, (char *)"SSL Server", |
| 84 | NID_server_auth, NULL}, |
| 85 | {X509_TRUST_EMAIL, 0, trust_1oidany, (char *)"S/MIME email", |
| 86 | NID_email_protect, NULL}, |
| 87 | {X509_TRUST_OBJECT_SIGN, 0, trust_1oidany, (char *)"Object Signer", |
| 88 | NID_code_sign, NULL}, |
| 89 | {X509_TRUST_OCSP_SIGN, 0, trust_1oid, (char *)"OCSP responder", |
| 90 | NID_OCSP_sign, NULL}, |
| 91 | {X509_TRUST_OCSP_REQUEST, 0, trust_1oid, (char *)"OCSP request", |
| 92 | NID_ad_OCSP, NULL}, |
| 93 | {X509_TRUST_TSA, 0, trust_1oidany, (char *)"TSA server", NID_time_stamp, |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 94 | NULL}}; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 95 | |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 96 | #define X509_TRUST_COUNT (sizeof(trstandard) / sizeof(X509_TRUST)) |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 97 | |
| 98 | static STACK_OF(X509_TRUST) *trtable = NULL; |
| 99 | |
David Benjamin | af0739f | 2023-01-09 10:03:02 -0800 | [diff] [blame] | 100 | static int tr_cmp(const X509_TRUST *const *a, const X509_TRUST *const *b) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 101 | return (*a)->trust - (*b)->trust; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 102 | } |
| 103 | |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 104 | int X509_check_trust(X509 *x, int id, int flags) { |
| 105 | X509_TRUST *pt; |
| 106 | int idx; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 107 | if (id == -1) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 108 | return 1; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 109 | } |
David Benjamin | 4635048 | 2022-06-16 14:03:12 -0400 | [diff] [blame] | 110 | // We get this as a default value |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 111 | if (id == 0) { |
| 112 | int rv; |
| 113 | rv = obj_trust(NID_anyExtendedKeyUsage, x, 0); |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 114 | if (rv != X509_TRUST_UNTRUSTED) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 115 | return rv; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 116 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 117 | return trust_compat(NULL, x, 0); |
| 118 | } |
| 119 | idx = X509_TRUST_get_by_id(id); |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 120 | if (idx == -1) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 121 | return obj_trust(id, x, flags); |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 122 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 123 | pt = X509_TRUST_get0(idx); |
| 124 | return pt->check_trust(pt, x, flags); |
| 125 | } |
| 126 | |
| 127 | int X509_TRUST_get_count(void) { |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 128 | if (!trtable) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 129 | return X509_TRUST_COUNT; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 130 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 131 | return sk_X509_TRUST_num(trtable) + X509_TRUST_COUNT; |
| 132 | } |
| 133 | |
| 134 | X509_TRUST *X509_TRUST_get0(int idx) { |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 135 | if (idx < 0) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 136 | return NULL; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 137 | } |
| 138 | if (idx < (int)X509_TRUST_COUNT) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 139 | return trstandard + idx; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 140 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 141 | return sk_X509_TRUST_value(trtable, idx - X509_TRUST_COUNT); |
| 142 | } |
| 143 | |
| 144 | int X509_TRUST_get_by_id(int id) { |
| 145 | X509_TRUST tmp; |
| 146 | size_t idx; |
| 147 | |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 148 | if ((id >= X509_TRUST_MIN) && (id <= X509_TRUST_MAX)) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 149 | return id - X509_TRUST_MIN; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 150 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 151 | tmp.trust = id; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 152 | if (!trtable) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 153 | return -1; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 154 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 155 | if (!sk_X509_TRUST_find(trtable, &idx, &tmp)) { |
| 156 | return -1; |
| 157 | } |
| 158 | return idx + X509_TRUST_COUNT; |
| 159 | } |
| 160 | |
| 161 | int X509_TRUST_set(int *t, int trust) { |
| 162 | if (X509_TRUST_get_by_id(trust) == -1) { |
| 163 | OPENSSL_PUT_ERROR(X509, X509_R_INVALID_TRUST); |
| 164 | return 0; |
| 165 | } |
| 166 | *t = trust; |
| 167 | return 1; |
| 168 | } |
| 169 | |
| 170 | int X509_TRUST_add(int id, int flags, int (*ck)(X509_TRUST *, X509 *, int), |
David Benjamin | cbb96b4 | 2023-06-04 12:50:39 -0400 | [diff] [blame] | 171 | const char *name, int arg1, void *arg2) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 172 | int idx; |
| 173 | X509_TRUST *trtmp; |
| 174 | char *name_dup; |
| 175 | |
David Benjamin | 4635048 | 2022-06-16 14:03:12 -0400 | [diff] [blame] | 176 | // This is set according to what we change: application can't set it |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 177 | flags &= ~X509_TRUST_DYNAMIC; |
David Benjamin | 4635048 | 2022-06-16 14:03:12 -0400 | [diff] [blame] | 178 | // This will always be set for application modified trust entries |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 179 | flags |= X509_TRUST_DYNAMIC_NAME; |
David Benjamin | 4635048 | 2022-06-16 14:03:12 -0400 | [diff] [blame] | 180 | // Get existing entry if any |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 181 | idx = X509_TRUST_get_by_id(id); |
David Benjamin | 4635048 | 2022-06-16 14:03:12 -0400 | [diff] [blame] | 182 | // Need a new entry |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 183 | if (idx == -1) { |
| 184 | if (!(trtmp = OPENSSL_malloc(sizeof(X509_TRUST)))) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 185 | return 0; |
Adam Langley | 57707c7 | 2016-01-14 11:25:12 -0800 | [diff] [blame] | 186 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 187 | trtmp->flags = X509_TRUST_DYNAMIC; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 188 | } else { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 189 | trtmp = X509_TRUST_get0(idx); |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 190 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 191 | |
David Benjamin | 4635048 | 2022-06-16 14:03:12 -0400 | [diff] [blame] | 192 | // Duplicate the supplied name. |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 193 | name_dup = OPENSSL_strdup(name); |
| 194 | if (name_dup == NULL) { |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 195 | if (idx == -1) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 196 | OPENSSL_free(trtmp); |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 197 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 198 | return 0; |
| 199 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 200 | |
David Benjamin | 4635048 | 2022-06-16 14:03:12 -0400 | [diff] [blame] | 201 | // OPENSSL_free existing name if dynamic |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 202 | if (trtmp->flags & X509_TRUST_DYNAMIC_NAME) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 203 | OPENSSL_free(trtmp->name); |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 204 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 205 | trtmp->name = name_dup; |
David Benjamin | 4635048 | 2022-06-16 14:03:12 -0400 | [diff] [blame] | 206 | // Keep the dynamic flag of existing entry |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 207 | trtmp->flags &= X509_TRUST_DYNAMIC; |
David Benjamin | 4635048 | 2022-06-16 14:03:12 -0400 | [diff] [blame] | 208 | // Set all other flags |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 209 | trtmp->flags |= flags; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 210 | |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 211 | trtmp->trust = id; |
| 212 | trtmp->check_trust = ck; |
| 213 | trtmp->arg1 = arg1; |
| 214 | trtmp->arg2 = arg2; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 215 | |
David Benjamin | 4635048 | 2022-06-16 14:03:12 -0400 | [diff] [blame] | 216 | // If its a new entry manage the dynamic table |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 217 | if (idx == -1) { |
David Benjamin | 97d48db | 2023-03-29 03:09:15 +0900 | [diff] [blame] | 218 | // TODO(davidben): This should be locked. Alternatively, remove the dynamic |
| 219 | // registration mechanism entirely. The trouble is there no way to pass in |
| 220 | // the various parameters into an |X509_VERIFY_PARAM| directly. You can only |
| 221 | // register it in the global table and get an ID. |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 222 | if (!trtable && !(trtable = sk_X509_TRUST_new(tr_cmp))) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 223 | trtable_free(trtmp); |
| 224 | return 0; |
Adam Langley | 57707c7 | 2016-01-14 11:25:12 -0800 | [diff] [blame] | 225 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 226 | if (!sk_X509_TRUST_push(trtable, trtmp)) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 227 | trtable_free(trtmp); |
| 228 | return 0; |
Adam Langley | 57707c7 | 2016-01-14 11:25:12 -0800 | [diff] [blame] | 229 | } |
David Benjamin | 97d48db | 2023-03-29 03:09:15 +0900 | [diff] [blame] | 230 | sk_X509_TRUST_sort(trtable); |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 231 | } |
| 232 | return 1; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 233 | } |
| 234 | |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 235 | static void trtable_free(X509_TRUST *p) { |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 236 | if (!p) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 237 | return; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 238 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 239 | if (p->flags & X509_TRUST_DYNAMIC) { |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 240 | if (p->flags & X509_TRUST_DYNAMIC_NAME) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 241 | OPENSSL_free(p->name); |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 242 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 243 | OPENSSL_free(p); |
| 244 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 245 | } |
| 246 | |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 247 | void X509_TRUST_cleanup(void) { |
| 248 | unsigned int i; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 249 | for (i = 0; i < X509_TRUST_COUNT; i++) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 250 | trtable_free(trstandard + i); |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 251 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 252 | sk_X509_TRUST_pop_free(trtable, trtable_free); |
| 253 | trtable = NULL; |
Adam Langley | 57707c7 | 2016-01-14 11:25:12 -0800 | [diff] [blame] | 254 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 255 | |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 256 | int X509_TRUST_get_flags(const X509_TRUST *xp) { return xp->flags; } |
| 257 | |
| 258 | char *X509_TRUST_get0_name(const X509_TRUST *xp) { return xp->name; } |
| 259 | |
| 260 | int X509_TRUST_get_trust(const X509_TRUST *xp) { return xp->trust; } |
| 261 | |
| 262 | static int trust_1oidany(X509_TRUST *trust, X509 *x, int flags) { |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 263 | if (x->aux && (x->aux->trust || x->aux->reject)) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 264 | return obj_trust(trust->arg1, x, flags); |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 265 | } |
David Benjamin | 4635048 | 2022-06-16 14:03:12 -0400 | [diff] [blame] | 266 | // we don't have any trust settings: for compatibility we return trusted |
| 267 | // if it is self signed |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 268 | return trust_compat(trust, x, flags); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 269 | } |
| 270 | |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 271 | static int trust_1oid(X509_TRUST *trust, X509 *x, int flags) { |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 272 | if (x->aux) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 273 | return obj_trust(trust->arg1, x, flags); |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 274 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 275 | return X509_TRUST_UNTRUSTED; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 276 | } |
| 277 | |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 278 | static int trust_compat(X509_TRUST *trust, X509 *x, int flags) { |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 279 | if (!x509v3_cache_extensions(x)) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 280 | return X509_TRUST_UNTRUSTED; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 281 | } |
| 282 | if (x->ex_flags & EXFLAG_SS) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 283 | return X509_TRUST_TRUSTED; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 284 | } else { |
Adam Langley | 57707c7 | 2016-01-14 11:25:12 -0800 | [diff] [blame] | 285 | return X509_TRUST_UNTRUSTED; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 286 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 287 | } |
| 288 | |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 289 | static int obj_trust(int id, X509 *x, int flags) { |
| 290 | ASN1_OBJECT *obj; |
| 291 | size_t i; |
| 292 | X509_CERT_AUX *ax; |
| 293 | ax = x->aux; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 294 | if (!ax) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 295 | return X509_TRUST_UNTRUSTED; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 296 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 297 | if (ax->reject) { |
| 298 | for (i = 0; i < sk_ASN1_OBJECT_num(ax->reject); i++) { |
| 299 | obj = sk_ASN1_OBJECT_value(ax->reject, i); |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 300 | if (OBJ_obj2nid(obj) == id) { |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 301 | return X509_TRUST_REJECTED; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 302 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 303 | } |
| 304 | } |
| 305 | if (ax->trust) { |
| 306 | for (i = 0; i < sk_ASN1_OBJECT_num(ax->trust); i++) { |
| 307 | obj = sk_ASN1_OBJECT_value(ax->trust, i); |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 308 | if (OBJ_obj2nid(obj) == id) { |
Adam Langley | 57707c7 | 2016-01-14 11:25:12 -0800 | [diff] [blame] | 309 | return X509_TRUST_TRUSTED; |
David Benjamin | c0b87a0 | 2022-06-16 14:02:15 -0400 | [diff] [blame] | 310 | } |
Adam Langley | 57707c7 | 2016-01-14 11:25:12 -0800 | [diff] [blame] | 311 | } |
David Benjamin | 260a10c | 2022-06-16 13:58:28 -0400 | [diff] [blame] | 312 | } |
| 313 | return X509_TRUST_UNTRUSTED; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 314 | } |