summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2021-11-05 07:25:36 +0000
committertb <>2021-11-05 07:25:36 +0000
commitbe18d241ffee5cafbdfd80a58eb8d0a4b5803511 (patch)
treeed0531ed1b01d4d8718f492519de90fd25f61abb /src/lib
parent244374d8dda906a87c40f39a8ed949cf07a1c8f3 (diff)
downloadopenbsd-be18d241ffee5cafbdfd80a58eb8d0a4b5803511.tar.gz
openbsd-be18d241ffee5cafbdfd80a58eb8d0a4b5803511.tar.bz2
openbsd-be18d241ffee5cafbdfd80a58eb8d0a4b5803511.zip
Garbage collect xobj->data.{ptr,pkey}
Both these are essentially unused. Remove the last use of data.ptr by initializing and copying the X509_OBJECT using memset() and struct assignment in X509_STORE_CTX_get_subject_by_name() and add a missing error check for X509_OBJECT_up_ref_count() while there. ok beck
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/x509/x509_lcl.h2
-rw-r--r--src/lib/libcrypto/x509/x509_lu.c12
2 files changed, 6 insertions, 8 deletions
diff --git a/src/lib/libcrypto/x509/x509_lcl.h b/src/lib/libcrypto/x509/x509_lcl.h
index 804fff48fc..e1894e5523 100644
--- a/src/lib/libcrypto/x509/x509_lcl.h
+++ b/src/lib/libcrypto/x509/x509_lcl.h
@@ -246,10 +246,8 @@ struct x509_object_st {
246 /* one of the above types */ 246 /* one of the above types */
247 int type; 247 int type;
248 union { 248 union {
249 char *ptr;
250 X509 *x509; 249 X509 *x509;
251 X509_CRL *crl; 250 X509_CRL *crl;
252 EVP_PKEY *pkey;
253 } data; 251 } data;
254} /* X509_OBJECT */; 252} /* X509_OBJECT */;
255 253
diff --git a/src/lib/libcrypto/x509/x509_lu.c b/src/lib/libcrypto/x509/x509_lu.c
index d4ea527662..8290f89657 100644
--- a/src/lib/libcrypto/x509/x509_lu.c
+++ b/src/lib/libcrypto/x509/x509_lu.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509_lu.c,v 1.37 2021/11/01 17:20:50 tb Exp $ */ 1/* $OpenBSD: x509_lu.c,v 1.38 2021/11/05 07:25:36 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -57,6 +57,7 @@
57 */ 57 */
58 58
59#include <stdio.h> 59#include <stdio.h>
60#include <string.h>
60 61
61#include <openssl/err.h> 62#include <openssl/err.h>
62#include <openssl/lhash.h> 63#include <openssl/lhash.h>
@@ -349,8 +350,7 @@ X509_STORE_CTX_get_by_subject(X509_STORE_CTX *vs, X509_LOOKUP_TYPE type,
349 if (ctx == NULL) 350 if (ctx == NULL)
350 return 0; 351 return 0;
351 352
352 stmp.type = 0; 353 memset(&stmp, 0, sizeof(stmp));
353 stmp.data.ptr = NULL;
354 354
355 CRYPTO_w_lock(CRYPTO_LOCK_X509_STORE); 355 CRYPTO_w_lock(CRYPTO_LOCK_X509_STORE);
356 tmp = X509_OBJECT_retrieve_by_subject(ctx->objs, type, name); 356 tmp = X509_OBJECT_retrieve_by_subject(ctx->objs, type, name);
@@ -368,10 +368,10 @@ X509_STORE_CTX_get_by_subject(X509_STORE_CTX *vs, X509_LOOKUP_TYPE type,
368 return 0; 368 return 0;
369 } 369 }
370 370
371 ret->type = tmp->type; 371 if (!X509_OBJECT_up_ref_count(tmp))
372 ret->data.ptr = tmp->data.ptr; 372 return 0;
373 373
374 X509_OBJECT_up_ref_count(ret); 374 *ret = *tmp;
375 375
376 return 1; 376 return 1;
377} 377}