/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: 2009-02-09 02:01:13 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090209020113-726hq380zvp8zt97
Four new interrelated features:

1. Support using a different network interface via both initramfs.conf
   (the DEVICE setting) and the kernel command line (sixth field of
   the "ip=" option as in Linux' Documentation/nfsroot.txt).

2. Support connecting to a specified Mandos server directly using a
   kernel command line option ("mandos=connect:<ADDRESS>:<PORT>").

3. Support connecting directly to an IPv4 address (and port) using the
   "--connect" option of mandos-client.

4. Support an empty string to the --interface option to mandos-client.

* Makefile (WARN): Increase strictness by changing to
                   "-Wstrict-aliasing=1".

* debian/mandos-client.README.Debian (Use the Correct Network
  Interface): Changed to refer to initramfs.conf and nfsroot.txt.
  (Test the Server): Improve wording.
  (Non-local Connection): New section.
* initramfs-tools-script: Obey DEVICE environment variable and setting
                          from "/conf/initramfs.conf".  Also let any
                          "ip=" kernel command line option override
                          it.  Support new "mandos=connect" option.
                          Call "configure_networking" to set up IP
                          address on interface if necessary.
* plugin-runner.conf: Change example.
* plugins.d/mandos-client.c: Some whitespace and comment changes.
  (start_mandos_communication): Take an additional argument for
                                address family, all callers changed.
                                Connect to an IPv4 address if address
                                family is AF_INET.  Only set IPv6
                                scope_id for link-local addresses.
  (main): Accept empty interface name; this will not bring up any
         interface and leave the interface as unspecified.  Also do
         not restore kernel log level if lowering it failed.
* plugins.d/mandos-client.xml (OPTIONS): Document that the
                                         "--interface" option accepts
                                         an empty string.
  (EXAMPLE): Change example IPv6 address to a link-local address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
WARN=-O -Wall -Wformat=2 -Winit-self -Wmissing-include-dirs \
2
2
        -Wswitch-default -Wswitch-enum -Wunused-parameter \
3
 
        -Wstrict-aliasing=2 -Wextra -Wfloat-equal -Wundef -Wshadow \
 
3
        -Wstrict-aliasing=1 -Wextra -Wfloat-equal -Wundef -Wshadow \
4
4
        -Wunsafe-loop-optimizations -Wpointer-arith \
5
5
        -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings \
6
6
        -Wconversion -Wstrict-prototypes -Wold-style-definition \
9
9
#DEBUG=-ggdb3
10
10
# For info about _FORTIFY_SOURCE, see
11
11
# <http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html>
12
 
FORTIFY=-D_FORTIFY_SOURCE=2 -fstack-protector-all
 
12
FORTIFY=-D_FORTIFY_SOURCE=2 -fstack-protector-all -fPIC -fPIE
 
13
LINK_FORTIFY_LD=-z relro -fPIE
 
14
LINK_FORTIFY=-pie
13
15
#COVERAGE=--coverage
14
16
OPTIMIZE=-Os
15
17
LANGUAGE=-std=gnu99
16
18
htmldir=man
17
 
version=1.0
 
19
version=1.0.5
18
20
SED=sed
19
21
 
20
22
## Use these settings for a traditional /usr/local install
44
46
CFLAGS=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) \
45
47
        $(LANGUAGE) $(GNUTLS_CFLAGS) $(AVAHI_CFLAGS) $(GPGME_CFLAGS) \
46
48
        -DVERSION='"$(version)"'
47
 
LDFLAGS=$(COVERAGE)
 
49
LDFLAGS=$(COVERAGE) $(LINK_FORTIFY) $(foreach flag,$(LINK_FORTIFY_LD),-Xlinker $(flag))
48
50
 
49
51
# Commands to format a DocBook <refentry> document into a manual page
50
52
DOCBOOKTOMAN=cd $(dir $<); xsltproc --nonet --xinclude \
69
71
        /usr/share/xml/docbook/stylesheet/nwalsh/xhtml/docbook.xsl \
