IA64: Move NPTL public headers to sysdeps/ia64/nptl/.
[platform/upstream/glibc.git] / posix / tst-rfc3484-3.c
1 #include <stdbool.h>
2 #include <stdio.h>
3 #include <ifaddrs.h>
4 #include <stdint.h>
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
13
14 void
15 attribute_hidden
16 __check_pf (bool *p1, bool *p2, struct in6addrinfo **in6ai, size_t *in6ailen)
17 {
18   *p1 = *p2 = true;
19   *in6ai = NULL;
20   *in6ailen = 0;
21 }
22
23 void
24 attribute_hidden
25 __free_in6ai (struct in6addrinfo *ai)
26 {
27 }
28
29 void
30 attribute_hidden
31 __check_native (uint32_t a1_index, int *a1_native,
32                 uint32_t a2_index, int *a2_native)
33 {
34 }
35
36 int
37 attribute_hidden
38 __idna_to_ascii_lz (const char *input, char **output, int flags)
39 {
40   return 0;
41 }
42
43 int
44 attribute_hidden
45 __idna_to_unicode_lzlz (const char *input, char **output, int flags)
46 {
47   *output = NULL;
48   return 0;
49 }
50
51 void
52 attribute_hidden
53 _res_hconf_init (void)
54 {
55 }
56
57 #undef  USE_NSCD
58 #include "../sysdeps/posix/getaddrinfo.c"
59
60 service_user *__nss_hosts_database attribute_hidden;
61
62
63 /* This is the beginning of the real test code.  The above defines
64    (among other things) the function rfc3484_sort.  */
65
66
67 #if __BYTE_ORDER == __BIG_ENDIAN
68 # define h(n) n
69 #else
70 # define h(n) __bswap_constant_32 (n)
71 #endif
72
73 struct sockaddr_in addrs[] =
74 {
75   { .sin_family = AF_INET, .sin_addr = { h (0xa0a86d1d) } },
76   { .sin_family = AF_INET, .sin_addr = { h (0xa0a85d03) } },
77   { .sin_family = AF_INET, .sin_addr = { h (0xa0a82c3d) } },
78   { .sin_family = AF_INET, .sin_addr = { h (0xa0a86002) } },
79   { .sin_family = AF_INET, .sin_addr = { h (0xa0a802f3) } },
80   { .sin_family = AF_INET, .sin_addr = { h (0xa0a80810) } },
81   { .sin_family = AF_INET, .sin_addr = { h (0xa0a85e02) } },
82   { .sin_family = AF_INET, .sin_addr = { h (0xac162311) } },
83   { .sin_family = AF_INET, .sin_addr = { h (0x0a324572) } }
84 };
85 #define naddrs (sizeof (addrs) / sizeof (addrs[0]))
86 static struct addrinfo ais[naddrs];
87 static struct sort_result results[naddrs];
88 static size_t order[naddrs];
89
90 static const int expected[naddrs] =
91   {
92     8, 0, 1, 2, 3, 4, 5, 6, 7
93   };
94
95 static const struct scopeentry new_scopes[] =
96   {
97     { { { 169, 254, 0, 0 } }, h (0xffff0000), 2 },
98     { { { 127, 0, 0, 0 } }, h (0xff000000), 2 },
99     { { { 10, 0, 0, 0 } }, h (0xff000000), 5 },
100     { { { 192, 168, 0, 0 } }, h(0xffff0000), 5 },
101     { { { 0, 0, 0, 0 } }, h (0x00000000), 14 }
102   };
103
104
105 ssize_t
106 __getline (char **lineptr, size_t *n, FILE *s)
107 {
108   *lineptr = NULL;
109   *n = 0;
110   return 0;
111 }
112
113
114 static int
115 do_test (void)
116 {
117   labels = default_labels;
118   precedence = default_precedence;
119   scopes= new_scopes;
120
121   struct sockaddr_in so;
122   so.sin_family = AF_INET;
123   so.sin_addr.s_addr = h (0x0aa85f19);
124   /* Clear the rest of the structure to avoid warnings.  */
125   memset (so.sin_zero, '\0', sizeof (so.sin_zero));
126
127   for (int i = 0; i < naddrs; ++i)
128     {
129       ais[i].ai_family = AF_INET;
130       ais[i].ai_addr = (struct sockaddr *) &addrs[i];
131       results[i].dest_addr = &ais[i];
132       results[i].got_source_addr = true;
133       memcpy(&results[i].source_addr, &so, sizeof (so));
134       results[i].source_addr_len = sizeof (so);
135       results[i].source_addr_flags = 0;
136       results[i].prefixlen = 8;
137       results[i].index = 0;
138
139       order[i] = i;
140     }
141
142   struct sort_result_combo combo = { .results = results, .nresults = naddrs };
143   qsort_r (order, naddrs, sizeof (order[0]), rfc3484_sort, &combo);
144
145   int result = 0;
146   for (int i = 0; i < naddrs; ++i)
147     {
148       struct in_addr addr = ((struct sockaddr_in *) (results[order[i]].dest_addr->ai_addr))->sin_addr;
149
150       int here = memcmp (&addr, &addrs[expected[i]].sin_addr,
151                          sizeof (struct in_addr));
152       printf ("[%d] = %s: %s\n", i, inet_ntoa (addr), here ? "FAIL" : "OK");
153       result |= here;
154     }
155
156   return result;
157 }
158
159 #define TEST_FUNCTION do_test ()
160 #include "../test-skeleton.c"