| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2022-03-15 21:52:58 +08:00
										 |  |  |  * Copyright 2019-2022 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							|  |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 22:51:12 +08:00
										 |  |  | #include "internal/thread_once.h"
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | #include <openssl/bio.h>
 | 
					
						
							|  |  |  | #include <openssl/crypto.h>
 | 
					
						
							|  |  |  | #include <openssl/trace.h>
 | 
					
						
							|  |  |  | #include "internal/bio.h"
 | 
					
						
							|  |  |  | #include "internal/nelem.h"
 | 
					
						
							| 
									
										
										
										
											2021-05-19 23:09:49 +08:00
										 |  |  | #include "internal/refcount.h"
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:33 +08:00
										 |  |  | #include "crypto/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #ifndef OPENSSL_NO_TRACE
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | static CRYPTO_RWLOCK *trace_lock = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const BIO  *current_channel = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*-
 | 
					
						
							|  |  |  |  * INTERNAL TRACE CHANNEL IMPLEMENTATION | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * For our own flexibility, all trace categories are associated with a | 
					
						
							|  |  |  |  * BIO sink object, also called the trace channel. Instead of a BIO object, | 
					
						
							|  |  |  |  * the application can also provide a callback function, in which case an | 
					
						
							|  |  |  |  * internal trace channel is attached, which simply calls the registered | 
					
						
							|  |  |  |  * callback function. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int trace_write(BIO *b, const char *buf, | 
					
						
							|  |  |  |                                size_t num, size_t *written); | 
					
						
							|  |  |  | static int trace_puts(BIO *b, const char *str); | 
					
						
							|  |  |  | static long trace_ctrl(BIO *channel, int cmd, long argl, void *argp); | 
					
						
							|  |  |  | static int trace_free(BIO *b); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const BIO_METHOD trace_method = { | 
					
						
							|  |  |  |     BIO_TYPE_SOURCE_SINK, | 
					
						
							|  |  |  |     "trace", | 
					
						
							|  |  |  |     trace_write, | 
					
						
							|  |  |  |     NULL,                        /* old write */ | 
					
						
							|  |  |  |     NULL,                        /* read_ex */ | 
					
						
							|  |  |  |     NULL,                        /* read */ | 
					
						
							|  |  |  |     trace_puts, | 
					
						
							|  |  |  |     NULL,                        /* gets */ | 
					
						
							|  |  |  |     trace_ctrl,                  /* ctrl */ | 
					
						
							|  |  |  |     NULL,                        /* create */ | 
					
						
							|  |  |  |     trace_free,                  /* free */ | 
					
						
							|  |  |  |     NULL,                        /* callback_ctrl */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct trace_data_st { | 
					
						
							|  |  |  |     OSSL_trace_cb callback; | 
					
						
							|  |  |  |     int category; | 
					
						
							|  |  |  |     void *data; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int trace_write(BIO *channel, | 
					
						
							|  |  |  |                        const char *buf, size_t num, size_t *written) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     struct trace_data_st *ctx = BIO_get_data(channel); | 
					
						
							| 
									
										
										
										
											2019-03-13 06:04:14 +08:00
										 |  |  |     size_t cnt = ctx->callback(buf, num, ctx->category, OSSL_TRACE_CTRL_WRITE, | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |                                ctx->data); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *written = cnt; | 
					
						
							|  |  |  |     return cnt != 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int trace_puts(BIO *channel, const char *str) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     size_t written; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (trace_write(channel, str, strlen(str), &written)) | 
					
						
							|  |  |  |         return (int)written; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return EOF; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static long trace_ctrl(BIO *channel, int cmd, long argl, void *argp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     struct trace_data_st *ctx = BIO_get_data(channel); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (cmd) { | 
					
						
							|  |  |  |     case OSSL_TRACE_CTRL_BEGIN: | 
					
						
							|  |  |  |     case OSSL_TRACE_CTRL_END: | 
					
						
							|  |  |  |         /* We know that the callback is likely to return 0 here */ | 
					
						
							|  |  |  |         ctx->callback("", 0, ctx->category, cmd, ctx->data); | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return -2;                   /* Unsupported */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int trace_free(BIO *channel) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (channel == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     OPENSSL_free(BIO_get_data(channel)); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*-
 | 
					
						
							|  |  |  |  * TRACE | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Helper struct and macro to get name string to number mapping */ | 
					
						
							|  |  |  | struct trace_category_st { | 
					
						
							|  |  |  |     const char * const name; | 
					
						
							|  |  |  |     const int num; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #define TRACE_CATEGORY_(name)       { #name, OSSL_TRACE_CATEGORY_##name }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct trace_category_st trace_categories[] = { | 
					
						
							| 
									
										
										
										
											2019-03-22 01:59:13 +08:00
										 |  |  |     TRACE_CATEGORY_(ALL), | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |     TRACE_CATEGORY_(TRACE), | 
					
						
							| 
									
										
										
										
											2018-12-13 07:32:57 +08:00
										 |  |  |     TRACE_CATEGORY_(INIT), | 
					
						
							| 
									
										
										
										
											2018-12-12 07:04:44 +08:00
										 |  |  |     TRACE_CATEGORY_(TLS), | 
					
						
							| 
									
										
										
										
											2018-12-13 06:57:48 +08:00
										 |  |  |     TRACE_CATEGORY_(TLS_CIPHER), | 
					
						
							| 
									
										
										
										
											2019-04-05 17:20:28 +08:00
										 |  |  |     TRACE_CATEGORY_(CONF), | 
					
						
							| 
									
										
										
										
											2020-07-14 19:32:52 +08:00
										 |  |  | #ifndef OPENSSL_NO_ENGINE
 | 
					
						
							| 
									
										
										
										
											2018-12-13 08:42:07 +08:00
										 |  |  |     TRACE_CATEGORY_(ENGINE_TABLE), | 
					
						
							| 
									
										
										
										
											2018-12-13 08:42:46 +08:00
										 |  |  |     TRACE_CATEGORY_(ENGINE_REF_COUNT), | 
					
						
							| 
									
										
										
										
											2020-07-14 19:32:52 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-12-13 08:53:13 +08:00
										 |  |  |     TRACE_CATEGORY_(PKCS5V2), | 
					
						
							| 
									
										
										
										
											2018-12-13 15:07:25 +08:00
										 |  |  |     TRACE_CATEGORY_(PKCS12_KEYGEN), | 
					
						
							| 
									
										
										
										
											2018-12-13 19:04:26 +08:00
										 |  |  |     TRACE_CATEGORY_(PKCS12_DECRYPT), | 
					
						
							| 
									
										
										
										
											2018-12-13 15:19:08 +08:00
										 |  |  |     TRACE_CATEGORY_(X509V3_POLICY), | 
					
						
							| 
									
										
										
										
											2018-12-13 19:35:48 +08:00
										 |  |  |     TRACE_CATEGORY_(BN_CTX), | 
					
						
							| 
									
										
										
										
											2022-01-03 21:46:52 +08:00
										 |  |  |     TRACE_CATEGORY_(CMP), | 
					
						
							| 
									
										
										
										
											2019-03-07 22:27:15 +08:00
										 |  |  |     TRACE_CATEGORY_(STORE), | 
					
						
							| 
									
										
										
										
											2020-10-28 17:13:24 +08:00
										 |  |  |     TRACE_CATEGORY_(DECODER), | 
					
						
							| 
									
										
										
										
											2020-10-28 17:14:53 +08:00
										 |  |  |     TRACE_CATEGORY_(ENCODER), | 
					
						
							| 
									
										
										
										
											2021-05-19 23:09:49 +08:00
										 |  |  |     TRACE_CATEGORY_(REF_COUNT) | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const char *OSSL_trace_get_category_name(int num) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     size_t i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < OSSL_NELEM(trace_categories); i++) | 
					
						
							|  |  |  |         if (trace_categories[i].num == num) | 
					
						
							|  |  |  |             return trace_categories[i].name; | 
					
						
							|  |  |  |     return NULL; /* not found */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_trace_get_category_num(const char *name) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     size_t i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < OSSL_NELEM(trace_categories); i++) | 
					
						
							| 
									
										
										
										
											2022-04-12 18:30:08 +08:00
										 |  |  |         if (OPENSSL_strcasecmp(name, trace_categories[i].name) == 0) | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |             return trace_categories[i].num; | 
					
						
							|  |  |  |     return -1; /* not found */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #ifndef OPENSSL_NO_TRACE
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | /* We use one trace channel for each trace category */ | 
					
						
							|  |  |  | static struct { | 
					
						
							| 
									
										
										
										
											2019-03-10 18:07:27 +08:00
										 |  |  |     enum { SIMPLE_CHANNEL, CALLBACK_CHANNEL } type; | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |     BIO *bio; | 
					
						
							|  |  |  |     char *prefix; | 
					
						
							|  |  |  |     char *suffix; | 
					
						
							|  |  |  | } trace_channels[OSSL_TRACE_CATEGORY_NUM] = { | 
					
						
							|  |  |  |     { 0, NULL, NULL, NULL }, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  | #ifndef OPENSSL_NO_TRACE
 | 
					
						
							| 
									
										
										
										
											2019-03-10 08:35:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | enum { | 
					
						
							|  |  |  |     CHANNEL, | 
					
						
							|  |  |  |     PREFIX, | 
					
						
							|  |  |  |     SUFFIX | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  | static int trace_attach_cb(int category, int type, const void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     switch (type) { | 
					
						
							| 
									
										
										
										
											2019-03-10 08:35:16 +08:00
										 |  |  |     case CHANNEL: | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |         OSSL_TRACE2(TRACE, "Attach channel %p to category '%s'\n", | 
					
						
							|  |  |  |                     data, trace_categories[category].name); | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2019-03-10 08:35:16 +08:00
										 |  |  |     case PREFIX: | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |         OSSL_TRACE2(TRACE, "Attach prefix \"%s\" to category '%s'\n", | 
					
						
							|  |  |  |                     (const char *)data, trace_categories[category].name); | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2019-03-10 08:35:16 +08:00
										 |  |  |     case SUFFIX: | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |         OSSL_TRACE2(TRACE, "Attach suffix \"%s\" to category '%s'\n", | 
					
						
							|  |  |  |                     (const char *)data, trace_categories[category].name); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default:                     /* No clue */ | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int trace_detach_cb(int category, int type, const void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     switch (type) { | 
					
						
							| 
									
										
										
										
											2019-03-10 08:35:16 +08:00
										 |  |  |     case CHANNEL: | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |         OSSL_TRACE2(TRACE, "Detach channel %p from category '%s'\n", | 
					
						
							|  |  |  |                     data, trace_categories[category].name); | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2019-03-10 08:35:16 +08:00
										 |  |  |     case PREFIX: | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |         OSSL_TRACE2(TRACE, "Detach prefix \"%s\" from category '%s'\n", | 
					
						
							|  |  |  |                     (const char *)data, trace_categories[category].name); | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2019-03-10 08:35:16 +08:00
										 |  |  |     case SUFFIX: | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |         OSSL_TRACE2(TRACE, "Detach suffix \"%s\" from category '%s'\n", | 
					
						
							|  |  |  |                     (const char *)data, trace_categories[category].name); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default:                     /* No clue */ | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 22:51:12 +08:00
										 |  |  | static int do_ossl_trace_init(void); | 
					
						
							|  |  |  | static CRYPTO_ONCE trace_inited = CRYPTO_ONCE_STATIC_INIT; | 
					
						
							|  |  |  | DEFINE_RUN_ONCE_STATIC(ossl_trace_init) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return do_ossl_trace_init(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-13 07:14:55 +08:00
										 |  |  | static int set_trace_data(int category, int type, BIO **channel, | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |                           const char **prefix, const char **suffix, | 
					
						
							|  |  |  |                           int (*attach_cb)(int, int, const void *), | 
					
						
							|  |  |  |                           int (*detach_cb)(int, int, const void *)) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-21 17:20:15 +08:00
										 |  |  |     BIO *curr_channel = NULL; | 
					
						
							|  |  |  |     char *curr_prefix = NULL; | 
					
						
							|  |  |  |     char *curr_suffix = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 22:51:12 +08:00
										 |  |  |     /* Ensure do_ossl_trace_init() is called once */ | 
					
						
							|  |  |  |     if (!RUN_ONCE(&trace_inited, ossl_trace_init)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-06-21 17:20:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     curr_channel = trace_channels[category].bio; | 
					
						
							|  |  |  |     curr_prefix = trace_channels[category].prefix; | 
					
						
							|  |  |  |     curr_suffix = trace_channels[category].suffix; | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Make sure to run the detach callback first on all data */ | 
					
						
							|  |  |  |     if (prefix != NULL && curr_prefix != NULL) { | 
					
						
							| 
									
										
										
										
											2019-03-10 08:35:16 +08:00
										 |  |  |         detach_cb(category, PREFIX, curr_prefix); | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (suffix != NULL && curr_suffix != NULL) { | 
					
						
							| 
									
										
										
										
											2019-03-10 08:35:16 +08:00
										 |  |  |         detach_cb(category, SUFFIX, curr_suffix); | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (channel != NULL && curr_channel != NULL) { | 
					
						
							| 
									
										
										
										
											2019-03-10 08:35:16 +08:00
										 |  |  |         detach_cb(category, CHANNEL, curr_channel); | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* After detach callbacks are done, clear data where appropriate */ | 
					
						
							|  |  |  |     if (prefix != NULL && curr_prefix != NULL) { | 
					
						
							|  |  |  |         OPENSSL_free(curr_prefix); | 
					
						
							|  |  |  |         trace_channels[category].prefix = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (suffix != NULL && curr_suffix != NULL) { | 
					
						
							|  |  |  |         OPENSSL_free(curr_suffix); | 
					
						
							|  |  |  |         trace_channels[category].suffix = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (channel != NULL && curr_channel != NULL) { | 
					
						
							|  |  |  |         BIO_free(curr_channel); | 
					
						
							| 
									
										
										
										
											2019-03-13 07:14:55 +08:00
										 |  |  |         trace_channels[category].type = 0; | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |         trace_channels[category].bio = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Before running callbacks are done, set new data where appropriate */ | 
					
						
							|  |  |  |     if (channel != NULL && *channel != NULL) { | 
					
						
							| 
									
										
										
										
											2019-03-13 07:14:55 +08:00
										 |  |  |         trace_channels[category].type = type; | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |         trace_channels[category].bio = *channel; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (prefix != NULL && *prefix != NULL) { | 
					
						
							|  |  |  |         if ((curr_prefix = OPENSSL_strdup(*prefix)) == NULL) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         trace_channels[category].prefix = curr_prefix; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (suffix != NULL && *suffix != NULL) { | 
					
						
							|  |  |  |         if ((curr_suffix = OPENSSL_strdup(*suffix)) == NULL) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         trace_channels[category].suffix = curr_suffix; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Finally, run the attach callback on the new data */ | 
					
						
							|  |  |  |     if (channel != NULL && *channel != NULL) { | 
					
						
							| 
									
										
										
										
											2019-03-10 08:35:16 +08:00
										 |  |  |         attach_cb(category, CHANNEL, *channel); | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (prefix != NULL && *prefix != NULL) { | 
					
						
							| 
									
										
										
										
											2019-03-10 08:35:16 +08:00
										 |  |  |         attach_cb(category, PREFIX, *prefix); | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (suffix != NULL && *suffix != NULL) { | 
					
						
							| 
									
										
										
										
											2019-03-10 08:35:16 +08:00
										 |  |  |         attach_cb(category, SUFFIX, *suffix); | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 22:51:12 +08:00
										 |  |  | static int do_ossl_trace_init(void) | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     trace_lock = CRYPTO_THREAD_lock_new(); | 
					
						
							| 
									
										
										
										
											2019-08-10 22:51:12 +08:00
										 |  |  |     return trace_lock != NULL; | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-10 22:51:12 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | void ossl_trace_cleanup(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #ifndef OPENSSL_NO_TRACE
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |     int category; | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |     BIO *channel = NULL; | 
					
						
							|  |  |  |     const char *prefix = NULL; | 
					
						
							|  |  |  |     const char *suffix = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (category = 0; category < OSSL_TRACE_CATEGORY_NUM; category++) { | 
					
						
							|  |  |  |         /* We force the TRACE category to be treated last */ | 
					
						
							|  |  |  |         if (category == OSSL_TRACE_CATEGORY_TRACE) | 
					
						
							|  |  |  |             continue; | 
					
						
							| 
									
										
										
										
											2019-03-13 07:14:55 +08:00
										 |  |  |         set_trace_data(category, 0, &channel, &prefix, &suffix, | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |                        trace_attach_cb, trace_detach_cb); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-03-13 07:14:55 +08:00
										 |  |  |     set_trace_data(OSSL_TRACE_CATEGORY_TRACE, 0, &channel, | 
					
						
							|  |  |  |                    &prefix, &suffix, | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |                    trace_attach_cb, trace_detach_cb); | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |     CRYPTO_THREAD_lock_free(trace_lock); | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_trace_set_channel(int category, BIO *channel) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #ifndef OPENSSL_NO_TRACE
 | 
					
						
							| 
									
										
										
										
											2019-03-19 15:53:35 +08:00
										 |  |  |     if (category >= 0 && category < OSSL_TRACE_CATEGORY_NUM) | 
					
						
							|  |  |  |         return set_trace_data(category, SIMPLE_CHANNEL, &channel, NULL, NULL, | 
					
						
							| 
									
										
										
										
											2019-03-22 01:27:50 +08:00
										 |  |  |                               trace_attach_cb, trace_detach_cb); | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-03-19 15:53:35 +08:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  | #ifndef OPENSSL_NO_TRACE
 | 
					
						
							|  |  |  | static int trace_attach_w_callback_cb(int category, int type, const void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     switch (type) { | 
					
						
							| 
									
										
										
										
											2019-03-10 08:35:16 +08:00
										 |  |  |     case CHANNEL: | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |         OSSL_TRACE2(TRACE, | 
					
						
							|  |  |  |                     "Attach channel %p to category '%s' (with callback)\n", | 
					
						
							|  |  |  |                     data, trace_categories[category].name); | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2019-03-10 08:35:16 +08:00
										 |  |  |     case PREFIX: | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |         OSSL_TRACE2(TRACE, "Attach prefix \"%s\" to category '%s'\n", | 
					
						
							|  |  |  |                     (const char *)data, trace_categories[category].name); | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2019-03-10 08:35:16 +08:00
										 |  |  |     case SUFFIX: | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |         OSSL_TRACE2(TRACE, "Attach suffix \"%s\" to category '%s'\n", | 
					
						
							|  |  |  |                     (const char *)data, trace_categories[category].name); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default:                     /* No clue */ | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | int OSSL_trace_set_callback(int category, OSSL_trace_cb callback, void *data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #ifndef OPENSSL_NO_TRACE
 | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |     BIO *channel = NULL; | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |     struct trace_data_st *trace_data = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |     if (category < 0 || category >= OSSL_TRACE_CATEGORY_NUM) | 
					
						
							| 
									
										
										
										
											2019-03-19 15:53:35 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |     if (callback != NULL) { | 
					
						
							|  |  |  |         if ((channel = BIO_new(&trace_method)) == NULL | 
					
						
							|  |  |  |             || (trace_data = | 
					
						
							|  |  |  |                 OPENSSL_zalloc(sizeof(struct trace_data_st))) == NULL) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |         trace_data->callback = callback; | 
					
						
							|  |  |  |         trace_data->category = category; | 
					
						
							|  |  |  |         trace_data->data = data; | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |         BIO_set_data(channel, trace_data); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-13 07:14:55 +08:00
										 |  |  |     if (!set_trace_data(category, CALLBACK_CHANNEL, &channel, NULL, NULL, | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |                         trace_attach_w_callback_cb, trace_detach_cb)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-19 15:53:35 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     BIO_free(channel); | 
					
						
							|  |  |  |     OPENSSL_free(trace_data); | 
					
						
							| 
									
										
										
										
											2019-03-14 07:39:28 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-03-19 15:53:35 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_trace_set_prefix(int category, const char *prefix) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #ifndef OPENSSL_NO_TRACE
 | 
					
						
							| 
									
										
										
										
											2019-03-19 15:53:35 +08:00
										 |  |  |     if (category >= 0 && category < OSSL_TRACE_CATEGORY_NUM) | 
					
						
							| 
									
										
										
										
											2019-03-13 07:14:55 +08:00
										 |  |  |         return set_trace_data(category, 0, NULL, &prefix, NULL, | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |                               trace_attach_cb, trace_detach_cb); | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-03-19 15:53:35 +08:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OSSL_trace_set_suffix(int category, const char *suffix) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #ifndef OPENSSL_NO_TRACE
 | 
					
						
							| 
									
										
										
										
											2019-03-19 15:53:35 +08:00
										 |  |  |     if (category >= 0 && category < OSSL_TRACE_CATEGORY_NUM) | 
					
						
							| 
									
										
										
										
											2019-03-13 07:14:55 +08:00
										 |  |  |         return set_trace_data(category, 0, NULL, NULL, &suffix, | 
					
						
							| 
									
										
										
										
											2019-02-09 19:37:49 +08:00
										 |  |  |                               trace_attach_cb, trace_detach_cb); | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-03-19 15:53:35 +08:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #ifndef OPENSSL_NO_TRACE
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | static int ossl_trace_get_category(int category) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (category < 0 || category >= OSSL_TRACE_CATEGORY_NUM) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     if (trace_channels[category].bio != NULL) | 
					
						
							|  |  |  |         return category; | 
					
						
							| 
									
										
										
										
											2019-03-22 01:59:13 +08:00
										 |  |  |     return OSSL_TRACE_CATEGORY_ALL; | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int OSSL_trace_enabled(int category) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #ifndef OPENSSL_NO_TRACE
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |     category = ossl_trace_get_category(category); | 
					
						
							| 
									
										
										
										
											2019-03-21 07:56:36 +08:00
										 |  |  |     if (category >= 0) | 
					
						
							|  |  |  |         ret = trace_channels[category].bio != NULL; | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BIO *OSSL_trace_begin(int category) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     BIO *channel = NULL; | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #ifndef OPENSSL_NO_TRACE
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |     char *prefix = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     category = ossl_trace_get_category(category); | 
					
						
							| 
									
										
										
										
											2019-03-21 07:56:36 +08:00
										 |  |  |     if (category < 0) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |     channel = trace_channels[category].bio; | 
					
						
							|  |  |  |     prefix = trace_channels[category].prefix; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (channel != NULL) { | 
					
						
							| 
									
										
										
										
											2021-02-19 04:31:56 +08:00
										 |  |  |         if (!CRYPTO_THREAD_write_lock(trace_lock)) | 
					
						
							|  |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |         current_channel = channel; | 
					
						
							|  |  |  |         switch (trace_channels[category].type) { | 
					
						
							| 
									
										
										
										
											2019-03-10 18:07:27 +08:00
										 |  |  |         case SIMPLE_CHANNEL: | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |             if (prefix != NULL) { | 
					
						
							|  |  |  |                 (void)BIO_puts(channel, prefix); | 
					
						
							|  |  |  |                 (void)BIO_puts(channel, "\n"); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-03-10 18:07:27 +08:00
										 |  |  |         case CALLBACK_CHANNEL: | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |             (void)BIO_ctrl(channel, OSSL_TRACE_CTRL_BEGIN, | 
					
						
							|  |  |  |                            prefix == NULL ? 0 : strlen(prefix), prefix); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |     return channel; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void OSSL_trace_end(int category, BIO * channel) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #ifndef OPENSSL_NO_TRACE
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |     char *suffix = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     category = ossl_trace_get_category(category); | 
					
						
							| 
									
										
										
										
											2021-12-29 21:42:58 +08:00
										 |  |  |     if (category < 0) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |     suffix = trace_channels[category].suffix; | 
					
						
							|  |  |  |     if (channel != NULL | 
					
						
							|  |  |  |         && ossl_assert(channel == current_channel)) { | 
					
						
							|  |  |  |         (void)BIO_flush(channel); | 
					
						
							|  |  |  |         switch (trace_channels[category].type) { | 
					
						
							| 
									
										
										
										
											2019-03-10 18:07:27 +08:00
										 |  |  |         case SIMPLE_CHANNEL: | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |             if (suffix != NULL) { | 
					
						
							|  |  |  |                 (void)BIO_puts(channel, suffix); | 
					
						
							|  |  |  |                 (void)BIO_puts(channel, "\n"); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-03-10 18:07:27 +08:00
										 |  |  |         case CALLBACK_CHANNEL: | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  |             (void)BIO_ctrl(channel, OSSL_TRACE_CTRL_END, | 
					
						
							|  |  |  |                            suffix == NULL ? 0 : strlen(suffix), suffix); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         current_channel = NULL; | 
					
						
							|  |  |  |         CRYPTO_THREAD_unlock(trace_lock); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-12-13 04:31:36 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-12-12 06:58:29 +08:00
										 |  |  | } |