70
72
        $<; $(HTMLPOST) $@
71
73
# Fix citerefentry links
72
 
HTMLPOST=$(SED) --in-place --expression='s/\(<a class="citerefentry" href="\)\("><span class="citerefentry"><span class="refentrytitle">\)\([^<]*\)\(<\/span>(\)\([^)]*\)\()<\/span><\/a>\)/\1\3.\5\2\3\4\5\6/g'
 
74
HTMLPOST=$(SED) --in-place \
 
75
        --expression='s/\(<a class="citerefentry" href="\)\("><span class="citerefentry"><span class="refentrytitle">\)\([^<]*\)\(<\/span>(\)\([^)]*\)\()<\/span><\/a>\)/\1\3.\5\2\3\4\5\6/g'
73
76
 
74
77
PLUGINS=plugins.d/password-prompt plugins.d/mandos-client \
75
78
        plugins.d/usplash plugins.d/splashy plugins.d/askpass-fifo
76
79
CPROGS=plugin-runner $(PLUGINS)
77
 
PROGS=mandos mandos-keygen $(CPROGS)
 
80
PROGS=mandos mandos-keygen mandos-ctl $(CPROGS)
78
81
DOCS=mandos.8 plugin-runner.8mandos mandos-keygen.8 \
79
82
        plugins.d/mandos-client.8mandos \
80
83
        plugins.d/password-prompt.8mandos mandos.conf.5 \
81
 
        mandos-clients.conf.5
 
84
        plugins.d/usplash.8mandos plugins.d/splashy.8mandos \
 
85
        plugins.d/askpass-fifo.8mandos mandos-clients.conf.5
82
86
 
83
87
htmldocs=$(addsuffix .xhtml,$(DOCS))
84
88
 
85
89
objects=$(addsuffix .o,$(CPROGS))
86
90
 
87
 
all: $(PROGS)
 
91
all: $(PROGS) mandos.lsm
88
92
 
89
93
doc: $(DOCS)
90
94
 
146
150
 
147
151
# Update all these files with version number $(version)
148
152
common.ent: Makefile
149
 
        $(SED) --in-place --expression='s/^\(<ENTITY VERSION "\)[^"]*">$$/\1$(version)"/' $@
 
153
        $(SED) --in-place \
 
154
                --expression='s/^\(<ENTITY VERSION "\)[^"]*">$$/\1$(version)"/' \
 
155
                $@
150
156
 
151
157
mandos: Makefile
152
 
        $(SED) --in-place --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' $@
 
158
        $(SED) --in-place \
 
159
                --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
 
160
                $@
153
161
 
154
162
mandos-keygen: Makefile
155
 
        $(SED) --in-place --expression='s/^\(VERSION="\)[^"]*"$$/\1$(version)"/' $@
 
163
        $(SED) --in-place \
 
164
                --expression='s/^\(VERSION="\)[^"]*"$$/\1$(version)"/' \
 
165
                $@
 
166
 
 
167
mandos-ctl: Makefile
 
168
        $(SED) --in-place \
 
169
                --expression='s/^\(version = "\)[^"]*"$$/\1$(version)"/' \
 
170
                $@
 
171
 
 
172
mandos.lsm: Makefile
 
173
        $(SED) --in-place \
 
174
                --expression='s/^\(Version:\).*/\1\t$(version)/' \
 
175
                $@
 
176
        $(SED) --in-place \
 
177
                --expression='s/^\(Entered-date:\).*/\1\t$(shell date --rfc-3339=date --reference=Makefile)/' \
 
178
                $@
 
179
        $(SED) --in-place \
 
180
                --expression='s/\(mandos_\)[0-9.]\+\(\.orig\.tar\.gz\)/\1$(version)\2/' \
 
181
                $@
156
182
 
157
183
plugins.d/mandos-client: plugins.d/mandos-client.o
158
184
        $(LINK.o) $(GNUTLS_LIBS) $(AVAHI_LIBS) $(GPGME_LIBS) \
