summaryrefslogtreecommitdiff
path: root/test/tpm_test/trng_test.py
blob: c4d9395e803eba49fd0d8c4137f7a9e50ba08985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Tests for trng."""
from __future__ import print_function
import struct

import subcmd
import utils

TRNG_TEST_FMT = '>H'
TRNG_TEST_RSP_FMT = '>H2IH'
TRNG_TEST_CC = 0x33
TRNG_SAMPLE_SIZE = 1000 # minimal recommended by NIST is 1000 bytes per sample
TRNG_SAMPLE_COUNT = 1000 # NIST require at least 1000000 of 8-bit samples

def get_random_command(size):
    """Encode get_random command"""
    return struct.pack(TRNG_TEST_FMT, size)

def get_random_command_rsp(size):
    """Create expected response to get_random"""
    return struct.pack(TRNG_TEST_RSP_FMT, 0x8001,
                       struct.calcsize(TRNG_TEST_RSP_FMT) + size,
                       0, TRNG_TEST_CC)


def trng_test(tpm):
    """Download entropy samples from TRNG

    Command structure, shared out of band with the test running on the target:

    field     |    size  |                  note
    ===================================================================
    text_len  |    2     | size of the text to process, big endian

    Args:
        tpm: a tpm object used to communicate with the device

    Raises:
        subcmd.TpmTestError: on unexpected target responses
    """
    with open('/tmp/trng_output', 'wb') as out_file:
        for block in range(0, TRNG_SAMPLE_COUNT):
            response = tpm.command(tpm.wrap_ext_command(TRNG_TEST_CC,
                                   get_random_command(TRNG_SAMPLE_SIZE)))
            if response[:12] != get_random_command_rsp(TRNG_SAMPLE_SIZE):
                raise subcmd.TpmTestError("Unexpected response to \'%s\': %s" %
                                          ('trng', utils.hex_dump(response)))
            out_file.write(response[12:])
            print('%s %d%%\r' % (utils.cursor_back(), (block//10)), end='')
    print('%sSUCCESS: %s' % (utils.cursor_back(), 'trng'))