diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2018-02-01 20:02:08 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-02-06 11:06:30 +0000 |
commit | 58ce11215d2928f517c5f96fc85cd0aa6ed9b862 (patch) | |
tree | 4f96f7d501ab0fa4888e6b2b352c8c7cb262558d /meta/recipes-extended/iputils/files | |
parent | 5f45587b4d9eb763b10da44b3b36971ab809a1cc (diff) | |
download | poky-58ce11215d2928f517c5f96fc85cd0aa6ed9b862.tar.gz |
iputils: update to 20161105
We've been using obsolete upstream URI for quite a while; meanwhile
a lot of development has happened
Drop all the patches: they are either changing the code that has been refactored,
or are backports.
Add a new musl fix patch from gentoo.
ping6 and tracepath6 variants have been folded into standard versions.
(From OE-Core rev: 5997981fa2c22609a88b8cbb595dbf7758b2f7c2)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/iputils/files')
7 files changed, 93 insertions, 261 deletions
diff --git a/meta/recipes-extended/iputils/files/0001-Fix-build-on-MUSL.patch b/meta/recipes-extended/iputils/files/0001-Fix-build-on-MUSL.patch new file mode 100644 index 0000000000..c86dafc038 --- /dev/null +++ b/meta/recipes-extended/iputils/files/0001-Fix-build-on-MUSL.patch | |||
@@ -0,0 +1,93 @@ | |||
1 | From c6c5966d9fae27bc2f0a34ab59b999555111bd2d Mon Sep 17 00:00:00 2001 | ||
2 | From: Aric Belsito <lluixhi@gmail.com> | ||
3 | Date: Sun, 29 Oct 2017 23:17:03 +0100 | ||
4 | Subject: [PATCH] Fix build on MUSL | ||
5 | |||
6 | Add missing AI_IDN and NI_IDN declarations. | ||
7 | |||
8 | Bug: https://bugs.gentoo.org/503914 | ||
9 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> | ||
10 | --- | ||
11 | arping.c | 7 +++++++ | ||
12 | ping.h | 11 +++++++++++ | ||
13 | tracepath.c | 8 ++++++++ | ||
14 | traceroute6.c | 4 ++++ | ||
15 | 4 files changed, 30 insertions(+) | ||
16 | |||
17 | diff --git a/arping.c b/arping.c | ||
18 | index 1a3f40b..531d29d 100644 | ||
19 | --- a/arping.c | ||
20 | +++ b/arping.c | ||
21 | @@ -45,6 +45,13 @@ struct sysfs_devattr_values; | ||
22 | #ifdef USE_IDN | ||
23 | #include <idna.h> | ||
24 | #include <locale.h> | ||
25 | + | ||
26 | +#ifndef AI_IDN | ||
27 | +#define AI_IDN 0x0040 | ||
28 | +#endif | ||
29 | +#ifndef AI_CANONIDN | ||
30 | +#define AI_CANONIDN 0x0080 | ||
31 | +#endif | ||
32 | #endif | ||
33 | |||
34 | #include "SNAPSHOT.h" | ||
35 | diff --git a/ping.h b/ping.h | ||
36 | index 749f3ff..227315f 100644 | ||
37 | --- a/ping.h | ||
38 | +++ b/ping.h | ||
39 | @@ -38,6 +38,17 @@ | ||
40 | #include <locale.h> | ||
41 | #include <idna.h> | ||
42 | #include <stringprep.h> | ||
43 | + | ||
44 | +#ifndef AI_IDN | ||
45 | +#define AI_IDN 0x0040 | ||
46 | +#endif | ||
47 | +#ifndef AI_CANONIDN | ||
48 | +#define AI_CANONIDN 0x0080 | ||
49 | +#endif | ||
50 | +#ifndef NI_IDN | ||
51 | +#define NI_IDN 32 | ||
52 | +#endif | ||
53 | + | ||
54 | #define getaddrinfo_flags (AI_CANONNAME | AI_IDN | AI_CANONIDN) | ||
55 | #define getnameinfo_flags NI_IDN | ||
56 | #else | ||
57 | diff --git a/tracepath.c b/tracepath.c | ||
58 | index 74a829d..dcec5b9 100644 | ||
59 | --- a/tracepath.c | ||
60 | +++ b/tracepath.c | ||
61 | @@ -30,6 +30,14 @@ | ||
62 | #ifdef USE_IDN | ||
63 | #include <idna.h> | ||
64 | #include <locale.h> | ||
65 | + | ||
66 | +#ifndef AI_IDN | ||
67 | +#define AI_IDN 0x0040 | ||
68 | +#endif | ||
69 | +#ifndef NI_IDN | ||
70 | +#define NI_IDN 32 | ||
71 | +#endif | ||
72 | + | ||
73 | #define getnameinfo_flags NI_IDN | ||
74 | #else | ||
75 | #define getnameinfo_flags 0 | ||
76 | diff --git a/traceroute6.c b/traceroute6.c | ||
77 | index 48fc5c5..8d1eebf 100644 | ||
78 | --- a/traceroute6.c | ||
79 | +++ b/traceroute6.c | ||
80 | @@ -251,6 +251,10 @@ | ||
81 | #include <idna.h> | ||
82 | #include <locale.h> | ||
83 | |||
84 | +#ifndef NI_IDN | ||
85 | +#define NI_IDN 32 | ||
86 | +#endif | ||
87 | + | ||
88 | #define getnameinfo_flags NI_IDN | ||
89 | #else | ||
90 | #define getnameinfo_flags 0 | ||
91 | -- | ||
92 | 2.15.1 | ||
93 | |||
diff --git a/meta/recipes-extended/iputils/files/0001-Fix-header-inclusion-for-musl.patch b/meta/recipes-extended/iputils/files/0001-Fix-header-inclusion-for-musl.patch deleted file mode 100644 index 20ef07e44a..0000000000 --- a/meta/recipes-extended/iputils/files/0001-Fix-header-inclusion-for-musl.patch +++ /dev/null | |||
@@ -1,92 +0,0 @@ | |||
1 | From be0bb81d72fea4d20da74f4f2236aa145684f332 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Wed, 6 Jan 2016 14:14:22 -0800 | ||
4 | Subject: [PATCH] Fix header inclusion for musl | ||
5 | |||
6 | Fix errors e.g. | ||
7 | |||
8 | In file included from tracepath.c:17:0: | ||
9 | /usr/include/linux/errqueue.h:33:18: | ||
10 | error: array type has incomplete element type 'struct timespec' | ||
11 | struct timespec ts[3]; | ||
12 | ^ | ||
13 | tracepath.c: In function 'main': | ||
14 | tracepath.c:329:16: error: 'INT_MAX' undeclared (first use in this | ||
15 | function) | ||
16 | overhead, INT_MAX); | ||
17 | ^ | ||
18 | tracepath.c:329:16: note: each undeclared identifier is reported only | ||
19 | once for each function it appears in | ||
20 | Makefile:131: recipe for target 'tracepath.o' failed | ||
21 | make: *** [tracepath.o] Error 1 | ||
22 | |||
23 | ping_common.c: In function 'main_loop': | ||
24 | ping_common.c:756:15: error: 'HZ' undeclared (first use in this | ||
25 | function) | ||
26 | if (1000 % HZ == 0 ? next <= 1000 / HZ : (next < INT_MAX / HZ && | ||
27 | next * HZ <= 1000)) { | ||
28 | |||
29 | protocols/timed.h is not needed and is absent in musl | ||
30 | |||
31 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
32 | --- | ||
33 | Upstream-Status: Pending | ||
34 | |||
35 | clockdiff.c | 1 - | ||
36 | ping_common.c | 1 + | ||
37 | tracepath.c | 2 ++ | ||
38 | tracepath6.c | 1 + | ||
39 | 4 files changed, 4 insertions(+), 1 deletion(-) | ||
40 | |||
41 | diff --git a/clockdiff.c b/clockdiff.c | ||
42 | index 7c1ea1b..1d6341e 100644 | ||
43 | --- a/clockdiff.c | ||
44 | +++ b/clockdiff.c | ||
45 | @@ -14,7 +14,6 @@ | ||
46 | #include <netinet/ip.h> | ||
47 | #include <netinet/ip_icmp.h> | ||
48 | #define TSPTYPES | ||
49 | -#include <protocols/timed.h> | ||
50 | #include <fcntl.h> | ||
51 | #include <netdb.h> | ||
52 | #include <arpa/inet.h> | ||
53 | diff --git a/ping_common.c b/ping_common.c | ||
54 | index 7f82851..3ce699d 100644 | ||
55 | --- a/ping_common.c | ||
56 | +++ b/ping_common.c | ||
57 | @@ -2,6 +2,7 @@ | ||
58 | #include <ctype.h> | ||
59 | #include <sched.h> | ||
60 | #include <math.h> | ||
61 | +#include <asm-generic/param.h> | ||
62 | |||
63 | int options; | ||
64 | |||
65 | diff --git a/tracepath.c b/tracepath.c | ||
66 | index 89e6d16..c9d6ddd 100644 | ||
67 | --- a/tracepath.c | ||
68 | +++ b/tracepath.c | ||
69 | @@ -12,6 +12,8 @@ | ||
70 | #include <stdio.h> | ||
71 | #include <stdlib.h> | ||
72 | #include <unistd.h> | ||
73 | +#include <limits.h> | ||
74 | +#include <time.h> | ||
75 | #include <sys/socket.h> | ||
76 | #include <linux/types.h> | ||
77 | #include <linux/errqueue.h> | ||
78 | diff --git a/tracepath6.c b/tracepath6.c | ||
79 | index 126fadf..9d5745c 100644 | ||
80 | --- a/tracepath6.c | ||
81 | +++ b/tracepath6.c | ||
82 | @@ -12,6 +12,7 @@ | ||
83 | #include <stdio.h> | ||
84 | #include <stdlib.h> | ||
85 | #include <unistd.h> | ||
86 | +#include <limits.h> | ||
87 | #include <sys/socket.h> | ||
88 | #include <netinet/in.h> | ||
89 | #include <netinet/icmp6.h> | ||
90 | -- | ||
91 | 2.6.4 | ||
92 | |||
diff --git a/meta/recipes-extended/iputils/files/0001-Intialize-struct-elements-by-name.patch b/meta/recipes-extended/iputils/files/0001-Intialize-struct-elements-by-name.patch deleted file mode 100644 index 6da01dc616..0000000000 --- a/meta/recipes-extended/iputils/files/0001-Intialize-struct-elements-by-name.patch +++ /dev/null | |||
@@ -1,52 +0,0 @@ | |||
1 | From 000629f74908a2a95f6104444c77ad93cf40d62d Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Wed, 13 Jan 2016 08:50:50 +0000 | ||
4 | Subject: [PATCH] Intialize struct elements by name | ||
5 | |||
6 | makes it portable across glibc and musl | ||
7 | |||
8 | Fixes errors | ||
9 | |||
10 | | ping.c: In function 'send_probe': | ||
11 | | ping.c:735:19: warning: initialization makes integer from pointer | ||
12 | without a cast [-Wint-conversion] | ||
13 | | &iov, 1, &cmsg, 0, 0 }; | ||
14 | | ^ | ||
15 | | ping.c:735:19: note: (near initialization for 'm.__pad1') | ||
16 | | ping.c:735:19: error: initializer element is not computable at load | ||
17 | time | ||
18 | | ping.c:735:19: note: (near initialization for 'm.__pad1') | ||
19 | | make: *** [ping.o] Error 1 | ||
20 | |||
21 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
22 | --- | ||
23 | Upstream-Status: Pending | ||
24 | |||
25 | ping.c | 11 +++++++++-- | ||
26 | 1 file changed, 9 insertions(+), 2 deletions(-) | ||
27 | |||
28 | diff --git a/ping.c b/ping.c | ||
29 | index 4989760..e67f381 100644 | ||
30 | --- a/ping.c | ||
31 | +++ b/ping.c | ||
32 | @@ -731,8 +731,15 @@ int send_probe() | ||
33 | |||
34 | do { | ||
35 | static struct iovec iov = {outpack, 0}; | ||
36 | - static struct msghdr m = { &whereto, sizeof(whereto), | ||
37 | - &iov, 1, &cmsg, 0, 0 }; | ||
38 | + static struct msghdr m = { | ||
39 | + .msg_name = &whereto, | ||
40 | + .msg_namelen = sizeof(whereto), | ||
41 | + .msg_iov = &iov, | ||
42 | + .msg_iovlen = 1, | ||
43 | + .msg_control = &cmsg, | ||
44 | + .msg_controllen = 0, | ||
45 | + .msg_flags= 0, | ||
46 | + }; | ||
47 | m.msg_controllen = cmsg_len; | ||
48 | iov.iov_len = cc; | ||
49 | |||
50 | -- | ||
51 | 2.7.0 | ||
52 | |||
diff --git a/meta/recipes-extended/iputils/files/arping-fix-arping-hang-if-SIGALRM-is-blocked.patch b/meta/recipes-extended/iputils/files/arping-fix-arping-hang-if-SIGALRM-is-blocked.patch deleted file mode 100644 index 7b56276b39..0000000000 --- a/meta/recipes-extended/iputils/files/arping-fix-arping-hang-if-SIGALRM-is-blocked.patch +++ /dev/null | |||
@@ -1,44 +0,0 @@ | |||
1 | arping: fix arping hang if SIGALRM is blocked | ||
2 | |||
3 | Unblock SIGALRM so that the previously called alarm() can prevent | ||
4 | recvfrom() from blocking forever in case the inherited procmask is | ||
5 | blocking SIGALRM and no packet is received. | ||
6 | |||
7 | Upstream-Status: Backport | ||
8 | |||
9 | Reported-by: Rui Prior <rprior@dcc.fc.up.pt> | ||
10 | RH-Bugzilla: #1085971 | ||
11 | Signed-off-by: Jan Synacek <jsynacek@redhat.com> | ||
12 | Signed-off-by: Zhenbo Gao <zhenbo.gao@windriver.com> | ||
13 | |||
14 | diff --git a/arping.c.orig b/arping.c | ||
15 | index 35408c1..2098159 100644 | ||
16 | --- a/arping.c.orig | ||
17 | +++ b/arping.c | ||
18 | @@ -1215,16 +1215,22 @@ main(int argc, char **argv) | ||
19 | socklen_t alen = sizeof(from); | ||
20 | int cc; | ||
21 | |||
22 | + sigemptyset(&sset); | ||
23 | + sigaddset(&sset, SIGALRM); | ||
24 | + sigaddset(&sset, SIGINT); | ||
25 | + /* Unblock SIGALRM so that the previously called alarm() | ||
26 | + * can prevent recvfrom from blocking forever in case the | ||
27 | + * inherited procmask is blocking SIGALRM and no packet | ||
28 | + * is received. */ | ||
29 | + sigprocmask(SIG_UNBLOCK, &sset, &osset); | ||
30 | + | ||
31 | if ((cc = recvfrom(s, packet, sizeof(packet), 0, | ||
32 | (struct sockaddr *)&from, &alen)) < 0) { | ||
33 | perror("arping: recvfrom"); | ||
34 | continue; | ||
35 | } | ||
36 | |||
37 | - sigemptyset(&sset); | ||
38 | - sigaddset(&sset, SIGALRM); | ||
39 | - sigaddset(&sset, SIGINT); | ||
40 | - sigprocmask(SIG_BLOCK, &sset, &osset); | ||
41 | + sigprocmask(SIG_BLOCK, &sset, NULL); | ||
42 | recv_pack(packet, cc, (struct sockaddr_ll *)&from); | ||
43 | sigprocmask(SIG_SETMASK, &osset, NULL); | ||
44 | } | ||
diff --git a/meta/recipes-extended/iputils/files/debian/targets.diff b/meta/recipes-extended/iputils/files/debian/targets.diff deleted file mode 100644 index 2cb5576c62..0000000000 --- a/meta/recipes-extended/iputils/files/debian/targets.diff +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | Upstream-Status: Inappropriate [disable feature] | ||
2 | |||
3 | Index: iputils-s20121221/Makefile | ||
4 | =================================================================== | ||
5 | --- iputils-s20121221.orig/Makefile | ||
6 | +++ iputils-s20121221/Makefile | ||
7 | @@ -106,7 +106,7 @@ endif | ||
8 | endif | ||
9 | |||
10 | # ------------------------------------- | ||
11 | -IPV4_TARGETS=tracepath ping clockdiff rdisc arping tftpd rarpd | ||
12 | +IPV4_TARGETS=tracepath ping clockdiff arping | ||
13 | IPV6_TARGETS=tracepath6 traceroute6 ping6 | ||
14 | TARGETS=$(IPV4_TARGETS) $(IPV6_TARGETS) | ||
15 | |||
diff --git a/meta/recipes-extended/iputils/files/debian/use_gethostbyname2.diff b/meta/recipes-extended/iputils/files/debian/use_gethostbyname2.diff deleted file mode 100644 index d3b18868c0..0000000000 --- a/meta/recipes-extended/iputils/files/debian/use_gethostbyname2.diff +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | Upstream-Status: Pending [from other distro Debian] | ||
2 | |||
3 | Index: iputils-s20121221/tracepath.c | ||
4 | =================================================================== | ||
5 | --- iputils-s20121221.orig/tracepath.c | ||
6 | +++ iputils-s20121221/tracepath.c | ||
7 | @@ -370,9 +370,9 @@ main(int argc, char **argv) | ||
8 | } | ||
9 | #endif | ||
10 | |||
11 | - he = gethostbyname(p); | ||
12 | + he = gethostbyname2(argv[0], AF_INET); | ||
13 | if (he == NULL) { | ||
14 | - herror("gethostbyname"); | ||
15 | + herror("gethostbyname2"); | ||
16 | exit(1); | ||
17 | } | ||
18 | |||
19 | Index: iputils-s20121221/ping.c | ||
20 | =================================================================== | ||
21 | --- iputils-s20121221.orig/ping.c | ||
22 | +++ iputils-s20121221/ping.c | ||
23 | @@ -279,7 +279,7 @@ main(int argc, char **argv) | ||
24 | #else | ||
25 | idn = target; | ||
26 | #endif | ||
27 | - hp = gethostbyname(idn); | ||
28 | + hp = gethostbyname2(idn, AF_INET); | ||
29 | if (!hp) { | ||
30 | fprintf(stderr, "ping: unknown host %s\n", target); | ||
31 | exit(2); | ||
diff --git a/meta/recipes-extended/iputils/files/nsgmls-path-fix.patch b/meta/recipes-extended/iputils/files/nsgmls-path-fix.patch deleted file mode 100644 index 92bf946f2a..0000000000 --- a/meta/recipes-extended/iputils/files/nsgmls-path-fix.patch +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | Fix nsgmls path issue | ||
2 | |||
3 | Upstream-Status: Pending | ||
4 | |||
5 | Signed-off-by: Zhai Edwin <edwin.zhai@intel.com> | ||
6 | |||
7 | Index: iputils-s20101006/doc/Makefile | ||
8 | =================================================================== | ||
9 | --- iputils-s20101006.orig/doc/Makefile 2011-09-13 20:42:27.000000000 +0800 | ||
10 | +++ iputils-s20101006/doc/Makefile 2011-09-13 21:01:52.000000000 +0800 | ||
11 | @@ -27,10 +27,15 @@ | ||
12 | # docbook2man produces utterly ugly output and I did not find | ||
13 | # any way to customize this but hacking backend perl script a little. | ||
14 | # Well, hence... | ||
15 | +# nsgmls seems append path to search directory according to the sysid path. | ||
16 | +# e.g. if input ../index.db, it would search $search_directory/../ rather than | ||
17 | +# $search_directory, which leads searching failure. Fixing nsgmls probably | ||
18 | +# introduce some side effects, so use this ugly hack: running nsgmls in current | ||
19 | +# directory, and running docbook2man in tmp directory. | ||
20 | |||
21 | $(MANFILES): index.db | ||
22 | @-mkdir tmp.db2man | ||
23 | - @set -e; cd tmp.db2man; nsgmls ../$< | sgmlspl ../docbook2man-spec.pl ; mv $@ .. | ||
24 | + @set -e; nsgmls $< >tmp.db2man/output; cd tmp.db2man; cat output | sgmlspl ../docbook2man-spec.pl ; mv $@ .. | ||
25 | @-rm -rf tmp.db2man | ||
26 | |||
27 | clean: | ||