Add -ecdh_single option.
[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
66 /* structure holding name tables. This is used for pemitted elements in
67  * lists such as TLSv1 and single command line switches such as no_tls1
68  */
69
70 typedef struct
71         {
72         const char *name;
73         int namelen;
74         unsigned int name_flags;
75         unsigned long option_value;
76         } ssl_flag_tbl;
77
78 /* Sense of name is inverted e.g. "TLSv1" will clear SSL_OP_NO_TLSv1 */
79 #define SSL_TFLAG_INV   0x1
80 /* Flags refers to cert_flags not options */
81 #define SSL_TFLAG_CERT  0x2
82 /* Option can only be used for clients */
83 #define SSL_TFLAG_CLIENT SSL_CONF_FLAG_CLIENT
84 /* Option can only be used for servers */
85 #define SSL_TFLAG_SERVER SSL_CONF_FLAG_SERVER
86 #define SSL_TFLAG_BOTH (SSL_TFLAG_CLIENT|SSL_TFLAG_SERVER)
87
88 #define SSL_FLAG_TBL(str, flag) \
89         {str, (int)(sizeof(str) - 1), SSL_TFLAG_BOTH, flag}
90 #define SSL_FLAG_TBL_SRV(str, flag) \
91         {str, (int)(sizeof(str) - 1), SSL_TFLAG_SERVER, flag}
92 #define SSL_FLAG_TBL_CLI(str, flag) \
93         {str, (int)(sizeof(str) - 1), SSL_TFLAG_CLIENT, flag}
94 #define SSL_FLAG_TBL_INV(str, flag) \
95         {str, (int)(sizeof(str) - 1), SSL_TFLAG_INV|SSL_TFLAG_BOTH, flag}
96 #define SSL_FLAG_TBL_SRV_INV(str, flag) \
97         {str, (int)(sizeof(str) - 1), SSL_TFLAG_INV|SSL_TFLAG_SERVER, flag}
98 #define SSL_FLAG_TBL_CERT(str, flag) \
99         {str, (int)(sizeof(str) - 1), SSL_TFLAG_CERT|SSL_TFLAG_BOTH, flag}
100
101 /* Opaque structure containing SSL configuration context.
102  */
103
104 struct ssl_conf_ctx_st
105         {
106         /* Various flags indicating (among other things) which options we
107          * will recognise.
108          */
109         unsigned int flags;
110         /* Prefix and length of commands */
111         char *prefix;
112         size_t prefixlen;
113         /* SSL_CTX or SSL structure to perform operations on */
114         SSL_CTX *ctx;
115         SSL *ssl;
116         /* Pointer to SSL or SSL_CTX options field or NULL if none */
117         unsigned long *poptions;
118         /* Pointer to SSL or SSL_CTX cert_flags or NULL if none */
119         unsigned int *pcert_flags;
120         /* Current flag table being worked on */
121         const ssl_flag_tbl *tbl;
122         /* Size of table */
123         size_t ntbl;
124         };
125
126 static int ssl_match_option(SSL_CONF_CTX *cctx, const ssl_flag_tbl *tbl,
127                                 const char *name, int namelen, int onoff)
128         {
129         /* If name not relevant for context skip */
130         if (!(cctx->flags & tbl->name_flags & SSL_TFLAG_BOTH))
131                 return 0;
132         if (namelen == -1)
133                 {
134                 if (strcmp(tbl->name, name))
135                         return 0;
136                 }
137         else if (tbl->namelen != namelen || strncasecmp(tbl->name, name, namelen))
138                 return 0;
139         if (cctx->poptions)
140                 {
141                 if (tbl->name_flags & SSL_TFLAG_INV)
142                         onoff ^= 1;
143                 if (tbl->name_flags & SSL_TFLAG_CERT)
144                         {
145                         if (onoff)
146                                 *cctx->pcert_flags |= tbl->option_value;
147                         else
148                                 *cctx->pcert_flags &= ~tbl->option_value;
149                         }
150                 else
151                         {
152                         if (onoff)
153                                 *cctx->poptions |= tbl->option_value;
154                         else
155                                 *cctx->poptions &= ~tbl->option_value;
156                         }
157                 }
158         return 1;
159         }
160
161 static int ssl_set_option_list(const char *elem, int len, void *usr)
162         {
163         SSL_CONF_CTX *cctx = usr;
164         size_t i;
165         const ssl_flag_tbl *tbl;
166         int onoff = 1;
167         /* len == -1 indicates not being called in list context, just for
168          * single command line switches, so don't allow +, -.
169          */
170         if (len != -1)
171                 {
172                 if (*elem == '+')
173                         {
174                         elem++;
175                         len--;
176                         onoff = 1;
177                         }
178                 else if (*elem == '-')
179                         {
180                         elem++;
181                         len--;
182                         onoff = 0;
183                         }
184                 }
185         for (i = 0, tbl = cctx->tbl; i < cctx->ntbl; i++, tbl++)
186                 {
187                 if (ssl_match_option(cctx, tbl, elem, len, onoff))
188                         return 1;
189                 }
190         return 0;
191         }
192
193 /* Single command line switches with no argument e.g. -no_ssl3 */
194 static int ctrl_str_option(SSL_CONF_CTX *cctx, const char *cmd)
195         {
196         static const ssl_flag_tbl ssl_option_single[] =
197                 {
198                 SSL_FLAG_TBL("no_ssl2", SSL_OP_NO_SSLv2),
199                 SSL_FLAG_TBL("no_ssl3", SSL_OP_NO_SSLv3),
200                 SSL_FLAG_TBL("no_tls1", SSL_OP_NO_TLSv1),
201                 SSL_FLAG_TBL("no_tls1_1", SSL_OP_NO_TLSv1_1),
202                 SSL_FLAG_TBL("no_tls1_2", SSL_OP_NO_TLSv1_2),
203                 SSL_FLAG_TBL("no_tls1_2", SSL_OP_NO_TLSv1_2),
204                 SSL_FLAG_TBL("bugs", SSL_OP_ALL),
205                 SSL_FLAG_TBL("no_comp", SSL_OP_NO_COMPRESSION),
206                 SSL_FLAG_TBL_SRV("ecdh_single", SSL_OP_SINGLE_ECDH_USE),
207 #ifndef OPENSSL_NO_TLSEXT
208                 SSL_FLAG_TBL("no_ticket", SSL_OP_NO_TICKET),
209 #endif
210                 SSL_FLAG_TBL_SRV("serverpref", SSL_OP_CIPHER_SERVER_PREFERENCE),
211                 SSL_FLAG_TBL("legacy_renegotiation", SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION),
212                 SSL_FLAG_TBL_SRV("legacy_server_connect", SSL_OP_LEGACY_SERVER_CONNECT),
213                 SSL_FLAG_TBL_SRV_INV("no_legacy_server_connect", SSL_OP_LEGACY_SERVER_CONNECT),
214                 SSL_FLAG_TBL_CERT("strict", SSL_CERT_FLAG_TLS_STRICT),
215 #ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
216                 SSL_FLAG_TBL_CERT("debug_broken_protocol", SSL_CERT_FLAG_BROKEN_PROTOCOL),
217 #endif
218                 };
219         cctx->tbl = ssl_option_single;
220         cctx->ntbl = sizeof(ssl_option_single)/sizeof(ssl_flag_tbl);
221         return ssl_set_option_list(cmd, -1, cctx);
222         }
223
224 /* Set supported signature algorithms */
225 static int cmd_sigalgs(SSL_CONF_CTX *cctx, const char *value)
226         {
227         int rv;
228         if (cctx->ssl)
229                 rv = SSL_set1_sigalgs_list(cctx->ssl, value);
230         /* NB: ctx == NULL performs syntax checking only */
231         else
232                 rv = SSL_CTX_set1_sigalgs_list(cctx->ctx, value);
233         return rv > 0;
234         }
235 /* Set supported client signature algorithms */
236 static int cmd_client_sigalgs(SSL_CONF_CTX *cctx, const char *value)
237         {
238         int rv;
239         if (cctx->ssl)
240                 rv = SSL_set1_client_sigalgs_list(cctx->ssl, value);
241         /* NB: ctx == NULL performs syntax checking only */
242         else
243                 rv = SSL_CTX_set1_client_sigalgs_list(cctx->ctx, value);
244         return rv > 0;
245         }
246
247 static int cmd_curves(SSL_CONF_CTX *cctx, const char *value)
248         {
249         int rv;
250         if (cctx->ssl)
251                 rv = SSL_set1_curves_list(cctx->ssl, value);
252         /* NB: ctx == NULL performs syntax checking only */
253         else
254                 rv = SSL_CTX_set1_curves_list(cctx->ctx, value);
255         return rv > 0;
256         }
257 #ifndef OPENSSL_NO_ECDH
258 /* ECDH temporary parameters */
259 static int cmd_ecdhparam(SSL_CONF_CTX *cctx, const char *value)
260         {
261         int onoff = -1, rv = 1;
262         if (!(cctx->flags & SSL_CONF_FLAG_SERVER))
263                 return -2;
264         if (cctx->flags & SSL_CONF_FLAG_FILE)
265                 {
266                 if (*value == '+')
267                         {
268                         onoff = 1;
269                         value++;
270                         }
271                 if (*value == '-')
272                         {
273                         onoff = 0;
274                         value++;
275                         }
276                 if (!strcasecmp(value, "automatic"))
277                         {
278                         if (onoff == -1)
279                                 onoff = 1;
280                         }
281                 else if (onoff != -1)
282                         return 0;
283                 }
284         else if (cctx->flags & SSL_CONF_FLAG_CMDLINE)
285                 {
286                 if (!strcmp(value, "auto"))
287                         onoff = 1;
288                 }
289
290         if (onoff != -1)
291                 {
292                 if (cctx->ctx)
293                         rv = SSL_CTX_set_ecdh_auto(cctx->ctx, onoff);
294                 else if (cctx->ssl)
295                         rv = SSL_set_ecdh_auto(cctx->ssl, onoff);
296                 }
297         else
298                 {
299                 EC_KEY *ecdh;
300                 int nid;
301                 nid = EC_curve_nist2nid(value);
302                 if (nid == NID_undef)
303                         nid = OBJ_sn2nid(value);
304                 if (nid == 0)
305                         return 0;
306                 ecdh = EC_KEY_new_by_curve_name(nid);
307                 if (!ecdh)
308                         return 0;
309                 if (cctx->ctx)
310                         rv = SSL_CTX_set_tmp_ecdh(cctx->ctx, ecdh);
311                 else if (cctx->ssl)
312                         rv = SSL_set_tmp_ecdh(cctx->ssl, ecdh);
313                 EC_KEY_free(ecdh);
314                 }
315
316         return rv > 0;
317         }
318 #endif
319 static int cmd_cipher_list(SSL_CONF_CTX *cctx, const char *value)
320         {
321         int rv = 1;
322         if (cctx->ctx)
323                 rv = SSL_CTX_set_cipher_list(cctx->ctx, value);
324         if (cctx->ssl)
325                 rv = SSL_set_cipher_list(cctx->ssl, value);
326         return rv > 0;
327         }
328
329 static int cmd_protocol(SSL_CONF_CTX *cctx, const char *value)
330         {
331         static const ssl_flag_tbl ssl_protocol_list[] =
332                 {
333                 SSL_FLAG_TBL_INV("ALL", SSL_OP_NO_SSL_MASK),
334                 SSL_FLAG_TBL_INV("SSLv2", SSL_OP_NO_SSLv2),
335                 SSL_FLAG_TBL_INV("SSLv3", SSL_OP_NO_SSLv3),
336                 SSL_FLAG_TBL_INV("TLSv1", SSL_OP_NO_TLSv1),
337                 SSL_FLAG_TBL_INV("TLSv1.1", SSL_OP_NO_TLSv1_1),
338                 SSL_FLAG_TBL_INV("TLSv1.2", SSL_OP_NO_TLSv1_2)
339                 };
340         if (!(cctx->flags & SSL_CONF_FLAG_FILE))
341                 return -2;
342         cctx->tbl = ssl_protocol_list;
343         cctx->ntbl = sizeof(ssl_protocol_list)/sizeof(ssl_flag_tbl);
344         return CONF_parse_list(value, ',', 1, ssl_set_option_list, cctx);
345         }
346
347 static int cmd_options(SSL_CONF_CTX *cctx, const char *value)
348         {
349         static const ssl_flag_tbl ssl_option_list[] =
350                 {
351                 SSL_FLAG_TBL_INV("SessionTicket", SSL_OP_NO_TICKET),
352                 SSL_FLAG_TBL_INV("EmptyFragments", SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS),
353                 SSL_FLAG_TBL("Bugs", SSL_OP_ALL),
354                 SSL_FLAG_TBL_INV("Compression", SSL_OP_NO_COMPRESSION),
355                 SSL_FLAG_TBL_SRV("ServerPreference", SSL_OP_CIPHER_SERVER_PREFERENCE),
356                 SSL_FLAG_TBL_SRV("DHSingle", SSL_OP_SINGLE_DH_USE),
357                 SSL_FLAG_TBL_SRV("ECDHSingle", SSL_OP_SINGLE_ECDH_USE),
358                 SSL_FLAG_TBL("UnsafeLegacyRenegotiation", SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION),
359                 };
360         if (!(cctx->flags & SSL_CONF_FLAG_FILE))
361                 return -2;
362         if (value == NULL)
363                 return -3;
364         cctx->tbl = ssl_option_list;
365         cctx->ntbl = sizeof(ssl_option_list)/sizeof(ssl_flag_tbl);
366         return CONF_parse_list(value, ',', 1, ssl_set_option_list, cctx);
367         }
368
369 typedef struct
370         {
371         int (*cmd)(SSL_CONF_CTX *cctx, const char *value);
372         const char *str_file;
373         const char *str_cmdline;
374         } ssl_conf_cmd_tbl;
375
376 /* Table of supported patameters */
377
378 static ssl_conf_cmd_tbl ssl_conf_cmds[] = {
379         {cmd_sigalgs,           "SignatureAlgorithms", "sigalgs"},
380         {cmd_client_sigalgs,    "ClientSignatureAlgorithms", "client_sigalgs"},
381         {cmd_curves,            "Curves", "curves"},
382 #ifndef OPENSSL_NO_ECDH
383         {cmd_ecdhparam,         "ECDHParameters", "named_curve"},
384 #endif
385         {cmd_cipher_list,       "CipherString", "cipher"},
386         {cmd_protocol,          "Protocol", NULL},
387         {cmd_options,           "Options", NULL},
388 };
389
390 int SSL_CONF_cmd(SSL_CONF_CTX *cctx, const char *cmd, const char *value)
391         {
392         ssl_conf_cmd_tbl *t, *runcmd = NULL;
393         size_t i;
394         if (cmd == NULL)
395                 {
396                 SSLerr(SSL_F_SSL_CONF_CMD, SSL_R_INVALID_NULL_CMD_NAME);
397                 return 0;
398                 }
399         /* If a prefix is set, check and skip */
400         if (cctx->prefix)
401                 {
402                 if (strlen(cmd) <= cctx->prefixlen)
403                         return -2;
404                 if (cctx->flags & SSL_CONF_FLAG_CMDLINE &&
405                         strncmp(cmd, cctx->prefix, cctx->prefixlen))
406                         return -2;
407                 if (cctx->flags & SSL_CONF_FLAG_FILE &&
408                         strncasecmp(cmd, cctx->prefix, cctx->prefixlen))
409                         return -2;
410                 cmd += cctx->prefixlen;
411                 }
412         else if (cctx->flags & SSL_CONF_FLAG_CMDLINE)
413                 {
414                 if (*cmd != '-' || !cmd[1])
415                         return -2;
416                 cmd++;
417                 }
418
419         /* Look for matching parameter name in table */
420         for (i = 0, t = ssl_conf_cmds;
421                 i < sizeof(ssl_conf_cmds)/sizeof(ssl_conf_cmd_tbl); i++, t++)
422                 {
423                 if (cctx->flags & SSL_CONF_FLAG_CMDLINE)
424                         {
425                         if (t->str_cmdline && !strcmp(t->str_cmdline, cmd))
426                                 {
427                                 runcmd = t;
428                                 break;
429                                 }
430                         }
431                 if (cctx->flags & SSL_CONF_FLAG_FILE)
432                         {
433                         if (t->str_file && !strcasecmp(t->str_file, cmd))
434                                 {
435                                 runcmd = t;
436                                 break;
437                                 }
438                         }
439                 }
440
441         if (runcmd)
442                 {
443                 int rv;
444                 if (value == NULL)
445                         return -3;
446                 rv = t->cmd(cctx, value);
447                 if (rv > 0)
448                         return 2;
449                 if (rv == -2)
450                         return -2;
451                 if (cctx->flags & SSL_CONF_FLAG_SHOW_ERRORS)
452                         {
453                         SSLerr(SSL_F_SSL_CONF_CMD, SSL_R_BAD_VALUE);
454                         ERR_add_error_data(4, "cmd=", cmd, ", value=", value);
455                         }
456                 return 0;
457                 }
458
459         if (cctx->flags & SSL_CONF_FLAG_CMDLINE)
460                 {
461                 if (ctrl_str_option(cctx, cmd))
462                         return 1;
463                 }
464
465         if (cctx->flags & SSL_CONF_FLAG_SHOW_ERRORS)
466                 {
467                 SSLerr(SSL_F_SSL_CONF_CMD, SSL_R_UNKNOWN_CMD_NAME);
468                 ERR_add_error_data(2, "cmd=", cmd);
469                 }
470
471         return -2;
472         }
473
474 int SSL_CONF_cmd_argv(SSL_CONF_CTX *cctx, int *pargc, char ***pargv)
475         {
476         int rv;
477         const char *arg = NULL, *argn;
478         if (pargc && *pargc == 0)
479                 return 0;
480         if (!pargc || *pargc > 0)
481                 arg = **pargv;
482         if (arg == NULL)
483                 return 0;
484         if (!pargc || *pargc > 1)
485                 argn = (*pargv)[1];
486         else
487                 argn = NULL;
488         cctx->flags &= ~SSL_CONF_FLAG_FILE;
489         cctx->flags |= SSL_CONF_FLAG_CMDLINE;
490         rv = SSL_CONF_cmd(cctx, arg, argn);
491         if (rv > 0)
492                 {
493                 /* Success: update pargc, pargv */
494                 (*pargv) += rv;
495                 if (pargc)
496                         (*pargc) -= rv;
497                 return rv;
498                 }
499         /* Unknown swicth: indicate no arguments processed */
500         if (rv == -2)
501                 return 0;
502         /* Some error occurred processing command, return fatal error */
503         if (rv == 0)
504                 return -1;
505         return rv;
506         }
507
508 SSL_CONF_CTX *SSL_CONF_CTX_new(void)
509         {
510         SSL_CONF_CTX *ret;
511         ret = OPENSSL_malloc(sizeof(SSL_CONF_CTX));
512         if (ret)
513                 {
514                 ret->flags = 0;
515                 ret->prefix = NULL;
516                 ret->prefixlen = 0;
517                 ret->ssl = NULL;
518                 ret->ctx = NULL;
519                 ret->poptions = NULL;
520                 ret->pcert_flags = NULL;
521                 ret->tbl = NULL;
522                 ret->ntbl = 0;
523                 }
524         return ret;
525         }
526
527 void SSL_CONF_CTX_free(SSL_CONF_CTX *cctx)
528         {
529         if (cctx)
530                 {
531                 if (cctx->prefix)
532                         OPENSSL_free(cctx->prefix);
533                 OPENSSL_free(cctx);
534                 }
535         }
536
537 unsigned int SSL_CONF_CTX_set_flags(SSL_CONF_CTX *cctx, unsigned int flags)
538         {
539         cctx->flags |= flags;
540         return cctx->flags;
541         }
542
543 unsigned int SSL_CONF_CTX_clear_flags(SSL_CONF_CTX *cctx, unsigned int flags)
544         {
545         cctx->flags &= ~flags;
546         return cctx->flags;
547         }
548
549 int SSL_CONF_CTX_set1_prefix(SSL_CONF_CTX *cctx, const char *pre)
550         {
551         char *tmp = NULL;
552         if (pre)
553                 {
554                 tmp = BUF_strdup(pre);
555                 if (tmp == NULL)
556                         return 0;
557                 }
558         if (cctx->prefix)
559                 OPENSSL_free(cctx->prefix);
560         cctx->prefix = tmp;
561         if (tmp)
562                 cctx->prefixlen = strlen(tmp);
563         else
564                 cctx->prefixlen = 0;
565         return 1;
566         }
567
568 void SSL_CONF_CTX_set_ssl(SSL_CONF_CTX *cctx, SSL *ssl)
569         {
570         cctx->ssl = ssl;
571         cctx->ctx = NULL;
572         if (ssl)
573                 {
574                 cctx->poptions = &ssl->options;
575                 cctx->pcert_flags = &ssl->cert->cert_flags;
576                 }
577         else
578                 {
579                 cctx->poptions = NULL;
580                 cctx->pcert_flags = NULL;
581                 }
582         }
583
584 void SSL_CONF_CTX_set_ssl_ctx(SSL_CONF_CTX *cctx, SSL_CTX *ctx)
585         {
586         cctx->ctx = ctx;
587         cctx->ssl = NULL;
588         if (ctx)
589                 {
590                 cctx->poptions = &ctx->options;
591                 cctx->pcert_flags = &ctx->cert->cert_flags;
592                 }
593         else
594                 {
595                 cctx->poptions = NULL;
596                 cctx->pcert_flags = NULL;
597                 }
598         }