blob: c890bf60c4afe0db6c1aab321025c7c90c5d83d8 [file] [log] [blame]
Bart De Schuymer1abc55d2002-06-01 19:23:47 +00001# ebtables Makefile
2
Bart De Schuymer1abc55d2002-06-01 19:23:47 +00003PROGNAME:=ebtables
Bart De Schuymer556a0f42011-08-11 18:37:05 +00004PROGRELEASE:=2
Bart De Schuymercd666332011-07-10 09:23:19 +00005PROGVERSION_:=2.0.10
Bart De Schuymer865dd4d2006-12-15 11:37:07 +00006PROGVERSION:=$(PROGVERSION_)-$(PROGRELEASE)
Bart De Schuymercd666332011-07-10 09:23:19 +00007PROGDATE:=July\ 2011
8LOCKFILE?=/var/lib/ebtables/lock
9LOCKDIR:=$(shell echo $(LOCKFILE) | sed 's/\(.*\)\/.*/\1/')/
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000010
Bart De Schuymer3749f302004-02-11 21:23:38 +000011# default paths
Bart De Schuymer38561e92004-02-23 09:20:42 +000012LIBDIR:=/usr/lib
Bart De Schuymer3749f302004-02-11 21:23:38 +000013MANDIR:=/usr/local/man
Bart De Schuymer838fa5b2005-06-18 14:43:32 +000014BINDIR:=/usr/local/sbin
Bart De Schuymer3749f302004-02-11 21:23:38 +000015ETCDIR:=/etc
Bart De Schuymer50441e92005-08-30 21:20:55 +000016INITDIR:=/etc/rc.d/init.d
17SYSCONFIGDIR:=/etc/sysconfig
Bart De Schuymer38561e92004-02-23 09:20:42 +000018DESTDIR:=
Bart De Schuymer3749f302004-02-11 21:23:38 +000019
Bart De Schuymercd666332011-07-10 09:23:19 +000020CFLAGS:=-Wall -Wunused -Werror
Bart De Schuymer556a0f42011-08-11 18:37:05 +000021CFLAGS_SH_LIB:=-fPIC -O3
Bart De Schuymer06a1b462002-09-07 11:51:13 +000022CC:=gcc
Bart De Schuymer3c1e00c2002-12-07 11:18:57 +000023
Bart De Schuymer60c20092003-07-23 21:34:21 +000024ifeq ($(shell uname -m),sparc64)
25CFLAGS+=-DEBT_MIN_ALIGN=8 -DKERNEL_64_USERSPACE_32
26endif
27
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000028include extensions/Makefile
29
Bart De Schuymer64182a32004-01-21 20:39:54 +000030OBJECTS2:=getethertype.o communication.o libebtc.o \
Bart De Schuymer838fa5b2005-06-18 14:43:32 +000031useful_functions.o ebtables.o
Bart De Schuymer64182a32004-01-21 20:39:54 +000032
Bart De Schuymer7d9e3eb2006-02-06 21:24:02 +000033OBJECTS:=$(OBJECTS2) $(EXT_OBJS) $(EXT_LIBS)
Bart De Schuymer0f8c4992002-11-20 19:41:02 +000034
Bart De Schuymer06a96822003-02-19 20:09:51 +000035KERNEL_INCLUDES?=include/
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000036
Bart De Schuymer3749f302004-02-11 21:23:38 +000037ETHERTYPESPATH?=$(ETCDIR)
Bart De Schuymera2960382003-04-01 17:29:13 +000038ETHERTYPESFILE:=$(ETHERTYPESPATH)/ethertypes
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000039
Bart De Schuymer0ddd5752007-08-12 15:11:40 +000040PIPE_DIR?=/tmp/$(PROGNAME)-v$(PROGVERSION)
Bart De Schuymer6622a012005-01-19 21:09:05 +000041PIPE=$(PIPE_DIR)/ebtablesd_pipe
42EBTD_CMDLINE_MAXLN?=2048
43EBTD_ARGC_MAX?=50
44
Bart De Schuymer0f8c4992002-11-20 19:41:02 +000045PROGSPECS:=-DPROGVERSION=\"$(PROGVERSION)\" \
46 -DPROGNAME=\"$(PROGNAME)\" \
47 -DPROGDATE=\"$(PROGDATE)\" \
Bart De Schuymer9d680cc2005-10-01 09:16:51 +000048 -D_PATH_ETHERTYPES=\"$(ETHERTYPESFILE)\" \
49 -DEBTD_ARGC_MAX=$(EBTD_ARGC_MAX) \
Bart De Schuymercd666332011-07-10 09:23:19 +000050 -DEBTD_CMDLINE_MAXLN=$(EBTD_CMDLINE_MAXLN) \
51 -DLOCKFILE=\"$(LOCKFILE)\" \
52 -DLOCKDIR=\"$(LOCKDIR)\"
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000053
Bart De Schuymer96ee8d12005-11-04 21:59:57 +000054# You can probably ignore this, ebtables{u,d} are normally not used
Bart De Schuymer6622a012005-01-19 21:09:05 +000055PROGSPECSD:=-DPROGVERSION=\"$(PROGVERSION)\" \
56 -DPROGNAME=\"$(PROGNAME)\" \
57 -DPROGDATE=\"$(PROGDATE)\" \
58 -D_PATH_ETHERTYPES=\"$(ETHERTYPESFILE)\" \
59 -DEBTD_CMDLINE_MAXLN=$(EBTD_CMDLINE_MAXLN) \
60 -DEBTD_ARGC_MAX=$(EBTD_ARGC_MAX) \
61 -DEBTD_PIPE=\"$(PIPE)\" \
62 -DEBTD_PIPE_DIR=\"$(PIPE_DIR)\"
Bart De Schuymer0f8c4992002-11-20 19:41:02 +000063
Bart De Schuymer838fa5b2005-06-18 14:43:32 +000064# Uncomment for debugging (slower)
65#PROGSPECS+=-DEBT_DEBUG
66#PROGSPECSD+=-DEBT_DEBUG
Bart De Schuymer96ee8d12005-11-04 21:59:57 +000067#CFLAGS+=-ggdb
Bart De Schuymer838fa5b2005-06-18 14:43:32 +000068
Bart De Schuymer96ee8d12005-11-04 21:59:57 +000069all: ebtables ebtables-restore
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000070
71communication.o: communication.c include/ebtables_u.h
Bart De Schuymer17c60f52006-12-14 18:55:44 +000072 $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(PROGSPECS) -c -o $@ $< -I$(KERNEL_INCLUDES)
Bart De Schuymer0f8c4992002-11-20 19:41:02 +000073
Bart De Schuymer8339ff12004-01-14 20:05:27 +000074libebtc.o: libebtc.c include/ebtables_u.h
Bart De Schuymer17c60f52006-12-14 18:55:44 +000075 $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(PROGSPECS) -c -o $@ $< -I$(KERNEL_INCLUDES)
Bart De Schuymer8339ff12004-01-14 20:05:27 +000076
77useful_functions.o: useful_functions.c include/ebtables_u.h
Bart De Schuymer17c60f52006-12-14 18:55:44 +000078 $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(PROGSPECS) -c -o $@ $< -I$(KERNEL_INCLUDES)
Bart De Schuymer8339ff12004-01-14 20:05:27 +000079
Bart De Schuymer0f8c4992002-11-20 19:41:02 +000080getethertype.o: getethertype.c include/ethernetdb.h
Bart De Schuymer17c60f52006-12-14 18:55:44 +000081 $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(PROGSPECS) -c -o $@ $< -Iinclude/
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000082
83ebtables.o: ebtables.c include/ebtables_u.h
Bart De Schuymereacf5c92007-07-03 17:48:53 +000084 $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(PROGSPECS) -c -o $@ $< -I$(KERNEL_INCLUDES)
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000085
Bart De Schuymer838fa5b2005-06-18 14:43:32 +000086ebtables-standalone.o: ebtables-standalone.c include/ebtables_u.h
Bart De Schuymereacf5c92007-07-03 17:48:53 +000087 $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(PROGSPECS) -c $< -o $@ -I$(KERNEL_INCLUDES)
Bart De Schuymer6622a012005-01-19 21:09:05 +000088
Bart De Schuymercc17a412011-06-19 11:35:21 +000089libebtc.so: $(OBJECTS2)
Bart De Schuymer078161d2010-03-16 13:10:37 +000090 $(CC) -shared $(LDFLAGS) -Wl,-soname,libebtc.so -o libebtc.so -lc $(OBJECTS2)
Bart De Schuymer838fa5b2005-06-18 14:43:32 +000091
Bart De Schuymercc17a412011-06-19 11:35:21 +000092ebtables: $(OBJECTS) ebtables-standalone.o libebtc.so
Bart De Schuymer078161d2010-03-16 13:10:37 +000093 $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(LDFLAGS) -o $@ ebtables-standalone.o -I$(KERNEL_INCLUDES) -L. -Lextensions -lebtc $(EXT_LIBSI) \
Bart De Schuymer838fa5b2005-06-18 14:43:32 +000094 -Wl,-rpath,$(LIBDIR)
Bart De Schuymer6622a012005-01-19 21:09:05 +000095
96ebtablesu: ebtablesu.c
97 $(CC) $(CFLAGS) $(PROGSPECSD) $< -o $@
98
Bart De Schuymer838fa5b2005-06-18 14:43:32 +000099ebtablesd.o: ebtablesd.c include/ebtables_u.h
100 $(CC) $(CFLAGS) $(PROGSPECSD) -c $< -o $@ -I$(KERNEL_INCLUDES)
Bart De Schuymer6622a012005-01-19 21:09:05 +0000101
Bart De Schuymercc17a412011-06-19 11:35:21 +0000102ebtablesd: $(OBJECTS) ebtablesd.o libebtc.so
Bart De Schuymer838fa5b2005-06-18 14:43:32 +0000103 $(CC) $(CFLAGS) -o $@ ebtablesd.o -I$(KERNEL_INCLUDES) -L. -Lextensions -lebtc $(EXT_LIBSI) \
104 -Wl,-rpath,$(LIBDIR)
Bart De Schuymer6622a012005-01-19 21:09:05 +0000105
Bart De Schuymer90db00b2005-09-28 19:36:34 +0000106ebtables-restore.o: ebtables-restore.c include/ebtables_u.h
Bart De Schuymer9d680cc2005-10-01 09:16:51 +0000107 $(CC) $(CFLAGS) $(PROGSPECS) -c $< -o $@ -I$(KERNEL_INCLUDES)
Bart De Schuymer90db00b2005-09-28 19:36:34 +0000108
Bart De Schuymercc17a412011-06-19 11:35:21 +0000109ebtables-restore: $(OBJECTS) ebtables-restore.o libebtc.so
Bart De Schuymer078161d2010-03-16 13:10:37 +0000110 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ ebtables-restore.o -I$(KERNEL_INCLUDES) -L. -Lextensions -lebtc $(EXT_LIBSI) \
Bart De Schuymer90db00b2005-09-28 19:36:34 +0000111 -Wl,-rpath,$(LIBDIR)
112
Bart De Schuymer6622a012005-01-19 21:09:05 +0000113.PHONY: daemon
114daemon: ebtablesd ebtablesu
115
Bart De Schuymer7d9e3eb2006-02-06 21:24:02 +0000116# a little scripting for a static binary, making one for ebtables-restore
117# should be completely analogous
118static: extensions/ebt_*.c extensions/ebtable_*.c ebtables.c communication.c ebtables-standalone.c getethertype.c libebtc.c useful_functions.c
119 cp ebtables-standalone.c ebtables-standalone.c_ ; \
120 cp include/ebtables_u.h include/ebtables_u.h_ ; \
121 sed "s/ main(/ pseudomain(/" ebtables-standalone.c > ebtables-standalone.c__ ; \
122 mv ebtables-standalone.c__ ebtables-standalone.c ; \
123 printf "\nint main(int argc, char *argv[])\n{\n " >> ebtables-standalone.c ; \
124 for arg in $(EXT_FUNC) \
125 ; do \
126 sed s/_init/_$${arg}_init/ extensions/ebt_$${arg}.c > extensions/ebt_$${arg}.c_ ; \
127 mv extensions/ebt_$${arg}.c_ extensions/ebt_$${arg}.c ; \
128 printf "\t%s();\n" _$${arg}_init >> ebtables-standalone.c ; \
129 printf "extern void %s();\n" _$${arg}_init >> include/ebtables_u.h ; \
130 done ; \
131 for arg in $(EXT_TABLES) \
132 ; do \
133 sed s/_init/_t_$${arg}_init/ extensions/ebtable_$${arg}.c > extensions/ebtable_$${arg}.c_ ; \
134 mv extensions/ebtable_$${arg}.c_ extensions/ebtable_$${arg}.c ; \
135 printf "\t%s();\n" _t_$${arg}_init >> ebtables-standalone.c ; \
136 printf "extern void %s();\n" _t_$${arg}_init >> include/ebtables_u.h ; \
137 done ; \
138 printf "\n\tpseudomain(argc, argv);\n\treturn 0;\n}\n" >> ebtables-standalone.c ;\
Bart De Schuymer0f9c5012011-08-11 18:47:17 +0000139 $(CC) $(CFLAGS) $(LDFLAGS) $(PROGSPECS) -o $@ $^ -I$(KERNEL_INCLUDES) -Iinclude ; \
Bart De Schuymer7d9e3eb2006-02-06 21:24:02 +0000140 for arg in $(EXT_FUNC) \
141 ; do \
142 sed "s/ .*_init/ _init/" extensions/ebt_$${arg}.c > extensions/ebt_$${arg}.c_ ; \
143 mv extensions/ebt_$${arg}.c_ extensions/ebt_$${arg}.c ; \
144 done ; \
145 for arg in $(EXT_TABLES) \
146 ; do \
147 sed "s/ .*_init/ _init/" extensions/ebtable_$${arg}.c > extensions/ebtable_$${arg}.c_ ; \
148 mv extensions/ebtable_$${arg}.c_ extensions/ebtable_$${arg}.c ; \
149 done ; \
150 mv ebtables-standalone.c_ ebtables-standalone.c ; \
151 mv include/ebtables_u.h_ include/ebtables_u.h
152
Bart De Schuymer50441e92005-08-30 21:20:55 +0000153tmp1:=$(shell printf $(BINDIR) | sed 's/\//\\\//g')
154tmp2:=$(shell printf $(SYSCONFIGDIR) | sed 's/\//\\\//g')
Bart De Schuymerdb97ab22005-09-01 20:37:07 +0000155tmp3:=$(shell printf $(PIPE) | sed 's/\//\\\//g')
Bart De Schuymer50441e92005-08-30 21:20:55 +0000156.PHONY: scripts
Bart De Schuymer90db00b2005-09-28 19:36:34 +0000157scripts: ebtables-save ebtables.sysv ebtables-config
Bart De Schuymer50441e92005-08-30 21:20:55 +0000158 cat ebtables-save | sed 's/__EXEC_PATH__/$(tmp1)/g' > ebtables-save_
Bart De Schuymer2320f8b2010-03-16 13:00:37 +0000159 mkdir -p $(DESTDIR)$(BINDIR)
Bart De Schuymer0ddd5752007-08-12 15:11:40 +0000160 install -m 0755 -o root -g root ebtables-save_ $(DESTDIR)$(BINDIR)/ebtables-save
Bart De Schuymerdb97ab22005-09-01 20:37:07 +0000161 cat ebtables.sysv | sed 's/__EXEC_PATH__/$(tmp1)/g' | sed 's/__SYSCONFIG__/$(tmp2)/g' > ebtables.sysv_
Bart De Schuymer4eba2d42010-03-18 08:58:44 +0000162 if [ "$(DESTDIR)" != "" ]; then mkdir -p $(DESTDIR)$(INITDIR); fi
Bart De Schuymer2320f8b2010-03-16 13:00:37 +0000163 if test -d $(DESTDIR)$(INITDIR); then install -m 0755 -o root -g root ebtables.sysv_ $(DESTDIR)$(INITDIR)/ebtables; fi
Bart De Schuymer9336b5a2005-11-04 22:01:23 +0000164 cat ebtables-config | sed 's/__SYSCONFIG__/$(tmp2)/g' > ebtables-config_
Bart De Schuymer4eba2d42010-03-18 08:58:44 +0000165 if [ "$(DESTDIR)" != "" ]; then mkdir -p $(DESTDIR)$(SYSCONFIGDIR); fi
Bart De Schuymer2320f8b2010-03-16 13:00:37 +0000166 if test -d $(DESTDIR)$(SYSCONFIGDIR); then install -m 0600 -o root -g root ebtables-config_ $(DESTDIR)$(SYSCONFIGDIR)/ebtables-config; fi
Bart De Schuymer90db00b2005-09-28 19:36:34 +0000167 rm -f ebtables-save_ ebtables.sysv_ ebtables-config_
Bart De Schuymer50441e92005-08-30 21:20:55 +0000168
Bart De Schuymercd666332011-07-10 09:23:19 +0000169tmp4:=$(shell printf $(LOCKFILE) | sed 's/\//\\\//g')
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000170$(MANDIR)/man8/ebtables.8: ebtables.8
Bart De Schuymer0ddd5752007-08-12 15:11:40 +0000171 mkdir -p $(DESTDIR)$(@D)
Bart De Schuymercd666332011-07-10 09:23:19 +0000172 sed -e 's/$$(VERSION)/$(PROGVERSION)/' -e 's/$$(DATE)/$(PROGDATE)/' -e 's/$$(LOCKFILE)/$(tmp4)/' ebtables.8 > ebtables.8_
Bart De Schuymer0ddd5752007-08-12 15:11:40 +0000173 install -m 0644 -o root -g root ebtables.8_ $(DESTDIR)$@
Bart De Schuymer865dd4d2006-12-15 11:37:07 +0000174 rm -f ebtables.8_
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000175
Bart De Schuymer2320f8b2010-03-16 13:00:37 +0000176$(DESTDIR)$(ETHERTYPESFILE): ethertypes
177 mkdir -p $(@D)
178 install -m 0644 -o root -g root $< $@
Bart De Schuymer0f8c4992002-11-20 19:41:02 +0000179
Bart De Schuymer32890542002-07-10 20:09:56 +0000180.PHONY: exec
Bart De Schuymer90db00b2005-09-28 19:36:34 +0000181exec: ebtables ebtables-restore
Bart De Schuymer0ddd5752007-08-12 15:11:40 +0000182 mkdir -p $(DESTDIR)$(BINDIR)
183 install -m 0755 -o root -g root $(PROGNAME) $(DESTDIR)$(BINDIR)/$(PROGNAME)
184 install -m 0755 -o root -g root ebtables-restore $(DESTDIR)$(BINDIR)/ebtables-restore
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000185
Bart De Schuymer0f8c4992002-11-20 19:41:02 +0000186.PHONY: install
Bart De Schuymer2320f8b2010-03-16 13:00:37 +0000187install: $(MANDIR)/man8/ebtables.8 $(DESTDIR)$(ETHERTYPESFILE) exec scripts
Bart De Schuymer0ddd5752007-08-12 15:11:40 +0000188 mkdir -p $(DESTDIR)$(LIBDIR)
189 install -m 0755 extensions/*.so $(DESTDIR)$(LIBDIR)
190 install -m 0755 *.so $(DESTDIR)$(LIBDIR)
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000191
Bart De Schuymer0f8c4992002-11-20 19:41:02 +0000192.PHONY: clean
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000193clean:
Bart De Schuymer7d9e3eb2006-02-06 21:24:02 +0000194 rm -f ebtables ebtables-restore ebtablesd ebtablesu static
Bart De Schuymer90db00b2005-09-28 19:36:34 +0000195 rm -f *.o *~ *.so
Bart De Schuymer96ee8d12005-11-04 21:59:57 +0000196 rm -f extensions/*.o extensions/*.c~ extensions/*.so include/*~
Bart De Schuymer0f8c4992002-11-20 19:41:02 +0000197
198DIR:=$(PROGNAME)-v$(PROGVERSION)
Bart De Schuymer22d8f5f2007-05-28 16:45:38 +0000199CVSDIRS:=CVS extensions/CVS examples/CVS examples/perf_test/CVS \
200examples/ulog/CVS include/CVS
Bart De Schuymer865dd4d2006-12-15 11:37:07 +0000201# This is used to make a new userspace release, some files are altered so
202# do this on a temporary version
Bart De Schuymer0f8c4992002-11-20 19:41:02 +0000203.PHONY: release
204release:
Bart De Schuymer22d8f5f2007-05-28 16:45:38 +0000205 rm -f extensions/ebt_inat.c
206 rm -rf $(CVSDIRS)
Bart De Schuymer0f8c4992002-11-20 19:41:02 +0000207 mkdir -p include/linux/netfilter_bridge
208 install -m 0644 -o root -g root \
209 $(KERNEL_INCLUDES)/linux/netfilter_bridge.h include/linux/
210# To keep possible compile error complaints about undefined ETH_P_8021Q
211# off my back
212 install -m 0644 -o root -g root \
213 $(KERNEL_INCLUDES)/linux/if_ether.h include/linux/
214 install -m 0644 -o root -g root \
Bart De Schuymer72ecebe2006-12-17 21:29:34 +0000215 $(KERNEL_INCLUDES)/linux/types.h include/linux/
216 install -m 0644 -o root -g root \
Bart De Schuymer0f8c4992002-11-20 19:41:02 +0000217 $(KERNEL_INCLUDES)/linux/netfilter_bridge/*.h \
218 include/linux/netfilter_bridge/
Bart De Schuymer60c20092003-07-23 21:34:21 +0000219 install -m 0644 -o root -g root \
220 include/ebtables.h include/linux/netfilter_bridge/
Bart De Schuymer0f8c4992002-11-20 19:41:02 +0000221 make clean
Bart De Schuymere29506d2003-07-26 11:53:32 +0000222 touch *
223 touch extensions/*
224 touch include/*
225 touch include/linux/*
226 touch include/linux/netfilter_bridge/*
Bart De Schuymercd666332011-07-10 09:23:19 +0000227 sed -i -e 's/$$(VERSION)/$(PROGVERSION)/' -e 's/$$(DATE)/$(PROGDATE)/' -e 's/$$(LOCKFILE)/$(tmp4)/' ebtables.8
228 sed -i -e 's/$$(VERSION)/$(PROGVERSION_)/' -e 's/$$(RELEASE)/$(PROGRELEASE)/' ebtables.spec
Bart De Schuymer308ea9f2005-11-13 12:15:09 +0000229 cd ..;tar -c $(DIR) | gzip >$(DIR).tar.gz; cd -
230 rm -rf include/linux
231
232# This will make the rpm and put it in /usr/src/redhat/RPMS
233# (do this as root after make release)
234.PHONY: rpmbuild
235rpmbuild:
236 cp ../$(DIR).tar.gz /usr/src/redhat/SOURCES/
Bart De Schuymer58acf952005-11-13 12:23:13 +0000237 rpmbuild --buildroot $(shell mktemp -td $(DIR)-XXXXX) -bb ebtables.spec
Bart De Schuymer8bde1012004-11-20 13:00:52 +0000238
239.PHONY: test_ulog
240test_ulog: examples/ulog/test_ulog.c getethertype.o
241 $(CC) $(CFLAGS) $< -o test_ulog -I$(KERNEL_INCLUDES) -lc \
242 getethertype.o
243 mv test_ulog examples/ulog/
244
245.PHONY: examples
246examples: test_ulog