iPXE
Functions
hmac_drbg.c File Reference

HMAC_DRBG algorithm. More...

#include <stdint.h>
#include <string.h>
#include <errno.h>
#include <assert.h>
#include <ipxe/crypto.h>
#include <ipxe/hmac.h>
#include <ipxe/hmac_drbg.h>

Go to the source code of this file.

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
static void hmac_drbg_update_key (struct digest_algorithm *hash, struct hmac_drbg_state *state, const void *data, size_t len, const uint8_t single)
 Update the HMAC_DRBG key. More...
 
static void hmac_drbg_update_value (struct digest_algorithm *hash, struct hmac_drbg_state *state)
 Update the HMAC_DRBG value. More...
 
static void hmac_drbg_update (struct digest_algorithm *hash, struct hmac_drbg_state *state, const void *data, size_t len)
 Update HMAC_DRBG internal state. More...
 
void hmac_drbg_instantiate (struct digest_algorithm *hash, struct hmac_drbg_state *state, const void *entropy, size_t entropy_len, const void *personal, size_t personal_len)
 Instantiate HMAC_DRBG. More...
 
void hmac_drbg_reseed (struct digest_algorithm *hash, struct hmac_drbg_state *state, const void *entropy, size_t entropy_len, const void *additional, size_t additional_len)
 Reseed HMAC_DRBG. More...
 
int hmac_drbg_generate (struct digest_algorithm *hash, struct hmac_drbg_state *state, const void *additional, size_t additional_len, void *data, size_t len)
 Generate pseudorandom bits using HMAC_DRBG. More...
 

Detailed Description

HMAC_DRBG algorithm.

This algorithm is designed to comply with ANS X9.82 Part 3-2007 Section 10.2.2.2. This standard is not freely available, but most of the text appears to be shared with NIST SP 800-90, which can be downloaded from

http://csrc.nist.gov/publications/nistpubs/800-90/SP800-90revised_March2007.pdf

Where possible, references are given to both documents. In the case of any disagreement, ANS X9.82 takes priority over NIST SP 800-90. (In particular, note that some algorithms that are Approved by NIST SP 800-90 are not Approved by ANS X9.82.)

Definition in file hmac_drbg.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ hmac_drbg_update_key()

static void hmac_drbg_update_key ( struct digest_algorithm hash,
struct hmac_drbg_state state,
const void *  data,
size_t  len,
const uint8_t  single 
)
static

Update the HMAC_DRBG key.

Parameters
hashUnderlying hash algorithm
stateHMAC_DRBG internal state
dataProvided data
lenLength of provided data
singleSingle byte used in concatenation

This function carries out the operation

K = HMAC ( K, V || single || provided_data )

as used by hmac_drbg_update()

Definition at line 78 of file hmac_drbg.c.

81  {
82  uint8_t context[ hmac_ctxsize ( hash ) ];
83  size_t out_len = hash->digestsize;
84 
85  DBGC ( state, "HMAC_DRBG_%s %p provided data :\n", hash->name, state );
86  DBGC_HDA ( state, 0, data, len );
87 
88  /* Sanity checks */
89  assert ( hash != NULL );
90  assert ( state != NULL );
91  assert ( ( data != NULL ) || ( len == 0 ) );
92  assert ( ( single == 0x00 ) || ( single == 0x01 ) );
93 
94  /* K = HMAC ( K, V || single || provided_data ) */
95  hmac_init ( hash, context, state->key, out_len );
96  hmac_update ( hash, context, state->value, out_len );
97  hmac_update ( hash, context, &single, sizeof ( single ) );
98  hmac_update ( hash, context, data, len );
99  hmac_final ( hash, context, state->key );
100 
101  DBGC ( state, "HMAC_DRBG_%s %p K = HMAC ( K, V || %#02x || "
102  "provided_data ) :\n", hash->name, state, single );
103  DBGC_HDA ( state, 0, state->key, out_len );
104 }
void hmac_init(struct digest_algorithm *digest, void *ctx, const void *key, size_t key_len)
Initialise HMAC.
Definition: hmac.c:57
uint8_t state
State.
Definition: eth_slow.h:47
#define DBGC(...)
Definition: compiler.h:505
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
#define DBGC_HDA(...)
Definition: compiler.h:506
static void hmac_update(struct digest_algorithm *digest, void *ctx, const void *data, size_t len)
Update HMAC.
Definition: hmac.h:42
pseudo_bit_t hash[0x00010]
Hash algorithm.
Definition: arbel.h:13
unsigned char uint8_t
Definition: stdint.h:10
uint32_t len
Length.
Definition: ena.h:14
uint8_t data[48]
Additional event data.
Definition: ena.h:22
void hmac_final(struct digest_algorithm *digest, void *ctx, void *hmac)
Finalise HMAC.
Definition: hmac.c:87
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

