/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Teddy Hogeborn
  • Date: 2024-09-08 02:14:29 UTC
  • Revision ID: teddy@recompile.se-20240908021429-z4m1vfuaqbs0q3ry
Fix file permissions when installing a new kernel, with dracut

* debian/mandos-client.postinst (update_initramfs): When using dracut,
  but the initramfs image file does not yet exist (due to the kernel
  package not having been configured), create a new empty file with
  the correct permissions, so that dracut will use the correct
  permissions when creating the initramfs image file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
# For info about _FORTIFY_SOURCE, see feature_test_macros(7)
31
31
# and <https://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html>.
32
 
FORTIFY:=-D_FORTIFY_SOURCE=2 -fstack-protector-all -fPIC
 
32
FORTIFY:=-fstack-protector-all -fPIC
 
33
CPPFLAGS+=-D_FORTIFY_SOURCE=3
33
34
LINK_FORTIFY_LD:=-z relro -z now
34
35
LINK_FORTIFY:=
35
36
 
41
42
#COVERAGE=--coverage
42
43
OPTIMIZE:=-Os -fno-strict-aliasing
43
44
LANGUAGE:=-std=gnu11
 
45
CPPFLAGS+=-D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64
44
46
htmldir:=man
45
 
version:=1.8.5
 
47
version:=1.8.16
46
48
SED:=sed
47
49
PKG_CONFIG?=pkg-config
48
50
 
62
64
# DRACUTMODULE:=$(DESTDIR)/usr/lib/dracut/modules.d/90mandos
63
65
# STATEDIR:=$(DESTDIR)/var/lib/mandos
64
66
# LIBDIR:=$(PREFIX)/lib
 
67
# DBUSPOLICYDIR:=$(DESTDIR)/etc/dbus-1/system.d
65
68
##
66
69
 
67
70
## These settings are for a package-type install
82
85
                        break; \
83
86
                fi; \
84
87
        done)
 
88
DBUSPOLICYDIR:=$(DESTDIR)/usr/share/dbus-1/system.d
85
89
##
86
90
 
87
91
SYSTEMD:=$(DESTDIR)$(shell $(PKG_CONFIG) systemd \
88
92
                        --variable=systemdsystemunitdir)
89
93
TMPFILES:=$(DESTDIR)$(shell $(PKG_CONFIG) systemd \
90
94
                        --variable=tmpfilesdir)
 
95
SYSUSERS:=$(DESTDIR)$(shell $(PKG_CONFIG) systemd \
 
96
                        --variable=sysusersdir)
91
97
 
92
98
GNUTLS_CFLAGS:=$(shell $(PKG_CONFIG) --cflags-only-I gnutls)
93
99
GNUTLS_LIBS:=$(shell $(PKG_CONFIG) --libs gnutls)
94
100
AVAHI_CFLAGS:=$(shell $(PKG_CONFIG) --cflags-only-I avahi-core)
95
101
AVAHI_LIBS:=$(shell $(PKG_CONFIG) --libs avahi-core)
96
 
GPGME_CFLAGS:=$(shell gpgme-config --cflags; getconf LFS_CFLAGS)
97
 
GPGME_LIBS:=$(shell gpgme-config --libs; getconf LFS_LIBS; \
 
102
GPGME_CFLAGS:=$(shell $(PKG_CONFIG) --cflags-only-I gpgme 2>/dev/null \
 
103
        || gpgme-config --cflags; getconf LFS_CFLAGS)
 
104
GPGME_LIBS:=$(shell $(PKG_CONFIG) --libs gpgme 2>/dev/null \
 
105
        || gpgme-config --libs; getconf LFS_LIBS; \
98
106
        getconf LFS_LDFLAGS)
99
107
LIBNL3_CFLAGS:=$(shell $(PKG_CONFIG) --cflags-only-I libnl-route-3.0)
100
108
LIBNL3_LIBS:=$(shell $(PKG_CONFIG) --libs libnl-route-3.0)
102
110
GLIB_LIBS:=$(shell $(PKG_CONFIG) --libs glib-2.0)
103
111
 
104
112
# Do not change these two
105
 
CFLAGS+=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) \
106
 
        $(OPTIMIZE) $(LANGUAGE) -DVERSION='"$(version)"'
 
113
CFLAGS+=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) \
 
114
        $(LANGUAGE) -DVERSION='"$(version)"'
107
115
LDFLAGS+=-Xlinker --as-needed $(COVERAGE) $(LINK_FORTIFY) $(strip \
108
116
        ) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
109
117
 
153
161
 
154
162
objects:=$(addsuffix .o,$(CPROGS))
155
163
 
 
164
.PHONY: all
156
165
all: $(PROGS) mandos.lsm
157
166
 
 
167
.PHONY: doc
158
168
doc: $(DOCS)
159
169
 
 
170
.PHONY: html
160
171
html: $(htmldocs)
161
172
 
