1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/* Since the reentrant gethost functions take a char * buffer,
* we have to make sure they internally do not assume alignment.
* The actual return values are not relevant. If the test fails,
* it'll be due to an alignment exception which means the test
* app is killed by the kernel.
*/
#include <errno.h>
#include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <arpa/inet.h>
#include <sys/socket.h>
int main(int argc, char *argv[])
{
size_t i;
char buf[1024];
in_addr_t addr;
addr = inet_addr("127.0.0.1");
for (i = 0; i < sizeof(size_t) * 2; ++i) {
struct hostent hent, *hentres;
int ret, herr;
printf("Testing misalignment of %2zi bytes: ", i);
memset(&hent, 0x00, sizeof(hent));
ret = gethostent_r(&hent, buf + i, sizeof(buf) - i, &hentres, &herr);
printf("%sgethostent_r() ", (ret ? "!!!" : ""));
memset(&hent, 0x00, sizeof(hent));
ret = gethostbyname_r("localhost", &hent, buf + i, sizeof(buf) - i, &hentres, &herr);
printf("%sgethostbyname_r() ", (ret ? "!!!" : ""));
memset(&hent, 0x00, sizeof(hent));
ret = gethostbyname2_r("localhost", AF_INET, &hent, buf + i, sizeof(buf) - i, &hentres, &herr);
printf("%sgethostbyname2_r() ", (ret ? "!!!" : ""));
memset(&hent, 0x00, sizeof(hent));
ret = gethostbyaddr_r(&addr, sizeof(addr), AF_INET, &hent, buf + i, sizeof(buf) - i, &hentres, &herr);
printf("%sgethostbyaddr_r() ", (ret ? "!!!" : ""));
puts("OK!");
}
return 0;
}
|