References assert(), data, DBGC, DBGC_HDA, hash, hmac_final(), hmac_init(), hmac_update(), len, NULL, and state.

Referenced by hmac_drbg_update().

◆ hmac_drbg_update_value()

static void hmac_drbg_update_value ( struct digest_algorithm hash,
struct hmac_drbg_state state 
)
static

Update the HMAC_DRBG value.

Parameters
hashUnderlying hash algorithm
stateHMAC_DRBG internal state
dataProvided data
lenLength of provided data
singleSingle byte used in concatenation

This function carries out the operation

V = HMAC ( K, V )

as used by hmac_drbg_update() and hmac_drbg_generate()

Definition at line 121 of file hmac_drbg.c.

122  {
123  uint8_t context[ hmac_ctxsize ( hash ) ];
124  size_t out_len = hash->digestsize;
125 
126  /* Sanity checks */
127  assert ( hash != NULL );
128  assert ( state != NULL );
129 
130  /* V = HMAC ( K, V ) */
131  hmac_init ( hash, context, state->key, out_len );
132  hmac_update ( hash, context, state->value, out_len );
133  hmac_final ( hash, context, state->value );
134 
135  DBGC ( state, "HMAC_DRBG_%s %p V = HMAC ( K, V ) :\n",
136  hash->name, state );
137  DBGC_HDA ( state, 0, state->value, out_len );
138 }
void hmac_init(struct digest_algorithm *digest, void *ctx, const void *key, size_t key_len)
Initialise HMAC.
Definition: hmac.c:57
uint8_t state
State.
Definition: eth_slow.h:47
#define DBGC(...)
Definition: compiler.h:505
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
#define DBGC_HDA(...)
Definition: compiler.h:506
static void hmac_update(struct digest_algorithm *digest, void *ctx, const void *data, size_t len)
Update HMAC.
Definition: hmac.h:42
pseudo_bit_t hash[0x00010]
Hash algorithm.
Definition: arbel.h:13
unsigned char uint8_t
Definition: stdint.h:10
void hmac_final(struct digest_algorithm *digest, void *ctx, void *hmac)
Finalise HMAC.
Definition: hmac.c:87
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

References assert(), DBGC, DBGC_HDA, hash, hmac_final(), hmac_init(), hmac_update(), NULL, and state.

Referenced by hmac_drbg_generate(), and hmac_drbg_update().

◆ hmac_drbg_update()

static void hmac_drbg_update ( struct digest_algorithm hash,
struct hmac_drbg_state state,
const void *  data,
size_t  len 
)
static

Update HMAC_DRBG internal state.

Parameters
hashUnderlying hash algorithm
stateHMAC_DRBG internal state
dataProvided data
lenLength of provided data

This is the HMAC_DRBG_Update function defined in ANS X9.82 Part 3-2007 Section 10.2.2.2.2 (NIST SP 800-90 Section 10.1.2.2).

The key and value are updated in-place within the HMAC_DRBG internal state.

Definition at line 154 of file hmac_drbg.c.

