]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/openssl/conf.h.in
Add NCONF_get0_libctx()
[thirdparty/openssl.git] / include / openssl / conf.h.in
CommitLineData
21dcbebc 1/*
e74e562f
MC
2 * {- join("\n * ", @autowarntext) -}
3 *
aff636a4 4 * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
d02b48c6 5 *
48f4ad77 6 * Licensed under the Apache License 2.0 (the "License"). You may not use
21dcbebc
RS
7 * this file except in compliance with the License. You can obtain a copy
8 * in the file LICENSE in the source distribution or at
9 * https://www.openssl.org/source/license.html
d02b48c6
RE
10 */
11
e74e562f 12{-
2ca697ce 13use OpenSSL::stackhash qw(generate_stack_macros generate_lhash_macros);
e74e562f
MC
14-}
15
ae4186b0
DMSP
16#ifndef OPENSSL_CONF_H
17# define OPENSSL_CONF_H
d86167ec
DMSP
18# pragma once
19
20# include <openssl/macros.h>
936c2b9e 21# ifndef OPENSSL_NO_DEPRECATED_3_0
d86167ec
DMSP
22# define HEADER_CONF_H
23# endif
d02b48c6 24
0f113f3e
MC
25# include <openssl/bio.h>
26# include <openssl/lhash.h>
af3e5e1b 27# include <openssl/safestack.h>
0f113f3e 28# include <openssl/e_os2.h>
50cd4768 29# include <openssl/types.h>
52df25cf 30# include <openssl/conferr.h>
9ea1b878 31
82271cee
RL
32#ifdef __cplusplus
33extern "C" {
34#endif
35
0f113f3e
MC
36typedef struct {
37 char *section;
38 char *name;
39 char *value;
40} CONF_VALUE;
d02b48c6 41
e74e562f 42{-
2ca697ce
MC
43 generate_stack_macros("CONF_VALUE")
44 .generate_lhash_macros("CONF_VALUE");
e74e562f 45-}
852c2ed2 46
d86b6915 47struct conf_st;
d86b6915
RL
48struct conf_method_st;
49typedef struct conf_method_st CONF_METHOD;
50
ff234c68
RS
51# ifndef OPENSSL_NO_DEPRECATED_3_0
52# include <openssl/conftypes.h>
53# endif
d86b6915 54
bc37d996 55/* Module definitions */
bc37d996
DSH
56typedef struct conf_imodule_st CONF_IMODULE;
57typedef struct conf_module_st CONF_MODULE;
58
01659135 59STACK_OF(CONF_MODULE);
852c2ed2 60STACK_OF(CONF_IMODULE);
de121164 61
bc37d996 62/* DSO module function typedefs */
0f113f3e
MC
63typedef int conf_init_func (CONF_IMODULE *md, const CONF *cnf);
64typedef void conf_finish_func (CONF_IMODULE *md);
bc37d996 65
0f113f3e
MC
66# define CONF_MFLAGS_IGNORE_ERRORS 0x1
67# define CONF_MFLAGS_IGNORE_RETURN_CODES 0x2
68# define CONF_MFLAGS_SILENT 0x4
69# define CONF_MFLAGS_NO_DSO 0x8
70# define CONF_MFLAGS_IGNORE_MISSING_FILE 0x10
71# define CONF_MFLAGS_DEFAULT_SECTION 0x20
bc37d996 72
d86b6915 73int CONF_set_default_method(CONF_METHOD *meth);
0f113f3e
MC
74void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash);
75LHASH_OF(CONF_VALUE) *CONF_load(LHASH_OF(CONF_VALUE) *conf, const char *file,
76 long *eline);
77# ifndef OPENSSL_NO_STDIO
3c1d6bbc 78LHASH_OF(CONF_VALUE) *CONF_load_fp(LHASH_OF(CONF_VALUE) *conf, FILE *fp,
0f113f3e
MC
79 long *eline);
80# endif
81LHASH_OF(CONF_VALUE) *CONF_load_bio(LHASH_OF(CONF_VALUE) *conf, BIO *bp,
82 long *eline);
3c1d6bbc 83STACK_OF(CONF_VALUE) *CONF_get_section(LHASH_OF(CONF_VALUE) *conf,
0f113f3e
MC
84 const char *section);
85char *CONF_get_string(LHASH_OF(CONF_VALUE) *conf, const char *group,
86 const char *name);
87long CONF_get_number(LHASH_OF(CONF_VALUE) *conf, const char *group,
88 const char *name);
3c1d6bbc 89void CONF_free(LHASH_OF(CONF_VALUE) *conf);
984d6c60 90#ifndef OPENSSL_NO_STDIO
3c1d6bbc 91int CONF_dump_fp(LHASH_OF(CONF_VALUE) *conf, FILE *out);
984d6c60 92#endif
3c1d6bbc 93int CONF_dump_bio(LHASH_OF(CONF_VALUE) *conf, BIO *out);
7f7c856c
RL
94#ifndef OPENSSL_NO_DEPRECATED_1_1_0
95OSSL_DEPRECATEDIN_1_1_0 void OPENSSL_config(const char *config_name);
96#endif
7253fd55 97
00db8c60 98#ifndef OPENSSL_NO_DEPRECATED_1_1_0
f672aee4
RS
99# define OPENSSL_no_config() \
100 OPENSSL_init_crypto(OPENSSL_INIT_NO_LOAD_CONFIG, NULL)
101#endif
cca28b29 102
0f113f3e
MC
103/*
104 * New conf code. The semantics are different from the functions above. If
105 * that wasn't the case, the above functions would have been replaced
106 */
d86b6915 107
b4250010 108CONF *NCONF_new_ex(OSSL_LIB_CTX *libctx, CONF_METHOD *meth);
6b750b89 109OSSL_LIB_CTX *NCONF_get0_libctx(CONF *conf);
d86b6915 110CONF *NCONF_new(CONF_METHOD *meth);
40889b9c 111CONF_METHOD *NCONF_default(void);
7f7c856c
RL
112#ifndef OPENSSL_NO_DEPRECATED_3_0
113OSSL_DEPRECATEDIN_3_0 CONF_METHOD *NCONF_WIN32(void);
114#endif
d86b6915
RL
115void NCONF_free(CONF *conf);
116void NCONF_free_data(CONF *conf);
117
0f113f3e
MC
118int NCONF_load(CONF *conf, const char *file, long *eline);
119# ifndef OPENSSL_NO_STDIO
120int NCONF_load_fp(CONF *conf, FILE *fp, long *eline);
121# endif
122int NCONF_load_bio(CONF *conf, BIO *bp, long *eline);
123STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf,
124 const char *section);
125char *NCONF_get_string(const CONF *conf, const char *group, const char *name);
126int NCONF_get_number_e(const CONF *conf, const char *group, const char *name,
127 long *result);
984d6c60 128#ifndef OPENSSL_NO_STDIO
9dd5ae65 129int NCONF_dump_fp(const CONF *conf, FILE *out);
984d6c60 130#endif
9dd5ae65 131int NCONF_dump_bio(const CONF *conf, BIO *out);
d86b6915 132
1a5adcfb 133#define NCONF_get_number(c,g,n,r) NCONF_get_number_e(c,g,n,r)
0f113f3e 134
bc37d996
DSH
135/* Module functions */
136
9dd5ae65 137int CONF_modules_load(const CONF *cnf, const char *appname,
0f113f3e 138 unsigned long flags);
b4250010 139int CONF_modules_load_file_ex(OSSL_LIB_CTX *libctx, const char *filename,
d8652be0 140 const char *appname, unsigned long flags);
9dd5ae65 141int CONF_modules_load_file(const char *filename, const char *appname,
0f113f3e 142 unsigned long flags);
bc37d996
DSH
143void CONF_modules_unload(int all);
144void CONF_modules_finish(void);
00db8c60 145#ifndef OPENSSL_NO_DEPRECATED_1_1_0
6457615a 146# define CONF_modules_free() while(0) continue
cbf6959f 147#endif
cca28b29 148int CONF_module_add(const char *name, conf_init_func *ifunc,
0f113f3e 149 conf_finish_func *ffunc);
bc37d996 150
9dd5ae65
BL
151const char *CONF_imodule_get_name(const CONF_IMODULE *md);
152const char *CONF_imodule_get_value(const CONF_IMODULE *md);
153void *CONF_imodule_get_usr_data(const CONF_IMODULE *md);
bc37d996 154void CONF_imodule_set_usr_data(CONF_IMODULE *md, void *usr_data);
9dd5ae65
BL
155CONF_MODULE *CONF_imodule_get_module(const CONF_IMODULE *md);
156unsigned long CONF_imodule_get_flags(const CONF_IMODULE *md);
bc37d996
DSH
157void CONF_imodule_set_flags(CONF_IMODULE *md, unsigned long flags);
158void *CONF_module_get_usr_data(CONF_MODULE *pmod);
159void CONF_module_set_usr_data(CONF_MODULE *pmod, void *usr_data);
ba404b5e 160
c9501c22
DSH
161char *CONF_get1_default_config_file(void);
162
f78d4a35 163int CONF_parse_list(const char *list, int sep, int nospc,
0f113f3e
MC
164 int (*list_cb) (const char *elem, int len, void *usr),
165 void *arg);
df5eaa8a 166
3647bee2
DSH
167void OPENSSL_load_builtin_modules(void);
168
957b6db3 169
0cd0a820 170# ifdef __cplusplus
d02b48c6 171}
0cd0a820 172# endif
d02b48c6 173#endif