Add an Apple privacy info file for OpenSSL
[openssl.git] / ssl / ssl_mcnf.c
1 /*
2  * Copyright 2015-2020 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 <openssl/conf.h>
12 #include <openssl/ssl.h>
13 #include "ssl_local.h"
14 #include "internal/sslconf.h"
15
16 /* SSL library configuration module. */
17
18 void SSL_add_ssl_module(void)
19 {
20     /* Do nothing. This will be added automatically by libcrypto */
21 }
22
23 static int ssl_do_config(SSL *s, SSL_CTX *ctx, const char *name, int system)
24 {
25     SSL_CONF_CTX *cctx = NULL;
26     size_t i, idx, cmd_count;
27     int rv = 0;
28     unsigned int flags;
29     const SSL_METHOD *meth;
30     const SSL_CONF_CMD *cmds;
31     OPENSSL_CTX *prev_libctx = NULL;
32     OPENSSL_CTX *libctx = NULL;
33
34     if (s == NULL && ctx == NULL) {
35         SSLerr(SSL_F_SSL_DO_CONFIG, ERR_R_PASSED_NULL_PARAMETER);
36         goto err;
37     }
38
39     if (name == NULL && system)
40         name = "system_default";
41     if (!conf_ssl_name_find(name, &idx)) {
42         if (!system) {
43             SSLerr(SSL_F_SSL_DO_CONFIG, SSL_R_INVALID_CONFIGURATION_NAME);
44             ERR_add_error_data(2, "name=", name);
45         }
46         goto err;
47     }
48     cmds = conf_ssl_get(idx, &name, &cmd_count);
49     cctx = SSL_CONF_CTX_new();
50     if (cctx == NULL)
51         goto err;
52     flags = SSL_CONF_FLAG_FILE;
53     if (!system)
54         flags |= SSL_CONF_FLAG_CERTIFICATE | SSL_CONF_FLAG_REQUIRE_PRIVATE;
55     if (s != NULL) {
56         meth = s->method;
57         SSL_CONF_CTX_set_ssl(cctx, s);
58         libctx = s->ctx->libctx;
59     } else {
60         meth = ctx->method;
61         SSL_CONF_CTX_set_ssl_ctx(cctx, ctx);
62         libctx = ctx->libctx;
63     }
64     if (meth->ssl_accept != ssl_undefined_function)
65         flags |= SSL_CONF_FLAG_SERVER;
66     if (meth->ssl_connect != ssl_undefined_function)
67         flags |= SSL_CONF_FLAG_CLIENT;
68     SSL_CONF_CTX_set_flags(cctx, flags);
69     prev_libctx = OPENSSL_CTX_set0_default(libctx);
70     for (i = 0; i < cmd_count; i++) {
71         char *cmdstr, *arg;
72
73         conf_ssl_get_cmd(cmds, i, &cmdstr, &arg);
74         rv = SSL_CONF_cmd(cctx, cmdstr, arg);
75         if (rv <= 0) {
76             if (rv == -2)
77                 SSLerr(SSL_F_SSL_DO_CONFIG, SSL_R_UNKNOWN_COMMAND);
78             else
79                 SSLerr(SSL_F_SSL_DO_CONFIG, SSL_R_BAD_VALUE);
80             ERR_add_error_data(6, "section=", name, ", cmd=", cmdstr,
81                                ", arg=", arg);
82             goto err;
83         }
84     }
85     rv = SSL_CONF_CTX_finish(cctx);
86  err:
87     OPENSSL_CTX_set0_default(prev_libctx);
88     SSL_CONF_CTX_free(cctx);
89     return rv <= 0 ? 0 : 1;
90 }
91
92 int SSL_config(SSL *s, const char *name)
93 {
94     return ssl_do_config(s, NULL, name, 0);
95 }
96
97 int SSL_CTX_config(SSL_CTX *ctx, const char *name)
98 {
99     return ssl_do_config(NULL, ctx, name, 0);
100 }
101
102 void ssl_ctx_system_config(SSL_CTX *ctx)
103 {
104     ssl_do_config(NULL, ctx, NULL, 1);
105 }