156  {
157 
158  DBGC ( state, "HMAC_DRBG_%s %p update\n", hash->name, state );
159 
160  /* Sanity checks */
161  assert ( hash != NULL );
162  assert ( state != NULL );
163  assert ( ( data != NULL ) || ( len == 0 ) );
164 
165  /* 1. K = HMAC ( K, V || 0x00 || provided_data ) */
166  hmac_drbg_update_key ( hash, state, data, len, 0x00 );
167 
168  /* 2. V = HMAC ( K, V ) */
170 
171  /* 3. If ( provided_data = Null ), then return K and V */
172  if ( ! len )
173  return;
174 
175  /* 4. K = HMAC ( K, V || 0x01 || provided_data ) */
176  hmac_drbg_update_key ( hash, state, data, len, 0x01 );
177 
178  /* 5. V = HMAC ( K, V ) */
180 
181  /* 6. Return K and V */
182 }
uint8_t state
State.
Definition: eth_slow.h:47
#define DBGC(...)
Definition: compiler.h:505
static void hmac_drbg_update_key(struct digest_algorithm *hash, struct hmac_drbg_state *state, const void *data, size_t len, const uint8_t single)
Update the HMAC_DRBG key.
Definition: hmac_drbg.c:78
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
static void hmac_drbg_update_value(struct digest_algorithm *hash, struct hmac_drbg_state *state)
Update the HMAC_DRBG value.
Definition: hmac_drbg.c:121
pseudo_bit_t hash[0x00010]
Hash algorithm.
Definition: arbel.h:13
uint32_t len
Length.
Definition: ena.h:14
uint8_t data[48]
Additional event data.
Definition: ena.h:22
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

References assert(), data, DBGC, hash, hmac_drbg_update_key(), hmac_drbg_update_value(), len, NULL, and state.

Referenced by hmac_drbg_generate(), and hmac_drbg_reseed().

◆ hmac_drbg_instantiate()

void hmac_drbg_instantiate ( struct digest_algorithm hash,
struct hmac_drbg_state state,
const void *  entropy,
size_t  entropy_len,
const void *  personal,
size_t  personal_len 
)

Instantiate HMAC_DRBG.

Parameters
hashUnderlying hash algorithm
stateHMAC_DRBG internal state to be initialised
entropyEntropy input
entropy_lenLength of entropy input
personalPersonalisation string
personal_lenLength of personalisation string

This is the HMAC_DRBG_Instantiate_algorithm function defined in ANS X9.82 Part 3-2007 Section 10.2.2.2.3 (NIST SP 800-90 Section 10.1.2.3).

