iPXE
Macros | Functions | Variables
ocsp.c File Reference

Online Certificate Status Protocol. More...

#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <ipxe/asn1.h>
#include <ipxe/x509.h>
#include <ipxe/sha1.h>
#include <ipxe/base64.h>
#include <ipxe/uri.h>
#include <ipxe/ocsp.h>
#include <config/crypto.h>

Go to the source code of this file.

Macros

#define EACCES_CERT_STATUS   __einfo_error ( EINFO_EACCES_CERT_STATUS )
 
#define EINFO_EACCES_CERT_STATUS
 
#define EACCES_CERT_MISMATCH   __einfo_error ( EINFO_EACCES_CERT_MISMATCH )
 
#define EINFO_EACCES_CERT_MISMATCH
 
#define EACCES_NON_OCSP_SIGNING   __einfo_error ( EINFO_EACCES_NON_OCSP_SIGNING )
 
#define EINFO_EACCES_NON_OCSP_SIGNING
 
#define EACCES_STALE   __einfo_error ( EINFO_EACCES_STALE )
 
#define EINFO_EACCES_STALE
 
#define EACCES_NO_RESPONDER   __einfo_error ( EINFO_EACCES_NO_RESPONDER )
 
#define EINFO_EACCES_NO_RESPONDER
 
#define ENOTSUP_RESPONSE_TYPE   __einfo_error ( EINFO_ENOTSUP_RESPONSE_TYPE )
 
#define EINFO_ENOTSUP_RESPONSE_TYPE
 
#define ENOTSUP_RESPONDER_ID   __einfo_error ( EINFO_ENOTSUP_RESPONDER_ID )
 
#define EINFO_ENOTSUP_RESPONDER_ID
 
#define EPROTO_MALFORMED_REQUEST   __einfo_error ( EINFO_EPROTO_MALFORMED_REQUEST )
 
#define EINFO_EPROTO_MALFORMED_REQUEST
 
#define EPROTO_INTERNAL_ERROR   __einfo_error ( EINFO_EPROTO_INTERNAL_ERROR )
 
#define EINFO_EPROTO_INTERNAL_ERROR
 
#define EPROTO_TRY_LATER   __einfo_error ( EINFO_EPROTO_TRY_LATER )
 
#define EINFO_EPROTO_TRY_LATER
 
#define EPROTO_SIG_REQUIRED   __einfo_error ( EINFO_EPROTO_SIG_REQUIRED )
 
#define EINFO_EPROTO_SIG_REQUIRED
 
#define EPROTO_UNAUTHORIZED   __einfo_error ( EINFO_EPROTO_UNAUTHORIZED )
 
#define EINFO_EPROTO_UNAUTHORIZED
 
#define EPROTO_STATUS(status)
 
#define ocsp_digest_algorithm   sha1_algorithm
 OCSP digest algorithm. More...
 

Functions

 FILE_LICENCE (GPL2_OR_LATER)
 
static void ocsp_free (struct refcnt *refcnt)
 Free OCSP check. More...
 
static int ocsp_request (struct ocsp_check *ocsp)
 Build OCSP request. More...
 
static int ocsp_uri_string (struct ocsp_check *ocsp)
 Build OCSP URI string. More...
 
int ocsp_check (struct x509_certificate *cert, struct x509_certificate *issuer, struct ocsp_check **ocsp)
 Create OCSP check. More...
 
static int ocsp_parse_response_status (struct ocsp_check *ocsp, const struct asn1_cursor *raw)
 Parse OCSP response status. More...
 
static int ocsp_parse_response_type (struct ocsp_check *ocsp, const struct asn1_cursor *raw)
 Parse OCSP response type. More...
 
static int ocsp_compare_responder_name (struct ocsp_check *ocsp, struct x509_certificate *cert)
 Compare responder's certificate name. More...
 
static int ocsp_compare_responder_key_hash (struct ocsp_check *ocsp, struct x509_certificate *cert)
 Compare responder's certificate public key hash. More...
 
static int ocsp_parse_responder_id (struct ocsp_check *ocsp, const struct asn1_cursor *raw)
 Parse OCSP responder ID. More...
 
static int ocsp_parse_cert_id (struct ocsp_check *ocsp, const struct asn1_cursor *raw)
 Parse OCSP certificate ID. More...
 
static int ocsp_parse_responses (struct ocsp_check *ocsp, const struct asn1_cursor *raw)
 Parse OCSP responses. More...
 
static int ocsp_parse_tbs_response_data (struct ocsp_check *ocsp, const struct asn1_cursor *raw)
 Parse OCSP response data. More...
 
static int ocsp_parse_certs (struct ocsp_check *ocsp, const struct asn1_cursor *raw)
 Parse OCSP certificates. More...
 
static int ocsp_parse_basic_response (struct ocsp_check *ocsp, const struct asn1_cursor *raw)
 Parse OCSP basic response. More...
 
static int ocsp_parse_response_bytes (struct ocsp_check *ocsp, const struct asn1_cursor *raw)
 Parse OCSP response bytes. More...
 
static int ocsp_parse_response (struct ocsp_check *ocsp, const struct asn1_cursor *raw)
 Parse OCSP response. More...
 
int ocsp_response (struct ocsp_check *ocsp, const void *data, size_t len)
 Receive OCSP response. More...
 
static int ocsp_check_signature (struct ocsp_check *ocsp, struct x509_certificate *signer)
 Check OCSP response signature. More...
 
int ocsp_validate (struct ocsp_check *ocsp, time_t time)
 Validate OCSP response. More...
 

Variables

static const uint8_t ocsp_algorithm_id []
 OCSP digest algorithm identifier. More...
 
static const uint8_t oid_basic_response_type [] = { ASN1_OID_OCSP_BASIC }
 OCSP basic response type. More...
 
static struct asn1_cursor oid_basic_response_type_cursor
 OCSP basic response type cursor. More...
 

Detailed Description

Online Certificate Status Protocol.

Definition in file ocsp.c.

Macro Definition Documentation

◆ EACCES_CERT_STATUS

#define EACCES_CERT_STATUS   __einfo_error ( EINFO_EACCES_CERT_STATUS )

Definition at line 42 of file ocsp.c.

◆ EINFO_EACCES_CERT_STATUS

#define EINFO_EACCES_CERT_STATUS
Value:
"Certificate status not good" )
#define EINFO_EACCES
Definition: errno.h:299
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180

Definition at line 44 of file ocsp.c.

◆ EACCES_CERT_MISMATCH

#define EACCES_CERT_MISMATCH   __einfo_error ( EINFO_EACCES_CERT_MISMATCH )

Definition at line 47 of file ocsp.c.

◆ EINFO_EACCES_CERT_MISMATCH

#define EINFO_EACCES_CERT_MISMATCH
Value:
"Certificate ID mismatch" )
#define EINFO_EACCES
Definition: errno.h:299
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180

Definition at line 49 of file ocsp.c.

◆ EACCES_NON_OCSP_SIGNING

#define EACCES_NON_OCSP_SIGNING   __einfo_error ( EINFO_EACCES_NON_OCSP_SIGNING )

Definition at line 52 of file ocsp.c.

◆ EINFO_EACCES_NON_OCSP_SIGNING

#define EINFO_EACCES_NON_OCSP_SIGNING
Value:
"Not an OCSP signing certificate" )
#define EINFO_EACCES
Definition: errno.h:299
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180

Definition at line 54 of file ocsp.c.

◆ EACCES_STALE

#define EACCES_STALE   __einfo_error ( EINFO_EACCES_STALE )

Definition at line 57 of file ocsp.c.

◆ EINFO_EACCES_STALE

#define EINFO_EACCES_STALE
Value:
"Stale (or premature) OCSP repsonse" )
#define EINFO_EACCES
Definition: errno.h:299
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180

Definition at line 59 of file ocsp.c.

◆ EACCES_NO_RESPONDER

#define EACCES_NO_RESPONDER   __einfo_error ( EINFO_EACCES_NO_RESPONDER )

Definition at line 62 of file ocsp.c.

◆ EINFO_EACCES_NO_RESPONDER

#define EINFO_EACCES_NO_RESPONDER
Value:
"Missing OCSP responder certificate" )
#define EINFO_EACCES
Definition: errno.h:299
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180

Definition at line 64 of file ocsp.c.

◆ ENOTSUP_RESPONSE_TYPE

#define ENOTSUP_RESPONSE_TYPE   __einfo_error ( EINFO_ENOTSUP_RESPONSE_TYPE )

Definition at line 67 of file ocsp.c.

◆ EINFO_ENOTSUP_RESPONSE_TYPE

#define EINFO_ENOTSUP_RESPONSE_TYPE
Value:
"Unsupported OCSP response type" )
#define EINFO_ENOTSUP
Definition: errno.h:590
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180

Definition at line 69 of file ocsp.c.

◆ ENOTSUP_RESPONDER_ID

#define ENOTSUP_RESPONDER_ID   __einfo_error ( EINFO_ENOTSUP_RESPONDER_ID )

Definition at line 72 of file ocsp.c.

◆ EINFO_ENOTSUP_RESPONDER_ID

#define EINFO_ENOTSUP_RESPONDER_ID
Value:
"Unsupported OCSP responder ID" )
#define EINFO_ENOTSUP
Definition: errno.h:590
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180

Definition at line 74 of file ocsp.c.

◆ EPROTO_MALFORMED_REQUEST

#define EPROTO_MALFORMED_REQUEST   __einfo_error ( EINFO_EPROTO_MALFORMED_REQUEST )

Definition at line 77 of file ocsp.c.

◆ EINFO_EPROTO_MALFORMED_REQUEST

#define EINFO_EPROTO_MALFORMED_REQUEST
Value:
"Illegal confirmation request" )
#define OCSP_STATUS_MALFORMED_REQUEST
Definition: ocsp.h:33
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180
#define EINFO_EPROTO
Definition: errno.h:625

Definition at line 79 of file ocsp.c.

◆ EPROTO_INTERNAL_ERROR

#define EPROTO_INTERNAL_ERROR   __einfo_error ( EINFO_EPROTO_INTERNAL_ERROR )

Definition at line 82 of file ocsp.c.

◆ EINFO_EPROTO_INTERNAL_ERROR

#define EINFO_EPROTO_INTERNAL_ERROR
Value:
"Internal error in issuer" )
#define OCSP_STATUS_INTERNAL_ERROR
Definition: ocsp.h:34
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180
#define EINFO_EPROTO
Definition: errno.h:625

Definition at line 84 of file ocsp.c.

◆ EPROTO_TRY_LATER

#define EPROTO_TRY_LATER   __einfo_error ( EINFO_EPROTO_TRY_LATER )

Definition at line 87 of file ocsp.c.

◆ EINFO_EPROTO_TRY_LATER

#define EINFO_EPROTO_TRY_LATER
Value:
"Try again later" )
#define OCSP_STATUS_TRY_LATER
Definition: ocsp.h:35
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180
#define EINFO_EPROTO
Definition: errno.h:625

