mirror of
https://github.com/luxfi/crypto.git
synced 2026-07-27 01:54:50 +00:00
Adds p3q/ct/dudect/ (constant-time test harness for P3Q precompile), parallel to the existing mlkem/ct/dudect/. Moved from ~/work/lux/precompile/p3q/ct/dudect/ as part of the "keep precompile light, import crypto" cleanup. Files: dudect_compat.h, dudect_verify.c, verify_ct.go, Makefile, fetch.sh, run-submission.sh, README.md. The verify_ct.go cgo bridge is build-tag-gated (p3q_verify_ct) and has no public Go imports, so moving the file path is safe.
87 lines
2.4 KiB
Makefile
87 lines
2.4 KiB
Makefile
# P3Q constant-time analysis harness — dudect bridge.
|
|
#
|
|
# Builds the cgo shim library (libp3q_verify) and links the C dudect
|
|
# harness against it.
|
|
#
|
|
# Prereqs (run once):
|
|
# ./fetch.sh # pulls dudect.h at the pinned commit
|
|
#
|
|
# Build:
|
|
# make
|
|
#
|
|
# Run:
|
|
# ./dudect_verify # smoke test (10000 samples/batch x 4 batches)
|
|
#
|
|
# Full submission run (10^9 samples on a pinned-CPU quiet host):
|
|
# DUDECT_SAMPLES=1000000 DUDECT_MAX_BATCHES=1000 ./dudect_verify
|
|
#
|
|
# Hosts:
|
|
# - x86_64 Linux/macOS: builds cleanly against upstream dudect.h
|
|
# - aarch64 Linux/macOS: dudect_compat.h is force-included to supply
|
|
# ARM equivalents of _mm_mfence() / __rdtsc(); see header for the
|
|
# accuracy disclaimer.
|
|
|
|
UNAME_S := $(shell uname -s)
|
|
UNAME_M := $(shell uname -m)
|
|
|
|
# Shared-library extension is .dylib on macOS, .so elsewhere.
|
|
ifeq ($(UNAME_S),Darwin)
|
|
SHLIB_EXT := dylib
|
|
RPATH_FLAG := -Wl,-rpath,@loader_path
|
|
else
|
|
SHLIB_EXT := so
|
|
RPATH_FLAG := -Wl,-rpath,'$$ORIGIN'
|
|
endif
|
|
|
|
# Source paths.
|
|
REPO_ROOT := $(shell cd ../.. && pwd)
|
|
DUDECT_HDR := dudect/src/dudect.h
|
|
|
|
# C compile flags. -O2 is the default per dudect's own build; the
|
|
# leakage signal is preserved at -O2 because the inner
|
|
# do_one_computation call boundary is opaque to the compiler.
|
|
CC ?= cc
|
|
CFLAGS ?= -O2 -Wall -Wno-unused-parameter -I. -Idudect/src
|
|
LDFLAGS ?=
|
|
LDLIBS := -lm
|
|
|
|
# Force-include the ARM compat shim on AArch64 hosts so dudect.h's
|
|
# x86 intrinsics resolve. On x86 we skip the shim.
|
|
ifeq ($(UNAME_M),arm64)
|
|
CFLAGS += -include dudect_compat.h
|
|
endif
|
|
ifeq ($(UNAME_M),aarch64)
|
|
CFLAGS += -include dudect_compat.h
|
|
endif
|
|
|
|
# Go env. GOWORK=off matches Pulsar's harness — single-module layout
|
|
# is assumed; a stray go.work in any parent confuses the toolchain.
|
|
GO ?= go
|
|
GOENV := GOWORK=off CGO_ENABLED=1
|
|
|
|
.PHONY: all verify clean check-dudect
|
|
|
|
all: verify
|
|
|
|
libp3q_verify.$(SHLIB_EXT): verify_ct.go check-dudect
|
|
$(GOENV) $(GO) build -buildmode=c-shared \
|
|
-tags p3q_verify_ct \
|
|
-o libp3q_verify.$(SHLIB_EXT) \
|
|
./verify_ct.go
|
|
|
|
dudect_verify: dudect_verify.c libp3q_verify.$(SHLIB_EXT) $(DUDECT_HDR)
|
|
$(CC) $(CFLAGS) -o dudect_verify dudect_verify.c \
|
|
-L. -lp3q_verify $(LDFLAGS) $(LDLIBS) $(RPATH_FLAG)
|
|
|
|
verify: dudect_verify
|
|
|
|
check-dudect:
|
|
@if [ ! -f $(DUDECT_HDR) ]; then \
|
|
echo "==> dudect.h missing — run ./fetch.sh"; \
|
|
exit 1; \
|
|
fi
|
|
|
|
clean:
|
|
rm -f dudect_verify
|
|
rm -f libp3q_verify.$(SHLIB_EXT) libp3q_verify.h
|