]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/trace.c
Use RAND_bytes_ex in crypto/rsa
[thirdparty/openssl.git] / crypto / trace.c
CommitLineData
2390c573
RL
1/*
2 * Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10#include <stdio.h>
11#include <string.h>
12
cf0932cd 13#include "internal/thread_once.h"
2390c573
RL
14#include <openssl/bio.h>
15#include <openssl/crypto.h>
16#include <openssl/trace.h>
17#include "internal/bio.h"
18#include "internal/nelem.h"
25f2138b 19#include "crypto/cryptlib.h"
2390c573
RL
20
21#include "e_os.h" /* strcasecmp for Windows */
22
16a9d374
RL
23#ifndef OPENSSL_NO_TRACE
24
2390c573
RL
25static CRYPTO_RWLOCK *trace_lock = NULL;
26
27static const BIO *current_channel = NULL;
28
29/*-
30 * INTERNAL TRACE CHANNEL IMPLEMENTATION
31 *
32 * For our own flexibility, all trace categories are associated with a
33 * BIO sink object, also called the trace channel. Instead of a BIO object,
34 * the application can also provide a callback function, in which case an
35 * internal trace channel is attached, which simply calls the registered
36 * callback function.
37 */
38static int trace_write(BIO *b, const char *buf,
39 size_t num, size_t *written);
40static int trace_puts(BIO *b, const char *str);
41static long trace_ctrl(BIO *channel, int cmd, long argl, void *argp);
42static int trace_free(BIO *b);
43
44static const BIO_METHOD trace_method = {
45 BIO_TYPE_SOURCE_SINK,
46 "trace",
47 trace_write,
48 NULL, /* old write */
49 NULL, /* read_ex */
50 NULL, /* read */
51 trace_puts,
52 NULL, /* gets */
53 trace_ctrl, /* ctrl */
54 NULL, /* create */
55 trace_free, /* free */
56 NULL, /* callback_ctrl */
57};
58
59struct trace_data_st {
60 OSSL_trace_cb callback;
61 int category;
62 void *data;
63};
64
65static int trace_write(BIO *channel,
66 const char *buf, size_t num, size_t *written)
67{
68 struct trace_data_st *ctx = BIO_get_data(channel);
13d06925 69 size_t cnt = ctx->callback(buf, num, ctx->category, OSSL_TRACE_CTRL_WRITE,
2390c573
RL
70 ctx->data);
71
72 *written = cnt;
73 return cnt != 0;
74}
75
76static int trace_puts(BIO *channel, const char *str)
77{
78 size_t written;
79
80 if (trace_write(channel, str, strlen(str), &written))
81 return (int)written;
82
83 return EOF;
84}
85
86static long trace_ctrl(BIO *channel, int cmd, long argl, void *argp)
87{
88 struct trace_data_st *ctx = BIO_get_data(channel);
89
90 switch (cmd) {
91 case OSSL_TRACE_CTRL_BEGIN:
92 case OSSL_TRACE_CTRL_END:
93 /* We know that the callback is likely to return 0 here */
94 ctx->callback("", 0, ctx->category, cmd, ctx->data);
95 return 1;
96 default:
97 break;
98 }
99 return -2; /* Unsupported */
100}
101
102static int trace_free(BIO *channel)
103{
104 if (channel == NULL)
105 return 0;
106 OPENSSL_free(BIO_get_data(channel));
107 return 1;
108}
16a9d374 109#endif
2390c573
RL
110
111/*-
112 * TRACE
113 */
114
115/* Helper struct and macro to get name string to number mapping */
116struct trace_category_st {
117 const char * const name;
118 const int num;
119};
120#define TRACE_CATEGORY_(name) { #name, OSSL_TRACE_CATEGORY_##name }
121
122static const struct trace_category_st trace_categories[] = {
3a8269b3 123 TRACE_CATEGORY_(ALL),
3b9e1a39 124 TRACE_CATEGORY_(TRACE),
5c641735 125 TRACE_CATEGORY_(INIT),
49b26f54 126 TRACE_CATEGORY_(TLS),
77359d22 127 TRACE_CATEGORY_(TLS_CIPHER),
bc362b9b 128 TRACE_CATEGORY_(CONF),
f272be67 129 TRACE_CATEGORY_(ENGINE_TABLE),
f518e3e8 130 TRACE_CATEGORY_(ENGINE_REF_COUNT),
3a9b3d2d 131 TRACE_CATEGORY_(PKCS5V2),
a902e43d 132 TRACE_CATEGORY_(PKCS12_KEYGEN),
5f8a5f46 133 TRACE_CATEGORY_(PKCS12_DECRYPT),
b9ce85f6 134 TRACE_CATEGORY_(X509V3_POLICY),
6e810f2d 135 TRACE_CATEGORY_(BN_CTX),
2897b009 136 TRACE_CATEGORY_(STORE),
2390c573
RL
137};
138
139const char *OSSL_trace_get_category_name(int num)
140{
141 size_t i;
142
143 for (i = 0; i < OSSL_NELEM(trace_categories); i++)
144 if (trace_categories[i].num == num)
145 return trace_categories[i].name;
146 return NULL; /* not found */
147}
148
149int OSSL_trace_get_category_num(const char *name)
150{
151 size_t i;
152
153 for (i = 0; i < OSSL_NELEM(trace_categories); i++)
154 if (strcasecmp(name, trace_categories[i].name) == 0)
155 return trace_categories[i].num;
156 return -1; /* not found */
157}
158
16a9d374
RL
159#ifndef OPENSSL_NO_TRACE
160
2390c573
RL
161/* We use one trace channel for each trace category */
162static struct {
5afb177c 163 enum { SIMPLE_CHANNEL, CALLBACK_CHANNEL } type;
2390c573
RL
164 BIO *bio;
165 char *prefix;
166 char *suffix;
167} trace_channels[OSSL_TRACE_CATEGORY_NUM] = {
168 { 0, NULL, NULL, NULL },
169};
170
16a9d374
RL
171#endif
172
3b9e1a39 173#ifndef OPENSSL_NO_TRACE
e474a286
DMSP
174
175enum {
176 CHANNEL,
177 PREFIX,
178 SUFFIX
179};
180
3b9e1a39
RL
181static int trace_attach_cb(int category, int type, const void *data)
182{
183 switch (type) {
e474a286 184 case CHANNEL:
3b9e1a39
RL
185 OSSL_TRACE2(TRACE, "Attach channel %p to category '%s'\n",
186 data, trace_categories[category].name);
187 break;
e474a286 188 case PREFIX:
3b9e1a39
RL
189 OSSL_TRACE2(TRACE, "Attach prefix \"%s\" to category '%s'\n",
190 (const char *)data, trace_categories[category].name);
191 break;
e474a286 192 case SUFFIX:
3b9e1a39
RL
193 OSSL_TRACE2(TRACE, "Attach suffix \"%s\" to category '%s'\n",
194 (const char *)data, trace_categories[category].name);
195 break;
196 default: /* No clue */
197 break;
198 }
199 return 1;
200}
201
202static int trace_detach_cb(int category, int type, const void *data)
203{
204 switch (type) {
e474a286 205 case CHANNEL:
3b9e1a39
RL
206 OSSL_TRACE2(TRACE, "Detach channel %p from category '%s'\n",
207 data, trace_categories[category].name);
208 break;
e474a286 209 case PREFIX:
3b9e1a39
RL
210 OSSL_TRACE2(TRACE, "Detach prefix \"%s\" from category '%s'\n",
211 (const char *)data, trace_categories[category].name);
212 break;
e474a286 213 case SUFFIX:
3b9e1a39
RL
214 OSSL_TRACE2(TRACE, "Detach suffix \"%s\" from category '%s'\n",
215 (const char *)data, trace_categories[category].name);
216 break;
217 default: /* No clue */
218 break;
219 }
220 return 1;
221}
222
cf0932cd
DDO
223static int do_ossl_trace_init(void);
224static CRYPTO_ONCE trace_inited = CRYPTO_ONCE_STATIC_INIT;
225DEFINE_RUN_ONCE_STATIC(ossl_trace_init)
226{
227 return do_ossl_trace_init();
228}
229
fe50e115 230static int set_trace_data(int category, int type, BIO **channel,
3b9e1a39
RL
231 const char **prefix, const char **suffix,
232 int (*attach_cb)(int, int, const void *),
233 int (*detach_cb)(int, int, const void *))
234{
fe26f798
RL
235 BIO *curr_channel = NULL;
236 char *curr_prefix = NULL;
237 char *curr_suffix = NULL;
238
cf0932cd
DDO
239 /* Ensure do_ossl_trace_init() is called once */
240 if (!RUN_ONCE(&trace_inited, ossl_trace_init))
241 return 0;
fe26f798
RL
242
243 curr_channel = trace_channels[category].bio;
244 curr_prefix = trace_channels[category].prefix;
245 curr_suffix = trace_channels[category].suffix;
3b9e1a39
RL
246
247 /* Make sure to run the detach callback first on all data */
248 if (prefix != NULL && curr_prefix != NULL) {
e474a286 249 detach_cb(category, PREFIX, curr_prefix);
3b9e1a39
RL
250 }
251
252 if (suffix != NULL && curr_suffix != NULL) {
e474a286 253 detach_cb(category, SUFFIX, curr_suffix);
3b9e1a39
RL
254 }
255
256 if (channel != NULL && curr_channel != NULL) {
e474a286 257 detach_cb(category, CHANNEL, curr_channel);
3b9e1a39
RL
258 }
259
260 /* After detach callbacks are done, clear data where appropriate */
261 if (prefix != NULL && curr_prefix != NULL) {
262 OPENSSL_free(curr_prefix);
263 trace_channels[category].prefix = NULL;
264 }
265
266 if (suffix != NULL && curr_suffix != NULL) {
267 OPENSSL_free(curr_suffix);
268 trace_channels[category].suffix = NULL;
269 }
270
271 if (channel != NULL && curr_channel != NULL) {
272 BIO_free(curr_channel);
fe50e115 273 trace_channels[category].type = 0;
3b9e1a39
RL
274 trace_channels[category].bio = NULL;
275 }
276
277 /* Before running callbacks are done, set new data where appropriate */
278 if (channel != NULL && *channel != NULL) {
fe50e115 279 trace_channels[category].type = type;
3b9e1a39
RL
280 trace_channels[category].bio = *channel;
281 }
282
283 if (prefix != NULL && *prefix != NULL) {
284 if ((curr_prefix = OPENSSL_strdup(*prefix)) == NULL)
285 return 0;
286 trace_channels[category].prefix = curr_prefix;
287 }
288
289 if (suffix != NULL && *suffix != NULL) {
290 if ((curr_suffix = OPENSSL_strdup(*suffix)) == NULL)
291 return 0;
292 trace_channels[category].suffix = curr_suffix;
293 }
294
295 /* Finally, run the attach callback on the new data */
296 if (channel != NULL && *channel != NULL) {
e474a286 297 attach_cb(category, CHANNEL, *channel);
3b9e1a39
RL
298 }
299
300 if (prefix != NULL && *prefix != NULL) {
e474a286 301 attach_cb(category, PREFIX, *prefix);
3b9e1a39
RL
302 }
303
304 if (suffix != NULL && *suffix != NULL) {
e474a286 305 attach_cb(category, SUFFIX, *suffix);
3b9e1a39
RL
306 }
307
308 return 1;
309}
3b9e1a39 310
cf0932cd 311static int do_ossl_trace_init(void)
2390c573
RL
312{
313 trace_lock = CRYPTO_THREAD_lock_new();
cf0932cd 314 return trace_lock != NULL;
2390c573
RL
315}
316
cf0932cd
DDO
317#endif
318
2390c573
RL
319void ossl_trace_cleanup(void)
320{
16a9d374 321#ifndef OPENSSL_NO_TRACE
2390c573 322 int category;
3b9e1a39
RL
323 BIO *channel = NULL;
324 const char *prefix = NULL;
325 const char *suffix = NULL;
326
327 for (category = 0; category < OSSL_TRACE_CATEGORY_NUM; category++) {
328 /* We force the TRACE category to be treated last */
329 if (category == OSSL_TRACE_CATEGORY_TRACE)
330 continue;
fe50e115 331 set_trace_data(category, 0, &channel, &prefix, &suffix,
3b9e1a39
RL
332 trace_attach_cb, trace_detach_cb);
333 }
fe50e115
DMSP
334 set_trace_data(OSSL_TRACE_CATEGORY_TRACE, 0, &channel,
335 &prefix, &suffix,
3b9e1a39 336 trace_attach_cb, trace_detach_cb);
2390c573 337 CRYPTO_THREAD_lock_free(trace_lock);
16a9d374 338#endif
2390c573
RL
339}
340
341int OSSL_trace_set_channel(int category, BIO *channel)
342{
16a9d374 343#ifndef OPENSSL_NO_TRACE
0fda9f7c
DMSP
344 if (category >= 0 && category < OSSL_TRACE_CATEGORY_NUM)
345 return set_trace_data(category, SIMPLE_CHANNEL, &channel, NULL, NULL,
02bd2d7f 346 trace_attach_cb, trace_detach_cb);
16a9d374 347#endif
0fda9f7c 348 return 0;
2390c573
RL
349}
350
3b9e1a39
RL
351#ifndef OPENSSL_NO_TRACE
352static int trace_attach_w_callback_cb(int category, int type, const void *data)
353{
354 switch (type) {
e474a286 355 case CHANNEL:
3b9e1a39
RL
356 OSSL_TRACE2(TRACE,
357 "Attach channel %p to category '%s' (with callback)\n",
358 data, trace_categories[category].name);
359 break;
e474a286 360 case PREFIX:
3b9e1a39
RL
361 OSSL_TRACE2(TRACE, "Attach prefix \"%s\" to category '%s'\n",
362 (const char *)data, trace_categories[category].name);
363 break;
e474a286 364 case SUFFIX:
3b9e1a39
RL
365 OSSL_TRACE2(TRACE, "Attach suffix \"%s\" to category '%s'\n",
366 (const char *)data, trace_categories[category].name);
367 break;
368 default: /* No clue */
369 break;
370 }
371 return 1;
372}
373#endif
374
2390c573
RL
375int OSSL_trace_set_callback(int category, OSSL_trace_cb callback, void *data)
376{
16a9d374 377#ifndef OPENSSL_NO_TRACE
3b9e1a39 378 BIO *channel = NULL;
2390c573
RL
379 struct trace_data_st *trace_data = NULL;
380
3b9e1a39 381 if (category < 0 || category >= OSSL_TRACE_CATEGORY_NUM)
0fda9f7c 382 return 0;
2390c573 383
3b9e1a39
RL
384 if (callback != NULL) {
385 if ((channel = BIO_new(&trace_method)) == NULL
386 || (trace_data =
387 OPENSSL_zalloc(sizeof(struct trace_data_st))) == NULL)
388 goto err;
2390c573 389
3b9e1a39
RL
390 trace_data->callback = callback;
391 trace_data->category = category;
392 trace_data->data = data;
2390c573 393
3b9e1a39
RL
394 BIO_set_data(channel, trace_data);
395 }
2390c573 396
fe50e115 397 if (!set_trace_data(category, CALLBACK_CHANNEL, &channel, NULL, NULL,
3b9e1a39
RL
398 trace_attach_w_callback_cb, trace_detach_cb))
399 goto err;
2390c573 400
0fda9f7c 401 return 1;
2390c573
RL
402
403 err:
404 BIO_free(channel);
405 OPENSSL_free(trace_data);
d33d7616 406#endif
0fda9f7c
DMSP
407
408 return 0;
2390c573
RL
409}
410
411int OSSL_trace_set_prefix(int category, const char *prefix)
412{
16a9d374 413#ifndef OPENSSL_NO_TRACE
0fda9f7c 414 if (category >= 0 && category < OSSL_TRACE_CATEGORY_NUM)
fe50e115 415 return set_trace_data(category, 0, NULL, &prefix, NULL,
3b9e1a39 416 trace_attach_cb, trace_detach_cb);
16a9d374 417#endif
0fda9f7c 418 return 0;
2390c573
RL
419}
420
421int OSSL_trace_set_suffix(int category, const char *suffix)
422{
16a9d374 423#ifndef OPENSSL_NO_TRACE
0fda9f7c 424 if (category >= 0 && category < OSSL_TRACE_CATEGORY_NUM)
fe50e115 425 return set_trace_data(category, 0, NULL, NULL, &suffix,
3b9e1a39 426 trace_attach_cb, trace_detach_cb);
16a9d374 427#endif
0fda9f7c 428 return 0;
2390c573
RL
429}
430
16a9d374 431#ifndef OPENSSL_NO_TRACE
2390c573
RL
432static int ossl_trace_get_category(int category)
433{
434 if (category < 0 || category >= OSSL_TRACE_CATEGORY_NUM)
435 return -1;
436 if (trace_channels[category].bio != NULL)
437 return category;
3a8269b3 438 return OSSL_TRACE_CATEGORY_ALL;
2390c573 439}
16a9d374 440#endif
2390c573
RL
441
442int OSSL_trace_enabled(int category)
443{
444 int ret = 0;
16a9d374 445#ifndef OPENSSL_NO_TRACE
2390c573 446 category = ossl_trace_get_category(category);
6a411436
DMSP
447 if (category >= 0)
448 ret = trace_channels[category].bio != NULL;
16a9d374 449#endif
2390c573
RL
450 return ret;
451}
452
453BIO *OSSL_trace_begin(int category)
454{
455 BIO *channel = NULL;
16a9d374 456#ifndef OPENSSL_NO_TRACE
2390c573
RL
457 char *prefix = NULL;
458
459 category = ossl_trace_get_category(category);
6a411436
DMSP
460 if (category < 0)
461 return NULL;
462
2390c573
RL
463 channel = trace_channels[category].bio;
464 prefix = trace_channels[category].prefix;
465
466 if (channel != NULL) {
467 CRYPTO_THREAD_write_lock(trace_lock);
468 current_channel = channel;
469 switch (trace_channels[category].type) {
5afb177c 470 case SIMPLE_CHANNEL:
2390c573
RL
471 if (prefix != NULL) {
472 (void)BIO_puts(channel, prefix);
473 (void)BIO_puts(channel, "\n");
474 }
475 break;
5afb177c 476 case CALLBACK_CHANNEL:
2390c573
RL
477 (void)BIO_ctrl(channel, OSSL_TRACE_CTRL_BEGIN,
478 prefix == NULL ? 0 : strlen(prefix), prefix);
479 break;
480 }
481 }
16a9d374 482#endif
2390c573
RL
483 return channel;
484}
485
486void OSSL_trace_end(int category, BIO * channel)
487{
16a9d374 488#ifndef OPENSSL_NO_TRACE
2390c573
RL
489 char *suffix = NULL;
490
491 category = ossl_trace_get_category(category);
492 suffix = trace_channels[category].suffix;
493 if (channel != NULL
494 && ossl_assert(channel == current_channel)) {
495 (void)BIO_flush(channel);
496 switch (trace_channels[category].type) {
5afb177c 497 case SIMPLE_CHANNEL:
2390c573
RL
498 if (suffix != NULL) {
499 (void)BIO_puts(channel, suffix);
500 (void)BIO_puts(channel, "\n");
501 }
502 break;
5afb177c 503 case CALLBACK_CHANNEL:
2390c573
RL
504 (void)BIO_ctrl(channel, OSSL_TRACE_CTRL_END,
505 suffix == NULL ? 0 : strlen(suffix), suffix);
506 break;
507 }
508 current_channel = NULL;
509 CRYPTO_THREAD_unlock(trace_lock);
510 }
16a9d374 511#endif
2390c573 512}