Definition at line 89 of file ocsp.c.

◆ EPROTO_SIG_REQUIRED

#define EPROTO_SIG_REQUIRED   __einfo_error ( EINFO_EPROTO_SIG_REQUIRED )

Definition at line 92 of file ocsp.c.

◆ EINFO_EPROTO_SIG_REQUIRED

#define EINFO_EPROTO_SIG_REQUIRED
Value:
"Must sign the request" )
#define OCSP_STATUS_SIG_REQUIRED
Definition: ocsp.h:36
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180
#define EINFO_EPROTO
Definition: errno.h:625

Definition at line 94 of file ocsp.c.

◆ EPROTO_UNAUTHORIZED

#define EPROTO_UNAUTHORIZED   __einfo_error ( EINFO_EPROTO_UNAUTHORIZED )

Definition at line 97 of file ocsp.c.

◆ EINFO_EPROTO_UNAUTHORIZED

#define EINFO_EPROTO_UNAUTHORIZED
Value:
"Request unauthorized" )
#define OCSP_STATUS_UNAUTHORIZED
Definition: ocsp.h:37
#define __einfo_uniqify(einfo_base, uniq, desc)
Declare disambiguated error.
Definition: errno.h:180
#define EINFO_EPROTO
Definition: errno.h:625

Definition at line 99 of file ocsp.c.

◆ EPROTO_STATUS

#define EPROTO_STATUS (   status)
Value:
#define EPROTO_SIG_REQUIRED
Definition: ocsp.c:92
uint8_t status
Status.
Definition: ena.h:16
#define EPROTO_UNAUTHORIZED
Definition: ocsp.c:97
#define EPROTO_MALFORMED_REQUEST
Definition: ocsp.c:77
#define EPROTO_INTERNAL_ERROR
Definition: ocsp.c:82
#define EUNIQ(einfo_base, uniq,...)
Disambiguate a base error based on non-constant information.
Definition: errno.h:225
#define EPROTO_TRY_LATER
Definition: ocsp.c:87
#define EINFO_EPROTO
Definition: errno.h:625

Definition at line 102 of file ocsp.c.

◆ ocsp_digest_algorithm

#define ocsp_digest_algorithm   sha1_algorithm

OCSP digest algorithm.

Definition at line 108 of file ocsp.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER  )

◆ ocsp_free()

static void ocsp_free ( struct refcnt refcnt)
static

Free OCSP check.

Parameters
refcntReference count

Definition at line 126 of file ocsp.c.

126  {
127  struct ocsp_check *ocsp =
128  container_of ( refcnt, struct ocsp_check, refcnt );
129 
130  x509_put ( ocsp->cert );
131  x509_put ( ocsp->issuer );
132  free ( ocsp->uri_string );
133  free ( ocsp->request.builder.data );
134  free ( ocsp->response.data );
135  x509_put ( ocsp->response.signer );
136  free ( ocsp );
137 }
void * data
Data.
Definition: asn1.h:35
struct x509_certificate * signer
Signing certificate.
Definition: ocsp.h:81
struct ocsp_response response
Response.
Definition: ocsp.h:97
struct x509_certificate * cert
Certificate being checked.
Definition: ocsp.h:89
A reference counter.
Definition: refcnt.h:26
#define container_of(ptr, type, field)
Get containing structure.
Definition: stddef.h:35
static void(* free)(struct refcnt *refcnt))
Definition: refcnt.h:54
struct x509_certificate * issuer
Issuing certificate.
Definition: ocsp.h:91
void * data
Raw response.
Definition: ocsp.h:67
struct ocsp_request request
Request.
Definition: ocsp.h:95
static void x509_put(struct x509_certificate *cert)
Drop reference to X.509 certificate.
Definition: x509.h:269
An OCSP check.
Definition: ocsp.h:85
struct asn1_builder builder
Request builder.
Definition: ocsp.h:44
char * uri_string
URI string.
Definition: ocsp.h:93

References ocsp_request::builder, ocsp_check::cert, container_of, asn1_builder::data, ocsp_response::data, free, ocsp_check::issuer, ocsp_check::request, ocsp_check::response, ocsp_response::signer, ocsp_check::uri_string, and x509_put().

Referenced by ocsp_check().

◆ ocsp_request()

static int ocsp_request ( struct ocsp_check ocsp)
static

Build OCSP request.

Parameters
ocspOCSP check
Return values
rcReturn status code

Definition at line 145 of file ocsp.c.

145  {
147  struct asn1_builder *builder = &ocsp->request.builder;
148  struct asn1_cursor *cert_id_tail = &ocsp->request.cert_id_tail;
149  uint8_t digest_ctx[digest->ctxsize];
150  uint8_t name_digest[digest->digestsize];
151  uint8_t pubkey_digest[digest->digestsize];
152  int rc;
153 
154  /* Generate digests */
155  digest_init ( digest, digest_ctx );
156  digest_update ( digest, digest_ctx, ocsp->cert->issuer.raw.data,
157  ocsp->cert->issuer.raw.len );
158  digest_final ( digest, digest_ctx, name_digest );
159  digest_init ( digest, digest_ctx );
160  digest_update ( digest, digest_ctx,
163  digest_final ( digest, digest_ctx, pubkey_digest );
164 
165  /* Construct request */
166  if ( ( rc = ( asn1_prepend_raw ( builder, ocsp->cert->serial.raw.data,
167  ocsp->cert->serial.raw.len ),
168  asn1_prepend ( builder, ASN1_OCTET_STRING,
169  pubkey_digest, sizeof ( pubkey_digest ) ),
170  asn1_prepend ( builder, ASN1_OCTET_STRING,
171  name_digest, sizeof ( name_digest ) ),
172  asn1_prepend ( builder, ASN1_SEQUENCE,
174  sizeof ( ocsp_algorithm_id ) ),
175  asn1_wrap ( builder, ASN1_SEQUENCE ),
176  asn1_wrap ( builder, ASN1_SEQUENCE ),
177  asn1_wrap ( builder, ASN1_SEQUENCE ),
178  asn1_wrap ( builder, ASN1_SEQUENCE ),
179  asn1_wrap ( builder, ASN1_SEQUENCE ) ) ) != 0 ) {
180  DBGC ( ocsp, "OCSP %p \"%s\" could not build request: %s\n",
181  ocsp, x509_name ( ocsp->cert ), strerror ( rc ) );
182  return rc;
183  }
184  DBGC2 ( ocsp, "OCSP %p \"%s\" request is:\n",
185  ocsp, x509_name ( ocsp->cert ) );
186  DBGC2_HDA ( ocsp, 0, builder->data, builder->len );
187 
188  /* Parse certificate ID for comparison with response */
189  cert_id_tail->data = builder->data;
190  cert_id_tail->len = builder->len;
191  if ( ( rc = ( asn1_enter ( cert_id_tail, ASN1_SEQUENCE ),
192  asn1_enter ( cert_id_tail, ASN1_SEQUENCE ),
193  asn1_enter ( cert_id_tail, ASN1_SEQUENCE ),
194  asn1_enter ( cert_id_tail, ASN1_SEQUENCE ),
195  asn1_enter ( cert_id_tail, ASN1_SEQUENCE ),
196  asn1_skip ( cert_id_tail, ASN1_SEQUENCE ) ) ) != 0 ) {
197  DBGC ( ocsp, "OCSP %p \"%s\" could not locate certID: %s\n",
198  ocsp, x509_name ( ocsp->cert ), strerror ( rc ) );
199  return rc;
200  }
201 
202  return 0;
203 }
struct asn1_bit_string raw_bits
Raw public key bit string.
Definition: x509.h:54
const void * data
Data.
Definition: asn1.h:356
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
struct asn1_cursor raw
Raw issuer.
Definition: x509.h:30
void * data
Data.
Definition: asn1.h:35
int asn1_enter(struct asn1_cursor *cursor, unsigned int type)
Enter ASN.1 object.
Definition: asn1.c:160
struct x509_issuer issuer
Issuer.
Definition: x509.h:232
int asn1_prepend_raw(struct asn1_builder *builder, const void *data, size_t len)
Prepend raw data to ASN.1 builder.
Definition: asn1.c:801
struct x509_certificate * cert
Certificate being checked.
Definition: ocsp.h:89
const void * data
Start of data.
Definition: asn1.h:22
#define DBGC(...)
Definition: compiler.h:505
struct asn1_cursor raw
Raw serial number.
Definition: x509.h:24
size_t len
Length of data.
Definition: asn1.h:24
#define ocsp_digest_algorithm
OCSP digest algorithm.
Definition: ocsp.c:108
struct asn1_cursor cert_id_tail
Certificate ID (excluding hashAlgorithm)
Definition: ocsp.h:46
static void struct digest_algorithm * digest
HMAC-MD5 digest.
Definition: crypto.h:308
struct x509_public_key public_key
Public key information.
Definition: x509.h:64
#define DBGC2_HDA(...)
Definition: compiler.h:523
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
struct x509_serial serial
Serial number.
Definition: x509.h:226
struct x509_certificate * issuer
Issuing certificate.
Definition: ocsp.h:91
struct x509_subject subject
Subject.
Definition: x509.h:236
size_t len
Length.
Definition: asn1.h:358
An ASN.1 object builder.
Definition: asn1.h:28
unsigned char uint8_t
Definition: stdint.h:10
int asn1_wrap(struct asn1_builder *builder, unsigned int type)
Wrap ASN.1 builder.
Definition: asn1.c:851
#define ASN1_SEQUENCE
ASN.1 sequence.
Definition: asn1.h:89
struct ocsp_request request
Request.
Definition: ocsp.h:95
const char * x509_name(struct x509_certificate *cert)
Get X.509 certificate display name.
Definition: x509.c:145
static const uint8_t ocsp_algorithm_id[]
OCSP digest algorithm identifier.
Definition: ocsp.c:111
size_t ctxsize
Context size.
Definition: crypto.h:21
#define DBGC2(...)
Definition: compiler.h:522
size_t digestsize
Digest size.
Definition: crypto.h:25
int asn1_skip(struct asn1_cursor *cursor, unsigned int type)
Skip ASN.1 object.
Definition: asn1.c:218
int asn1_prepend(struct asn1_builder *builder, unsigned int type, const void *data, size_t len)
Prepend data to ASN.1 builder.
Definition: asn1.c:824
A message digest algorithm.
Definition: crypto.h:17
#define ASN1_OCTET_STRING
ASN.1 octet string.
Definition: asn1.h:68
size_t len
Length of data.
Definition: asn1.h:37
An ASN.1 object cursor.
Definition: asn1.h:20
struct asn1_builder builder
Request builder.
Definition: ocsp.h:44

References asn1_enter(), ASN1_OCTET_STRING, asn1_prepend(), asn1_prepend_raw(), ASN1_SEQUENCE, asn1_skip(), asn1_wrap(), ocsp_request::builder, ocsp_check::cert, ocsp_request::cert_id_tail, digest_algorithm::ctxsize, asn1_cursor::data, asn1_builder::data, asn1_bit_string::data, DBGC, DBGC2, DBGC2_HDA, digest, digest_algorithm::digestsize, ocsp_check::issuer, x509_certificate::issuer, asn1_cursor::len, asn1_builder::len, asn1_bit_string::len, ocsp_algorithm_id, ocsp_digest_algorithm, x509_subject::public_key, x509_serial::raw, x509_issuer::raw, x509_public_key::raw_bits, rc, ocsp_check::request, x509_certificate::serial, strerror(), x509_certificate::subject, and x509_name().

◆ ocsp_uri_string()

static int ocsp_uri_string ( struct ocsp_check ocsp)
static

Build OCSP URI string.

Parameters
ocspOCSP check
Return values
rcReturn status code

Definition at line 211 of file ocsp.c.

211  {
212  struct x509_ocsp_responder *responder =
213  &ocsp->cert->extensions.auth_info.ocsp;
214  char *base64;
215  char *sep;
216  size_t base64_len;
217  size_t uri_len;
218  size_t len;
219  int rc;
220 
221  /* Sanity check */
222  if ( ! responder->uri.len ) {
223  DBGC ( ocsp, "OCSP %p \"%s\" has no OCSP URI\n",
224  ocsp, x509_name ( ocsp->cert ) );
225  rc = -ENOTTY;
226  goto err_no_uri;
227  }
228 
229  /* Calculate base64-encoded request length */
230  base64_len = ( base64_encoded_len ( ocsp->request.builder.len )
231  + 1 /* NUL */ );
232 
233  /* Allocate and construct the base64-encoded request */
234  base64 = malloc ( base64_len );
235  if ( ! base64 ) {
236  rc = -ENOMEM;
237  goto err_alloc_base64;
238  }
240  base64, base64_len );
241 
242  /* Calculate URI-encoded base64-encoded request length */
243  uri_len = ( uri_encode ( URI_PATH, base64, ( base64_len - 1 /* NUL */ ),
244  NULL, 0 ) + 1 /* NUL */ );
245 
246  /* Allocate and construct the URI string */
247  len = ( responder->uri.len + 1 /* possible "/" */ + uri_len );
248  ocsp->uri_string = zalloc ( len );
249  if ( ! ocsp->uri_string ) {
250  rc = -ENOMEM;
251  goto err_alloc_uri;
252  }
253  memcpy ( ocsp->uri_string, responder->uri.data, responder->uri.len );
254  sep = &ocsp->uri_string[ responder->uri.len - 1 ];
255  if ( *sep != '/' )
256  *(++sep) = '/';
257  uri_encode ( URI_PATH, base64, base64_len, ( sep + 1 ), uri_len );
258  DBGC2 ( ocsp, "OCSP %p \"%s\" URI is %s\n",
259  ocsp, x509_name ( ocsp->cert ), ocsp->uri_string );
260 
261  /* Success */
262  rc = 0;
263 
264  err_alloc_uri:
265  free ( base64 );
266  err_alloc_base64:
267  err_no_uri:
268  return rc;
269 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
void * data
Data.
Definition: asn1.h:35
struct x509_certificate * cert
Certificate being checked.
Definition: ocsp.h:89
const void * data
Start of data.
Definition: asn1.h:22
#define DBGC(...)
Definition: compiler.h:505
static const char base64[64+1]
Definition: base64.c:39
size_t len
Length of data.
Definition: asn1.h:24
X.509 certificate OCSP responder.
Definition: x509.h:128
static size_t base64_encoded_len(size_t raw_len)
Calculate length of base64-encoded data.
Definition: base64.h:21
#define ENOMEM
Not enough space.
Definition: errno.h:534
void * memcpy(void *dest, const void *src, size_t len) __nonnull
Definition: uri.h:118
size_t uri_encode(unsigned int field, const void *raw, size_t raw_len, char *buf, ssize_t len)
Encode URI field.
Definition: uri.c:200
struct x509_authority_info_access auth_info
Authority information access.
Definition: x509.h:163
struct asn1_cursor uri
URI.
Definition: x509.h:130
static void(* free)(struct refcnt *refcnt))
Definition: refcnt.h:54
void * zalloc(size_t size)
Allocate cleared memory.
Definition: malloc.c:624
struct ocsp_request request
Request.
Definition: ocsp.h:95
void * malloc(size_t size)
Allocate memory.
Definition: malloc.c:583
const char * x509_name(struct x509_certificate *cert)
Get X.509 certificate display name.
Definition: x509.c:145
uint32_t len
Length.
Definition: ena.h:14
#define DBGC2(...)
Definition: compiler.h:522
#define ENOTTY
Inappropriate I/O control operation.
Definition: errno.h:594
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
size_t len
Length of data.
Definition: asn1.h:37
struct x509_ocsp_responder ocsp
OCSP responder.
Definition: x509.h:138
struct asn1_builder builder
Request builder.
Definition: ocsp.h:44
size_t base64_encode(const void *raw, size_t raw_len, char *data, size_t len)
Base64-encode data.
Definition: base64.c:51
struct x509_extensions extensions
Extensions.
Definition: x509.h:240
char * uri_string
URI string.
Definition: ocsp.h:93

