1 | /*
|
---|
2 | * Generated by util/mkerr.pl DO NOT EDIT
|
---|
3 | * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
|
---|
4 | *
|
---|
5 | * Licensed under the Apache License 2.0 (the "License"). You may not use
|
---|
6 | * this file except in compliance with the License. You can obtain a copy
|
---|
7 | * in the file LICENSE in the source distribution or at
|
---|
8 | * https://www.openssl.org/source/license.html
|
---|
9 | */
|
---|
10 |
|
---|
11 | #include <openssl/err.h>
|
---|
12 | #include <openssl/conferr.h>
|
---|
13 | #include "crypto/conferr.h"
|
---|
14 |
|
---|
15 | #ifndef OPENSSL_NO_ERR
|
---|
16 |
|
---|
17 | static const ERR_STRING_DATA CONF_str_reasons[] = {
|
---|
18 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_ERROR_LOADING_DSO), "error loading dso"},
|
---|
19 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_INVALID_PRAGMA), "invalid pragma"},
|
---|
20 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_LIST_CANNOT_BE_NULL),
|
---|
21 | "list cannot be null"},
|
---|
22 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_MANDATORY_BRACES_IN_VARIABLE_EXPANSION),
|
---|
23 | "mandatory braces in variable expansion"},
|
---|
24 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_MISSING_CLOSE_SQUARE_BRACKET),
|
---|
25 | "missing close square bracket"},
|
---|
26 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_MISSING_EQUAL_SIGN),
|
---|
27 | "missing equal sign"},
|
---|
28 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_MISSING_INIT_FUNCTION),
|
---|
29 | "missing init function"},
|
---|
30 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_MODULE_INITIALIZATION_ERROR),
|
---|
31 | "module initialization error"},
|
---|
32 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_NO_CLOSE_BRACE), "no close brace"},
|
---|
33 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_NO_CONF), "no conf"},
|
---|
34 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_NO_CONF_OR_ENVIRONMENT_VARIABLE),
|
---|
35 | "no conf or environment variable"},
|
---|
36 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_NO_SECTION), "no section"},
|
---|
37 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_NO_SUCH_FILE), "no such file"},
|
---|
38 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_NO_VALUE), "no value"},
|
---|
39 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_NUMBER_TOO_LARGE), "number too large"},
|
---|
40 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_OPENSSL_CONF_REFERENCES_MISSING_SECTION),
|
---|
41 | "openssl conf references missing section"},
|
---|
42 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_RECURSIVE_DIRECTORY_INCLUDE),
|
---|
43 | "recursive directory include"},
|
---|
44 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_RELATIVE_PATH), "relative path"},
|
---|
45 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_SSL_COMMAND_SECTION_EMPTY),
|
---|
46 | "ssl command section empty"},
|
---|
47 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_SSL_COMMAND_SECTION_NOT_FOUND),
|
---|
48 | "ssl command section not found"},
|
---|
49 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_SSL_SECTION_EMPTY), "ssl section empty"},
|
---|
50 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_SSL_SECTION_NOT_FOUND),
|
---|
51 | "ssl section not found"},
|
---|
52 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_UNABLE_TO_CREATE_NEW_SECTION),
|
---|
53 | "unable to create new section"},
|
---|
54 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_UNKNOWN_MODULE_NAME),
|
---|
55 | "unknown module name"},
|
---|
56 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_VARIABLE_EXPANSION_TOO_LONG),
|
---|
57 | "variable expansion too long"},
|
---|
58 | {ERR_PACK(ERR_LIB_CONF, 0, CONF_R_VARIABLE_HAS_NO_VALUE),
|
---|
59 | "variable has no value"},
|
---|
60 | {0, NULL}
|
---|
61 | };
|
---|
62 |
|
---|
63 | #endif
|
---|
64 |
|
---|
65 | int ossl_err_load_CONF_strings(void)
|
---|
66 | {
|
---|
67 | #ifndef OPENSSL_NO_ERR
|
---|
68 | if (ERR_reason_error_string(CONF_str_reasons[0].error) == NULL)
|
---|
69 | ERR_load_strings_const(CONF_str_reasons);
|
---|
70 | #endif
|
---|
71 | return 1;
|
---|
72 | }
|
---|