65
41
--param man.authors.section.enabled 0 \
66
42
/usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl \
68
$(MANPOST) $(notdir $@);\
69
LANG=en_US.UTF-8 MANWIDTH=80 man --warnings --encoding=UTF-8 \
70
--local-file $(notdir $@) >/dev/null)
71
# DocBook-to-man post-processing to fix a '\n' escape bug
72
MANPOST=$(SED) --in-place --expression='s,\\\\en,\\en,g;s,\\n,\\en,g'
74
DOCBOOKTOHTML=$(strip xsltproc --nonet --xinclude \
75
--param make.year.ranges 1 \
76
--param make.single.year.ranges 1 \
77
--param man.output.quietly 1 \
78
--param man.authors.section.enabled 0 \
79
--param citerefentry.link 1 \
81
/usr/share/xml/docbook/stylesheet/nwalsh/xhtml/docbook.xsl \
83
# Fix citerefentry links
84
HTMLPOST=$(SED) --in-place \
85
--expression='s/\(<a class="citerefentry" href="\)\("><span class="citerefentry"><span class="refentrytitle">\)\([^<]*\)\(<\/span>(\)\([^)]*\)\()<\/span><\/a>\)/\1\3.\5\2\3\4\5\6/g'
87
PLUGINS=plugins.d/password-prompt plugins.d/mandos-client \
88
plugins.d/usplash plugins.d/splashy plugins.d/askpass-fifo \
90
CPROGS=plugin-runner $(PLUGINS)
91
PROGS=mandos mandos-keygen mandos-ctl mandos-monitor $(CPROGS)
92
DOCS=mandos.8 mandos-keygen.8 mandos-monitor.8 mandos-ctl.8 \
93
mandos.conf.5 mandos-clients.conf.5 plugin-runner.8mandos \
94
plugins.d/mandos-client.8mandos \
95
plugins.d/password-prompt.8mandos plugins.d/usplash.8mandos \
96
plugins.d/splashy.8mandos plugins.d/askpass-fifo.8mandos \
97
plugins.d/plymouth.8mandos intro.8mandos
99
htmldocs=$(addsuffix .xhtml,$(DOCS))
101
objects=$(addsuffix .o,$(CPROGS))
103
all: $(PROGS) mandos.lsm
44
$(MANPOST) $(notdir $@)
45
# DocBook-to-man post-processing to fix a \n escape bug
46
MANPOST=sed --in-place --expression='s,\\\\en,\\en,g;s,\\n,\\en,g'
48
PLUGINS=plugins.d/password-prompt plugins.d/password-request
49
PROGS=plugin-runner $(PLUGINS)
50
DOCS=mandos.8 plugin-runner.8mandos mandos-keygen.8 \
51
plugins.d/password-request.8mandos \
52
plugins.d/password-prompt.8mandos mandos.conf.5 \
55
objects=$(addsuffix .o,$(PROGS))
109
%.5: %.xml common.ent legalnotice.xml
111
%.5.xhtml: %.xml common.ent legalnotice.xml
114
%.8: %.xml common.ent legalnotice.xml
116
%.8.xhtml: %.xml common.ent legalnotice.xml
119
%.8mandos: %.xml common.ent legalnotice.xml
121
%.8mandos.xhtml: %.xml common.ent legalnotice.xml
124
intro.8mandos: intro.xml common.ent legalnotice.xml
126
intro.8mandos.xhtml: intro.xml common.ent legalnotice.xml
129
mandos.8: mandos.xml common.ent mandos-options.xml overview.xml \
132
mandos.8.xhtml: mandos.xml common.ent mandos-options.xml \
133
overview.xml legalnotice.xml
136
mandos-keygen.8: mandos-keygen.xml common.ent overview.xml \
139
mandos-keygen.8.xhtml: mandos-keygen.xml common.ent overview.xml \
143
mandos-monitor.8: mandos-monitor.xml common.ent overview.xml \
146
mandos-monitor.8.xhtml: mandos-monitor.xml common.ent overview.xml \
150
mandos-ctl.8: mandos-ctl.xml common.ent overview.xml \
153
mandos-ctl.8.xhtml: mandos-ctl.xml common.ent overview.xml \
157
mandos.conf.5: mandos.conf.xml common.ent mandos-options.xml \
160
mandos.conf.5.xhtml: mandos.conf.xml common.ent mandos-options.xml \
164
plugin-runner.8mandos: plugin-runner.xml common.ent overview.xml \
167
plugin-runner.8mandos.xhtml: plugin-runner.xml common.ent \
168
overview.xml legalnotice.xml
171
plugins.d/mandos-client.8mandos: plugins.d/mandos-client.xml \
174
overview.xml legalnotice.xml
176
plugins.d/mandos-client.8mandos.xhtml: plugins.d/mandos-client.xml \
179
overview.xml legalnotice.xml
182
# Update all these files with version number $(version)
184
$(strip $(SED) --in-place \
185
--expression='s/^\(<!ENTITY version "\)[^"]*">$$/\1$(version)">/' \
189
$(strip $(SED) --in-place \
190
--expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
193
mandos-keygen: Makefile
194
$(strip $(SED) --in-place \
195
--expression='s/^\(VERSION="\)[^"]*"$$/\1$(version)"/' \
199
$(strip $(SED) --in-place \
200
--expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
203
mandos-monitor: Makefile
204
$(strip $(SED) --in-place \
205
--expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
209
$(strip $(SED) --in-place \
210
--expression='s/^\(Version:\).*/\1\t$(version)/' \
212
$(strip $(SED) --in-place \
213
--expression='s/^\(Entered-date:\).*/\1\t$(shell date --rfc-3339=date --reference=Makefile)/' \
215
$(strip $(SED) --in-place \
216
--expression='s/\(mandos_\)[0-9.]\+\(\.orig\.tar\.gz\)/\1$(version)\2/' \
219
plugins.d/mandos-client: plugins.d/mandos-client.c
220
$(LINK.c) $^ -lrt $(GNUTLS_LIBS) $(AVAHI_LIBS) $(strip\
221
) $(GPGME_LIBS) $(LOADLIBES) $(LDLIBS) -o $@
223
.PHONY : all doc html clean distclean run-client run-server install \
61
%.5: %.xml legalnotice.xml
64
%.8: %.xml legalnotice.xml
67
%.8mandos: %.xml legalnotice.xml
70
mandos.8: mandos.xml mandos-options.xml overview.xml legalnotice.xml
73
mandos-keygen.8: mandos-keygen.xml overview.xml legalnotice.xml
76
mandos.conf.5: mandos.conf.xml mandos-options.xml legalnotice.xml
79
plugin-runner.8mandos: plugin-runner.xml overview.xml legalnotice.xml
82
plugins.d/password-request.8mandos: plugins.d/password-request.xml \
84
overview.xml legalnotice.xml
87
plugins.d/password-request: plugins.d/password-request.o
88
$(LINK.o) $(GNUTLS_LIBS) $(AVAHI_LIBS) $(GPGME_LIBS) \
89
$(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
91
.PHONY : all doc clean distclean run-client run-server install \
224
92
install-server install-client uninstall uninstall-server \
225
93
uninstall-client purge purge-server purge-client
228
-rm --force $(CPROGS) $(objects) $(htmldocs) $(DOCS) core
96
-rm --force $(PROGS) $(objects) $(DOCS) core
231
99
mostlyclean: clean
232
100
maintainer-clean: clean
233
101
-rm --force --recursive keydir confdir
238
106
# Run the client with a local config and key
239
run-client: all keydir/seckey.txt keydir/pubkey.txt
240
@echo "###################################################################"
241
@echo "# The following error messages are harmless and can be safely #"
242
@echo "# ignored. The messages are caused by not running as root, but #"
243
@echo "# you should NOT run \"make run-client\" as root unless you also #"
244
@echo "# unpacked and compiled Mandos as root, which is NOT recommended. #"
245
@echo "# From plugin-runner: setuid: Operation not permitted #"
246
@echo "# From askpass-fifo: mkfifo: Permission denied #"
247
@echo "# From mandos-client: setuid: Operation not permitted #"
248
@echo "# seteuid: Operation not permitted #"
249
@echo "# klogctl: Operation not permitted #"
250
@echo "###################################################################"
107
run-client: all keydir/seckey.txt keydir/pubkey.txt \
108
keydir/secring.gpg keydir/pubring.gpg
251
109
./plugin-runner --plugin-dir=plugins.d \
252
110
--config-file=plugin-runner.conf \
253
--options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt \
111
--options-for=password-request:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt
256
113
# Used by run-client
114
keydir/secring.gpg: keydir/seckey.txt
115
gpg --homedir $(dir $<) --import $^
116
keydir/pubring.gpg: keydir/pubkey.txt
117
gpg --homedir $(dir $<) --import $^
257
118
keydir/seckey.txt keydir/pubkey.txt: mandos-keygen
258
119
install --directory keydir
259
120
./mandos-keygen --dir keydir --force
261
122
# Run the server with a local config
262
123
run-server: confdir/mandos.conf confdir/clients.conf
263
./mandos --debug --no-dbus --configdir=confdir --no-restore \
124
./mandos --debug --configdir=confdir
266
126
# Used by run-server
267
127
confdir/mandos.conf: mandos.conf
268
128
install --directory confdir
269
install --mode=u=rw,go=r $^ $@
270
130
confdir/clients.conf: clients.conf keydir/seckey.txt
271
131
install --directory confdir
272
install --mode=u=rw $< $@
132
install clients.conf $@
273
133
# Add a client password
274
134
./mandos-keygen --dir keydir --password >> $@
276
install: install-server install-client-nokey
279
install --directory $(htmldir)
280
install --mode=u=rw,go=r --target-directory=$(htmldir) \
136
install: install-server install-client
283
138
install-server: doc
284
install --directory $(CONFDIR)
285
install --mode=u=rwx,go=rx mandos $(PREFIX)/sbin/mandos
286
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
288
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
290
install --mode=u=rw,go=r --target-directory=$(CONFDIR) \
292
install --mode=u=rw --target-directory=$(CONFDIR) \
139
install --directory --parents $(CONFDIR) $(MANDIR)/man5 \
141
install --mode=0755 mandos $(PREFIX)/sbin/mandos
142
install --mode=0644 --target-directory=$(CONFDIR) mandos.conf
143
install --mode=0640 --target-directory=$(CONFDIR) \
294
install --mode=u=rw,go=r dbus-mandos.conf \
295
$(DESTDIR)/etc/dbus-1/system.d/mandos.conf
296
install --mode=u=rwx,go=rx init.d-mandos \
297
$(DESTDIR)/etc/init.d/mandos
298
install --mode=u=rw,go=r default-mandos \
299
$(DESTDIR)/etc/default/mandos
300
if [ -z $(DESTDIR) ]; then \
301
update-rc.d mandos defaults 25 15;\
303
145
gzip --best --to-stdout mandos.8 \
304
146
> $(MANDIR)/man8/mandos.8.gz
305
gzip --best --to-stdout mandos-monitor.8 \
306
> $(MANDIR)/man8/mandos-monitor.8.gz
307
gzip --best --to-stdout mandos-ctl.8 \
308
> $(MANDIR)/man8/mandos-ctl.8.gz
309
147
gzip --best --to-stdout mandos.conf.5 \
310
148
> $(MANDIR)/man5/mandos.conf.5.gz
311
149
gzip --best --to-stdout mandos-clients.conf.5 \
312
150
> $(MANDIR)/man5/mandos-clients.conf.5.gz
314
install-client-nokey: all doc
315
install --directory $(PREFIX)/lib/mandos $(CONFDIR)
316
install --directory --mode=u=rwx $(KEYDIR) \
317
$(PREFIX)/lib/mandos/plugins.d
318
if [ "$(CONFDIR)" != "$(PREFIX)/lib/mandos" ]; then \
319
install --mode=u=rwx \
320
--directory "$(CONFDIR)/plugins.d"; \
322
install --mode=u=rwx,go=rx \
323
--target-directory=$(PREFIX)/lib/mandos plugin-runner
324
install --mode=u=rwx,go=rx --target-directory=$(PREFIX)/sbin \
152
install-client: all doc /usr/share/initramfs-tools/hooks/.
153
install --directory --parents $(PREFIX)/lib/mandos \
154
$(CONFDIR) $(MANDIR)/man8
155
install --directory --mode=0700 $(PREFIX)/lib/mandos/plugins.d
156
chmod u=rwx,g=,o= $(PREFIX)/lib/mandos/plugins.d
157
install --mode=0755 --target-directory=$(PREFIX)/lib/mandos \
159
install --mode=0755 --target-directory=$(PREFIX)/sbin \
326
install --mode=u=rwx,go=rx \
161
install --mode=0755 \
327
162
--target-directory=$(PREFIX)/lib/mandos/plugins.d \
328
163
plugins.d/password-prompt
329
install --mode=u=rwxs,go=rx \
330
--target-directory=$(PREFIX)/lib/mandos/plugins.d \
331
plugins.d/mandos-client
332
install --mode=u=rwxs,go=rx \
333
--target-directory=$(PREFIX)/lib/mandos/plugins.d \
335
install --mode=u=rwxs,go=rx \
336
--target-directory=$(PREFIX)/lib/mandos/plugins.d \
338
install --mode=u=rwxs,go=rx \
339
--target-directory=$(PREFIX)/lib/mandos/plugins.d \
340
plugins.d/askpass-fifo
341
install --mode=u=rwxs,go=rx \
342
--target-directory=$(PREFIX)/lib/mandos/plugins.d \
164
install --mode=4755 \
165
--target-directory=$(PREFIX)/lib/mandos/plugins.d \
166
plugins.d/password-request
344
167
install initramfs-tools-hook \
345
$(INITRAMFSTOOLS)/hooks/mandos
346
install --mode=u=rw,go=r initramfs-tools-hook-conf \
347
$(INITRAMFSTOOLS)/conf-hooks.d/mandos
168
/usr/share/initramfs-tools/hooks/mandos
169
install initramfs-tools-hook-conf \
170
/usr/share/initramfs-tools/conf-hooks.d/mandos
348
171
install initramfs-tools-script \
349
$(INITRAMFSTOOLS)/scripts/init-premount/mandos
350
install --mode=u=rw,go=r plugin-runner.conf $(CONFDIR)
172
/usr/share/initramfs-tools/scripts/local-top/mandos
351
173
gzip --best --to-stdout mandos-keygen.8 \
352
174
> $(MANDIR)/man8/mandos-keygen.8.gz
353
175
gzip --best --to-stdout plugin-runner.8mandos \
354
176
> $(MANDIR)/man8/plugin-runner.8mandos.gz
355
gzip --best --to-stdout plugins.d/mandos-client.8mandos \
356
> $(MANDIR)/man8/mandos-client.8mandos.gz
357
177
gzip --best --to-stdout plugins.d/password-prompt.8mandos \
358
178
> $(MANDIR)/man8/password-prompt.8mandos.gz
359
gzip --best --to-stdout plugins.d/usplash.8mandos \
360
> $(MANDIR)/man8/usplash.8mandos.gz
361
gzip --best --to-stdout plugins.d/splashy.8mandos \
362
> $(MANDIR)/man8/splashy.8mandos.gz
363
gzip --best --to-stdout plugins.d/askpass-fifo.8mandos \
364
> $(MANDIR)/man8/askpass-fifo.8mandos.gz
365
gzip --best --to-stdout plugins.d/plymouth.8mandos \
366
> $(MANDIR)/man8/plymouth.8mandos.gz
368
install-client: install-client-nokey
369
# Post-installation stuff
370
-$(PREFIX)/sbin/mandos-keygen --dir "$(KEYDIR)"
179
gzip --best --to-stdout plugins.d/password-request.8mandos \
180
> $(MANDIR)/man8/password-request.8mandos.gz
181
-$(PREFIX)/sbin/mandos-keygen
371
182
update-initramfs -k all -u
372
echo "Now run mandos-keygen --password --dir $(KEYDIR)"
374
184
uninstall: uninstall-server uninstall-client
186
uninstall-server: $(PREFIX)/sbin/mandos
377
187
-rm --force $(PREFIX)/sbin/mandos \
378
$(PREFIX)/sbin/mandos-ctl \
379
$(PREFIX)/sbin/mandos-monitor \
380
188
$(MANDIR)/man8/mandos.8.gz \
381
$(MANDIR)/man8/mandos-monitor.8.gz \
382
$(MANDIR)/man8/mandos-ctl.8.gz \
383
189
$(MANDIR)/man5/mandos.conf.5.gz \
384
190
$(MANDIR)/man5/mandos-clients.conf.5.gz
385
update-rc.d -f mandos remove
386
191
-rmdir $(CONFDIR)
388
193
uninstall-client:
389
194
# Refuse to uninstall client if /etc/crypttab is explicitly configured
391
196
! grep --regexp='^ *[^ #].*keyscript=[^,=]*/mandos/' \
392
$(DESTDIR)/etc/crypttab
393
198
-rm --force $(PREFIX)/sbin/mandos-keygen \
394
199
$(PREFIX)/lib/mandos/plugin-runner \
395
200
$(PREFIX)/lib/mandos/plugins.d/password-prompt \
396
$(PREFIX)/lib/mandos/plugins.d/mandos-client \
397
$(PREFIX)/lib/mandos/plugins.d/usplash \
398
$(PREFIX)/lib/mandos/plugins.d/splashy \
399
$(PREFIX)/lib/mandos/plugins.d/askpass-fifo \
400
$(PREFIX)/lib/mandos/plugins.d/plymouth \
401
$(INITRAMFSTOOLS)/hooks/mandos \
402
$(INITRAMFSTOOLS)/conf-hooks.d/mandos \
403
$(INITRAMFSTOOLS)/scripts/init-premount/mandos \
201
$(PREFIX)/lib/mandos/plugins.d/password-request \
202
/usr/share/initramfs-tools/hooks/mandos \
203
/usr/share/initramfs-tools/conf-hooks.d/mandos \
204
$(MANDIR)/man8/plugin-runner.8mandos.gz \
404
205
$(MANDIR)/man8/mandos-keygen.8.gz \
405
$(MANDIR)/man8/plugin-runner.8mandos.gz \
406
$(MANDIR)/man8/mandos-client.8mandos.gz
407
206
$(MANDIR)/man8/password-prompt.8mandos.gz \
408
$(MANDIR)/man8/usplash.8mandos.gz \
409
$(MANDIR)/man8/splashy.8mandos.gz \
410
$(MANDIR)/man8/askpass-fifo.8mandos.gz \
411
$(MANDIR)/man8/plymouth.8mandos.gz \
207
$(MANDIR)/man8/password-request.8mandos.gz
412
208
-rmdir $(PREFIX)/lib/mandos/plugins.d $(CONFDIR)/plugins.d \
413
$(PREFIX)/lib/mandos $(CONFDIR) $(KEYDIR)
209
$(PREFIX)/lib/mandos $(CONFDIR)
414
210
update-initramfs -k all -u
416
212
purge: purge-server purge-client
418
214
purge-server: uninstall-server
419
-rm --force $(CONFDIR)/mandos.conf $(CONFDIR)/clients.conf \
420
$(DESTDIR)/etc/dbus-1/system.d/mandos.conf
421
$(DESTDIR)/etc/default/mandos \
422
$(DESTDIR)/etc/init.d/mandos \
423
$(DESTDIR)/var/run/mandos.pid
215
-rm --force $(CONFDIR)/mandos.conf $(CONFDIR)/clients.conf
424
216
-rmdir $(CONFDIR)
426
218
purge-client: uninstall-client
427
-shred --remove $(KEYDIR)/seckey.txt
428
-rm --force $(CONFDIR)/plugin-runner.conf \
429
$(KEYDIR)/pubkey.txt $(KEYDIR)/seckey.txt
430
-rmdir $(KEYDIR) $(CONFDIR)/plugins.d $(CONFDIR)
219
-rm --force $(CONFDIR)/seckey.txt $(CONFDIR)/pubkey.txt
220
-rmdir $(CONFDIR) $(CONFDIR)/plugins.d