freebsd-nq/crypto/ts/ts_rsp_print.c

196 lines
5.4 KiB
C
Raw Normal View History

2015-03-20 15:28:40 +00:00
/*
2018-09-13 19:18:07 +00:00
* Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved.
*
2018-09-13 19:18:07 +00:00
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
#include <stdio.h>
2018-09-13 19:18:07 +00:00
#include "internal/cryptlib.h"
#include <openssl/objects.h>
#include <openssl/bn.h>
#include <openssl/x509v3.h>
2018-09-13 19:18:07 +00:00
#include <openssl/ts.h>
2020-03-17 21:27:57 +00:00
#include "ts_local.h"
2015-03-20 15:28:40 +00:00
struct status_map_st {
int bit;
const char *text;
};
2018-09-13 19:18:07 +00:00
static int ts_status_map_print(BIO *bio, const struct status_map_st *a,
const ASN1_BIT_STRING *v);
static int ts_ACCURACY_print_bio(BIO *bio, const TS_ACCURACY *accuracy);
int TS_RESP_print_bio(BIO *bio, TS_RESP *a)
2015-03-20 15:28:40 +00:00
{
BIO_printf(bio, "Status info:\n");
2018-09-13 19:18:07 +00:00
TS_STATUS_INFO_print_bio(bio, a->status_info);
2015-03-20 15:28:40 +00:00
BIO_printf(bio, "\nTST info:\n");
2018-09-13 19:18:07 +00:00
if (a->tst_info != NULL)
TS_TST_INFO_print_bio(bio, a->tst_info);
2015-03-20 15:28:40 +00:00
else
BIO_printf(bio, "Not included.\n");
return 1;
}
int TS_STATUS_INFO_print_bio(BIO *bio, TS_STATUS_INFO *a)
2015-03-20 15:28:40 +00:00
{
static const char *status_map[] = {
"Granted.",
"Granted with modifications.",
"Rejected.",
"Waiting.",
"Revocation warning.",
"Revoked."
};
2018-09-13 19:18:07 +00:00
static const struct status_map_st failure_map[] = {
2015-03-20 15:28:40 +00:00
{TS_INFO_BAD_ALG,
"unrecognized or unsupported algorithm identifier"},
{TS_INFO_BAD_REQUEST,
"transaction not permitted or supported"},
{TS_INFO_BAD_DATA_FORMAT,
"the data submitted has the wrong format"},
{TS_INFO_TIME_NOT_AVAILABLE,
"the TSA's time source is not available"},
{TS_INFO_UNACCEPTED_POLICY,
"the requested TSA policy is not supported by the TSA"},
{TS_INFO_UNACCEPTED_EXTENSION,
"the requested extension is not supported by the TSA"},
{TS_INFO_ADD_INFO_NOT_AVAILABLE,
"the additional information requested could not be understood "
"or is not available"},
{TS_INFO_SYSTEM_FAILURE,
"the request cannot be handled due to system failure"},
{-1, NULL}
};
long status;
int i, lines = 0;
BIO_printf(bio, "Status: ");
status = ASN1_INTEGER_get(a->status);
2018-09-13 19:18:07 +00:00
if (0 <= status && status < (long)OSSL_NELEM(status_map))
2015-03-20 15:28:40 +00:00
BIO_printf(bio, "%s\n", status_map[status]);
else
BIO_printf(bio, "out of bounds\n");
BIO_printf(bio, "Status description: ");
for (i = 0; i < sk_ASN1_UTF8STRING_num(a->text); ++i) {
if (i > 0)
BIO_puts(bio, "\t");
ASN1_STRING_print_ex(bio, sk_ASN1_UTF8STRING_value(a->text, i), 0);
BIO_puts(bio, "\n");
}
if (i == 0)
BIO_printf(bio, "unspecified\n");
BIO_printf(bio, "Failure info: ");
if (a->failure_info != NULL)
2018-09-13 19:18:07 +00:00
lines = ts_status_map_print(bio, failure_map, a->failure_info);
2015-03-20 15:28:40 +00:00
if (lines == 0)
BIO_printf(bio, "unspecified");
BIO_printf(bio, "\n");
return 1;
}
2018-09-13 19:18:07 +00:00
static int ts_status_map_print(BIO *bio, const struct status_map_st *a,
const ASN1_BIT_STRING *v)
2015-03-20 15:28:40 +00:00
{
int lines = 0;
for (; a->bit >= 0; ++a) {
if (ASN1_BIT_STRING_get_bit(v, a->bit)) {
if (++lines > 1)
BIO_printf(bio, ", ");
BIO_printf(bio, "%s", a->text);
}
}
return lines;
}
int TS_TST_INFO_print_bio(BIO *bio, TS_TST_INFO *a)
2015-03-20 15:28:40 +00:00
{
int v;
if (a == NULL)
return 0;
2018-09-13 19:18:07 +00:00
v = ASN1_INTEGER_get(a->version);
2015-03-20 15:28:40 +00:00
BIO_printf(bio, "Version: %d\n", v);
BIO_printf(bio, "Policy OID: ");
2018-09-13 19:18:07 +00:00
TS_OBJ_print_bio(bio, a->policy_id);
2015-03-20 15:28:40 +00:00
2018-09-13 19:18:07 +00:00
TS_MSG_IMPRINT_print_bio(bio, a->msg_imprint);
2015-03-20 15:28:40 +00:00
BIO_printf(bio, "Serial number: ");
2018-09-13 19:18:07 +00:00
if (a->serial == NULL)
2015-03-20 15:28:40 +00:00
BIO_printf(bio, "unspecified");
else
2018-09-13 19:18:07 +00:00
TS_ASN1_INTEGER_print_bio(bio, a->serial);
2015-03-20 15:28:40 +00:00
BIO_write(bio, "\n", 1);
BIO_printf(bio, "Time stamp: ");
2018-09-13 19:18:07 +00:00
ASN1_GENERALIZEDTIME_print(bio, a->time);
2015-03-20 15:28:40 +00:00
BIO_write(bio, "\n", 1);
BIO_printf(bio, "Accuracy: ");
2018-09-13 19:18:07 +00:00
if (a->accuracy == NULL)
2015-03-20 15:28:40 +00:00
BIO_printf(bio, "unspecified");
else
2018-09-13 19:18:07 +00:00
ts_ACCURACY_print_bio(bio, a->accuracy);
2015-03-20 15:28:40 +00:00
BIO_write(bio, "\n", 1);
2018-09-13 19:18:07 +00:00
BIO_printf(bio, "Ordering: %s\n", a->ordering ? "yes" : "no");
2015-03-20 15:28:40 +00:00
BIO_printf(bio, "Nonce: ");
2018-09-13 19:18:07 +00:00
if (a->nonce == NULL)
2015-03-20 15:28:40 +00:00
BIO_printf(bio, "unspecified");
else
2018-09-13 19:18:07 +00:00
TS_ASN1_INTEGER_print_bio(bio, a->nonce);
2015-03-20 15:28:40 +00:00
BIO_write(bio, "\n", 1);
BIO_printf(bio, "TSA: ");
2018-09-13 19:18:07 +00:00
if (a->tsa == NULL)
2015-03-20 15:28:40 +00:00
BIO_printf(bio, "unspecified");
else {
STACK_OF(CONF_VALUE) *nval;
2018-09-13 19:18:07 +00:00
if ((nval = i2v_GENERAL_NAME(NULL, a->tsa, NULL)))
2015-03-20 15:28:40 +00:00
X509V3_EXT_val_prn(bio, nval, 0, 0);
sk_CONF_VALUE_pop_free(nval, X509V3_conf_free);
}
BIO_write(bio, "\n", 1);
2018-09-13 19:18:07 +00:00
TS_ext_print_bio(bio, a->extensions);
2015-03-20 15:28:40 +00:00
return 1;
}
2018-09-13 19:18:07 +00:00
static int ts_ACCURACY_print_bio(BIO *bio, const TS_ACCURACY *a)
2015-03-20 15:28:40 +00:00
{
2018-09-13 19:18:07 +00:00
if (a->seconds != NULL)
TS_ASN1_INTEGER_print_bio(bio, a->seconds);
2015-03-20 15:28:40 +00:00
else
BIO_printf(bio, "unspecified");
BIO_printf(bio, " seconds, ");
2018-09-13 19:18:07 +00:00
if (a->millis != NULL)
TS_ASN1_INTEGER_print_bio(bio, a->millis);
2015-03-20 15:28:40 +00:00
else
BIO_printf(bio, "unspecified");
BIO_printf(bio, " millis, ");
2018-09-13 19:18:07 +00:00
if (a->micros != NULL)
TS_ASN1_INTEGER_print_bio(bio, a->micros);
2015-03-20 15:28:40 +00:00
else
BIO_printf(bio, "unspecified");
BIO_printf(bio, " micros");
return 1;
}