5 /* Internal definitions used in the libc code. */
6 #define __getservbyname_r getservbyname_r
7 #define __socket socket
8 #define __getsockname getsockname
9 #define __inet_aton inet_aton
10 #define __gethostbyaddr_r gethostbyaddr_r
11 #define __gethostbyname2_r gethostbyname2_r
15 __check_pf (bool *p1
, bool *p2
, struct in6addrinfo
**in6ai
, size_t *in6ailen
)
24 __check_native (uint32_t a1_index
, int *a1_native
,
25 uint32_t a2_index
, int *a2_native
)
31 __idna_to_ascii_lz (const char *input
, char **output
, int flags
)
38 __idna_to_unicode_lzlz (const char *input
, char **output
, int flags
)
46 _res_hconf_init (void)
50 #include "../sysdeps/posix/getaddrinfo.c"
52 service_user
*__nss_hosts_database attribute_hidden
;
55 /* This is the beginning of the real test code. The above defines
56 (among other things) the function rfc3484_sort. */
59 #if __BYTE_ORDER == __BIG_ENDIAN
62 # define h(n) __bswap_constant_32 (n)
65 struct sockaddr_in addrs
[] =
67 { .sin_family
= AF_INET
, .sin_addr
= { h (0xa0a86d1d) } },
68 { .sin_family
= AF_INET
, .sin_addr
= { h (0xa0a85d03) } },
69 { .sin_family
= AF_INET
, .sin_addr
= { h (0xa0a82c3d) } },
70 { .sin_family
= AF_INET
, .sin_addr
= { h (0xa0a86002) } },
71 { .sin_family
= AF_INET
, .sin_addr
= { h (0xa0a802f3) } },
72 { .sin_family
= AF_INET
, .sin_addr
= { h (0xa0a80810) } },
73 { .sin_family
= AF_INET
, .sin_addr
= { h (0xa0a85e02) } },
74 { .sin_family
= AF_INET
, .sin_addr
= { h (0xac162311) } },
75 { .sin_family
= AF_INET
, .sin_addr
= { h (0x0a324572) } }
77 #define naddrs (sizeof (addrs) / sizeof (addrs[0]))
78 static struct addrinfo ais
[naddrs
];
79 static struct sort_result results
[naddrs
];
80 static size_t order
[naddrs
];
82 static const int expected
[naddrs
] =
84 8, 0, 1, 2, 3, 4, 5, 6, 7
87 static const struct scopeentry new_scopes
[] =
89 { { { 169, 254, 0, 0 } }, h (0xffff0000), 2 },
90 { { { 127, 0, 0, 0 } }, h (0xff000000), 2 },
91 { { { 10, 0, 0, 0 } }, h (0xff000000), 5 },
92 { { { 192, 168, 0, 0 } }, h(0xffff0000), 5 },
93 { { { 0, 0, 0, 0 } }, h (0x00000000), 14 }
98 __getline (char **lineptr
, size_t *n
, FILE *s
)
109 labels
= default_labels
;
110 precedence
= default_precedence
;
113 struct sockaddr_in so
;
114 so
.sin_family
= AF_INET
;
115 so
.sin_addr
.s_addr
= h (0x0aa85f19);
116 /* Clear the rest of the structure to avoid warnings. */
117 memset (so
.sin_zero
, '\0', sizeof (so
.sin_zero
));
119 for (int i
= 0; i
< naddrs
; ++i
)
121 ais
[i
].ai_family
= AF_INET
;
122 ais
[i
].ai_addr
= (struct sockaddr
*) &addrs
[i
];
123 results
[i
].dest_addr
= &ais
[i
];
124 results
[i
].got_source_addr
= true;
125 memcpy(&results
[i
].source_addr
, &so
, sizeof (so
));
126 results
[i
].source_addr_len
= sizeof (so
);
127 results
[i
].source_addr_flags
= 0;
128 results
[i
].prefixlen
= 8;
129 results
[i
].index
= 0;
134 struct sort_result_combo combo
= { .results
= results
, .nresults
= naddrs
};
135 qsort_r (order
, naddrs
, sizeof (order
[0]), rfc3484_sort
, &combo
);
138 for (int i
= 0; i
< naddrs
; ++i
)
140 struct in_addr addr
= ((struct sockaddr_in
*) (results
[order
[i
]].dest_addr
->ai_addr
))->sin_addr
;
142 int here
= memcmp (&addr
, &addrs
[expected
[i
]].sin_addr
,
143 sizeof (struct in_addr
));
144 printf ("[%d] = %s: %s\n", i
, inet_ntoa (addr
), here
? "FAIL" : "OK");
151 #define TEST_FUNCTION do_test ()
152 #include "../test-skeleton.c"