Experimental workaround TLS filler (WTF) extension.
[openssl.git] / ssl / ssl_conf.c
1 /*! \file ssl/ssl_conf.c
2  *  \brief SSL configuration functions
3  */
4 /* ====================================================================
5  * Copyright (c) 2012 The OpenSSL Project.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer. 
13  *
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  *
19  * 3. All advertising materials mentioning features or use of this
20  *    software must display the following acknowledgment:
21  *    "This product includes software developed by the OpenSSL Project
22  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
23  *
24  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
25  *    endorse or promote products derived from this software without
26  *    prior written permission. For written permission, please contact
27  *    openssl-core@openssl.org.
28  *
29  * 5. Products derived from this software may not be called "OpenSSL"
30  *    nor may "OpenSSL" appear in their names without prior written
31  *    permission of the OpenSSL Project.
32  *
33  * 6. Redistributions of any form whatsoever must retain the following
34  *    acknowledgment:
35  *    "This product includes software developed by the OpenSSL Project
36  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
37  *
38  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
39  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
40  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
41  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
42  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
43  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
44  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
45  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
46  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
47  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
49  * OF THE POSSIBILITY OF SUCH DAMAGE.
50  * ====================================================================
51  *
52  * This product includes cryptographic software written by Eric Young
53  * (eay@cryptsoft.com).  This product includes software written by Tim
54  * Hudson (tjh@cryptsoft.com).
55  *
56  */
57
58 #ifdef REF_CHECK
59 #  include <assert.h>
60 #endif
61 #include <stdio.h>
62 #include "ssl_locl.h"
63 #include <openssl/conf.h>
64 #include <openssl/objects.h>
65 #ifndef OPENSSL_NO_DH
66 #include <openssl/dh.h>
67 #endif
68
69 /* structure holding name tables. This is used for pemitted elements in
70  * lists such as TLSv1 and single command line switches such as no_tls1
71  */
72
73 typedef struct
74         {
75         const char *name;
76         int namelen;
77         unsigned int name_flags;
78         unsigned long option_value;
79         } ssl_flag_tbl;
80
81 /* Sense of name is inverted e.g. "TLSv1" will clear SSL_OP_NO_TLSv1 */
82 #define SSL_TFLAG_INV   0x1
83 /* Flags refers to cert_flags not options */
84 #define SSL_TFLAG_CERT  0x2
85 /* Option can only be used for clients */
86 #define SSL_TFLAG_CLIENT SSL_CONF_FLAG_CLIENT
87 /* Option can only be used for servers */
88 #define SSL_TFLAG_SERVER SSL_CONF_FLAG_SERVER
89 #define SSL_TFLAG_BOTH (SSL_TFLAG_CLIENT|SSL_TFLAG_SERVER)
90
91 #define SSL_FLAG_TBL(str, flag) \
92         {str, (int)(sizeof(str) - 1), SSL_TFLAG_BOTH, flag}
93 #define SSL_FLAG_TBL_SRV(str, flag) \
94         {str, (int)(sizeof(str) - 1), SSL_TFLAG_SERVER, flag}
95 #define SSL_FLAG_TBL_CLI(str, flag) \
96         {str, (int)(sizeof(str) - 1), SSL_TFLAG_CLIENT, flag}
97 #define SSL_FLAG_TBL_INV(str, flag) \
98         {str, (int)(sizeof(str) - 1), SSL_TFLAG_INV|SSL_TFLAG_BOTH, flag}
99 #define SSL_FLAG_TBL_SRV_INV(str, flag) \
100         {str, (int)(sizeof(str) - 1), SSL_TFLAG_INV|SSL_TFLAG_SERVER, flag}
101 #define SSL_FLAG_TBL_CERT(str, flag) \
102         {str, (int)(sizeof(str) - 1), SSL_TFLAG_CERT|SSL_TFLAG_BOTH, flag}
103
104 /* Opaque structure containing SSL configuration context.
105  */
106
107 struct ssl_conf_ctx_st
108         {
109         /* Various flags indicating (among other things) which options we
110          * will recognise.
111          */
112         unsigned int flags;
113         /* Prefix and length of commands */
114         char *prefix;
115         size_t prefixlen;
116         /* SSL_CTX or SSL structure to perform operations on */
117         SSL_CTX *ctx;
118         SSL *ssl;
119         /* Pointer to SSL or SSL_CTX options field or NULL if none */
120         unsigned long *poptions;
121         /* Pointer to SSL or SSL_CTX cert_flags or NULL if none */
122         unsigned int *pcert_flags;
123         /* Current flag table being worked on */
124         const ssl_flag_tbl *tbl;
125         /* Size of table */
126         size_t ntbl;
127         };
128
129 static int ssl_match_option(SSL_CONF_CTX *cctx, const ssl_flag_tbl *tbl,
130                                 const char *name, int namelen, int onoff)
131         {
132         /* If name not relevant for context skip */
133         if (!(cctx->flags & tbl->name_flags & SSL_TFLAG_BOTH))
134                 return 0;
135         if (namelen == -1)
136                 {
137                 if (strcmp(tbl->name, name))
138                         return 0;
139                 }
140         else if (tbl->namelen != namelen || strncasecmp(tbl->name, name, namelen))
141                 return 0;
142         if (cctx->poptions)
143                 {
144                 if (tbl->name_flags & SSL_TFLAG_INV)
145                         onoff ^= 1;
146                 if (tbl->name_flags & SSL_TFLAG_CERT)
147                         {
148                         if (onoff)
149                                 *cctx->pcert_flags |= tbl->option_value;
150                         else
151                                 *cctx->pcert_flags &= ~tbl->option_value;
152                         }
153                 else
154                         {
155                         if (onoff)
156                                 *cctx->poptions |= tbl->option_value;
157                         else
158                                 *cctx->poptions &= ~tbl->option_value;
159                         }
160                 }
161         return 1;
162         }
163
164 static int ssl_set_option_list(const char *elem, int len, void *usr)
165         {
166         SSL_CONF_CTX *cctx = usr;
167         size_t i;
168         const ssl_flag_tbl *tbl;
169         int onoff = 1;
170         /* len == -1 indicates not being called in list context, just for
171          * single command line switches, so don't allow +, -.
172          */
173         if (len != -1)
174                 {
175                 if (*elem == '+')
176                         {
177                         elem++;
178                         len--;
179                         onoff = 1;
180                         }
181                 else if (*elem == '-')
182                         {
183                         elem++;
184                         len--;
185                         onoff = 0;
186                         }
187                 }
188         for (i = 0, tbl = cctx->tbl; i < cctx->ntbl; i++, tbl++)
189                 {
190                 if (ssl_match_option(cctx, tbl, elem, len, onoff))
191                         return 1;
192                 }
193         return 0;
194         }
195
196 /* Single command line switches with no argument e.g. -no_ssl3 */
197 static int ctrl_str_option(SSL_CONF_CTX *cctx, const char *cmd)
198         {
199         static const ssl_flag_tbl ssl_option_single[] =
200                 {
201                 SSL_FLAG_TBL("no_ssl2", SSL_OP_NO_SSLv2),
202                 SSL_FLAG_TBL("no_ssl3", SSL_OP_NO_SSLv3),
203                 SSL_FLAG_TBL("no_tls1", SSL_OP_NO_TLSv1),
204                 SSL_FLAG_TBL("no_tls1_1", SSL_OP_NO_TLSv1_1),
205                 SSL_FLAG_TBL("no_tls1_2", SSL_OP_NO_TLSv1_2),
206                 SSL_FLAG_TBL("no_tls1_2", SSL_OP_NO_TLSv1_2),
207                 SSL_FLAG_TBL("bugs", SSL_OP_ALL),
208                 SSL_FLAG_TBL("no_comp", SSL_OP_NO_COMPRESSION),
209                 SSL_FLAG_TBL_SRV("ecdh_single", SSL_OP_SINGLE_ECDH_USE),
210 #ifndef OPENSSL_NO_TLSEXT
211                 SSL_FLAG_TBL("no_ticket", SSL_OP_NO_TICKET),
212 #endif
213                 SSL_FLAG_TBL_SRV("serverpref", SSL_OP_CIPHER_SERVER_PREFERENCE),
214                 SSL_FLAG_TBL("legacy_renegotiation", SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION),
215                 SSL_FLAG_TBL_SRV("legacy_server_connect", SSL_OP_LEGACY_SERVER_CONNECT),
216                 SSL_FLAG_TBL_SRV_INV("no_legacy_server_connect", SSL_OP_LEGACY_SERVER_CONNECT),
217                 SSL_FLAG_TBL_CERT("strict", SSL_CERT_FLAG_TLS_STRICT),
218 #ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
219                 SSL_FLAG_TBL_CERT("debug_broken_protocol", SSL_CERT_FLAG_BROKEN_PROTOCOL),
220 #endif
221                 };
222         cctx->tbl = ssl_option_single;
223         cctx->ntbl = sizeof(ssl_option_single)/sizeof(ssl_flag_tbl);
224         return ssl_set_option_list(cmd, -1, cctx);
225         }
226
227 /* Set supported signature algorithms */
228 static int cmd_SignatureAlgorithms(SSL_CONF_CTX *cctx, const char *value)
229         {
230         int rv;
231         if (cctx->ssl)
232                 rv = SSL_set1_sigalgs_list(cctx->ssl, value);
233         /* NB: ctx == NULL performs syntax checking only */
234         else
235                 rv = SSL_CTX_set1_sigalgs_list(cctx->ctx, value);
236         return rv > 0;
237         }
238 /* Set supported client signature algorithms */
239 static int cmd_ClientSignatureAlgorithms(SSL_CONF_CTX *cctx, const char *value)
240         {
241         int rv;
242         if (cctx->ssl)
243                 rv = SSL_set1_client_sigalgs_list(cctx->ssl, value);
244         /* NB: ctx == NULL performs syntax checking only */
245         else
246                 rv = SSL_CTX_set1_client_sigalgs_list(cctx->ctx, value);
247         return rv > 0;
248         }
249
250 static int cmd_Curves(SSL_CONF_CTX *cctx, const char *value)
251         {
252         int rv;
253         if (cctx->ssl)
254                 rv = SSL_set1_curves_list(cctx->ssl, value);
255         /* NB: ctx == NULL performs syntax checking only */
256         else
257                 rv = SSL_CTX_set1_curves_list(cctx->ctx, value);
258         return rv > 0;
259         }
260 #ifndef OPENSSL_NO_ECDH
261 /* ECDH temporary parameters */
262 static int cmd_ECDHParameters(SSL_CONF_CTX *cctx, const char *value)
263         {
264         int onoff = -1, rv = 1;
265         if (!(cctx->flags & SSL_CONF_FLAG_SERVER))
266                 return -2;
267         if (cctx->flags & SSL_CONF_FLAG_FILE)
268                 {
269                 if (*value == '+')
270                         {
271                         onoff = 1;
272                         value++;
273                         }
274                 if (*value == '-')
275                         {
276                         onoff = 0;
277                         value++;
278                         }
279                 if (!strcasecmp(value, "automatic"))
280                         {
281                         if (onoff == -1)
282                                 onoff = 1;
283                         }
284                 else if (onoff != -1)
285                         return 0;
286                 }
287         else if (cctx->flags & SSL_CONF_FLAG_CMDLINE)
288                 {
289                 if (!strcmp(value, "auto"))
290                         onoff = 1;
291                 }
292
293         if (onoff != -1)
294                 {
295                 if (cctx->ctx)
296                         rv = SSL_CTX_set_ecdh_auto(cctx->ctx, onoff);
297                 else if (cctx->ssl)
298                         rv = SSL_set_ecdh_auto(cctx->ssl, onoff);
299                 }
300         else
301                 {
302                 EC_KEY *ecdh;
303                 int nid;
304                 nid = EC_curve_nist2nid(value);
305                 if (nid == NID_undef)
306                         nid = OBJ_sn2nid(value);
307                 if (nid == 0)
308                         return 0;
309                 ecdh = EC_KEY_new_by_curve_name(nid);
310                 if (!ecdh)
311                         return 0;
312                 if (cctx->ctx)
313                         rv = SSL_CTX_set_tmp_ecdh(cctx->ctx, ecdh);
314                 else if (cctx->ssl)
315                         rv = SSL_set_tmp_ecdh(cctx->ssl, ecdh);
316                 EC_KEY_free(ecdh);
317                 }
318
319         return rv > 0;
320         }
321 #endif
322 static int cmd_CipherString(SSL_CONF_CTX *cctx, const char *value)
323         {
324         int rv = 1;
325         if (cctx->ctx)
326                 rv = SSL_CTX_set_cipher_list(cctx->ctx, value);
327         if (cctx->ssl)
328                 rv = SSL_set_cipher_list(cctx->ssl, value);
329         return rv > 0;
330         }
331
332 static int cmd_Protocol(SSL_CONF_CTX *cctx, const char *value)
333         {
334         static const ssl_flag_tbl ssl_protocol_list[] =
335                 {
336                 SSL_FLAG_TBL_INV("ALL", SSL_OP_NO_SSL_MASK),
337                 SSL_FLAG_TBL_INV("SSLv2", SSL_OP_NO_SSLv2),
338                 SSL_FLAG_TBL_INV("SSLv3", SSL_OP_NO_SSLv3),
339                 SSL_FLAG_TBL_INV("TLSv1", SSL_OP_NO_TLSv1),
340                 SSL_FLAG_TBL_INV("TLSv1.1", SSL_OP_NO_TLSv1_1),
341                 SSL_FLAG_TBL_INV("TLSv1.2", SSL_OP_NO_TLSv1_2)
342                 };
343         if (!(cctx->flags & SSL_CONF_FLAG_FILE))
344                 return -2;
345         cctx->tbl = ssl_protocol_list;
346         cctx->ntbl = sizeof(ssl_protocol_list)/sizeof(ssl_flag_tbl);
347         return CONF_parse_list(value, ',', 1, ssl_set_option_list, cctx);
348         }
349
350 static int cmd_Options(SSL_CONF_CTX *cctx, const char *value)
351         {
352         static const ssl_flag_tbl ssl_option_list[] =
353                 {
354                 SSL_FLAG_TBL_INV("SessionTicket", SSL_OP_NO_TICKET),
355                 SSL_FLAG_TBL_INV("EmptyFragments", SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS),
356                 SSL_FLAG_TBL("Bugs", SSL_OP_ALL),
357                 SSL_FLAG_TBL_INV("Compression", SSL_OP_NO_COMPRESSION),
358                 SSL_FLAG_TBL_SRV("ServerPreference", SSL_OP_CIPHER_SERVER_PREFERENCE),
359                 SSL_FLAG_TBL_SRV("DHSingle", SSL_OP_SINGLE_DH_USE),
360                 SSL_FLAG_TBL_SRV("ECDHSingle", SSL_OP_SINGLE_ECDH_USE),
361                 SSL_FLAG_TBL("UnsafeLegacyRenegotiation", SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION),
362                 };
363         if (!(cctx->flags & SSL_CONF_FLAG_FILE))
364                 return -2;
365         if (value == NULL)
366                 return -3;
367         cctx->tbl = ssl_option_list;
368         cctx->ntbl = sizeof(ssl_option_list)/sizeof(ssl_flag_tbl);
369         return CONF_parse_list(value, ',', 1, ssl_set_option_list, cctx);
370         }
371
372 static int cmd_Certificate(SSL_CONF_CTX *cctx, const char *value)
373         {
374         int rv = 1;
375         if (!(cctx->flags & SSL_CONF_FLAG_CERTIFICATE))
376                 return -2;
377         if (cctx->ctx)
378                 rv = SSL_CTX_use_certificate_chain_file(cctx->ctx, value);
379         if (cctx->ssl)
380                 rv = SSL_use_certificate_file(cctx->ssl, value, SSL_FILETYPE_PEM);
381         return rv > 0;
382         }
383
384 static int cmd_PrivateKey(SSL_CONF_CTX *cctx, const char *value)
385         {
386         int rv = 1;
387         if (!(cctx->flags & SSL_CONF_FLAG_CERTIFICATE))
388                 return -2;
389         if (cctx->ctx)
390                 rv = SSL_CTX_use_PrivateKey_file(cctx->ctx, value, SSL_FILETYPE_PEM);
391         if (cctx->ssl)
392                 rv = SSL_use_PrivateKey_file(cctx->ssl, value, SSL_FILETYPE_PEM);
393         return rv > 0;
394         }
395 #ifndef OPENSSL_NO_DH
396 static int cmd_DHParameters(SSL_CONF_CTX *cctx, const char *value)
397         {
398         int rv = 0;
399         DH *dh = NULL;
400         BIO *in = NULL;
401         if (!(cctx->flags & SSL_CONF_FLAG_CERTIFICATE))
402                 return -2;
403         if (cctx->ctx || cctx->ssl)
404                 {
405                 in = BIO_new(BIO_s_file_internal());
406                 if (!in)
407                         goto end;
408                 if (BIO_read_filename(in, value) <= 0)
409                         goto end;
410                 dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL);
411                 if (!dh)
412                         goto end;
413                 }
414         else
415                 return 1;
416         if (cctx->ctx)
417                 rv = SSL_CTX_set_tmp_dh(cctx->ctx, dh);
418         if (cctx->ssl)
419                 rv = SSL_set_tmp_dh(cctx->ssl, dh);
420         end:
421         if (dh)
422                 DH_free(dh);
423         if (in)
424                 BIO_free(in);
425         return rv > 0;
426         }
427 #endif
428 typedef struct
429         {
430         int (*cmd)(SSL_CONF_CTX *cctx, const char *value);
431         const char *str_file;
432         const char *str_cmdline;
433         unsigned int value_type;
434         } ssl_conf_cmd_tbl;
435
436 /* Table of supported parameters */
437
438 #define SSL_CONF_CMD(name, cmdopt, type) \
439         {cmd_##name, #name, cmdopt, type}
440
441 #define SSL_CONF_CMD_STRING(name, cmdopt) \
442         SSL_CONF_CMD(name, cmdopt, SSL_CONF_TYPE_STRING)
443
444 static const ssl_conf_cmd_tbl ssl_conf_cmds[] = {
445         SSL_CONF_CMD_STRING(SignatureAlgorithms, "sigalgs"),
446         SSL_CONF_CMD_STRING(ClientSignatureAlgorithms, "client_sigalgs"),
447         SSL_CONF_CMD_STRING(Curves, "curves"),
448 #ifndef OPENSSL_NO_ECDH
449         SSL_CONF_CMD_STRING(ECDHParameters, "named_curve"),
450 #endif
451         SSL_CONF_CMD_STRING(CipherString, "cipher"),
452         SSL_CONF_CMD_STRING(Protocol, NULL),
453         SSL_CONF_CMD_STRING(Options, NULL),
454         SSL_CONF_CMD(Certificate, "cert", SSL_CONF_TYPE_FILE),
455         SSL_CONF_CMD(PrivateKey, "key", SSL_CONF_TYPE_FILE),
456 #ifndef OPENSSL_NO_DH
457         SSL_CONF_CMD(DHParameters, "dhparam", SSL_CONF_TYPE_FILE)
458 #endif
459 };
460
461 static int ssl_conf_cmd_skip_prefix(SSL_CONF_CTX *cctx, const char **pcmd)
462         {
463         if (!pcmd || !*pcmd)
464                 return 0;
465         /* If a prefix is set, check and skip */
466         if (cctx->prefix)
467                 {
468                 if (strlen(*pcmd) <= cctx->prefixlen)
469                         return 0;
470                 if (cctx->flags & SSL_CONF_FLAG_CMDLINE &&
471                         strncmp(*pcmd, cctx->prefix, cctx->prefixlen))
472                         return 0;
473                 if (cctx->flags & SSL_CONF_FLAG_FILE &&
474                         strncasecmp(*pcmd, cctx->prefix, cctx->prefixlen))
475                         return 0;
476                 *pcmd += cctx->prefixlen;
477                 }
478         else if (cctx->flags & SSL_CONF_FLAG_CMDLINE)
479                 {
480                 if (**pcmd != '-' || !(*pcmd)[1])
481                         return 0;
482                 *pcmd += 1;
483                 }
484         return 1;
485         }
486
487 static const ssl_conf_cmd_tbl *ssl_conf_cmd_lookup(SSL_CONF_CTX *cctx, const char *cmd)
488         {
489         const ssl_conf_cmd_tbl *t;
490         size_t i;
491         if (cmd == NULL)
492                 return NULL;
493
494         /* Look for matching parameter name in table */
495         for (i = 0, t = ssl_conf_cmds;
496                 i < sizeof(ssl_conf_cmds)/sizeof(ssl_conf_cmd_tbl); i++, t++)
497                 {
498                 if (cctx->flags & SSL_CONF_FLAG_CMDLINE)
499                         {
500                         if (t->str_cmdline && !strcmp(t->str_cmdline, cmd))
501                                 return t;
502                         }
503                 if (cctx->flags & SSL_CONF_FLAG_FILE)
504                         {
505                         if (t->str_file && !strcasecmp(t->str_file, cmd))
506                                 return t;
507                         }
508                 }
509         return NULL;
510         }
511
512 int SSL_CONF_cmd(SSL_CONF_CTX *cctx, const char *cmd, const char *value)
513         {
514         const ssl_conf_cmd_tbl *runcmd;
515         if (cmd == NULL)
516                 {
517                 SSLerr(SSL_F_SSL_CONF_CMD, SSL_R_INVALID_NULL_CMD_NAME);
518                 return 0;
519                 }
520
521         if (!ssl_conf_cmd_skip_prefix(cctx, &cmd))
522                 return -2;
523
524         runcmd = ssl_conf_cmd_lookup(cctx, cmd);
525
526         if (runcmd)
527                 {
528                 int rv;
529                 if (value == NULL)
530                         return -3;
531                 rv = runcmd->cmd(cctx, value);
532                 if (rv > 0)
533                         return 2;
534                 if (rv == -2)
535                         return -2;
536                 if (cctx->flags & SSL_CONF_FLAG_SHOW_ERRORS)
537                         {
538                         SSLerr(SSL_F_SSL_CONF_CMD, SSL_R_BAD_VALUE);
539                         ERR_add_error_data(4, "cmd=", cmd, ", value=", value);
540                         }
541                 return 0;
542                 }
543
544         if (cctx->flags & SSL_CONF_FLAG_CMDLINE)
545                 {
546                 if (ctrl_str_option(cctx, cmd))
547                         return 1;
548                 }
549
550         if (cctx->flags & SSL_CONF_FLAG_SHOW_ERRORS)
551                 {
552                 SSLerr(SSL_F_SSL_CONF_CMD, SSL_R_UNKNOWN_CMD_NAME);
553                 ERR_add_error_data(2, "cmd=", cmd);
554                 }
555
556         return -2;
557         }
558
559 int SSL_CONF_cmd_argv(SSL_CONF_CTX *cctx, int *pargc, char ***pargv)
560         {
561         int rv;
562         const char *arg = NULL, *argn;
563         if (pargc && *pargc == 0)
564                 return 0;
565         if (!pargc || *pargc > 0)
566                 arg = **pargv;
567         if (arg == NULL)
568                 return 0;
569         if (!pargc || *pargc > 1)
570                 argn = (*pargv)[1];
571         else
572                 argn = NULL;
573         cctx->flags &= ~SSL_CONF_FLAG_FILE;
574         cctx->flags |= SSL_CONF_FLAG_CMDLINE;
575         rv = SSL_CONF_cmd(cctx, arg, argn);
576         if (rv > 0)
577                 {
578                 /* Success: update pargc, pargv */
579                 (*pargv) += rv;
580                 if (pargc)
581                         (*pargc) -= rv;
582                 return rv;
583                 }
584         /* Unknown switch: indicate no arguments processed */
585         if (rv == -2)
586                 return 0;
587         /* Some error occurred processing command, return fatal error */
588         if (rv == 0)
589                 return -1;
590         return rv;
591         }
592
593 int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd)
594         {
595         if (ssl_conf_cmd_skip_prefix(cctx, &cmd))
596                 {
597                 const ssl_conf_cmd_tbl *runcmd;
598                 runcmd = ssl_conf_cmd_lookup(cctx, cmd);
599                 if (runcmd)
600                         return runcmd->value_type;
601                 }
602         return SSL_CONF_TYPE_UNKNOWN;
603         }
604
605 SSL_CONF_CTX *SSL_CONF_CTX_new(void)
606         {
607         SSL_CONF_CTX *ret;
608         ret = OPENSSL_malloc(sizeof(SSL_CONF_CTX));
609         if (ret)
610                 {
611                 ret->flags = 0;
612                 ret->prefix = NULL;
613                 ret->prefixlen = 0;
614                 ret->ssl = NULL;
615                 ret->ctx = NULL;
616                 ret->poptions = NULL;
617                 ret->pcert_flags = NULL;
618                 ret->tbl = NULL;
619                 ret->ntbl = 0;
620                 }
621         return ret;
622         }
623
624 int SSL_CONF_CTX_finish(SSL_CONF_CTX *cctx)
625         {
626         return 1;
627         }
628
629 void SSL_CONF_CTX_free(SSL_CONF_CTX *cctx)
630         {
631         if (cctx)
632                 {
633                 if (cctx->prefix)
634                         OPENSSL_free(cctx->prefix);
635                 OPENSSL_free(cctx);
636                 }
637         }
638
639 unsigned int SSL_CONF_CTX_set_flags(SSL_CONF_CTX *cctx, unsigned int flags)
640         {
641         cctx->flags |= flags;
642         return cctx->flags;
643         }
644
645 unsigned int SSL_CONF_CTX_clear_flags(SSL_CONF_CTX *cctx, unsigned int flags)
646         {
647         cctx->flags &= ~flags;
648         return cctx->flags;
649         }
650
651 int SSL_CONF_CTX_set1_prefix(SSL_CONF_CTX *cctx, const char *pre)
652         {
653         char *tmp = NULL;
654         if (pre)
655                 {
656                 tmp = BUF_strdup(pre);
657                 if (tmp == NULL)
658                         return 0;
659                 }
660         if (cctx->prefix)
661                 OPENSSL_free(cctx->prefix);
662         cctx->prefix = tmp;
663         if (tmp)
664                 cctx->prefixlen = strlen(tmp);
665         else
666                 cctx->prefixlen = 0;
667         return 1;
668         }
669
670 void SSL_CONF_CTX_set_ssl(SSL_CONF_CTX *cctx, SSL *ssl)
671         {
672         cctx->ssl = ssl;
673         cctx->ctx = NULL;
674         if (ssl)
675                 {
676                 cctx->poptions = &ssl->options;
677                 cctx->pcert_flags = &ssl->cert->cert_flags;
678                 }
679         else
680                 {
681                 cctx->poptions = NULL;
682                 cctx->pcert_flags = NULL;
683                 }
684         }
685
686 void SSL_CONF_CTX_set_ssl_ctx(SSL_CONF_CTX *cctx, SSL_CTX *ctx)
687         {
688         cctx->ctx = ctx;
689         cctx->ssl = NULL;
690         if (ctx)
691                 {
692                 cctx->poptions = &ctx->options;
693                 cctx->pcert_flags = &ctx->cert->cert_flags;
694                 }
695         else
696                 {
697                 cctx->poptions = NULL;
698                 cctx->pcert_flags = NULL;
699                 }
700         }