162
173
%.5: %.xml common.ent legalnotice.xml
279
290
                $@)
280
291
 
281
292
# Need to add the GnuTLS, Avahi and GPGME libraries
282
 
plugins.d/mandos-client: plugins.d/mandos-client.c
283
 
        $(LINK.c) $^ $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(strip\
284
 
                ) $(GPGME_CFLAGS) $(GNUTLS_LIBS) $(strip\
285
 
                ) $(AVAHI_LIBS) $(GPGME_LIBS) $(LOADLIBES) $(strip\
286
 
                ) $(LDLIBS) -o $@
 
293
plugins.d/mandos-client: CFLAGS += $(GNUTLS_CFLAGS) $(strip \
 
294
        ) $(AVAHI_CFLAGS) $(GPGME_CFLAGS)
 
295
plugins.d/mandos-client: LDLIBS += $(GNUTLS_LIBS) $(strip \
 
296
        ) $(AVAHI_LIBS) $(GPGME_LIBS)
287
297
 
288
298
# Need to add the libnl-route library
289
 
plugin-helpers/mandos-client-iprouteadddel: plugin-helpers/mandos-client-iprouteadddel.c
290
 
        $(LINK.c) $(LIBNL3_CFLAGS) $^ $(LIBNL3_LIBS) $(strip\
291
 
                ) $(LOADLIBES) $(LDLIBS) -o $@
 
299
plugin-helpers/mandos-client-iprouteadddel: CFLAGS += $(LIBNL3_CFLAGS)
 
300
plugin-helpers/mandos-client-iprouteadddel: LDLIBS += $(LIBNL3_LIBS)
292
301
 
293
302
# Need to add the GLib and pthread libraries
294
 
dracut-module/password-agent: dracut-module/password-agent.c
295
 
        $(LINK.c) $(GLIB_CFLAGS) $^ $(GLIB_LIBS) -lpthread $(strip\
296
 
                ) $(LOADLIBES) $(LDLIBS) -o $@
297
 
 
298
 
.PHONY : all doc html clean distclean mostlyclean maintainer-clean \
299
 
        check run-client run-server install install-html \
300
 
        install-server install-client-nokey install-client uninstall \
301
 
        uninstall-server uninstall-client purge purge-server \
302
 
        purge-client
303
 
 
 
303
dracut-module/password-agent: CFLAGS += $(GLIB_CFLAGS)
 
304
# Note: -lpthread is unnecessary with the GNU C library 2.34 or later
 
305
dracut-module/password-agent: LDLIBS += $(GLIB_LIBS) -lpthread
 
306
 
 
307
.PHONY: clean
304
308
clean:
305
309
        -rm --force $(CPROGS) $(objects) $(htmldocs) $(DOCS) core
306
310
 
 
311
.PHONY: distclean
307
312
distclean: clean
 
313
.PHONY: mostlyclean
308
314
mostlyclean: clean
 
315
.PHONY: maintainer-clean
309
316
maintainer-clean: clean
310
317
        -rm --force --recursive keydir confdir statedir
311
318
 
 
319
.PHONY: check
312
320
check: all
313
321
        ./mandos --check
314
322
        ./mandos-ctl --check
318
326
        ./dracut-module/password-agent --test
319
327
 
320
328
# Run the client with a local config and key
 
329
.PHONY: run-client
321
330
run-client: all keydir/seckey.txt keydir/pubkey.txt \
322
331
                        keydir/tls-privkey.pem keydir/tls-pubkey.pem
323
332
        @echo '######################################################'
351
360
keydir/seckey.txt keydir/pubkey.txt keydir/tls-privkey.pem keydir/tls-pubkey.pem: mandos-keygen
352
361
        install --directory keydir
353
362
        ./mandos-keygen --dir keydir --force
 
363
        if ! [ -e keydir/tls-privkey.pem ]; then \
 
364
                install --mode=u=rw /dev/null keydir/tls-privkey.pem; \
 
365
        fi
 
366
        if ! [ -e keydir/tls-pubkey.pem ]; then \
 
367
                install --mode=u=rw /dev/null keydir/tls-pubkey.pem; \
 
368
        fi
354
369
 
355
370
# Run the server with a local config
 
371
.PHONY: run-server
356
372
run-server: confdir/mandos.conf confdir/clients.conf statedir
357
373
        ./mandos --debug --no-dbus --configdir=confdir \
358
374
                --statedir=statedir $(SERVERARGS)
369
385
statedir:
370
386
        install --directory statedir
