4 * Copyright (c) 2016 Red Hat, Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
22 #include "io/dns-resolver.h"
23 #include "qapi/clone-visitor.h"
24 #include "qemu/sockets.h"
25 #include "qapi/error.h"
26 #include "qemu/cutils.h"
28 #ifndef AI_NUMERICSERV
29 # define AI_NUMERICSERV 0
32 static QIODNSResolver
*instance
;
33 static GOnce instance_init
= G_ONCE_INIT
;
35 static gpointer
qio_dns_resolve_init_instance(gpointer unused G_GNUC_UNUSED
)
37 instance
= QIO_DNS_RESOLVER(object_new(TYPE_QIO_DNS_RESOLVER
));
41 QIODNSResolver
*qio_dns_resolver_get_instance(void)
43 g_once(&instance_init
, qio_dns_resolve_init_instance
, NULL
);
47 static int qio_dns_resolver_lookup_sync_inet(QIODNSResolver
*resolver
,
50 SocketAddress
***addrs
,
53 struct addrinfo ai
, *res
, *e
;
54 InetSocketAddress
*iaddr
= &addr
->u
.inet
;
56 char uaddr
[INET6_ADDRSTRLEN
+ 1];
65 memset(&ai
, 0, sizeof(ai
));
66 ai
.ai_flags
= AI_PASSIVE
;
67 if (iaddr
->has_numeric
&& iaddr
->numeric
) {
68 ai
.ai_flags
|= AI_NUMERICHOST
| AI_NUMERICSERV
;
70 ai
.ai_family
= inet_ai_family_from_address(iaddr
, &err
);
71 ai
.ai_socktype
= SOCK_STREAM
;
74 error_propagate(errp
, err
);
78 if (iaddr
->host
== NULL
) {
79 error_setg(errp
, "host not specified");
82 if (iaddr
->port
!= NULL
) {
83 pstrcpy(port
, sizeof(port
), iaddr
->port
);
88 rc
= getaddrinfo(strlen(iaddr
->host
) ? iaddr
->host
: NULL
,
89 strlen(port
) ? port
: NULL
, &ai
, &res
);
91 error_setg(errp
, "address resolution failed for %s:%s: %s",
92 iaddr
->host
, port
, gai_strerror(rc
));
96 for (e
= res
; e
!= NULL
; e
= e
->ai_next
) {
100 *addrs
= g_new0(SocketAddress
*, *naddrs
);
102 /* create socket + bind */
103 for (i
= 0, e
= res
; e
!= NULL
; i
++, e
= e
->ai_next
) {
104 SocketAddress
*newaddr
= g_new0(SocketAddress
, 1);
106 newaddr
->type
= SOCKET_ADDRESS_TYPE_INET
;
108 getnameinfo((struct sockaddr
*)e
->ai_addr
, e
->ai_addrlen
,
109 uaddr
, INET6_ADDRSTRLEN
, uport
, 32,
110 NI_NUMERICHOST
| NI_NUMERICSERV
);
112 newaddr
->u
.inet
= (InetSocketAddress
){
113 .host
= g_strdup(uaddr
),
114 .port
= g_strdup(uport
),
117 .has_to
= iaddr
->has_to
,
123 (*addrs
)[i
] = newaddr
;
130 static int qio_dns_resolver_lookup_sync_nop(QIODNSResolver
*resolver
,
133 SocketAddress
***addrs
,
137 *addrs
= g_new0(SocketAddress
*, 1);
138 (*addrs
)[0] = QAPI_CLONE(SocketAddress
, addr
);
144 int qio_dns_resolver_lookup_sync(QIODNSResolver
*resolver
,
147 SocketAddress
***addrs
,
150 switch (addr
->type
) {
151 case SOCKET_ADDRESS_TYPE_INET
:
152 return qio_dns_resolver_lookup_sync_inet(resolver
,
158 case SOCKET_ADDRESS_TYPE_UNIX
:
159 case SOCKET_ADDRESS_TYPE_VSOCK
:
160 case SOCKET_ADDRESS_TYPE_FD
:
161 return qio_dns_resolver_lookup_sync_nop(resolver
,
173 struct QIODNSResolverLookupData
{
175 SocketAddress
**addrs
;
180 static void qio_dns_resolver_lookup_data_free(gpointer opaque
)
182 struct QIODNSResolverLookupData
*data
= opaque
;
185 qapi_free_SocketAddress(data
->addr
);
186 for (i
= 0; i
< data
->naddrs
; i
++) {
187 qapi_free_SocketAddress(data
->addrs
[i
]);
195 static void qio_dns_resolver_lookup_worker(QIOTask
*task
,
198 QIODNSResolver
*resolver
= QIO_DNS_RESOLVER(qio_task_get_source(task
));
199 struct QIODNSResolverLookupData
*data
= opaque
;
202 qio_dns_resolver_lookup_sync(resolver
,
208 qio_task_set_error(task
, err
);
210 qio_task_set_result_pointer(task
, opaque
, NULL
);
213 object_unref(OBJECT(resolver
));
217 void qio_dns_resolver_lookup_async(QIODNSResolver
*resolver
,
221 GDestroyNotify notify
)
224 struct QIODNSResolverLookupData
*data
=
225 g_new0(struct QIODNSResolverLookupData
, 1);
227 data
->addr
= QAPI_CLONE(SocketAddress
, addr
);
229 task
= qio_task_new(OBJECT(resolver
), func
, opaque
, notify
);
231 qio_task_run_in_thread(task
,
232 qio_dns_resolver_lookup_worker
,
234 qio_dns_resolver_lookup_data_free
);
238 void qio_dns_resolver_lookup_result(QIODNSResolver
*resolver
,
241 SocketAddress
***addrs
)
243 struct QIODNSResolverLookupData
*data
=
244 qio_task_get_result_pointer(task
);
253 *naddrs
= data
->naddrs
;
254 *addrs
= g_new0(SocketAddress
*, data
->naddrs
);
255 for (i
= 0; i
< data
->naddrs
; i
++) {
256 (*addrs
)[i
] = QAPI_CLONE(SocketAddress
, data
->addrs
[i
]);
261 static const TypeInfo qio_dns_resolver_info
= {
262 .parent
= TYPE_OBJECT
,
263 .name
= TYPE_QIO_DNS_RESOLVER
,
264 .instance_size
= sizeof(QIODNSResolver
),
265 .class_size
= sizeof(QIODNSResolverClass
),
269 static void qio_dns_resolver_register_types(void)
271 type_register_static(&qio_dns_resolver_info
);
275 type_init(qio_dns_resolver_register_types
);