177
203
run-client: all keydir/seckey.txt keydir/pubkey.txt
178
204
        ./plugin-runner --plugin-dir=plugins.d \
179
205
                --config-file=plugin-runner.conf \
180
 
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt
 
206
                --options-for=mandos-client:--seckey=keydir/seckey.txt,--pubkey=keydir/pubkey.txt \
 
207
                $(CLIENTARGS)
181
208
 
182
209
# Used by run-client
183
210
keydir/seckey.txt keydir/pubkey.txt: mandos-keygen
186
213
 
187
214
# Run the server with a local config
188
215
run-server: confdir/mandos.conf confdir/clients.conf
189
 
        ./mandos --debug --configdir=confdir
 
216
        ./mandos --debug --no-dbus --configdir=confdir $(SERVERARGS)
190
217
 
191
218
# Used by run-server
192
219
confdir/mandos.conf: mandos.conf
200
227
 
201
228
install: install-server install-client-nokey
202
229
 
203
 
install-html: $(htmldocs)
 
230
install-html: html
204
231
        install --directory $(htmldir)
205
232
        install --mode=u=rw,go=r --target-directory=$(htmldir) \
206
233
                $(htmldocs)
258
285
        install --mode=u=rw,go=r initramfs-tools-hook-conf \
259
286
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos
260
287
        install initramfs-tools-script \
261
 
                $(INITRAMFSTOOLS)/scripts/local-top/mandos
 
288
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos
262
289
        install --mode=u=rw,go=r plugin-runner.conf $(CONFDIR)
263
290
        gzip --best --to-stdout mandos-keygen.8 \
264
291
                > $(MANDIR)/man8/mandos-keygen.8.gz
268
295
                > $(MANDIR)/man8/password-prompt.8mandos.gz
269
296
        gzip --best --to-stdout plugins.d/mandos-client.8mandos \
270
297
                > $(MANDIR)/man8/mandos-client.8mandos.gz
 
298
        gzip --best --to-stdout plugins.d/usplash.8mandos \
 
299
                > $(MANDIR)/man8/usplash.8mandos.gz
 
300
        gzip --best --to-stdout plugins.d/splashy.8mandos \
 
301
                > $(MANDIR)/man8/splashy.8mandos.gz
 
302
        gzip --best --to-stdout plugins.d/askpass-fifo.8mandos \
 
303
                > $(MANDIR)/man8/askpass-fifo.8mandos.gz
271
304
 
272
305
install-client: install-client-nokey
273
306
# Post-installation stuff
296
329
                $(PREFIX)/lib/mandos/plugins.d/mandos-client \
297
330
                $(PREFIX)/lib/mandos/plugins.d/usplash \
298
331
                $(PREFIX)/lib/mandos/plugins.d/splashy \
 
332
                $(PREFIX)/lib/mandos/plugins.d/askpass-fifo \
299
333
                $(INITRAMFSTOOLS)/hooks/mandos \
300
334
                $(INITRAMFSTOOLS)/conf-hooks.d/mandos \
301
 
                $(INITRAMFSTOOLS)/scripts/local-top/mandos \
 
335
                $(INITRAMFSTOOLS)/scripts/init-premount/mandos \
302
336
                $(MANDIR)/man8/plugin-runner.8mandos.gz \
303
337
                $(MANDIR)/man8/mandos-keygen.8.gz \
304
338
                $(MANDIR)/man8/password-prompt.8mandos.gz \
 
339
                $(MANDIR)/man8/usplash.8mandos.gz \
 
340
                $(MANDIR)/man8/splashy.8mandos.gz \
 
341
                $(MANDIR)/man8/askpass-fifo.8mandos.gz \
305
342
                $(MANDIR)/man8/mandos-client.8mandos.gz
306
343
        -rmdir $(PREFIX)/lib/mandos/plugins.d $(CONFDIR)/plugins.d \
307
344
                 $(PREFIX)/lib/mandos $(CONFDIR) $(KEYDIR)