371
387
 
 
388
.PHONY: install
372
389
install: install-server install-client-nokey
373
390
 
 
391
.PHONY: install-html
374
392
install-html: html
375
393
        install --directory $(htmldir)
376
394
        install --mode=u=rw,go=r --target-directory=$(htmldir) \
377
395
                $(htmldocs)
378
396
 
 
397
.PHONY: install-server
379
398
install-server: doc
380
399
        install --directory $(CONFDIR)
381
400
        if install --directory --mode=u=rwx --owner=$(USER) \
389
408
                install --mode=u=rw,go=r tmpfiles.d-mandos.conf \
390
409
                        $(TMPFILES)/mandos.conf; \
391
410
        fi
 
411
        if [ "$(SYSUSERS)" != "$(DESTDIR)" \
 
412
                        -a -d "$(SYSUSERS)" ]; then \
 
413
                install --mode=u=rw,go=r sysusers.d-mandos.conf \
 
414
                        $(SYSUSERS)/mandos.conf; \
 
415
        fi
392
416
        install --mode=u=rwx,go=rx mandos $(PREFIX)/sbin/mandos
393
417
        install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
394
418
                mandos-ctl
399
423
        install --mode=u=rw --target-directory=$(CONFDIR) \
400
424
                clients.conf
401
425
        install --mode=u=rw,go=r dbus-mandos.conf \
402
 
                $(DESTDIR)/etc/dbus-1/system.d/mandos.conf
 
426
                $(DBUSPOLICYDIR)/mandos.conf
403
427
        install --mode=u=rwx,go=rx init.d-mandos \
404
428
                $(DESTDIR)/etc/init.d/mandos
405
429
        if [ "$(SYSTEMD)" != "$(DESTDIR)" -a -d "$(SYSTEMD)" ]; then \
423
447
        gzip --best --to-stdout intro.8mandos \
424
448
                > $(MANDIR)/man8/intro.8mandos.gz
425
449
 
 
450
.PHONY: install-client-nokey
426
451
install-client-nokey: all doc
427
452
        install --directory $(LIBDIR)/mandos $(CONFDIR)
428
453
        install --directory --mode=u=rwx $(KEYDIR) \
429
454
                $(LIBDIR)/mandos/plugins.d \
430
455
                $(LIBDIR)/mandos/plugin-helpers
 
456
        if [ "$(SYSUSERS)" != "$(DESTDIR)" \
 
457
                        -a -d "$(SYSUSERS)" ]; then \
 
458
                install --mode=u=rw,go=r sysusers.d-mandos.conf \
 
459
                        $(SYSUSERS)/mandos-client.conf; \
 
460
        fi
431
461
        if [ "$(CONFDIR)" != "$(LIBDIR)/mandos" ]; then \
432
462
                install --mode=u=rwx \
433
463
                        --directory "$(CONFDIR)/plugins.d" \
502
532
        gzip --best --to-stdout dracut-module/password-agent.8mandos \
503
533
                > $(MANDIR)/man8/password-agent.8mandos.gz
504
534
 
 
535
.PHONY: install-client
505
536
install-client: install-client-nokey
506
537
# Post-installation stuff
507
538
        -$(PREFIX)/sbin/mandos-keygen --dir "$(KEYDIR)"
517
548
        fi
518
549
        echo "Now run mandos-keygen --password --dir $(KEYDIR)"
519
550
 
 
551
.PHONY: uninstall
520
552
uninstall: uninstall-server uninstall-client
521
553
 
 
554
.PHONY: uninstall-server
522
555
uninstall-server:
523
556
        -rm --force $(PREFIX)/sbin/mandos \
524
557
                $(PREFIX)/sbin/mandos-ctl \
531
564
        update-rc.d -f mandos remove
532
565
        -rmdir $(CONFDIR)
533
566
 
 
567
.PHONY: uninstall-client
534
568
uninstall-client:
535
569
# Refuse to uninstall client if /etc/crypttab is explicitly configured
536
570
# to use it.
572
606
            done; \
573
607
        fi
574
608
 
 
609
.PHONY: purge
575
610
purge: purge-server purge-client
576
611
 
 
612
.PHONY: purge-server
577
613
purge-server: uninstall-server
578
614
        -rm --force $(CONFDIR)/mandos.conf $(CONFDIR)/clients.conf \
579
615
                $(DESTDIR)/etc/dbus-1/system.d/mandos.conf
584
620
                $(DESTDIR)/var/run/mandos.pid
585
621
        -rmdir $(CONFDIR)
586
622
 
 
623
.PHONY: purge-client
587
624
purge-client: uninstall-client
588
625
        -shred --remove $(KEYDIR)/seckey.txt $(KEYDIR)/tls-privkey.pem
589
626
        -rm --force $(CONFDIR)/plugin-runner.conf \