The nonce must be included within the entropy input (i.e. the entropy input must contain at least 3/2 * security_strength bits of entropy, as per ANS X9.82 Part 3-2007 Section 8.4.2 (NIST SP 800-90 Section 8.6.7).

The key, value and reseed counter are updated in-place within the HMAC_DRBG internal state.

Definition at line 206 of file hmac_drbg.c.

209  {
210  size_t out_len = hash->digestsize;
211 
212  DBGC ( state, "HMAC_DRBG_%s %p instantiate\n", hash->name, state );
213 
214  /* Sanity checks */
215  assert ( hash != NULL );
216  assert ( state != NULL );
217  assert ( entropy != NULL );
218  assert ( ( personal != NULL ) || ( personal_len == 0 ) );
219 
220  /* 1. seed_material = entropy_input || nonce ||
221  * personalisation_string
222  */
223 
224  /* 2. Key = 0x00 00..00 */
225  memset ( state->key, 0x00, out_len );
226 
227  /* 3. V = 0x01 01...01 */
228  memset ( state->value, 0x01, out_len );
229 
230  /* 4. ( Key, V ) = HMAC_DBRG_Update ( seed_material, Key, V )
231  * 5. reseed_counter = 1
232  * 6. Return V, Key and reseed_counter as the
233  * initial_working_state
234  */
235  hmac_drbg_reseed ( hash, state, entropy, entropy_len,
236  personal, personal_len );
237 }
uint8_t state
State.
Definition: eth_slow.h:47
#define DBGC(...)
Definition: compiler.h:505
void hmac_drbg_reseed(struct digest_algorithm *hash, struct hmac_drbg_state *state, const void *entropy, size_t entropy_len, const void *additional, size_t additional_len)
Reseed HMAC_DRBG.
Definition: hmac_drbg.c:255
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
pseudo_bit_t hash[0x00010]
Hash algorithm.
Definition: arbel.h:13
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
void * memset(void *dest, int character, size_t len) __nonnull

References assert(), DBGC, hash, hmac_drbg_reseed(), memset(), NULL, and state.

Referenced by drbg_instantiate_algorithm().

◆ hmac_drbg_reseed()

void hmac_drbg_reseed ( struct digest_algorithm hash,
struct hmac_drbg_state state,
const void *  entropy,
size_t  entropy_len,
const void *  additional,
size_t  additional_len 
)

Reseed HMAC_DRBG.

Parameters
hashUnderlying hash algorithm
stateHMAC_DRBG internal state
entropyEntropy input
entropy_lenLength of entropy input
additionalAdditional input
additional_lenLength of additional input

This is the HMAC_DRBG_Reseed_algorithm function defined in ANS X9.82 Part 3-2007 Section 10.2.2.2.4 (NIST SP 800-90 Section 10.1.2.4).

The key, value and reseed counter are updated in-place within the HMAC_DRBG internal state.

Definition at line 255 of file hmac_drbg.c.

258  {
259  uint8_t seed_material[ entropy_len + additional_len ];
260 
261  DBGC ( state, "HMAC_DRBG_%s %p (re)seed\n", hash->name, state );
262 
263  /* Sanity checks */
264  assert ( hash != NULL );
265  assert ( state != NULL );
266  assert ( entropy != NULL );
267  assert ( ( additional != NULL ) || ( additional_len == 0 ) );
268 
269  /* 1. seed_material = entropy_input || additional_input */
270  memcpy ( seed_material, entropy, entropy_len );
271  memcpy ( ( seed_material + entropy_len ), additional, additional_len );
272  DBGC ( state, "HMAC_DRBG_%s %p seed material :\n", hash->name, state );
273  DBGC_HDA ( state, 0, seed_material, sizeof ( seed_material ) );
274 
275  /* 2. ( Key, V ) = HMAC_DBRG_Update ( seed_material, Key, V ) */
276  hmac_drbg_update ( hash, state, seed_material,
277  sizeof ( seed_material ) );
278 
279  /* 3. reseed_counter = 1 */
280  state->reseed_counter = 1;
281 
282  /* 4. Return V, Key and reseed_counter as the new_working_state */
283 }
uint8_t state
State.
Definition: eth_slow.h:47
#define DBGC(...)
Definition: compiler.h:505
void * memcpy(void *dest, const void *src, size_t len) __nonnull
uint16_t additional
Additional sense code and qualifier.
Definition: scsi.h:28
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
#define DBGC_HDA(...)
Definition: compiler.h:506
pseudo_bit_t hash[0x00010]
Hash algorithm.
Definition: arbel.h:13
unsigned char uint8_t
Definition: stdint.h:10
static void hmac_drbg_update(struct digest_algorithm *hash, struct hmac_drbg_state *state, const void *data, size_t len)
Update HMAC_DRBG internal state.
Definition: hmac_drbg.c:154
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

References additional, assert(), DBGC, DBGC_HDA, hash, hmac_drbg_update(), memcpy(), NULL, and state.

Referenced by drbg_reseed_algorithm(), and hmac_drbg_instantiate().

◆ hmac_drbg_generate()

int hmac_drbg_generate ( struct digest_algorithm hash,
struct hmac_drbg_state state,
const void *  additional,
size_t  additional_len,
void *  data,
size_t  len 
)

Generate pseudorandom bits using HMAC_DRBG.

Parameters
hashUnderlying hash algorithm
stateHMAC_DRBG internal state
additionalAdditional input
additional_lenLength of additional input
dataOutput buffer
lenLength of output buffer
Return values
rcReturn status code

This is the HMAC_DRBG_Generate_algorithm function defined in ANS X9.82 Part 3-2007 Section 10.2.2.2.5 (NIST SP 800-90 Section 10.1.2.5).

Requests must be for an integral number of bytes.

The key, value and reseed counter are updated in-place within the HMAC_DRBG internal state.

Note that the only permitted error is "reseed required".

Definition at line 306 of file hmac_drbg.c.

309  {
310  size_t out_len = hash->digestsize;
311  void *orig_data = data;
312  size_t orig_len = len;
313  size_t frag_len;
314 
315  DBGC ( state, "HMAC_DRBG_%s %p generate\n", hash->name, state );
316 
317  /* Sanity checks */
318  assert ( hash != NULL );
319  assert ( state != NULL );
320  assert ( data != NULL );
321  assert ( ( additional != NULL ) || ( additional_len == 0 ) );
322 
323  /* 1. If reseed_counter > reseed_interval, then return an
324  * indication that a reseed is required
325  */
326  if ( state->reseed_counter > HMAC_DRBG_RESEED_INTERVAL ) {
327  DBGC ( state, "HMAC_DRBG_%s %p reseed interval exceeded\n",
328  hash->name, state );
329  return -ESTALE;
330  }
331 
332  /* 2. If additional_input != Null, then
333  * ( Key, V ) = HMAC_DRBG_Update ( additional_input, Key, V )
334  */
335  if ( additional_len )
336  hmac_drbg_update ( hash, state, additional, additional_len );
337 
338  /* 3. temp = Null
339  * 4. While ( len ( temp ) < requested_number_of_bits ) do:
340  */
341  while ( len ) {
342 
343  /* 4.1 V = HMAC ( Key, V ) */
345 
346  /* 4.2. temp = temp || V
347  * 5. returned_bits = Leftmost requested_number_of_bits
348  * of temp
349  */
350  frag_len = len;
351  if ( frag_len > out_len )
352  frag_len = out_len;
353  memcpy ( data, state->value, frag_len );
354  data += frag_len;
355  len -= frag_len;
356  }
357 
358  /* 6. ( Key, V ) = HMAC_DRBG_Update ( additional_input, Key, V ) */
359  hmac_drbg_update ( hash, state, additional, additional_len );
360 
361  /* 7. reseed_counter = reseed_counter + 1 */
362  state->reseed_counter++;
363 
364  DBGC ( state, "HMAC_DRBG_%s %p generated :\n", hash->name, state );
365  DBGC_HDA ( state, 0, orig_data, orig_len );
366 
367  /* 8. Return SUCCESS, returned_bits, and the new values of
368  * Key, V and reseed_counter as the new_working_state
369  */
370  return 0;
371 }
uint8_t state
State.
Definition: eth_slow.h:47
#define DBGC(...)
Definition: compiler.h:505
void * memcpy(void *dest, const void *src, size_t len) __nonnull
uint16_t additional
Additional sense code and qualifier.
Definition: scsi.h:28
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
#define DBGC_HDA(...)
Definition: compiler.h:506
static void hmac_drbg_update_value(struct digest_algorithm *hash, struct hmac_drbg_state *state)
Update the HMAC_DRBG value.
Definition: hmac_drbg.c:121
#define HMAC_DRBG_RESEED_INTERVAL
Reseed interval.
Definition: hmac_drbg.h:206
pseudo_bit_t hash[0x00010]
Hash algorithm.
Definition: arbel.h:13
uint32_t len
Length.
Definition: ena.h:14
uint8_t data[48]
Additional event data.
Definition: ena.h:22
static void hmac_drbg_update(struct digest_algorithm *hash, struct hmac_drbg_state *state, const void *data, size_t len)
Update HMAC_DRBG internal state.
Definition: hmac_drbg.c:154
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
#define ESTALE
Stale file handle.
Definition: errno.h:659

References additional, assert(), data, DBGC, DBGC_HDA, ESTALE, hash, HMAC_DRBG_RESEED_INTERVAL, hmac_drbg_update(), hmac_drbg_update_value(), len, memcpy(), NULL, and state.

Referenced by drbg_generate_algorithm().