-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
294 lines (231 loc) · 8.54 KB
/
Makefile
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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
# Makefile: builds the keyless (server) and testclient
#
# Copyright (c) 2013-2014 CloudFlare, Inc.
NAME := keyless
# This Makefile makes use of the GNU Make Standard Library project
# which can be found at http://gmsl.sf.net/
GMSL_DIR := gmsl/
include $(GMSL_DIR)/gmsl
VERSION := $(shell git describe --tags --always --dirty=-dev)
TMP := tmp/
OS := $(shell uname -s)
# This is the SHA of the commit on Github of the libuv project that we will
# build against.
LIBUV_SHA := 1daff47ae9df55902f07d3c5b8a3a393306a2f1e
LIBUV_ROOT := $(TMP)libuv-$(LIBUV_SHA)
LIBUV_A := $(LIBUV_ROOT)/.libs/libuv.a
LIBUV_INCLUDE := $(LIBUV_ROOT)/include
LIBUV_LOG := $(TMP)libuv.log
# This is the version of OpenSSL to link against.
OPENSSL_VERSION := 1.0.2f
OPENSSL_ROOT := $(TMP)openssl-$(OPENSSL_VERSION)
# Note that the order libssl then libcrypto here is important otherwise the
# link will fail
OPENSSL_A := $(addprefix $(OPENSSL_ROOT)/,libssl.a libcrypto.a)
OPENSSL_INCLUDE := $(OPENSSL_ROOT)/include
OPENSSL_LOG := $(TMP)openssl.log
# Turn on absolutely all warnings and turn them into errors
CFLAGS += -g -Wall -Wextra -Wno-unused-parameter -Werror
CFLAGS += -I. -I$(LIBUV_INCLUDE) -I$(OPENSSL_INCLUDE)
CFLAGS += -DKSSL_VERSION=\"$(VERSION)\"
# Link against OpenSSL and libuv. libuv is built and linked against
# statically.
#
# Note that -ldl must appear after OPENSSL_A otherwise the link will fail
LDLIBS += -L. $(OPENSSL_A) $(LIBUV_A) -ldl -lpthread
ifeq ($(OS),Linux)
LDLIBS += -lrt
endif
# Macros for automatically making directories using marker files.
# http://www.cmcrossroads.com/ask-mr-make/6936-making-directories-in-gnu-make
# for rationale.
marker = $1.f
make_dir = $(eval $1.f: ; @mkdir -p $$(dir $$@) ; touch $$@)
OBJ := o/
SERVER_OBJS := $(addprefix $(OBJ),keyless.o $(addprefix kssl_,helpers.o core.o private_key.o log.o thread.o getopt.o))
TEST_OBJS := $(addprefix $(OBJ),testclient.o $(addprefix kssl_,helpers.o log.o))
OBJS := $(SERVER_OBJS) $(TEST_OBJS)
EXECS := $(addprefix $(OBJ),keyless testclient)
.PHONY: all clean test run kill
all: libuv openssl $(OBJ) $(EXECS)
clean: ; @rm -rf $(OBJ) $(LIBUV_ROOT) $(LIBUV_ZIP) $(OPENSSL_ROOT) $(OPENSSL_TAR_GZ) $(DESTDIR)
$(call make_dir,$(TMP))
LIBUV_DIR := $(call marker,$(LIBUV_ROOT)/)
.PHONY: libuv
libuv: $(LIBUV_A)
$(LIBUV_A): $(call marker,$(TMP)) $(LIBUV_DIR)
@cd $(LIBUV_ROOT) && ./autogen.sh && ./configure --enable-static --disable-dtrace && $(MAKE)
$(LIBUV_DIR): $(call marker,$(TMP))
@rm -rf $(LIBUV_ROOT)
@wget -qO $(TMP)$(LIBUV_SHA).zip http://github.com/libuv/libuv/archive/$(LIBUV_SHA).zip
@unzip -d $(TMP) $(TMP)$(LIBUV_SHA).zip
@touch $@
OPENSSL_DIR := $(call marker,$(OPENSSL_ROOT)/)
ifeq ($(OS),Darwin)
OPENSSL_CONFIG := Configure darwin64-x86_64-cc
else
OPENSSL_CONFIG := config
endif
.PHONY: openssl
openssl: $(firstword $(OPENSSL_A))
$(firstword $(OPENSSL_A)): $(OPENSSL_DIR)
@cd $(OPENSSL_ROOT) && ./$(OPENSSL_CONFIG) no-shared && $(MAKE)
$(OPENSSL_DIR): $(call marker,$(TMP))
@rm -rf $(OPENSSL_ROOT)
@wget -qO $(TMP)openssl-$(OPENSSL_VERSION).tar.gz ftp://ftp.openssl.org/source/old/1.0.2/openssl-$(OPENSSL_VERSION).tar.gz
@tar -C $(TMP) -z -x -v -f $(TMP)openssl-$(OPENSSL_VERSION).tar.gz
@touch $@
PREFIX := usr/local
INSTALL_BIN = $(DESTDIR)/$(PREFIX)/bin
INIT_DEFAULT_PREFIX = etc/default
INIT_DEST_DEFAULT_PREFIX = $(DESTDIR)/$(INIT_DEFAULT_PREFIX)
INIT_PREFIX = $(DESTDIR)/etc/init.d
CONFIG_PREFIX = $(DESTDIR)/etc/keyless
install-all: install install-config
install: all
@mkdir -p $(INSTALL_BIN)
@install -m755 o/$(NAME) $(INSTALL_BIN)
install-config:
@mkdir -p $(CONFIG_PREFIX)/keys
@chmod 700 $(CONFIG_PREFIX)/keys
@mkdir -p $(INIT_PREFIX)
@mkdir -p $(INIT_DEST_DEFAULT_PREFIX)
@install -m644 pkg/keyless.default $(INIT_DEST_DEFAULT_PREFIX)/keyless
@install -m755 pkg/keyless.sysv $(INIT_PREFIX)/keyless
@install -m644 pkg/keyless_cacert.pem $(CONFIG_PREFIX)/keyless_cacert.pem
@install -m400 pkg/testing-ecdsa.key $(CONFIG_PREFIX)/keys/testing-ecdsa.key
@install -m400 pkg/testing-rsa.key $(CONFIG_PREFIX)/keys/testing-rsa.key
VENDOR := "CloudFlare"
LICENSE := "See License File"
URL := "http://www.cloudflare.com"
DESCRIPTION="A reference implementation for CloudFlare's Keyless SSL server"
# Override DISTRO on the command-line to specify a particular distro
#
# e.g. make package DISTRO=debian
DISTRO := debian
ARCH := x86_64
DEB_PACKAGE := $(NAME)_$(VERSION)_$(ARCH).deb
RPM_PACKAGE := $(NAME)-$(VERSION).$(ARCH).rpm
# Include distro-specific settings
include Package-$(DISTRO)
FPM = fpm -C $(DESTDIR) \
-n $(NAME) \
-a $(ARCH) \
-s dir \
-t $(PACKAGE_TYPE) \
-v $(VERSION) \
--url $(URL) \
--description $(DESCRIPTION) \
--vendor $(VENDOR) \
--license $(LICENSE) \
--before-install pkg/$(DISTRO)/before-install.sh \
--before-remove pkg/$(DISTRO)/before-remove.sh \
--after-install pkg/$(DISTRO)/after-install.sh \
--config-files $(INIT_DEFAULT_PREFIX)/keyless \
$(DEB_PACKAGE):
@$(FPM) \
--deb-compression bzip2 \
--deb-user root --deb-group root \
.
$(RPM_PACKAGE):
@$(FPM) \
--rpm-use-file-permissions \
--rpm-user root --rpm-group root \
.
.PHONY: package
package: DESTDIR := build
package: clean all install-all $(PACKAGE)
.PHONY: cf-package
cf-package: DESTDIR := build
cf-package: DISTRO := debian
cf-package: clean all install $(PACKAGE)
.PHONY: clean-package
clean-package:
@$(RM) -r $(DESTDIR)
@$(RM) $(PACKAGE)
# Note the use of a # comment at the end of VALGRIND_COMMAND to ensure
# that there is a trailing space
VALGRIND_COMMAND :=
ifeq ($(VALGRIND),1)
VALGRIND_LOG := $(TMP)valgrind.log
VALGRIND_COMMAND := valgrind --leak-check=yes --log-file=$(VALGRIND_LOG) --show-reachable=yes --trace-children=yes #
endif
PORT := 30498
PID_FILE := $(TMP)$(NAME).pid
SERVER_LOG := $(TMP)$(NAME).log
KEYS_DIR := testing/keys
SERVER_CERT := testing/server-cert/ecdsa/ecdsa-server.pem
SERVER_KEY := testing/server-cert/ecdsa/ecdsa-server-key.pem
KEYLESS_CACERT := testing/CAs/testca-keyless.pem
ifneq ($(wildcard $(PID_FILE)),)
PID := $(shell cat $(PID_FILE))
run: ; @echo $(NAME) running as PID $(PID)
kill:
-@kill $(PID)
@rm -f $(PID_FILE)
else
run: export LD_LIBRARY_PATH=/usr/local/lib
run: all $(call marker,$(TMP))
ifeq ($(VALGRIND),1)
@rm -f $(VALGRIND_LOG)
endif
@$(VALGRIND_COMMAND)$(OBJ)$(NAME) --port=$(PORT) --server-cert=$(SERVER_CERT) --server-key=$(SERVER_KEY) --private-key-directory=$(KEYS_DIR) --ca-file=$(KEYLESS_CACERT) --pid-file=$(PID_FILE) --num-workers=4 --daemon --silent
ifeq ($(VALGRIND),1)
@echo $$! > $(PID_FILE)
endif
kill: ;
endif
.PHONY: run-rsa
run-rsa: SERVER_CERT := testing/server-cert/rsa/rsa-server.pem
run-rsa: SERVER_KEY := testing/server-cert/rsa/rsa-server-key.pem
run-rsa: run
# Note that sub-makes are used here for the kill and run targets
# because the definition of those targets changes depending on the
# presence or absence of the $(NAME).pid file (see above) and thus
# it's necessary to restart make for them to do the right thing.
CLIENT_CERT := testing/client-cert/ecdsa/ecdsa-client.pem
CLIENT_KEY := testing/client-cert/ecdsa/ecdsa-client-key.pem
KEYSERVER_CACERT := testing/CAs/testca-keyserver.pem
.PHONY: test-short
test-short: TEST_PARAMS := --short
test-short: test
#Eun tests using server with ECDSA and RSA certificates
test: export LD_LIBRARY_PATH=/usr/local/lib
test: all
@$(MAKE) --no-print-directory kill
@$(MAKE) --no-print-directory run VALGRIND=$(VALGRIND) PORT=$(PORT)
@perl -e 'while (!-e "$(PID_FILE)") { sleep(1); }'
@sleep 1
@$(OBJ)testclient --port=$(PORT) \
--rsa-pubkey=$(KEYS_DIR)/rsa.pubkey \
--ec-pubkey=$(KEYS_DIR)/ec.pubkey \
--client-cert=$(CLIENT_CERT) \
--client-key=$(CLIENT_KEY) \
--ca-file=$(KEYSERVER_CACERT) \
--server=localhost \
$(DEBUG) \
$(TEST_PARAMS)
@$(MAKE) --no-print-directory kill
@$(MAKE) --no-print-directory run-rsa VALGRIND=$(VALGRIND) PORT=$(PORT)
@perl -e 'while (!-e "$(PID_FILE)") { sleep(1); }'
@sleep 1
@$(OBJ)testclient --port=$(PORT) \
--rsa-pubkey=$(KEYS_DIR)/rsa.pubkey \
--ec-pubkey=$(KEYS_DIR)/ec.pubkey \
--client-cert=$(CLIENT_CERT) \
--client-key=$(CLIENT_KEY) \
--ca-file=$(KEYSERVER_CACERT) \
--server=localhost \
$(DEBUG) \
--alive
@$(MAKE) --no-print-directory kill
ifeq ($(VALGRIND),1)
@echo valgrind log in $(VALGRIND_LOG)
endif
$(OBJ):
@mkdir -p $@
$(OBJ)$(NAME): $(SERVER_OBJS) ; @$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
$(OBJ)testclient: $(TEST_OBJS) ; @$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
$(OBJ)%.o: %.c ; @$(COMPILE.c) $(OUTPUT_OPTION) $<
$(OBJ)$(NAME).o: kssl.h
$(OBJ)testclient.o: kssl.h