#!/bin/bash shopt -s extglob export PYTHONPATH="$PYTHONPATH:$(pwd)" function run() { TEMPLATE="$1" DESTDIR="$2" if [[ ! -d "templates/$TEMPLATE" ]]; then echo "Template '$TEMPLATE' does not exist" exit 1 fi if [[ -e "$DESTDIR" ]]; then echo "Destination directory '$DESTDIR' already exists" exit 1 fi TMPDIR=$(mktemp -d -t build-XXXXXXXXXX) if [[ ! -d "$TMPDIR" ]]; then echo "Failed to create a temporary build directory" exit 1 fi echo "Template is '$TEMPLATE', destination directory is '$DESTDIR', temporary directory is '$TMPDIR'" mkdir -p $DESTDIR echo "Compiling for template '$TEMPLATE' in directory '$TMPDIR'" ./compile_all.py -t "templates/$TEMPLATE" -b "$TMPDIR" for cipher in $TMPDIR/*; do if [[ ! -d $cipher ]]; then continue; fi mkdir -p "./queues" QUEUE_PATH="./queues/$TEMPLATE" TEST_PATH="$DESTDIR/$CIPHER_SLUG" CIPHER_SLUG=$(basename $cipher) mkdir -p "$TEST_PATH" || exit 1 mv $cipher/*.log "$TEST_PATH" mv "$cipher/LWC_AEAD_KAT.txt" "$TEST_PATH" case $TEMPLATE in f7) mv $cipher/build/f7.* "$TEST_PATH" ;; maixduino) mv $cipher/.pio/build/sipeed-maixduino/firmware.* "$TEST_PATH" ;; bluepill) mv $cipher/.pio/build/bluepill_f103c8/firmware.* "$TEST_PATH" ;; uno) mv $cipher/.pio/build/uno/firmware.* "$TEST_PATH" ;; esp32) mv $cipher/.pio/build/esp32dev/firmware.* $cipher/.pio/build/esp32dev/partitions.bin "$TEST_PATH" ;; esac CMD="PYTHONPATH=\$PYTHONPATH:$(pwd) python3 './templates/$TEMPLATE/test' '$TEST_PATH' > '$TEST_PATH/test.stdout.log' 2> '$TEST_PATH/test.stderr.log'" printf -v CMD "%q" "$CMD" flock "$QUEUE_PATH" bash -c "echo $CMD >> \"$QUEUE_PATH\"" done rm -rf "$TMPDIR" } if [[ $1 == "run" ]]; then run $2 $3 else ZIP_PATH="$1" if [[ ! -f $ZIP_PATH ]]; then echo "Error: '$ZIP_PATH' is not a zip file" exit 1 fi MAINDIR=email-submissions/$(date +%Y-%m-%d-%H:%M) mkdir -p $MAINDIR TMPDIR=$(mktemp -d -t submission-XXXXXXXXXX) unzip $ZIP_PATH -d $TMPDIR for i in templates/*; do TEMPLATE="${i##*/}" echo "Template is $TEMPLATE" touch $MAINDIR/locky.lock flock $MAINDIR/locky.lock $0 run $TEMPLATE $MAINDIR/$TEMPLATE done rm -rf $TMPDIR fi