os/ossrv/ssl/libcrypto/src/crypto/engine/eng_cnf.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* eng_cnf.c */
sl@0
     2
/* Written by Stephen Henson (shenson@bigfoot.com) for the OpenSSL
sl@0
     3
 * project 2001.
sl@0
     4
 */
sl@0
     5
/* ====================================================================
sl@0
     6
 * Copyright (c) 2001 The OpenSSL Project.  All rights reserved.
sl@0
     7
 *
sl@0
     8
 * Redistribution and use in source and binary forms, with or without
sl@0
     9
 * modification, are permitted provided that the following conditions
sl@0
    10
 * are met:
sl@0
    11
 *
sl@0
    12
 * 1. Redistributions of source code must retain the above copyright
sl@0
    13
 *    notice, this list of conditions and the following disclaimer. 
sl@0
    14
 *
sl@0
    15
 * 2. Redistributions in binary form must reproduce the above copyright
sl@0
    16
 *    notice, this list of conditions and the following disclaimer in
sl@0
    17
 *    the documentation and/or other materials provided with the
sl@0
    18
 *    distribution.
sl@0
    19
 *
sl@0
    20
 * 3. All advertising materials mentioning features or use of this
sl@0
    21
 *    software must display the following acknowledgment:
sl@0
    22
 *    "This product includes software developed by the OpenSSL Project
sl@0
    23
 *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
sl@0
    24
 *
sl@0
    25
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
sl@0
    26
 *    endorse or promote products derived from this software without
sl@0
    27
 *    prior written permission. For written permission, please contact
sl@0
    28
 *    licensing@OpenSSL.org.
sl@0
    29
 *
sl@0
    30
 * 5. Products derived from this software may not be called "OpenSSL"
sl@0
    31
 *    nor may "OpenSSL" appear in their names without prior written
sl@0
    32
 *    permission of the OpenSSL Project.
sl@0
    33
 *
sl@0
    34
 * 6. Redistributions of any form whatsoever must retain the following
sl@0
    35
 *    acknowledgment:
sl@0
    36
 *    "This product includes software developed by the OpenSSL Project
sl@0
    37
 *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
sl@0
    38
 *
sl@0
    39
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
sl@0
    40
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
sl@0
    41
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
sl@0
    42
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
sl@0
    43
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
sl@0
    44
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
sl@0
    45
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
sl@0
    46
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
sl@0
    47
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
sl@0
    48
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
sl@0
    49
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
sl@0
    50
 * OF THE POSSIBILITY OF SUCH DAMAGE.
sl@0
    51
 * ====================================================================
sl@0
    52
 *
sl@0
    53
 * This product includes cryptographic software written by Eric Young
sl@0
    54
 * (eay@cryptsoft.com).  This product includes software written by Tim
sl@0
    55
 * Hudson (tjh@cryptsoft.com).
sl@0
    56
 *
sl@0
    57
 */
sl@0
    58
 /*
sl@0
    59
 © Portions copyright (c) 2006 Nokia Corporation.  All rights reserved.
sl@0
    60
 */
sl@0
    61
sl@0
    62
sl@0
    63
sl@0
    64
#include "eng_int.h"
sl@0
    65
#include <openssl/conf.h>
sl@0
    66
#if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
sl@0
    67
#include "libcrypto_wsd_macros.h"
sl@0
    68
#include "libcrypto_wsd.h"
sl@0
    69
#endif
sl@0
    70
sl@0
    71
sl@0
    72
/* #define ENGINE_CONF_DEBUG */
sl@0
    73
sl@0
    74
/* ENGINE config module */
sl@0
    75
sl@0
    76
static char *skip_dot(char *name)
sl@0
    77
	{
sl@0
    78
	char *p;
sl@0
    79
	p = strchr(name, '.');
sl@0
    80
	if (p)
sl@0
    81
		return p + 1;
sl@0
    82
	return name;
sl@0
    83
	}
sl@0
    84
sl@0
    85
#ifndef EMULATOR
sl@0
    86
static STACK_OF(ENGINE) *initialized_engines = NULL;
sl@0
    87
#else
sl@0
    88
GET_STATIC_VAR_FROM_TLS(initialized_engines,eng_cnf,STACK_OF(ENGINE) *)
sl@0
    89
