• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
3  * 1999.
4  */
5 /* ====================================================================
6  * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com). */
56 
57 // X509 v3 extension utilities
58 
59 #include <stdio.h>
60 
61 #include <openssl/bio.h>
62 #include <openssl/conf.h>
63 #include <openssl/mem.h>
64 #include <openssl/x509v3.h>
65 
66 // Extension printing routines
67 
68 static int unknown_ext_print(BIO *out, const X509_EXTENSION *ext,
69                              unsigned long flag, int indent, int supported);
70 
71 // Print out a name+value stack
72 
X509V3_EXT_val_prn(BIO * out,const STACK_OF (CONF_VALUE)* val,int indent,int ml)73 void X509V3_EXT_val_prn(BIO *out, const STACK_OF(CONF_VALUE) *val, int indent,
74                         int ml) {
75   if (!val) {
76     return;
77   }
78   if (!ml || !sk_CONF_VALUE_num(val)) {
79     BIO_printf(out, "%*s", indent, "");
80     if (!sk_CONF_VALUE_num(val)) {
81       BIO_puts(out, "<EMPTY>\n");
82     }
83   }
84   for (size_t i = 0; i < sk_CONF_VALUE_num(val); i++) {
85     if (ml) {
86       BIO_printf(out, "%*s", indent, "");
87     } else if (i > 0) {
88       BIO_printf(out, ", ");
89     }
90     const CONF_VALUE *nval = sk_CONF_VALUE_value(val, i);
91     if (!nval->name) {
92       BIO_puts(out, nval->value);
93     } else if (!nval->value) {
94       BIO_puts(out, nval->name);
95     } else {
96       BIO_printf(out, "%s:%s", nval->name, nval->value);
97     }
98     if (ml) {
99       BIO_puts(out, "\n");
100     }
101   }
102 }
103 
104 // Main routine: print out a general extension
105 
X509V3_EXT_print(BIO * out,const X509_EXTENSION * ext,unsigned long flag,int indent)106 int X509V3_EXT_print(BIO *out, const X509_EXTENSION *ext, unsigned long flag,
107                      int indent) {
108   const X509V3_EXT_METHOD *method = X509V3_EXT_get(ext);
109   if (method == NULL) {
110     return unknown_ext_print(out, ext, flag, indent, 0);
111   }
112   const ASN1_STRING *ext_data = X509_EXTENSION_get_data(ext);
113   const unsigned char *p = ASN1_STRING_get0_data(ext_data);
114   void *ext_str = ASN1_item_d2i(NULL, &p, ASN1_STRING_length(ext_data),
115                                 ASN1_ITEM_ptr(method->it));
116   if (!ext_str) {
117     return unknown_ext_print(out, ext, flag, indent, 1);
118   }
119 
120   char *value = NULL;
121   STACK_OF(CONF_VALUE) *nval = NULL;
122   int ok = 0;
123   if (method->i2s) {
124     if (!(value = method->i2s(method, ext_str))) {
125       goto err;
126     }
127     BIO_printf(out, "%*s%s", indent, "", value);
128   } else if (method->i2v) {
129     if (!(nval = method->i2v(method, ext_str, NULL))) {
130       goto err;
131     }
132     X509V3_EXT_val_prn(out, nval, indent,
133                        method->ext_flags & X509V3_EXT_MULTILINE);
134   } else if (method->i2r) {
135     if (!method->i2r(method, ext_str, out, indent)) {
136       goto err;
137     }
138   } else {
139     OPENSSL_PUT_ERROR(X509V3, X509V3_R_OPERATION_NOT_DEFINED);
140     goto err;
141   }
142 
143   ok = 1;
144 
145 err:
146   sk_CONF_VALUE_pop_free(nval, X509V3_conf_free);
147   OPENSSL_free(value);
148   ASN1_item_free(ext_str, ASN1_ITEM_ptr(method->it));
149   return ok;
150 }
151 
X509V3_extensions_print(BIO * bp,const char * title,const STACK_OF (X509_EXTENSION)* exts,unsigned long flag,int indent)152 int X509V3_extensions_print(BIO *bp, const char *title,
153                             const STACK_OF(X509_EXTENSION) *exts,
154                             unsigned long flag, int indent) {
155   size_t i;
156   int j;
157 
158   if (sk_X509_EXTENSION_num(exts) <= 0) {
159     return 1;
160   }
161 
162   if (title) {
163     BIO_printf(bp, "%*s%s:\n", indent, "", title);
164     indent += 4;
165   }
166 
167   for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
168     const X509_EXTENSION *ex = sk_X509_EXTENSION_value(exts, i);
169     if (indent && BIO_printf(bp, "%*s", indent, "") <= 0) {
170       return 0;
171     }
172     const ASN1_OBJECT *obj = X509_EXTENSION_get_object(ex);
173     i2a_ASN1_OBJECT(bp, obj);
174     j = X509_EXTENSION_get_critical(ex);
175     if (BIO_printf(bp, ": %s\n", j ? "critical" : "") <= 0) {
176       return 0;
177     }
178     if (!X509V3_EXT_print(bp, ex, flag, indent + 4)) {
179       BIO_printf(bp, "%*s", indent + 4, "");
180       ASN1_STRING_print(bp, X509_EXTENSION_get_data(ex));
181     }
182     if (BIO_write(bp, "\n", 1) <= 0) {
183       return 0;
184     }
185   }
186   return 1;
187 }
188 
unknown_ext_print(BIO * out,const X509_EXTENSION * ext,unsigned long flag,int indent,int supported)189 static int unknown_ext_print(BIO *out, const X509_EXTENSION *ext,
190                              unsigned long flag, int indent, int supported) {
191   switch (flag & X509V3_EXT_UNKNOWN_MASK) {
192     case X509V3_EXT_DEFAULT:
193       return 0;
194 
195     case X509V3_EXT_ERROR_UNKNOWN:
196       if (supported) {
197         BIO_printf(out, "%*s<Parse Error>", indent, "");
198       } else {
199         BIO_printf(out, "%*s<Not Supported>", indent, "");
200       }
201       return 1;
202 
203     case X509V3_EXT_PARSE_UNKNOWN:
204     case X509V3_EXT_DUMP_UNKNOWN: {
205       const ASN1_STRING *data = X509_EXTENSION_get_data(ext);
206       return BIO_hexdump(out, ASN1_STRING_get0_data(data),
207                          ASN1_STRING_length(data), indent);
208     }
209 
210     default:
211       return 1;
212   }
213 }
214 
X509V3_EXT_print_fp(FILE * fp,const X509_EXTENSION * ext,int flag,int indent)215 int X509V3_EXT_print_fp(FILE *fp, const X509_EXTENSION *ext, int flag,
216                         int indent) {
217   BIO *bio_tmp;
218   int ret;
219   if (!(bio_tmp = BIO_new_fp(fp, BIO_NOCLOSE))) {
220     return 0;
221   }
222   ret = X509V3_EXT_print(bio_tmp, ext, flag, indent);
223   BIO_free(bio_tmp);
224   return ret;
225 }
226