x509_lu.c
Go to the documentation of this file.
1 /* crypto/x509/x509_lu.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  *
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to. The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  *
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  * notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  * notice, this list of conditions and the following disclaimer in the
30  * documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  * must display the following acknowledgement:
33  * "This product includes cryptographic software written by
34  * Eric Young (eay@cryptsoft.com)"
35  * The word 'cryptographic' can be left out if the rouines from the library
36  * being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from
38  * the apps directory (application code) you must include an acknowledgement:
39  * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  *
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  *
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed. i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.] */
57 
58 #include <string.h>
59 
60 #include <openssl/err.h>
61 #include <openssl/mem.h>
62 #include <openssl/thread.h>
63 #include <openssl/x509.h>
64 #include <openssl/x509v3.h>
65 
66 #include "../internal.h"
67 #include "internal.h"
68 
70 {
72 
74  if (ret == NULL)
75  return NULL;
76 
77  ret->init = 0;
78  ret->skip = 0;
79  ret->method = method;
80  ret->method_data = NULL;
81  ret->store_ctx = NULL;
82  if ((method->new_item != NULL) && !method->new_item(ret)) {
84  return NULL;
85  }
86  return ret;
87 }
88 
90 {
91  if (ctx == NULL)
92  return;
93  if ((ctx->method != NULL) && (ctx->method->free != NULL))
94  (*ctx->method->free) (ctx);
96 }
97 
99 {
100  if (ctx->method == NULL)
101  return 0;
102  if (ctx->method->init != NULL)
103  return ctx->method->init(ctx);
104  else
105  return 1;
106 }
107 
109 {
110  if (ctx->method == NULL)
111  return 0;
112  if (ctx->method->shutdown != NULL)
113  return ctx->method->shutdown(ctx);
114  else
115  return 1;
116 }
117 
118 int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc, long argl,
119  char **ret)
120 {
121  if (ctx->method == NULL)
122  return -1;
123  if (ctx->method->ctrl != NULL)
124  return ctx->method->ctrl(ctx, cmd, argc, argl, ret);
125  else
126  return 1;
127 }
128 
130  X509_OBJECT *ret)
131 {
132  if ((ctx->method == NULL) || (ctx->method->get_by_subject == NULL))
133  return 0;
134  if (ctx->skip)
135  return 0;
136  return ctx->method->get_by_subject(ctx, type, name, ret) > 0;
137 }
138 
140  ASN1_INTEGER *serial, X509_OBJECT *ret)
141 {
142  if ((ctx->method == NULL) || (ctx->method->get_by_issuer_serial == NULL))
143  return 0;
144  return ctx->method->get_by_issuer_serial(ctx, type, name, serial, ret) > 0;
145 }
146 
148  unsigned char *bytes, int len,
149  X509_OBJECT *ret)
150 {
151  if ((ctx->method == NULL) || (ctx->method->get_by_fingerprint == NULL))
152  return 0;
153  return ctx->method->get_by_fingerprint(ctx, type, bytes, len, ret) > 0;
154 }
155 
157  X509_OBJECT *ret)
158 {
159  if ((ctx->method == NULL) || (ctx->method->get_by_alias == NULL))
160  return 0;
161  return ctx->method->get_by_alias(ctx, type, str, len, ret) > 0;
162 }
163 
164 static int x509_object_cmp(const X509_OBJECT **a, const X509_OBJECT **b)
165 {
166  int ret;
167 
168  ret = ((*a)->type - (*b)->type);
169  if (ret)
170  return ret;
171  switch ((*a)->type) {
172  case X509_LU_X509:
173  ret = X509_subject_name_cmp((*a)->data.x509, (*b)->data.x509);
174  break;
175  case X509_LU_CRL:
176  ret = X509_CRL_cmp((*a)->data.crl, (*b)->data.crl);
177  break;
178  default:
179  /* abort(); */
180  return 0;
181  }
182  return ret;
183 }
184 
186 {
187  X509_STORE *ret;
188 
189  if ((ret = (X509_STORE *)OPENSSL_malloc(sizeof(X509_STORE))) == NULL)
190  return NULL;
191  OPENSSL_memset(ret, 0, sizeof(*ret));
192  CRYPTO_MUTEX_init(&ret->objs_lock);
193  ret->objs = sk_X509_OBJECT_new(x509_object_cmp);
194  if (ret->objs == NULL)
195  goto err;
196  ret->cache = 1;
197  ret->get_cert_methods = sk_X509_LOOKUP_new_null();
198  if (ret->get_cert_methods == NULL)
199  goto err;
200  ret->param = X509_VERIFY_PARAM_new();
201  if (ret->param == NULL)
202  goto err;
203 
204  ret->references = 1;
205  return ret;
206  err:
207  if (ret) {
208  CRYPTO_MUTEX_cleanup(&ret->objs_lock);
209  if (ret->param)
210  X509_VERIFY_PARAM_free(ret->param);
211  if (ret->get_cert_methods)
212  sk_X509_LOOKUP_free(ret->get_cert_methods);
213  if (ret->objs)
214  sk_X509_OBJECT_free(ret->objs);
215  OPENSSL_free(ret);
216  }
217  return NULL;
218 }
219 
221 {
223  return 1;
224 }
225 
226 static void cleanup(X509_OBJECT *a)
227 {
228  if (a == NULL) {
229  return;
230  }
231  if (a->type == X509_LU_X509) {
232  X509_free(a->data.x509);
233  } else if (a->type == X509_LU_CRL) {
234  X509_CRL_free(a->data.crl);
235  } else {
236  /* abort(); */
237  }
238 
239  OPENSSL_free(a);
240 }
241 
243 {
244  size_t j;
245  STACK_OF(X509_LOOKUP) *sk;
246  X509_LOOKUP *lu;
247 
248  if (vfy == NULL)
249  return;
250 
252  return;
253  }
254 
256 
257  sk = vfy->get_cert_methods;
258  for (j = 0; j < sk_X509_LOOKUP_num(sk); j++) {
259  lu = sk_X509_LOOKUP_value(sk, j);
261  X509_LOOKUP_free(lu);
262  }
263  sk_X509_LOOKUP_free(sk);
264  sk_X509_OBJECT_pop_free(vfy->objs, cleanup);
265 
266  if (vfy->param)
268  OPENSSL_free(vfy);
269 }
270 
272 {
273  size_t i;
274  STACK_OF(X509_LOOKUP) *sk;
275  X509_LOOKUP *lu;
276 
277  sk = v->get_cert_methods;
278  for (i = 0; i < sk_X509_LOOKUP_num(sk); i++) {
279  lu = sk_X509_LOOKUP_value(sk, i);
280  if (m == lu->method) {
281  return lu;
282  }
283  }
284  /* a new one */
285  lu = X509_LOOKUP_new(m);
286  if (lu == NULL)
287  return NULL;
288  else {
289  lu->store_ctx = v;
290  if (sk_X509_LOOKUP_push(v->get_cert_methods, lu))
291  return lu;
292  else {
293  X509_LOOKUP_free(lu);
294  return NULL;
295  }
296  }
297 }
298 
300  X509_OBJECT *ret)
301 {
302  X509_STORE *ctx = vs->ctx;
303  X509_LOOKUP *lu;
304  X509_OBJECT stmp, *tmp;
305  int i;
306 
307  CRYPTO_MUTEX_lock_write(&ctx->objs_lock);
309  CRYPTO_MUTEX_unlock_write(&ctx->objs_lock);
310 
311  if (tmp == NULL || type == X509_LU_CRL) {
312  for (i = 0; i < (int)sk_X509_LOOKUP_num(ctx->get_cert_methods); i++) {
313  lu = sk_X509_LOOKUP_value(ctx->get_cert_methods, i);
314  if (X509_LOOKUP_by_subject(lu, type, name, &stmp)) {
315  tmp = &stmp;
316  break;
317  }
318  }
319  if (tmp == NULL)
320  return 0;
321  }
322 
323  /*
324  * if (ret->data.ptr != NULL) X509_OBJECT_free_contents(ret);
325  */
326 
327  ret->type = tmp->type;
328  ret->data.ptr = tmp->data.ptr;
329 
331 
332  return 1;
333 }
334 
336 {
337  X509_OBJECT *obj;
338  int ret = 1;
339 
340  if (x == NULL)
341  return 0;
343  if (obj == NULL) {
345  return 0;
346  }
347  obj->type = X509_LU_X509;
348  obj->data.x509 = x;
349 
350  CRYPTO_MUTEX_lock_write(&ctx->objs_lock);
351 
353 
354  if (X509_OBJECT_retrieve_match(ctx->objs, obj)) {
356  OPENSSL_free(obj);
358  ret = 0;
359  } else if (!sk_X509_OBJECT_push(ctx->objs, obj)) {
361  OPENSSL_free(obj);
363  ret = 0;
364  }
365 
366  CRYPTO_MUTEX_unlock_write(&ctx->objs_lock);
367 
368  return ret;
369 }
370 
372 {
373  X509_OBJECT *obj;
374  int ret = 1;
375 
376  if (x == NULL)
377  return 0;
379  if (obj == NULL) {
381  return 0;
382  }
383  obj->type = X509_LU_CRL;
384  obj->data.crl = x;
385 
386  CRYPTO_MUTEX_lock_write(&ctx->objs_lock);
387 
389 
390  if (X509_OBJECT_retrieve_match(ctx->objs, obj)) {
392  OPENSSL_free(obj);
394  ret = 0;
395  } else if (!sk_X509_OBJECT_push(ctx->objs, obj)) {
397  OPENSSL_free(obj);
399  ret = 0;
400  }
401 
402  CRYPTO_MUTEX_unlock_write(&ctx->objs_lock);
403 
404  return ret;
405 }
406 
408 {
409  switch (a->type) {
410  case X509_LU_X509:
411  X509_up_ref(a->data.x509);
412  break;
413  case X509_LU_CRL:
414  X509_CRL_up_ref(a->data.crl);
415  break;
416  }
417  return 1;
418 }
419 
421 {
422  switch (a->type) {
423  case X509_LU_X509:
424  X509_free(a->data.x509);
425  break;
426  case X509_LU_CRL:
427  X509_CRL_free(a->data.crl);
428  break;
429  }
430 }
431 
433 {
434  return a->type;
435 }
436 
438 {
439  if (a == NULL || a->type != X509_LU_X509) {
440  return NULL;
441  }
442  return a->data.x509;
443 }
444 
446  X509_NAME *name, int *pnmatch)
447 {
448  X509_OBJECT stmp;
449  X509 x509_s;
450  X509_CINF cinf_s;
451  X509_CRL crl_s;
452  X509_CRL_INFO crl_info_s;
453 
454  stmp.type = type;
455  switch (type) {
456  case X509_LU_X509:
457  stmp.data.x509 = &x509_s;
458  x509_s.cert_info = &cinf_s;
459  cinf_s.subject = name;
460  break;
461  case X509_LU_CRL:
462  stmp.data.crl = &crl_s;
463  crl_s.crl = &crl_info_s;
464  crl_info_s.issuer = name;
465  break;
466  default:
467  /* abort(); */
468  return -1;
469  }
470 
471  size_t idx;
472  sk_X509_OBJECT_sort(h);
473  if (!sk_X509_OBJECT_find(h, &idx, &stmp))
474  return -1;
475 
476  if (pnmatch != NULL) {
477  int tidx;
478  const X509_OBJECT *tobj, *pstmp;
479  *pnmatch = 1;
480  pstmp = &stmp;
481  for (tidx = idx + 1; tidx < (int)sk_X509_OBJECT_num(h); tidx++) {
482  tobj = sk_X509_OBJECT_value(h, tidx);
483  if (x509_object_cmp(&tobj, &pstmp))
484  break;
485  (*pnmatch)++;
486  }
487  }
488 
489  return idx;
490 }
491 
493  X509_NAME *name)
494 {
495  return x509_object_idx_cnt(h, type, name, NULL);
496 }
497 
499  int type, X509_NAME *name)
500 {
501  int idx;
503  if (idx == -1)
504  return NULL;
505  return sk_X509_OBJECT_value(h, idx);
506 }
507 
509 {
510  return st->objs;
511 }
512 
514 {
515  int i, idx, cnt;
516  STACK_OF(X509) *sk;
517  X509 *x;
518  X509_OBJECT *obj;
519  sk = sk_X509_new_null();
520  if (sk == NULL)
521  return NULL;
522  CRYPTO_MUTEX_lock_write(&ctx->ctx->objs_lock);
523  idx = x509_object_idx_cnt(ctx->ctx->objs, X509_LU_X509, nm, &cnt);
524  if (idx < 0) {
525  /*
526  * Nothing found in cache: do lookup to possibly add new objects to
527  * cache
528  */
529  X509_OBJECT xobj;
530  CRYPTO_MUTEX_unlock_write(&ctx->ctx->objs_lock);
531  if (!X509_STORE_get_by_subject(ctx, X509_LU_X509, nm, &xobj)) {
532  sk_X509_free(sk);
533  return NULL;
534  }
536  CRYPTO_MUTEX_lock_write(&ctx->ctx->objs_lock);
537  idx = x509_object_idx_cnt(ctx->ctx->objs, X509_LU_X509, nm, &cnt);
538  if (idx < 0) {
539  CRYPTO_MUTEX_unlock_write(&ctx->ctx->objs_lock);
540  sk_X509_free(sk);
541  return NULL;
542  }
543  }
544  for (i = 0; i < cnt; i++, idx++) {
545  obj = sk_X509_OBJECT_value(ctx->ctx->objs, idx);
546  x = obj->data.x509;
547  if (!sk_X509_push(sk, x)) {
548  CRYPTO_MUTEX_unlock_write(&ctx->ctx->objs_lock);
550  return NULL;
551  }
552  X509_up_ref(x);
553  }
554  CRYPTO_MUTEX_unlock_write(&ctx->ctx->objs_lock);
555  return sk;
556 
557 }
558 
560 {
561  int i, idx, cnt;
562  STACK_OF(X509_CRL) *sk;
563  X509_CRL *x;
564  X509_OBJECT *obj, xobj;
565  sk = sk_X509_CRL_new_null();
566  if (sk == NULL)
567  return NULL;
568 
569  /* Always do lookup to possibly add new CRLs to cache. */
570  if (!X509_STORE_get_by_subject(ctx, X509_LU_CRL, nm, &xobj)) {
571  sk_X509_CRL_free(sk);
572  return NULL;
573  }
575  CRYPTO_MUTEX_lock_write(&ctx->ctx->objs_lock);
576  idx = x509_object_idx_cnt(ctx->ctx->objs, X509_LU_CRL, nm, &cnt);
577  if (idx < 0) {
578  CRYPTO_MUTEX_unlock_write(&ctx->ctx->objs_lock);
579  sk_X509_CRL_free(sk);
580  return NULL;
581  }
582 
583  for (i = 0; i < cnt; i++, idx++) {
584  obj = sk_X509_OBJECT_value(ctx->ctx->objs, idx);
585  x = obj->data.crl;
587  if (!sk_X509_CRL_push(sk, x)) {
588  CRYPTO_MUTEX_unlock_write(&ctx->ctx->objs_lock);
589  X509_CRL_free(x);
590  sk_X509_CRL_pop_free(sk, X509_CRL_free);
591  return NULL;
592  }
593  }
594  CRYPTO_MUTEX_unlock_write(&ctx->ctx->objs_lock);
595  return sk;
596 }
597 
599  X509_OBJECT *x)
600 {
601  size_t idx, i;
602  X509_OBJECT *obj;
603 
604  sk_X509_OBJECT_sort(h);
605  if (!sk_X509_OBJECT_find(h, &idx, x)) {
606  return NULL;
607  }
608  if ((x->type != X509_LU_X509) && (x->type != X509_LU_CRL))
609  return sk_X509_OBJECT_value(h, idx);
610  for (i = idx; i < sk_X509_OBJECT_num(h); i++) {
611  obj = sk_X509_OBJECT_value(h, i);
612  if (x509_object_cmp
613  ((const X509_OBJECT **)&obj, (const X509_OBJECT **)&x))
614  return NULL;
615  if (x->type == X509_LU_X509) {
616  if (!X509_cmp(obj->data.x509, x->data.x509))
617  return obj;
618  } else if (x->type == X509_LU_CRL) {
619  if (!X509_CRL_match(obj->data.crl, x->data.crl))
620  return obj;
621  } else
622  return obj;
623  }
624  return NULL;
625 }
626 
627 /*
628  * Try to get issuer certificate from store. Due to limitations of the API
629  * this can only retrieve a single certificate matching a given subject name.
630  * However it will fill the cache with all matching certificates, so we can
631  * examine the cache for all matches. Return values are: 1 lookup
632  * successful. 0 certificate not found. -1 some other error.
633  */
635 {
636  X509_NAME *xn;
637  X509_OBJECT obj, *pobj;
638  int idx, ret;
639  size_t i;
640  xn = X509_get_issuer_name(x);
642  return 0;
643  /* If certificate matches all OK */
644  if (ctx->check_issued(ctx, x, obj.data.x509)) {
645  *issuer = obj.data.x509;
646  return 1;
647  }
649 
650  /* Else find index of first cert accepted by 'check_issued' */
651  ret = 0;
652  CRYPTO_MUTEX_lock_write(&ctx->ctx->objs_lock);
653  idx = X509_OBJECT_idx_by_subject(ctx->ctx->objs, X509_LU_X509, xn);
654  if (idx != -1) { /* should be true as we've had at least one
655  * match */
656  /* Look through all matching certs for suitable issuer */
657  for (i = idx; i < sk_X509_OBJECT_num(ctx->ctx->objs); i++) {
658  pobj = sk_X509_OBJECT_value(ctx->ctx->objs, i);
659  /* See if we've run past the matches */
660  if (pobj->type != X509_LU_X509)
661  break;
663  break;
664  if (ctx->check_issued(ctx, x, pobj->data.x509)) {
665  *issuer = pobj->data.x509;
667  ret = 1;
668  break;
669  }
670  }
671  }
672  CRYPTO_MUTEX_unlock_write(&ctx->ctx->objs_lock);
673  return ret;
674 }
675 
677 {
678  return X509_VERIFY_PARAM_set_flags(ctx->param, flags);
679 }
680 
682 {
684  return 1;
685 }
686 
688 {
689  return X509_VERIFY_PARAM_set_purpose(ctx->param, purpose);
690 }
691 
693 {
694  return X509_VERIFY_PARAM_set_trust(ctx->param, trust);
695 }
696 
698 {
699  return X509_VERIFY_PARAM_set1(ctx->param, param);
700 }
701 
703 {
704  return ctx->param;
705 }
706 
708 {
709  ctx->verify = verify;
710 }
711 
713 {
714  return ctx->verify;
715 }
716 
719 {
720  ctx->verify_cb = verify_cb;
721 }
722 
724 {
725  return ctx->verify_cb;
726 }
727 
729  X509_STORE_CTX_get_issuer_fn get_issuer)
730 {
731  ctx->get_issuer = get_issuer;
732 }
733 
735 {
736  return ctx->get_issuer;
737 }
738 
741 {
742  ctx->check_issued = check_issued;
743 }
744 
746 {
747  return ctx->check_issued;
748 }
749 
752 {
753  ctx->check_revocation = check_revocation;
754 }
755 
757 {
758  return ctx->check_revocation;
759 }
760 
763 {
764  ctx->get_crl = get_crl;
765 }
766 
768 {
769  return ctx->get_crl;
770 }
771 
774 {
775  ctx->check_crl = check_crl;
776 }
777 
779 {
780  return ctx->check_crl;
781 }
782 
785 {
786  ctx->cert_crl = cert_crl;
787 }
788 
790 {
791  return ctx->cert_crl;
792 }
793 
795  X509_STORE_CTX_lookup_certs_fn lookup_certs)
796 {
797  ctx->lookup_certs = lookup_certs;
798 }
799 
800 X509_STORE_CTX_lookup_certs_fn X509_STORE_get_lookup_certs(X509_STORE *ctx)
801 {
802  return ctx->lookup_certs;
803 }
804 
806  X509_STORE_CTX_lookup_crls_fn lookup_crls)
807 {
808  ctx->lookup_crls = lookup_crls;
809 }
810 
811 X509_STORE_CTX_lookup_crls_fn X509_STORE_get_lookup_crls(X509_STORE *ctx)
812 {
813  return ctx->lookup_crls;
814 }
815 
817  X509_STORE_CTX_cleanup_fn ctx_cleanup)
818 {
819  ctx->cleanup = ctx_cleanup;
820 }
821 
823 {
824  return ctx->cleanup;
825 }
826 
828 {
829  return ctx->ctx;
830 }
X509_STORE_add_lookup
X509_LOOKUP * X509_STORE_add_lookup(X509_STORE *v, X509_LOOKUP_METHOD *m)
Definition: x509_lu.c:271
X509_STORE_add_crl
int X509_STORE_add_crl(X509_STORE *ctx, X509_CRL *x)
Definition: x509_lu.c:371
xds_interop_client.str
str
Definition: xds_interop_client.py:487
X509_STORE_get_lookup_certs
X509_STORE_CTX_lookup_certs_fn X509_STORE_get_lookup_certs(X509_STORE *ctx)
Definition: x509_lu.c:800
X509_LOOKUP_shutdown
int X509_LOOKUP_shutdown(X509_LOOKUP *ctx)
Definition: x509_lu.c:108
X509_STORE_set_get_issuer
void X509_STORE_set_get_issuer(X509_STORE *ctx, X509_STORE_CTX_get_issuer_fn get_issuer)
Definition: x509_lu.c:728
obj
OPENSSL_EXPORT const ASN1_OBJECT * obj
Definition: x509.h:1671
X509_STORE_get_verify_cb
X509_STORE_CTX_verify_cb X509_STORE_get_verify_cb(X509_STORE *ctx)
Definition: x509_lu.c:723
X509_CRL_up_ref
#define X509_CRL_up_ref
Definition: boringssl_prefix_symbols.h:2330
X509_VERIFY_PARAM_set_purpose
#define X509_VERIFY_PARAM_set_purpose
Definition: boringssl_prefix_symbols.h:2601
X509_STORE_CTX_check_crl_fn
int(* X509_STORE_CTX_check_crl_fn)(X509_STORE_CTX *ctx, X509_CRL *crl)
Definition: x509.h:1891
X509_STORE_set_verify
void X509_STORE_set_verify(X509_STORE *ctx, X509_STORE_CTX_verify_fn verify)
Definition: x509_lu.c:707
X509_get_subject_name
#define X509_get_subject_name
Definition: boringssl_prefix_symbols.h:2672
X509_STORE_set_check_crl
void X509_STORE_set_check_crl(X509_STORE *ctx, X509_STORE_CTX_check_crl_fn check_crl)
Definition: x509_lu.c:772
X509_VERIFY_PARAM_set_trust
#define X509_VERIFY_PARAM_set_trust
Definition: boringssl_prefix_symbols.h:2603
x509_st::cert_info
X509_CINF * cert_info
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:140
ctx
Definition: benchmark-async.c:30
x509_object_idx_cnt
static int x509_object_idx_cnt(STACK_OF(X509_OBJECT) *h, int type, X509_NAME *name, int *pnmatch)
Definition: x509_lu.c:445
X509_STORE_get_lookup_crls
X509_STORE_CTX_lookup_crls_fn X509_STORE_get_lookup_crls(X509_STORE *ctx)
Definition: x509_lu.c:811
verify_cb
static int verify_cb(int ok, X509_STORE_CTX *ctx)
Definition: ssl_transport_security.cc:1973
X509_R_CERT_ALREADY_IN_HASH_TABLE
#define X509_R_CERT_ALREADY_IN_HASH_TABLE
Definition: x509.h:2382
X509_LOOKUP_by_fingerprint
int X509_LOOKUP_by_fingerprint(X509_LOOKUP *ctx, int type, unsigned char *bytes, int len, X509_OBJECT *ret)
Definition: x509_lu.c:147
X509_STORE_set_check_revocation
void X509_STORE_set_check_revocation(X509_STORE *ctx, X509_STORE_CTX_check_revocation_fn check_revocation)
Definition: x509_lu.c:750
OPENSSL_PUT_ERROR
#define OPENSSL_PUT_ERROR(library, reason)
Definition: err.h:423
internal.h
string.h
X509_STORE_get_by_subject
int X509_STORE_get_by_subject(X509_STORE_CTX *vs, int type, X509_NAME *name, X509_OBJECT *ret)
Definition: x509_lu.c:299
x509_store_st::param
X509_VERIFY_PARAM * param
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:279
X509_STORE_get_cleanup
X509_STORE_CTX_cleanup_fn X509_STORE_get_cleanup(X509_STORE *ctx)
Definition: x509_lu.c:822
X509_STORE_get_check_crl
X509_STORE_CTX_check_crl_fn X509_STORE_get_check_crl(X509_STORE *ctx)
Definition: x509_lu.c:778
check_revocation
static int check_revocation(X509_STORE_CTX *ctx)
Definition: x509_vfy.c:909
error_ref_leak.err
err
Definition: error_ref_leak.py:35
X509_STORE_set_flags
int X509_STORE_set_flags(X509_STORE *ctx, unsigned long flags)
Definition: x509_lu.c:676
x509v3.h
X509_STORE_set1_param
int X509_STORE_set1_param(X509_STORE *ctx, X509_VERIFY_PARAM *param)
Definition: x509_lu.c:697
x509_object_st::crl
X509_CRL * crl
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:243
X509_OBJECT_get0_X509
X509 * X509_OBJECT_get0_X509(const X509_OBJECT *a)
Definition: x509_lu.c:437
check_issued
static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer)
Definition: x509_vfy.c:543
X509_STORE_CTX_verify_fn
int(* X509_STORE_CTX_verify_fn)(X509_STORE_CTX *)
Definition: x509.h:1883
setup.name
name
Definition: setup.py:542
a
int a
Definition: abseil-cpp/absl/container/internal/hash_policy_traits_test.cc:88
x509_object_cmp
static int x509_object_cmp(const X509_OBJECT **a, const X509_OBJECT **b)
Definition: x509_lu.c:164
CRYPTO_MUTEX_init
#define CRYPTO_MUTEX_init
Definition: boringssl_prefix_symbols.h:1124
X509_STORE_CTX_get_issuer_fn
int(* X509_STORE_CTX_get_issuer_fn)(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
Definition: x509.h:1884
X509_STORE_get_get_crl
X509_STORE_CTX_get_crl_fn X509_STORE_get_get_crl(X509_STORE *ctx)
Definition: x509_lu.c:767
X509_NAME_cmp
#define X509_NAME_cmp
Definition: boringssl_prefix_symbols.h:2376
X509_OBJECT_idx_by_subject
int X509_OBJECT_idx_by_subject(STACK_OF(X509_OBJECT) *h, int type, X509_NAME *name)
Definition: x509_lu.c:492
OPENSSL_memset
static void * OPENSSL_memset(void *dst, int c, size_t n)
Definition: third_party/boringssl-with-bazel/src/crypto/internal.h:835
verify
static void verify(const verify_params params, const char *expected, size_t nheaders,...)
Definition: hpack_encoder_test.cc:158
X509_STORE_set_get_crl
void X509_STORE_set_get_crl(X509_STORE *ctx, X509_STORE_CTX_get_crl_fn get_crl)
Definition: x509_lu.c:761
X509_LOOKUP_by_issuer_serial
int X509_LOOKUP_by_issuer_serial(X509_LOOKUP *ctx, int type, X509_NAME *name, ASN1_INTEGER *serial, X509_OBJECT *ret)
Definition: x509_lu.c:139
X509_LOOKUP_new
X509_LOOKUP * X509_LOOKUP_new(X509_LOOKUP_METHOD *method)
Definition: x509_lu.c:69
X509_VERIFY_PARAM_new
#define X509_VERIFY_PARAM_new
Definition: boringssl_prefix_symbols.h:2590
X509_LOOKUP_by_alias
int X509_LOOKUP_by_alias(X509_LOOKUP *ctx, int type, char *str, int len, X509_OBJECT *ret)
Definition: x509_lu.c:156
X509_free
#define X509_free
Definition: boringssl_prefix_symbols.h:2632
X509_STORE_get_cert_crl
X509_STORE_CTX_cert_crl_fn X509_STORE_get_cert_crl(X509_STORE *ctx)
Definition: x509_lu.c:789
OPENSSL_malloc
#define OPENSSL_malloc
Definition: boringssl_prefix_symbols.h:1885
cert_crl
static int cert_crl(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x)
Definition: x509_vfy.c:1663
X509_STORE_get_check_issued
X509_STORE_CTX_check_issued_fn X509_STORE_get_check_issued(X509_STORE *ctx)
Definition: x509_lu.c:745
X509_VERIFY_PARAM_set_flags
#define X509_VERIFY_PARAM_set_flags
Definition: boringssl_prefix_symbols.h:2599
cleanup
static void cleanup(X509_OBJECT *a)
Definition: x509_lu.c:226
X509_VERIFY_PARAM_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:217
xds_interop_client.int
int
Definition: xds_interop_client.py:113
X509_get_issuer_name
#define X509_get_issuer_name
Definition: boringssl_prefix_symbols.h:2664
X509_STORE_free
void X509_STORE_free(X509_STORE *vfy)
Definition: x509_lu.c:242
X509_CRL_INFO
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:182
X509_STORE_get0_param
X509_VERIFY_PARAM * X509_STORE_get0_param(X509_STORE *ctx)
Definition: x509_lu.c:702
X509_CRL_free
#define X509_CRL_free
Definition: boringssl_prefix_symbols.h:2294
STACK_OF
STACK_OF(X509_OBJECT)
Definition: x509_lu.c:508
X509_LOOKUP_ctrl
int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc, long argl, char **ret)
Definition: x509_lu.c:118
x509_lookup_st::store_ctx
X509_STORE * store_ctx
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:306
setup.v
v
Definition: third_party/bloaty/third_party/capstone/bindings/python/setup.py:42
asn1_object_st::data
const unsigned char * data
Definition: third_party/boringssl-with-bazel/src/crypto/asn1/internal.h:106
X509_crl_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:195
regen-readme.cmd
cmd
Definition: regen-readme.py:21
err.h
X509_up_ref
OPENSSL_EXPORT int X509_up_ref(X509 *x509)
x509_store_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:270
X509_CRL_INFO::issuer
X509_NAME * issuer
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:185
x
int x
Definition: bloaty/third_party/googletest/googlemock/test/gmock-matchers_test.cc:3610
x509_lookup_method_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:249
X509_STORE_set_purpose
int X509_STORE_set_purpose(X509_STORE *ctx, int purpose)
Definition: x509_lu.c:687
x509_object_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:237
X509_STORE_CTX_check_revocation_fn
int(* X509_STORE_CTX_check_revocation_fn)(X509_STORE_CTX *ctx)
Definition: x509.h:1888
X509_CRL_match
#define X509_CRL_match
Definition: boringssl_prefix_symbols.h:2315
X509_STORE_set_lookup_crls
void X509_STORE_set_lookup_crls(X509_STORE *ctx, X509_STORE_CTX_lookup_crls_fn lookup_crls)
Definition: x509_lu.c:805
X509_LU_CRL
#define X509_LU_CRL
Definition: x509.h:1875
X509_CINF::subject
X509_NAME * subject
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:129
b
uint64_t b
Definition: abseil-cpp/absl/container/internal/layout_test.cc:53
X509_OBJECT_get_type
int X509_OBJECT_get_type(const X509_OBJECT *a)
Definition: x509_lu.c:432
X509_LOOKUP_free
void X509_LOOKUP_free(X509_LOOKUP *ctx)
Definition: x509_lu.c:89
X509_STORE_get0_objects
#define X509_STORE_get0_objects
Definition: boringssl_prefix_symbols.h:2528
X509_STORE_get1_crls
#define X509_STORE_get1_crls
Definition: boringssl_prefix_symbols.h:2531
setup.idx
idx
Definition: third_party/bloaty/third_party/capstone/bindings/python/setup.py:197
X509_STORE_CTX_cleanup_fn
int(* X509_STORE_CTX_cleanup_fn)(X509_STORE_CTX *ctx)
Definition: x509.h:1899
X509_CINF
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:123
X509_STORE_CTX_cert_crl_fn
int(* X509_STORE_CTX_cert_crl_fn)(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x)
Definition: x509.h:1892
X509_STORE_up_ref
int X509_STORE_up_ref(X509_STORE *store)
Definition: x509_lu.c:220
X509_STORE_get_check_revocation
X509_STORE_CTX_check_revocation_fn X509_STORE_get_check_revocation(X509_STORE *ctx)
Definition: x509_lu.c:756
x509_object_st::data
union x509_object_st::@359 data
CRYPTO_MUTEX_cleanup
#define CRYPTO_MUTEX_cleanup
Definition: boringssl_prefix_symbols.h:1123
X509_STORE_add_cert
int X509_STORE_add_cert(X509_STORE *ctx, X509 *x)
Definition: x509_lu.c:335
x509_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:139
X509_STORE_set_trust
int X509_STORE_set_trust(X509_STORE *ctx, int trust)
Definition: x509_lu.c:692
bytes
uint8 bytes[10]
Definition: bloaty/third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc:153
X509_STORE_CTX_get1_issuer
int X509_STORE_CTX_get1_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
Definition: x509_lu.c:634
absl::flags_internal
Definition: abseil-cpp/absl/flags/commandlineflag.h:40
x509_lookup_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:300
X509_STORE_get1_certs
#define X509_STORE_get1_certs
Definition: boringssl_prefix_symbols.h:2530
x509_object_st::type
int type
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:239
X509_VERIFY_PARAM_set1
#define X509_VERIFY_PARAM_set1
Definition: boringssl_prefix_symbols.h:2591
X509_VERIFY_PARAM_set_depth
#define X509_VERIFY_PARAM_set_depth
Definition: boringssl_prefix_symbols.h:2598
ret
UniquePtr< SSL_SESSION > ret
Definition: ssl_x509.cc:1029
x509_store_st::objs_lock
CRYPTO_MUTEX objs_lock
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:274
X509_STORE_set_cleanup
void X509_STORE_set_cleanup(X509_STORE *ctx, X509_STORE_CTX_cleanup_fn ctx_cleanup)
Definition: x509_lu.c:816
check_crl
static int check_crl(X509_STORE_CTX *ctx, X509_CRL *crl)
Definition: x509_vfy.c:1555
sk_X509_new_null
#define sk_X509_new_null
Definition: boringssl_prefix_symbols.h:586
CRYPTO_MUTEX_lock_write
#define CRYPTO_MUTEX_lock_write
Definition: boringssl_prefix_symbols.h:1126
X509_STORE_get_verify
X509_STORE_CTX_verify_fn X509_STORE_get_verify(X509_STORE *ctx)
Definition: x509_lu.c:712
x509_lookup_st::method
X509_LOOKUP_METHOD * method
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:303
X509_CRL_cmp
#define X509_CRL_cmp
Definition: boringssl_prefix_symbols.h:2289
X509_STORE_set_depth
int X509_STORE_set_depth(X509_STORE *ctx, int depth)
Definition: x509_lu.c:681
X509_LOOKUP_by_subject
int X509_LOOKUP_by_subject(X509_LOOKUP *ctx, int type, X509_NAME *name, X509_OBJECT *ret)
Definition: x509_lu.c:129
X509_STORE_set_lookup_certs
void X509_STORE_set_lookup_certs(X509_STORE *ctx, X509_STORE_CTX_lookup_certs_fn lookup_certs)
Definition: x509_lu.c:794
CRYPTO_refcount_inc
#define CRYPTO_refcount_inc
Definition: boringssl_prefix_symbols.h:1191
X509_STORE_get_get_issuer
X509_STORE_CTX_get_issuer_fn X509_STORE_get_get_issuer(X509_STORE *ctx)
Definition: x509_lu.c:734
x509_store_ctx_st::ctx
X509_STORE * ctx
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:313
X509_STORE_CTX_check_issued_fn
int(* X509_STORE_CTX_check_issued_fn)(X509_STORE_CTX *ctx, X509 *x, X509 *issuer)
Definition: x509.h:1886
mem.h
asyncio_get_stats.type
type
Definition: asyncio_get_stats.py:37
len
int len
Definition: abseil-cpp/absl/base/internal/low_level_alloc_test.cc:46
sk_X509_pop_free
#define sk_X509_pop_free
Definition: boringssl_prefix_symbols.h:588
autogen_x86imm.tmp
tmp
Definition: autogen_x86imm.py:12
cleanup
Definition: cleanup.py:1
x509_object_st::x509
X509 * x509
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:242
X509_OBJECT_retrieve_match
X509_OBJECT * X509_OBJECT_retrieve_match(STACK_OF(X509_OBJECT) *h, X509_OBJECT *x)
Definition: x509_lu.c:598
X509_STORE_set_check_issued
void X509_STORE_set_check_issued(X509_STORE *ctx, X509_STORE_CTX_check_issued_fn check_issued)
Definition: x509_lu.c:739
X509_STORE_CTX_verify_cb
int(* X509_STORE_CTX_verify_cb)(int, X509_STORE_CTX *)
Definition: x509.h:1882
mkowners.depth
depth
Definition: mkowners.py:114
regress.m
m
Definition: regress/regress.py:25
method
NSString * method
Definition: ProtoMethod.h:28
X509_VERIFY_PARAM_free
#define X509_VERIFY_PARAM_free
Definition: boringssl_prefix_symbols.h:2581
X509_LU_X509
#define X509_LU_X509
Definition: x509.h:1874
X509_STORE_CTX_get0_store
X509_STORE * X509_STORE_CTX_get0_store(X509_STORE_CTX *ctx)
Definition: x509_lu.c:827
thread.h
X509_STORE_set_cert_crl
void X509_STORE_set_cert_crl(X509_STORE *ctx, X509_STORE_CTX_cert_crl_fn cert_crl)
Definition: x509_lu.c:783
X509_LOOKUP_init
int X509_LOOKUP_init(X509_LOOKUP *ctx)
Definition: x509_lu.c:98
OPENSSL_free
#define OPENSSL_free
Definition: boringssl_prefix_symbols.h:1869
CRYPTO_MUTEX_unlock_write
#define CRYPTO_MUTEX_unlock_write
Definition: boringssl_prefix_symbols.h:1128
X509_cmp
#define X509_cmp
Definition: boringssl_prefix_symbols.h:2623
X509_OBJECT_up_ref_count
int X509_OBJECT_up_ref_count(X509_OBJECT *a)
Definition: x509_lu.c:407
X509_name_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:95
x509_store_ctx_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:312
X509_OBJECT_free_contents
void X509_OBJECT_free_contents(X509_OBJECT *a)
Definition: x509_lu.c:420
X509_STORE_set_verify_cb
void X509_STORE_set_verify_cb(X509_STORE *ctx, X509_STORE_CTX_verify_cb verify_cb)
Definition: x509_lu.c:717
X509_crl_st::crl
X509_CRL_INFO * crl
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:197
asn1_string_st
Definition: asn1.h:543
i
uint64_t i
Definition: abseil-cpp/absl/container/btree_benchmark.cc:230
X509_OBJECT_retrieve_by_subject
X509_OBJECT * X509_OBJECT_retrieve_by_subject(STACK_OF(X509_OBJECT) *h, int type, X509_NAME *name)
Definition: x509_lu.c:498
ERR_R_MALLOC_FAILURE
#define ERR_R_MALLOC_FAILURE
Definition: err.h:371
X509_STORE_new
X509_STORE * X509_STORE_new(void)
Definition: x509_lu.c:185
CRYPTO_refcount_dec_and_test_zero
#define CRYPTO_refcount_dec_and_test_zero
Definition: boringssl_prefix_symbols.h:1190
X509_STORE_CTX_get_crl_fn
int(* X509_STORE_CTX_get_crl_fn)(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x)
Definition: x509.h:1889
X509_subject_name_cmp
#define X509_subject_name_cmp
Definition: boringssl_prefix_symbols.h:2723
x509.h
x509_store_st::references
CRYPTO_refcount_t references
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:295


grpc
Author(s):
autogenerated on Fri May 16 2025 03:00:55