/mandos/release

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

« back to all changes in this revision

Viewing changes to Makefile

* network-hooks.d/bridge: Use "/usr/sbin/brctl" explicitly.
* plugins.d/mandos-client.c (run_network_hooks): Raise priviliges in
                                                 child process.
  (main): Do not use getuid() to check if running setuid root.  Do not
          raise privileges for run_network_hooks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
OPTIMIZE=-Os
24
24
LANGUAGE=-std=gnu99
25
25
htmldir=man
26
 
version=1.6.2
 
26
version=1.4.1
27
27
SED=sed
28
28
 
29
 
USER=$(firstword $(subst :, ,$(shell getent passwd _mandos || getent passwd nobody || echo 65534)))
30
 
GROUP=$(firstword $(subst :, ,$(shell getent group _mandos || getent group nobody || echo 65534)))
31
 
 
32
29
## Use these settings for a traditional /usr/local install
33
30
# PREFIX=$(DESTDIR)/usr/local
34
31
# CONFDIR=$(DESTDIR)/etc/mandos
35
32
# KEYDIR=$(DESTDIR)/etc/mandos/keys
36
33
# MANDIR=$(PREFIX)/man
37
34
# INITRAMFSTOOLS=$(DESTDIR)/etc/initramfs-tools
38
 
# STATEDIR=$(DESTDIR)/var/lib/mandos
39
35
##
40
36
 
41
37
## These settings are for a package-type install
44
40
KEYDIR=$(DESTDIR)/etc/keys/mandos
45
41
MANDIR=$(PREFIX)/share/man
46
42
INITRAMFSTOOLS=$(DESTDIR)/usr/share/initramfs-tools
47
 
STATEDIR=$(DESTDIR)/var/lib/mandos
48
43
##
49
44
 
50
 
SYSTEMD=$(DESTDIR)$(shell pkg-config systemd --variable=systemdsystemunitdir)
51
 
 
52
45
GNUTLS_CFLAGS=$(shell pkg-config --cflags-only-I gnutls)
53
46
GNUTLS_LIBS=$(shell pkg-config --libs gnutls)
54
47
AVAHI_CFLAGS=$(shell pkg-config --cflags-only-I avahi-core)
58
51
        getconf LFS_LDFLAGS)
59
52
 
60
53
# Do not change these two
61
 
CFLAGS+=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) \
 
54
CFLAGS=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) \
62
55
        $(LANGUAGE) $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(GPGME_CFLAGS) \
63
56
        -DVERSION='"$(version)"'
64
 
LDFLAGS+=-Xlinker --as-needed $(COVERAGE) $(LINK_FORTIFY) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
 
57
LDFLAGS=-Xlinker --as-needed $(COVERAGE) $(LINK_FORTIFY) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
65
58
 
66
59
# Commands to format a DocBook <refentry> document into a manual page
67
60
DOCBOOKTOMAN=$(strip cd $(dir $<); xsltproc --nonet --xinclude \
70
63
        --param make.single.year.ranges         1 \
71
64
        --param man.output.quietly              1 \
72
65
        --param man.authors.section.enabled     0 \
73
 
        /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl \
 
66
         /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl \
74
67
        $(notdir $<); \
75
68
        $(MANPOST) $(notdir $@);\
76
 
        if locale --all 2>/dev/null | grep --regexp='^en_US\.utf8$$' \
77
 
        && type man 2>/dev/null; then LANG=en_US.UTF-8 MANWIDTH=80 \
78
 
        man --warnings --encoding=UTF-8 --local-file $(notdir $@); \
79
 
        fi >/dev/null)
 
69
        LANG=en_US.UTF-8 MANWIDTH=80 man --warnings --encoding=UTF-8 \
 
70
        --local-file $(notdir $@) >/dev/null)
80
71
# DocBook-to-man post-processing to fix a '\n' escape bug
81
72
MANPOST=$(SED) --in-place --expression='s,\\\\en,\\en,g;s,\\n,\\en,g'
82
73
 
239
230
distclean: clean
240
231
mostlyclean: clean
241
232
maintainer-clean: clean
242
 
        -rm --force --recursive keydir confdir statedir
 
