2018-03-01 14:51:40 +00:00
|
|
|
# Constants
|
|
|
|
MK_FILE_PATH = $(lastword $(MAKEFILE_LIST))
|
|
|
|
PRJ_DIR = $(abspath $(dir $(MK_FILE_PATH))/..)
|
|
|
|
DEV_DIR = $(PRJ_DIR)/_dev
|
|
|
|
# Results will be produced in this directory (can be provided by a caller)
|
|
|
|
BUILD_DIR ?= $(PRJ_DIR)/_dev/GOROOT
|
|
|
|
|
|
|
|
# Compiler
|
2016-11-03 21:13:18 +00:00
|
|
|
GO ?= go
|
2018-03-21 10:05:19 +00:00
|
|
|
DOCKER ?= docker
|
2018-10-02 10:44:47 +01:00
|
|
|
GIT ?= git
|
2018-03-01 14:51:40 +00:00
|
|
|
|
|
|
|
# Build environment
|
|
|
|
OS ?= $(shell $(GO) env GOHOSTOS)
|
|
|
|
ARCH ?= $(shell $(GO) env GOHOSTARCH)
|
|
|
|
OS_ARCH := $(OS)_$(ARCH)
|
|
|
|
VER_OS_ARCH := $(shell $(GO) version | cut -d' ' -f 3)_$(OS)_$(ARCH)
|
2018-10-05 22:43:00 +01:00
|
|
|
GOROOT_ENV ?= $(shell $(GO) env GOROOT)
|
2018-03-01 14:51:40 +00:00
|
|
|
GOROOT_LOCAL = $(BUILD_DIR)/$(OS_ARCH)
|
|
|
|
# Flag indicates wheter invoke "go install -race std". Supported only on amd64 with CGO enabled
|
|
|
|
INSTALL_RACE:= $(words $(filter $(ARCH)_$(shell go env CGO_ENABLED), amd64_1))
|
2018-10-02 10:44:47 +01:00
|
|
|
TMP_DIR := $(shell mktemp -d)
|
2018-03-01 14:51:40 +00:00
|
|
|
|
2018-03-21 10:05:19 +00:00
|
|
|
# Test targets used for compatibility testing
|
|
|
|
TARGET_TEST_COMPAT=boring picotls tstclnt
|
2018-03-01 14:51:40 +00:00
|
|
|
|
2018-03-21 10:05:19 +00:00
|
|
|
# Some target-specific constants
|
2018-09-16 08:36:45 +01:00
|
|
|
BORINGSSL_REVISION=d451453067cd665a5c38830fbbaac9e599234a5e
|
2018-03-21 10:05:19 +00:00
|
|
|
BOGO_DOCKER_TRIS_LOCATION=/go/src/github.com/cloudflare/tls-tris
|
|
|
|
|
2018-10-15 14:24:28 +01:00
|
|
|
# SIDH repository
|
2018-10-02 10:44:47 +01:00
|
|
|
SIDH_REPO ?= https://github.com/cloudflare/sidh.git
|
2018-10-25 20:18:08 +01:00
|
|
|
SIDH_REPO_TAG ?= Release_1.0
|
2018-10-02 10:44:47 +01:00
|
|
|
# NOBS repo (SIKE depends on SHA3)
|
|
|
|
NOBS_REPO ?= https://github.com/henrydcase/nobscrypto.git
|
2018-10-25 20:18:08 +01:00
|
|
|
NOBS_REPO_TAG ?= Release_0.1
|
2018-10-02 10:44:47 +01:00
|
|
|
|
2018-03-21 10:05:19 +00:00
|
|
|
###############
|
|
|
|
#
|
|
|
|
# Build targets
|
|
|
|
#
|
|
|
|
##############################
|
2018-03-01 14:51:40 +00:00
|
|
|
$(BUILD_DIR)/$(OS_ARCH)/.ok_$(VER_OS_ARCH): clean
|
|
|
|
|
|
|
|
# Create clean directory structure
|
|
|
|
mkdir -p "$(GOROOT_LOCAL)/pkg"
|
|
|
|
|
|
|
|
# Copy src/tools from system GOROOT
|
2018-05-24 01:34:39 +01:00
|
|
|
cp -Hr $(GOROOT_ENV)/src $(GOROOT_LOCAL)/src
|
|
|
|
cp -Hr $(GOROOT_ENV)/pkg/include $(GOROOT_LOCAL)/pkg/include
|
|
|
|
cp -Hr $(GOROOT_ENV)/pkg/tool $(GOROOT_LOCAL)/pkg/tool
|
2018-03-01 14:51:40 +00:00
|
|
|
|
|
|
|
# Swap TLS implementation
|
|
|
|
rm -r $(GOROOT_LOCAL)/src/crypto/tls/*
|
2018-03-21 10:05:19 +00:00
|
|
|
rsync -rltgoD $(PRJ_DIR)/ $(GOROOT_LOCAL)/src/crypto/tls/ --exclude=$(lastword $(subst /, ,$(DEV_DIR)))
|
2018-03-01 14:51:40 +00:00
|
|
|
|
|
|
|
# Apply additional patches
|
|
|
|
for p in $(wildcard $(DEV_DIR)/patches/*); do patch -d "$(GOROOT_LOCAL)" -p1 < "$$p"; done
|
|
|
|
|
2018-10-02 10:44:47 +01:00
|
|
|
# Vendor NOBS library
|
|
|
|
$(GIT) clone $(NOBS_REPO) $(TMP_DIR)/nobs
|
2018-10-25 20:18:08 +01:00
|
|
|
cd $(TMP_DIR)/nobs; $(GIT) checkout tags/$(NOBS_REPO_TAG)
|
2018-10-02 10:44:47 +01:00
|
|
|
cd $(TMP_DIR)/nobs; make vendor-sidh-for-tls
|
|
|
|
cp -rf $(TMP_DIR)/nobs/tls_vendor/* $(GOROOT_LOCAL)/src/vendor/
|
|
|
|
|
|
|
|
# Vendor SIDH library
|
|
|
|
$(GIT) clone $(SIDH_REPO) $(TMP_DIR)/sidh
|
2018-10-25 20:18:08 +01:00
|
|
|
cd $(TMP_DIR)/sidh; $(GIT) checkout tags/$(SIDH_REPO_TAG)
|
2018-10-02 10:44:47 +01:00
|
|
|
cd $(TMP_DIR)/sidh; make vendor
|
|
|
|
cp -rf $(TMP_DIR)/sidh/build/vendor/* $(GOROOT_LOCAL)/src/vendor/
|
|
|
|
|
2018-03-01 14:51:40 +00:00
|
|
|
# Create go package
|
|
|
|
GOARCH=$(ARCH) GOROOT="$(GOROOT_LOCAL)" $(GO) install -v std
|
|
|
|
ifeq ($(INSTALL_RACE),1)
|
|
|
|
GOARCH=$(ARCH) GOROOT="$(GOROOT_LOCAL)" $(GO) install -race -v std
|
2016-11-03 21:13:18 +00:00
|
|
|
endif
|
2018-10-02 10:44:47 +01:00
|
|
|
rm -rf $(TMP_DIR)
|
2016-11-03 21:13:18 +00:00
|
|
|
@touch "$@"
|
|
|
|
|
2018-03-21 10:05:19 +00:00
|
|
|
build-test-%: $(BUILD_DIR)/$(OS_ARCH)/.ok_$(VER_OS_ARCH)
|
|
|
|
$(DOCKER) build $(BUILDARG) -t tls-tris:$* $(DEV_DIR)/$*
|
|
|
|
$(DOCKER) build $(BUILDARG) -t $(*)-localserver $(DEV_DIR)/$*
|
|
|
|
|
|
|
|
build-all: \
|
|
|
|
build-test-tris-client \
|
|
|
|
build-test-tris-server \
|
|
|
|
build-test-bogo \
|
|
|
|
$(addprefix build-test-,$(TARGET_TEST_COMPAT))
|
|
|
|
|
|
|
|
# Builds TRIS client
|
|
|
|
build-test-tris-client: $(BUILD_DIR)/$(OS_ARCH)/.ok_$(VER_OS_ARCH)
|
|
|
|
cd $(DEV_DIR)/tris-testclient; CGO_ENABLED=0 GOROOT="$(GOROOT_LOCAL)" $(GO) build -v -i .
|
|
|
|
$(DOCKER) build -t tris-testclient $(DEV_DIR)/tris-testclient
|
|
|
|
|
|
|
|
# Builds TRIS server
|
|
|
|
build-test-tris-server: $(BUILD_DIR)/$(OS_ARCH)/.ok_$(VER_OS_ARCH)
|
|
|
|
cd $(DEV_DIR)/tris-localserver; CGO_ENABLED=0 GOROOT="$(GOROOT_LOCAL)" $(GO) build -v -i .
|
|
|
|
$(DOCKER) build -t tris-localserver $(DEV_DIR)/tris-localserver
|
|
|
|
|
|
|
|
# BoringSSL specific stuff
|
|
|
|
build-test-boring: BUILDARG=--build-arg REVISION=$(BORINGSSL_REVISION)
|
|
|
|
|
|
|
|
# TODO: This probably doesn't work
|
|
|
|
build-caddy: $(BUILD_DIR)/$(OS_ARCH)/.ok_$(VER_OS_ARCH)
|
|
|
|
CGO_ENABLED=0 GOROOT="$(GOROOT_LOCAL)" $(GO) build github.com/mholt/caddy
|
|
|
|
|
|
|
|
###############
|
|
|
|
#
|
|
|
|
# Test targets
|
|
|
|
#
|
|
|
|
##############################
|
|
|
|
test: \
|
|
|
|
test-unit \
|
|
|
|
test-bogo \
|
|
|
|
test-interop
|
|
|
|
|
|
|
|
test-unit: $(BUILD_DIR)/$(OS_ARCH)/.ok_$(VER_OS_ARCH)
|
|
|
|
GOROOT="$(GOROOT_LOCAL)" $(GO) test -race crypto/tls
|
|
|
|
|
|
|
|
test-bogo:
|
|
|
|
$(DOCKER) run --rm -v $(PRJ_DIR):$(BOGO_DOCKER_TRIS_LOCATION) tls-tris:bogo
|
|
|
|
|
|
|
|
test-interop:
|
|
|
|
$(DEV_DIR)/interop_test_runner -v
|
|
|
|
|
|
|
|
###############
|
|
|
|
#
|
|
|
|
# Utils
|
|
|
|
#
|
|
|
|
##############################
|
2016-11-03 21:13:18 +00:00
|
|
|
clean:
|
2018-03-01 14:51:40 +00:00
|
|
|
rm -rf $(BUILD_DIR)/$(OS_ARCH)
|
|
|
|
|
2018-03-21 10:05:19 +00:00
|
|
|
clean-all: clean
|
2018-03-01 14:51:40 +00:00
|
|
|
rm -rf $(BUILD_DIR)
|
|
|
|
|
2018-06-26 09:32:47 +01:00
|
|
|
fmtcheck:
|
|
|
|
$(DEV_DIR)/utils/fmtcheck.sh
|
2018-03-21 10:05:19 +00:00
|
|
|
|
2018-08-09 20:47:50 +01:00
|
|
|
.PHONY: $(BUILD_DIR) clean build build-test test test-unit test-bogo test-interop
|