make update
[openssl.git] / crypto / ts / ts_rsp_print.c
1 /* crypto/ts/ts_resp_print.c */
2 /*
3  * Written by Zoltan Glozik (zglozik@stones.com) for the OpenSSL project
4  * 2002.
5  */
6 /* ====================================================================
7  * Copyright (c) 2006 The OpenSSL Project.  All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  *
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in
18  *    the documentation and/or other materials provided with the
19  *    distribution.
20  *
21  * 3. All advertising materials mentioning features or use of this
22  *    software must display the following acknowledgment:
23  *    "This product includes software developed by the OpenSSL Project
24  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25  *
26  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27  *    endorse or promote products derived from this software without
28  *    prior written permission. For written permission, please contact
29  *    licensing@OpenSSL.org.
30  *
31  * 5. Products derived from this software may not be called "OpenSSL"
32  *    nor may "OpenSSL" appear in their names without prior written
33  *    permission of the OpenSSL Project.
34  *
35  * 6. Redistributions of any form whatsoever must retain the following
36  *    acknowledgment:
37  *    "This product includes software developed by the OpenSSL Project
38  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
44  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51  * OF THE POSSIBILITY OF SUCH DAMAGE.
52  * ====================================================================
53  *
54  * This product includes cryptographic software written by Eric Young
55  * (eay@cryptsoft.com).  This product includes software written by Tim
56  * Hudson (tjh@cryptsoft.com).
57  *
58  */
59
60 #include <stdio.h>
61 #include "internal/cryptlib.h"
62 #include <openssl/objects.h>
63 #include <openssl/bn.h>
64 #include <openssl/x509v3.h>
65 #include <openssl/ts.h>
66 #include "ts_lcl.h"
67
68 struct status_map_st {
69     int bit;
70     const char *text;
71 };
72
73 static int ts_status_map_print(BIO *bio, const struct status_map_st *a,
74                                const ASN1_BIT_STRING *v);
75 static int ts_ACCURACY_print_bio(BIO *bio, const TS_ACCURACY *accuracy);
76
77
78 int TS_RESP_print_bio(BIO *bio, TS_RESP *a)
79 {
80     BIO_printf(bio, "Status info:\n");
81     TS_STATUS_INFO_print_bio(bio, a->status_info);
82
83     BIO_printf(bio, "\nTST info:\n");
84     if (a->tst_info != NULL)
85         TS_TST_INFO_print_bio(bio, a->tst_info);
86     else
87         BIO_printf(bio, "Not included.\n");
88
89     return 1;
90 }
91
92 int TS_STATUS_INFO_print_bio(BIO *bio, TS_STATUS_INFO *a)
93 {
94     static const char *status_map[] = {
95         "Granted.",
96         "Granted with modifications.",
97         "Rejected.",
98         "Waiting.",
99         "Revocation warning.",
100         "Revoked."
101     };
102     static const struct status_map_st failure_map[] = {
103         {TS_INFO_BAD_ALG,
104          "unrecognized or unsupported algorithm identifier"},
105         {TS_INFO_BAD_REQUEST,
106          "transaction not permitted or supported"},
107         {TS_INFO_BAD_DATA_FORMAT,
108          "the data submitted has the wrong format"},
109         {TS_INFO_TIME_NOT_AVAILABLE,
110          "the TSA's time source is not available"},
111         {TS_INFO_UNACCEPTED_POLICY,
112          "the requested TSA policy is not supported by the TSA"},
113         {TS_INFO_UNACCEPTED_EXTENSION,
114          "the requested extension is not supported by the TSA"},
115         {TS_INFO_ADD_INFO_NOT_AVAILABLE,
116          "the additional information requested could not be understood "
117          "or is not available"},
118         {TS_INFO_SYSTEM_FAILURE,
119          "the request cannot be handled due to system failure"},
120         {-1, NULL}
121     };
122     long status;
123     int i, lines = 0;
124
125     BIO_printf(bio, "Status: ");
126     status = ASN1_INTEGER_get(a->status);
127     if (0 <= status && status < (long)OSSL_NELEM(status_map))
128         BIO_printf(bio, "%s\n", status_map[status]);
129     else
130         BIO_printf(bio, "out of bounds\n");
131
132     BIO_printf(bio, "Status description: ");
133     for (i = 0; i < sk_ASN1_UTF8STRING_num(a->text); ++i) {
134         if (i > 0)
135             BIO_puts(bio, "\t");
136         ASN1_STRING_print_ex(bio, sk_ASN1_UTF8STRING_value(a->text, i), 0);
137         BIO_puts(bio, "\n");
138     }
139     if (i == 0)
140         BIO_printf(bio, "unspecified\n");
141
142     BIO_printf(bio, "Failure info: ");
143     if (a->failure_info != NULL)
144         lines = ts_status_map_print(bio, failure_map, a->failure_info);
145     if (lines == 0)
146         BIO_printf(bio, "unspecified");
147     BIO_printf(bio, "\n");
148
149     return 1;
150 }
151
152 static int ts_status_map_print(BIO *bio, const struct status_map_st *a,
153                                const ASN1_BIT_STRING *v)
154 {
155     int lines = 0;
156
157     for (; a->bit >= 0; ++a) {
158         if (ASN1_BIT_STRING_get_bit(v, a->bit)) {
159             if (++lines > 1)
160                 BIO_printf(bio, ", ");
161             BIO_printf(bio, "%s", a->text);
162         }
163     }
164
165     return lines;
166 }
167
168 int TS_TST_INFO_print_bio(BIO *bio, TS_TST_INFO *a)
169 {
170     int v;
171
172     if (a == NULL)
173         return 0;
174
175     v = ASN1_INTEGER_get(a->version);
176     BIO_printf(bio, "Version: %d\n", v);
177
178     BIO_printf(bio, "Policy OID: ");
179     TS_OBJ_print_bio(bio, a->policy_id);
180
181     TS_MSG_IMPRINT_print_bio(bio, a->msg_imprint);
182
183     BIO_printf(bio, "Serial number: ");
184     if (a->serial == NULL)
185         BIO_printf(bio, "unspecified");
186     else
187         TS_ASN1_INTEGER_print_bio(bio, a->serial);
188     BIO_write(bio, "\n", 1);
189
190     BIO_printf(bio, "Time stamp: ");
191     ASN1_GENERALIZEDTIME_print(bio, a->time);
192     BIO_write(bio, "\n", 1);
193
194     BIO_printf(bio, "Accuracy: ");
195     if (a->accuracy == NULL)
196         BIO_printf(bio, "unspecified");
197     else
198         ts_ACCURACY_print_bio(bio, a->accuracy);
199     BIO_write(bio, "\n", 1);
200
201     BIO_printf(bio, "Ordering: %s\n", a->ordering ? "yes" : "no");
202
203     BIO_printf(bio, "Nonce: ");
204     if (a->nonce == NULL)
205         BIO_printf(bio, "unspecified");
206     else
207         TS_ASN1_INTEGER_print_bio(bio, a->nonce);
208     BIO_write(bio, "\n", 1);
209
210     BIO_printf(bio, "TSA: ");
211     if (a->tsa == NULL)
212         BIO_printf(bio, "unspecified");
213     else {
214         STACK_OF(CONF_VALUE) *nval;
215         if ((nval = i2v_GENERAL_NAME(NULL, a->tsa, NULL)))
216             X509V3_EXT_val_prn(bio, nval, 0, 0);
217         sk_CONF_VALUE_pop_free(nval, X509V3_conf_free);
218     }
219     BIO_write(bio, "\n", 1);
220
221     TS_ext_print_bio(bio, a->extensions);
222
223     return 1;
224 }
225
226 static int ts_ACCURACY_print_bio(BIO *bio, const TS_ACCURACY *a)
227 {
228     if (a->seconds != NULL)
229         TS_ASN1_INTEGER_print_bio(bio, a->seconds);
230     else
231         BIO_printf(bio, "unspecified");
232     BIO_printf(bio, " seconds, ");
233     if (a->millis != NULL)
234         TS_ASN1_INTEGER_print_bio(bio, a->millis);
235     else
236         BIO_printf(bio, "unspecified");
237     BIO_printf(bio, " millis, ");
238     if (a->micros != NULL)
239         TS_ASN1_INTEGER_print_bio(bio, a->micros);
240     else
241         BIO_printf(bio, "unspecified");
242     BIO_printf(bio, " micros");
243
244     return 1;
245 }