|
|
|
@ -42,13 +42,16 @@ PKG_CONFIG ?= pkg-config
|
|
|
|
|
CP = cp
|
|
|
|
|
DOXYGEN ?= doxygen
|
|
|
|
|
|
|
|
|
|
DEPFLAGS = -MM -MG -MT $(patsubst %.d,%.o,$@) -MT $@
|
|
|
|
|
# -M : with system headers, -MM : without
|
|
|
|
|
|
|
|
|
|
INSTALLPREFIX ?= $(PREFIX)/usr
|
|
|
|
|
SBININSTALLDIR = $(INSTALLPREFIX)/sbin
|
|
|
|
|
ETCINSTALLDIR = $(PREFIX)/etc/miniupnpd
|
|
|
|
|
MANINSTALLDIR = $(INSTALLPREFIX)/share/man/man8
|
|
|
|
|
|
|
|
|
|
include gitrev.mk config.mk
|
|
|
|
|
include config.mk
|
|
|
|
|
include $(SRCDIR)/gitrev.mk
|
|
|
|
|
|
|
|
|
|
BASEOBJS = miniupnpd.o upnphttp.o upnpdescgen.o upnpsoap.o \
|
|
|
|
|
upnpreplyparse.o minixml.o portinuse.o \
|
|
|
|
@ -58,11 +61,20 @@ BASEOBJS = miniupnpd.o upnphttp.o upnpdescgen.o upnpsoap.o \
|
|
|
|
|
upnpstun.o \
|
|
|
|
|
upnppinhole.o pcplearndscp.o asyncsendto.o
|
|
|
|
|
|
|
|
|
|
LNXOBJS = linux/getifstats.o linux/ifacewatcher.o linux/getroute.o
|
|
|
|
|
NETFILTEROBJS = netfilter/iptcrdr.o netfilter/iptpinhole.o netfilter/nfct_get.o
|
|
|
|
|
# sources in linux/ directory
|
|
|
|
|
LNXOBJS = getifstats.o ifacewatcher.o getroute.o
|
|
|
|
|
# sources in netfilter/ directory
|
|
|
|
|
NETFILTEROBJS = iptcrdr.o iptpinhole.o nfct_get.o
|
|
|
|
|
|
|
|
|
|
ALLOBJS = $(BASEOBJS) $(LNXOBJS) $(NETFILTEROBJS)
|
|
|
|
|
|
|
|
|
|
DEP = $(ALLOBJS:.o=.d)
|
|
|
|
|
|
|
|
|
|
NETFILTER_SCRIPTS = $(addprefix $(SRCDIR)/netfilter/, \
|
|
|
|
|
iptables_init.sh iptables_removeall.sh \
|
|
|
|
|
ip6tables_init.sh ip6tables_removeall.sh \
|
|
|
|
|
miniupnpd_functions.sh)
|
|
|
|
|
|
|
|
|
|
ifneq ($(IPTABLES_PCFILE_FOUND),1)
|
|
|
|
|
|
|
|
|
|
ifeq "$(wildcard /etc/gentoo-release )" ""
|
|
|
|
@ -106,16 +118,14 @@ EXECUTABLES = miniupnpd testupnpdescgen testgetifstats \
|
|
|
|
|
testgetroute testasyncsendto testportinuse \
|
|
|
|
|
testssdppktgen testminissdp
|
|
|
|
|
|
|
|
|
|
.PHONY: all clean install depend genuuid dox
|
|
|
|
|
.PHONY: all clean install depend dox
|
|
|
|
|
|
|
|
|
|
all: $(EXECUTABLES)
|
|
|
|
|
|
|
|
|
|
config.mk: configure
|
|
|
|
|
./configure $(CONFIG_OPTIONS)
|
|
|
|
|
|
|
|
|
|
clean:
|
|
|
|
|
$(RM) config.h
|
|
|
|
|
$(RM) $(ALLOBJS)
|
|
|
|
|
$(RM) $(DEP)
|
|
|
|
|
$(RM) $(EXECUTABLES)
|
|
|
|
|
$(RM) testupnpdescgen.o testgetifstats.o
|
|
|
|
|
$(RM) testupnppermissions.o testgetifaddr.o
|
|
|
|
@ -127,171 +137,100 @@ clean:
|
|
|
|
|
$(RM) validateupnppermissions validategetifaddr validatessdppktgen
|
|
|
|
|
$(RM) -r dox/
|
|
|
|
|
|
|
|
|
|
install: miniupnpd miniupnpd.8 miniupnpd.conf genuuid \
|
|
|
|
|
netfilter/iptables_init.sh netfilter/iptables_removeall.sh \
|
|
|
|
|
netfilter/ip6tables_init.sh netfilter/ip6tables_removeall.sh \
|
|
|
|
|
netfilter/miniupnpd_functions.sh \
|
|
|
|
|
linux/miniupnpd.init.d.script
|
|
|
|
|
install: miniupnpd $(SRCDIR)/miniupnpd.8 miniupnpd.conf \
|
|
|
|
|
$(NETFILTER_SCRIPTS) \
|
|
|
|
|
$(SRCDIR)/linux/miniupnpd.init.d.script
|
|
|
|
|
$(STRIP) miniupnpd
|
|
|
|
|
$(INSTALL) -d $(DESTDIR)$(SBININSTALLDIR)
|
|
|
|
|
$(INSTALL) miniupnpd $(DESTDIR)$(SBININSTALLDIR)
|
|
|
|
|
$(INSTALL) -d $(DESTDIR)$(ETCINSTALLDIR)
|
|
|
|
|
$(INSTALL) netfilter/iptables_init.sh $(DESTDIR)$(ETCINSTALLDIR)
|
|
|
|
|
$(INSTALL) netfilter/iptables_removeall.sh $(DESTDIR)$(ETCINSTALLDIR)
|
|
|
|
|
$(INSTALL) netfilter/ip6tables_init.sh $(DESTDIR)$(ETCINSTALLDIR)
|
|
|
|
|
$(INSTALL) netfilter/ip6tables_removeall.sh $(DESTDIR)$(ETCINSTALLDIR)
|
|
|
|
|
$(INSTALL) netfilter/miniupnpd_functions.sh $(DESTDIR)$(ETCINSTALLDIR)
|
|
|
|
|
$(INSTALL) --mode=0644 -b miniupnpd.conf $(DESTDIR)$(ETCINSTALLDIR)
|
|
|
|
|
$(INSTALL) $(SRCDIR)/netfilter/iptables_init.sh $(DESTDIR)$(ETCINSTALLDIR)
|
|
|
|
|
$(INSTALL) $(SRCDIR)/netfilter/iptables_removeall.sh $(DESTDIR)$(ETCINSTALLDIR)
|
|
|
|
|
$(INSTALL) $(SRCDIR)/netfilter/ip6tables_init.sh $(DESTDIR)$(ETCINSTALLDIR)
|
|
|
|
|
$(INSTALL) $(SRCDIR)/netfilter/ip6tables_removeall.sh $(DESTDIR)$(ETCINSTALLDIR)
|
|
|
|
|
$(INSTALL) $(SRCDIR)/netfilter/miniupnpd_functions.sh $(DESTDIR)$(ETCINSTALLDIR)
|
|
|
|
|
$(INSTALL) --mode=0644 -b $(SRCDIR)/miniupnpd.conf $(DESTDIR)$(ETCINSTALLDIR)
|
|
|
|
|
$(INSTALL) -d $(DESTDIR)$(PREFIX)/etc/init.d
|
|
|
|
|
$(INSTALL) linux/miniupnpd.init.d.script $(DESTDIR)$(PREFIX)/etc/init.d/miniupnpd
|
|
|
|
|
$(INSTALL) $(SRCDIR)/linux/miniupnpd.init.d.script $(DESTDIR)$(PREFIX)/etc/init.d/miniupnpd
|
|
|
|
|
$(INSTALL) -d $(DESTDIR)$(MANINSTALLDIR)
|
|
|
|
|
$(INSTALL) --mode=0644 miniupnpd.8 $(DESTDIR)$(MANINSTALLDIR)
|
|
|
|
|
$(INSTALL) --mode=0644 $(SRCDIR)/miniupnpd.8 $(DESTDIR)$(MANINSTALLDIR)
|
|
|
|
|
gzip -f $(DESTDIR)$(MANINSTALLDIR)/miniupnpd.8
|
|
|
|
|
|
|
|
|
|
# genuuid is using the uuidgen CLI tool which is part of libuuid
|
|
|
|
|
# from the e2fsprogs
|
|
|
|
|
# 'cat /proc/sys/kernel/random/uuid' could be also used
|
|
|
|
|
genuuid:
|
|
|
|
|
miniupnpd.conf: $(SRCDIR)/miniupnpd.conf
|
|
|
|
|
ifeq ($(TARGET_OPENWRT),)
|
|
|
|
|
sed -i -e "s/^uuid=[-0-9a-f]*/uuid=`(genuuid||uuidgen||uuid) 2>/dev/null`/" miniupnpd.conf
|
|
|
|
|
sed -e "s/^uuid=[-0-9a-f]*/uuid=`(genuuid||uuidgen||uuid) 2>/dev/null`/" $< > $@
|
|
|
|
|
else
|
|
|
|
|
sed -i -e "s/^uuid=[-0-9a-f]*/uuid=`($(STAGING_DIR_HOST)/bin/genuuid||$(STAGING_DIR_HOST)/bin/uuidgen||$(STAGING_DIR_HOST)/bin/uuid) 2>/dev/null`/" miniupnpd.conf
|
|
|
|
|
sed -i -e "s/^uuid=[-0-9a-f]*/uuid=`($(STAGING_DIR_HOST)/bin/genuuid||$(STAGING_DIR_HOST)/bin/uuidgen||$(STAGING_DIR_HOST)/bin/uuid) 2>/dev/null`/" $< > $@
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
check: validateupnppermissions validategetifaddr validatessdppktgen \
|
|
|
|
|
validateversion
|
|
|
|
|
|
|
|
|
|
validateversion: miniupnpd VERSION
|
|
|
|
|
validateversion: miniupnpd $(SRCDIR)/VERSION
|
|
|
|
|
./miniupnpd --version
|
|
|
|
|
[ "`./miniupnpd --version | head -1 | cut -d' ' -f-2`" = "miniupnpd `cat VERSION`" ]
|
|
|
|
|
[ "`./miniupnpd --version | head -1 | cut -d' ' -f-2`" = "miniupnpd `cat $(SRCDIR)/VERSION`" ]
|
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
|
|
validateupnppermissions: testupnppermissions testupnppermissions.sh
|
|
|
|
|
./testupnppermissions.sh
|
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
|
|
validategetifaddr: testgetifaddr testgetifaddr.sh
|
|
|
|
|
./testgetifaddr.sh
|
|
|
|
|
validate%: $(SRCDIR)/test%.sh test%
|
|
|
|
|
$(SHELL) $<
|
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
|
|
validatessdppktgen: testssdppktgen
|
|
|
|
|
./testssdppktgen
|
|
|
|
|
./$<
|
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
|
|
miniupnpd: $(BASEOBJS) $(LNXOBJS) $(NETFILTEROBJS)
|
|
|
|
|
|
|
|
|
|
testupnpdescgen: $(TESTUPNPDESCGENOBJS)
|
|
|
|
|
|
|
|
|
|
testgetifstats: testgetifstats.o linux/getifstats.o
|
|
|
|
|
testgetifstats: testgetifstats.o getifstats.o
|
|
|
|
|
|
|
|
|
|
testupnppermissions: testupnppermissions.o upnppermissions.o
|
|
|
|
|
|
|
|
|
|
testgetifaddr: testgetifaddr.o getifaddr.o
|
|
|
|
|
|
|
|
|
|
testgetroute: testgetroute.o linux/getroute.o upnputils.o
|
|
|
|
|
testgetroute: testgetroute.o getroute.o upnputils.o
|
|
|
|
|
|
|
|
|
|
testssdppktgen: testssdppktgen.o
|
|
|
|
|
|
|
|
|
|
testasyncsendto: testasyncsendto.o asyncsendto.o upnputils.o \
|
|
|
|
|
linux/getroute.o
|
|
|
|
|
getroute.o
|
|
|
|
|
|
|
|
|
|
testportinuse: testportinuse.o portinuse.o getifaddr.o \
|
|
|
|
|
netfilter/iptcrdr.o
|
|
|
|
|
iptcrdr.o
|
|
|
|
|
|
|
|
|
|
testminissdp: testminissdp.o minissdp.o upnputils.o upnpglobalvars.o \
|
|
|
|
|
asyncsendto.o linux/getroute.o
|
|
|
|
|
asyncsendto.o getroute.o
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
miniupnpdctl: miniupnpdctl.o
|
|
|
|
|
|
|
|
|
|
config.h: configure VERSION
|
|
|
|
|
./configure $(CONFIG_OPTIONS)
|
|
|
|
|
config.mk config.h: $(SRCDIR)/configure $(SRCDIR)/VERSION
|
|
|
|
|
$(SHELL) $< $(CONFIG_OPTIONS)
|
|
|
|
|
|
|
|
|
|
depend: config.h
|
|
|
|
|
makedepend -f$(MAKEFILE_LIST) -Y \
|
|
|
|
|
$(ALLOBJS:.o=.c) $(TESTUPNPDESCGENOBJS:.o=.c) \
|
|
|
|
|
testgetifstats.c testupnppermissions.c testgetifaddr.c \
|
|
|
|
|
testgetroute.c testasyncsendto.c testportinuse.c \
|
|
|
|
|
miniupnpdctl.c testssdppktgen.c 2>/dev/null
|
|
|
|
|
depend: $(DEP)
|
|
|
|
|
|
|
|
|
|
dox: miniupnpd.doxyconf
|
|
|
|
|
$(DOXYGEN) $<
|
|
|
|
|
%.d: $(SRCDIR)/%.c
|
|
|
|
|
$(CC) $(CPPFLAGS) $(DEPFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
|
|
# DO NOT DELETE
|
|
|
|
|
dox: $(SRCDIR)/miniupnpd.doxyconf
|
|
|
|
|
(cat $< ; echo "INPUT=$(SRCDIR)" ) | $(DOXYGEN) -
|
|
|
|
|
|
|
|
|
|
miniupnpd.o: config.h macros.h upnpglobalvars.h upnppermissions.h
|
|
|
|
|
miniupnpd.o: miniupnpdtypes.h upnphttp.h upnpdescgen.h miniupnpdpath.h
|
|
|
|
|
miniupnpd.o: getifaddr.h upnpsoap.h options.h minissdp.h upnpredirect.h
|
|
|
|
|
miniupnpd.o: upnppinhole.h daemonize.h upnpevents.h asyncsendto.h natpmp.h
|
|
|
|
|
miniupnpd.o: pcpserver.h commonrdr.h upnputils.h ifacewatcher.h
|
|
|
|
|
upnphttp.o: config.h upnphttp.h upnpdescgen.h miniupnpdpath.h upnpsoap.h
|
|
|
|
|
upnphttp.o: upnpevents.h upnputils.h upnpglobalvars.h upnppermissions.h
|
|
|
|
|
upnphttp.o: miniupnpdtypes.h
|
|
|
|
|
upnpdescgen.o: config.h getifaddr.h upnpredirect.h upnpdescgen.h
|
|
|
|
|
upnpdescgen.o: miniupnpdpath.h upnpglobalvars.h upnppermissions.h
|
|
|
|
|
upnpdescgen.o: miniupnpdtypes.h upnpdescstrings.h upnpurns.h getconnstatus.h
|
|
|
|
|
upnpsoap.o: macros.h config.h upnpglobalvars.h upnppermissions.h
|
|
|
|
|
upnpsoap.o: miniupnpdtypes.h upnphttp.h upnpsoap.h upnpreplyparse.h
|
|
|
|
|
upnpsoap.o: upnpredirect.h upnppinhole.h getifaddr.h getifstats.h
|
|
|
|
|
upnpsoap.o: getconnstatus.h upnpurns.h
|
|
|
|
|
upnpreplyparse.o: upnpreplyparse.h minixml.h
|
|
|
|
|
minixml.o: minixml.h
|
|
|
|
|
portinuse.o: macros.h config.h upnpglobalvars.h upnppermissions.h
|
|
|
|
|
portinuse.o: miniupnpdtypes.h getifaddr.h portinuse.h netfilter/iptcrdr.h
|
|
|
|
|
portinuse.o: commonrdr.h
|
|
|
|
|
upnpredirect.o: macros.h config.h upnpredirect.h upnpglobalvars.h
|
|
|
|
|
upnpredirect.o: upnppermissions.h miniupnpdtypes.h upnpevents.h portinuse.h
|
|
|
|
|
upnpredirect.o: netfilter/iptcrdr.h commonrdr.h
|
|
|
|
|
getifaddr.o: config.h getifaddr.h
|
|
|
|
|
daemonize.o: daemonize.h config.h
|
|
|
|
|
upnpglobalvars.o: config.h upnpglobalvars.h upnppermissions.h
|
|
|
|
|
upnpglobalvars.o: miniupnpdtypes.h upnpdescstrings.h
|
|
|
|
|
options.o: config.h options.h upnppermissions.h upnpglobalvars.h
|
|
|
|
|
options.o: miniupnpdtypes.h
|
|
|
|
|
upnppermissions.o: config.h upnppermissions.h
|
|
|
|
|
minissdp.o: config.h upnpdescstrings.h miniupnpdpath.h upnphttp.h
|
|
|
|
|
minissdp.o: upnpglobalvars.h upnppermissions.h miniupnpdtypes.h minissdp.h
|
|
|
|
|
minissdp.o: upnputils.h getroute.h asyncsendto.h codelength.h macros.h
|
|
|
|
|
natpmp.o: macros.h config.h natpmp.h upnpglobalvars.h upnppermissions.h
|
|
|
|
|
natpmp.o: miniupnpdtypes.h getifaddr.h upnpredirect.h commonrdr.h upnputils.h
|
|
|
|
|
natpmp.o: portinuse.h asyncsendto.h
|
|
|
|
|
pcpserver.o: config.h pcpserver.h macros.h upnpglobalvars.h upnppermissions.h
|
|
|
|
|
pcpserver.o: miniupnpdtypes.h pcplearndscp.h upnpredirect.h commonrdr.h
|
|
|
|
|
pcpserver.o: getifaddr.h asyncsendto.h pcp_msg_struct.h netfilter/iptcrdr.h
|
|
|
|
|
pcpserver.o: commonrdr.h
|
|
|
|
|
upnpevents.o: config.h upnpevents.h miniupnpdpath.h upnpglobalvars.h
|
|
|
|
|
upnpevents.o: upnppermissions.h miniupnpdtypes.h upnpdescgen.h upnputils.h
|
|
|
|
|
upnputils.o: config.h upnputils.h upnpglobalvars.h upnppermissions.h
|
|
|
|
|
upnputils.o: miniupnpdtypes.h getroute.h
|
|
|
|
|
getconnstatus.o: getconnstatus.h getifaddr.h
|
|
|
|
|
upnppinhole.o: macros.h config.h upnpredirect.h upnpglobalvars.h
|
|
|
|
|
upnppinhole.o: upnppermissions.h miniupnpdtypes.h upnpevents.h upnppinhole.h
|
|
|
|
|
upnppinhole.o: netfilter/iptpinhole.h
|
|
|
|
|
pcplearndscp.o: config.h upnpglobalvars.h upnppermissions.h miniupnpdtypes.h
|
|
|
|
|
pcplearndscp.o: pcplearndscp.h
|
|
|
|
|
asyncsendto.o: asyncsendto.h upnputils.h
|
|
|
|
|
linux/getifstats.o: config.h getifstats.h
|
|
|
|
|
linux/ifacewatcher.o: config.h ifacewatcher.h config.h minissdp.h
|
|
|
|
|
linux/ifacewatcher.o: miniupnpdtypes.h getifaddr.h upnpglobalvars.h
|
|
|
|
|
linux/ifacewatcher.o: upnppermissions.h natpmp.h
|
|
|
|
|
linux/getroute.o: getroute.h upnputils.h
|
|
|
|
|
netfilter/iptcrdr.o: macros.h config.h netfilter/iptcrdr.h commonrdr.h
|
|
|
|
|
netfilter/iptcrdr.o: config.h upnpglobalvars.h upnppermissions.h
|
|
|
|
|
netfilter/iptcrdr.o: miniupnpdtypes.h
|
|
|
|
|
netfilter/iptpinhole.o: config.h netfilter/iptpinhole.h upnpglobalvars.h
|
|
|
|
|
netfilter/iptpinhole.o: upnppermissions.h config.h miniupnpdtypes.h
|
|
|
|
|
testupnpdescgen.o: macros.h config.h upnpdescgen.h upnpdescstrings.h
|
|
|
|
|
testupnpdescgen.o: getifaddr.h
|
|
|
|
|
upnpdescgen.o: config.h getifaddr.h upnpredirect.h upnpdescgen.h
|
|
|
|
|
upnpdescgen.o: miniupnpdpath.h upnpglobalvars.h upnppermissions.h
|
|
|
|
|
upnpdescgen.o: miniupnpdtypes.h upnpdescstrings.h upnpurns.h getconnstatus.h
|
|
|
|
|
testgetifstats.o: getifstats.h
|
|
|
|
|
testupnppermissions.o: upnppermissions.h config.h
|
|
|
|
|
testgetifaddr.o: config.h getifaddr.h
|
|
|
|
|
testgetroute.o: getroute.h upnputils.h upnpglobalvars.h upnppermissions.h
|
|
|
|
|
testgetroute.o: config.h miniupnpdtypes.h
|
|
|
|
|
testasyncsendto.o: miniupnpdtypes.h config.h upnputils.h asyncsendto.h
|
|
|
|
|
testportinuse.o: macros.h config.h portinuse.h
|
|
|
|
|
miniupnpdctl.o: macros.h
|
|
|
|
|
testssdppktgen.o: macros.h config.h miniupnpdpath.h upnphttp.h
|
|
|
|
|
upnpstun.o: config.h upnpstun.h netfilter/iptcrdr.h
|
|
|
|
|
%.o: $(SRCDIR)/%.c
|
|
|
|
|
$(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
|
|
|
|
|
|
|
|
|
|
%.o: $(SRCDIR)/linux/%.c
|
|
|
|
|
$(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
|
|
|
|
|
|
|
|
|
|
%.o: $(SRCDIR)/netfilter/%.c
|
|
|
|
|
$(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
|
|
|
|
|
|
|
|
|
|
print-%:
|
|
|
|
|
@echo "$* = $($*)"
|
|
|
|
|
|
|
|
|
|
ifneq ($(MAKECMDGOALS),clean)
|
|
|
|
|
-include $(DEP)
|
|
|
|
|
endif
|
|
|
|
|