]> git.ipfire.org Git - thirdparty/glibc.git/blame - posix/tst-rfc3484-2.c
glob: pacify fuzzer for mempcpy
[thirdparty/glibc.git] / posix / tst-rfc3484-2.c
CommitLineData
a2387282
UD
1#include <stdbool.h>
2#include <stdio.h>
4c5bc828 3#include <ifaddrs.h>
e054f494 4#include <stdint.h>
a2387282
UD
5
6/* Internal definitions used in the libc code. */
7#define __getservbyname_r getservbyname_r
8#define __socket socket
9#define __getsockname getsockname
10#define __inet_aton inet_aton
11#define __gethostbyaddr_r gethostbyaddr_r
12#define __gethostbyname2_r gethostbyname2_r
bef8fd60 13#define __qsort_r qsort_r
a2387282
UD
14
15void
16attribute_hidden
86e05449 17__check_pf (bool *p1, bool *p2, struct in6addrinfo **in6ai, size_t *in6ailen)
a2387282
UD
18{
19 *p1 = *p2 = true;
86e05449
UD
20 *in6ai = NULL;
21 *in6ailen = 0;
a2387282 22}
b194db79 23
fadb59f8
UD
24void
25attribute_hidden
26__free_in6ai (struct in6addrinfo *ai)
27{
28}
29
773e79b3
UD
30void
31attribute_hidden
32__check_native (uint32_t a1_index, int *a1_native,
33 uint32_t a2_index, int *a2_native)
34{
35}
b194db79 36
a2387282 37int
b194db79 38attribute_hidden
a2387282
UD
39__idna_to_ascii_lz (const char *input, char **output, int flags)
40{
41 return 0;
42}
b194db79 43
a2387282 44int
b194db79 45attribute_hidden
a2387282
UD
46__idna_to_unicode_lzlz (const char *input, char **output, int flags)
47{
ec1e04de 48 *output = NULL;
a2387282
UD
49 return 0;
50}
51
b194db79
UD
52void
53attribute_hidden
54_res_hconf_init (void)
55{
56}
57
59a629f1 58#undef USE_NSCD
a2387282
UD
59#include "../sysdeps/posix/getaddrinfo.c"
60
a2387282
UD
61
62/* This is the beginning of the real test code. The above defines
63 (among other things) the function rfc3484_sort. */
64
65
66#if __BYTE_ORDER == __BIG_ENDIAN
67# define h(n) n
68#else
69# define h(n) __bswap_constant_32 (n)
70#endif
71
72
77dd4c3b
UD
73ssize_t
74__getline (char **lineptr, size_t *n, FILE *s)
75{
76 *lineptr = NULL;
77 *n = 0;
78 return 0;
79}
80
81
a2387282
UD
82static int
83do_test (void)
84{
77dd4c3b
UD
85 labels = default_labels;
86 precedence = default_precedence;
ee72b971 87 scopes = default_scopes;
77dd4c3b 88
a2387282
UD
89 struct sockaddr_in so1;
90 so1.sin_family = AF_INET;
91 so1.sin_addr.s_addr = h (0xc0a85f19);
666a9871
UD
92 /* Clear the rest of the structure to avoid warnings. */
93 memset (so1.sin_zero, '\0', sizeof (so1.sin_zero));
a2387282
UD
94
95 struct sockaddr_in sa1;
96 sa1.sin_family = AF_INET;
97 sa1.sin_addr.s_addr = h (0xe0a85f19);
98
99 struct addrinfo ai1;
100 ai1.ai_family = AF_INET;
101 ai1.ai_addr = (struct sockaddr *) &sa1;
102
103 struct sockaddr_in6 so2;
104 so2.sin6_family = AF_INET6;
105 so2.sin6_addr.s6_addr32[0] = h (0xfec01234);
106 so2.sin6_addr.s6_addr32[1] = 1;
107 so2.sin6_addr.s6_addr32[2] = 1;
108 so2.sin6_addr.s6_addr32[3] = 1;
109
110 struct sockaddr_in6 sa2;
111 sa2.sin6_family = AF_INET6;
112 sa2.sin6_addr.s6_addr32[0] = h (0x07d10001);
113 sa2.sin6_addr.s6_addr32[1] = 1;
114 sa2.sin6_addr.s6_addr32[2] = 1;
115 sa2.sin6_addr.s6_addr32[3] = 1;
116
117 struct addrinfo ai2;
118 ai2.ai_family = AF_INET6;
119 ai2.ai_addr = (struct sockaddr *) &sa2;
120
121
122 struct sort_result results[2];
0efd1956 123 size_t order[2];
a2387282
UD
124
125 results[0].dest_addr = &ai1;
126 results[0].got_source_addr = true;
127 results[0].source_addr_len = sizeof (so1);
bdefc84c 128 results[0].source_addr_flags = 0;
bd63f380 129 results[0].prefixlen = 16;
773e79b3 130 results[0].index = 0;
a2387282 131 memcpy (&results[0].source_addr, &so1, sizeof (so1));
0efd1956 132 order[0] = 0;
a2387282
UD
133
134 results[1].dest_addr = &ai2;
135 results[1].got_source_addr = true;
136 results[1].source_addr_len = sizeof (so2);
bdefc84c 137 results[1].source_addr_flags = 0;
bd63f380 138 results[1].prefixlen = 16;
773e79b3 139 results[1].index = 0;
a2387282 140 memcpy (&results[1].source_addr, &so2, sizeof (so2));
0efd1956 141 order[1] = 1;
a2387282
UD
142
143
773e79b3 144 struct sort_result_combo combo = { .results = results, .nresults = 2 };
0efd1956 145 qsort_r (order, 2, sizeof (order[0]), rfc3484_sort, &combo);
a2387282
UD
146
147 int result = 0;
0efd1956 148 if (results[order[0]].dest_addr->ai_family == AF_INET6)
a2387282
UD
149 {
150 puts ("wrong order in first test");
151 result |= 1;
152 }
153
154
155 /* And again, this time with the reverse starting order. */
156 results[1].dest_addr = &ai1;
157 results[1].got_source_addr = true;
158 results[1].source_addr_len = sizeof (so1);
bdefc84c 159 results[1].source_addr_flags = 0;
bd63f380 160 results[1].prefixlen = 16;
773e79b3 161 results[1].index = 0;
a2387282 162 memcpy (&results[1].source_addr, &so1, sizeof (so1));
0efd1956 163 order[1] = 1;
a2387282
UD
164
165 results[0].dest_addr = &ai2;
166 results[0].got_source_addr = true;
167 results[0].source_addr_len = sizeof (so2);
bdefc84c 168 results[0].source_addr_flags = 0;
bd63f380 169 results[0].prefixlen = 16;
773e79b3 170 results[0].index = 0;
a2387282 171 memcpy (&results[0].source_addr, &so2, sizeof (so2));
0efd1956 172 order[0] = 0;
a2387282
UD
173
174
0efd1956 175 qsort_r (order, 2, sizeof (order[0]), rfc3484_sort, &combo);
a2387282 176
0efd1956 177 if (results[order[0]].dest_addr->ai_family == AF_INET6)
a2387282
UD
178 {
179 puts ("wrong order in second test");
180 result |= 1;
181 }
182
183 return result;
184}
185
186#define TEST_FUNCTION do_test ()
187#include "../test-skeleton.c"