Added code to GENERAL_NAME with support for more options and preliminary
[openssl.git] / crypto / x509v3 / v3err.c
1 /* lib/x509v3/x509v3_err.c */
2 /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  * 
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  * 
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  * 
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from 
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  * 
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  * 
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58 #include <stdio.h>
59 #include "err.h"
60 #include "x509v3.h"
61
62 /* BEGIN ERROR CODES */
63 #ifndef NO_ERR
64 static ERR_STRING_DATA X509V3_str_functs[]=
65         {
66 {ERR_PACK(0,X509V3_F_HEX_TO_STRING,0),  "hex_to_string"},
67 {ERR_PACK(0,X509V3_F_S2I_ASN1_IA5STRING,0),     "S2I_ASN1_IA5STRING"},
68 {ERR_PACK(0,X509V3_F_S2I_ASN1_OCTET_STRING,0),  "s2i_ASN1_OCTET_STRING"},
69 {ERR_PACK(0,X509V3_F_S2I_ASN1_SKEY_ID,0),       "S2I_ASN1_SKEY_ID"},
70 {ERR_PACK(0,X509V3_F_S2I_S2I_SKEY_ID,0),        "S2I_S2I_SKEY_ID"},
71 {ERR_PACK(0,X509V3_F_STRING_TO_HEX,0),  "string_to_hex"},
72 {ERR_PACK(0,X509V3_F_V2I_ASN1_BIT_STRING,0),    "V2I_ASN1_BIT_STRING"},
73 {ERR_PACK(0,X509V3_F_V2I_BASIC_CONSTRAINTS,0),  "V2I_BASIC_CONSTRAINTS"},
74 {ERR_PACK(0,X509V3_F_V2I_EXT_KU,0),     "V2I_EXT_KU"},
75 {ERR_PACK(0,X509V3_F_V2I_GENERAL_NAME,0),       "v2i_GENERAL_NAME"},
76 {ERR_PACK(0,X509V3_F_V2I_GENERAL_NAMES,0),      "v2i_GENERAL_NAMES"},
77 {ERR_PACK(0,X509V3_F_V3_GENERIC_EXTENSION,0),   "V3_GENERIC_EXTENSION"},
78 {ERR_PACK(0,X509V3_F_X509V3_ADD_EXT,0), "X509V3_ADD_EXT"},
79 {ERR_PACK(0,X509V3_F_X509V3_ADD_VALUE,0),       "X509V3_add_value"},
80 {ERR_PACK(0,X509V3_F_X509V3_EXT_ADD_ALIAS,0),   "X509V3_EXT_add_alias"},
81 {ERR_PACK(0,X509V3_F_X509V3_EXT_CONF,0),        "X509V3_EXT_conf"},
82 {ERR_PACK(0,X509V3_F_X509V3_GET_VALUE_INT,0),   "X509V3_get_value_int"},
83 {ERR_PACK(0,X509V3_F_X509V3_PARSE_LIST,0),      "X509V3_parse_list"},
84 {ERR_PACK(0,X509V3_F_X509V3_VALUE_GET_BOOL,0),  "X509V3_VALUE_GET_BOOL"},
85 {0,NULL},
86         };
87
88 static ERR_STRING_DATA X509V3_str_reasons[]=
89         {
90 {X509V3_R_BAD_IP_ADDRESS                 ,"bad ip address"},
91 {X509V3_R_BAD_OBJECT                     ,"bad object"},
92 {X509V3_R_BN_DEC2BN_ERROR                ,"bn dec2bn error"},
93 {X509V3_R_BN_TO_ASN1_INTEGER_ERROR       ,"bn to asn1 integer error"},
94 {X509V3_R_EXTENSION_NAME_ERROR           ,"extension name error"},
95 {X509V3_R_EXTENSION_NOT_FOUND            ,"extension not found"},
96 {X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED,"extension setting not supported"},
97 {X509V3_R_EXTENSION_VALUE_ERROR          ,"extension value error"},
98 {X509V3_R_ILLEGAL_HEX_DIGIT              ,"illegal hex digit"},
99 {X509V3_R_INVALID_BOOLEAN_STRING         ,"invalid boolean string"},
100 {X509V3_R_INVALID_EXTENSION_STRING       ,"invalid extension string"},
101 {X509V3_R_INVALID_NAME                   ,"invalid name"},
102 {X509V3_R_INVALID_NULL_ARGUMENT          ,"invalid null argument"},
103 {X509V3_R_INVALID_NULL_NAME              ,"invalid null name"},
104 {X509V3_R_INVALID_NULL_VALUE             ,"invalid null value"},
105 {X509V3_R_INVALID_OBJECT_IDENTIFIER      ,"invalid object identifier"},
106 {X509V3_R_NO_PUBLIC_KEY                  ,"no public key"},
107 {X509V3_R_ODD_NUMBER_OF_DIGITS           ,"odd number of digits"},
108 {X509V3_R_UNKNOWN_BIT_STRING_ARGUMENT    ,"unknown bit string argument"},
109 {X509V3_R_UNSUPPORTED_OPTION             ,"unsupported option"},
110 {0,NULL},
111         };
112
113 #endif
114
115 void ERR_load_X509V3_strings()
116         {
117         static int init=1;
118
119         if (init)
120                 {
121                 init=0;
122 #ifndef NO_ERR
123                 ERR_load_strings(ERR_LIB_X509V3,X509V3_str_functs);
124                 ERR_load_strings(ERR_LIB_X509V3,X509V3_str_reasons);
125 #endif
126
127                 }
128         }