]> git.proxmox.com Git - qemu.git/blame - net/socket.c
net: make network client name unique
[qemu.git] / net / socket.c
CommitLineData
42281ac9
MM
1/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
42281ac9
MM
24#include "config-host.h"
25
1422e32d 26#include "net/net.h"
a245fc18 27#include "clients.h"
83c9089e 28#include "monitor/monitor.h"
42281ac9 29#include "qemu-common.h"
1de7afc9
PB
30#include "qemu/error-report.h"
31#include "qemu/option.h"
32#include "qemu/sockets.h"
33#include "qemu/iov.h"
42281ac9
MM
34
35typedef struct NetSocketState {
4e68f7a0 36 NetClientState nc;
011de2b5 37 int listen_fd;
42281ac9
MM
38 int fd;
39 int state; /* 0 = getting length, 1 = getting data */
40 unsigned int index;
41 unsigned int packet_len;
45a7f54a 42 unsigned int send_index; /* number of bytes sent (only SOCK_STREAM) */
d32fcad3 43 uint8_t buf[NET_BUFSIZE];
42281ac9 44 struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
863f678f
SH
45 IOHandler *send_fn; /* differs between SOCK_STREAM/SOCK_DGRAM */
46 bool read_poll; /* waiting to receive data? */
47 bool write_poll; /* waiting to transmit data? */
42281ac9
MM
48} NetSocketState;
49
011de2b5 50static void net_socket_accept(void *opaque);
863f678f
SH
51static void net_socket_writable(void *opaque);
52
53/* Only read packets from socket when peer can receive them */
54static int net_socket_can_send(void *opaque)
55{
56 NetSocketState *s = opaque;
57
58 return qemu_can_send_packet(&s->nc);
59}
60
61static void net_socket_update_fd_handler(NetSocketState *s)
62{
63 qemu_set_fd_handler2(s->fd,
64 s->read_poll ? net_socket_can_send : NULL,
65 s->read_poll ? s->send_fn : NULL,
66 s->write_poll ? net_socket_writable : NULL,
67 s);
68}
69
70static void net_socket_read_poll(NetSocketState *s, bool enable)
71{
72 s->read_poll = enable;
73 net_socket_update_fd_handler(s);
74}
75
76static void net_socket_write_poll(NetSocketState *s, bool enable)
77{
78 s->write_poll = enable;
79 net_socket_update_fd_handler(s);
80}
81
82static void net_socket_writable(void *opaque)
83{
84 NetSocketState *s = opaque;
85
86 net_socket_write_poll(s, false);
87
88 qemu_flush_queued_packets(&s->nc);
89}
42281ac9 90
4e68f7a0 91static ssize_t net_socket_receive(NetClientState *nc, const uint8_t *buf, size_t size)
42281ac9 92{
564f63e3 93 NetSocketState *s = DO_UPCAST(NetSocketState, nc, nc);
45a7f54a
SH
94 uint32_t len = htonl(size);
95 struct iovec iov[] = {
96 {
97 .iov_base = &len,
98 .iov_len = sizeof(len),
99 }, {
100 .iov_base = (void *)buf,
101 .iov_len = size,
102 },
103 };
104 size_t remaining;
105 ssize_t ret;
42281ac9 106
45a7f54a
SH
107 remaining = iov_size(iov, 2) - s->send_index;
108 ret = iov_send(s->fd, iov, 2, s->send_index, remaining);
109
110 if (ret == -1 && errno == EAGAIN) {
111 ret = 0; /* handled further down */
112 }
113 if (ret == -1) {
114 s->send_index = 0;
115 return -errno;
116 }
117 if (ret < (ssize_t)remaining) {
118 s->send_index += ret;
119 net_socket_write_poll(s, true);
120 return 0;
121 }
122 s->send_index = 0;
123 return size;
42281ac9
MM
124}
125
4e68f7a0 126static ssize_t net_socket_receive_dgram(NetClientState *nc, const uint8_t *buf, size_t size)
42281ac9 127{
564f63e3 128 NetSocketState *s = DO_UPCAST(NetSocketState, nc, nc);
213fd508
SH
129 ssize_t ret;
130
131 do {
73062dfe
SW
132 ret = qemu_sendto(s->fd, buf, size, 0,
133 (struct sockaddr *)&s->dgram_dst,
134 sizeof(s->dgram_dst));
213fd508
SH
135 } while (ret == -1 && errno == EINTR);
136
137 if (ret == -1 && errno == EAGAIN) {
138 net_socket_write_poll(s, true);
139 return 0;
140 }
141 return ret;
42281ac9
MM
142}
143
144static void net_socket_send(void *opaque)
145{
146 NetSocketState *s = opaque;
147 int size, err;
148 unsigned l;
d32fcad3 149 uint8_t buf1[NET_BUFSIZE];
42281ac9
MM
150 const uint8_t *buf;
151
00aa0040 152 size = qemu_recv(s->fd, buf1, sizeof(buf1), 0);
42281ac9
MM
153 if (size < 0) {
154 err = socket_error();
155 if (err != EWOULDBLOCK)
156 goto eoc;
157 } else if (size == 0) {
158 /* end of connection */
159 eoc:
863f678f
SH
160 net_socket_read_poll(s, false);
161 net_socket_write_poll(s, false);
011de2b5
ZYW
162 if (s->listen_fd != -1) {
163 qemu_set_fd_handler(s->listen_fd, net_socket_accept, NULL, s);
164 }
42281ac9 165 closesocket(s->fd);
011de2b5
ZYW
166
167 s->fd = -1;
168 s->state = 0;
169 s->index = 0;
170 s->packet_len = 0;
171 s->nc.link_down = true;
172 memset(s->buf, 0, sizeof(s->buf));
173 memset(s->nc.info_str, 0, sizeof(s->nc.info_str));
174
42281ac9
MM
175 return;
176 }
177 buf = buf1;
178 while (size > 0) {
179 /* reassemble a packet from the network */
180 switch(s->state) {
181 case 0:
182 l = 4 - s->index;
183 if (l > size)
184 l = size;
185 memcpy(s->buf + s->index, buf, l);
186 buf += l;
187 size -= l;
188 s->index += l;
189 if (s->index == 4) {
190 /* got length */
191 s->packet_len = ntohl(*(uint32_t *)s->buf);
192 s->index = 0;
193 s->state = 1;
194 }
195 break;
196 case 1:
197 l = s->packet_len - s->index;
198 if (l > size)
199 l = size;
200 if (s->index + l <= sizeof(s->buf)) {
201 memcpy(s->buf + s->index, buf, l);
202 } else {
203 fprintf(stderr, "serious error: oversized packet received,"
204 "connection terminated.\n");
205 s->state = 0;
206 goto eoc;
207 }
208
209 s->index += l;
210 buf += l;
211 size -= l;
212 if (s->index >= s->packet_len) {
564f63e3 213 qemu_send_packet(&s->nc, s->buf, s->packet_len);
42281ac9
MM
214 s->index = 0;
215 s->state = 0;
216 }
217 break;
218 }
219 }
220}
221
222static void net_socket_send_dgram(void *opaque)
223{
224 NetSocketState *s = opaque;
225 int size;
226
00aa0040 227 size = qemu_recv(s->fd, s->buf, sizeof(s->buf), 0);
42281ac9
MM
228 if (size < 0)
229 return;
230 if (size == 0) {
231 /* end of connection */
863f678f
SH
232 net_socket_read_poll(s, false);
233 net_socket_write_poll(s, false);
42281ac9
MM
234 return;
235 }
564f63e3 236 qemu_send_packet(&s->nc, s->buf, size);
42281ac9
MM
237}
238
3a75e74c 239static int net_socket_mcast_create(struct sockaddr_in *mcastaddr, struct in_addr *localaddr)
42281ac9
MM
240{
241 struct ip_mreq imr;
242 int fd;
243 int val, ret;
23ddf2bb
B
244#ifdef __OpenBSD__
245 unsigned char loop;
246#else
247 int loop;
248#endif
249
42281ac9 250 if (!IN_MULTICAST(ntohl(mcastaddr->sin_addr.s_addr))) {
842480d4
SH
251 fprintf(stderr, "qemu: error: specified mcastaddr \"%s\" (0x%08x) "
252 "does not contain a multicast address\n",
253 inet_ntoa(mcastaddr->sin_addr),
42281ac9 254 (int)ntohl(mcastaddr->sin_addr.s_addr));
842480d4 255 return -1;
42281ac9
MM
256
257 }
40ff6d7e 258 fd = qemu_socket(PF_INET, SOCK_DGRAM, 0);
42281ac9
MM
259 if (fd < 0) {
260 perror("socket(PF_INET, SOCK_DGRAM)");
261 return -1;
262 }
263
264 val = 1;
9957fc7f 265 ret = qemu_setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
42281ac9 266 if (ret < 0) {
842480d4
SH
267 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
268 goto fail;
42281ac9
MM
269 }
270
271 ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
272 if (ret < 0) {
273 perror("bind");
274 goto fail;
275 }
276
277 /* Add host to multicast group */
278 imr.imr_multiaddr = mcastaddr->sin_addr;
3a75e74c
MR
279 if (localaddr) {
280 imr.imr_interface = *localaddr;
281 } else {
282 imr.imr_interface.s_addr = htonl(INADDR_ANY);
283 }
42281ac9 284
9957fc7f
SW
285 ret = qemu_setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
286 &imr, sizeof(struct ip_mreq));
42281ac9 287 if (ret < 0) {
842480d4
SH
288 perror("setsockopt(IP_ADD_MEMBERSHIP)");
289 goto fail;
42281ac9
MM
290 }
291
292 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
23ddf2bb 293 loop = 1;
9957fc7f
SW
294 ret = qemu_setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP,
295 &loop, sizeof(loop));
42281ac9 296 if (ret < 0) {
842480d4
SH
297 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
298 goto fail;
42281ac9
MM
299 }
300
3a75e74c
MR
301 /* If a bind address is given, only send packets from that address */
302 if (localaddr != NULL) {
9957fc7f
SW
303 ret = qemu_setsockopt(fd, IPPROTO_IP, IP_MULTICAST_IF,
304 localaddr, sizeof(*localaddr));
3a75e74c
MR
305 if (ret < 0) {
306 perror("setsockopt(IP_MULTICAST_IF)");
307 goto fail;
308 }
309 }
310
f9e8cacc 311 qemu_set_nonblock(fd);
42281ac9
MM
312 return fd;
313fail:
314 if (fd >= 0)
315 closesocket(fd);
316 return -1;
317}
318
4e68f7a0 319static void net_socket_cleanup(NetClientState *nc)
42281ac9 320{
564f63e3 321 NetSocketState *s = DO_UPCAST(NetSocketState, nc, nc);
011de2b5 322 if (s->fd != -1) {
863f678f
SH
323 net_socket_read_poll(s, false);
324 net_socket_write_poll(s, false);
011de2b5
ZYW
325 close(s->fd);
326 s->fd = -1;
327 }
328 if (s->listen_fd != -1) {
329 qemu_set_fd_handler(s->listen_fd, NULL, NULL, NULL);
330 closesocket(s->listen_fd);
331 s->listen_fd = -1;
332 }
42281ac9
MM
333}
334
564f63e3 335static NetClientInfo net_dgram_socket_info = {
2be64a68 336 .type = NET_CLIENT_OPTIONS_KIND_SOCKET,
564f63e3
MM
337 .size = sizeof(NetSocketState),
338 .receive = net_socket_receive_dgram,
339 .cleanup = net_socket_cleanup,
340};
341
4e68f7a0 342static NetSocketState *net_socket_fd_init_dgram(NetClientState *peer,
42281ac9
MM
343 const char *model,
344 const char *name,
345 int fd, int is_connected)
346{
347 struct sockaddr_in saddr;
348 int newfd;
349 socklen_t saddr_len;
4e68f7a0 350 NetClientState *nc;
42281ac9
MM
351 NetSocketState *s;
352
353 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
354 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
355 * by ONLY ONE process: we must "clone" this dgram socket --jjo
356 */
357
358 if (is_connected) {
842480d4
SH
359 if (getsockname(fd, (struct sockaddr *) &saddr, &saddr_len) == 0) {
360 /* must be bound */
361 if (saddr.sin_addr.s_addr == 0) {
362 fprintf(stderr, "qemu: error: init_dgram: fd=%d unbound, "
363 "cannot setup multicast dst addr\n", fd);
e5d1fca0 364 goto err;
842480d4
SH
365 }
366 /* clone dgram socket */
367 newfd = net_socket_mcast_create(&saddr, NULL);
368 if (newfd < 0) {
369 /* error already reported by net_socket_mcast_create() */
e5d1fca0 370 goto err;
842480d4
SH
371 }
372 /* clone newfd to fd, close newfd */
373 dup2(newfd, fd);
374 close(newfd);
375
376 } else {
377 fprintf(stderr,
378 "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
379 fd, strerror(errno));
e5d1fca0 380 goto err;
842480d4 381 }
42281ac9
MM
382 }
383
ab5f3f84 384 nc = qemu_new_net_client(&net_dgram_socket_info, peer, model, name);
564f63e3
MM
385
386 snprintf(nc->info_str, sizeof(nc->info_str),
842480d4
SH
387 "socket: fd=%d (%s mcast=%s:%d)",
388 fd, is_connected ? "cloned" : "",
389 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
564f63e3
MM
390
391 s = DO_UPCAST(NetSocketState, nc, nc);
392
42281ac9 393 s->fd = fd;
011de2b5 394 s->listen_fd = -1;
863f678f
SH
395 s->send_fn = net_socket_send_dgram;
396 net_socket_read_poll(s, true);
42281ac9
MM
397
398 /* mcast: save bound address as dst */
e34cde35
ZYW
399 if (is_connected) {
400 s->dgram_dst = saddr;
401 }
42281ac9 402
42281ac9 403 return s;
e5d1fca0
SH
404
405err:
406 closesocket(fd);
407 return NULL;
42281ac9
MM
408}
409
410static void net_socket_connect(void *opaque)
411{
412 NetSocketState *s = opaque;
863f678f
SH
413 s->send_fn = net_socket_send;
414 net_socket_read_poll(s, true);
42281ac9
MM
415}
416
564f63e3 417static NetClientInfo net_socket_info = {
2be64a68 418 .type = NET_CLIENT_OPTIONS_KIND_SOCKET,
564f63e3
MM
419 .size = sizeof(NetSocketState),
420 .receive = net_socket_receive,
421 .cleanup = net_socket_cleanup,
422};
423
4e68f7a0 424static NetSocketState *net_socket_fd_init_stream(NetClientState *peer,
42281ac9
MM
425 const char *model,
426 const char *name,
427 int fd, int is_connected)
428{
4e68f7a0 429 NetClientState *nc;
42281ac9 430 NetSocketState *s;
564f63e3 431
ab5f3f84 432 nc = qemu_new_net_client(&net_socket_info, peer, model, name);
564f63e3
MM
433
434 snprintf(nc->info_str, sizeof(nc->info_str), "socket: fd=%d", fd);
435
436 s = DO_UPCAST(NetSocketState, nc, nc);
437
42281ac9 438 s->fd = fd;
011de2b5 439 s->listen_fd = -1;
564f63e3 440
20048d0a
SH
441 /* Disable Nagle algorithm on TCP sockets to reduce latency */
442 socket_set_nodelay(fd);
443
42281ac9
MM
444 if (is_connected) {
445 net_socket_connect(s);
446 } else {
447 qemu_set_fd_handler(s->fd, NULL, net_socket_connect, s);
448 }
449 return s;
450}
451
4e68f7a0 452static NetSocketState *net_socket_fd_init(NetClientState *peer,
42281ac9
MM
453 const char *model, const char *name,
454 int fd, int is_connected)
455{
456 int so_type = -1, optlen=sizeof(so_type);
457
458 if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type,
459 (socklen_t *)&optlen)< 0) {
842480d4
SH
460 fprintf(stderr, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n",
461 fd);
e5d1fca0 462 closesocket(fd);
842480d4 463 return NULL;
42281ac9
MM
464 }
465 switch(so_type) {
466 case SOCK_DGRAM:
d33d93b2 467 return net_socket_fd_init_dgram(peer, model, name, fd, is_connected);
42281ac9 468 case SOCK_STREAM:
d33d93b2 469 return net_socket_fd_init_stream(peer, model, name, fd, is_connected);
42281ac9
MM
470 default:
471 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
472 fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
d33d93b2 473 return net_socket_fd_init_stream(peer, model, name, fd, is_connected);
42281ac9
MM
474 }
475 return NULL;
476}
477
478static void net_socket_accept(void *opaque)
479{
011de2b5 480 NetSocketState *s = opaque;
42281ac9
MM
481 struct sockaddr_in saddr;
482 socklen_t len;
483 int fd;
484
485 for(;;) {
486 len = sizeof(saddr);
011de2b5 487 fd = qemu_accept(s->listen_fd, (struct sockaddr *)&saddr, &len);
42281ac9
MM
488 if (fd < 0 && errno != EINTR) {
489 return;
490 } else if (fd >= 0) {
011de2b5 491 qemu_set_fd_handler(s->listen_fd, NULL, NULL, NULL);
42281ac9
MM
492 break;
493 }
494 }
011de2b5
ZYW
495
496 s->fd = fd;
497 s->nc.link_down = false;
498 net_socket_connect(s);
499 snprintf(s->nc.info_str, sizeof(s->nc.info_str),
500 "socket: connection from %s:%d",
501 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
42281ac9
MM
502}
503
4e68f7a0 504static int net_socket_listen_init(NetClientState *peer,
42281ac9
MM
505 const char *model,
506 const char *name,
507 const char *host_str)
508{
011de2b5
ZYW
509 NetClientState *nc;
510 NetSocketState *s;
42281ac9 511 struct sockaddr_in saddr;
011de2b5 512 int fd, val, ret;
42281ac9
MM
513
514 if (parse_host_port(&saddr, host_str) < 0)
515 return -1;
516
40ff6d7e 517 fd = qemu_socket(PF_INET, SOCK_STREAM, 0);
42281ac9
MM
518 if (fd < 0) {
519 perror("socket");
520 return -1;
521 }
f9e8cacc 522 qemu_set_nonblock(fd);
42281ac9
MM
523
524 /* allow fast reuse */
525 val = 1;
9957fc7f 526 qemu_setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
42281ac9
MM
527
528 ret = bind(fd, (struct sockaddr *)&saddr, sizeof(saddr));
529 if (ret < 0) {
530 perror("bind");
a46667ea 531 closesocket(fd);
42281ac9
MM
532 return -1;
533 }
534 ret = listen(fd, 0);
535 if (ret < 0) {
536 perror("listen");
a46667ea 537 closesocket(fd);
42281ac9
MM
538 return -1;
539 }
011de2b5
ZYW
540
541 nc = qemu_new_net_client(&net_socket_info, peer, model, name);
542 s = DO_UPCAST(NetSocketState, nc, nc);
543 s->fd = -1;
544 s->listen_fd = fd;
545 s->nc.link_down = true;
546
547 qemu_set_fd_handler(s->listen_fd, net_socket_accept, NULL, s);
42281ac9
MM
548 return 0;
549}
550
4e68f7a0 551static int net_socket_connect_init(NetClientState *peer,
42281ac9
MM
552 const char *model,
553 const char *name,
554 const char *host_str)
555{
556 NetSocketState *s;
557 int fd, connected, ret, err;
558 struct sockaddr_in saddr;
559
560 if (parse_host_port(&saddr, host_str) < 0)
561 return -1;
562
40ff6d7e 563 fd = qemu_socket(PF_INET, SOCK_STREAM, 0);
42281ac9
MM
564 if (fd < 0) {
565 perror("socket");
566 return -1;
567 }
f9e8cacc 568 qemu_set_nonblock(fd);
42281ac9
MM
569
570 connected = 0;
571 for(;;) {
572 ret = connect(fd, (struct sockaddr *)&saddr, sizeof(saddr));
573 if (ret < 0) {
574 err = socket_error();
575 if (err == EINTR || err == EWOULDBLOCK) {
576 } else if (err == EINPROGRESS) {
577 break;
578#ifdef _WIN32
c7eb1f02 579 } else if (err == WSAEALREADY || err == WSAEINVAL) {
42281ac9
MM
580 break;
581#endif
582 } else {
583 perror("connect");
584 closesocket(fd);
585 return -1;
586 }
587 } else {
588 connected = 1;
589 break;
590 }
591 }
d33d93b2 592 s = net_socket_fd_init(peer, model, name, fd, connected);
42281ac9
MM
593 if (!s)
594 return -1;
564f63e3 595 snprintf(s->nc.info_str, sizeof(s->nc.info_str),
42281ac9
MM
596 "socket: connect to %s:%d",
597 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
598 return 0;
599}
600
4e68f7a0 601static int net_socket_mcast_init(NetClientState *peer,
42281ac9
MM
602 const char *model,
603 const char *name,
3a75e74c
MR
604 const char *host_str,
605 const char *localaddr_str)
42281ac9
MM
606{
607 NetSocketState *s;
608 int fd;
609 struct sockaddr_in saddr;
3a75e74c 610 struct in_addr localaddr, *param_localaddr;
42281ac9
MM
611
612 if (parse_host_port(&saddr, host_str) < 0)
613 return -1;
614
3a75e74c
MR
615 if (localaddr_str != NULL) {
616 if (inet_aton(localaddr_str, &localaddr) == 0)
617 return -1;
618 param_localaddr = &localaddr;
619 } else {
620 param_localaddr = NULL;
621 }
42281ac9 622
3a75e74c 623 fd = net_socket_mcast_create(&saddr, param_localaddr);
42281ac9 624 if (fd < 0)
842480d4 625 return -1;
42281ac9 626
d33d93b2 627 s = net_socket_fd_init(peer, model, name, fd, 0);
42281ac9
MM
628 if (!s)
629 return -1;
630
631 s->dgram_dst = saddr;
632
564f63e3 633 snprintf(s->nc.info_str, sizeof(s->nc.info_str),
42281ac9
MM
634 "socket: mcast=%s:%d",
635 inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
636 return 0;
637
638}
639
4e68f7a0 640static int net_socket_udp_init(NetClientState *peer,
0e0e7fac
B
641 const char *model,
642 const char *name,
643 const char *rhost,
644 const char *lhost)
645{
646 NetSocketState *s;
647 int fd, val, ret;
648 struct sockaddr_in laddr, raddr;
649
650 if (parse_host_port(&laddr, lhost) < 0) {
651 return -1;
652 }
653
654 if (parse_host_port(&raddr, rhost) < 0) {
655 return -1;
656 }
657
658 fd = qemu_socket(PF_INET, SOCK_DGRAM, 0);
659 if (fd < 0) {
660 perror("socket(PF_INET, SOCK_DGRAM)");
661 return -1;
662 }
663 val = 1;
9957fc7f
SW
664 ret = qemu_setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
665 &val, sizeof(val));
0e0e7fac
B
666 if (ret < 0) {
667 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
668 closesocket(fd);
669 return -1;
670 }
671 ret = bind(fd, (struct sockaddr *)&laddr, sizeof(laddr));
672 if (ret < 0) {
673 perror("bind");
674 closesocket(fd);
675 return -1;
676 }
fc13fa00 677 qemu_set_nonblock(fd);
0e0e7fac 678
d33d93b2 679 s = net_socket_fd_init(peer, model, name, fd, 0);
0e0e7fac
B
680 if (!s) {
681 return -1;
682 }
683
684 s->dgram_dst = raddr;
685
686 snprintf(s->nc.info_str, sizeof(s->nc.info_str),
687 "socket: udp=%s:%d",
688 inet_ntoa(raddr.sin_addr), ntohs(raddr.sin_port));
689 return 0;
690}
691
1a0c0958 692int net_init_socket(const NetClientOptions *opts, const char *name,
4e68f7a0 693 NetClientState *peer)
42281ac9 694{
bef8e8fe 695 const NetdevSocketOptions *sock;
42281ac9 696
bef8e8fe
LE
697 assert(opts->kind == NET_CLIENT_OPTIONS_KIND_SOCKET);
698 sock = opts->socket;
42281ac9 699
bef8e8fe
LE
700 if (sock->has_fd + sock->has_listen + sock->has_connect + sock->has_mcast +
701 sock->has_udp != 1) {
702 error_report("exactly one of fd=, listen=, connect=, mcast= or udp="
703 " is required");
704 return -1;
705 }
42281ac9 706
bef8e8fe
LE
707 if (sock->has_localaddr && !sock->has_mcast && !sock->has_udp) {
708 error_report("localaddr= is only valid with mcast= or udp=");
709 return -1;
710 }
42281ac9 711
bef8e8fe
LE
712 if (sock->has_fd) {
713 int fd;
42281ac9 714
a96ed02f 715 fd = monitor_handle_fd_param(cur_mon, sock->fd);
fc13fa00
SH
716 if (fd == -1) {
717 return -1;
718 }
719 qemu_set_nonblock(fd);
720 if (!net_socket_fd_init(peer, "socket", name, fd, 1)) {
42281ac9
MM
721 return -1;
722 }
bef8e8fe
LE
723 return 0;
724 }
42281ac9 725
bef8e8fe 726 if (sock->has_listen) {
d33d93b2 727 if (net_socket_listen_init(peer, "socket", name, sock->listen) == -1) {
42281ac9
MM
728 return -1;
729 }
bef8e8fe
LE
730 return 0;
731 }
42281ac9 732
bef8e8fe 733 if (sock->has_connect) {
d33d93b2 734 if (net_socket_connect_init(peer, "socket", name, sock->connect) ==
bef8e8fe 735 -1) {
42281ac9
MM
736 return -1;
737 }
bef8e8fe
LE
738 return 0;
739 }
42281ac9 740
bef8e8fe
LE
741 if (sock->has_mcast) {
742 /* if sock->localaddr is missing, it has been initialized to "all bits
743 * zero" */
d33d93b2 744 if (net_socket_mcast_init(peer, "socket", name, sock->mcast,
bef8e8fe 745 sock->localaddr) == -1) {
0e0e7fac
B
746 return -1;
747 }
bef8e8fe
LE
748 return 0;
749 }
0e0e7fac 750
bef8e8fe
LE
751 assert(sock->has_udp);
752 if (!sock->has_localaddr) {
753 error_report("localaddr= is mandatory with udp=");
754 return -1;
755 }
f0e3ac70 756 if (net_socket_udp_init(peer, "socket", name, sock->udp, sock->localaddr) ==
bef8e8fe 757 -1) {
42281ac9
MM
758 return -1;
759 }
42281ac9
MM
760 return 0;
761}