10
10
-Wmissing-format-attribute -Wnormalized=nfc -Wpacked \
11
11
-Wredundant-decls -Wnested-externs -Winline -Wvla \
12
12
-Wvolatile-register-var -Woverlength-strings
14
#DEBUG:=-ggdb3 -fsanitize=address $(SANITIZE)
15
## Check which sanitizing options can be used
16
#SANITIZE:=$(foreach option,$(ALL_SANITIZE_OPTIONS),$(shell \
17
# echo 'int main(){}' | $(CC) --language=c $(option) \
18
# /dev/stdin -o /dev/null >/dev/null 2>&1 && echo $(option)))
13
#DEBUG:=-ggdb3 -fsanitize=address
14
# For info about _FORTIFY_SOURCE, see feature_test_macros(7)
15
# and <https://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html>.
16
FORTIFY:=-D_FORTIFY_SOURCE=2 -fstack-protector-all -fPIC
19
17
# <https://developerblog.redhat.com/2014/10/16/gcc-undefined-behavior-sanitizer-ubsan/>
20
18
ALL_SANITIZE_OPTIONS:=-fsanitize=leak -fsanitize=undefined \
21
19
-fsanitize=shift -fsanitize=integer-divide-by-zero \
41
39
#COVERAGE=--coverage
42
40
OPTIMIZE:=-Os -fno-strict-aliasing
43
41
LANGUAGE:=-std=gnu11
44
FEATURES:=-D_FILE_OFFSET_BITS=64
48
PKG_CONFIG?=pkg-config
50
USER:=$(firstword $(subst :, ,$(shell getent passwd _mandos \
51
|| getent passwd nobody || echo 65534)))
52
GROUP:=$(firstword $(subst :, ,$(shell getent group _mandos \
53
|| getent group nogroup || echo 65534)))
55
LINUXVERSION:=$(shell uname --kernel-release)
46
USER:=$(firstword $(subst :, ,$(shell getent passwd _mandos || getent passwd nobody || echo 65534)))
47
GROUP:=$(firstword $(subst :, ,$(shell getent group _mandos || getent group nogroup || echo 65534)))
57
49
## Use these settings for a traditional /usr/local install
58
50
# PREFIX:=$(DESTDIR)/usr/local
88
SYSTEMD:=$(DESTDIR)$(shell $(PKG_CONFIG) systemd \
89
--variable=systemdsystemunitdir)
90
TMPFILES:=$(DESTDIR)$(shell $(PKG_CONFIG) systemd \
91
--variable=tmpfilesdir)
92
SYSUSERS:=$(DESTDIR)$(shell $(PKG_CONFIG) systemd \
93
--variable=sysusersdir)
77
SYSTEMD:=$(DESTDIR)$(shell pkg-config systemd --variable=systemdsystemunitdir)
78
TMPFILES:=$(DESTDIR)$(shell pkg-config systemd --variable=tmpfilesdir)
95
GNUTLS_CFLAGS:=$(shell $(PKG_CONFIG) --cflags-only-I gnutls)
96
GNUTLS_LIBS:=$(shell $(PKG_CONFIG) --libs gnutls)
97
AVAHI_CFLAGS:=$(shell $(PKG_CONFIG) --cflags-only-I avahi-core)
98
AVAHI_LIBS:=$(shell $(PKG_CONFIG) --libs avahi-core)
99
GPGME_CFLAGS:=$(shell $(PKG_CONFIG) --cflags-only-I gpgme 2>/dev/null \
100
|| gpgme-config --cflags; getconf LFS_CFLAGS)
101
GPGME_LIBS:=$(shell $(PKG_CONFIG) --libs gpgme 2>/dev/null \
102
|| gpgme-config --libs; getconf LFS_LIBS; \
80
GNUTLS_CFLAGS:=$(shell pkg-config --cflags-only-I gnutls)
81
GNUTLS_LIBS:=$(shell pkg-config --libs gnutls)
82
AVAHI_CFLAGS:=$(shell pkg-config --cflags-only-I avahi-core)
83
AVAHI_LIBS:=$(shell pkg-config --libs avahi-core)
84
GPGME_CFLAGS:=$(shell gpgme-config --cflags; getconf LFS_CFLAGS)
85
GPGME_LIBS:=$(shell gpgme-config --libs; getconf LFS_LIBS; \
103
86
getconf LFS_LDFLAGS)
104
LIBNL3_CFLAGS:=$(shell $(PKG_CONFIG) --cflags-only-I libnl-route-3.0)
105
LIBNL3_LIBS:=$(shell $(PKG_CONFIG) --libs libnl-route-3.0)
106
GLIB_CFLAGS:=$(shell $(PKG_CONFIG) --cflags glib-2.0)
107
GLIB_LIBS:=$(shell $(PKG_CONFIG) --libs glib-2.0)
87
LIBNL3_CFLAGS:=$(shell pkg-config --cflags-only-I libnl-route-3.0)
88
LIBNL3_LIBS:=$(shell pkg-config --libs libnl-route-3.0)
109
90
# Do not change these two
110
CFLAGS+=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) \
111
$(LANGUAGE) $(FEATURES) -DVERSION='"$(version)"'
112
LDFLAGS+=-Xlinker --as-needed $(COVERAGE) $(LINK_FORTIFY) $(strip \
113
) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
91
CFLAGS+=$(WARN) $(DEBUG) $(FORTIFY) $(SANITIZE) $(COVERAGE) \
92
$(OPTIMIZE) $(LANGUAGE) $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) \
93
$(GPGME_CFLAGS) -DVERSION='"$(version)"'
94
LDFLAGS+=-Xlinker --as-needed $(COVERAGE) $(LINK_FORTIFY) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
115
96
# Commands to format a DocBook <refentry> document into a manual page
116
97
DOCBOOKTOMAN=$(strip cd $(dir $<); xsltproc --nonet --xinclude \
286
253
--expression='s/\(mandos_\)[0-9.]\+\(\.orig\.tar\.gz\)/\1$(version)\2/' \
289
# Need to add the GnuTLS, Avahi and GPGME libraries
290
plugins.d/mandos-client: CFLAGS += $(GNUTLS_CFLAGS) $(strip \
291
) $(AVAHI_CFLAGS) $(GPGME_CFLAGS)
292
plugins.d/mandos-client: LDLIBS += $(GNUTLS_LIBS) $(strip \
293
) $(AVAHI_LIBS) $(GPGME_LIBS)
295
# Need to add the libnl-route library
296
plugin-helpers/mandos-client-iprouteadddel: CFLAGS += $(LIBNL3_CFLAGS)
297
plugin-helpers/mandos-client-iprouteadddel: LDLIBS += $(LIBNL3_LIBS)
299
# Need to add the GLib and pthread libraries
300
dracut-module/password-agent: CFLAGS += $(GLIB_CFLAGS)
301
# Note: -lpthread is unnecessary with the GNU C library 2.34 or later
302
dracut-module/password-agent: LDLIBS += $(GLIB_LIBS) -lpthread
256
plugins.d/mandos-client: plugins.d/mandos-client.c
257
$(LINK.c) $^ -lrt $(GNUTLS_LIBS) $(AVAHI_LIBS) $(strip\
258
) $(GPGME_LIBS) $(LOADLIBES) $(LDLIBS) -o $@
260
plugin-helpers/mandos-client-iprouteadddel: plugin-helpers/mandos-client-iprouteadddel.c
261
$(LINK.c) $(LIBNL3_CFLAGS) $^ $(LIBNL3_LIBS) $(strip\
262
) $(LOADLIBES) $(LDLIBS) -o $@
264
.PHONY : all doc html clean distclean mostlyclean maintainer-clean \
265
check run-client run-server install install-html \
266
install-server install-client-nokey install-client uninstall \
267
uninstall-server uninstall-client purge purge-server \
306
271
-rm --force $(CPROGS) $(objects) $(htmldocs) $(DOCS) core
311
274
mostlyclean: clean
312
.PHONY: maintainer-clean
313
275
maintainer-clean: clean
314
276
-rm --force --recursive keydir confdir statedir
319
280
./mandos-ctl --check
320
./mandos-keygen --version
321
./plugin-runner --version
322
./plugin-helpers/mandos-client-iprouteadddel --version
323
./dracut-module/password-agent --test
325
282
# Run the client with a local config and key
327
run-client: all keydir/seckey.txt keydir/pubkey.txt \
328
keydir/tls-privkey.pem keydir/tls-pubkey.pem
329
@echo '######################################################'
330
@echo '# The following error messages are harmless and can #'
331
@echo '# be safely ignored: #'
332
@echo '## From plugin-runner: #'
333
@echo '# setgid: Operation not permitted #'
334
@echo '# setuid: Operation not permitted #'
335
@echo '## From askpass-fifo: #'
336
@echo '# mkfifo: Permission denied #'
337
@echo '## From mandos-client: #'
338
@echo '# Failed to raise privileges: Operation not permi... #'
339
@echo '# Warning: network hook "*" exited with status * #'
340
@echo '# ioctl SIOCSIFFLAGS +IFF_UP: Operation not permi... #'
341
@echo '# Failed to bring up interface "*": Operation not... #'
343
@echo '# (The messages are caused by not running as root, #'
344
@echo '# but you should NOT run "make run-client" as root #'
345
@echo '# unless you also unpacked and compiled Mandos as #'
346
@echo '# root, which is also NOT recommended.) #'
347
@echo '######################################################'
283
run-client: all keydir/seckey.txt keydir/pubkey.txt
284
@echo "###################################################################"
285
@echo "# The following error messages are harmless and can be safely #"
287
@echo "# From plugin-runner: setgid: Operation not permitted #"
288
@echo "# setuid: Operation not permitted #"
289
@echo "# From askpass-fifo: mkfifo: Permission denied #"
290
@echo "# From mandos-client: #"
291
@echo "# Failed to raise privileges: Operation not permitted #"
292
@echo "# Warning: network hook \"*\" exited with status * #"
294
@echo "# (The messages are caused by not running as root, but you should #"
295
@echo "# NOT run \"make run-client\" as root unless you also unpacked and #"
296
@echo "# compiled Mandos as root, which is also NOT recommended.) #"
297
@echo "###################################################################"
348
298
# We set GNOME_KEYRING_CONTROL to block pam_gnome_keyring
349
299
./plugin-runner --plugin-dir=plugins.d \
350
300
--plugin-helper-dir=plugin-helpers \
351
301
--config-file=plugin-runner.conf \
352
--options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt,--tls-privkey=keydir/tls-privkey.pem,--tls-pubkey=keydir/tls-pubkey.pem,--network-hook-dir=network-hooks.d \
302
--options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt,--network-hook-dir=network-hooks.d \
353
303
--env-for=mandos-client:GNOME_KEYRING_CONTROL= \
356
306
# Used by run-client
357
keydir/seckey.txt keydir/pubkey.txt keydir/tls-privkey.pem keydir/tls-pubkey.pem: mandos-keygen
307
keydir/seckey.txt keydir/pubkey.txt: mandos-keygen
358
308
install --directory keydir
359
309
./mandos-keygen --dir keydir --force
360
if ! [ -e keydir/tls-privkey.pem ]; then \
361
install --mode=u=rw /dev/null keydir/tls-privkey.pem; \
363
if ! [ -e keydir/tls-pubkey.pem ]; then \
364
install --mode=u=rw /dev/null keydir/tls-pubkey.pem; \
367
311
# Run the server with a local config
369
312
run-server: confdir/mandos.conf confdir/clients.conf statedir
370
313
./mandos --debug --no-dbus --configdir=confdir \
371
314
--statedir=statedir $(SERVERARGS)
492
417
plugin-helpers/mandos-client-iprouteadddel
493
418
install initramfs-tools-hook \
494
419
$(INITRAMFSTOOLS)/hooks/mandos
495
install --mode=u=rw,go=r initramfs-tools-conf \
496
$(INITRAMFSTOOLS)/conf.d/mandos-conf
497
install --mode=u=rw,go=r initramfs-tools-conf-hook \
498
$(INITRAMFSTOOLS)/conf-hooks.d/zz-mandos
420
install --mode=u=rw,go=r initramfs-tools-hook-conf \
421
$(INITRAMFSTOOLS)/conf-hooks.d/mandos
499
422
install initramfs-tools-script \
500
423
$(INITRAMFSTOOLS)/scripts/init-premount/mandos
501
install initramfs-tools-script-stop \
502
$(INITRAMFSTOOLS)/scripts/local-premount/mandos
503
install --directory $(DRACUTMODULE)
504
install --mode=u=rw,go=r --target-directory=$(DRACUTMODULE) \
505
dracut-module/ask-password-mandos.path \
506
dracut-module/ask-password-mandos.service
507
install --mode=u=rwxs,go=rx \
508
--target-directory=$(DRACUTMODULE) \
509
dracut-module/module-setup.sh \
510
dracut-module/cmdline-mandos.sh \
511
dracut-module/password-agent
512
424
install --mode=u=rw,go=r plugin-runner.conf $(CONFDIR)
513
425
gzip --best --to-stdout mandos-keygen.8 \
514
426
> $(MANDIR)/man8/mandos-keygen.8.gz
526
438
> $(MANDIR)/man8/askpass-fifo.8mandos.gz
527
439
gzip --best --to-stdout plugins.d/plymouth.8mandos \
528
440
> $(MANDIR)/man8/plymouth.8mandos.gz
529
gzip --best --to-stdout dracut-module/password-agent.8mandos \
530
> $(MANDIR)/man8/password-agent.8mandos.gz
532
.PHONY: install-client
533
442
install-client: install-client-nokey
534
443
# Post-installation stuff
535
444
-$(PREFIX)/sbin/mandos-keygen --dir "$(KEYDIR)"
536
if command -v update-initramfs >/dev/null; then \
537
update-initramfs -k all -u; \
538
elif command -v dracut >/dev/null; then \
539
for initrd in $(DESTDIR)/boot/initr*-$(LINUXVERSION); do \
540
if [ -w "$$initrd" ]; then \
541
chmod go-r "$$initrd"; \
542
dracut --force "$$initrd"; \
445
update-initramfs -k all -u
546
446
echo "Now run mandos-keygen --password --dir $(KEYDIR)"
549
448
uninstall: uninstall-server uninstall-client
551
.PHONY: uninstall-server
552
450
uninstall-server:
553
451
-rm --force $(PREFIX)/sbin/mandos \
554
452
$(PREFIX)/sbin/mandos-ctl \
592
483
$(MANDIR)/man8/splashy.8mandos.gz \
593
484
$(MANDIR)/man8/askpass-fifo.8mandos.gz \
594
485
$(MANDIR)/man8/plymouth.8mandos.gz \
595
$(MANDIR)/man8/password-agent.8mandos.gz \
596
486
-rmdir $(LIBDIR)/mandos/plugins.d $(CONFDIR)/plugins.d \
597
$(LIBDIR)/mandos $(CONFDIR) $(KEYDIR) $(DRACUTMODULE)
598
if command -v update-initramfs >/dev/null; then \
599
update-initramfs -k all -u; \
600
elif command -v dracut >/dev/null; then \
601
for initrd in $(DESTDIR)/boot/initr*-$(LINUXVERSION); do \
602
test -w "$$initrd" && dracut --force "$$initrd"; \
487
$(LIBDIR)/mandos $(CONFDIR) $(KEYDIR)
488
update-initramfs -k all -u
607
490
purge: purge-server purge-client
610
492
purge-server: uninstall-server
611
493
-rm --force $(CONFDIR)/mandos.conf $(CONFDIR)/clients.conf \
612
494
$(DESTDIR)/etc/dbus-1/system.d/mandos.conf