4 * Copyright (c) 2003-2008 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
24 #include "net/socket.h"
26 #include "config-host.h"
29 #include "qemu-char.h"
30 #include "qemu-common.h"
31 #include "qemu-error.h"
32 #include "qemu-option.h"
33 #include "qemu_socket.h"
35 typedef struct NetSocketState
{
38 int state
; /* 0 = getting length, 1 = getting data */
40 unsigned int packet_len
;
42 struct sockaddr_in dgram_dst
; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
45 typedef struct NetSocketListenState
{
50 } NetSocketListenState
;
52 /* XXX: we consider we can send the whole packet without blocking */
53 static ssize_t
net_socket_receive(VLANClientState
*nc
, const uint8_t *buf
, size_t size
)
55 NetSocketState
*s
= DO_UPCAST(NetSocketState
, nc
, nc
);
59 send_all(s
->fd
, (const uint8_t *)&len
, sizeof(len
));
60 return send_all(s
->fd
, buf
, size
);
63 static ssize_t
net_socket_receive_dgram(VLANClientState
*nc
, const uint8_t *buf
, size_t size
)
65 NetSocketState
*s
= DO_UPCAST(NetSocketState
, nc
, nc
);
67 return sendto(s
->fd
, (const void *)buf
, size
, 0,
68 (struct sockaddr
*)&s
->dgram_dst
, sizeof(s
->dgram_dst
));
71 static void net_socket_send(void *opaque
)
73 NetSocketState
*s
= opaque
;
79 size
= qemu_recv(s
->fd
, buf1
, sizeof(buf1
), 0);
82 if (err
!= EWOULDBLOCK
)
84 } else if (size
== 0) {
85 /* end of connection */
87 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
93 /* reassemble a packet from the network */
99 memcpy(s
->buf
+ s
->index
, buf
, l
);
105 s
->packet_len
= ntohl(*(uint32_t *)s
->buf
);
111 l
= s
->packet_len
- s
->index
;
114 if (s
->index
+ l
<= sizeof(s
->buf
)) {
115 memcpy(s
->buf
+ s
->index
, buf
, l
);
117 fprintf(stderr
, "serious error: oversized packet received,"
118 "connection terminated.\n");
126 if (s
->index
>= s
->packet_len
) {
127 qemu_send_packet(&s
->nc
, s
->buf
, s
->packet_len
);
136 static void net_socket_send_dgram(void *opaque
)
138 NetSocketState
*s
= opaque
;
141 size
= qemu_recv(s
->fd
, s
->buf
, sizeof(s
->buf
), 0);
145 /* end of connection */
146 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
149 qemu_send_packet(&s
->nc
, s
->buf
, size
);
152 static int net_socket_mcast_create(struct sockaddr_in
*mcastaddr
, struct in_addr
*localaddr
)
163 if (!IN_MULTICAST(ntohl(mcastaddr
->sin_addr
.s_addr
))) {
164 fprintf(stderr
, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
165 inet_ntoa(mcastaddr
->sin_addr
),
166 (int)ntohl(mcastaddr
->sin_addr
.s_addr
));
170 fd
= qemu_socket(PF_INET
, SOCK_DGRAM
, 0);
172 perror("socket(PF_INET, SOCK_DGRAM)");
177 ret
=setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
,
178 (const char *)&val
, sizeof(val
));
180 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
184 ret
= bind(fd
, (struct sockaddr
*)mcastaddr
, sizeof(*mcastaddr
));
190 /* Add host to multicast group */
191 imr
.imr_multiaddr
= mcastaddr
->sin_addr
;
193 imr
.imr_interface
= *localaddr
;
195 imr
.imr_interface
.s_addr
= htonl(INADDR_ANY
);
198 ret
= setsockopt(fd
, IPPROTO_IP
, IP_ADD_MEMBERSHIP
,
199 (const char *)&imr
, sizeof(struct ip_mreq
));
201 perror("setsockopt(IP_ADD_MEMBERSHIP)");
205 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
207 ret
=setsockopt(fd
, IPPROTO_IP
, IP_MULTICAST_LOOP
,
208 (const char *)&loop
, sizeof(loop
));
210 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
214 /* If a bind address is given, only send packets from that address */
215 if (localaddr
!= NULL
) {
216 ret
= setsockopt(fd
, IPPROTO_IP
, IP_MULTICAST_IF
,
217 (const char *)localaddr
, sizeof(*localaddr
));
219 perror("setsockopt(IP_MULTICAST_IF)");
224 socket_set_nonblock(fd
);
232 static void net_socket_cleanup(VLANClientState
*nc
)
234 NetSocketState
*s
= DO_UPCAST(NetSocketState
, nc
, nc
);
235 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
239 static NetClientInfo net_dgram_socket_info
= {
240 .type
= NET_CLIENT_TYPE_SOCKET
,
241 .size
= sizeof(NetSocketState
),
242 .receive
= net_socket_receive_dgram
,
243 .cleanup
= net_socket_cleanup
,
246 static NetSocketState
*net_socket_fd_init_dgram(VLANState
*vlan
,
249 int fd
, int is_connected
)
251 struct sockaddr_in saddr
;
257 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
258 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
259 * by ONLY ONE process: we must "clone" this dgram socket --jjo
263 if (getsockname(fd
, (struct sockaddr
*) &saddr
, &saddr_len
) == 0) {
265 if (saddr
.sin_addr
.s_addr
==0) {
266 fprintf(stderr
, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
270 /* clone dgram socket */
271 newfd
= net_socket_mcast_create(&saddr
, NULL
);
273 /* error already reported by net_socket_mcast_create() */
277 /* clone newfd to fd, close newfd */
282 fprintf(stderr
, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
283 fd
, strerror(errno
));
288 nc
= qemu_new_net_client(&net_dgram_socket_info
, vlan
, NULL
, model
, name
);
290 snprintf(nc
->info_str
, sizeof(nc
->info_str
),
291 "socket: fd=%d (%s mcast=%s:%d)",
292 fd
, is_connected
? "cloned" : "",
293 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
295 s
= DO_UPCAST(NetSocketState
, nc
, nc
);
299 qemu_set_fd_handler(s
->fd
, net_socket_send_dgram
, NULL
, s
);
301 /* mcast: save bound address as dst */
302 if (is_connected
) s
->dgram_dst
=saddr
;
307 static void net_socket_connect(void *opaque
)
309 NetSocketState
*s
= opaque
;
310 qemu_set_fd_handler(s
->fd
, net_socket_send
, NULL
, s
);
313 static NetClientInfo net_socket_info
= {
314 .type
= NET_CLIENT_TYPE_SOCKET
,
315 .size
= sizeof(NetSocketState
),
316 .receive
= net_socket_receive
,
317 .cleanup
= net_socket_cleanup
,
320 static NetSocketState
*net_socket_fd_init_stream(VLANState
*vlan
,
323 int fd
, int is_connected
)
328 nc
= qemu_new_net_client(&net_socket_info
, vlan
, NULL
, model
, name
);
330 snprintf(nc
->info_str
, sizeof(nc
->info_str
), "socket: fd=%d", fd
);
332 s
= DO_UPCAST(NetSocketState
, nc
, nc
);
337 net_socket_connect(s
);
339 qemu_set_fd_handler(s
->fd
, NULL
, net_socket_connect
, s
);
344 static NetSocketState
*net_socket_fd_init(VLANState
*vlan
,
345 const char *model
, const char *name
,
346 int fd
, int is_connected
)
348 int so_type
= -1, optlen
=sizeof(so_type
);
350 if(getsockopt(fd
, SOL_SOCKET
, SO_TYPE
, (char *)&so_type
,
351 (socklen_t
*)&optlen
)< 0) {
352 fprintf(stderr
, "qemu: error: getsockopt(SO_TYPE) for fd=%d failed\n", fd
);
357 return net_socket_fd_init_dgram(vlan
, model
, name
, fd
, is_connected
);
359 return net_socket_fd_init_stream(vlan
, model
, name
, fd
, is_connected
);
361 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
362 fprintf(stderr
, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type
, fd
);
363 return net_socket_fd_init_stream(vlan
, model
, name
, fd
, is_connected
);
368 static void net_socket_accept(void *opaque
)
370 NetSocketListenState
*s
= opaque
;
372 struct sockaddr_in saddr
;
378 fd
= qemu_accept(s
->fd
, (struct sockaddr
*)&saddr
, &len
);
379 if (fd
< 0 && errno
!= EINTR
) {
381 } else if (fd
>= 0) {
385 s1
= net_socket_fd_init(s
->vlan
, s
->model
, s
->name
, fd
, 1);
389 snprintf(s1
->nc
.info_str
, sizeof(s1
->nc
.info_str
),
390 "socket: connection from %s:%d",
391 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
395 static int net_socket_listen_init(VLANState
*vlan
,
398 const char *host_str
)
400 NetSocketListenState
*s
;
402 struct sockaddr_in saddr
;
404 if (parse_host_port(&saddr
, host_str
) < 0)
407 s
= g_malloc0(sizeof(NetSocketListenState
));
409 fd
= qemu_socket(PF_INET
, SOCK_STREAM
, 0);
414 socket_set_nonblock(fd
);
416 /* allow fast reuse */
418 setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, (const char *)&val
, sizeof(val
));
420 ret
= bind(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
431 s
->model
= g_strdup(model
);
432 s
->name
= name
? g_strdup(name
) : NULL
;
434 qemu_set_fd_handler(fd
, net_socket_accept
, NULL
, s
);
438 static int net_socket_connect_init(VLANState
*vlan
,
441 const char *host_str
)
444 int fd
, connected
, ret
, err
;
445 struct sockaddr_in saddr
;
447 if (parse_host_port(&saddr
, host_str
) < 0)
450 fd
= qemu_socket(PF_INET
, SOCK_STREAM
, 0);
455 socket_set_nonblock(fd
);
459 ret
= connect(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
461 err
= socket_error();
462 if (err
== EINTR
|| err
== EWOULDBLOCK
) {
463 } else if (err
== EINPROGRESS
) {
466 } else if (err
== WSAEALREADY
|| err
== WSAEINVAL
) {
479 s
= net_socket_fd_init(vlan
, model
, name
, fd
, connected
);
482 snprintf(s
->nc
.info_str
, sizeof(s
->nc
.info_str
),
483 "socket: connect to %s:%d",
484 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
488 static int net_socket_mcast_init(VLANState
*vlan
,
491 const char *host_str
,
492 const char *localaddr_str
)
496 struct sockaddr_in saddr
;
497 struct in_addr localaddr
, *param_localaddr
;
499 if (parse_host_port(&saddr
, host_str
) < 0)
502 if (localaddr_str
!= NULL
) {
503 if (inet_aton(localaddr_str
, &localaddr
) == 0)
505 param_localaddr
= &localaddr
;
507 param_localaddr
= NULL
;
510 fd
= net_socket_mcast_create(&saddr
, param_localaddr
);
514 s
= net_socket_fd_init(vlan
, model
, name
, fd
, 0);
518 s
->dgram_dst
= saddr
;
520 snprintf(s
->nc
.info_str
, sizeof(s
->nc
.info_str
),
521 "socket: mcast=%s:%d",
522 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
527 int net_init_socket(QemuOpts
*opts
,
532 if (qemu_opt_get(opts
, "fd")) {
535 if (qemu_opt_get(opts
, "listen") ||
536 qemu_opt_get(opts
, "connect") ||
537 qemu_opt_get(opts
, "mcast") ||
538 qemu_opt_get(opts
, "localaddr")) {
539 error_report("listen=, connect=, mcast= and localaddr= is invalid with fd=");
543 fd
= net_handle_fd_param(mon
, qemu_opt_get(opts
, "fd"));
548 if (!net_socket_fd_init(vlan
, "socket", name
, fd
, 1)) {
552 } else if (qemu_opt_get(opts
, "listen")) {
555 if (qemu_opt_get(opts
, "fd") ||
556 qemu_opt_get(opts
, "connect") ||
557 qemu_opt_get(opts
, "mcast") ||
558 qemu_opt_get(opts
, "localaddr")) {
559 error_report("fd=, connect=, mcast= and localaddr= is invalid with listen=");
563 listen
= qemu_opt_get(opts
, "listen");
565 if (net_socket_listen_init(vlan
, "socket", name
, listen
) == -1) {
568 } else if (qemu_opt_get(opts
, "connect")) {
571 if (qemu_opt_get(opts
, "fd") ||
572 qemu_opt_get(opts
, "listen") ||
573 qemu_opt_get(opts
, "mcast") ||
574 qemu_opt_get(opts
, "localaddr")) {
575 error_report("fd=, listen=, mcast= and localaddr= is invalid with connect=");
579 connect
= qemu_opt_get(opts
, "connect");
581 if (net_socket_connect_init(vlan
, "socket", name
, connect
) == -1) {
584 } else if (qemu_opt_get(opts
, "mcast")) {
585 const char *mcast
, *localaddr
;
587 if (qemu_opt_get(opts
, "fd") ||
588 qemu_opt_get(opts
, "connect") ||
589 qemu_opt_get(opts
, "listen")) {
590 error_report("fd=, connect= and listen= is invalid with mcast=");
594 mcast
= qemu_opt_get(opts
, "mcast");
595 localaddr
= qemu_opt_get(opts
, "localaddr");
597 if (net_socket_mcast_init(vlan
, "socket", name
, mcast
, localaddr
) == -1) {
601 error_report("-socket requires fd=, listen=, connect= or mcast=");