References x509_extensions::auth_info, base64, base64_encode(), base64_encoded_len(), ocsp_request::builder, ocsp_check::cert, asn1_cursor::data, asn1_builder::data, DBGC, DBGC2, ENOMEM, ENOTTY, x509_certificate::extensions, free, len, asn1_cursor::len, asn1_builder::len, malloc(), memcpy(), NULL, x509_authority_info_access::ocsp, rc, ocsp_check::request, x509_ocsp_responder::uri, uri_encode(), URI_PATH, ocsp_check::uri_string, x509_name(), and zalloc().

Referenced by ocsp_check().

◆ ocsp_check()

int ocsp_check ( struct x509_certificate cert,
struct x509_certificate issuer,
struct ocsp_check **  ocsp 
)

Create OCSP check.

Parameters
certCertificate to check
issuerIssuing certificate
Return values
ocspOCSP check
rcReturn status code

Definition at line 279 of file ocsp.c.

281  {
282  int rc;
283 
284  /* Sanity checks */
285  assert ( cert != NULL );
286  assert ( issuer != NULL );
287  assert ( issuer->root != NULL );
288 
289  /* Allocate and initialise check */
290  *ocsp = zalloc ( sizeof ( **ocsp ) );
291  if ( ! *ocsp ) {
292  rc = -ENOMEM;
293  goto err_alloc;
294  }
295  ref_init ( &(*ocsp)->refcnt, ocsp_free );
296  (*ocsp)->cert = x509_get ( cert );
297  (*ocsp)->issuer = x509_get ( issuer );
298 
299  /* Build request */
300  if ( ( rc = ocsp_request ( *ocsp ) ) != 0 )
301  goto err_request;
302 
303  /* Build URI string */
304  if ( ( rc = ocsp_uri_string ( *ocsp ) ) != 0 )
305  goto err_uri_string;
306 
307  return 0;
308 
309  err_uri_string:
310  err_request:
311  ocsp_put ( *ocsp );
312  err_alloc:
313  *ocsp = NULL;
314  return rc;
315 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
static struct x509_certificate * x509_get(struct x509_certificate *cert)
Get reference to X.509 certificate.
Definition: x509.h:258
#define ref_init(refcnt, free)
Initialise a reference counter.
Definition: refcnt.h:64
An OCSP request.
Definition: ocsp.h:42
static int ocsp_uri_string(struct ocsp_check *ocsp)
Build OCSP URI string.
Definition: ocsp.c:211
#define ENOMEM
Not enough space.
Definition: errno.h:534
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
struct x509_root * root
Root against which certificate has been validated (if any)
Definition: x509.h:217
void * zalloc(size_t size)
Allocate cleared memory.
Definition: malloc.c:624
static void ocsp_put(struct ocsp_check *ocsp)
Drop reference to OCSP check.
Definition: ocsp.h:118
static void ocsp_free(struct refcnt *refcnt)
Free OCSP check.
Definition: ocsp.c:126
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

References assert(), ENOMEM, NULL, ocsp_free(), ocsp_put(), ocsp_uri_string(), rc, ref_init, x509_certificate::root, x509_get(), and zalloc().

◆ ocsp_parse_response_status()

static int ocsp_parse_response_status ( struct ocsp_check ocsp,
const struct asn1_cursor raw 
)
static

Parse OCSP response status.

Parameters
ocspOCSP check
rawASN.1 cursor
Return values
rcReturn status code

Definition at line 324 of file ocsp.c.

325  {
326  struct asn1_cursor cursor;
327  uint8_t status;
328  int rc;
329 
330  /* Enter responseStatus */
331  memcpy ( &cursor, raw, sizeof ( cursor ) );
332  if ( ( rc = asn1_enter ( &cursor, ASN1_ENUMERATED ) ) != 0 ) {
333  DBGC ( ocsp, "OCSP %p \"%s\" could not locate responseStatus: "
334  "%s\n", ocsp, x509_name ( ocsp->cert ), strerror ( rc ));
335  return rc;
336  }
337 
338  /* Extract response status */
339  if ( cursor.len != sizeof ( status ) ) {
340  DBGC ( ocsp, "OCSP %p \"%s\" invalid status:\n",
341  ocsp, x509_name ( ocsp->cert ) );
342  DBGC_HDA ( ocsp, 0, cursor.data, cursor.len );
343  return -EINVAL;
344  }
345  memcpy ( &status, cursor.data, sizeof ( status ) );
346 
347  /* Check response status */
348  if ( status != OCSP_STATUS_SUCCESSFUL ) {
349  DBGC ( ocsp, "OCSP %p \"%s\" response status %d\n",
350  ocsp, x509_name ( ocsp->cert ), status );
351  return EPROTO_STATUS ( status );
352  }
353 
354  return 0;
355 }
#define EINVAL
Invalid argument.
Definition: errno.h:428
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
int asn1_enter(struct asn1_cursor *cursor, unsigned int type)
Enter ASN.1 object.
Definition: asn1.c:160
#define ASN1_ENUMERATED
ASN.1 enumeration.
Definition: asn1.h:77
struct x509_certificate * cert
Certificate being checked.
Definition: ocsp.h:89
#define DBGC(...)
Definition: compiler.h:505
uint8_t status
Status.
Definition: ena.h:16
void * memcpy(void *dest, const void *src, size_t len) __nonnull
#define DBGC_HDA(...)
Definition: compiler.h:506
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
#define OCSP_STATUS_SUCCESSFUL
Definition: ocsp.h:32
unsigned char uint8_t
Definition: stdint.h:10
#define EPROTO_STATUS(status)
Definition: ocsp.c:102
const char * x509_name(struct x509_certificate *cert)
Get X.509 certificate display name.
Definition: x509.c:145
__be32 raw[7]
Definition: CIB_PRM.h:28
An ASN.1 object cursor.
Definition: asn1.h:20

References asn1_enter(), ASN1_ENUMERATED, ocsp_check::cert, asn1_cursor::data, DBGC, DBGC_HDA, EINVAL, EPROTO_STATUS, asn1_cursor::len, memcpy(), OCSP_STATUS_SUCCESSFUL, raw, rc, status, strerror(), and x509_name().

Referenced by ocsp_parse_response().

◆ ocsp_parse_response_type()

static int ocsp_parse_response_type ( struct ocsp_check ocsp,
const struct asn1_cursor raw 
)
static

Parse OCSP response type.

Parameters
ocspOCSP check
rawASN.1 cursor
Return values
rcReturn status code

Definition at line 364 of file ocsp.c.

365  {
366  struct asn1_cursor cursor;
367 
368  /* Enter responseType */
369  memcpy ( &cursor, raw, sizeof ( cursor ) );
370  asn1_enter ( &cursor, ASN1_OID );
371 
372  /* Check responseType is "basic" */
373  if ( asn1_compare ( &oid_basic_response_type_cursor, &cursor ) != 0 ) {
374  DBGC ( ocsp, "OCSP %p \"%s\" response type not supported:\n",
375  ocsp, x509_name ( ocsp->cert ) );
376  DBGC_HDA ( ocsp, 0, cursor.data, cursor.len );
377  return -ENOTSUP_RESPONSE_TYPE;
378  }
379 
380  return 0;
381 }
int asn1_compare(const struct asn1_cursor *cursor1, const struct asn1_cursor *cursor2)
Compare two ASN.1 objects.
Definition: asn1.c:443
int asn1_enter(struct asn1_cursor *cursor, unsigned int type)
Enter ASN.1 object.
Definition: asn1.c:160
#define ENOTSUP_RESPONSE_TYPE
Definition: ocsp.c:67
struct x509_certificate * cert
Certificate being checked.
Definition: ocsp.h:89
#define DBGC(...)
Definition: compiler.h:505
void * memcpy(void *dest, const void *src, size_t len) __nonnull
static struct asn1_cursor oid_basic_response_type_cursor
OCSP basic response type cursor.
Definition: ocsp.c:118
#define DBGC_HDA(...)
Definition: compiler.h:506
const char * x509_name(struct x509_certificate *cert)
Get X.509 certificate display name.
Definition: x509.c:145
#define ASN1_OID
ASN.1 object identifier.
Definition: asn1.h:74
__be32 raw[7]
Definition: CIB_PRM.h:28
An ASN.1 object cursor.
Definition: asn1.h:20

References asn1_compare(), asn1_enter(), ASN1_OID, ocsp_check::cert, asn1_cursor::data, DBGC, DBGC_HDA, ENOTSUP_RESPONSE_TYPE, asn1_cursor::len, memcpy(), oid_basic_response_type_cursor, raw, and x509_name().

Referenced by ocsp_parse_response_bytes().

◆ ocsp_compare_responder_name()

static int ocsp_compare_responder_name ( struct ocsp_check ocsp,
struct x509_certificate cert 
)
static

Compare responder's certificate name.

Parameters
ocspOCSP check
certCertificate
Return values
differenceDifference as returned by memcmp()

Definition at line 390 of file ocsp.c.

391  {
392  struct ocsp_responder *responder = &ocsp->response.responder;
393 
394  /* Compare responder ID with certificate's subject */
395  return asn1_compare ( &responder->id, &cert->subject.raw );
396 }
struct asn1_cursor id
Responder ID.
Definition: ocsp.h:61
int asn1_compare(const struct asn1_cursor *cursor1, const struct asn1_cursor *cursor2)
Compare two ASN.1 objects.
Definition: asn1.c:443
struct ocsp_response response
Response.
Definition: ocsp.h:97
An OCSP responder.
Definition: ocsp.h:50
struct x509_subject subject
Subject.
Definition: x509.h:236
struct asn1_cursor raw
Raw subject.
Definition: x509.h:60
struct ocsp_responder responder
Responder.
Definition: ocsp.h:71

References asn1_compare(), ocsp_responder::id, x509_subject::raw, ocsp_response::responder, ocsp_check::response, and x509_certificate::subject.

Referenced by ocsp_parse_responder_id().

◆ ocsp_compare_responder_key_hash()

static int ocsp_compare_responder_key_hash ( struct ocsp_check ocsp,
struct x509_certificate cert 
)
static

Compare responder's certificate public key hash.

Parameters
ocspOCSP check
certCertificate
Return values
differenceDifference as returned by memcmp()

Definition at line 405 of file ocsp.c.

406  {
407  struct ocsp_responder *responder = &ocsp->response.responder;
408  struct asn1_cursor key_hash;
411  int difference;
412 
413  /* Enter responder key hash */
414  memcpy ( &key_hash, &responder->id, sizeof ( key_hash ) );
415  asn1_enter ( &key_hash, ASN1_OCTET_STRING );
416 
417  /* Sanity check */
418  difference = ( sizeof ( digest ) - key_hash.len );
419  if ( difference )
420  return difference;
421 
422  /* Generate SHA1 hash of certificate's public key */
423  digest_init ( &sha1_algorithm, ctx );
424  digest_update ( &sha1_algorithm, ctx,
426  cert->subject.public_key.raw_bits.len );
427  digest_final ( &sha1_algorithm, ctx, digest );
428 
429  /* Compare responder key hash with hash of certificate's public key */
430  return memcmp ( digest, key_hash.data, sizeof ( digest ) );
431 }
struct asn1_cursor id
Responder ID.
Definition: ocsp.h:61
struct asn1_bit_string raw_bits
Raw public key bit string.
Definition: x509.h:54
const void * data
Data.
Definition: asn1.h:356
int asn1_enter(struct asn1_cursor *cursor, unsigned int type)
Enter ASN.1 object.
Definition: asn1.c:160
struct ocsp_response response
Response.
Definition: ocsp.h:97
void * memcpy(void *dest, const void *src, size_t len) __nonnull
An OCSP responder.
Definition: ocsp.h:50
static void struct digest_algorithm * digest
HMAC-MD5 digest.
Definition: crypto.h:308
struct x509_public_key public_key
Public key information.
Definition: x509.h:64
struct x509_subject subject
Subject.
Definition: x509.h:236
size_t len
Length.
Definition: asn1.h:358
struct golan_eq_context ctx
Definition: CIB_PRM.h:28
unsigned char uint8_t
Definition: stdint.h:10
#define SHA1_DIGEST_SIZE
Definition: Tpm20.h:25
#define SHA1_CTX_SIZE
SHA-1 context size.
Definition: sha1.h:66
struct ocsp_responder responder
Responder.
Definition: ocsp.h:71
#define ASN1_OCTET_STRING
ASN.1 octet string.
Definition: asn1.h:68
int memcmp(const void *first, const void *second, size_t len)
Compare memory regions.
Definition: string.c:114
An ASN.1 object cursor.
Definition: asn1.h:20
struct digest_algorithm sha1_algorithm
SHA-1 algorithm.
Definition: sha1.c:257

References asn1_enter(), ASN1_OCTET_STRING, ctx, asn1_cursor::data, asn1_bit_string::data, digest, ocsp_responder::id, asn1_cursor::len, asn1_bit_string::len, memcmp(), memcpy(), x509_subject::public_key, x509_public_key::raw_bits, ocsp_response::responder, ocsp_check::response, sha1_algorithm, SHA1_CTX_SIZE, SHA1_DIGEST_SIZE, and x509_certificate::subject.

Referenced by ocsp_parse_responder_id().

◆ ocsp_parse_responder_id()

static int ocsp_parse_responder_id ( struct ocsp_check ocsp,
const struct asn1_cursor raw 
)
static

Parse OCSP responder ID.

Parameters
ocspOCSP check
rawASN.1 cursor
Return values
rcReturn status code

Definition at line 440 of file ocsp.c.

441  {
442  struct ocsp_responder *responder = &ocsp->response.responder;
443  struct asn1_cursor *responder_id = &responder->id;
444  unsigned int type;
445 
446  /* Enter responder ID */
447  memcpy ( responder_id, raw, sizeof ( *responder_id ) );
448  type = asn1_type ( responder_id );
449  asn1_enter_any ( responder_id );
450 
451  /* Identify responder ID type */
452  switch ( type ) {
453  case ASN1_EXPLICIT_TAG ( 1 ) :
454  DBGC2 ( ocsp, "OCSP %p \"%s\" responder identified by name\n",
455  ocsp, x509_name ( ocsp->cert ) );
457  return 0;
458  case ASN1_EXPLICIT_TAG ( 2 ) :
459  DBGC2 ( ocsp, "OCSP %p \"%s\" responder identified by key "
460  "hash\n", ocsp, x509_name ( ocsp->cert ) );
462  return 0;
463  default:
464  DBGC ( ocsp, "OCSP %p \"%s\" unsupported responder ID type "
465  "%d\n", ocsp, x509_name ( ocsp->cert ), type );
466  return -ENOTSUP_RESPONDER_ID;
467  }
468 }
struct asn1_cursor id
Responder ID.
Definition: ocsp.h:61
#define ENOTSUP_RESPONDER_ID
Definition: ocsp.c:72
static int ocsp_compare_responder_key_hash(struct ocsp_check *ocsp, struct x509_certificate *cert)
Compare responder's certificate public key hash.
Definition: ocsp.c:405
struct ocsp_response response
Response.
Definition: ocsp.h:97
struct x509_certificate * cert
Certificate being checked.
Definition: ocsp.h:89
#define DBGC(...)
Definition: compiler.h:505
static unsigned int asn1_type(const struct asn1_cursor *cursor)
Extract ASN.1 type.
Definition: asn1.h:380
void * memcpy(void *dest, const void *src, size_t len) __nonnull
An OCSP responder.
Definition: ocsp.h:50
int(* compare)(struct ocsp_check *ocsp, struct x509_certificate *cert)
Check if certificate is the responder's certificate.
Definition: ocsp.h:58
int asn1_enter_any(struct asn1_cursor *cursor)
Enter ASN.1 object of any type.
Definition: asn1.c:266
const char * x509_name(struct x509_certificate *cert)
Get X.509 certificate display name.
Definition: x509.c:145
uint32_t type
Operating system type.
Definition: ena.h:12
#define DBGC2(...)
Definition: compiler.h:522
struct ocsp_responder responder
Responder.
Definition: ocsp.h:71
__be32 raw[7]
Definition: CIB_PRM.h:28
#define ASN1_EXPLICIT_TAG(number)
ASN.1 explicit tag.
Definition: asn1.h:98
An ASN.1 object cursor.
Definition: asn1.h:20
static int ocsp_compare_responder_name(struct ocsp_check *ocsp, struct x509_certificate *cert)
Compare responder's certificate name.
Definition: ocsp.c:390

References asn1_enter_any(), ASN1_EXPLICIT_TAG, asn1_type(), ocsp_check::cert, ocsp_responder::compare, DBGC, DBGC2, ENOTSUP_RESPONDER_ID, ocsp_responder::id, memcpy(), ocsp_compare_responder_key_hash(), ocsp_compare_responder_name(), raw, ocsp_response::responder, ocsp_check::response, type, and x509_name().

Referenced by ocsp_parse_tbs_response_data().

◆ ocsp_parse_cert_id()

static int ocsp_parse_cert_id ( struct ocsp_check ocsp,
const struct asn1_cursor raw 
)
static

Parse OCSP certificate ID.

Parameters
ocspOCSP check
rawASN.1 cursor
Return values
rcReturn status code

Definition at line 477 of file ocsp.c.

478  {
479  static struct asn1_cursor algorithm = {
480  .data = ocsp_algorithm_id,
481  .len = sizeof ( ocsp_algorithm_id ),
482  };
483  struct asn1_cursor cert_id;
484  struct asn1_cursor cursor;
485  int rc;
486 
487  /* Enter cert ID */
488  memcpy ( &cert_id, raw, sizeof ( cert_id ) );
489  asn1_enter ( &cert_id, ASN1_SEQUENCE );
490 
491  /* Check certID algorithm (but not parameters) */
492  memcpy ( &cursor, &cert_id, sizeof ( cursor ) );
493  if ( ( rc = ( asn1_enter ( &cursor, ASN1_SEQUENCE ),
494  asn1_shrink ( &cursor, ASN1_OID ),
495  asn1_shrink ( &algorithm, ASN1_OID ) ) ) != 0 ) {
496  DBGC ( ocsp, "OCSP %p \"%s\" certID missing algorithm:\n",
497  ocsp, x509_name ( ocsp->cert ) );
498  DBGC_HDA ( ocsp, 0, cursor.data, cursor.len );
499  return -EACCES_CERT_MISMATCH;
500  }
501  if ( asn1_compare ( &cursor, &algorithm ) != 0 ) {
502  DBGC ( ocsp, "OCSP %p \"%s\" certID wrong algorithm:\n",
503  ocsp, x509_name ( ocsp->cert ) );
504  DBGC_HDA ( ocsp, 0, cursor.data, cursor.len );
505  return -EACCES_CERT_MISMATCH;
506  }
507 
508  /* Check remaining certID fields */
509  asn1_skip ( &cert_id, ASN1_SEQUENCE );
510  if ( asn1_compare ( &cert_id, &ocsp->request.cert_id_tail ) != 0 ) {
511  DBGC ( ocsp, "OCSP %p \"%s\" certID mismatch:\n",
512  ocsp, x509_name ( ocsp->cert ) );
513  DBGC_HDA ( ocsp, 0, ocsp->request.cert_id_tail.data,
514  ocsp->request.cert_id_tail.len );
515  DBGC_HDA ( ocsp, 0, cert_id.data, cert_id.len );
516  return -EACCES_CERT_MISMATCH;
517  }
518 
519  return 0;
520 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
int asn1_compare(const struct asn1_cursor *cursor1, const struct asn1_cursor *cursor2)
Compare two ASN.1 objects.
Definition: asn1.c:443
int asn1_enter(struct asn1_cursor *cursor, unsigned int type)
Enter ASN.1 object.
Definition: asn1.c:160
struct x509_certificate * cert
Certificate being checked.
Definition: ocsp.h:89
const void * data
Start of data.
Definition: asn1.h:22
#define DBGC(...)
Definition: compiler.h:505
size_t len
Length of data.
Definition: asn1.h:24
struct asn1_cursor cert_id_tail
Certificate ID (excluding hashAlgorithm)
Definition: ocsp.h:46
int asn1_shrink(struct asn1_cursor *cursor, unsigned int type)
Shrink ASN.1 cursor to fit object.
Definition: asn1.c:240
void * memcpy(void *dest, const void *src, size_t len) __nonnull
#define EACCES_CERT_MISMATCH
Definition: ocsp.c:47
#define DBGC_HDA(...)
Definition: compiler.h:506
#define ASN1_SEQUENCE
ASN.1 sequence.
Definition: asn1.h:89
struct ocsp_request request
Request.
Definition: ocsp.h:95
u16 algorithm
Authentication algorithm (Open System or Shared Key)
Definition: ieee80211.h:1030
const char * x509_name(struct x509_certificate *cert)
Get X.509 certificate display name.
Definition: x509.c:145
#define ASN1_OID
ASN.1 object identifier.
Definition: asn1.h:74
static const uint8_t ocsp_algorithm_id[]
OCSP digest algorithm identifier.
Definition: ocsp.c:111
int asn1_skip(struct asn1_cursor *cursor, unsigned int type)
Skip ASN.1 object.
Definition: asn1.c:218
__be32 raw[7]
Definition: CIB_PRM.h:28
An ASN.1 object cursor.
Definition: asn1.h:20

References algorithm, asn1_compare(), asn1_enter(), ASN1_OID, ASN1_SEQUENCE, asn1_shrink(), asn1_skip(), ocsp_check::cert, ocsp_request::cert_id_tail, asn1_cursor::data, DBGC, DBGC_HDA, EACCES_CERT_MISMATCH, asn1_cursor::len, memcpy(), ocsp_algorithm_id, raw, rc, ocsp_check::request, and x509_name().

Referenced by ocsp_parse_responses().

◆ ocsp_parse_responses()

static int ocsp_parse_responses ( struct ocsp_check ocsp,
const struct asn1_cursor raw 
)
static

Parse OCSP responses.

Parameters
ocspOCSP check
rawASN.1 cursor
Return values
rcReturn status code

Definition at line 529 of file ocsp.c.

530  {
531  struct ocsp_response *response = &ocsp->response;
532  struct asn1_cursor cursor;
533  int rc;
534 
535  /* Enter responses */
536  memcpy ( &cursor, raw, sizeof ( cursor ) );
537  asn1_enter ( &cursor, ASN1_SEQUENCE );
538 
539  /* Enter first singleResponse */
540  asn1_enter ( &cursor, ASN1_SEQUENCE );
541 
542  /* Parse certID */
543  if ( ( rc = ocsp_parse_cert_id ( ocsp, &cursor ) ) != 0 )
544  return rc;
545  asn1_skip_any ( &cursor );
546 
547  /* Check certStatus */
548  if ( asn1_type ( &cursor ) != ASN1_IMPLICIT_TAG ( 0 ) ) {
549  DBGC ( ocsp, "OCSP %p \"%s\" non-good certStatus:\n",
550  ocsp, x509_name ( ocsp->cert ) );
551  DBGC_HDA ( ocsp, 0, cursor.data, cursor.len );
552  return -EACCES_CERT_STATUS;
553  }
554  asn1_skip_any ( &cursor );
555 
556  /* Parse thisUpdate */
557  if ( ( rc = asn1_generalized_time ( &cursor,
558  &response->this_update ) ) != 0 ) {
559  DBGC ( ocsp, "OCSP %p \"%s\" could not parse thisUpdate: %s\n",
560  ocsp, x509_name ( ocsp->cert ), strerror ( rc ) );
561  return rc;
562  }
563  DBGC2 ( ocsp, "OCSP %p \"%s\" this update was at time %lld\n",
564  ocsp, x509_name ( ocsp->cert ), response->this_update );
565  asn1_skip_any ( &cursor );
566 
567  /* Parse nextUpdate, if present */
568  if ( asn1_type ( &cursor ) == ASN1_EXPLICIT_TAG ( 0 ) ) {
569  asn1_enter ( &cursor, ASN1_EXPLICIT_TAG ( 0 ) );
570  if ( ( rc = asn1_generalized_time ( &cursor,
571  &response->next_update ) ) != 0 ) {
572  DBGC ( ocsp, "OCSP %p \"%s\" could not parse "
573  "nextUpdate: %s\n", ocsp,
574  x509_name ( ocsp->cert ), strerror ( rc ) );
575  return rc;
576  }
577  DBGC2 ( ocsp, "OCSP %p \"%s\" next update is at time %lld\n",
578  ocsp, x509_name ( ocsp->cert ), response->next_update );
579  } else {
580  /* If no nextUpdate is present, this indicates that
581  * "newer revocation information is available all the
582  * time". Actually, this indicates that there is no
583  * point to performing the OCSP check, since an
584  * attacker could replay the response at any future
585  * time and it would still be valid.
586  */
587  DBGC ( ocsp, "OCSP %p \"%s\" responder is a moron\n",
588  ocsp, x509_name ( ocsp->cert ) );
589  response->next_update = time ( NULL );
590  }
591 
592  return 0;
593 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
#define ASN1_IMPLICIT_TAG(number)
ASN.1 implicit tag.
Definition: asn1.h:95
int asn1_enter(struct asn1_cursor *cursor, unsigned int type)
Enter ASN.1 object.
Definition: asn1.c:160
int asn1_generalized_time(const struct asn1_cursor *cursor, time_t *time)
Parse ASN.1 GeneralizedTime.
Definition: asn1.c:629
time_t next_update
Time at which newer status information will be available.
Definition: ocsp.h:75
struct ocsp_response response
Response.
Definition: ocsp.h:97
struct x509_certificate * cert
Certificate being checked.
Definition: ocsp.h:89
#define DBGC(...)
Definition: compiler.h:505
static unsigned int asn1_type(const struct asn1_cursor *cursor)
Extract ASN.1 type.
Definition: asn1.h:380
int asn1_skip_any(struct asn1_cursor *cursor)
Skip ASN.1 object of any type.
Definition: asn1.c:276
void * memcpy(void *dest, const void *src, size_t len) __nonnull
#define DBGC_HDA(...)
Definition: compiler.h:506
#define EACCES_CERT_STATUS
Definition: ocsp.c:42
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
static int ocsp_parse_cert_id(struct ocsp_check *ocsp, const struct asn1_cursor *raw)
Parse OCSP certificate ID.
Definition: ocsp.c:477
time_t this_update
Time at which status is known to be correct.
Definition: ocsp.h:73
#define ASN1_SEQUENCE
ASN.1 sequence.
Definition: asn1.h:89
An OCSP response.
Definition: ocsp.h:65
const char * x509_name(struct x509_certificate *cert)
Get X.509 certificate display name.
Definition: x509.c:145
#define DBGC2(...)
Definition: compiler.h:522
__be32 raw[7]
Definition: CIB_PRM.h:28
#define ASN1_EXPLICIT_TAG(number)
ASN.1 explicit tag.
Definition: asn1.h:98
uint64_t time
Current time.
Definition: ntlm.h:20
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
An ASN.1 object cursor.
Definition: asn1.h:20

References asn1_enter(), ASN1_EXPLICIT_TAG, asn1_generalized_time(), ASN1_IMPLICIT_TAG, ASN1_SEQUENCE, asn1_skip_any(), asn1_type(), ocsp_check::cert, asn1_cursor::data, DBGC, DBGC2, DBGC_HDA, EACCES_CERT_STATUS, asn1_cursor::len, memcpy(), ocsp_response::next_update, NULL, ocsp_parse_cert_id(), raw, rc, ocsp_check::response, strerror(), ocsp_response::this_update, time, and x509_name().

Referenced by ocsp_parse_tbs_response_data().

◆ ocsp_parse_tbs_response_data()

static int ocsp_parse_tbs_response_data ( struct ocsp_check ocsp,
const struct asn1_cursor raw 
)
static

Parse OCSP response data.

Parameters
ocspOCSP check
rawASN.1 cursor
Return values
rcReturn status code

Definition at line 602 of file ocsp.c.

603  {
604  struct ocsp_response *response = &ocsp->response;
605  struct asn1_cursor cursor;
606  int rc;
607 
608  /* Record raw tbsResponseData */
609  memcpy ( &cursor, raw, sizeof ( cursor ) );
610  asn1_shrink_any ( &cursor );
611  memcpy ( &response->tbs, &cursor, sizeof ( response->tbs ) );
612 
613  /* Enter tbsResponseData */
614  asn1_enter ( &cursor, ASN1_SEQUENCE );
615 
616  /* Skip version, if present */
617  asn1_skip_if_exists ( &cursor, ASN1_EXPLICIT_TAG ( 0 ) );
618 
619  /* Parse responderID */
620  if ( ( rc = ocsp_parse_responder_id ( ocsp, &cursor ) ) != 0 )
621  return rc;
622  asn1_skip_any ( &cursor );
623 
624  /* Skip producedAt */
625  asn1_skip_any ( &cursor );
626 
627  /* Parse responses */
628  if ( ( rc = ocsp_parse_responses ( ocsp, &cursor ) ) != 0 )
629  return rc;
630 
631  return 0;
632 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
int asn1_enter(struct asn1_cursor *cursor, unsigned int type)
Enter ASN.1 object.
Definition: asn1.c:160
struct ocsp_response response
Response.
Definition: ocsp.h:97
int asn1_skip_any(struct asn1_cursor *cursor)
Skip ASN.1 object of any type.
Definition: asn1.c:276
void * memcpy(void *dest, const void *src, size_t len) __nonnull
static int ocsp_parse_responder_id(struct ocsp_check *ocsp, const struct asn1_cursor *raw)
Parse OCSP responder ID.
Definition: ocsp.c:440
struct asn1_cursor tbs
Raw tbsResponseData.
Definition: ocsp.h:69
int asn1_shrink_any(struct asn1_cursor *cursor)
Shrink ASN.1 object of any type.
Definition: asn1.c:286
static int ocsp_parse_responses(struct ocsp_check *ocsp, const struct asn1_cursor *raw)
Parse OCSP responses.
Definition: ocsp.c:529
#define ASN1_SEQUENCE
ASN.1 sequence.
Definition: asn1.h:89
An OCSP response.
Definition: ocsp.h:65
int asn1_skip_if_exists(struct asn1_cursor *cursor, unsigned int type)
Skip ASN.1 object if present.
Definition: asn1.c:187
__be32 raw[7]
Definition: CIB_PRM.h:28
#define ASN1_EXPLICIT_TAG(number)
ASN.1 explicit tag.
Definition: asn1.h:98
An ASN.1 object cursor.
Definition: asn1.h:20

References asn1_enter(), ASN1_EXPLICIT_TAG, ASN1_SEQUENCE, asn1_shrink_any(), asn1_skip_any(), asn1_skip_if_exists(), memcpy(), ocsp_parse_responder_id(), ocsp_parse_responses(), raw, rc, ocsp_check::response, and ocsp_response::tbs.

Referenced by ocsp_parse_basic_response().

◆ ocsp_parse_certs()

static int ocsp_parse_certs ( struct ocsp_check ocsp,
const struct asn1_cursor raw 
)
static

Parse OCSP certificates.

Parameters
ocspOCSP check
rawASN.1 cursor
Return values
rcReturn status code

Definition at line 641 of file ocsp.c.

642  {
643  struct ocsp_response *response = &ocsp->response;
644  struct asn1_cursor cursor;
645  struct x509_certificate *cert;
646  int rc;
647 
648  /* Enter certs */
649  memcpy ( &cursor, raw, sizeof ( cursor ) );
650  asn1_enter ( &cursor, ASN1_EXPLICIT_TAG ( 0 ) );
651  asn1_enter ( &cursor, ASN1_SEQUENCE );
652 
653  /* Parse certificate, if present. The data structure permits
654  * multiple certificates, but the protocol requires that the
655  * OCSP signing certificate must either be the issuer itself,
656  * or must be directly issued by the issuer (see RFC2560
657  * section 4.2.2.2 "Authorized Responders"). We therefore
658  * need to identify only the single certificate matching the
659  * Responder ID.
660  */
661  while ( cursor.len ) {
662 
663  /* Parse certificate */
664  if ( ( rc = x509_certificate ( cursor.data, cursor.len,
665  &cert ) ) != 0 ) {
666  DBGC ( ocsp, "OCSP %p \"%s\" could not parse "
667  "certificate: %s\n", ocsp,
668  x509_name ( ocsp->cert ), strerror ( rc ) );
669  DBGC_HDA ( ocsp, 0, cursor.data, cursor.len );
670  return rc;
671  }
672 
673  /* Use if this certificate matches the responder ID */
674  if ( response->responder.compare ( ocsp, cert ) == 0 ) {
675  response->signer = cert;
676  DBGC2 ( ocsp, "OCSP %p \"%s\" response is signed by ",
677  ocsp, x509_name ( ocsp->cert ) );
678  DBGC2 ( ocsp, "\"%s\"\n",
679  x509_name ( response->signer ) );
680  return 0;
681  }
682 
683  /* Otherwise, discard this certificate */
684  x509_put ( cert );
685  asn1_skip_any ( &cursor );
686  }
687 
688  DBGC ( ocsp, "OCSP %p \"%s\" missing responder certificate\n",
689  ocsp, x509_name ( ocsp->cert ) );
690  return -EACCES_NO_RESPONDER;
691 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
int asn1_enter(struct asn1_cursor *cursor, unsigned int type)
Enter ASN.1 object.
Definition: asn1.c:160
struct x509_certificate * signer
Signing certificate.
Definition: ocsp.h:81
struct ocsp_response response
Response.
Definition: ocsp.h:97
struct x509_certificate * cert
Certificate being checked.
Definition: ocsp.h:89
#define DBGC(...)
Definition: compiler.h:505
int asn1_skip_any(struct asn1_cursor *cursor)
Skip ASN.1 object of any type.
Definition: asn1.c:276
void * memcpy(void *dest, const void *src, size_t len) __nonnull
#define DBGC_HDA(...)
Definition: compiler.h:506
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
An X.509 certificate.
Definition: x509.h:207
int(* compare)(struct ocsp_check *ocsp, struct x509_certificate *cert)
Check if certificate is the responder's certificate.
Definition: ocsp.h:58
#define EACCES_NO_RESPONDER
Definition: ocsp.c:62
#define ASN1_SEQUENCE
ASN.1 sequence.
Definition: asn1.h:89
An OCSP response.
Definition: ocsp.h:65
const char * x509_name(struct x509_certificate *cert)
Get X.509 certificate display name.
Definition: x509.c:145
#define DBGC2(...)
Definition: compiler.h:522
static void x509_put(struct x509_certificate *cert)
Drop reference to X.509 certificate.
Definition: x509.h:269
struct ocsp_responder responder
Responder.
Definition: ocsp.h:71
__be32 raw[7]
Definition: CIB_PRM.h:28
#define ASN1_EXPLICIT_TAG(number)
ASN.1 explicit tag.
Definition: asn1.h:98
An ASN.1 object cursor.
Definition: asn1.h:20

References asn1_enter(), ASN1_EXPLICIT_TAG, ASN1_SEQUENCE, asn1_skip_any(), ocsp_check::cert, ocsp_responder::compare, asn1_cursor::data, DBGC, DBGC2, DBGC_HDA, EACCES_NO_RESPONDER, asn1_cursor::len, memcpy(), raw, rc, ocsp_response::responder, ocsp_check::response, ocsp_response::signer, strerror(), x509_name(), and x509_put().

Referenced by ocsp_parse_basic_response().

◆ ocsp_parse_basic_response()

static int ocsp_parse_basic_response ( struct ocsp_check ocsp,
const struct asn1_cursor raw 
)
static

Parse OCSP basic response.

Parameters
ocspOCSP check
rawASN.1 cursor
Return values
rcReturn status code

Definition at line 700 of file ocsp.c.

701  {
702  struct ocsp_response *response = &ocsp->response;
703  struct asn1_algorithm **algorithm = &response->algorithm;
704  struct asn1_bit_string *signature = &response->signature;
705  struct asn1_cursor cursor;
706  int rc;
707 
708  /* Enter BasicOCSPResponse */
709  memcpy ( &cursor, raw, sizeof ( cursor ) );
710  asn1_enter ( &cursor, ASN1_SEQUENCE );
711 
712  /* Parse tbsResponseData */
713  if ( ( rc = ocsp_parse_tbs_response_data ( ocsp, &cursor ) ) != 0 )
714  return rc;
715  asn1_skip_any ( &cursor );
716 
717  /* Parse signatureAlgorithm */
718  if ( ( rc = asn1_signature_algorithm ( &cursor, algorithm ) ) != 0 ) {
719  DBGC ( ocsp, "OCSP %p \"%s\" cannot parse signature "
720  "algorithm: %s\n",
721  ocsp, x509_name ( ocsp->cert ), strerror ( rc ) );
722  return rc;
723  }
724  DBGC2 ( ocsp, "OCSP %p \"%s\" signature algorithm is %s\n",
725  ocsp, x509_name ( ocsp->cert ), (*algorithm)->name );
726  asn1_skip_any ( &cursor );
727 
728  /* Parse signature */
729  if ( ( rc = asn1_integral_bit_string ( &cursor, signature ) ) != 0 ) {
730  DBGC ( ocsp, "OCSP %p \"%s\" cannot parse signature: %s\n",
731  ocsp, x509_name ( ocsp->cert ), strerror ( rc ) );
732  return rc;
733  }
734  asn1_skip_any ( &cursor );
735 
736  /* Parse certs, if present */
737  if ( ( asn1_type ( &cursor ) == ASN1_EXPLICIT_TAG ( 0 ) ) &&
738  ( ( rc = ocsp_parse_certs ( ocsp, &cursor ) ) != 0 ) )
739  return rc;
740 
741  return 0;
742 }
An ASN.1 OID-identified algorithm.
Definition: asn1.h:311
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
static int ocsp_parse_tbs_response_data(struct ocsp_check *ocsp, const struct asn1_cursor *raw)
Parse OCSP response data.
Definition: ocsp.c:602
int asn1_enter(struct asn1_cursor *cursor, unsigned int type)
Enter ASN.1 object.
Definition: asn1.c:160
struct ocsp_response response
Response.
Definition: ocsp.h:97
struct x509_certificate * cert
Certificate being checked.
Definition: ocsp.h:89
#define DBGC(...)
Definition: compiler.h:505
struct asn1_algorithm * algorithm
Signature algorithm.
Definition: ocsp.h:77
static unsigned int asn1_type(const struct asn1_cursor *cursor)
Extract ASN.1 type.
Definition: asn1.h:380
int asn1_skip_any(struct asn1_cursor *cursor)
Skip ASN.1 object of any type.
Definition: asn1.c:276
static int ocsp_parse_certs(struct ocsp_check *ocsp, const struct asn1_cursor *raw)
Parse OCSP certificates.
Definition: ocsp.c:641
int asn1_signature_algorithm(const struct asn1_cursor *cursor, struct asn1_algorithm **algorithm)
Parse ASN.1 OID-identified signature algorithm.
Definition: asn1.c:565
struct asn1_bit_string signature
Signature value.
Definition: ocsp.h:79
void * memcpy(void *dest, const void *src, size_t len) __nonnull
int asn1_integral_bit_string(const struct asn1_cursor *cursor, struct asn1_bit_string *bits)
Parse ASN.1 bit string that must be an integral number of bytes.
Definition: asn1.c:414
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
#define ASN1_SEQUENCE
ASN.1 sequence.
Definition: asn1.h:89
An OCSP response.
Definition: ocsp.h:65
u16 algorithm
Authentication algorithm (Open System or Shared Key)
Definition: ieee80211.h:1030
const char * x509_name(struct x509_certificate *cert)
Get X.509 certificate display name.
Definition: x509.c:145
#define DBGC2(...)
Definition: compiler.h:522
__be32 raw[7]
Definition: CIB_PRM.h:28
#define ASN1_EXPLICIT_TAG(number)
ASN.1 explicit tag.
Definition: asn1.h:98
u8 signature
Signature.
Definition: CIB_PRM.h:35
An ASN.1 object cursor.
Definition: asn1.h:20
An ASN.1 bit string.
Definition: asn1.h:354

References ocsp_response::algorithm, algorithm, asn1_enter(), ASN1_EXPLICIT_TAG, asn1_integral_bit_string(), ASN1_SEQUENCE, asn1_signature_algorithm(), asn1_skip_any(), asn1_type(), ocsp_check::cert, DBGC, DBGC2, memcpy(), ocsp_parse_certs(), ocsp_parse_tbs_response_data(), raw, rc, ocsp_check::response, signature, ocsp_response::signature, strerror(), and x509_name().

Referenced by ocsp_parse_response_bytes().

◆ ocsp_parse_response_bytes()

static int ocsp_parse_response_bytes ( struct ocsp_check ocsp,
const struct asn1_cursor raw 
)
static

Parse OCSP response bytes.

Parameters
ocspOCSP check
rawASN.1 cursor
Return values
rcReturn status code

Definition at line 751 of file ocsp.c.

752  {
753  struct asn1_cursor cursor;
754  int rc;
755 
756  /* Enter responseBytes */
757  memcpy ( &cursor, raw, sizeof ( cursor ) );
758  asn1_enter ( &cursor, ASN1_EXPLICIT_TAG ( 0 ) );
759  asn1_enter ( &cursor, ASN1_SEQUENCE );
760 
761  /* Parse responseType */
762  if ( ( rc = ocsp_parse_response_type ( ocsp, &cursor ) ) != 0 )
763  return rc;
764  asn1_skip_any ( &cursor );
765 
766  /* Enter response */
767  asn1_enter ( &cursor, ASN1_OCTET_STRING );
768 
769  /* Parse response */
770  if ( ( rc = ocsp_parse_basic_response ( ocsp, &cursor ) ) != 0 )
771  return rc;
772 
773  return 0;
774 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
static int ocsp_parse_basic_response(struct ocsp_check *ocsp, const struct asn1_cursor *raw)
Parse OCSP basic response.
Definition: ocsp.c:700
int asn1_enter(struct asn1_cursor *cursor, unsigned int type)
Enter ASN.1 object.
Definition: asn1.c:160
int asn1_skip_any(struct asn1_cursor *cursor)
Skip ASN.1 object of any type.
Definition: asn1.c:276
static int ocsp_parse_response_type(struct ocsp_check *ocsp, const struct asn1_cursor *raw)
Parse OCSP response type.
Definition: ocsp.c:364
void * memcpy(void *dest, const void *src, size_t len) __nonnull
#define ASN1_SEQUENCE
ASN.1 sequence.
Definition: asn1.h:89
__be32 raw[7]
Definition: CIB_PRM.h:28
#define ASN1_EXPLICIT_TAG(number)
ASN.1 explicit tag.
Definition: asn1.h:98
#define ASN1_OCTET_STRING
ASN.1 octet string.
Definition: asn1.h:68
An ASN.1 object cursor.
Definition: asn1.h:20

References asn1_enter(), ASN1_EXPLICIT_TAG, ASN1_OCTET_STRING, ASN1_SEQUENCE, asn1_skip_any(), memcpy(), ocsp_parse_basic_response(), ocsp_parse_response_type(), raw, and rc.

Referenced by ocsp_parse_response().

◆ ocsp_parse_response()

static int ocsp_parse_response ( struct ocsp_check ocsp,
const struct asn1_cursor raw 
)
static

Parse OCSP response.

Parameters
ocspOCSP check
rawASN.1 cursor
Return values
rcReturn status code

Definition at line 783 of file ocsp.c.

784  {
785  struct asn1_cursor cursor;
786  int rc;
787 
788  /* Enter OCSPResponse */
789  memcpy ( &cursor, raw, sizeof ( cursor ) );
790  asn1_enter ( &cursor, ASN1_SEQUENCE );
791 
792  /* Parse responseStatus */
793  if ( ( rc = ocsp_parse_response_status ( ocsp, &cursor ) ) != 0 )
794  return rc;
795  asn1_skip_any ( &cursor );
796 
797  /* Parse responseBytes */
798  if ( ( rc = ocsp_parse_response_bytes ( ocsp, &cursor ) ) != 0 )
799  return rc;
800 
801  return 0;
802 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
int asn1_enter(struct asn1_cursor *cursor, unsigned int type)
Enter ASN.1 object.
Definition: asn1.c:160
static int ocsp_parse_response_bytes(struct ocsp_check *ocsp, const struct asn1_cursor *raw)
Parse OCSP response bytes.
Definition: ocsp.c:751
int asn1_skip_any(struct asn1_cursor *cursor)
Skip ASN.1 object of any type.
Definition: asn1.c:276
void * memcpy(void *dest, const void *src, size_t len) __nonnull
#define ASN1_SEQUENCE
ASN.1 sequence.
Definition: asn1.h:89
static int ocsp_parse_response_status(struct ocsp_check *ocsp, const struct asn1_cursor *raw)
Parse OCSP response status.
Definition: ocsp.c:324
__be32 raw[7]
Definition: CIB_PRM.h:28
An ASN.1 object cursor.
Definition: asn1.h:20

References asn1_enter(), ASN1_SEQUENCE, asn1_skip_any(), memcpy(), ocsp_parse_response_bytes(), ocsp_parse_response_status(), raw, and rc.

Referenced by ocsp_response().

◆ ocsp_response()

int ocsp_response ( struct ocsp_check ocsp,
const void *  data,
size_t  len 
)

Receive OCSP response.

Parameters
ocspOCSP check
dataResponse data
lenLength of response data
Return values
rcReturn status code

Definition at line 812 of file ocsp.c.

812  {
813  struct ocsp_response *response = &ocsp->response;
814  struct asn1_cursor cursor;
815  int rc;
816 
817  /* Duplicate data */
818  x509_put ( response->signer );
819  response->signer = NULL;
820  free ( response->data );
821  response->data = malloc ( len );
822  if ( ! response->data )
823  return -ENOMEM;
824  memcpy ( response->data, data, len );
825  cursor.data = response->data;
826  cursor.len = len;
827 
828  /* Parse response */
829  if ( ( rc = ocsp_parse_response ( ocsp, &cursor ) ) != 0 )
830  return rc;
831 
832  return 0;
833 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
struct x509_certificate * signer
Signing certificate.
Definition: ocsp.h:81
struct ocsp_response response
Response.
Definition: ocsp.h:97
#define ENOMEM
Not enough space.
Definition: errno.h:534
void * memcpy(void *dest, const void *src, size_t len) __nonnull
static int ocsp_parse_response(struct ocsp_check *ocsp, const struct asn1_cursor *raw)
Parse OCSP response.
Definition: ocsp.c:783
static void(* free)(struct refcnt *refcnt))
Definition: refcnt.h:54
void * data
Raw response.
Definition: ocsp.h:67
void * malloc(size_t size)
Allocate memory.
Definition: malloc.c:583
An OCSP response.
Definition: ocsp.h:65
uint32_t len
Length.
Definition: ena.h:14
static void x509_put(struct x509_certificate *cert)
Drop reference to X.509 certificate.
Definition: x509.h:269
uint8_t data[48]
Additional event data.
Definition: ena.h:22
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
An ASN.1 object cursor.
Definition: asn1.h:20

References data, asn1_cursor::data, ocsp_response::data, ENOMEM, free, len, asn1_cursor::len, malloc(), memcpy(), NULL, ocsp_parse_response(), rc, ocsp_check::response, ocsp_response::signer, and x509_put().

◆ ocsp_check_signature()

static int ocsp_check_signature ( struct ocsp_check ocsp,
struct x509_certificate signer 
)
static

Check OCSP response signature.

Parameters
ocspOCSP check
signerSigning certificate
Return values
rcReturn status code

Definition at line 842 of file ocsp.c.

843  {
844  struct ocsp_response *response = &ocsp->response;
845  struct digest_algorithm *digest = response->algorithm->digest;
846  struct pubkey_algorithm *pubkey = response->algorithm->pubkey;
847  struct x509_public_key *public_key = &signer->subject.public_key;
848  uint8_t digest_ctx[ digest->ctxsize ];
849  uint8_t digest_out[ digest->digestsize ];
850  uint8_t pubkey_ctx[ pubkey->ctxsize ];
851  int rc;
852 
853  /* Generate digest */
854  digest_init ( digest, digest_ctx );
855  digest_update ( digest, digest_ctx, response->tbs.data,
856  response->tbs.len );
857  digest_final ( digest, digest_ctx, digest_out );
858 
859  /* Initialise public-key algorithm */
860  if ( ( rc = pubkey_init ( pubkey, pubkey_ctx, public_key->raw.data,
861  public_key->raw.len ) ) != 0 ) {
862  DBGC ( ocsp, "OCSP %p \"%s\" could not initialise public key: "
863  "%s\n", ocsp, x509_name ( ocsp->cert ), strerror ( rc ));
864  goto err_init;
865  }
866 
867  /* Verify digest */
868  if ( ( rc = pubkey_verify ( pubkey, pubkey_ctx, digest, digest_out,
869  response->signature.data,
870  response->signature.len ) ) != 0 ) {
871  DBGC ( ocsp, "OCSP %p \"%s\" signature verification failed: "
872  "%s\n", ocsp, x509_name ( ocsp->cert ), strerror ( rc ));
873  goto err_verify;
874  }
875 
876  DBGC2 ( ocsp, "OCSP %p \"%s\" signature is correct\n",
877  ocsp, x509_name ( ocsp->cert ) );
878 
879  err_verify:
880  pubkey_final ( pubkey, pubkey_ctx );
881  err_init:
882  return rc;
883 }
const void * data
Data.
Definition: asn1.h:356
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
struct ocsp_response response
Response.
Definition: ocsp.h:97
struct x509_certificate * cert
Certificate being checked.
Definition: ocsp.h:89
const void * data
Start of data.
Definition: asn1.h:22
#define DBGC(...)
Definition: compiler.h:505
struct asn1_algorithm * algorithm
Signature algorithm.
Definition: ocsp.h:77
size_t ctxsize
Context size.
Definition: crypto.h:124
size_t len
Length of data.
Definition: asn1.h:24
struct pubkey_algorithm * pubkey
Public-key algorithm (if applicable)
Definition: asn1.h:317
struct asn1_bit_string signature
Signature value.
Definition: ocsp.h:79
static const void size_t const void * public_key
Definition: crypto.h:327
struct asn1_cursor tbs
Raw tbsResponseData.
Definition: ocsp.h:69
static void struct digest_algorithm * digest
HMAC-MD5 digest.
Definition: crypto.h:308
An X.509 certificate public key.
Definition: x509.h:48
struct x509_public_key public_key
Public key information.
Definition: x509.h:64
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
struct x509_subject subject
Subject.
Definition: x509.h:236
size_t len
Length.
Definition: asn1.h:358
unsigned char uint8_t
Definition: stdint.h:10
An OCSP response.
Definition: ocsp.h:65
const char * x509_name(struct x509_certificate *cert)
Get X.509 certificate display name.
Definition: x509.c:145
size_t ctxsize
Context size.
Definition: crypto.h:21
struct digest_algorithm * digest
Digest algorithm (if applicable)
Definition: asn1.h:319
#define DBGC2(...)
Definition: compiler.h:522
size_t digestsize
Digest size.
Definition: crypto.h:25
A message digest algorithm.
Definition: crypto.h:17
A public key algorithm.
Definition: crypto.h:120

References ocsp_response::algorithm, ocsp_check::cert, digest_algorithm::ctxsize, pubkey_algorithm::ctxsize, asn1_cursor::data, asn1_bit_string::data, DBGC, DBGC2, digest, asn1_algorithm::digest, digest_algorithm::digestsize, asn1_cursor::len, asn1_bit_string::len, asn1_algorithm::pubkey, x509_subject::public_key, public_key, rc, ocsp_check::response, ocsp_response::signature, strerror(), x509_certificate::subject, ocsp_response::tbs, and x509_name().

Referenced by ocsp_validate().

◆ ocsp_validate()

int ocsp_validate ( struct ocsp_check ocsp,
time_t  time 
)

Validate OCSP response.

Parameters
ocspOCSP check
timeTime at which to validate response
Return values
rcReturn status code

Definition at line 892 of file ocsp.c.

892  {
893  struct ocsp_response *response = &ocsp->response;
894  struct x509_certificate *signer;
895  int rc;
896 
897  /* Sanity checks */
898  assert ( response->data != NULL );
899 
900  /* The response may include a signer certificate; if this is
901  * not present then the response must have been signed
902  * directly by the issuer.
903  */
904  signer = ( response->signer ? response->signer : ocsp->issuer );
905 
906  /* Validate signer, if applicable. If the signer is not the
907  * issuer, then it must be signed directly by the issuer.
908  */
909  if ( signer != ocsp->issuer ) {
910  /* Forcibly invalidate the signer, since we need to
911  * ensure that it was signed by our issuer (and not
912  * some other issuer). This prevents a sub-CA's OCSP
913  * certificate from fraudulently signing OCSP
914  * responses from the parent CA.
915  */
916  x509_invalidate ( signer );
917  if ( ( rc = x509_validate ( signer, ocsp->issuer, time,
918  ocsp->issuer->root ) ) != 0 ) {
919  DBGC ( ocsp, "OCSP %p \"%s\" could not validate ",
920  ocsp, x509_name ( ocsp->cert ) );
921  DBGC ( ocsp, "signer \"%s\": %s\n",
922  x509_name ( signer ), strerror ( rc ) );
923  return rc;
924  }
925 
926  /* If signer is not the issuer, then it must have the
927  * extendedKeyUsage id-kp-OCSPSigning.
928  */
929  if ( ! ( signer->extensions.ext_usage.bits &
930  X509_OCSP_SIGNING ) ) {
931  DBGC ( ocsp, "OCSP %p \"%s\" ",
932  ocsp, x509_name ( ocsp->cert ) );
933  DBGC ( ocsp, "signer \"%s\" is not an OCSP-signing "
934  "certificate\n", x509_name ( signer ) );
935  return -EACCES_NON_OCSP_SIGNING;
936  }
937  }
938 
939  /* Check OCSP response signature */
940  if ( ( rc = ocsp_check_signature ( ocsp, signer ) ) != 0 )
941  return rc;
942 
943  /* Check OCSP response is valid at the specified time
944  * (allowing for some margin of error).
945  */
946  if ( response->this_update > ( time + TIMESTAMP_ERROR_MARGIN ) ) {
947  DBGC ( ocsp, "OCSP %p \"%s\" response is not yet valid (at "
948  "time %lld)\n", ocsp, x509_name ( ocsp->cert ), time );
949  return -EACCES_STALE;
950  }
951  if ( response->next_update < ( time - TIMESTAMP_ERROR_MARGIN ) ) {
952  DBGC ( ocsp, "OCSP %p \"%s\" response is stale (at time "
953  "%lld)\n", ocsp, x509_name ( ocsp->cert ), time );
954  return -EACCES_STALE;
955  }
956  DBGC2 ( ocsp, "OCSP %p \"%s\" response is valid (at time %lld)\n",
957  ocsp, x509_name ( ocsp->cert ), time );
958 
959  /* Mark certificate as passing OCSP verification */
960  ocsp->cert->extensions.auth_info.ocsp.good = 1;
961 
962  /* Validate certificate against issuer */
963  if ( ( rc = x509_validate ( ocsp->cert, ocsp->issuer, time,
964  ocsp->issuer->root ) ) != 0 ) {
965  DBGC ( ocsp, "OCSP %p \"%s\" could not validate certificate: "
966  "%s\n", ocsp, x509_name ( ocsp->cert ), strerror ( rc ));
967  return rc;
968  }
969  DBGC ( ocsp, "OCSP %p \"%s\" successfully validated ",
970  ocsp, x509_name ( ocsp->cert ) );
971  DBGC ( ocsp, "using \"%s\"\n", x509_name ( signer ) );
972 
973  return 0;
974 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
struct x509_extended_key_usage ext_usage
Extended key usage.
Definition: x509.h:161
int good
OCSP status is good.
Definition: x509.h:132
unsigned int bits
Usage bits.
Definition: x509.h:114
time_t next_update
Time at which newer status information will be available.
Definition: ocsp.h:75
struct x509_certificate * signer
Signing certificate.
Definition: ocsp.h:81
struct ocsp_response response
Response.
Definition: ocsp.h:97
struct x509_certificate * cert
Certificate being checked.
Definition: ocsp.h:89
#define DBGC(...)
Definition: compiler.h:505
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
struct x509_root * root
Root against which certificate has been validated (if any)
Definition: x509.h:217
int x509_validate(struct x509_certificate *cert, struct x509_certificate *issuer, time_t time, struct x509_root *root)
Validate X.509 certificate.
Definition: x509.c:1371
#define EACCES_NON_OCSP_SIGNING
Definition: ocsp.c:52
struct x509_authority_info_access auth_info
Authority information access.
Definition: x509.h:163
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
An X.509 certificate.
Definition: x509.h:207
struct x509_certificate * issuer
Issuing certificate.
Definition: ocsp.h:91
time_t this_update
Time at which status is known to be correct.
Definition: ocsp.h:73
void * data
Raw response.
Definition: ocsp.h:67
An OCSP response.
Definition: ocsp.h:65
const char * x509_name(struct x509_certificate *cert)
Get X.509 certificate display name.
Definition: x509.c:145
#define TIMESTAMP_ERROR_MARGIN
Margin of error (in seconds) allowed in signed timestamps.
Definition: crypto.h:69
#define DBGC2(...)
Definition: compiler.h:522
#define EACCES_STALE
Definition: ocsp.c:57
uint64_t time
Current time.
Definition: ntlm.h:20
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
struct x509_ocsp_responder ocsp
OCSP responder.
Definition: x509.h:138
static int ocsp_check_signature(struct ocsp_check *ocsp, struct x509_certificate *signer)
Check OCSP response signature.
Definition: ocsp.c:842
struct x509_extensions extensions
Extensions.
Definition: x509.h:240
static void x509_invalidate(struct x509_certificate *cert)
Invalidate X.509 certificate.
Definition: x509.h:450

References assert(), x509_extensions::auth_info, x509_extended_key_usage::bits, ocsp_check::cert, ocsp_response::data, DBGC, DBGC2, EACCES_NON_OCSP_SIGNING, EACCES_STALE, x509_extensions::ext_usage, x509_certificate::extensions, x509_ocsp_responder::good, ocsp_check::issuer, ocsp_response::next_update, NULL, x509_authority_info_access::ocsp, ocsp_check_signature(), rc, ocsp_check::response, x509_certificate::root, ocsp_response::signer, strerror(), ocsp_response::this_update, time, TIMESTAMP_ERROR_MARGIN, x509_invalidate(), x509_name(), X509_OCSP_SIGNING, and x509_validate().

Referenced by validator_ocsp_validate().

Variable Documentation

◆ ocsp_algorithm_id

const uint8_t ocsp_algorithm_id[]
static
Initial value:
=
#define OCSP_ALGORITHM_IDENTIFIER(...)
OCSP algorithm identifier.
Definition: ocsp.h:27
#define ASN1_OID_SHA1
ASN.1 OID for id-sha1 (1.3.14.3.2.26)
Definition: asn1.h:185

OCSP digest algorithm identifier.

Definition at line 111 of file ocsp.c.

Referenced by ocsp_parse_cert_id(), and ocsp_request().

◆ oid_basic_response_type

const uint8_t oid_basic_response_type[] = { ASN1_OID_OCSP_BASIC }
static

OCSP basic response type.

Definition at line 115 of file ocsp.c.

◆ oid_basic_response_type_cursor

struct asn1_cursor oid_basic_response_type_cursor
static
Initial value:
=
#define ASN1_CURSOR(value)
Define an ASN.1 cursor for a static value.
Definition: asn1.h:305
static const uint8_t oid_basic_response_type[]
OCSP basic response type.
Definition: ocsp.c:115

OCSP basic response type cursor.

Definition at line 118 of file ocsp.c.

Referenced by ocsp_parse_response_type().