1997-02-09 22:50:16 +00:00
|
|
|
#
|
1997-11-16 04:52:19 +00:00
|
|
|
# Copyright (C) 1993-1997 by Darren Reed.
|
1997-02-09 22:50:16 +00:00
|
|
|
#
|
1997-11-16 04:52:19 +00:00
|
|
|
# Redistribution and use in source and binary forms are permitted
|
|
|
|
# provided that this notice is preserved and due credit is given
|
|
|
|
# to the original author and the contributors.
|
1997-02-09 22:50:16 +00:00
|
|
|
#
|
1998-06-20 18:29:38 +00:00
|
|
|
# $Id: Makefile,v 2.0.2.26.2.10 1998/05/23 05:01:23 darrenr Exp $
|
1997-02-09 22:50:16 +00:00
|
|
|
#
|
1997-05-25 15:45:04 +00:00
|
|
|
BINDEST=/usr/local/bin
|
|
|
|
SBINDEST=/sbin
|
|
|
|
MANDIR=/usr/local/man
|
1997-04-03 10:22:02 +00:00
|
|
|
#To test prototyping
|
|
|
|
#CC=gcc -Wstrict-prototypes -Wmissing-prototypes -Werror
|
1997-02-09 22:50:16 +00:00
|
|
|
CC=gcc
|
1998-03-21 10:04:55 +00:00
|
|
|
#CC=cc -Dconst=
|
1997-02-09 22:50:16 +00:00
|
|
|
DEBUG=-g
|
|
|
|
CFLAGS=-I$$(TOP)
|
1997-04-03 10:22:02 +00:00
|
|
|
CPU=`uname -m`
|
1997-11-16 04:52:19 +00:00
|
|
|
CPUDIR=`uname -s|sed -e 's@/@@g'`-`uname -r`-`uname -m`
|
1997-02-09 22:50:16 +00:00
|
|
|
#
|
|
|
|
# To enable this to work as a Loadable Kernel Module...
|
|
|
|
#
|
|
|
|
IPFLKM=-DIPFILTER_LKM
|
|
|
|
#
|
|
|
|
# To enable logging of blocked/passed packets...
|
|
|
|
#
|
|
|
|
IPFLOG=-DIPFILTER_LOG
|
|
|
|
#
|
|
|
|
# The facility you wish to log messages from ipmon to syslogd with.
|
|
|
|
#
|
|
|
|
LOGFAC=-DLOGFAC=LOG_LOCAL0
|
|
|
|
#
|
|
|
|
# For packets which don't match any pass rules or any block rules, set either
|
|
|
|
# FR_PASS or FR_BLOCK (respectively). It defaults to FR_PASS if left
|
|
|
|
# undefined. This is ignored for ipftest, which can thus return three
|
|
|
|
# results: pass, block and nomatch. This is the sort of "block unless
|
|
|
|
# explicitly allowed" type #define switch.
|
|
|
|
#
|
1997-03-02 15:40:21 +00:00
|
|
|
POLICY=-DIPF_DEFAULT_PASS=FR_PASS
|
1997-02-09 22:50:16 +00:00
|
|
|
#
|
|
|
|
MFLAGS="BINDEST=$(BINDEST)" "SBINDEST=$(SBINDEST)" "MANDIR=$(MANDIR)" \
|
1997-11-16 04:52:19 +00:00
|
|
|
'CFLAGS=$(CFLAGS) $(SOLARIS2)' "IPFLKM=$(IPFLKM)" \
|
1997-02-09 22:50:16 +00:00
|
|
|
"IPFLOG=$(IPFLOG)" "LOGFAC=$(LOGFAC)" "POLICY=$(POLICY)" \
|
1997-11-16 04:52:19 +00:00
|
|
|
"SOLARIS2=$(SOLARIS2)" "DEBUG=$(DEBUG)" "DCPU=$(CPU)" \
|
|
|
|
"CPUDIR=$(CPUDIR)"
|
|
|
|
#
|
|
|
|
SHELL=/bin/sh
|
1997-02-09 22:50:16 +00:00
|
|
|
#
|
|
|
|
########## ########## ########## ########## ########## ########## ##########
|
|
|
|
#
|
|
|
|
CP=/bin/cp
|
|
|
|
RM=/bin/rm
|
|
|
|
CHMOD=/bin/chmod
|
|
|
|
INSTALL=install
|
|
|
|
#
|
|
|
|
|
|
|
|
all:
|
|
|
|
@echo "Chose one of the following targets for making IP filter:"
|
|
|
|
@echo ""
|
1997-11-16 04:52:19 +00:00
|
|
|
@echo "solaris - auto-selects SunOS4.1.x/Solaris 2.[45]/Solaris2.[45]-x86"
|
|
|
|
@echo "netbsd - compile for NetBSD"
|
|
|
|
@echo "openbsd - compile for OpenBSD"
|
|
|
|
@echo "freebsd - compile for FreeBSD 2.0, 2.1 or earlier"
|
|
|
|
@echo "freebsd22 - compile for FreeBSD-2.2 or greater"
|
|
|
|
@echo "bsd - compile for generic 4.4BSD systems"
|
1997-02-09 22:50:16 +00:00
|
|
|
@echo "bsdi - compile for BSD/OS"
|
1997-11-16 04:52:19 +00:00
|
|
|
@echo "irix - compile for SGI IRIX"
|
1998-03-21 10:04:55 +00:00
|
|
|
@echo "linux - compile for Linux 2.0.31+"
|
1997-02-09 22:50:16 +00:00
|
|
|
@echo ""
|
|
|
|
|
|
|
|
tests:
|
|
|
|
@if [ -d test ]; then (cd test; make) \
|
|
|
|
else echo test directory not present, sorry; fi
|
|
|
|
|
1997-05-25 15:45:04 +00:00
|
|
|
include:
|
1997-11-16 04:52:19 +00:00
|
|
|
if [ ! -d netinet -o ! -f netinet/done ] ; then \
|
|
|
|
mkdir -p netinet; \
|
|
|
|
(cd netinet; ln -s ../*.h .; ln -s ../ip_ftp_pxy.c .); \
|
|
|
|
(cd netinet; ln -s ../ipsend/tcpip.h tcpip.h); \
|
|
|
|
touch netinet/done; \
|
|
|
|
fi
|
1997-05-25 15:45:04 +00:00
|
|
|
|
|
|
|
sunos solaris: include
|
1997-02-09 22:50:16 +00:00
|
|
|
./buildsunos
|
|
|
|
|
1997-05-25 15:45:04 +00:00
|
|
|
freebsd22 freebsd30: include
|
1997-11-16 04:52:19 +00:00
|
|
|
make setup "TARGOS=BSD" "CPUDIR=$(CPUDIR)"
|
|
|
|
-rm -f BSD/$(CPUDIR)/ioconf.h
|
1997-05-25 15:45:04 +00:00
|
|
|
@if [ -n $(IPFILKERN) ] ; then \
|
1998-06-20 18:29:38 +00:00
|
|
|
if [ -f /sys/$(IPFILKERN)/compile/ioconf.h ] ; then \
|
|
|
|
ln -s /sys/$(IPFILKERN)/compile/ioconf.h BSD/$(CPUDIR); \
|
|
|
|
else \
|
1997-11-16 04:52:19 +00:00
|
|
|
ln -s /sys/$(IPFILKERN)/ioconf.h BSD/$(CPUDIR); \
|
1998-06-20 18:29:38 +00:00
|
|
|
fi \
|
1997-05-25 15:45:04 +00:00
|
|
|
elif [ ! -f `uname -v|sed -e 's@^.*:\(/[^: ]*\).*@\1@'`/ioconf.h ] ; then \
|
|
|
|
echo -n "Can't find ioconf.h in "; \
|
|
|
|
echo `uname -v|sed -e 's@^.*:\(/[^: ]*\).*@\1@'`; \
|
1997-04-03 10:22:02 +00:00
|
|
|
exit 1;\
|
1997-05-25 15:45:04 +00:00
|
|
|
else \
|
|
|
|
ln -s `uname -v|sed -e 's@^.*:\(/[^: ]*\).*@\1@'`/ioconf.h BSD/$(CPU) ; \
|
1997-04-03 10:22:02 +00:00
|
|
|
fi
|
1997-05-25 15:45:04 +00:00
|
|
|
make freebsd
|
|
|
|
|
|
|
|
netbsd: include
|
1997-11-16 04:52:19 +00:00
|
|
|
make setup "TARGOS=BSD" "CPUDIR=$(CPUDIR)"
|
1998-06-20 18:29:38 +00:00
|
|
|
(cd BSD/$(CPUDIR); make build TOP=../.. $(MFLAGS) 'DLKM=-D_LKM' "ML=mln_ipl.c"; cd ..)
|
|
|
|
(cd BSD/$(CPUDIR); make -f Makefile.ipsend TOP=../.. $(MFLAGS); cd ..)
|
1997-11-16 04:52:19 +00:00
|
|
|
|
|
|
|
openbsd openbsd21: include
|
|
|
|
make setup "TARGOS=BSD" "CPUDIR=$(CPUDIR)"
|
1998-06-20 18:29:38 +00:00
|
|
|
(cd BSD/$(CPUDIR); make build TOP=../.. $(MFLAGS) 'DLKM=-D_LKM' "ML=mln_ipl.c"; cd ..)
|
|
|
|
(cd BSD/$(CPUDIR); make -f Makefile.ipsend TOP=../.. $(MFLAGS); cd ..)
|
1997-05-25 15:45:04 +00:00
|
|
|
|
|
|
|
freebsd freebsd20 freebsd21: include
|
1997-11-16 04:52:19 +00:00
|
|
|
make setup "TARGOS=BSD" "CPUDIR=$(CPUDIR)"
|
1998-06-20 18:29:38 +00:00
|
|
|
(cd BSD/$(CPUDIR); make build TOP=../.. $(MFLAGS) "ML=mlf_ipl.c"; cd ..)
|
|
|
|
(cd BSD/$(CPUDIR); make -f Makefile.ipsend TOP=../.. $(MFLAGS); cd ..)
|
1997-04-03 10:22:02 +00:00
|
|
|
|
1997-05-25 15:45:04 +00:00
|
|
|
bsd: include
|
1997-11-16 04:52:19 +00:00
|
|
|
make setup "TARGOS=BSD" "CPUDIR=$(CPUDIR)"
|
1998-06-20 18:29:38 +00:00
|
|
|
(cd BSD/$(CPUDIR); make build TOP=../.. $(MFLAGS); cd ..)
|
|
|
|
(cd BSD/$(CPUDIR); make -f Makefile.ipsend TOP=../.. $(MFLAGS); cd ..)
|
1997-02-09 22:50:16 +00:00
|
|
|
|
1997-05-25 15:45:04 +00:00
|
|
|
bsdi bsdos: include
|
1997-11-16 04:52:19 +00:00
|
|
|
make setup "TARGOS=BSD" "CPUDIR=$(CPUDIR)"
|
1998-06-20 18:29:38 +00:00
|
|
|
(cd BSD/$(CPUDIR); make build "CC=$(CC)" TOP=../.. $(MFLAGS) LKM= ; cd ..)
|
|
|
|
(cd BSD/$(CPUDIR); make -f Makefile.ipsend "CC=$(CC)" TOP=../.. $(MFLAGS); cd ..)
|
1997-11-16 04:52:19 +00:00
|
|
|
|
|
|
|
irix IRIX: include
|
|
|
|
make setup "TARGOS=IRIX" "CPUDIR=$(CPUDIR)"
|
1998-06-20 18:29:38 +00:00
|
|
|
(cd IRIX/$(CPUDIR); smake build TOP=../.. $(MFLAGS); cd ..)
|
|
|
|
(cd IRIX/$(CPUDIR); make -f Makefile.ipsend TOP=../.. $(MFLAGS); cd ..)
|
1997-11-16 04:52:19 +00:00
|
|
|
|
|
|
|
linux: include
|
|
|
|
make setup "TARGOS=Linux" "CPUDIR=$(CPUDIR)"
|
|
|
|
./buildlinux
|
|
|
|
|
|
|
|
linuxrev:
|
1998-06-20 18:29:38 +00:00
|
|
|
(cd Linux/$(CPUDIR); make build TOP=../.. $(MFLAGS) LKM= ; cd ..)
|
|
|
|
(cd Linux/$(CPUDIR); make -f Makefile.ipsend TOP=../.. $(MFLAGS); cd ..)
|
1997-11-16 04:52:19 +00:00
|
|
|
|
|
|
|
setup:
|
|
|
|
-if [ ! -d $(TARGOS)/$(CPUDIR) ] ; then mkdir $(TARGOS)/$(CPUDIR); fi
|
|
|
|
-rm -f $(TARGOS)/$(CPUDIR)/Makefile $(TARGOS)/$(CPUDIR)/Makefile.ipsend
|
|
|
|
-ln -s ../Makefile $(TARGOS)/$(CPUDIR)/Makefile
|
|
|
|
-ln -s ../Makefile.ipsend $(TARGOS)/$(CPUDIR)/Makefile.ipsend
|
1997-02-09 22:50:16 +00:00
|
|
|
|
|
|
|
clean:
|
1997-11-16 04:52:19 +00:00
|
|
|
${RM} -rf netinet
|
1997-02-09 22:50:16 +00:00
|
|
|
${RM} -f core *.o ipt fils ipf ipfstat ipftest ipmon if_ipl \
|
|
|
|
vnode_if.h $(LKM)
|
1998-06-20 18:29:38 +00:00
|
|
|
if [ "`uname -s`" = "SunOS" ]; then (cd SunOS4; make clean); fi
|
|
|
|
if [ "`uname -s`" = "SunOS" ]; then (cd SunOS5; make clean); fi
|
1997-02-09 22:50:16 +00:00
|
|
|
(cd BSD; make clean)
|
1997-11-16 04:52:19 +00:00
|
|
|
(cd Linux; make clean)
|
|
|
|
if [ "`uname -s`" = "IRIX" ]; then (cd IRIX; make clean); fi
|
1997-02-09 22:50:16 +00:00
|
|
|
[ -d test ] && (cd test; make clean)
|
|
|
|
(cd ipsend; make clean)
|
|
|
|
|
|
|
|
clean-bsd:
|
|
|
|
(cd BSD; make clean)
|
|
|
|
|
|
|
|
clean-sunos4:
|
|
|
|
(cd SunOS4; make clean)
|
|
|
|
|
|
|
|
clean-sunos5:
|
|
|
|
(cd SunOS5; make clean)
|
|
|
|
|
1997-11-16 04:52:19 +00:00
|
|
|
clean-irix:
|
|
|
|
(cd IRIX; make clean)
|
|
|
|
|
|
|
|
clean-linux:
|
|
|
|
(cd Linux; make clean)
|
|
|
|
|
1997-02-09 22:50:16 +00:00
|
|
|
get:
|
|
|
|
-@for i in ipf.c ipt.h solaris.c ipf.h kmem.c ipft_ef.c linux.h \
|
|
|
|
ipft_pc.c fil.c ipft_sn.c mln_ipl.c fils.c ipft_td.c \
|
|
|
|
mls_ipl.c ip_compat.h ipl.h opt.c ip_fil.c ipl_ldev.c \
|
|
|
|
parse.c ip_fil.h ipmon.c pcap.h ip_sfil.c ipt.c snoop.h \
|
|
|
|
ip_state.c ip_state.h ip_nat.c ip_nat.h ip_frag.c \
|
|
|
|
ip_frag.h ip_sfil.c misc.c; do \
|
|
|
|
if [ ! -f $$i ] ; then \
|
|
|
|
echo "getting $$i"; \
|
|
|
|
sccs get $$i; \
|
|
|
|
fi \
|
|
|
|
done
|
|
|
|
|
1997-04-03 10:22:02 +00:00
|
|
|
sunos4 solaris1:
|
1997-11-16 04:52:19 +00:00
|
|
|
(cd SunOS4; make build TOP=.. "CC=$(CC)" $(MFLAGS); cd ..)
|
|
|
|
(cd SunOS4; make -f Makefile.ipsend "CC=$(CC)" TOP=.. $(MFLAGS); cd ..)
|
1997-04-03 10:22:02 +00:00
|
|
|
|
|
|
|
sunos5 solaris2:
|
1998-06-20 18:29:38 +00:00
|
|
|
(cd SunOS5/$(CPUDIR); make build TOP=../.. "CC=$(CC)" $(MFLAGS) "SOLARIS2=$(SOLARIS2)" "CPU=-Dsparc -D__sparc__"; cd ..)
|
|
|
|
(cd SunOS5/$(CPUDIR); make -f Makefile.ipsend TOP=../.. "CC=$(CC)" $(MFLAGS); cd ..)
|
1997-04-03 10:22:02 +00:00
|
|
|
|
|
|
|
sunos5x86 solaris2x86:
|
1998-06-20 18:29:38 +00:00
|
|
|
(cd SunOS5/$(CPUDIR); make build TOP=../.. "CC=$(CC)" $(MFLAGS) "SOLARIS2=$(SOLARIS2)" "CPU=-Di86pc -Di386 -D__i386__"; cd ..)
|
|
|
|
(cd SunOS5/$(CPUDIR); make -f Makefile.ipsend TOP=../.. "CC=$(CC)" $(MFLAGS); cd ..)
|
|
|
|
|
|
|
|
install-linux:
|
|
|
|
(cd Linux/$(CPUDIR); make install "TOP=../.." $(MFLAGS); cd ..)
|
|
|
|
(cd Linux/$(CPUDIR); make -f Makefile.ipsend INSTALL=$(INSTALL) install "TOP=../.." $(MFLAGS); cd ..)
|
1997-04-03 10:22:02 +00:00
|
|
|
|
1997-11-16 04:52:19 +00:00
|
|
|
install-bsd:
|
|
|
|
(cd BSD/$(CPUDIR); make install "TOP=../.." $(MFLAGS); cd ..)
|
|
|
|
(cd BSD/$(CPUDIR); make -f Makefile.ipsend INSTALL=$(INSTALL) install "TOP=../.." $(MFLAGS); cd ..)
|
1997-05-25 15:45:04 +00:00
|
|
|
|
1997-02-09 22:50:16 +00:00
|
|
|
install-sunos4: solaris
|
1997-04-03 10:22:02 +00:00
|
|
|
(cd SunOS4; $(MAKE) "CPU=$(CPU) TOP=.." install)
|
1997-05-25 15:45:04 +00:00
|
|
|
|
1997-02-09 22:50:16 +00:00
|
|
|
install-sunos5: solaris
|
1997-04-03 10:22:02 +00:00
|
|
|
(cd SunOS5; $(MAKE) "CPU=$(CPU) TOP=.." install)
|
1997-02-09 22:50:16 +00:00
|
|
|
|
1997-11-16 04:52:19 +00:00
|
|
|
install-irix: irix
|
|
|
|
(cd IRIX; smake install "CPU=$(CPU) TOP=.." $(MFLAGS))
|
|
|
|
|
1997-02-09 22:50:16 +00:00
|
|
|
rcsget:
|
|
|
|
-@for i in ipf.c ipt.h solaris.c ipf.h kmem.c ipft_ef.c linux.h \
|
|
|
|
ipft_pc.c fil.c ipft_sn.c mln_ipl.c fils.c ipft_td.c \
|
|
|
|
mls_ipl.c ip_compat.h ipl.h opt.c ip_fil.c ipl_ldev.c \
|
|
|
|
parse.c ip_fil.h ipmon.c pcap.h ip_sfil.c ipt.c snoop.h \
|
|
|
|
ip_state.c ip_state.h ip_nat.c ip_nat.h ip_frag.c \
|
|
|
|
ip_frag.h ip_sfil.c misc.c; do \
|
|
|
|
if [ ! -f $$i ] ; then \
|
|
|
|
echo "getting $$i"; \
|
|
|
|
co $$i; \
|
|
|
|
fi \
|
|
|
|
done
|
|
|
|
|
|
|
|
do-cvs:
|
|
|
|
find . -type d -name CVS -print | xargs /bin/rm -rf
|
|
|
|
find . -type f -name .cvsignore -print | xargs /bin/rm -f
|