#define initialized_engines (*GET_WSD_VAR_NAME(initialized_engines,eng_cnf, s)())
sl@0
    90
#endif
sl@0
    91
sl@0
    92
static int int_engine_init(ENGINE *e)
sl@0
    93
	{
sl@0
    94
	if (!ENGINE_init(e))
sl@0
    95
		return 0;
sl@0
    96
	if (!initialized_engines)
sl@0
    97
		initialized_engines = sk_ENGINE_new_null();
sl@0
    98
	if (!initialized_engines || !sk_ENGINE_push(initialized_engines, e))
sl@0
    99
		{
sl@0
   100
		ENGINE_finish(e);
sl@0
   101
		return 0;
sl@0
   102
		}
sl@0
   103
	return 1;
sl@0
   104
	}
sl@0
   105
	
sl@0
   106
sl@0
   107
static int int_engine_configure(char *name, char *value, const CONF *cnf)
sl@0
   108
	{
sl@0
   109
	int i;
sl@0
   110
	int ret = 0;
sl@0
   111
	long do_init = -1;
sl@0
   112
	STACK_OF(CONF_VALUE) *ecmds;
sl@0
   113
	CONF_VALUE *ecmd;
sl@0
   114
	char *ctrlname, *ctrlvalue;
sl@0
   115
	ENGINE *e = NULL;
sl@0
   116
	name = skip_dot(name);
sl@0
   117
#ifdef ENGINE_CONF_DEBUG
sl@0
   118
	fprintf(stderr, "Configuring engine %s\n", name);
sl@0
   119
#endif
sl@0
   120
	/* Value is a section containing ENGINE commands */
sl@0
   121
	ecmds = NCONF_get_section(cnf, value);
sl@0
   122
sl@0
   123
	if (!ecmds)
sl@0
   124
		{
sl@0
   125
		ENGINEerr(ENGINE_F_INT_ENGINE_CONFIGURE, ENGINE_R_ENGINE_SECTION_ERROR);
sl@0
   126
		return 0;
sl@0
   127
		}
sl@0
   128
sl@0
   129
	for (i = 0; i < sk_CONF_VALUE_num(ecmds); i++)
sl@0
   130
		{
sl@0
   131
		ecmd = sk_CONF_VALUE_value(ecmds, i);
sl@0
   132
		ctrlname = skip_dot(ecmd->name);
sl@0
   133
		ctrlvalue = ecmd->value;
sl@0
   134
#ifdef ENGINE_CONF_DEBUG
sl@0
   135
	fprintf(stderr, "ENGINE conf: doing ctrl(%s,%s)\n", ctrlname, ctrlvalue);
sl@0
   136
#endif
sl@0
   137
sl@0
   138
		/* First handle some special pseudo ctrls */
sl@0
   139
sl@0
   140
		/* Override engine name to use */
sl@0
   141
		if (!strcmp(ctrlname, "engine_id"))
sl@0
   142
			name = ctrlvalue;
sl@0
   143
		/* Load a dynamic ENGINE */
sl@0
   144
		else if (!strcmp(ctrlname, "dynamic_path"))
sl@0
   145
			{
sl@0
   146
			e = ENGINE_by_id("dynamic");
sl@0
   147
			if (!e)
sl@0
   148
				goto err;
sl@0
   149
			if (!ENGINE_ctrl_cmd_string(e, "SO_PATH", ctrlvalue, 0))
sl@0
   150
				goto err;
sl@0
   151
			if (!ENGINE_ctrl_cmd_string(e, "LIST_ADD", "2", 0))
sl@0
   152
				goto err;
sl@0
   153
			if (!ENGINE_ctrl_cmd_string(e, "LOAD", NULL, 0))
sl@0
   154
				goto err;
sl@0
   155
			}
sl@0
   156
		/* ... add other pseudos here ... */
sl@0
   157
		else
sl@0
   158
			{
sl@0
   159
			/* At this point we need an ENGINE structural reference
sl@0
   160
			 * if we don't already have one.
sl@0
   161
			 */
sl@0
   162
			if (!e)
sl@0
   163
				{
sl@0
   164
				e = ENGINE_by_id(name);
sl@0
   165
				if (!e)
sl@0
   166
					return 0;
sl@0
   167
				}
sl@0
   168
			/* Allow "EMPTY" to mean no value: this allows a valid
sl@0
   169
			 * "value" to be passed to ctrls of type NO_INPUT
sl@0
   170
		 	 */
sl@0
   171
			if (!strcmp(ctrlvalue, "EMPTY"))
sl@0
   172
				ctrlvalue = NULL;
sl@0
   173
			if (!strcmp(ctrlname, "init"))
sl@0
   174
				{
sl@0
   175
				if (!NCONF_get_number_e(cnf, value, "init", &do_init))
sl@0
   176
					goto err;
sl@0
   177
				if (do_init == 1)
sl@0
   178
					{
sl@0
   179
					if (!int_engine_init(e))
sl@0
   180
						goto err;
sl@0
   181
					}
sl@0
   182
				else if (do_init != 0)
sl@0
   183
					{
sl@0
   184
					ENGINEerr(ENGINE_F_INT_ENGINE_CONFIGURE, ENGINE_R_INVALID_INIT_VALUE);
sl@0
   185
					goto err;
sl@0
   186
					}
sl@0
   187
				}
sl@0
   188
			else if (!strcmp(ctrlname, "default_algorithms"))
sl@0
   189
				{
sl@0
   190
				if (!ENGINE_set_default_string(e, ctrlvalue))
sl@0
   191
					goto err;
sl@0
   192
				}
sl@0
   193
			else if (!ENGINE_ctrl_cmd_string(e,
sl@0
   194
					ctrlname, ctrlvalue, 0))
sl@0
   195
				return 0;
sl@0
   196
			}
sl@0
   197
sl@0
   198
sl@0
   199
sl@0
   200
		}
sl@0
   201
	if (e && (do_init == -1) && !int_engine_init(e))
sl@0
   202
		goto err;
sl@0
   203
	ret = 1;
sl@0
   204
	err:
sl@0
   205
	if (e)
sl@0
   206
		ENGINE_free(e);
sl@0
   207
	return ret;
sl@0
   208
	}
