-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresolve_host.c
104 lines (93 loc) · 2.52 KB
/
resolve_host.c
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
* resolving DNS hostname routine
*
* Copyright (C) 2010 Jeff Layton ([email protected])
* Copyright (C) 2010 Igor Druzhinin ([email protected])
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif /* HAVE_CONFIG_H */
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netdb.h>
#include "mount.h"
#include "util.h"
#include "resolve_host.h"
/*
* resolve hostname to comma-separated list of address(es)
*/
int resolve_host(const char *host, char *addrstr)
{
int rc;
/* 10 for max width of decimal scopeid */
char tmpbuf[NI_MAXHOST + 1 + 10 + 1];
const char *ipaddr;
size_t len;
struct addrinfo *addrlist, *addr;
struct sockaddr_in *sin;
struct sockaddr_in6 *sin6;
rc = getaddrinfo(host, NULL, NULL, &addrlist);
if (rc != 0)
return EX_USAGE;
addr = addrlist;
while (addr) {
/* skip non-TCP entries */
if (addr->ai_socktype != SOCK_STREAM ||
addr->ai_protocol != IPPROTO_TCP) {
addr = addr->ai_next;
continue;
}
switch (addr->ai_addr->sa_family) {
case AF_INET6:
sin6 = (struct sockaddr_in6 *)addr->ai_addr;
ipaddr = inet_ntop(AF_INET6, &sin6->sin6_addr, tmpbuf,
sizeof(tmpbuf));
if (!ipaddr) {
rc = EX_SYSERR;
goto resolve_host_out;
}
if (sin6->sin6_scope_id) {
len = strnlen(tmpbuf, sizeof(tmpbuf));
snprintf(tmpbuf + len, sizeof(tmpbuf) - len, "%%%u",
sin6->sin6_scope_id);
}
break;
case AF_INET:
sin = (struct sockaddr_in *)addr->ai_addr;
ipaddr = inet_ntop(AF_INET, &sin->sin_addr, tmpbuf,
sizeof(tmpbuf));
if (!ipaddr) {
rc = EX_SYSERR;
goto resolve_host_out;
}
break;
default:
addr = addr->ai_next;
continue;
}
if (addr == addrlist)
*addrstr = '\0';
else
strlcat(addrstr, ",", MAX_ADDR_LIST_LEN);
strlcat(addrstr, tmpbuf, MAX_ADDR_LIST_LEN);
addr = addr->ai_next;
}
resolve_host_out:
freeaddrinfo(addrlist);
return rc;
}