diff options
author | Ken Keys <kkeys@caida.org> | 2018-07-17 10:18:46 -0700 |
---|---|---|
committer | Ken Keys <kkeys@caida.org> | 2018-07-17 10:18:46 -0700 |
commit | de5dcb6b0385b37aa3393e457b413abdc31b3259 (patch) | |
tree | 3f76e21d82a6bc57238ce7ebd6230529237feb65 /net/spoofer/Makefile | |
parent | c44ccef6f4c2242d2517f8debe78ab371a0edffa (diff) |
spoofer: add package
The spoofer client is part of a system to measure the Internet's resistance
to packets with a spoofed (forged) source IP address.
Signed-off-by: Ken Keys <kkeys@caida.org>
Diffstat (limited to 'net/spoofer/Makefile')
-rw-r--r-- | net/spoofer/Makefile | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/net/spoofer/Makefile b/net/spoofer/Makefile new file mode 100644 index 000000000..60ee97939 --- /dev/null +++ b/net/spoofer/Makefile @@ -0,0 +1,72 @@ +# +# Copyright (C) 2018 The Regents of the University of California +# +# This is free software, licensed under the GNU General Public License v3. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=spoofer +PKG_VERSION:=1.3.3 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=https://www.caida.org/projects/spoofer/downloads +PKG_HASH:=376f9a4b2d0404de3c37df645672a954b4916ad56508fadfe3f99120e5b0f87e + +PKG_LICENSE:=GPL-3.0 +PKG_LICENSE_FILES:=LICENSE + +HOST_BUILD_DEPENDS:=protobuf/host + +include $(INCLUDE_DIR)/host-build.mk +include $(INCLUDE_DIR)/package.mk + +$(eval $(call HostBuild)) + +define Package/spoofer + SECTION:=net + CATEGORY:=Network + TITLE:=Measure your ISP's resistance to spoofed IP packets + URL:=https://spoofer.caida.org/ + MAINTAINER:=Ken Keys <spoofer-info@caida.org> + DEPENDS:=+protobuf-lite +libpcap +libpthread +libopenssl +endef + +define Package/spoofer/description +The spoofer client is part of a system to measure the Internet's +resistance to packets with a spoofed (forged) source IP address. + +This package comes bundled with a small certificate file that allows +secure communication with the spoofer server without depending on +the large ca-certificates package. But if the server's private +certificate ever changes, it will be necessary to either install the +ca-certificates package or install an updated version of this package +that has a newer bundled certificate. + +endef + +CONFIGURE_ARGS += \ + --enable-prober \ + --disable-manager + +CONFIGURE_VARS += \ + PROTOC=$(STAGING_DIR_HOSTPKG)/bin/protoc + +EXTRA_CXXFLAGS += -std=gnu++14 + +SPOOFER_SRC=$(PKG_BUILD_DIR) + +define Package/spoofer/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/prober/spoofer-prober $(1)/usr/bin + $(INSTALL_BIN) $(SPOOFER_SRC)/openwrt-files/spoofer $(1)/usr/bin + $(INSTALL_DIR) $(1)/etc/init.d + $(INSTALL_BIN) $(SPOOFER_SRC)/openwrt-files/initscript $(1)/etc/init.d/spoofer + $(INSTALL_DIR) $(1)/usr/share/spoofer + $(INSTALL_DATA) $(SPOOFER_SRC)/gd_bundle.crt $(1)/usr/share/spoofer + $(INSTALL_DATA) $(SPOOFER_SRC)/openwrt-files/spoofer-lib.sh $(1)/usr/share/spoofer +endef + +$(eval $(call BuildPackage,spoofer)) |