sl@0
   209
sl@0
   210
sl@0
   211
static int int_engine_module_init(CONF_IMODULE *md, const CONF *cnf)
sl@0
   212
	{
sl@0
   213
	STACK_OF(CONF_VALUE) *elist;
sl@0
   214
	CONF_VALUE *cval;
sl@0
   215
	int i;
sl@0
   216
#ifdef ENGINE_CONF_DEBUG
sl@0
   217
	fprintf(stderr, "Called engine module: name %s, value %s\n",
sl@0
   218
			CONF_imodule_get_name(md), CONF_imodule_get_value(md));
sl@0
   219
#endif
sl@0
   220
	/* Value is a section containing ENGINEs to configure */
sl@0
   221
	elist = NCONF_get_section(cnf, CONF_imodule_get_value(md));
sl@0
   222
sl@0
   223
	if (!elist)
sl@0
   224
		{
sl@0
   225
		ENGINEerr(ENGINE_F_INT_ENGINE_MODULE_INIT, ENGINE_R_ENGINES_SECTION_ERROR);
sl@0
   226
		return 0;
sl@0
   227
		}
sl@0
   228
sl@0
   229
	for (i = 0; i < sk_CONF_VALUE_num(elist); i++)
sl@0
   230
		{
sl@0
   231
		cval = sk_CONF_VALUE_value(elist, i);
sl@0
   232
		if (!int_engine_configure(cval->name, cval->value, cnf))
sl@0
   233
			return 0;
sl@0
   234
		}
sl@0
   235
sl@0
   236
	return 1;
sl@0
   237
	}
sl@0
   238
sl@0
   239
static void int_engine_module_finish(CONF_IMODULE *md)
sl@0
   240
	{
sl@0
   241
	ENGINE *e;
sl@0
   242
	while ((e = sk_ENGINE_pop(initialized_engines)))
sl@0
   243
		ENGINE_finish(e);
sl@0
   244
	sk_ENGINE_free(initialized_engines);
sl@0
   245
	initialized_engines = NULL;
sl@0
   246
	}
sl@0
   247
	
sl@0
   248
sl@0
   249
EXPORT_C void ENGINE_add_conf_module(void)
sl@0
   250
	{
sl@0
   251
	CONF_module_add("engines",
sl@0
   252
			int_engine_module_init,
sl@0
   253
			int_engine_module_finish);
sl@0
   254
	}