diff options
Diffstat (limited to 'meta/recipes-extended/iptables/iptables_1.8.8.bb')
| -rw-r--r-- | meta/recipes-extended/iptables/iptables_1.8.8.bb | 123 |
1 files changed, 123 insertions, 0 deletions
diff --git a/meta/recipes-extended/iptables/iptables_1.8.8.bb b/meta/recipes-extended/iptables/iptables_1.8.8.bb new file mode 100644 index 0000000000..54d027220b --- /dev/null +++ b/meta/recipes-extended/iptables/iptables_1.8.8.bb | |||
| @@ -0,0 +1,123 @@ | |||
| 1 | SUMMARY = "Tools for managing kernel packet filtering capabilities" | ||
| 2 | DESCRIPTION = "iptables is the userspace command line program used to configure and control network packet \ | ||
| 3 | filtering code in Linux." | ||
| 4 | HOMEPAGE = "http://www.netfilter.org/" | ||
| 5 | BUGTRACKER = "http://bugzilla.netfilter.org/" | ||
| 6 | LICENSE = "GPL-2.0-or-later" | ||
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | ||
| 8 | file://iptables/iptables.c;beginline=13;endline=25;md5=c5cffd09974558cf27d0f763df2a12dc \ | ||
| 9 | " | ||
| 10 | |||
| 11 | SRC_URI = "http://netfilter.org/projects/iptables/files/iptables-${PV}.tar.bz2 \ | ||
| 12 | file://0001-configure-Add-option-to-enable-disable-libnfnetlink.patch \ | ||
| 13 | file://0001-Makefile.am-do-not-install-etc-ethertypes.patch \ | ||
| 14 | file://0002-configure.ac-only-check-conntrack-when-libnfnetlink-enabled.patch \ | ||
| 15 | file://format-security.patch \ | ||
| 16 | file://iptables.service \ | ||
| 17 | file://iptables.rules \ | ||
| 18 | file://ip6tables.service \ | ||
| 19 | file://ip6tables.rules \ | ||
| 20 | file://0001-iptables-xshared.h-add-missing-sys.types.h-include.patch \ | ||
| 21 | " | ||
| 22 | SRC_URI[sha256sum] = "71c75889dc710676631553eb1511da0177bbaaf1b551265b912d236c3f51859f" | ||
| 23 | |||
| 24 | SYSTEMD_SERVICE:${PN} = "\ | ||
| 25 | iptables.service \ | ||
| 26 | ${@bb.utils.contains('PACKAGECONFIG', 'ipv6', 'ip6tables.service', '', d)} \ | ||
| 27 | " | ||
| 28 | |||
| 29 | inherit autotools pkgconfig systemd | ||
| 30 | |||
| 31 | EXTRA_OECONF = "--with-kernel=${STAGING_INCDIR}" | ||
| 32 | |||
| 33 | CFLAGS:append:libc-musl = " -D__UAPI_DEF_ETHHDR=0" | ||
| 34 | |||
| 35 | PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}" | ||
| 36 | PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6," | ||
| 37 | |||
| 38 | # libnfnetlink recipe is in meta-networking layer | ||
| 39 | PACKAGECONFIG[libnfnetlink] = "--enable-libnfnetlink,--disable-libnfnetlink,libnfnetlink libnetfilter-conntrack" | ||
| 40 | |||
| 41 | # libnftnl recipe is in meta-networking layer(previously known as libnftables) | ||
| 42 | PACKAGECONFIG[libnftnl] = "--enable-nftables,--disable-nftables,libnftnl" | ||
| 43 | |||
| 44 | do_configure:prepend() { | ||
| 45 | # Remove some libtool m4 files | ||
| 46 | # Keep ax_check_linker_flags.m4 which belongs to autoconf-archive. | ||
| 47 | rm -f libtool.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4 | ||
| 48 | |||
| 49 | # Copy a header to fix out of tree builds | ||
| 50 | cp -f ${S}/libiptc/linux_list.h ${S}/include/libiptc/ | ||
| 51 | } | ||
| 52 | |||
| 53 | IPTABLES_RULES_DIR ?= "${sysconfdir}/${BPN}" | ||
| 54 | |||
| 55 | do_install:append() { | ||
| 56 | install -d ${D}${IPTABLES_RULES_DIR} | ||
| 57 | install -m 0644 ${WORKDIR}/iptables.rules ${D}${IPTABLES_RULES_DIR} | ||
| 58 | |||
| 59 | install -d ${D}${systemd_system_unitdir} | ||
| 60 | install -m 0644 ${WORKDIR}/iptables.service ${D}${systemd_system_unitdir} | ||
| 61 | |||
| 62 | sed -i \ | ||
| 63 | -e 's,@SBINDIR@,${sbindir},g' \ | ||
| 64 | -e 's,@RULESDIR@,${IPTABLES_RULES_DIR},g' \ | ||
| 65 | ${D}${systemd_system_unitdir}/iptables.service | ||
| 66 | |||
| 67 | if ${@bb.utils.contains('PACKAGECONFIG', 'ipv6', 'true', 'false', d)} ; then | ||
| 68 | install -m 0644 ${WORKDIR}/ip6tables.rules ${D}${IPTABLES_RULES_DIR} | ||
| 69 | install -m 0644 ${WORKDIR}/ip6tables.service ${D}${systemd_system_unitdir} | ||
| 70 | |||
| 71 | sed -i \ | ||
| 72 | -e 's,@SBINDIR@,${sbindir},g' \ | ||
| 73 | -e 's,@RULESDIR@,${IPTABLES_RULES_DIR},g' \ | ||
| 74 | ${D}${systemd_system_unitdir}/ip6tables.service | ||
| 75 | fi | ||
| 76 | |||
| 77 | # if libnftnl is included, make the iptables symlink point to the nft-based binary by default | ||
| 78 | if ${@bb.utils.contains('PACKAGECONFIG', 'libnftnl', 'true', 'false', d)} ; then | ||
| 79 | ln -sf ${sbindir}/xtables-nft-multi ${D}${sbindir}/iptables | ||
| 80 | fi | ||
| 81 | } | ||
| 82 | |||
| 83 | PACKAGES =+ "${PN}-modules ${PN}-apply" | ||
| 84 | PACKAGES_DYNAMIC += "^${PN}-module-.*" | ||
| 85 | |||
| 86 | python populate_packages:prepend() { | ||
| 87 | modules = do_split_packages(d, '${libdir}/xtables', r'lib(.*)\.so$', '${PN}-module-%s', '${PN} module %s', extra_depends='') | ||
| 88 | if modules: | ||
| 89 | metapkg = d.getVar('PN') + '-modules' | ||
| 90 | d.appendVar('RDEPENDS:' + metapkg, ' ' + ' '.join(modules)) | ||
| 91 | } | ||
| 92 | |||
| 93 | RDEPENDS:${PN} = "${PN}-module-xt-standard" | ||
| 94 | RRECOMMENDS:${PN} = " \ | ||
| 95 | ${PN}-modules \ | ||
| 96 | kernel-module-x-tables \ | ||
| 97 | kernel-module-ip-tables \ | ||
| 98 | kernel-module-iptable-filter \ | ||
| 99 | kernel-module-iptable-nat \ | ||
| 100 | kernel-module-nf-defrag-ipv4 \ | ||
| 101 | kernel-module-nf-conntrack \ | ||
| 102 | kernel-module-nf-conntrack-ipv4 \ | ||
| 103 | kernel-module-nf-nat \ | ||
| 104 | kernel-module-ipt-masquerade \ | ||
| 105 | ${@bb.utils.contains('PACKAGECONFIG', 'ipv6', '\ | ||
| 106 | kernel-module-ip6table-filter \ | ||
| 107 | kernel-module-ip6-tables \ | ||
| 108 | ', '', d)} \ | ||
| 109 | " | ||
| 110 | |||
| 111 | FILES:${PN} += "${datadir}/xtables" | ||
| 112 | |||
| 113 | FILES:${PN}-apply = "${sbindir}/ip*-apply" | ||
| 114 | RDEPENDS:${PN}-apply = "${PN} bash" | ||
| 115 | |||
| 116 | # Include the symlinks as well in respective packages | ||
| 117 | FILES:${PN}-module-xt-conntrack += "${libdir}/xtables/libxt_state.so" | ||
| 118 | FILES:${PN}-module-xt-ct += "${libdir}/xtables/libxt_NOTRACK.so ${libdir}/xtables/libxt_REDIRECT.so" | ||
| 119 | |||
| 120 | ALLOW_EMPTY:${PN}-modules = "1" | ||
| 121 | |||
| 122 | INSANE_SKIP:${PN}-module-xt-conntrack = "dev-so" | ||
| 123 | INSANE_SKIP:${PN}-module-xt-ct = "dev-so" | ||