233
        -rm --force --recursive keydir confdir
243
234
 
244
235
check:  all
245
236
        ./mandos --check
246
 
        ./mandos-ctl --check
247
237
 
248
238
# Run the client with a local config and key
249
239
run-client: all keydir/seckey.txt keydir/pubkey.txt
269
259
        ./mandos-keygen --dir keydir --force
270
260
 
271
261
# Run the server with a local config
272
 
run-server: confdir/mandos.conf confdir/clients.conf statedir
273
 
        ./mandos --debug --no-dbus --configdir=confdir \
274
 
                --statedir=statedir $(SERVERARGS)
 
262
run-server: confdir/mandos.conf confdir/clients.conf
 
263
        @echo "#################################################################"
 
264
        @echo "# NOTE: Please IGNORE the error about \"Could not open file      #"
 
265
        @echo "# u'/var/run/mandos.pid'\" -  it is harmless and is caused by    #"
 
266
        @echo "# the server not running as root.  Do NOT run \"make run-server\" #"
 
267
        @echo "# server as root if you didn't also unpack and compile it thus. #"
 
268
        @echo "#################################################################"
 
269
        ./mandos --debug --no-dbus --configdir=confdir $(SERVERARGS)
275
270
 
276
271
# Used by run-server
277
272
confdir/mandos.conf: mandos.conf
282
277
        install --mode=u=rw $< $@
283
278
# Add a client password
284
279
        ./mandos-keygen --dir keydir --password >> $@
285
 
statedir:
286
 
        install --directory statedir
287
280
 
288
281
install: install-server install-client-nokey
289
282
 
294
287
 
295
288
install-server: doc
296
289
        install --directory $(CONFDIR)
297
 
        install --directory --mode=u=rwx --owner=$(USER) \
298
 
                --group=$(GROUP) $(STATEDIR)
299
290
        install --mode=u=rwx,go=rx mandos $(PREFIX)/sbin/mandos
300
291
        install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
301
292
                mandos-ctl
309
300
                $(DESTDIR)/etc/dbus-1/system.d/mandos.conf
310
301
        install --mode=u=rwx,go=rx init.d-mandos \
311
302
                $(DESTDIR)/etc/init.d/mandos
312
 
        if [ "$(SYSTEMD)" != "$(DESTDIR)" -a -d "$(SYSTEMD)" ]; then \
313
 
                install --mode=u=rw,go=r mandos.service $(SYSTEMD); \
314
 
        fi
315
303
        install --mode=u=rw,go=r default-mandos \
316
304
                $(DESTDIR)/etc/default/mandos
317
305
        if [ -z $(DESTDIR) ]; then \
327
315
                > $(MANDIR)/man5/mandos.conf.5.gz
328
316
        gzip --best --to-stdout mandos-clients.conf.5 \
329
317
                > $(MANDIR)/man5/mandos-clients.conf.5.gz
330
 
        gzip --best --to-stdout intro.8mandos \
331
 
                > $(MANDIR)/man8/intro.8mandos.gz
332
318
 
333
319
install-client-nokey: all doc
334
320
        install --directory $(PREFIX)/lib/mandos $(CONFDIR)
338
324
                install --mode=u=rwx \
339
325
                        --directory "$(CONFDIR)/plugins.d"; \
340
326
        fi
341
 
        install --mode=u=rwx,go=rx --directory \
342
 
                "$(CONFDIR)/network-hooks.d"
343
327
        install --mode=u=rwx,go=rx \
344
328
                --target-directory=$(PREFIX)/lib/mandos plugin-runner
345
329
        install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
441
425
                $(DESTDIR)/etc/dbus-1/system.d/mandos.conf
442
426
                $(DESTDIR)/etc/default/mandos \
443
427
                $(DESTDIR)/etc/init.d/mandos \
444
 
                $(SYSTEMD)/mandos.service \
445
 
                $(DESTDIR)/run/mandos.pid \
446
428
                $(DESTDIR)/var/run/mandos.pid
447
429
        -rmdir $(CONFDIR)
448
430