]>
Commit | Line | Data |
---|---|---|
305b0eb2 AL |
1 | /* |
2 | * inet and unix socket functions for qemu | |
3 | * | |
4 | * (c) 2008 Gerd Hoffmann <[email protected]> | |
5 | * | |
6 | * This program is free software; you can redistribute it and/or modify | |
7 | * it under the terms of the GNU General Public License as published by | |
8 | * the Free Software Foundation; under version 2 of the License. | |
9 | * | |
10 | * This program is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | * GNU General Public License for more details. | |
e6d91ab6 PB |
14 | * |
15 | * Contributions after 2012-01-13 are licensed under the terms of the | |
16 | * GNU GPL, version 2 or (at your option) any later version. | |
305b0eb2 | 17 | */ |
d247d25f AL |
18 | #include <stdio.h> |
19 | #include <stdlib.h> | |
20 | #include <string.h> | |
21 | #include <ctype.h> | |
22 | #include <errno.h> | |
23 | #include <unistd.h> | |
24 | ||
83c9089e | 25 | #include "monitor/monitor.h" |
1de7afc9 | 26 | #include "qemu/sockets.h" |
1de7afc9 | 27 | #include "qemu/main-loop.h" |
d247d25f AL |
28 | |
29 | #ifndef AI_ADDRCONFIG | |
30 | # define AI_ADDRCONFIG 0 | |
31 | #endif | |
32 | ||
e62be888 KW |
33 | /* used temporarily until all users are converted to QemuOpts */ |
34 | QemuOptsList socket_optslist = { | |
35 | .name = "socket", | |
36 | .head = QTAILQ_HEAD_INITIALIZER(socket_optslist.head), | |
2af2bf67 GH |
37 | .desc = { |
38 | { | |
39 | .name = "path", | |
40 | .type = QEMU_OPT_STRING, | |
f4c94c7c GH |
41 | },{ |
42 | .name = "host", | |
43 | .type = QEMU_OPT_STRING, | |
44 | },{ | |
45 | .name = "port", | |
46 | .type = QEMU_OPT_STRING, | |
47 | },{ | |
48 | .name = "to", | |
49 | .type = QEMU_OPT_NUMBER, | |
50 | },{ | |
51 | .name = "ipv4", | |
52 | .type = QEMU_OPT_BOOL, | |
53 | },{ | |
54 | .name = "ipv6", | |
55 | .type = QEMU_OPT_BOOL, | |
2af2bf67 GH |
56 | }, |
57 | { /* end if list */ } | |
58 | }, | |
59 | }; | |
60 | ||
d247d25f AL |
61 | static int inet_getport(struct addrinfo *e) |
62 | { | |
63 | struct sockaddr_in *i4; | |
64 | struct sockaddr_in6 *i6; | |
65 | ||
66 | switch (e->ai_family) { | |
67 | case PF_INET6: | |
68 | i6 = (void*)e->ai_addr; | |
69 | return ntohs(i6->sin6_port); | |
70 | case PF_INET: | |
71 | i4 = (void*)e->ai_addr; | |
72 | return ntohs(i4->sin_port); | |
73 | default: | |
74 | return 0; | |
75 | } | |
76 | } | |
77 | ||
78 | static void inet_setport(struct addrinfo *e, int port) | |
79 | { | |
80 | struct sockaddr_in *i4; | |
81 | struct sockaddr_in6 *i6; | |
82 | ||
83 | switch (e->ai_family) { | |
84 | case PF_INET6: | |
85 | i6 = (void*)e->ai_addr; | |
86 | i6->sin6_port = htons(port); | |
87 | break; | |
88 | case PF_INET: | |
89 | i4 = (void*)e->ai_addr; | |
90 | i4->sin_port = htons(port); | |
91 | break; | |
92 | } | |
93 | } | |
94 | ||
a589569f WX |
95 | NetworkAddressFamily inet_netfamily(int family) |
96 | { | |
97 | switch (family) { | |
98 | case PF_INET6: return NETWORK_ADDRESS_FAMILY_IPV6; | |
99 | case PF_INET: return NETWORK_ADDRESS_FAMILY_IPV4; | |
100 | case PF_UNIX: return NETWORK_ADDRESS_FAMILY_UNIX; | |
101 | } | |
102 | return NETWORK_ADDRESS_FAMILY_UNKNOWN; | |
103 | } | |
104 | ||
029409e5 | 105 | int inet_listen_opts(QemuOpts *opts, int port_offset, Error **errp) |
d247d25f AL |
106 | { |
107 | struct addrinfo ai,*res,*e; | |
e5bc776f | 108 | const char *addr; |
d247d25f AL |
109 | char port[33]; |
110 | char uaddr[INET6_ADDRSTRLEN+1]; | |
111 | char uport[33]; | |
877691f9 | 112 | int slisten, rc, to, port_min, port_max, p; |
d247d25f AL |
113 | |
114 | memset(&ai,0, sizeof(ai)); | |
115 | ai.ai_flags = AI_PASSIVE | AI_ADDRCONFIG; | |
116 | ai.ai_family = PF_UNSPEC; | |
e5bc776f | 117 | ai.ai_socktype = SOCK_STREAM; |
d247d25f | 118 | |
e23a22e6 JO |
119 | if ((qemu_opt_get(opts, "host") == NULL) || |
120 | (qemu_opt_get(opts, "port") == NULL)) { | |
a12fb8ad | 121 | error_setg(errp, "host and/or port not specified"); |
e5bc776f | 122 | return -1; |
d247d25f | 123 | } |
e5bc776f GH |
124 | pstrcpy(port, sizeof(port), qemu_opt_get(opts, "port")); |
125 | addr = qemu_opt_get(opts, "host"); | |
d247d25f | 126 | |
e5bc776f GH |
127 | to = qemu_opt_get_number(opts, "to", 0); |
128 | if (qemu_opt_get_bool(opts, "ipv4", 0)) | |
d247d25f | 129 | ai.ai_family = PF_INET; |
e5bc776f | 130 | if (qemu_opt_get_bool(opts, "ipv6", 0)) |
d247d25f AL |
131 | ai.ai_family = PF_INET6; |
132 | ||
133 | /* lookup */ | |
8bc89127 GH |
134 | if (port_offset) { |
135 | unsigned long long baseport; | |
136 | if (parse_uint_full(port, &baseport, 10) < 0) { | |
137 | error_setg(errp, "can't convert to a number: %s", port); | |
138 | return -1; | |
139 | } | |
140 | if (baseport > 65535 || | |
141 | baseport + port_offset > 65535) { | |
142 | error_setg(errp, "port %s out of range", port); | |
143 | return -1; | |
144 | } | |
145 | snprintf(port, sizeof(port), "%d", (int)baseport + port_offset); | |
146 | } | |
d247d25f AL |
147 | rc = getaddrinfo(strlen(addr) ? addr : NULL, port, &ai, &res); |
148 | if (rc != 0) { | |
a12fb8ad PB |
149 | error_setg(errp, "address resolution failed for %s:%s: %s", addr, port, |
150 | gai_strerror(rc)); | |
d247d25f AL |
151 | return -1; |
152 | } | |
d247d25f AL |
153 | |
154 | /* create socket + bind */ | |
155 | for (e = res; e != NULL; e = e->ai_next) { | |
39b6efc8 VS |
156 | getnameinfo((struct sockaddr*)e->ai_addr,e->ai_addrlen, |
157 | uaddr,INET6_ADDRSTRLEN,uport,32, | |
158 | NI_NUMERICHOST | NI_NUMERICSERV); | |
40ff6d7e | 159 | slisten = qemu_socket(e->ai_family, e->ai_socktype, e->ai_protocol); |
39b6efc8 | 160 | if (slisten < 0) { |
029409e5 | 161 | if (!e->ai_next) { |
235256a2 | 162 | error_setg_errno(errp, errno, "Failed to create socket"); |
029409e5 | 163 | } |
39b6efc8 VS |
164 | continue; |
165 | } | |
d247d25f | 166 | |
04fd1c78 | 167 | socket_set_fast_reuse(slisten); |
d247d25f AL |
168 | #ifdef IPV6_V6ONLY |
169 | if (e->ai_family == PF_INET6) { | |
170 | /* listen on both ipv4 and ipv6 */ | |
f9b5426f | 171 | const int off = 0; |
9957fc7f SW |
172 | qemu_setsockopt(slisten, IPPROTO_IPV6, IPV6_V6ONLY, &off, |
173 | sizeof(off)); | |
d247d25f AL |
174 | } |
175 | #endif | |
176 | ||
877691f9 MA |
177 | port_min = inet_getport(e); |
178 | port_max = to ? to + port_offset : port_min; | |
179 | for (p = port_min; p <= port_max; p++) { | |
180 | inet_setport(e, p); | |
d247d25f | 181 | if (bind(slisten, e->ai_addr, e->ai_addrlen) == 0) { |
d247d25f AL |
182 | goto listen; |
183 | } | |
877691f9 | 184 | if (p == port_max) { |
029409e5 | 185 | if (!e->ai_next) { |
235256a2 | 186 | error_setg_errno(errp, errno, "Failed to bind socket"); |
029409e5 | 187 | } |
d247d25f | 188 | } |
d247d25f AL |
189 | } |
190 | closesocket(slisten); | |
191 | } | |
d247d25f AL |
192 | freeaddrinfo(res); |
193 | return -1; | |
194 | ||
195 | listen: | |
196 | if (listen(slisten,1) != 0) { | |
235256a2 | 197 | error_setg_errno(errp, errno, "Failed to listen on socket"); |
d247d25f | 198 | closesocket(slisten); |
39b6efc8 | 199 | freeaddrinfo(res); |
d247d25f AL |
200 | return -1; |
201 | } | |
f43e47db | 202 | qemu_opt_set(opts, "host", uaddr, &error_abort); |
62b3de69 MA |
203 | qemu_opt_set_number(opts, "port", inet_getport(e) - port_offset, |
204 | &error_abort); | |
205 | qemu_opt_set_bool(opts, "ipv6", e->ai_family == PF_INET6, | |
206 | &error_abort); | |
207 | qemu_opt_set_bool(opts, "ipv4", e->ai_family != PF_INET6, | |
208 | &error_abort); | |
d247d25f AL |
209 | freeaddrinfo(res); |
210 | return slisten; | |
211 | } | |
212 | ||
05bc1d8a MT |
213 | #ifdef _WIN32 |
214 | #define QEMU_SOCKET_RC_INPROGRESS(rc) \ | |
215 | ((rc) == -EINPROGRESS || (rc) == -EWOULDBLOCK || (rc) == -WSAEALREADY) | |
216 | #else | |
217 | #define QEMU_SOCKET_RC_INPROGRESS(rc) \ | |
218 | ((rc) == -EINPROGRESS) | |
219 | #endif | |
220 | ||
233aa5c2 OW |
221 | /* Struct to store connect state for non blocking connect */ |
222 | typedef struct ConnectState { | |
223 | int fd; | |
224 | struct addrinfo *addr_list; | |
225 | struct addrinfo *current_addr; | |
226 | NonBlockingConnectHandler *callback; | |
227 | void *opaque; | |
228 | } ConnectState; | |
229 | ||
230 | static int inet_connect_addr(struct addrinfo *addr, bool *in_progress, | |
11663b55 | 231 | ConnectState *connect_state, Error **errp); |
233aa5c2 OW |
232 | |
233 | static void wait_for_connect(void *opaque) | |
d247d25f | 234 | { |
233aa5c2 OW |
235 | ConnectState *s = opaque; |
236 | int val = 0, rc = 0; | |
237 | socklen_t valsize = sizeof(val); | |
238 | bool in_progress; | |
51795029 | 239 | Error *err = NULL; |
233aa5c2 OW |
240 | |
241 | qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL); | |
242 | ||
243 | do { | |
9957fc7f | 244 | rc = qemu_getsockopt(s->fd, SOL_SOCKET, SO_ERROR, &val, &valsize); |
233aa5c2 OW |
245 | } while (rc == -1 && socket_error() == EINTR); |
246 | ||
247 | /* update rc to contain error */ | |
248 | if (!rc && val) { | |
249 | rc = -1; | |
51795029 | 250 | errno = val; |
233aa5c2 OW |
251 | } |
252 | ||
253 | /* connect error */ | |
254 | if (rc < 0) { | |
51795029 | 255 | error_setg_errno(&err, errno, "Error connecting to socket"); |
233aa5c2 OW |
256 | closesocket(s->fd); |
257 | s->fd = rc; | |
258 | } | |
259 | ||
260 | /* try to connect to the next address on the list */ | |
1fc05adf PB |
261 | if (s->current_addr) { |
262 | while (s->current_addr->ai_next != NULL && s->fd < 0) { | |
263 | s->current_addr = s->current_addr->ai_next; | |
11663b55 | 264 | s->fd = inet_connect_addr(s->current_addr, &in_progress, s, NULL); |
51795029 CM |
265 | if (s->fd < 0) { |
266 | error_free(err); | |
267 | err = NULL; | |
268 | error_setg_errno(&err, errno, "Unable to start socket connect"); | |
269 | } | |
1fc05adf PB |
270 | /* connect in progress */ |
271 | if (in_progress) { | |
51795029 | 272 | goto out; |
1fc05adf | 273 | } |
233aa5c2 | 274 | } |
1fc05adf PB |
275 | |
276 | freeaddrinfo(s->addr_list); | |
233aa5c2 | 277 | } |
05bc1d8a | 278 | |
233aa5c2 | 279 | if (s->callback) { |
51795029 | 280 | s->callback(s->fd, err, s->opaque); |
05bc1d8a | 281 | } |
233aa5c2 | 282 | g_free(s); |
51795029 CM |
283 | out: |
284 | error_free(err); | |
233aa5c2 OW |
285 | } |
286 | ||
287 | static int inet_connect_addr(struct addrinfo *addr, bool *in_progress, | |
11663b55 | 288 | ConnectState *connect_state, Error **errp) |
233aa5c2 OW |
289 | { |
290 | int sock, rc; | |
291 | ||
292 | *in_progress = false; | |
05bc1d8a MT |
293 | |
294 | sock = qemu_socket(addr->ai_family, addr->ai_socktype, addr->ai_protocol); | |
295 | if (sock < 0) { | |
235256a2 | 296 | error_setg_errno(errp, errno, "Failed to create socket"); |
05bc1d8a MT |
297 | return -1; |
298 | } | |
04fd1c78 | 299 | socket_set_fast_reuse(sock); |
233aa5c2 | 300 | if (connect_state != NULL) { |
f9e8cacc | 301 | qemu_set_nonblock(sock); |
05bc1d8a MT |
302 | } |
303 | /* connect to peer */ | |
304 | do { | |
305 | rc = 0; | |
306 | if (connect(sock, addr->ai_addr, addr->ai_addrlen) < 0) { | |
307 | rc = -socket_error(); | |
308 | } | |
309 | } while (rc == -EINTR); | |
310 | ||
233aa5c2 OW |
311 | if (connect_state != NULL && QEMU_SOCKET_RC_INPROGRESS(rc)) { |
312 | connect_state->fd = sock; | |
313 | qemu_set_fd_handler2(sock, NULL, NULL, wait_for_connect, | |
314 | connect_state); | |
315 | *in_progress = true; | |
05bc1d8a | 316 | } else if (rc < 0) { |
235256a2 | 317 | error_setg_errno(errp, errno, "Failed to connect socket"); |
05bc1d8a MT |
318 | closesocket(sock); |
319 | return -1; | |
320 | } | |
321 | return sock; | |
322 | } | |
323 | ||
324 | static struct addrinfo *inet_parse_connect_opts(QemuOpts *opts, Error **errp) | |
325 | { | |
326 | struct addrinfo ai, *res; | |
327 | int rc; | |
f4c94c7c GH |
328 | const char *addr; |
329 | const char *port; | |
d247d25f | 330 | |
05bc1d8a | 331 | memset(&ai, 0, sizeof(ai)); |
233aa5c2 | 332 | |
d247d25f AL |
333 | ai.ai_flags = AI_CANONNAME | AI_ADDRCONFIG; |
334 | ai.ai_family = PF_UNSPEC; | |
f4c94c7c | 335 | ai.ai_socktype = SOCK_STREAM; |
d247d25f | 336 | |
f4c94c7c GH |
337 | addr = qemu_opt_get(opts, "host"); |
338 | port = qemu_opt_get(opts, "port"); | |
339 | if (addr == NULL || port == NULL) { | |
a12fb8ad | 340 | error_setg(errp, "host and/or port not specified"); |
05bc1d8a | 341 | return NULL; |
d247d25f AL |
342 | } |
343 | ||
05bc1d8a | 344 | if (qemu_opt_get_bool(opts, "ipv4", 0)) { |
d247d25f | 345 | ai.ai_family = PF_INET; |
05bc1d8a MT |
346 | } |
347 | if (qemu_opt_get_bool(opts, "ipv6", 0)) { | |
d247d25f | 348 | ai.ai_family = PF_INET6; |
05bc1d8a | 349 | } |
d247d25f AL |
350 | |
351 | /* lookup */ | |
05bc1d8a MT |
352 | rc = getaddrinfo(addr, port, &ai, &res); |
353 | if (rc != 0) { | |
a12fb8ad PB |
354 | error_setg(errp, "address resolution failed for %s:%s: %s", addr, port, |
355 | gai_strerror(rc)); | |
05bc1d8a MT |
356 | return NULL; |
357 | } | |
358 | return res; | |
359 | } | |
360 | ||
5db5f44c OW |
361 | /** |
362 | * Create a socket and connect it to an address. | |
363 | * | |
364 | * @opts: QEMU options, recognized parameters strings "host" and "port", | |
365 | * bools "ipv4" and "ipv6". | |
5db5f44c | 366 | * @errp: set on error |
233aa5c2 OW |
367 | * @callback: callback function for non-blocking connect |
368 | * @opaque: opaque for callback function | |
5db5f44c OW |
369 | * |
370 | * Returns: -1 on error, file descriptor on success. | |
233aa5c2 OW |
371 | * |
372 | * If @callback is non-null, the connect is non-blocking. If this | |
373 | * function succeeds, callback will be called when the connection | |
374 | * completes, with the file descriptor on success, or -1 on error. | |
5db5f44c | 375 | */ |
233aa5c2 OW |
376 | int inet_connect_opts(QemuOpts *opts, Error **errp, |
377 | NonBlockingConnectHandler *callback, void *opaque) | |
05bc1d8a | 378 | { |
3f9286b7 | 379 | Error *local_err = NULL; |
05bc1d8a MT |
380 | struct addrinfo *res, *e; |
381 | int sock = -1; | |
233aa5c2 OW |
382 | bool in_progress; |
383 | ConnectState *connect_state = NULL; | |
05bc1d8a MT |
384 | |
385 | res = inet_parse_connect_opts(opts, errp); | |
386 | if (!res) { | |
387 | return -1; | |
388 | } | |
389 | ||
233aa5c2 OW |
390 | if (callback != NULL) { |
391 | connect_state = g_malloc0(sizeof(*connect_state)); | |
392 | connect_state->addr_list = res; | |
393 | connect_state->callback = callback; | |
394 | connect_state->opaque = opaque; | |
d247d25f | 395 | } |
d247d25f AL |
396 | |
397 | for (e = res; e != NULL; e = e->ai_next) { | |
3f9286b7 MA |
398 | error_free(local_err); |
399 | local_err = NULL; | |
233aa5c2 OW |
400 | if (connect_state != NULL) { |
401 | connect_state->current_addr = e; | |
402 | } | |
3f9286b7 MA |
403 | sock = inet_connect_addr(e, &in_progress, connect_state, &local_err); |
404 | if (sock >= 0) { | |
05bc1d8a | 405 | break; |
a6ba35b3 | 406 | } |
d247d25f | 407 | } |
3f9286b7 MA |
408 | |
409 | if (sock < 0) { | |
410 | error_propagate(errp, local_err); | |
411 | } else if (in_progress) { | |
412 | /* wait_for_connect() will do the rest */ | |
413 | return sock; | |
414 | } else { | |
415 | if (callback) { | |
51795029 | 416 | callback(sock, NULL, opaque); |
3f9286b7 MA |
417 | } |
418 | } | |
233aa5c2 | 419 | g_free(connect_state); |
d247d25f | 420 | freeaddrinfo(res); |
05bc1d8a | 421 | return sock; |
d247d25f AL |
422 | } |
423 | ||
7fc4e63e | 424 | int inet_dgram_opts(QemuOpts *opts, Error **errp) |
7e1b35b4 GH |
425 | { |
426 | struct addrinfo ai, *peer = NULL, *local = NULL; | |
427 | const char *addr; | |
428 | const char *port; | |
7e1b35b4 GH |
429 | int sock = -1, rc; |
430 | ||
431 | /* lookup peer addr */ | |
432 | memset(&ai,0, sizeof(ai)); | |
433 | ai.ai_flags = AI_CANONNAME | AI_ADDRCONFIG; | |
434 | ai.ai_family = PF_UNSPEC; | |
435 | ai.ai_socktype = SOCK_DGRAM; | |
436 | ||
437 | addr = qemu_opt_get(opts, "host"); | |
438 | port = qemu_opt_get(opts, "port"); | |
439 | if (addr == NULL || strlen(addr) == 0) { | |
440 | addr = "localhost"; | |
441 | } | |
442 | if (port == NULL || strlen(port) == 0) { | |
4f085c82 | 443 | error_setg(errp, "remote port not specified"); |
7e1b35b4 GH |
444 | return -1; |
445 | } | |
446 | ||
447 | if (qemu_opt_get_bool(opts, "ipv4", 0)) | |
448 | ai.ai_family = PF_INET; | |
449 | if (qemu_opt_get_bool(opts, "ipv6", 0)) | |
450 | ai.ai_family = PF_INET6; | |
451 | ||
452 | if (0 != (rc = getaddrinfo(addr, port, &ai, &peer))) { | |
4f085c82 PB |
453 | error_setg(errp, "address resolution failed for %s:%s: %s", addr, port, |
454 | gai_strerror(rc)); | |
7e1b35b4 GH |
455 | return -1; |
456 | } | |
7e1b35b4 GH |
457 | |
458 | /* lookup local addr */ | |
459 | memset(&ai,0, sizeof(ai)); | |
460 | ai.ai_flags = AI_PASSIVE; | |
461 | ai.ai_family = peer->ai_family; | |
462 | ai.ai_socktype = SOCK_DGRAM; | |
463 | ||
464 | addr = qemu_opt_get(opts, "localaddr"); | |
465 | port = qemu_opt_get(opts, "localport"); | |
466 | if (addr == NULL || strlen(addr) == 0) { | |
467 | addr = NULL; | |
468 | } | |
469 | if (!port || strlen(port) == 0) | |
470 | port = "0"; | |
471 | ||
472 | if (0 != (rc = getaddrinfo(addr, port, &ai, &local))) { | |
4f085c82 PB |
473 | error_setg(errp, "address resolution failed for %s:%s: %s", addr, port, |
474 | gai_strerror(rc)); | |
39b38459 | 475 | goto err; |
7e1b35b4 | 476 | } |
7e1b35b4 GH |
477 | |
478 | /* create socket */ | |
40ff6d7e | 479 | sock = qemu_socket(peer->ai_family, peer->ai_socktype, peer->ai_protocol); |
7e1b35b4 | 480 | if (sock < 0) { |
235256a2 | 481 | error_setg_errno(errp, errno, "Failed to create socket"); |
7e1b35b4 GH |
482 | goto err; |
483 | } | |
04fd1c78 | 484 | socket_set_fast_reuse(sock); |
7e1b35b4 GH |
485 | |
486 | /* bind socket */ | |
7e1b35b4 | 487 | if (bind(sock, local->ai_addr, local->ai_addrlen) < 0) { |
235256a2 | 488 | error_setg_errno(errp, errno, "Failed to bind socket"); |
7e1b35b4 GH |
489 | goto err; |
490 | } | |
491 | ||
492 | /* connect to peer */ | |
7e1b35b4 | 493 | if (connect(sock,peer->ai_addr,peer->ai_addrlen) < 0) { |
235256a2 | 494 | error_setg_errno(errp, errno, "Failed to connect socket"); |
7e1b35b4 GH |
495 | goto err; |
496 | } | |
497 | ||
498 | freeaddrinfo(local); | |
499 | freeaddrinfo(peer); | |
500 | return sock; | |
501 | ||
502 | err: | |
503 | if (-1 != sock) | |
504 | closesocket(sock); | |
505 | if (local) | |
506 | freeaddrinfo(local); | |
507 | if (peer) | |
508 | freeaddrinfo(peer); | |
509 | return -1; | |
510 | } | |
511 | ||
f4c94c7c | 512 | /* compatibility wrapper */ |
f17c90be | 513 | InetSocketAddress *inet_parse(const char *str, Error **errp) |
f4c94c7c | 514 | { |
879e45c7 | 515 | InetSocketAddress *addr; |
f4c94c7c | 516 | const char *optstr, *h; |
55a10996 | 517 | char host[65]; |
f4c94c7c | 518 | char port[33]; |
879e45c7 | 519 | int to; |
f4c94c7c GH |
520 | int pos; |
521 | ||
879e45c7 PB |
522 | addr = g_new0(InetSocketAddress, 1); |
523 | ||
f4c94c7c GH |
524 | /* parse address */ |
525 | if (str[0] == ':') { | |
526 | /* no host given */ | |
879e45c7 PB |
527 | host[0] = '\0'; |
528 | if (1 != sscanf(str, ":%32[^,]%n", port, &pos)) { | |
2f002c43 | 529 | error_setg(errp, "error parsing port in address '%s'", str); |
879e45c7 | 530 | goto fail; |
f4c94c7c GH |
531 | } |
532 | } else if (str[0] == '[') { | |
533 | /* IPv6 addr */ | |
879e45c7 | 534 | if (2 != sscanf(str, "[%64[^]]]:%32[^,]%n", host, port, &pos)) { |
2f002c43 | 535 | error_setg(errp, "error parsing IPv6 address '%s'", str); |
879e45c7 | 536 | goto fail; |
f4c94c7c | 537 | } |
879e45c7 | 538 | addr->ipv6 = addr->has_ipv6 = true; |
f4c94c7c | 539 | } else { |
391b7b97 | 540 | /* hostname or IPv4 addr */ |
879e45c7 | 541 | if (2 != sscanf(str, "%64[^:]:%32[^,]%n", host, port, &pos)) { |
2f002c43 | 542 | error_setg(errp, "error parsing address '%s'", str); |
879e45c7 | 543 | goto fail; |
f4c94c7c | 544 | } |
391b7b97 JT |
545 | if (host[strspn(host, "0123456789.")] == '\0') { |
546 | addr->ipv4 = addr->has_ipv4 = true; | |
547 | } | |
f4c94c7c | 548 | } |
879e45c7 PB |
549 | |
550 | addr->host = g_strdup(host); | |
551 | addr->port = g_strdup(port); | |
f4c94c7c GH |
552 | |
553 | /* parse options */ | |
554 | optstr = str + pos; | |
555 | h = strstr(optstr, ",to="); | |
879e45c7 | 556 | if (h) { |
1ccbc285 AP |
557 | h += 4; |
558 | if (sscanf(h, "%d%n", &to, &pos) != 1 || | |
559 | (h[pos] != '\0' && h[pos] != ',')) { | |
879e45c7 PB |
560 | error_setg(errp, "error parsing to= argument"); |
561 | goto fail; | |
562 | } | |
563 | addr->has_to = true; | |
564 | addr->to = to; | |
565 | } | |
566 | if (strstr(optstr, ",ipv4")) { | |
567 | addr->ipv4 = addr->has_ipv4 = true; | |
568 | } | |
569 | if (strstr(optstr, ",ipv6")) { | |
570 | addr->ipv6 = addr->has_ipv6 = true; | |
571 | } | |
572 | return addr; | |
573 | ||
574 | fail: | |
575 | qapi_free_InetSocketAddress(addr); | |
576 | return NULL; | |
577 | } | |
578 | ||
f17c90be | 579 | static void inet_addr_to_opts(QemuOpts *opts, const InetSocketAddress *addr) |
879e45c7 PB |
580 | { |
581 | bool ipv4 = addr->ipv4 || !addr->has_ipv4; | |
582 | bool ipv6 = addr->ipv6 || !addr->has_ipv6; | |
583 | ||
584 | if (!ipv4 || !ipv6) { | |
cccb7967 MA |
585 | qemu_opt_set_bool(opts, "ipv4", ipv4, &error_abort); |
586 | qemu_opt_set_bool(opts, "ipv6", ipv6, &error_abort); | |
879e45c7 PB |
587 | } |
588 | if (addr->has_to) { | |
62b3de69 | 589 | qemu_opt_set_number(opts, "to", addr->to, &error_abort); |
879e45c7 | 590 | } |
f43e47db MA |
591 | qemu_opt_set(opts, "host", addr->host, &error_abort); |
592 | qemu_opt_set(opts, "port", addr->port, &error_abort); | |
f4c94c7c GH |
593 | } |
594 | ||
e5bc776f | 595 | int inet_listen(const char *str, char *ostr, int olen, |
029409e5 | 596 | int socktype, int port_offset, Error **errp) |
e5bc776f GH |
597 | { |
598 | QemuOpts *opts; | |
599 | char *optstr; | |
600 | int sock = -1; | |
879e45c7 | 601 | InetSocketAddress *addr; |
e5bc776f | 602 | |
879e45c7 PB |
603 | addr = inet_parse(str, errp); |
604 | if (addr != NULL) { | |
87ea75d5 | 605 | opts = qemu_opts_create(&socket_optslist, NULL, 0, &error_abort); |
879e45c7 PB |
606 | inet_addr_to_opts(opts, addr); |
607 | qapi_free_InetSocketAddress(addr); | |
029409e5 | 608 | sock = inet_listen_opts(opts, port_offset, errp); |
e5bc776f GH |
609 | if (sock != -1 && ostr) { |
610 | optstr = strchr(str, ','); | |
611 | if (qemu_opt_get_bool(opts, "ipv6", 0)) { | |
612 | snprintf(ostr, olen, "[%s]:%s%s", | |
613 | qemu_opt_get(opts, "host"), | |
614 | qemu_opt_get(opts, "port"), | |
615 | optstr ? optstr : ""); | |
616 | } else { | |
617 | snprintf(ostr, olen, "%s:%s%s", | |
618 | qemu_opt_get(opts, "host"), | |
619 | qemu_opt_get(opts, "port"), | |
620 | optstr ? optstr : ""); | |
621 | } | |
622 | } | |
879e45c7 | 623 | qemu_opts_del(opts); |
e5bc776f | 624 | } |
e5bc776f GH |
625 | return sock; |
626 | } | |
627 | ||
5db5f44c OW |
628 | /** |
629 | * Create a blocking socket and connect it to an address. | |
630 | * | |
631 | * @str: address string | |
632 | * @errp: set in case of an error | |
633 | * | |
634 | * Returns -1 in case of error, file descriptor on success | |
635 | **/ | |
636 | int inet_connect(const char *str, Error **errp) | |
f4c94c7c GH |
637 | { |
638 | QemuOpts *opts; | |
639 | int sock = -1; | |
879e45c7 | 640 | InetSocketAddress *addr; |
f4c94c7c | 641 | |
879e45c7 PB |
642 | addr = inet_parse(str, errp); |
643 | if (addr != NULL) { | |
87ea75d5 | 644 | opts = qemu_opts_create(&socket_optslist, NULL, 0, &error_abort); |
879e45c7 PB |
645 | inet_addr_to_opts(opts, addr); |
646 | qapi_free_InetSocketAddress(addr); | |
233aa5c2 | 647 | sock = inet_connect_opts(opts, errp, NULL, NULL); |
879e45c7 | 648 | qemu_opts_del(opts); |
5db5f44c | 649 | } |
5db5f44c OW |
650 | return sock; |
651 | } | |
652 | ||
653 | /** | |
654 | * Create a non-blocking socket and connect it to an address. | |
233aa5c2 OW |
655 | * Calls the callback function with fd in case of success or -1 in case of |
656 | * error. | |
5db5f44c OW |
657 | * |
658 | * @str: address string | |
233aa5c2 OW |
659 | * @callback: callback function that is called when connect completes, |
660 | * cannot be NULL. | |
661 | * @opaque: opaque for callback function | |
5db5f44c OW |
662 | * @errp: set in case of an error |
663 | * | |
233aa5c2 | 664 | * Returns: -1 on immediate error, file descriptor on success. |
5db5f44c | 665 | **/ |
233aa5c2 OW |
666 | int inet_nonblocking_connect(const char *str, |
667 | NonBlockingConnectHandler *callback, | |
668 | void *opaque, Error **errp) | |
5db5f44c OW |
669 | { |
670 | QemuOpts *opts; | |
671 | int sock = -1; | |
879e45c7 | 672 | InetSocketAddress *addr; |
5db5f44c | 673 | |
233aa5c2 OW |
674 | g_assert(callback != NULL); |
675 | ||
879e45c7 PB |
676 | addr = inet_parse(str, errp); |
677 | if (addr != NULL) { | |
87ea75d5 | 678 | opts = qemu_opts_create(&socket_optslist, NULL, 0, &error_abort); |
879e45c7 PB |
679 | inet_addr_to_opts(opts, addr); |
680 | qapi_free_InetSocketAddress(addr); | |
233aa5c2 | 681 | sock = inet_connect_opts(opts, errp, callback, opaque); |
879e45c7 | 682 | qemu_opts_del(opts); |
a6ba35b3 | 683 | } |
f4c94c7c GH |
684 | return sock; |
685 | } | |
686 | ||
d247d25f AL |
687 | #ifndef _WIN32 |
688 | ||
7fc4e63e | 689 | int unix_listen_opts(QemuOpts *opts, Error **errp) |
d247d25f AL |
690 | { |
691 | struct sockaddr_un un; | |
62b6adfb GH |
692 | const char *path = qemu_opt_get(opts, "path"); |
693 | int sock, fd; | |
d247d25f | 694 | |
40ff6d7e | 695 | sock = qemu_socket(PF_UNIX, SOCK_STREAM, 0); |
d247d25f | 696 | if (sock < 0) { |
b658c53d | 697 | error_setg_errno(errp, errno, "Failed to create Unix socket"); |
39b6efc8 | 698 | return -1; |
d247d25f AL |
699 | } |
700 | ||
d247d25f AL |
701 | memset(&un, 0, sizeof(un)); |
702 | un.sun_family = AF_UNIX; | |
703 | if (path && strlen(path)) { | |
704 | snprintf(un.sun_path, sizeof(un.sun_path), "%s", path); | |
705 | } else { | |
b658c53d PB |
706 | const char *tmpdir = getenv("TMPDIR"); |
707 | tmpdir = tmpdir ? tmpdir : "/tmp"; | |
708 | if (snprintf(un.sun_path, sizeof(un.sun_path), "%s/qemu-socket-XXXXXX", | |
709 | tmpdir) >= sizeof(un.sun_path)) { | |
710 | error_setg_errno(errp, errno, | |
711 | "TMPDIR environment variable (%s) too large", tmpdir); | |
712 | goto err; | |
713 | } | |
714 | ||
d247d25f AL |
715 | /* |
716 | * This dummy fd usage silences the mktemp() unsecure warning. | |
717 | * Using mkstemp() doesn't make things more secure here | |
718 | * though. bind() complains about existing files, so we have | |
719 | * to unlink first and thus re-open the race window. The | |
720 | * worst case possible is bind() failing, i.e. a DoS attack. | |
721 | */ | |
b658c53d PB |
722 | fd = mkstemp(un.sun_path); |
723 | if (fd < 0) { | |
724 | error_setg_errno(errp, errno, | |
725 | "Failed to make a temporary socket name in %s", tmpdir); | |
726 | goto err; | |
727 | } | |
728 | close(fd); | |
f43e47db | 729 | qemu_opt_set(opts, "path", un.sun_path, &error_abort); |
d247d25f | 730 | } |
d247d25f AL |
731 | |
732 | unlink(un.sun_path); | |
733 | if (bind(sock, (struct sockaddr*) &un, sizeof(un)) < 0) { | |
b658c53d | 734 | error_setg_errno(errp, errno, "Failed to bind socket to %s", un.sun_path); |
d247d25f AL |
735 | goto err; |
736 | } | |
737 | if (listen(sock, 1) < 0) { | |
235256a2 | 738 | error_setg_errno(errp, errno, "Failed to listen on socket"); |
d247d25f AL |
739 | goto err; |
740 | } | |
741 | ||
d247d25f AL |
742 | return sock; |
743 | ||
744 | err: | |
d247d25f AL |
745 | closesocket(sock); |
746 | return -1; | |
747 | } | |
748 | ||
1fc05adf PB |
749 | int unix_connect_opts(QemuOpts *opts, Error **errp, |
750 | NonBlockingConnectHandler *callback, void *opaque) | |
d247d25f AL |
751 | { |
752 | struct sockaddr_un un; | |
2af2bf67 | 753 | const char *path = qemu_opt_get(opts, "path"); |
1fc05adf PB |
754 | ConnectState *connect_state = NULL; |
755 | int sock, rc; | |
d247d25f | 756 | |
8108fd3e | 757 | if (path == NULL) { |
312fd5f2 | 758 | error_setg(errp, "unix connect: no path specified"); |
2af2bf67 GH |
759 | return -1; |
760 | } | |
761 | ||
40ff6d7e | 762 | sock = qemu_socket(PF_UNIX, SOCK_STREAM, 0); |
d247d25f | 763 | if (sock < 0) { |
235256a2 | 764 | error_setg_errno(errp, errno, "Failed to create socket"); |
39b6efc8 | 765 | return -1; |
d247d25f | 766 | } |
1fc05adf PB |
767 | if (callback != NULL) { |
768 | connect_state = g_malloc0(sizeof(*connect_state)); | |
769 | connect_state->callback = callback; | |
770 | connect_state->opaque = opaque; | |
f9e8cacc | 771 | qemu_set_nonblock(sock); |
1fc05adf | 772 | } |
d247d25f AL |
773 | |
774 | memset(&un, 0, sizeof(un)); | |
775 | un.sun_family = AF_UNIX; | |
776 | snprintf(un.sun_path, sizeof(un.sun_path), "%s", path); | |
1fc05adf PB |
777 | |
778 | /* connect to peer */ | |
779 | do { | |
780 | rc = 0; | |
781 | if (connect(sock, (struct sockaddr *) &un, sizeof(un)) < 0) { | |
782 | rc = -socket_error(); | |
783 | } | |
784 | } while (rc == -EINTR); | |
785 | ||
786 | if (connect_state != NULL && QEMU_SOCKET_RC_INPROGRESS(rc)) { | |
787 | connect_state->fd = sock; | |
788 | qemu_set_fd_handler2(sock, NULL, NULL, wait_for_connect, | |
789 | connect_state); | |
790 | return sock; | |
791 | } else if (rc >= 0) { | |
792 | /* non blocking socket immediate success, call callback */ | |
793 | if (callback != NULL) { | |
51795029 | 794 | callback(sock, NULL, opaque); |
1fc05adf PB |
795 | } |
796 | } | |
797 | ||
798 | if (rc < 0) { | |
235256a2 | 799 | error_setg_errno(errp, -rc, "Failed to connect socket"); |
9d947472 | 800 | close(sock); |
1fc05adf | 801 | sock = -1; |
d247d25f AL |
802 | } |
803 | ||
1fc05adf | 804 | g_free(connect_state); |
d247d25f AL |
805 | return sock; |
806 | } | |
807 | ||
0c814709 PB |
808 | #else |
809 | ||
810 | int unix_listen_opts(QemuOpts *opts, Error **errp) | |
811 | { | |
58899664 | 812 | error_setg(errp, "unix sockets are not available on windows"); |
0c814709 PB |
813 | errno = ENOTSUP; |
814 | return -1; | |
815 | } | |
816 | ||
1fc05adf PB |
817 | int unix_connect_opts(QemuOpts *opts, Error **errp, |
818 | NonBlockingConnectHandler *callback, void *opaque) | |
0c814709 | 819 | { |
58899664 | 820 | error_setg(errp, "unix sockets are not available on windows"); |
0c814709 PB |
821 | errno = ENOTSUP; |
822 | return -1; | |
823 | } | |
824 | #endif | |
825 | ||
2af2bf67 | 826 | /* compatibility wrapper */ |
7fc4e63e | 827 | int unix_listen(const char *str, char *ostr, int olen, Error **errp) |
62b6adfb GH |
828 | { |
829 | QemuOpts *opts; | |
830 | char *path, *optstr; | |
831 | int sock, len; | |
832 | ||
87ea75d5 | 833 | opts = qemu_opts_create(&socket_optslist, NULL, 0, &error_abort); |
62b6adfb GH |
834 | |
835 | optstr = strchr(str, ','); | |
836 | if (optstr) { | |
837 | len = optstr - str; | |
838 | if (len) { | |
7267c094 | 839 | path = g_malloc(len+1); |
62b6adfb | 840 | snprintf(path, len+1, "%.*s", len, str); |
f43e47db | 841 | qemu_opt_set(opts, "path", path, &error_abort); |
7267c094 | 842 | g_free(path); |
62b6adfb GH |
843 | } |
844 | } else { | |
f43e47db | 845 | qemu_opt_set(opts, "path", str, &error_abort); |
62b6adfb GH |
846 | } |
847 | ||
7fc4e63e | 848 | sock = unix_listen_opts(opts, errp); |
62b6adfb GH |
849 | |
850 | if (sock != -1 && ostr) | |
851 | snprintf(ostr, olen, "%s%s", qemu_opt_get(opts, "path"), optstr ? optstr : ""); | |
852 | qemu_opts_del(opts); | |
853 | return sock; | |
854 | } | |
855 | ||
7fc4e63e | 856 | int unix_connect(const char *path, Error **errp) |
2af2bf67 GH |
857 | { |
858 | QemuOpts *opts; | |
859 | int sock; | |
860 | ||
87ea75d5 | 861 | opts = qemu_opts_create(&socket_optslist, NULL, 0, &error_abort); |
f43e47db | 862 | qemu_opt_set(opts, "path", path, &error_abort); |
1fc05adf PB |
863 | sock = unix_connect_opts(opts, errp, NULL, NULL); |
864 | qemu_opts_del(opts); | |
865 | return sock; | |
866 | } | |
867 | ||
868 | ||
869 | int unix_nonblocking_connect(const char *path, | |
870 | NonBlockingConnectHandler *callback, | |
871 | void *opaque, Error **errp) | |
872 | { | |
873 | QemuOpts *opts; | |
874 | int sock = -1; | |
875 | ||
876 | g_assert(callback != NULL); | |
877 | ||
87ea75d5 | 878 | opts = qemu_opts_create(&socket_optslist, NULL, 0, &error_abort); |
f43e47db | 879 | qemu_opt_set(opts, "path", path, &error_abort); |
1fc05adf | 880 | sock = unix_connect_opts(opts, errp, callback, opaque); |
2af2bf67 GH |
881 | qemu_opts_del(opts); |
882 | return sock; | |
883 | } | |
884 | ||
101f9cbc PB |
885 | SocketAddress *socket_parse(const char *str, Error **errp) |
886 | { | |
afde3f8b | 887 | SocketAddress *addr; |
101f9cbc | 888 | |
afde3f8b | 889 | addr = g_new0(SocketAddress, 1); |
101f9cbc PB |
890 | if (strstart(str, "unix:", NULL)) { |
891 | if (str[5] == '\0') { | |
312fd5f2 | 892 | error_setg(errp, "invalid Unix socket address"); |
101f9cbc PB |
893 | goto fail; |
894 | } else { | |
895 | addr->kind = SOCKET_ADDRESS_KIND_UNIX; | |
896 | addr->q_unix = g_new(UnixSocketAddress, 1); | |
897 | addr->q_unix->path = g_strdup(str + 5); | |
898 | } | |
899 | } else if (strstart(str, "fd:", NULL)) { | |
900 | if (str[3] == '\0') { | |
312fd5f2 | 901 | error_setg(errp, "invalid file descriptor address"); |
101f9cbc PB |
902 | goto fail; |
903 | } else { | |
904 | addr->kind = SOCKET_ADDRESS_KIND_FD; | |
905 | addr->fd = g_new(String, 1); | |
906 | addr->fd->str = g_strdup(str + 3); | |
907 | } | |
908 | } else { | |
909 | addr->kind = SOCKET_ADDRESS_KIND_INET; | |
101f9cbc PB |
910 | addr->inet = inet_parse(str, errp); |
911 | if (addr->inet == NULL) { | |
912 | goto fail; | |
913 | } | |
914 | } | |
915 | return addr; | |
916 | ||
917 | fail: | |
918 | qapi_free_SocketAddress(addr); | |
919 | return NULL; | |
920 | } | |
921 | ||
922 | int socket_connect(SocketAddress *addr, Error **errp, | |
923 | NonBlockingConnectHandler *callback, void *opaque) | |
924 | { | |
925 | QemuOpts *opts; | |
926 | int fd; | |
927 | ||
87ea75d5 | 928 | opts = qemu_opts_create(&socket_optslist, NULL, 0, &error_abort); |
101f9cbc PB |
929 | switch (addr->kind) { |
930 | case SOCKET_ADDRESS_KIND_INET: | |
931 | inet_addr_to_opts(opts, addr->inet); | |
932 | fd = inet_connect_opts(opts, errp, callback, opaque); | |
933 | break; | |
934 | ||
935 | case SOCKET_ADDRESS_KIND_UNIX: | |
f43e47db | 936 | qemu_opt_set(opts, "path", addr->q_unix->path, &error_abort); |
101f9cbc PB |
937 | fd = unix_connect_opts(opts, errp, callback, opaque); |
938 | break; | |
939 | ||
940 | case SOCKET_ADDRESS_KIND_FD: | |
941 | fd = monitor_get_fd(cur_mon, addr->fd->str, errp); | |
d1ec72a4 | 942 | if (fd >= 0 && callback) { |
1a751ebf | 943 | qemu_set_nonblock(fd); |
51795029 | 944 | callback(fd, NULL, opaque); |
101f9cbc PB |
945 | } |
946 | break; | |
947 | ||
948 | default: | |
949 | abort(); | |
950 | } | |
951 | qemu_opts_del(opts); | |
952 | return fd; | |
953 | } | |
954 | ||
955 | int socket_listen(SocketAddress *addr, Error **errp) | |
956 | { | |
957 | QemuOpts *opts; | |
958 | int fd; | |
959 | ||
87ea75d5 | 960 | opts = qemu_opts_create(&socket_optslist, NULL, 0, &error_abort); |
101f9cbc PB |
961 | switch (addr->kind) { |
962 | case SOCKET_ADDRESS_KIND_INET: | |
963 | inet_addr_to_opts(opts, addr->inet); | |
964 | fd = inet_listen_opts(opts, 0, errp); | |
965 | break; | |
966 | ||
967 | case SOCKET_ADDRESS_KIND_UNIX: | |
f43e47db | 968 | qemu_opt_set(opts, "path", addr->q_unix->path, &error_abort); |
101f9cbc PB |
969 | fd = unix_listen_opts(opts, errp); |
970 | break; | |
971 | ||
972 | case SOCKET_ADDRESS_KIND_FD: | |
973 | fd = monitor_get_fd(cur_mon, addr->fd->str, errp); | |
974 | break; | |
975 | ||
976 | default: | |
977 | abort(); | |
978 | } | |
979 | qemu_opts_del(opts); | |
980 | return fd; | |
981 | } | |
982 | ||
3ecc059d GH |
983 | int socket_dgram(SocketAddress *remote, SocketAddress *local, Error **errp) |
984 | { | |
985 | QemuOpts *opts; | |
986 | int fd; | |
987 | ||
87ea75d5 | 988 | opts = qemu_opts_create(&socket_optslist, NULL, 0, &error_abort); |
3ecc059d GH |
989 | switch (remote->kind) { |
990 | case SOCKET_ADDRESS_KIND_INET: | |
8287fea3 | 991 | inet_addr_to_opts(opts, remote->inet); |
3ecc059d | 992 | if (local) { |
f43e47db MA |
993 | qemu_opt_set(opts, "localaddr", local->inet->host, &error_abort); |
994 | qemu_opt_set(opts, "localport", local->inet->port, &error_abort); | |
3ecc059d GH |
995 | } |
996 | fd = inet_dgram_opts(opts, errp); | |
997 | break; | |
998 | ||
999 | default: | |
1000 | error_setg(errp, "socket type unsupported for datagram"); | |
7a5b6af1 | 1001 | fd = -1; |
3ecc059d GH |
1002 | } |
1003 | qemu_opts_del(opts); | |
1004 | return fd; | |
1005 | } |