test 3.47 KB
Newer Older
1 2 3 4 5
#!/usr/bin/env python3

import os
import sys
import subprocess
6 7 8 9 10 11 12 13 14
import serial.tools.list_ports
from test_common import (
    LogicMultiplexerTimeMeasurements,
    parse_nist_aead_test_vectors,
    DeviceUnderTestAeadUARTP,
    compare_dumps,
    eprint,
    run_nist_aead_test_line,
)
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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
def get_serial():
    ports = serial.tools.list_ports.comports()
    devices = [
        p.device
        for p in ports
        if p.serial_number == 'FT2XCRZ1'
    ]
    devices.sort()
    return serial.Serial(
        devices[0],
        baudrate=115200,
        timeout=5)


class BluePill(DeviceUnderTestAeadUARTP):
    RAM_SIZE = 0x5000

    def __init__(self, build_dir):
        DeviceUnderTestAeadUARTP.__init__(self, get_serial())

        self.firmware_path = os.path.join(
            build_dir, '.pio/build/bluepill_f103c8/firmware.elf')
        self.ram_pattern_path = os.path.join(
            build_dir, 'empty_ram.bin')
        self.ram_dump_path = os.path.join(
            build_dir, 'ram_dump.bin')
        self.openocd_cfg_path = os.path.join(
            build_dir, 'openocd.cfg')

    def flash(self):
        # pipe = subprocess.PIPE
        cmd = [
            'openocd', '-f', 'openocd.cfg', '-c',
            'program %s verify reset exit' % self.firmware_path]
        p = subprocess.Popen(
            cmd, stdout=sys.stderr, stdin=sys.stdout)
        stdout, stderr = p.communicate("")
        eprint("Firmware flashed.")

        cmd = [
            'openocd', '-f', self.openocd_cfg_path, '-c',
            'program %s reset exit 0x20000000' % self.ram_pattern_path]
        p = subprocess.Popen(
            cmd, stdout=sys.stderr, stdin=sys.stdout)
        stdout, stderr = p.communicate("")
        eprint("RAM flashed.")

    def dump_ram(self):
        cmd = [
            'openocd', '-f', self.openocd_cfg_path,
            '-c', 'init',
            '-c', 'halt',
            '-c', 'dump_image %s 0x20000000 0x%x' % (
                self.ram_dump_path, BluePill.RAM_SIZE),
            '-c', 'resume',
            '-c', 'exit']
        p = subprocess.Popen(
            cmd, stdout=sys.stderr, stdin=sys.stdout)
        stdout, stderr = p.communicate("")
        eprint("RAM dumped.")
        with open(self.ram_dump_path, 'rb') as ram:
            ram = ram.read()
            if len(ram) != BluePill.RAM_SIZE:
                raise Exception(
                    "RAM dump was %d bytes instead of %d" %
                    (len(ram), BluePill.RAM_SIZE))
            return ram
84 85


86 87 88 89
def main(argv):
    if len(argv) != 3:
        print("Usage: test LWC_AEAD_KAT.txt build_dir")
        return 1
90

91 92
    kat = list(parse_nist_aead_test_vectors(argv[1]))
    build_dir = argv[2]
93

94
    dut = BluePill(build_dir)
95

96 97 98
    try:
        tool = LogicMultiplexerTimeMeasurements(0x0003)
        tool.begin_measurement()
99

100 101 102 103
        dut.flash()
        dut.prepare()
        sys.stdout.write("Board prepared\n")
        sys.stdout.flush()
104

105
        dump_a = dut.dump_ram()
106

107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
        for i, m, ad, k, npub, c in kat:
            tool.arm()
            run_nist_aead_test_line(dut, i, m, ad, k, npub, c)
            tool.unarm()

            if i == 1:
                dump_b = dut.dump_ram()
                longest = compare_dumps(dump_a, dump_b)
                print("  longest chunk of untouched memory = %d" % longest)

    except Exception as ex:
        print("TEST FAILED")
        raise ex

    finally:
        tool.end_measurement()
        sys.stdout.flush()
        sys.stderr.flush()
125 126 127 128


if __name__ == "__main__":
    sys.exit(main(sys.argv))