-
Notifications
You must be signed in to change notification settings - Fork 256
/
Makefile
332 lines (294 loc) · 13.4 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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
# Main Makefile
# Define TOPDIR from shell command and _not_ $(PWD) because that gives
# pwd before changing to a 'make -C <dir>' <dir>:
export TOPDIR = $(shell pwd)
REC_TARGETS=build domserver install-domserver judgehost install-judgehost \
docs install-docs inplace-install inplace-uninstall maintainer-conf \
maintainer-install composer-dependencies composer-dependencies-dev
# Global Makefile definitions
include $(TOPDIR)/Makefile.global
default:
@echo "No default target"
@echo
@echo "Try:"
@echo " - make all (all targets below)"
@echo " - make build (all except 'docs')"
@echo " - make domserver"
@echo " - make judgehost"
@echo " - make docs"
@echo or
@echo " - make install-domserver"
@echo " - make install-judgehost"
@echo " - make install-docs"
@echo or
@echo " - make clean"
@echo " - make distclean"
@exit 1
install:
@echo "Try:"
@echo " - make install-domserver"
@echo " - make install-judgehost"
@echo " - make install-docs"
@exit 1
all: build
build: domserver judgehost
ifeq ($(BUILD_DOCS),yes)
all: docs
dist: distdocs
endif
# MAIN TARGETS
domserver: domserver-configure paths.mk config
judgehost: judgehost-configure paths.mk config
docs: paths.mk config
install-domserver: domserver domserver-create-dirs
install-judgehost: judgehost judgehost-create-dirs
install-docs: docs-create-dirs
dist: configure composer-dependencies
domserver-configure:
ifneq "$(DOMSERVER_BUILD_ENABLED)" "yes"
@echo "The setup for domserver is not configured"
@exit 1
endif
judgehost-configure:
ifneq "$(JUDGEHOST_BUILD_ENABLED)" "yes"
@echo "The setup for judgehost is not configured"
@exit 1
endif
# Generate documentation for distribution. Remove this dependency from
# dist above for quicker building from git sources.
distdocs:
$(MAKE) -C doc distdocs
# Generate configuration files from configure settings:
config:
$(MAKE) -C etc config
# Special rule to build any compile/run/compare scripts. This is
# useful for testing, e.g. when submitting a Coverity scan.
build-scripts:
$(MAKE) -C sql build-scripts
# List of SUBDIRS for recursive targets:
build: SUBDIRS= lib misc-tools
domserver: SUBDIRS=etc sql misc-tools webapp
install-domserver: SUBDIRS=etc lib sql misc-tools webapp example_problems
judgehost: SUBDIRS=etc judge misc-tools
install-judgehost: SUBDIRS=etc lib judge misc-tools
docs: SUBDIRS= doc
install-docs: SUBDIRS= doc
maintainer-conf: SUBDIRS= webapp
maintainer-install: SUBDIRS= webapp
inplace-install: SUBDIRS= doc misc-tools
inplace-uninstall: SUBDIRS= doc misc-tools
dist: SUBDIRS= lib sql misc-tools
clean: SUBDIRS=etc doc lib sql judge misc-tools webapp
distclean: SUBDIRS=etc doc lib sql judge misc-tools webapp
maintainer-clean: SUBDIRS=etc doc lib sql judge misc-tools webapp
composer-dependencies: SUBDIRS= webapp
composer-dependencies-dev: SUBDIRS= webapp
domserver-create-dirs:
$(INSTALL_DIR) $(addprefix $(DESTDIR),$(domserver_dirs))
judgehost-create-dirs:
$(INSTALL_DIR) $(addprefix $(DESTDIR),$(judgehost_dirs))
docs-create-dirs:
$(INSTALL_DIR) $(addprefix $(DESTDIR),$(docs_dirs))
install-docs-l:
$(INSTALL_DATA) -t $(DESTDIR)$(domjudge_docdir) README.md ChangeLog COPYING*
# As final step try set ownership and permissions of a few special
# files/directories. Print a warning and fail gracefully if this
# doesn't work because we're not root.
install-domserver-l:
$(MAKE) check-root
# Fix permissions for special directories:
-$(INSTALL_USER) -m 0700 -d $(DESTDIR)$(domserver_logdir)
-$(INSTALL_USER) -m 0700 -d $(DESTDIR)$(domserver_rundir)
-for d in cache log ; do \
$(INSTALL_WEBSITE) -m 0775 -d $(DESTDIR)$(domserver_webappdir)/var/$$d ; \
done
# Make sure that domjudge user and webserver group can write to var/{cache,log}:
-DESTDIR=$(DESTDIR) $(DESTDIR)$(domserver_bindir)/fix_permissions
# Special case create tmpdir here, only when FHS not enabled:
ifneq "$(FHS_ENABLED)" "yes"
-$(INSTALL_WEBSITE) -m 0770 -d $(DESTDIR)$(domserver_tmpdir)
endif
# Fix permissions and ownership for password files:
-$(INSTALL_USER) -m 0600 -t $(DESTDIR)$(domserver_etcdir) \
etc/restapi.secret
-$(INSTALL_USER) -m 0600 -t $(DESTDIR)$(domserver_etcdir) \
etc/initial_admin_password.secret
-$(INSTALL_WEBSITE) -m 0640 -t $(DESTDIR)$(domserver_etcdir) \
etc/dbpasswords.secret etc/symfony_app.secret
@echo ""
@echo "Domserver install complete. Admin web interface password can be found in:"
@echo "$(DESTDIR)$(domserver_etcdir)/initial_admin_password.secret"
install-judgehost-l:
$(MAKE) check-root
# Fix permissions for special directories:
-$(INSTALL_USER) -m 0700 -d $(DESTDIR)$(judgehost_logdir)
-$(INSTALL_USER) -m 0700 -d $(DESTDIR)$(judgehost_rundir)
-$(INSTALL_USER) -m 0711 -d $(DESTDIR)$(judgehost_judgedir)
# Special case create tmpdir here, only when FHS not enabled:
ifneq "$(FHS_ENABLED)" "yes"
-$(INSTALL_USER) -m 0700 -d $(DESTDIR)$(judgehost_tmpdir)
endif
# Fix permissions and ownership for password files:
-$(INSTALL_USER) -m 0600 -t $(DESTDIR)$(judgehost_etcdir) \
etc/restapi.secret
@echo ""
@echo "========== Judgehost Install Completed =========="
@echo ""
@echo "Optionally:"
@echo " - Install the create-cgroup service to setup the secure judging restrictions:"
@echo " cp judge/create-cgroups.service /etc/systemd/system/"
@echo " - Install the judgehost service:"
@echo " cp judge/[email protected] /etc/systemd/system/"
@echo " - You can enable the judgehost on CPU core 1 with:"
@echo " systemctl enable domjudge-judgedaemon@1"
@echo ""
check-root:
@if [ `id -u` -ne 0 -a -z "$(QUIET)" ]; then \
echo "**************************************************************" ; \
echo "*** You do not seem to have the required root privileges. ***" ; \
echo "*** Perform any failed commands below manually. ***" ; \
echo "**************************************************************" ; \
fi
dist-l:
$(MAKE) clean-autoconf
# Run aclocal separately from autoreconf, which doesn't pass -I option.
aclocal.m4: configure.ac $(wildcard m4/*.m4)
aclocal -I m4
configure: configure.ac aclocal.m4
autoheader
autoconf
paths.mk:
@echo "The file 'paths.mk' is not available. Probably you"
@echo "have not run './configure' yet, aborting..."
@exit 1
# Configure for running in source tree, not meant for normal use:
maintainer-conf: inplace-conf-common composer-dependencies-dev
inplace-conf: inplace-conf-common composer-dependencies
inplace-conf-common: dist
./configure $(subst 1,-q,$(QUIET)) --prefix=$(CURDIR) \
--with-domserver_root=$(CURDIR) \
--with-judgehost_root=$(CURDIR) \
--with-domjudge_docdir=$(CURDIR)/doc \
--with-domserver_logdir=$(CURDIR)/output/log \
--with-judgehost_logdir=$(CURDIR)/output/log \
--with-domserver_rundir=$(CURDIR)/output/run \
--with-judgehost_rundir=$(CURDIR)/output/run \
--with-domserver_tmpdir=$(CURDIR)/output/tmp \
--with-judgehost_tmpdir=$(CURDIR)/output/tmp \
--with-judgehost_judgedir=$(CURDIR)/output/judgings \
--with-domserver_databasedumpdir=$(CURDIR)/output/db-dumps \
--with-baseurl='http://localhost/domjudge/' \
$(CONFIGURE_FLAGS)
# Install the system in place: don't really copy stuff, but create
# symlinks where necessary to let it work from the source tree.
# This stuff is a hack!
maintainer-install: inplace-install
inplace-install: build domserver-create-dirs judgehost-create-dirs
inplace-install-l:
# Replace libjudgedir with symlink to prevent lots of symlinks:
-rmdir $(judgehost_libjudgedir)
-rm -f $(judgehost_libjudgedir)
ln -sf $(CURDIR)/judge $(judgehost_libjudgedir)
# Add symlinks to binaries:
$(MKDIR_P) $(judgehost_bindir) $(domserver_bindir)
ln -sf $(CURDIR)/judge/judgedaemon $(judgehost_bindir)
ln -sf $(CURDIR)/judge/runguard $(judgehost_bindir)
ln -sf $(CURDIR)/judge/runpipe $(judgehost_bindir)
ln -sf $(CURDIR)/judge/create_cgroups $(judgehost_bindir)
ln -sf $(CURDIR)/sql/dj_setup_database $(domserver_bindir)
# Create tmpdir and make tmpdir writable for webserver,
# because judgehost-create-dirs sets wrong permissions:
$(MKDIR_P) $(domserver_tmpdir)
chmod a+rwx $(domserver_tmpdir)
# Make sure we're running from a clean state:
(cd webapp && composer auto-scripts)
@echo ""
@echo "========== Maintainer Install Completed =========="
@echo ""
@echo "Next:"
@echo " - Configure apache2"
@echo " sudo make inplace-postinstall-apache"
@echo " - Configure nginx"
@echo " sudo make inplace-postinstall-nginx"
@echo " - Set up database"
@echo " ./sql/dj_setup_database -u root [-r|-p ROOT_PASS] install"
@echo ""
@echo "Or you can run these commands manually as root"
@echo " - Give the webserver access to things it needs"
@echo " setfacl -m u:$(WEBSERVER_GROUP):r $(CURDIR)/etc/dbpasswords.secret"
@echo " setfacl -m u:$(WEBSERVER_GROUP):r $(CURDIR)/etc/symfony_app.secret"
@echo " setfacl -R -m d:u:$(WEBSERVER_GROUP):rwx $(CURDIR)/webapp/var"
@echo " setfacl -R -m u:$(WEBSERVER_GROUP):rwx $(CURDIR)/webapp/var"
@echo " setfacl -R -m d:m::rwx $(CURDIR)/webapp/var"
@echo " setfacl -R -m m::rwx $(CURDIR)/webapp/var"
@echo " # Also make sure you keep access"
@echo " setfacl -R -m d:u:$(DOMJUDGE_USER):rwx $(CURDIR)/webapp/var"
@echo " setfacl -R -m u:$(DOMJUDGE_USER):rwx $(CURDIR)/webapp/var"
@echo " - Configure webserver"
@echo " Apache 2:"
@echo " ln -sf $(CURDIR)/etc/apache.conf /etc/apache2/conf-available/domjudge.conf"
@echo " a2enconf domjudge"
@echo " a2enmod rewrite headers"
@echo " systemctl restart apache2"
@echo " Nginx + PHP-FPM:"
@echo " ln -sf $(CURDIR)/etc/nginx-conf /etc/nginx/sites-enabled/"
@echo " ln -sf $(CURDIR)/etc/domjudge-fpm /etc/php/$(PHPVERSION)/fpm/pool.d/domjudge.conf"
@echo " systemctl restart nginx"
@echo " systemctl restart php-fpm"
@echo ""
@echo "The admin password for the web interface is in etc/initial_admin_password.secret"
inplace-postinstall-permissions:
setfacl -m u:$(WEBSERVER_GROUP):r $(CURDIR)/etc/dbpasswords.secret
setfacl -m u:$(WEBSERVER_GROUP):r $(CURDIR)/etc/symfony_app.secret
setfacl -R -m d:u:$(WEBSERVER_GROUP):rwx $(CURDIR)/webapp/var
setfacl -R -m u:$(WEBSERVER_GROUP):rwx $(CURDIR)/webapp/var
setfacl -R -m d:u:$(DOMJUDGE_USER):rwx $(CURDIR)/webapp/var
setfacl -R -m u:$(DOMJUDGE_USER):rwx $(CURDIR)/webapp/var
setfacl -R -m d:m::rwx $(CURDIR)/webapp/var
setfacl -R -m m::rwx $(CURDIR)/webapp/var
inplace-postinstall-apache: inplace-postinstall-permissions
@if [ ! -d "/etc/apache2/conf-enabled" ]; then echo "Couldn't find directory /etc/apache2/conf-enabled. Is apache installed?"; false; fi
ln -sf $(CURDIR)/etc/apache.conf /etc/apache2/conf-available/domjudge.conf
a2enconf domjudge
a2enmod rewrite headers
systemctl restart apache2
inplace-postinstall-nginx: inplace-postinstall-permissions
@if [ ! -d "/etc/nginx/sites-enabled/" ]; then echo "Couldn't find directory /etc/nginx/sites-enabled/. Is nginx installed?"; false; fi
@if [ ! -d "/etc/php/$(PHPVERSION)/fpm/pool.d/" ]; then echo "Couldn't find directory /etc/php/$(PHPVERSION)/fpm/pool.d/. Is php-fpm installed?"; false; fi
ln -sf $(CURDIR)/etc/nginx-conf /etc/nginx/sites-enabled/domjudge.conf
ln -sf $(CURDIR)/etc/domjudge-fpm.conf /etc/php/$(PHPVERSION)/fpm/pool.d/domjudge-fpm.conf
systemctl restart nginx
systemctl restart php$(PHPVERSION)-fpm
# Removes created symlinks; generated logs, submissions, etc. remain in output subdir.
inplace-uninstall-l:
rm -rf $(judgehost_libjudgedir)
rm -rf $(judgehost_bindir)
# Rules to configure and build for a Coverity scan.
coverity-conf:
$(MAKE) inplace-conf
coverity-build: paths.mk
$(MAKE) build build-scripts
# Secondly, delete all upstream PHP libraries to not analyze those:
-rm -rf webapp/vendor/*
@VERSION=` grep '^VERSION =' paths.mk | sed 's/^VERSION = *//'` ; \
PUBLISHED=`grep '^PUBLISHED =' paths.mk | sed 's/^PUBLISHED = *//'` ; \
if [ "$$PUBLISHED" = release ]; then DESC="release" ; \
elif [ -n "$$PUBLISHED" ]; then DESC="snapshot $$PUBLISHED" ; \
elif [ ! -d .git ]; then DESC="unknown source on `date`" ; fi ; \
echo "VERSION=$$VERSION" > cov-submit-data-version.sh ; \
if [ -n "$$DESC" ]; then echo "DESC=$$DESC" >> cov-submit-data-version.sh ; fi
clean-l:
# Remove Coverity scan data:
-rm -rf cov-int domjudge-scan.t* coverity-scan.tar.xz cov-submit-data-version.sh
distclean-l: clean-autoconf
-rm -f paths.mk
maintainer-clean: inplace-uninstall
maintainer-clean-l:
-rm -f configure aclocal.m4
clean-autoconf:
-rm -rf config.status config.cache config.log autom4te.cache
.PHONY: $(addsuffix -create-dirs,domserver judgehost docs) check-root \
$(addprefix inplace-,conf conf-common install uninstall) \
$(addprefix maintainer-,conf install) clean-autoconf config distdocs \
composer-dependencies composer-dependencies-dev \
coverity-conf coverity-build