123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470 |
- /*
- * Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved.
- *
- * Licensed under the Apache License 2.0 (the "License"). You may not use
- * this file except in compliance with the License. You can obtain a copy
- * in the file LICENSE in the source distribution or at
- * https://www.openssl.org/source/license.html
- */
- #include "internal/e_os.h"
- #include <stdio.h>
- #include <string.h>
- #include "internal/conf.h"
- #include "crypto/ctype.h"
- #include <openssl/crypto.h>
- #include <openssl/err.h>
- #include <openssl/conf.h>
- #include <openssl/conf_api.h>
- #include "conf_local.h"
- #include <openssl/lhash.h>
- static CONF_METHOD *default_CONF_method = NULL;
- /* Init a 'CONF' structure from an old LHASH */
- void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash)
- {
- if (default_CONF_method == NULL)
- default_CONF_method = NCONF_default();
- default_CONF_method->init(conf);
- conf->data = hash;
- }
- /*
- * The following section contains the "CONF classic" functions, rewritten in
- * terms of the new CONF interface.
- */
- int CONF_set_default_method(CONF_METHOD *meth)
- {
- default_CONF_method = meth;
- return 1;
- }
- LHASH_OF(CONF_VALUE) *CONF_load(LHASH_OF(CONF_VALUE) *conf, const char *file,
- long *eline)
- {
- LHASH_OF(CONF_VALUE) *ltmp;
- BIO *in = NULL;
- #ifdef OPENSSL_SYS_VMS
- in = BIO_new_file(file, "r");
- #else
- in = BIO_new_file(file, "rb");
- #endif
- if (in == NULL) {
- ERR_raise(ERR_LIB_CONF, ERR_R_SYS_LIB);
- return NULL;
- }
- ltmp = CONF_load_bio(conf, in, eline);
- BIO_free(in);
- return ltmp;
- }
- #ifndef OPENSSL_NO_STDIO
- LHASH_OF(CONF_VALUE) *CONF_load_fp(LHASH_OF(CONF_VALUE) *conf, FILE *fp,
- long *eline)
- {
- BIO *btmp;
- LHASH_OF(CONF_VALUE) *ltmp;
- if ((btmp = BIO_new_fp(fp, BIO_NOCLOSE)) == NULL) {
- ERR_raise(ERR_LIB_CONF, ERR_R_BUF_LIB);
- return NULL;
- }
- ltmp = CONF_load_bio(conf, btmp, eline);
- BIO_free(btmp);
- return ltmp;
- }
- #endif
- LHASH_OF(CONF_VALUE) *CONF_load_bio(LHASH_OF(CONF_VALUE) *conf, BIO *bp,
- long *eline)
- {
- CONF ctmp;
- int ret;
- CONF_set_nconf(&ctmp, conf);
- ret = NCONF_load_bio(&ctmp, bp, eline);
- if (ret)
- return ctmp.data;
- return NULL;
- }
- STACK_OF(CONF_VALUE) *CONF_get_section(LHASH_OF(CONF_VALUE) *conf,
- const char *section)
- {
- if (conf == NULL) {
- return NULL;
- } else {
- CONF ctmp;
- CONF_set_nconf(&ctmp, conf);
- return NCONF_get_section(&ctmp, section);
- }
- }
- char *CONF_get_string(LHASH_OF(CONF_VALUE) *conf, const char *group,
- const char *name)
- {
- if (conf == NULL) {
- return NCONF_get_string(NULL, group, name);
- } else {
- CONF ctmp;
- CONF_set_nconf(&ctmp, conf);
- return NCONF_get_string(&ctmp, group, name);
- }
- }
- long CONF_get_number(LHASH_OF(CONF_VALUE) *conf, const char *group,
- const char *name)
- {
- int status;
- long result = 0;
- ERR_set_mark();
- if (conf == NULL) {
- status = NCONF_get_number_e(NULL, group, name, &result);
- } else {
- CONF ctmp;
- CONF_set_nconf(&ctmp, conf);
- status = NCONF_get_number_e(&ctmp, group, name, &result);
- }
- ERR_pop_to_mark();
- return status == 0 ? 0L : result;
- }
- void CONF_free(LHASH_OF(CONF_VALUE) *conf)
- {
- CONF ctmp;
- CONF_set_nconf(&ctmp, conf);
- NCONF_free_data(&ctmp);
- }
- #ifndef OPENSSL_NO_STDIO
- int CONF_dump_fp(LHASH_OF(CONF_VALUE) *conf, FILE *out)
- {
- BIO *btmp;
- int ret;
- if ((btmp = BIO_new_fp(out, BIO_NOCLOSE)) == NULL) {
- ERR_raise(ERR_LIB_CONF, ERR_R_BUF_LIB);
- return 0;
- }
- ret = CONF_dump_bio(conf, btmp);
- BIO_free(btmp);
- return ret;
- }
- #endif
- int CONF_dump_bio(LHASH_OF(CONF_VALUE) *conf, BIO *out)
- {
- CONF ctmp;
- CONF_set_nconf(&ctmp, conf);
- return NCONF_dump_bio(&ctmp, out);
- }
- /*
- * The following section contains the "New CONF" functions. They are
- * completely centralised around a new CONF structure that may contain
- * basically anything, but at least a method pointer and a table of data.
- * These functions are also written in terms of the bridge functions used by
- * the "CONF classic" functions, for consistency.
- */
- CONF *NCONF_new_ex(OSSL_LIB_CTX *libctx, CONF_METHOD *meth)
- {
- CONF *ret;
- if (meth == NULL)
- meth = NCONF_default();
- ret = meth->create(meth);
- if (ret == NULL) {
- ERR_raise(ERR_LIB_CONF, ERR_R_CONF_LIB);
- return NULL;
- }
- ret->libctx = libctx;
- return ret;
- }
- CONF *NCONF_new(CONF_METHOD *meth)
- {
- return NCONF_new_ex(NULL, meth);
- }
- void NCONF_free(CONF *conf)
- {
- if (conf == NULL)
- return;
- conf->meth->destroy(conf);
- }
- void NCONF_free_data(CONF *conf)
- {
- if (conf == NULL)
- return;
- conf->meth->destroy_data(conf);
- }
- OSSL_LIB_CTX *NCONF_get0_libctx(const CONF *conf)
- {
- return conf->libctx;
- }
- typedef STACK_OF(OPENSSL_CSTRING) SECTION_NAMES;
- IMPLEMENT_LHASH_DOALL_ARG_CONST(CONF_VALUE, SECTION_NAMES);
- static void collect_section_name(const CONF_VALUE *v, SECTION_NAMES *names)
- {
- /* A section is a CONF_VALUE with name == NULL */
- if (v->name == NULL)
- sk_OPENSSL_CSTRING_push(names, v->section);
- }
- static int section_name_cmp(OPENSSL_CSTRING const *a, OPENSSL_CSTRING const *b)
- {
- return strcmp(*a, *b);
- }
- STACK_OF(OPENSSL_CSTRING) *NCONF_get_section_names(const CONF *cnf)
- {
- SECTION_NAMES *names;
- if ((names = sk_OPENSSL_CSTRING_new(section_name_cmp)) == NULL)
- return NULL;
- lh_CONF_VALUE_doall_SECTION_NAMES(cnf->data, collect_section_name, names);
- sk_OPENSSL_CSTRING_sort(names);
- return names;
- }
- int NCONF_load(CONF *conf, const char *file, long *eline)
- {
- if (conf == NULL) {
- ERR_raise(ERR_LIB_CONF, CONF_R_NO_CONF);
- return 0;
- }
- return conf->meth->load(conf, file, eline);
- }
- #ifndef OPENSSL_NO_STDIO
- int NCONF_load_fp(CONF *conf, FILE *fp, long *eline)
- {
- BIO *btmp;
- int ret;
- if ((btmp = BIO_new_fp(fp, BIO_NOCLOSE)) == NULL) {
- ERR_raise(ERR_LIB_CONF, ERR_R_BUF_LIB);
- return 0;
- }
- ret = NCONF_load_bio(conf, btmp, eline);
- BIO_free(btmp);
- return ret;
- }
- #endif
- int NCONF_load_bio(CONF *conf, BIO *bp, long *eline)
- {
- if (conf == NULL) {
- ERR_raise(ERR_LIB_CONF, CONF_R_NO_CONF);
- return 0;
- }
- return conf->meth->load_bio(conf, bp, eline);
- }
- STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf, const char *section)
- {
- if (conf == NULL) {
- ERR_raise(ERR_LIB_CONF, CONF_R_NO_CONF);
- return NULL;
- }
- if (section == NULL) {
- ERR_raise(ERR_LIB_CONF, CONF_R_NO_SECTION);
- return NULL;
- }
- return _CONF_get_section_values(conf, section);
- }
- char *NCONF_get_string(const CONF *conf, const char *group, const char *name)
- {
- char *s = _CONF_get_string(conf, group, name);
- /*
- * Since we may get a value from an environment variable even if conf is
- * NULL, let's check the value first
- */
- if (s)
- return s;
- if (conf == NULL) {
- ERR_raise(ERR_LIB_CONF, CONF_R_NO_CONF_OR_ENVIRONMENT_VARIABLE);
- return NULL;
- }
- ERR_raise_data(ERR_LIB_CONF, CONF_R_NO_VALUE,
- "group=%s name=%s", group, name);
- return NULL;
- }
- static int default_is_number(const CONF *conf, char c)
- {
- return ossl_isdigit(c);
- }
- static int default_to_int(const CONF *conf, char c)
- {
- return (int)(c - '0');
- }
- int NCONF_get_number_e(const CONF *conf, const char *group, const char *name,
- long *result)
- {
- char *str;
- long res;
- int (*is_number)(const CONF *, char) = &default_is_number;
- int (*to_int)(const CONF *, char) = &default_to_int;
- if (result == NULL) {
- ERR_raise(ERR_LIB_CONF, ERR_R_PASSED_NULL_PARAMETER);
- return 0;
- }
- str = NCONF_get_string(conf, group, name);
- if (str == NULL)
- return 0;
- if (conf != NULL) {
- if (conf->meth->is_number != NULL)
- is_number = conf->meth->is_number;
- if (conf->meth->to_int != NULL)
- to_int = conf->meth->to_int;
- }
- for (res = 0; is_number(conf, *str); str++) {
- const int d = to_int(conf, *str);
- if (res > (LONG_MAX - d) / 10L) {
- ERR_raise(ERR_LIB_CONF, CONF_R_NUMBER_TOO_LARGE);
- return 0;
- }
- res = res * 10 + d;
- }
- *result = res;
- return 1;
- }
- long _CONF_get_number(const CONF *conf, const char *section,
- const char *name)
- {
- int status;
- long result = 0;
- ERR_set_mark();
- status = NCONF_get_number_e(conf, section, name, &result);
- ERR_pop_to_mark();
- return status == 0 ? 0L : result;
- }
- #ifndef OPENSSL_NO_STDIO
- int NCONF_dump_fp(const CONF *conf, FILE *out)
- {
- BIO *btmp;
- int ret;
- if ((btmp = BIO_new_fp(out, BIO_NOCLOSE)) == NULL) {
- ERR_raise(ERR_LIB_CONF, ERR_R_BUF_LIB);
- return 0;
- }
- ret = NCONF_dump_bio(conf, btmp);
- BIO_free(btmp);
- return ret;
- }
- #endif
- int NCONF_dump_bio(const CONF *conf, BIO *out)
- {
- if (conf == NULL) {
- ERR_raise(ERR_LIB_CONF, CONF_R_NO_CONF);
- return 0;
- }
- return conf->meth->dump(conf, out);
- }
- /*
- * These routines call the C malloc/free, to avoid intermixing with
- * OpenSSL function pointers before the library is initialized.
- */
- OPENSSL_INIT_SETTINGS *OPENSSL_INIT_new(void)
- {
- OPENSSL_INIT_SETTINGS *ret = malloc(sizeof(*ret));
- if (ret == NULL)
- return NULL;
- memset(ret, 0, sizeof(*ret));
- ret->flags = DEFAULT_CONF_MFLAGS;
- return ret;
- }
- #ifndef OPENSSL_NO_STDIO
- int OPENSSL_INIT_set_config_filename(OPENSSL_INIT_SETTINGS *settings,
- const char *filename)
- {
- char *newfilename = NULL;
- if (filename != NULL) {
- newfilename = strdup(filename);
- if (newfilename == NULL)
- return 0;
- }
- free(settings->filename);
- settings->filename = newfilename;
- return 1;
- }
- void OPENSSL_INIT_set_config_file_flags(OPENSSL_INIT_SETTINGS *settings,
- unsigned long flags)
- {
- settings->flags = flags;
- }
- int OPENSSL_INIT_set_config_appname(OPENSSL_INIT_SETTINGS *settings,
- const char *appname)
- {
- char *newappname = NULL;
- if (appname != NULL) {
- newappname = strdup(appname);
- if (newappname == NULL)
- return 0;
- }
- free(settings->appname);
- settings->appname = newappname;
- return 1;
- }
- #endif
- void OPENSSL_INIT_free(OPENSSL_INIT_SETTINGS *settings)
- {
- free(settings->filename);
- free(settings->appname);
- free(settings);
- }
|