diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2022-11-03 13:30:48 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-11-07 14:32:42 +0000 |
| commit | f42c3d428d8741f0074fd75d3c5133c663418795 (patch) | |
| tree | a68774f1c0b59919f4349e9da11934c72c30265d /meta/recipes-connectivity/inetutils/inetutils_2.4.bb | |
| parent | 109549e5b9152fa47b600684e104328490e71c56 (diff) | |
| download | poky-f42c3d428d8741f0074fd75d3c5133c663418795.tar.gz | |
inetutils: upgrade 2.3 -> 2.4
CVE-2022-39028.patch
removed since it's included in 2.4
Changelog:
==========
ifconfig
------------
Support specifying prefix netmask lengths in -A.
Hurd: tell pfinet translator interfaces to configure
ftp
----------
Avoid crash caused by signed integer overflow resulting in out-of-bounds buffer access.
Avoid crash caused by heap buffer overflow.
Avoid crash caused by NULL pointer dereference.
Avoid crash caused by infinite macro recursion.
telnetd
-----------
Avoid crash on 0xff 0xf7 (IAC EC) or 0xff 0xf8 (IAC EL). CVE-2022-39028
telnet
-----------
Fix a buffer overflow problem. CVE-2019-0053
tftp
-----------
Avoid crashing when given unexpected or invalid commands from tty.
Various bugs fixes, internal improvements and clean ups.
(From OE-Core rev: fec6ec179b97b768d32fbd782338450edc1a5344)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/inetutils/inetutils_2.4.bb')
| -rw-r--r-- | meta/recipes-connectivity/inetutils/inetutils_2.4.bb | 211 |
1 files changed, 211 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/inetutils/inetutils_2.4.bb b/meta/recipes-connectivity/inetutils/inetutils_2.4.bb new file mode 100644 index 0000000000..6519331141 --- /dev/null +++ b/meta/recipes-connectivity/inetutils/inetutils_2.4.bb | |||
| @@ -0,0 +1,211 @@ | |||
| 1 | DESCRIPTION = "The GNU inetutils are a collection of common \ | ||
| 2 | networking utilities and servers including ftp, ftpd, rcp, \ | ||
| 3 | rexec, rlogin, rlogind, rsh, rshd, syslog, syslogd, talk, \ | ||
| 4 | talkd, telnet, telnetd, tftp, tftpd, and uucpd." | ||
| 5 | HOMEPAGE = "http://www.gnu.org/software/inetutils" | ||
| 6 | SECTION = "net" | ||
| 7 | DEPENDS = "ncurses netbase readline virtual/crypt" | ||
| 8 | |||
| 9 | LICENSE = "GPL-3.0-only" | ||
| 10 | |||
| 11 | LIC_FILES_CHKSUM = "file://COPYING;md5=0c7051aef9219dc7237f206c5c4179a7" | ||
| 12 | |||
| 13 | SRC_URI[sha256sum] = "1789d6b1b1a57dfe2a7ab7b533ee9f5dfd9cbf5b59bb1bb3c2612ed08d0f68b2" | ||
| 14 | SRC_URI = "${GNU_MIRROR}/inetutils/inetutils-${PV}.tar.xz \ | ||
| 15 | file://inetutils-1.8-0001-printf-parse-pull-in-features.h-for-__GLIBC__.patch \ | ||
| 16 | file://inetutils-1.8-0003-wchar.patch \ | ||
| 17 | file://rexec.xinetd.inetutils \ | ||
| 18 | file://rlogin.xinetd.inetutils \ | ||
| 19 | file://rsh.xinetd.inetutils \ | ||
| 20 | file://telnet.xinetd.inetutils \ | ||
| 21 | file://tftpd.xinetd.inetutils \ | ||
| 22 | file://inetutils-1.9-PATH_PROCNET_DEV.patch \ | ||
| 23 | file://inetutils-only-check-pam_appl.h-when-pam-enabled.patch \ | ||
| 24 | " | ||
| 25 | |||
| 26 | inherit autotools gettext update-alternatives texinfo | ||
| 27 | |||
| 28 | acpaths = "-I ./m4" | ||
| 29 | |||
| 30 | SRC_URI += "${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', '', 'file://fix-disable-ipv6.patch', d)}" | ||
| 31 | |||
| 32 | PACKAGECONFIG ??= "ftp uucpd \ | ||
| 33 | ${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)} \ | ||
| 34 | ${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6 ping6', '', d)} \ | ||
| 35 | " | ||
| 36 | PACKAGECONFIG[ftp] = "--enable-ftp,--disable-ftp,readline" | ||
| 37 | PACKAGECONFIG[uucpd] = "--enable-uucpd,--disable-uucpd,readline" | ||
| 38 | PACKAGECONFIG[pam] = "--with-pam,--without-pam,libpam" | ||
| 39 | PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6 gl_cv_socket_ipv6=no," | ||
| 40 | PACKAGECONFIG[ping6] = "--enable-ping6,--disable-ping6," | ||
| 41 | |||
| 42 | EXTRA_OECONF = "--with-ncurses-include-dir=${STAGING_INCDIR} \ | ||
| 43 | inetutils_cv_path_login=${base_bindir}/login \ | ||
| 44 | --with-libreadline-prefix=${STAGING_LIBDIR} \ | ||
| 45 | --enable-rpath=no \ | ||
| 46 | " | ||
| 47 | |||
| 48 | # These are horrible for security, disable them | ||
| 49 | EXTRA_OECONF:append = " --disable-rsh --disable-rshd --disable-rcp \ | ||
| 50 | --disable-rlogin --disable-rlogind --disable-rexec --disable-rexecd" | ||
| 51 | |||
| 52 | do_configure:prepend () { | ||
| 53 | export HELP2MAN='true' | ||
| 54 | cp ${STAGING_DATADIR_NATIVE}/gettext/config.rpath ${S}/build-aux/config.rpath | ||
| 55 | install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S} | ||
| 56 | install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S} | ||
| 57 | rm -f ${S}/glob/configure* | ||
| 58 | } | ||
| 59 | |||
| 60 | do_install:append () { | ||
| 61 | install -m 0755 -d ${D}${base_sbindir} | ||
| 62 | install -m 0755 -d ${D}${sbindir} | ||
| 63 | install -m 0755 -d ${D}${sysconfdir}/xinetd.d | ||
| 64 | if [ "${base_bindir}" != "${bindir}" ] ; then | ||
| 65 | install -m 0755 -d ${D}${base_bindir} | ||
| 66 | mv ${D}${bindir}/ping* ${D}${base_bindir}/ | ||
| 67 | mv ${D}${bindir}/hostname ${D}${base_bindir}/ | ||
| 68 | mv ${D}${bindir}/dnsdomainname ${D}${base_bindir}/ | ||
| 69 | fi | ||
| 70 | mv ${D}${bindir}/ifconfig ${D}${base_sbindir}/ | ||
| 71 | mv ${D}${libexecdir}/syslogd ${D}${base_sbindir}/ | ||
| 72 | mv ${D}${libexecdir}/tftpd ${D}${sbindir}/in.tftpd | ||
| 73 | mv ${D}${libexecdir}/telnetd ${D}${sbindir}/in.telnetd | ||
| 74 | if [ -e ${D}${libexecdir}/rexecd ]; then | ||
| 75 | mv ${D}${libexecdir}/rexecd ${D}${sbindir}/in.rexecd | ||
| 76 | cp ${WORKDIR}/rexec.xinetd.inetutils ${D}/${sysconfdir}/xinetd.d/rexec | ||
| 77 | fi | ||
| 78 | if [ -e ${D}${libexecdir}/rlogind ]; then | ||
| 79 | mv ${D}${libexecdir}/rlogind ${D}${sbindir}/in.rlogind | ||
| 80 | cp ${WORKDIR}/rlogin.xinetd.inetutils ${D}/${sysconfdir}/xinetd.d/rlogin | ||
| 81 | fi | ||
| 82 | if [ -e ${D}${libexecdir}/rshd ]; then | ||
| 83 | mv ${D}${libexecdir}/rshd ${D}${sbindir}/in.rshd | ||
| 84 | cp ${WORKDIR}/rsh.xinetd.inetutils ${D}/${sysconfdir}/xinetd.d/rsh | ||
| 85 | fi | ||
| 86 | if [ -e ${D}${libexecdir}/talkd ]; then | ||
| 87 | mv ${D}${libexecdir}/talkd ${D}${sbindir}/in.talkd | ||
| 88 | fi | ||
| 89 | mv ${D}${libexecdir}/uucpd ${D}${sbindir}/in.uucpd | ||
| 90 | mv ${D}${libexecdir}/* ${D}${bindir}/ | ||
| 91 | cp ${WORKDIR}/telnet.xinetd.inetutils ${D}/${sysconfdir}/xinetd.d/telnet | ||
| 92 | cp ${WORKDIR}/tftpd.xinetd.inetutils ${D}/${sysconfdir}/xinetd.d/tftpd | ||
| 93 | |||
| 94 | sed -e 's,@SBINDIR@,${sbindir},g' -i ${D}/${sysconfdir}/xinetd.d/* | ||
| 95 | if [ -e ${D}${libdir}/charset.alias ]; then | ||
| 96 | rm -rf ${D}${libdir}/charset.alias | ||
| 97 | fi | ||
| 98 | rm -rf ${D}${libexecdir}/ | ||
| 99 | # remove usr/lib if empty | ||
| 100 | rmdir ${D}${libdir} || true | ||
| 101 | } | ||
| 102 | |||
| 103 | PACKAGES =+ "${PN}-ping ${PN}-ping6 ${PN}-hostname ${PN}-ifconfig \ | ||
| 104 | ${PN}-tftp ${PN}-logger ${PN}-traceroute ${PN}-syslogd \ | ||
| 105 | ${PN}-ftp ${PN}-ftpd ${PN}-tftpd ${PN}-telnet ${PN}-telnetd ${PN}-inetd \ | ||
| 106 | ${PN}-rsh ${PN}-rshd" | ||
| 107 | |||
| 108 | # The packages tftpd, telnetd and rshd conflict with the ones | ||
| 109 | # provided by netkit, so add the corresponding -dbg packages | ||
| 110 | # for them to avoid the confliction between the dbg package | ||
| 111 | # of inetutils and netkit. | ||
| 112 | PACKAGES =+ "${PN}-tftpd-dbg ${PN}-telnetd-dbg ${PN}-rshd-dbg" | ||
| 113 | NOAUTOPACKAGEDEBUG = "1" | ||
| 114 | |||
| 115 | ALTERNATIVE_PRIORITY = "79" | ||
| 116 | ALTERNATIVE:${PN} = "whois dnsdomainname" | ||
| 117 | ALTERNATIVE_LINK_NAME[uucpd] = "${sbindir}/in.uucpd" | ||
| 118 | ALTERNATIVE_LINK_NAME[dnsdomainname] = "${base_bindir}/dnsdomainname" | ||
| 119 | |||
| 120 | ALTERNATIVE_PRIORITY_${PN}-logger = "60" | ||
| 121 | ALTERNATIVE:${PN}-logger = "logger" | ||
| 122 | ALTERNATIVE:${PN}-syslogd = "syslogd" | ||
| 123 | ALTERNATIVE_LINK_NAME[syslogd] = "${base_sbindir}/syslogd" | ||
| 124 | |||
| 125 | ALTERNATIVE:${PN}-ftp = "ftp" | ||
| 126 | ALTERNATIVE:${PN}-ftpd = "ftpd" | ||
| 127 | ALTERNATIVE:${PN}-tftp = "tftp" | ||
| 128 | ALTERNATIVE:${PN}-tftpd = "tftpd" | ||
| 129 | ALTERNATIVE_LINK_NAME[tftpd] = "${sbindir}/tftpd" | ||
| 130 | ALTERNATIVE_TARGET[tftpd] = "${sbindir}/in.tftpd" | ||
| 131 | |||
| 132 | ALTERNATIVE:${PN}-telnet = "telnet" | ||
| 133 | ALTERNATIVE:${PN}-telnetd = "telnetd" | ||
| 134 | ALTERNATIVE_LINK_NAME[telnetd] = "${sbindir}/telnetd" | ||
| 135 | ALTERNATIVE_TARGET[telnetd] = "${sbindir}/in.telnetd" | ||
| 136 | |||
| 137 | ALTERNATIVE:${PN}-inetd= "inetd" | ||
| 138 | ALTERNATIVE:${PN}-traceroute = "traceroute" | ||
| 139 | |||
| 140 | ALTERNATIVE:${PN}-hostname = "hostname" | ||
| 141 | ALTERNATIVE_LINK_NAME[hostname] = "${base_bindir}/hostname" | ||
| 142 | |||
| 143 | ALTERNATIVE:${PN}-doc = "hostname.1 dnsdomainname.1 logger.1 syslogd.8 \ | ||
| 144 | tftpd.8 tftp.1 telnetd.8" | ||
| 145 | ALTERNATIVE_LINK_NAME[hostname.1] = "${mandir}/man1/hostname.1" | ||
| 146 | ALTERNATIVE_LINK_NAME[dnsdomainname.1] = "${mandir}/man1/dnsdomainname.1" | ||
| 147 | ALTERNATIVE_LINK_NAME[logger.1] = "${mandir}/man1/logger.1" | ||
| 148 | ALTERNATIVE_LINK_NAME[syslogd.8] = "${mandir}/man8/syslogd.8" | ||
| 149 | ALTERNATIVE_LINK_NAME[telnetd.8] = "${mandir}/man8/telnetd.8" | ||
| 150 | ALTERNATIVE_LINK_NAME[tftpd.8] = "${mandir}/man8/tftpd.8" | ||
| 151 | ALTERNATIVE_LINK_NAME[tftp.1] = "${mandir}/man1/tftp.1" | ||
| 152 | |||
| 153 | ALTERNATIVE:${PN}-ifconfig = "ifconfig" | ||
| 154 | ALTERNATIVE_LINK_NAME[ifconfig] = "${base_sbindir}/ifconfig" | ||
| 155 | |||
| 156 | ALTERNATIVE:${PN}-ping = "ping" | ||
| 157 | ALTERNATIVE_LINK_NAME[ping] = "${base_bindir}/ping" | ||
| 158 | |||
| 159 | ALTERNATIVE:${PN}-ping6 = "${@bb.utils.filter('PACKAGECONFIG', 'ping6', d)}" | ||
| 160 | ALTERNATIVE_LINK_NAME[ping6] = "${base_bindir}/ping6" | ||
| 161 | |||
| 162 | |||
| 163 | FILES:${PN}-dbg += "${base_bindir}/.debug ${base_sbindir}/.debug ${bindir}/.debug ${sbindir}/.debug" | ||
| 164 | FILES:${PN}-ping = "${base_bindir}/ping.${BPN}" | ||
| 165 | FILES:${PN}-ping6 = "${base_bindir}/ping6.${BPN}" | ||
| 166 | FILES:${PN}-hostname = "${base_bindir}/hostname.${BPN}" | ||
| 167 | FILES:${PN}-ifconfig = "${base_sbindir}/ifconfig.${BPN}" | ||
| 168 | FILES:${PN}-traceroute = "${bindir}/traceroute.${BPN}" | ||
| 169 | FILES:${PN}-logger = "${bindir}/logger.${BPN}" | ||
| 170 | |||
| 171 | FILES:${PN}-syslogd = "${base_sbindir}/syslogd.${BPN}" | ||
| 172 | RCONFLICTS:${PN}-syslogd = "rsyslog busybox-syslog sysklogd syslog-ng" | ||
| 173 | |||
| 174 | FILES:${PN}-ftp = "${bindir}/ftp.${BPN}" | ||
| 175 | |||
| 176 | FILES:${PN}-tftp = "${bindir}/tftp.${BPN}" | ||
| 177 | FILES:${PN}-telnet = "${bindir}/telnet.${BPN}" | ||
| 178 | |||
| 179 | # We make us of RCONFLICTS / RPROVIDES here rather than using the normal | ||
| 180 | # alternatives method as this leads to packaging QA issues when using | ||
| 181 | # musl as that library does not provide what these applications need to | ||
| 182 | # build. | ||
| 183 | FILES:${PN}-rsh = "${bindir}/rsh ${bindir}/rlogin ${bindir}/rexec ${bindir}/rcp" | ||
| 184 | RCONFLICTS:${PN}-rsh += "netkit-rsh-client" | ||
| 185 | RPROVIDES:${PN}-rsh = "rsh" | ||
| 186 | |||
| 187 | FILES:${PN}-rshd = "${sbindir}/in.rshd ${sbindir}/in.rlogind ${sbindir}/in.rexecd \ | ||
| 188 | ${sysconfdir}/xinetd.d/rsh ${sysconfdir}/xinetd.d/rlogin ${sysconfdir}/xinetd.d/rexec" | ||
| 189 | FILES:${PN}-rshd-dbg = "${sbindir}/.debug/in.rshd ${sbindir}/.debug/in.rlogind ${sbindir}/.debug/in.rexecd" | ||
| 190 | RDEPENDS:${PN}-rshd += "xinetd tcp-wrappers" | ||
| 191 | RCONFLICTS:${PN}-rshd += "netkit-rshd-server" | ||
| 192 | RPROVIDES:${PN}-rshd = "rshd" | ||
| 193 | |||
| 194 | FILES:${PN}-ftpd = "${bindir}/ftpd.${BPN}" | ||
| 195 | FILES:${PN}-ftpd-dbg = "${bindir}/.debug/ftpd.${BPN}" | ||
| 196 | RDEPENDS:${PN}-ftpd += "xinetd" | ||
| 197 | |||
| 198 | FILES:${PN}-tftpd = "${sbindir}/in.tftpd ${sysconfdir}/xinetd.d/tftpd" | ||
| 199 | FILES:${PN}-tftpd-dbg = "${sbindir}/.debug/in.tftpd" | ||
| 200 | RCONFLICTS:${PN}-tftpd += "netkit-tftpd" | ||
| 201 | RDEPENDS:${PN}-tftpd += "xinetd" | ||
| 202 | |||
| 203 | FILES:${PN}-telnetd = "${sbindir}/in.telnetd ${sysconfdir}/xinetd.d/telnet" | ||
| 204 | FILES:${PN}-telnetd-dbg = "${sbindir}/.debug/in.telnetd" | ||
| 205 | RCONFLICTS:${PN}-telnetd += "netkit-telnet" | ||
| 206 | RPROVIDES:${PN}-telnetd = "telnetd" | ||
| 207 | RDEPENDS:${PN}-telnetd += "xinetd" | ||
| 208 | |||
| 209 | FILES:${PN}-inetd = "${bindir}/inetd.${BPN}" | ||
| 210 | |||
| 211 | RDEPENDS:${PN} = "xinetd" | ||
