]> git.proxmox.com Git - mirror_qemu.git/blame - net/net.c
artist: Use human-readable variable names instead of reg_xxx
[mirror_qemu.git] / net / net.c
CommitLineData
63a01ef8
AL
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 */
e688df6b 24
2744d920 25#include "qemu/osdep.h"
d40cdb10 26
1422e32d 27#include "net/net.h"
fd9400b3
PB
28#include "clients.h"
29#include "hub.h"
a27bd6c7 30#include "hw/qdev-properties.h"
1422e32d 31#include "net/slirp.h"
d60b20cf 32#include "net/eth.h"
fd9400b3 33#include "util.h"
a245fc18 34
83c9089e 35#include "monitor/monitor.h"
f348b6d1 36#include "qemu/help_option.h"
9af23989 37#include "qapi/qapi-commands-net.h"
f9bb0c1f 38#include "qapi/qapi-visit-net.h"
452fcdbc 39#include "qapi/qmp/qdict.h"
cc7a8ea7 40#include "qapi/qmp/qerror.h"
d49b6836 41#include "qemu/error-report.h"
1de7afc9 42#include "qemu/sockets.h"
f348b6d1 43#include "qemu/cutils.h"
1de7afc9 44#include "qemu/config-file.h"
856dfd8a 45#include "qemu/ctype.h"
27eb3722 46#include "qemu/id.h"
1de7afc9 47#include "qemu/iov.h"
ad6f932f 48#include "qemu/qemu-print.h"
6a1751b7 49#include "qemu/main-loop.h"
922a01a0 50#include "qemu/option.h"
e688df6b 51#include "qapi/error.h"
6687b79d 52#include "qapi/opts-visitor.h"
54d31236 53#include "sysemu/runstate.h"
0c7af1a7 54#include "net/colo-compare.h"
fdccce45 55#include "net/filter.h"
aa9156f4 56#include "qapi/string-output-visitor.h"
511d2b14 57
2944e4ec
SW
58/* Net bridge is currently not supported for W32. */
59#if !defined(_WIN32)
60# define CONFIG_NET_BRIDGE
61#endif
62
ca77d85e 63static VMChangeStateEntry *net_change_state_entry;
4e68f7a0 64static QTAILQ_HEAD(, NetClientState) net_clients;
63a01ef8
AL
65
66/***********************************************************/
67/* network device redirectors */
68
bcd4dfd6
MZ
69int parse_host_port(struct sockaddr_in *saddr, const char *str,
70 Error **errp)
63a01ef8 71{
add99347 72 gchar **substrings;
63a01ef8 73 struct hostent *he;
add99347
SG
74 const char *addr, *p, *r;
75 int port, ret = 0;
63a01ef8 76
59292384
PM
77 memset(saddr, 0, sizeof(*saddr));
78
add99347
SG
79 substrings = g_strsplit(str, ":", 2);
80 if (!substrings || !substrings[0] || !substrings[1]) {
bcd4dfd6
MZ
81 error_setg(errp, "host address '%s' doesn't contain ':' "
82 "separating host from port", str);
add99347
SG
83 ret = -1;
84 goto out;
bcd4dfd6 85 }
add99347
SG
86
87 addr = substrings[0];
88 p = substrings[1];
89
63a01ef8 90 saddr->sin_family = AF_INET;
add99347 91 if (addr[0] == '\0') {
63a01ef8
AL
92 saddr->sin_addr.s_addr = 0;
93 } else {
add99347
SG
94 if (qemu_isdigit(addr[0])) {
95 if (!inet_aton(addr, &saddr->sin_addr)) {
bcd4dfd6 96 error_setg(errp, "host address '%s' is not a valid "
add99347
SG
97 "IPv4 address", addr);
98 ret = -1;
99 goto out;
bcd4dfd6 100 }
63a01ef8 101 } else {
add99347 102 he = gethostbyname(addr);
bcd4dfd6 103 if (he == NULL) {
add99347
SG
104 error_setg(errp, "can't resolve host address '%s'", addr);
105 ret = -1;
106 goto out;
bcd4dfd6 107 }
63a01ef8
AL
108 saddr->sin_addr = *(struct in_addr *)he->h_addr;
109 }
110 }
111 port = strtol(p, (char **)&r, 0);
bcd4dfd6
MZ
112 if (r == p) {
113 error_setg(errp, "port number '%s' is invalid", p);
add99347
SG
114 ret = -1;
115 goto out;
bcd4dfd6 116 }
63a01ef8 117 saddr->sin_port = htons(port);
add99347
SG
118
119out:
120 g_strfreev(substrings);
121 return ret;
63a01ef8
AL
122}
123
890ee6ab
SF
124char *qemu_mac_strdup_printf(const uint8_t *macaddr)
125{
126 return g_strdup_printf("%.2x:%.2x:%.2x:%.2x:%.2x:%.2x",
127 macaddr[0], macaddr[1], macaddr[2],
128 macaddr[3], macaddr[4], macaddr[5]);
129}
130
35277d14 131void qemu_format_nic_info_str(NetClientState *nc, uint8_t macaddr[6])
7cb7434b 132{
56e6f594
JW
133 snprintf(nc->info_str, sizeof(nc->info_str),
134 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
135 nc->model,
136 macaddr[0], macaddr[1], macaddr[2],
137 macaddr[3], macaddr[4], macaddr[5]);
7cb7434b
AL
138}
139
2bc22a58
SZ
140static int mac_table[256] = {0};
141
142static void qemu_macaddr_set_used(MACAddr *macaddr)
143{
144 int index;
145
146 for (index = 0x56; index < 0xFF; index++) {
147 if (macaddr->a[5] == index) {
148 mac_table[index]++;
149 }
150 }
151}
152
153static void qemu_macaddr_set_free(MACAddr *macaddr)
154{
155 int index;
156 static const MACAddr base = { .a = { 0x52, 0x54, 0x00, 0x12, 0x34, 0 } };
157
158 if (memcmp(macaddr->a, &base.a, (sizeof(base.a) - 1)) != 0) {
159 return;
160 }
161 for (index = 0x56; index < 0xFF; index++) {
162 if (macaddr->a[5] == index) {
163 mac_table[index]--;
164 }
165 }
166}
167
168static int qemu_macaddr_get_free(void)
169{
170 int index;
171
172 for (index = 0x56; index < 0xFF; index++) {
173 if (mac_table[index] == 0) {
174 return index;
175 }
176 }
177
178 return -1;
179}
180
76d32cba
GH
181void qemu_macaddr_default_if_unset(MACAddr *macaddr)
182{
76d32cba 183 static const MACAddr zero = { .a = { 0,0,0,0,0,0 } };
2bc22a58
SZ
184 static const MACAddr base = { .a = { 0x52, 0x54, 0x00, 0x12, 0x34, 0 } };
185
186 if (memcmp(macaddr, &zero, sizeof(zero)) != 0) {
187 if (memcmp(macaddr->a, &base.a, (sizeof(base.a) - 1)) != 0) {
188 return;
189 } else {
190 qemu_macaddr_set_used(macaddr);
191 return;
192 }
193 }
76d32cba 194
76d32cba
GH
195 macaddr->a[0] = 0x52;
196 macaddr->a[1] = 0x54;
197 macaddr->a[2] = 0x00;
198 macaddr->a[3] = 0x12;
199 macaddr->a[4] = 0x34;
2bc22a58
SZ
200 macaddr->a[5] = qemu_macaddr_get_free();
201 qemu_macaddr_set_used(macaddr);
76d32cba
GH
202}
203
d33d93b2
SH
204/**
205 * Generate a name for net client
206 *
c963530a 207 * Only net clients created with the legacy -net option and NICs need this.
d33d93b2 208 */
35277d14 209static char *assign_name(NetClientState *nc1, const char *model)
676cff29 210{
35277d14 211 NetClientState *nc;
676cff29
AL
212 int id = 0;
213
35277d14
SH
214 QTAILQ_FOREACH(nc, &net_clients, next) {
215 if (nc == nc1) {
d33d93b2 216 continue;
5610c3aa 217 }
c963530a 218 if (strcmp(nc->model, model) == 0) {
53e51d85
MA
219 id++;
220 }
221 }
222
4bf2c138 223 return g_strdup_printf("%s.%d", model, id);
676cff29
AL
224}
225
f7860455
JW
226static void qemu_net_client_destructor(NetClientState *nc)
227{
228 g_free(nc);
229}
25c01bd1
JW
230static ssize_t qemu_deliver_packet_iov(NetClientState *sender,
231 unsigned flags,
232 const struct iovec *iov,
233 int iovcnt,
234 void *opaque);
f7860455 235
18a1541a
JW
236static void qemu_net_client_setup(NetClientState *nc,
237 NetClientInfo *info,
238 NetClientState *peer,
239 const char *model,
f7860455 240 const char *name,
2f849dbd
JW
241 NetClientDestructor *destructor,
242 bool is_datapath)
63a01ef8 243{
35277d14
SH
244 nc->info = info;
245 nc->model = g_strdup(model);
45460d1a 246 if (name) {
35277d14 247 nc->name = g_strdup(name);
45460d1a 248 } else {
35277d14 249 nc->name = assign_name(nc, model);
45460d1a 250 }
5610c3aa 251
ab5f3f84
SH
252 if (peer) {
253 assert(!peer->peer);
35277d14
SH
254 nc->peer = peer;
255 peer->peer = nc;
d80b9fc6 256 }
35277d14 257 QTAILQ_INSERT_TAIL(&net_clients, nc, next);
63a01ef8 258
3e033a46 259 nc->incoming_queue = qemu_new_net_queue(qemu_deliver_packet_iov, nc);
f7860455 260 nc->destructor = destructor;
2f849dbd 261 nc->is_datapath = is_datapath;
fdccce45 262 QTAILQ_INIT(&nc->filters);
18a1541a
JW
263}
264
265NetClientState *qemu_new_net_client(NetClientInfo *info,
266 NetClientState *peer,
267 const char *model,
268 const char *name)
269{
270 NetClientState *nc;
271
272 assert(info->size >= sizeof(NetClientState));
273
274 nc = g_malloc0(info->size);
f7860455 275 qemu_net_client_setup(nc, info, peer, model, name,
2f849dbd
JW
276 qemu_net_client_destructor, true);
277
278 return nc;
279}
280
281NetClientState *qemu_new_net_control_client(NetClientInfo *info,
282 NetClientState *peer,
283 const char *model,
284 const char *name)
285{
286 NetClientState *nc;
287
288 assert(info->size >= sizeof(NetClientState));
289
290 nc = g_malloc0(info->size);
291 qemu_net_client_setup(nc, info, peer, model, name,
292 qemu_net_client_destructor, false);
18a1541a 293
35277d14 294 return nc;
63a01ef8
AL
295}
296
ebef2c09
MM
297NICState *qemu_new_nic(NetClientInfo *info,
298 NICConf *conf,
299 const char *model,
300 const char *name,
301 void *opaque)
302{
1ceef9f2 303 NetClientState **peers = conf->peers.ncs;
ebef2c09 304 NICState *nic;
575a1c0e 305 int i, queues = MAX(1, conf->peers.queues);
ebef2c09 306
f394b2e2 307 assert(info->type == NET_CLIENT_DRIVER_NIC);
ebef2c09
MM
308 assert(info->size >= sizeof(NICState));
309
f6b26cf2
JW
310 nic = g_malloc0(info->size + sizeof(NetClientState) * queues);
311 nic->ncs = (void *)nic + info->size;
ebef2c09
MM
312 nic->conf = conf;
313 nic->opaque = opaque;
314
f6b26cf2
JW
315 for (i = 0; i < queues; i++) {
316 qemu_net_client_setup(&nic->ncs[i], info, peers[i], model, name,
2f849dbd 317 NULL, true);
1ceef9f2
JW
318 nic->ncs[i].queue_index = i;
319 }
320
ebef2c09
MM
321 return nic;
322}
323
1ceef9f2
JW
324NetClientState *qemu_get_subqueue(NICState *nic, int queue_index)
325{
f6b26cf2 326 return nic->ncs + queue_index;
1ceef9f2
JW
327}
328
b356f76d
JW
329NetClientState *qemu_get_queue(NICState *nic)
330{
1ceef9f2 331 return qemu_get_subqueue(nic, 0);
b356f76d
JW
332}
333
cc1f0f45
JW
334NICState *qemu_get_nic(NetClientState *nc)
335{
1ceef9f2
JW
336 NetClientState *nc0 = nc - nc->queue_index;
337
f6b26cf2 338 return (NICState *)((void *)nc0 - nc->info->size);
cc1f0f45
JW
339}
340
341void *qemu_get_nic_opaque(NetClientState *nc)
342{
343 NICState *nic = qemu_get_nic(nc);
344
345 return nic->opaque;
346}
347
0165daae
CL
348NetClientState *qemu_get_peer(NetClientState *nc, int queue_index)
349{
350 assert(nc != NULL);
351 NetClientState *ncs = nc + queue_index;
352 return ncs->peer;
353}
354
b20c6b9e 355static void qemu_cleanup_net_client(NetClientState *nc)
63a01ef8 356{
35277d14 357 QTAILQ_REMOVE(&net_clients, nc, next);
63a01ef8 358
cc2a9043
AF
359 if (nc->info->cleanup) {
360 nc->info->cleanup(nc);
361 }
a083a89d 362}
5610c3aa 363
b20c6b9e 364static void qemu_free_net_client(NetClientState *nc)
a083a89d 365{
067404be
JK
366 if (nc->incoming_queue) {
367 qemu_del_net_queue(nc->incoming_queue);
a005d073 368 }
35277d14
SH
369 if (nc->peer) {
370 nc->peer->peer = NULL;
a083a89d 371 }
35277d14
SH
372 g_free(nc->name);
373 g_free(nc->model);
f7860455
JW
374 if (nc->destructor) {
375 nc->destructor(nc);
376 }
63a01ef8
AL
377}
378
b20c6b9e 379void qemu_del_net_client(NetClientState *nc)
a083a89d 380{
1ceef9f2
JW
381 NetClientState *ncs[MAX_QUEUE_NUM];
382 int queues, i;
fdccce45 383 NetFilterState *nf, *next;
1ceef9f2 384
f394b2e2 385 assert(nc->info->type != NET_CLIENT_DRIVER_NIC);
7fb43911 386
1ceef9f2
JW
387 /* If the NetClientState belongs to a multiqueue backend, we will change all
388 * other NetClientStates also.
389 */
390 queues = qemu_find_net_clients_except(nc->name, ncs,
f394b2e2 391 NET_CLIENT_DRIVER_NIC,
1ceef9f2
JW
392 MAX_QUEUE_NUM);
393 assert(queues != 0);
394
fdccce45
YH
395 QTAILQ_FOREACH_SAFE(nf, &nc->filters, next, next) {
396 object_unparent(OBJECT(nf));
397 }
398
a083a89d 399 /* If there is a peer NIC, delete and cleanup client, but do not free. */
f394b2e2 400 if (nc->peer && nc->peer->info->type == NET_CLIENT_DRIVER_NIC) {
cc1f0f45 401 NICState *nic = qemu_get_nic(nc->peer);
a083a89d
MT
402 if (nic->peer_deleted) {
403 return;
404 }
405 nic->peer_deleted = true;
1ceef9f2
JW
406
407 for (i = 0; i < queues; i++) {
408 ncs[i]->peer->link_down = true;
409 }
410
35277d14
SH
411 if (nc->peer->info->link_status_changed) {
412 nc->peer->info->link_status_changed(nc->peer);
a083a89d 413 }
1ceef9f2
JW
414
415 for (i = 0; i < queues; i++) {
416 qemu_cleanup_net_client(ncs[i]);
417 }
418
a083a89d
MT
419 return;
420 }
421
1ceef9f2
JW
422 for (i = 0; i < queues; i++) {
423 qemu_cleanup_net_client(ncs[i]);
424 qemu_free_net_client(ncs[i]);
425 }
948ecf21
JW
426}
427
428void qemu_del_nic(NICState *nic)
429{
575a1c0e 430 int i, queues = MAX(nic->conf->peers.queues, 1);
1ceef9f2 431
2bc22a58
SZ
432 qemu_macaddr_set_free(&nic->conf->macaddr);
433
d2abc563
YB
434 for (i = 0; i < queues; i++) {
435 NetClientState *nc = qemu_get_subqueue(nic, i);
436 /* If this is a peer NIC and peer has already been deleted, free it now. */
437 if (nic->peer_deleted) {
438 qemu_free_net_client(nc->peer);
439 } else if (nc->peer) {
440 /* if there are RX packets pending, complete them */
441 qemu_purge_queued_packets(nc->peer);
1a609520
JK
442 }
443 }
1a609520 444
1ceef9f2
JW
445 for (i = queues - 1; i >= 0; i--) {
446 NetClientState *nc = qemu_get_subqueue(nic, i);
447
448 qemu_cleanup_net_client(nc);
449 qemu_free_net_client(nc);
450 }
f6b26cf2
JW
451
452 g_free(nic);
1a609520
JK
453}
454
57f9ef17
MM
455void qemu_foreach_nic(qemu_nic_foreach func, void *opaque)
456{
4e68f7a0 457 NetClientState *nc;
57f9ef17 458
94878994 459 QTAILQ_FOREACH(nc, &net_clients, next) {
f394b2e2 460 if (nc->info->type == NET_CLIENT_DRIVER_NIC) {
1ceef9f2
JW
461 if (nc->queue_index == 0) {
462 func(qemu_get_nic(nc), opaque);
463 }
57f9ef17
MM
464 }
465 }
57f9ef17
MM
466}
467
d6085e3a 468bool qemu_has_ufo(NetClientState *nc)
1f55ac45 469{
d6085e3a 470 if (!nc || !nc->info->has_ufo) {
1f55ac45
VM
471 return false;
472 }
473
d6085e3a 474 return nc->info->has_ufo(nc);
1f55ac45
VM
475}
476
d6085e3a 477bool qemu_has_vnet_hdr(NetClientState *nc)
1f55ac45 478{
d6085e3a 479 if (!nc || !nc->info->has_vnet_hdr) {
1f55ac45
VM
480 return false;
481 }
482
d6085e3a 483 return nc->info->has_vnet_hdr(nc);
1f55ac45
VM
484}
485
d6085e3a 486bool qemu_has_vnet_hdr_len(NetClientState *nc, int len)
1f55ac45 487{
d6085e3a 488 if (!nc || !nc->info->has_vnet_hdr_len) {
1f55ac45
VM
489 return false;
490 }
491
d6085e3a 492 return nc->info->has_vnet_hdr_len(nc, len);
1f55ac45
VM
493}
494
d6085e3a 495void qemu_using_vnet_hdr(NetClientState *nc, bool enable)
1f55ac45 496{
d6085e3a 497 if (!nc || !nc->info->using_vnet_hdr) {
1f55ac45
VM
498 return;
499 }
500
d6085e3a 501 nc->info->using_vnet_hdr(nc, enable);
1f55ac45
VM
502}
503
d6085e3a 504void qemu_set_offload(NetClientState *nc, int csum, int tso4, int tso6,
1f55ac45
VM
505 int ecn, int ufo)
506{
d6085e3a 507 if (!nc || !nc->info->set_offload) {
1f55ac45
VM
508 return;
509 }
510
d6085e3a 511 nc->info->set_offload(nc, csum, tso4, tso6, ecn, ufo);
1f55ac45
VM
512}
513
d6085e3a 514void qemu_set_vnet_hdr_len(NetClientState *nc, int len)
1f55ac45 515{
d6085e3a 516 if (!nc || !nc->info->set_vnet_hdr_len) {
1f55ac45
VM
517 return;
518 }
519
d6b732e9 520 nc->vnet_hdr_len = len;
d6085e3a 521 nc->info->set_vnet_hdr_len(nc, len);
1f55ac45
VM
522}
523
c80cd6bb
GK
524int qemu_set_vnet_le(NetClientState *nc, bool is_le)
525{
e03b5686 526#if HOST_BIG_ENDIAN
c80cd6bb
GK
527 if (!nc || !nc->info->set_vnet_le) {
528 return -ENOSYS;
529 }
530
531 return nc->info->set_vnet_le(nc, is_le);
052bd52f
MT
532#else
533 return 0;
534#endif
c80cd6bb
GK
535}
536
537int qemu_set_vnet_be(NetClientState *nc, bool is_be)
538{
e03b5686 539#if HOST_BIG_ENDIAN
052bd52f
MT
540 return 0;
541#else
c80cd6bb
GK
542 if (!nc || !nc->info->set_vnet_be) {
543 return -ENOSYS;
544 }
545
546 return nc->info->set_vnet_be(nc, is_be);
052bd52f 547#endif
c80cd6bb
GK
548}
549
705df546
JW
550int qemu_can_receive_packet(NetClientState *nc)
551{
552 if (nc->receive_disabled) {
553 return 0;
554 } else if (nc->info->can_receive &&
555 !nc->info->can_receive(nc)) {
556 return 0;
557 }
558 return 1;
559}
560
4e68f7a0 561int qemu_can_send_packet(NetClientState *sender)
63a01ef8 562{
e1d64c08
HZ
563 int vm_running = runstate_is_running();
564
565 if (!vm_running) {
566 return 0;
567 }
568
a005d073 569 if (!sender->peer) {
d80b9fc6
MM
570 return 1;
571 }
572
705df546 573 return qemu_can_receive_packet(sender->peer);
63a01ef8
AL
574}
575
e64c770d
YH
576static ssize_t filter_receive_iov(NetClientState *nc,
577 NetFilterDirection direction,
578 NetClientState *sender,
579 unsigned flags,
580 const struct iovec *iov,
581 int iovcnt,
582 NetPacketSent *sent_cb)
583{
584 ssize_t ret = 0;
585 NetFilterState *nf = NULL;
586
25aaadf0
LZ
587 if (direction == NET_FILTER_DIRECTION_TX) {
588 QTAILQ_FOREACH(nf, &nc->filters, next) {
589 ret = qemu_netfilter_receive(nf, direction, sender, flags, iov,
590 iovcnt, sent_cb);
591 if (ret) {
592 return ret;
593 }
594 }
595 } else {
eae3eb3e 596 QTAILQ_FOREACH_REVERSE(nf, &nc->filters, next) {
25aaadf0
LZ
597 ret = qemu_netfilter_receive(nf, direction, sender, flags, iov,
598 iovcnt, sent_cb);
599 if (ret) {
600 return ret;
601 }
e64c770d
YH
602 }
603 }
604
605 return ret;
606}
607
608static ssize_t filter_receive(NetClientState *nc,
609 NetFilterDirection direction,
610 NetClientState *sender,
611 unsigned flags,
612 const uint8_t *data,
613 size_t size,
614 NetPacketSent *sent_cb)
615{
616 struct iovec iov = {
617 .iov_base = (void *)data,
618 .iov_len = size
619 };
620
621 return filter_receive_iov(nc, direction, sender, flags, &iov, 1, sent_cb);
622}
623
35277d14 624void qemu_purge_queued_packets(NetClientState *nc)
8cad5516 625{
35277d14 626 if (!nc->peer) {
d80b9fc6 627 return;
9a6ecb30 628 }
d80b9fc6 629
067404be 630 qemu_net_queue_purge(nc->peer->incoming_queue, nc);
8cad5516
MM
631}
632
ca77d85e 633void qemu_flush_or_purge_queued_packets(NetClientState *nc, bool purge)
e94667b9 634{
35277d14 635 nc->receive_disabled = 0;
9a6ecb30 636
f394b2e2 637 if (nc->peer && nc->peer->info->type == NET_CLIENT_DRIVER_HUBPORT) {
199ee608
LR
638 if (net_hub_flush(nc->peer)) {
639 qemu_notify_event();
640 }
199ee608 641 }
067404be 642 if (qemu_net_queue_flush(nc->incoming_queue)) {
987a9b48
PB
643 /* We emptied the queue successfully, signal to the IO thread to repoll
644 * the file descriptor (for tap, for example).
645 */
646 qemu_notify_event();
ca77d85e
MT
647 } else if (purge) {
648 /* Unable to empty the queue, purge remaining packets */
5fe19fb8 649 qemu_net_queue_purge(nc->incoming_queue, nc->peer);
987a9b48 650 }
e94667b9
MM
651}
652
ca77d85e
MT
653void qemu_flush_queued_packets(NetClientState *nc)
654{
655 qemu_flush_or_purge_queued_packets(nc, false);
656}
657
4e68f7a0 658static ssize_t qemu_send_packet_async_with_flags(NetClientState *sender,
ca77d175
MM
659 unsigned flags,
660 const uint8_t *buf, int size,
661 NetPacketSent *sent_cb)
764a4d1d 662{
9a6ecb30 663 NetQueue *queue;
e64c770d 664 int ret;
436e5e53 665
63a01ef8 666#ifdef DEBUG_NET
d80b9fc6 667 printf("qemu_send_packet_async:\n");
b42581f5 668 qemu_hexdump(stdout, "net", buf, size);
63a01ef8 669#endif
f3b6c7fc 670
a005d073 671 if (sender->link_down || !sender->peer) {
9a6ecb30
MM
672 return size;
673 }
674
e64c770d
YH
675 /* Let filters handle the packet first */
676 ret = filter_receive(sender, NET_FILTER_DIRECTION_TX,
677 sender, flags, buf, size, sent_cb);
678 if (ret) {
679 return ret;
680 }
681
682 ret = filter_receive(sender->peer, NET_FILTER_DIRECTION_RX,
683 sender, flags, buf, size, sent_cb);
684 if (ret) {
685 return ret;
686 }
687
067404be 688 queue = sender->peer->incoming_queue;
9a6ecb30 689
ca77d175
MM
690 return qemu_net_queue_send(queue, sender, flags, buf, size, sent_cb);
691}
692
4e68f7a0 693ssize_t qemu_send_packet_async(NetClientState *sender,
ca77d175
MM
694 const uint8_t *buf, int size,
695 NetPacketSent *sent_cb)
696{
697 return qemu_send_packet_async_with_flags(sender, QEMU_NET_PACKET_FLAG_NONE,
698 buf, size, sent_cb);
f3b6c7fc
MM
699}
700
625a526b 701ssize_t qemu_send_packet(NetClientState *nc, const uint8_t *buf, int size)
f3b6c7fc 702{
625a526b 703 return qemu_send_packet_async(nc, buf, size, NULL);
63a01ef8
AL
704}
705
705df546
JW
706ssize_t qemu_receive_packet(NetClientState *nc, const uint8_t *buf, int size)
707{
708 if (!qemu_can_receive_packet(nc)) {
709 return 0;
710 }
711
712 return qemu_net_queue_receive(nc->incoming_queue, buf, size);
713}
714
715ssize_t qemu_receive_packet_iov(NetClientState *nc, const struct iovec *iov,
716 int iovcnt)
717{
718 if (!qemu_can_receive_packet(nc)) {
719 return 0;
720 }
721
722 return qemu_net_queue_receive_iov(nc->incoming_queue, iov, iovcnt);
723}
724
35277d14 725ssize_t qemu_send_packet_raw(NetClientState *nc, const uint8_t *buf, int size)
ca77d175 726{
35277d14 727 return qemu_send_packet_async_with_flags(nc, QEMU_NET_PACKET_FLAG_RAW,
ca77d175
MM
728 buf, size, NULL);
729}
730
35277d14 731static ssize_t nc_sendv_compat(NetClientState *nc, const struct iovec *iov,
fefe2a78 732 int iovcnt, unsigned flags)
fbe78f4f 733{
74044c8f 734 uint8_t *buf = NULL;
fefe2a78 735 uint8_t *buffer;
ce053661 736 size_t offset;
74044c8f 737 ssize_t ret;
fbe78f4f 738
fefe2a78
YH
739 if (iovcnt == 1) {
740 buffer = iov[0].iov_base;
741 offset = iov[0].iov_len;
742 } else {
47f9f158
PL
743 offset = iov_size(iov, iovcnt);
744 if (offset > NET_BUFSIZE) {
745 return -1;
746 }
747 buf = g_malloc(offset);
fefe2a78 748 buffer = buf;
47f9f158 749 offset = iov_to_buf(iov, iovcnt, 0, buf, offset);
fefe2a78 750 }
fbe78f4f 751
fefe2a78 752 if (flags & QEMU_NET_PACKET_FLAG_RAW && nc->info->receive_raw) {
74044c8f 753 ret = nc->info->receive_raw(nc, buffer, offset);
fefe2a78 754 } else {
74044c8f 755 ret = nc->info->receive(nc, buffer, offset);
fefe2a78 756 }
74044c8f
PD
757
758 g_free(buf);
759 return ret;
fbe78f4f
AL
760}
761
25c01bd1
JW
762static ssize_t qemu_deliver_packet_iov(NetClientState *sender,
763 unsigned flags,
764 const struct iovec *iov,
765 int iovcnt,
766 void *opaque)
9a6ecb30 767{
35277d14 768 NetClientState *nc = opaque;
c67f5dc1 769 int ret;
9a6ecb30 770
1592a994 771
35277d14 772 if (nc->link_down) {
25c01bd1 773 return iov_size(iov, iovcnt);
9a6ecb30
MM
774 }
775
c67f5dc1
SH
776 if (nc->receive_disabled) {
777 return 0;
778 }
779
ca1ee3d6 780 if (nc->info->receive_iov && !(flags & QEMU_NET_PACKET_FLAG_RAW)) {
c67f5dc1 781 ret = nc->info->receive_iov(nc, iov, iovcnt);
9a6ecb30 782 } else {
fefe2a78 783 ret = nc_sendv_compat(nc, iov, iovcnt, flags);
c67f5dc1
SH
784 }
785
786 if (ret == 0) {
787 nc->receive_disabled = 1;
e94667b9 788 }
c67f5dc1
SH
789
790 return ret;
e94667b9
MM
791}
792
4e68f7a0 793ssize_t qemu_sendv_packet_async(NetClientState *sender,
f3b6c7fc
MM
794 const struct iovec *iov, int iovcnt,
795 NetPacketSent *sent_cb)
e94667b9 796{
9a6ecb30 797 NetQueue *queue;
25c01bd1 798 size_t size = iov_size(iov, iovcnt);
e64c770d 799 int ret;
9a6ecb30 800
25c01bd1
JW
801 if (size > NET_BUFSIZE) {
802 return size;
803 }
804
a005d073 805 if (sender->link_down || !sender->peer) {
25c01bd1 806 return size;
e94667b9
MM
807 }
808
e64c770d
YH
809 /* Let filters handle the packet first */
810 ret = filter_receive_iov(sender, NET_FILTER_DIRECTION_TX, sender,
811 QEMU_NET_PACKET_FLAG_NONE, iov, iovcnt, sent_cb);
812 if (ret) {
813 return ret;
814 }
815
816 ret = filter_receive_iov(sender->peer, NET_FILTER_DIRECTION_RX, sender,
817 QEMU_NET_PACKET_FLAG_NONE, iov, iovcnt, sent_cb);
818 if (ret) {
819 return ret;
820 }
821
067404be 822 queue = sender->peer->incoming_queue;
9a6ecb30 823
c0b8e49c
MM
824 return qemu_net_queue_send_iov(queue, sender,
825 QEMU_NET_PACKET_FLAG_NONE,
826 iov, iovcnt, sent_cb);
fbe78f4f
AL
827}
828
f3b6c7fc 829ssize_t
35277d14 830qemu_sendv_packet(NetClientState *nc, const struct iovec *iov, int iovcnt)
f3b6c7fc 831{
35277d14 832 return qemu_sendv_packet_async(nc, iov, iovcnt, NULL);
63a01ef8
AL
833}
834
4e68f7a0 835NetClientState *qemu_find_netdev(const char *id)
5869c4d5 836{
35277d14 837 NetClientState *nc;
5869c4d5 838
35277d14 839 QTAILQ_FOREACH(nc, &net_clients, next) {
f394b2e2 840 if (nc->info->type == NET_CLIENT_DRIVER_NIC)
85dde9a9 841 continue;
35277d14
SH
842 if (!strcmp(nc->name, id)) {
843 return nc;
5869c4d5
MM
844 }
845 }
846
847 return NULL;
848}
849
6c51ae73 850int qemu_find_net_clients_except(const char *id, NetClientState **ncs,
f394b2e2 851 NetClientDriver type, int max)
6c51ae73
JW
852{
853 NetClientState *nc;
854 int ret = 0;
855
856 QTAILQ_FOREACH(nc, &net_clients, next) {
857 if (nc->info->type == type) {
858 continue;
859 }
40d19394 860 if (!id || !strcmp(nc->name, id)) {
6c51ae73
JW
861 if (ret < max) {
862 ncs[ret] = nc;
863 }
864 ret++;
865 }
866 }
867
868 return ret;
869}
870
7697079b
AL
871static int nic_get_free_idx(void)
872{
873 int index;
874
875 for (index = 0; index < MAX_NICS; index++)
876 if (!nd_table[index].used)
877 return index;
878 return -1;
879}
880
07caea31
MA
881int qemu_show_nic_models(const char *arg, const char *const *models)
882{
883 int i;
884
c8057f95 885 if (!arg || !is_help_option(arg)) {
07caea31 886 return 0;
c8057f95 887 }
07caea31 888
7b71e03a
TH
889 printf("Supported NIC models:\n");
890 for (i = 0 ; models[i]; i++) {
891 printf("%s\n", models[i]);
892 }
07caea31
MA
893 return 1;
894}
895
d07f22c5
AL
896void qemu_check_nic_model(NICInfo *nd, const char *model)
897{
898 const char *models[2];
899
900 models[0] = model;
901 models[1] = NULL;
902
07caea31
MA
903 if (qemu_show_nic_models(nd->model, models))
904 exit(0);
905 if (qemu_find_nic_model(nd, models, model) < 0)
906 exit(1);
d07f22c5
AL
907}
908
07caea31
MA
909int qemu_find_nic_model(NICInfo *nd, const char * const *models,
910 const char *default_model)
d07f22c5 911{
07caea31 912 int i;
d07f22c5
AL
913
914 if (!nd->model)
7267c094 915 nd->model = g_strdup(default_model);
d07f22c5 916
07caea31
MA
917 for (i = 0 ; models[i]; i++) {
918 if (strcmp(nd->model, models[i]) == 0)
919 return i;
d07f22c5
AL
920 }
921
6daf194d 922 error_report("Unsupported NIC model: %s", nd->model);
07caea31 923 return -1;
d07f22c5
AL
924}
925
cebea510 926static int net_init_nic(const Netdev *netdev, const char *name,
a30ecde6 927 NetClientState *peer, Error **errp)
f83c6e10
MM
928{
929 int idx;
930 NICInfo *nd;
2456f36f
LE
931 const NetLegacyNicOptions *nic;
932
f394b2e2
EB
933 assert(netdev->type == NET_CLIENT_DRIVER_NIC);
934 nic = &netdev->u.nic;
f83c6e10
MM
935
936 idx = nic_get_free_idx();
937 if (idx == -1 || nb_nics >= MAX_NICS) {
66308868 938 error_setg(errp, "too many NICs");
f83c6e10
MM
939 return -1;
940 }
941
942 nd = &nd_table[idx];
943
944 memset(nd, 0, sizeof(*nd));
945
2456f36f
LE
946 if (nic->has_netdev) {
947 nd->netdev = qemu_find_netdev(nic->netdev);
5869c4d5 948 if (!nd->netdev) {
66308868 949 error_setg(errp, "netdev '%s' not found", nic->netdev);
5869c4d5
MM
950 return -1;
951 }
952 } else {
d33d93b2
SH
953 assert(peer);
954 nd->netdev = peer;
5869c4d5 955 }
c64f50d1 956 nd->name = g_strdup(name);
2456f36f
LE
957 if (nic->has_model) {
958 nd->model = g_strdup(nic->model);
f83c6e10 959 }
2456f36f
LE
960 if (nic->has_addr) {
961 nd->devaddr = g_strdup(nic->addr);
f83c6e10
MM
962 }
963
2456f36f
LE
964 if (nic->has_macaddr &&
965 net_parse_macaddr(nd->macaddr.a, nic->macaddr) < 0) {
66308868 966 error_setg(errp, "invalid syntax for ethernet address");
f83c6e10
MM
967 return -1;
968 }
d60b20cf
DK
969 if (nic->has_macaddr &&
970 is_multicast_ether_addr(nd->macaddr.a)) {
66308868
MA
971 error_setg(errp,
972 "NIC cannot have multicast MAC address (odd 1st byte)");
d60b20cf
DK
973 return -1;
974 }
6eed1856 975 qemu_macaddr_default_if_unset(&nd->macaddr);
f83c6e10 976
2456f36f
LE
977 if (nic->has_vectors) {
978 if (nic->vectors > 0x7ffffff) {
66308868 979 error_setg(errp, "invalid # of vectors: %"PRIu32, nic->vectors);
2456f36f
LE
980 return -1;
981 }
982 nd->nvectors = nic->vectors;
983 } else {
984 nd->nvectors = DEV_NVECTORS_UNSPECIFIED;
f83c6e10
MM
985 }
986
987 nd->used = 1;
f83c6e10
MM
988 nb_nics++;
989
990 return idx;
991}
992
6687b79d 993
f394b2e2 994static int (* const net_client_init_fun[NET_CLIENT_DRIVER__MAX])(
cebea510 995 const Netdev *netdev,
6687b79d 996 const char *name,
a30ecde6 997 NetClientState *peer, Error **errp) = {
f394b2e2 998 [NET_CLIENT_DRIVER_NIC] = net_init_nic,
ec302ffd 999#ifdef CONFIG_SLIRP
f394b2e2 1000 [NET_CLIENT_DRIVER_USER] = net_init_slirp,
2944e4ec 1001#endif
f394b2e2
EB
1002 [NET_CLIENT_DRIVER_TAP] = net_init_tap,
1003 [NET_CLIENT_DRIVER_SOCKET] = net_init_socket,
dd51058d 1004#ifdef CONFIG_VDE
f394b2e2 1005 [NET_CLIENT_DRIVER_VDE] = net_init_vde,
58952137
VM
1006#endif
1007#ifdef CONFIG_NETMAP
f394b2e2 1008 [NET_CLIENT_DRIVER_NETMAP] = net_init_netmap,
dd51058d 1009#endif
2944e4ec 1010#ifdef CONFIG_NET_BRIDGE
f394b2e2 1011 [NET_CLIENT_DRIVER_BRIDGE] = net_init_bridge,
6687b79d 1012#endif
f394b2e2 1013 [NET_CLIENT_DRIVER_HUBPORT] = net_init_hubport,
56f41de7 1014#ifdef CONFIG_VHOST_NET_USER
f394b2e2 1015 [NET_CLIENT_DRIVER_VHOST_USER] = net_init_vhost_user,
03ce5744 1016#endif
1e0a84ea
CL
1017#ifdef CONFIG_VHOST_NET_VDPA
1018 [NET_CLIENT_DRIVER_VHOST_VDPA] = net_init_vhost_vdpa,
1019#endif
015a33bd 1020#ifdef CONFIG_L2TPV3
f394b2e2 1021 [NET_CLIENT_DRIVER_L2TPV3] = net_init_l2tpv3,
3fb69aa1 1022#endif
f83c6e10
MM
1023};
1024
6687b79d 1025
71830d84 1026static int net_client_init1(const Netdev *netdev, bool is_netdev, Error **errp)
f83c6e10 1027{
4ef0defb 1028 NetClientState *peer = NULL;
831734cc 1029 NetClientState *nc;
f83c6e10 1030
5294e2c7 1031 if (is_netdev) {
857d2087 1032 if (netdev->type == NET_CLIENT_DRIVER_NIC ||
f394b2e2 1033 !net_client_init_fun[netdev->type]) {
c6bd8c70
MA
1034 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "type",
1035 "a netdev backend type");
f6b134ac
MM
1036 return -1;
1037 }
6687b79d 1038 } else {
71830d84 1039 if (netdev->type == NET_CLIENT_DRIVER_NONE) {
d139e9a6 1040 return 0; /* nothing to do */
1e81aba5 1041 }
71830d84
TH
1042 if (netdev->type == NET_CLIENT_DRIVER_HUBPORT ||
1043 !net_client_init_fun[netdev->type]) {
d139e9a6
SH
1044 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "type",
1045 "a net backend type (maybe it is not compiled "
1046 "into this binary)");
1047 return -1;
1048 }
f6b134ac 1049
af1a5c3e 1050 /* Do not add to a hub if it's a nic with a netdev= parameter. */
f394b2e2 1051 if (netdev->type != NET_CLIENT_DRIVER_NIC ||
71830d84 1052 !netdev->u.nic.has_netdev) {
af1a5c3e 1053 peer = net_hub_add_port(0, NULL, NULL);
a2dbe135 1054 }
4ef0defb 1055 }
6687b79d 1056
831734cc
MA
1057 nc = qemu_find_netdev(netdev->id);
1058 if (nc) {
1059 error_setg(errp, "Duplicate ID '%s'", netdev->id);
1060 return -1;
1061 }
1062
9d903f30 1063 if (net_client_init_fun[netdev->type](netdev, netdev->id, peer, errp) < 0) {
4ef0defb
SH
1064 /* FIXME drop when all init functions store an Error */
1065 if (errp && !*errp) {
f820af87 1066 error_setg(errp, "Device '%s' could not be initialized",
977c736f 1067 NetClientDriver_str(netdev->type));
f6b134ac 1068 }
4ef0defb 1069 return -1;
f6b134ac 1070 }
08712fcb
EB
1071
1072 if (is_netdev) {
08712fcb
EB
1073 nc = qemu_find_netdev(netdev->id);
1074 assert(nc);
1075 nc->is_netdev = true;
1076 }
1077
6687b79d
LE
1078 return 0;
1079}
1080
ad6f932f 1081void show_netdevs(void)
547203ea
TH
1082{
1083 int idx;
1084 const char *available_netdevs[] = {
1085 "socket",
1086 "hubport",
1087 "tap",
1088#ifdef CONFIG_SLIRP
1089 "user",
1090#endif
1091#ifdef CONFIG_L2TPV3
1092 "l2tpv3",
1093#endif
1094#ifdef CONFIG_VDE
1095 "vde",
1096#endif
1097#ifdef CONFIG_NET_BRIDGE
1098 "bridge",
1099#endif
1100#ifdef CONFIG_NETMAP
1101 "netmap",
1102#endif
1103#ifdef CONFIG_POSIX
1104 "vhost-user",
1bc211a1
CL
1105#endif
1106#ifdef CONFIG_VHOST_VDPA
1107 "vhost-vdpa",
547203ea
TH
1108#endif
1109 };
1110
ad6f932f 1111 qemu_printf("Available netdev backend types:\n");
547203ea 1112 for (idx = 0; idx < ARRAY_SIZE(available_netdevs); idx++) {
ad6f932f 1113 qemu_printf("%s\n", available_netdevs[idx]);
547203ea
TH
1114 }
1115}
f6b134ac 1116
aa09a485 1117static int net_client_init(QemuOpts *opts, bool is_netdev, Error **errp)
6687b79d 1118{
c1112b2d 1119 gchar **substrings = NULL;
71830d84 1120 Netdev *object = NULL;
6687b79d 1121 int ret = -1;
09204eac 1122 Visitor *v = opts_visitor_new(opts);
f83c6e10 1123
ad6f932f
PB
1124 /* Parse convenience option format ip6-net=fec0::0[/64] */
1125 const char *ip6_net = qemu_opt_get(opts, "ipv6-net");
7aac531e 1126
ad6f932f
PB
1127 if (ip6_net) {
1128 char *prefix_addr;
1129 unsigned long prefix_len = 64; /* Default 64bit prefix length. */
c1112b2d 1130
ad6f932f
PB
1131 substrings = g_strsplit(ip6_net, "/", 2);
1132 if (!substrings || !substrings[0]) {
1133 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "ipv6-net",
1134 "a valid IPv6 prefix");
1135 goto out;
1136 }
c1112b2d 1137
ad6f932f 1138 prefix_addr = substrings[0];
7aac531e 1139
ad6f932f
PB
1140 /* Handle user-specified prefix length. */
1141 if (substrings[1] &&
1142 qemu_strtoul(substrings[1], NULL, 10, &prefix_len))
1143 {
1144 error_setg(errp, QERR_INVALID_PARAMETER_VALUE,
1145 "ipv6-prefixlen", "a number");
1146 goto out;
7aac531e 1147 }
ad6f932f
PB
1148
1149 qemu_opt_set(opts, "ipv6-prefix", prefix_addr, &error_abort);
1150 qemu_opt_set_number(opts, "ipv6-prefixlen", prefix_len,
1151 &error_abort);
1152 qemu_opt_unset(opts, "ipv6-net");
7aac531e
YB
1153 }
1154
71830d84
TH
1155 /* Create an ID for -net if the user did not specify one */
1156 if (!is_netdev && !qemu_opts_id(opts)) {
27eb3722 1157 qemu_opts_set_id(opts, id_generate(ID_NET));
f83c6e10
MM
1158 }
1159
14217038
MA
1160 if (visit_type_Netdev(v, NULL, &object, errp)) {
1161 ret = net_client_init1(object, is_netdev, errp);
6687b79d
LE
1162 }
1163
71830d84 1164 qapi_free_Netdev(object);
6687b79d 1165
21c520d0 1166out:
c1112b2d 1167 g_strfreev(substrings);
09204eac 1168 visit_free(v);
6687b79d 1169 return ret;
f83c6e10
MM
1170}
1171
928059a3
LC
1172void netdev_add(QemuOpts *opts, Error **errp)
1173{
0e55c381 1174 net_client_init(opts, true, errp);
928059a3
LC
1175}
1176
db2a380c 1177void qmp_netdev_add(Netdev *netdev, Error **errp)
ae82d324 1178{
e73b4317
PB
1179 if (!id_wellformed(netdev->id)) {
1180 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "id", "an identifier");
1181 return;
1182 }
1183
08712fcb 1184 net_client_init1(netdev, true, errp);
ae82d324
MA
1185}
1186
5f964155 1187void qmp_netdev_del(const char *id, Error **errp)
ae82d324 1188{
35277d14 1189 NetClientState *nc;
831734cc 1190 QemuOpts *opts;
ae82d324 1191
35277d14
SH
1192 nc = qemu_find_netdev(id);
1193 if (!nc) {
75158ebb
MA
1194 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
1195 "Device '%s' not found", id);
5f964155 1196 return;
ae82d324 1197 }
5f964155 1198
08712fcb 1199 if (!nc->is_netdev) {
645c9496
SH
1200 error_setg(errp, "Device '%s' is not a netdev", id);
1201 return;
1202 }
1203
b20c6b9e 1204 qemu_del_net_client(nc);
831734cc
MA
1205
1206 /*
1207 * Wart: we need to delete the QemuOpts associated with netdevs
1208 * created via CLI or HMP, to avoid bogus "Duplicate ID" errors in
1209 * HMP netdev_add.
1210 */
1211 opts = qemu_opts_find(qemu_find_opts("netdev"), id);
1212 if (opts) {
1213 qemu_opts_del(opts);
1214 }
ae82d324
MA
1215}
1216
aa9156f4
HZ
1217static void netfilter_print_info(Monitor *mon, NetFilterState *nf)
1218{
1219 char *str;
1220 ObjectProperty *prop;
1221 ObjectPropertyIterator iter;
3b098d56 1222 Visitor *v;
aa9156f4
HZ
1223
1224 /* generate info str */
1225 object_property_iter_init(&iter, OBJECT(nf));
1226 while ((prop = object_property_iter_next(&iter))) {
1227 if (!strcmp(prop->name, "type")) {
1228 continue;
1229 }
3b098d56 1230 v = string_output_visitor_new(false, &str);
5325cc34 1231 object_property_get(OBJECT(nf), prop->name, v, NULL);
3b098d56
EB
1232 visit_complete(v, &str);
1233 visit_free(v);
aa9156f4
HZ
1234 monitor_printf(mon, ",%s=%s", prop->name, str);
1235 g_free(str);
1236 }
1237 monitor_printf(mon, "\n");
1238}
1239
1a859593 1240void print_net_client(Monitor *mon, NetClientState *nc)
44e798d3 1241{
a4960f52
YH
1242 NetFilterState *nf;
1243
1ceef9f2
JW
1244 monitor_printf(mon, "%s: index=%d,type=%s,%s\n", nc->name,
1245 nc->queue_index,
977c736f 1246 NetClientDriver_str(nc->info->type),
56e6f594 1247 nc->info_str);
a4960f52
YH
1248 if (!QTAILQ_EMPTY(&nc->filters)) {
1249 monitor_printf(mon, "filters:\n");
1250 }
1251 QTAILQ_FOREACH(nf, &nc->filters, next) {
7a309cc9
MA
1252 monitor_printf(mon, " - %s: type=%s",
1253 object_get_canonical_path_component(OBJECT(nf)),
aa9156f4
HZ
1254 object_get_typename(OBJECT(nf)));
1255 netfilter_print_info(mon, nf);
a4960f52 1256 }
44e798d3
JK
1257}
1258
b1be4280
AK
1259RxFilterInfoList *qmp_query_rx_filter(bool has_name, const char *name,
1260 Error **errp)
1261{
1262 NetClientState *nc;
95b3a8c8 1263 RxFilterInfoList *filter_list = NULL, **tail = &filter_list;
b1be4280
AK
1264
1265 QTAILQ_FOREACH(nc, &net_clients, next) {
b1be4280
AK
1266 RxFilterInfo *info;
1267
1268 if (has_name && strcmp(nc->name, name) != 0) {
1269 continue;
1270 }
1271
1272 /* only query rx-filter information of NIC */
f394b2e2 1273 if (nc->info->type != NET_CLIENT_DRIVER_NIC) {
b1be4280
AK
1274 if (has_name) {
1275 error_setg(errp, "net client(%s) isn't a NIC", name);
e9d635ea 1276 assert(!filter_list);
9083da1d 1277 return NULL;
b1be4280
AK
1278 }
1279 continue;
1280 }
1281
5320c2ca
VY
1282 /* only query information on queue 0 since the info is per nic,
1283 * not per queue
1284 */
1285 if (nc->queue_index != 0)
1286 continue;
1287
b1be4280
AK
1288 if (nc->info->query_rx_filter) {
1289 info = nc->info->query_rx_filter(nc);
95b3a8c8 1290 QAPI_LIST_APPEND(tail, info);
b1be4280
AK
1291 } else if (has_name) {
1292 error_setg(errp, "net client(%s) doesn't support"
1293 " rx-filter querying", name);
e9d635ea 1294 assert(!filter_list);
9083da1d 1295 return NULL;
b1be4280 1296 }
638fb141
MA
1297
1298 if (has_name) {
1299 break;
1300 }
b1be4280
AK
1301 }
1302
9083da1d 1303 if (filter_list == NULL && has_name) {
b1be4280
AK
1304 error_setg(errp, "invalid net client name: %s", name);
1305 }
1306
1307 return filter_list;
1308}
1309
1ce6be24 1310void hmp_info_network(Monitor *mon, const QDict *qdict)
63a01ef8 1311{
35277d14 1312 NetClientState *nc, *peer;
f394b2e2 1313 NetClientDriver type;
63a01ef8 1314
1a859593
ZYW
1315 net_hub_info(mon);
1316
35277d14
SH
1317 QTAILQ_FOREACH(nc, &net_clients, next) {
1318 peer = nc->peer;
1319 type = nc->info->type;
5610c3aa 1320
1a859593
ZYW
1321 /* Skip if already printed in hub info */
1322 if (net_hub_id_for_client(nc, NULL) == 0) {
1323 continue;
5610c3aa 1324 }
1a859593 1325
f394b2e2 1326 if (!peer || type == NET_CLIENT_DRIVER_NIC) {
35277d14 1327 print_net_client(mon, nc);
19061e63 1328 } /* else it's a netdev connected to a NIC, printed with the NIC */
f394b2e2 1329 if (peer && type == NET_CLIENT_DRIVER_NIC) {
1a859593 1330 monitor_printf(mon, " \\ ");
44e798d3 1331 print_net_client(mon, peer);
a0104e0e 1332 }
a0104e0e 1333 }
63a01ef8
AL
1334}
1335
5fbba3d6
ZC
1336void colo_notify_filters_event(int event, Error **errp)
1337{
1338 NetClientState *nc;
1339 NetFilterState *nf;
1340 NetFilterClass *nfc = NULL;
1341 Error *local_err = NULL;
1342
1343 QTAILQ_FOREACH(nc, &net_clients, next) {
1344 QTAILQ_FOREACH(nf, &nc->filters, next) {
1345 nfc = NETFILTER_GET_CLASS(OBJECT(nf));
1346 nfc->handle_event(nf, event, &local_err);
1347 if (local_err) {
1348 error_propagate(errp, local_err);
1349 return;
1350 }
1351 }
1352 }
1353}
1354
4b37156c 1355void qmp_set_link(const char *name, bool up, Error **errp)
436e5e53 1356{
1ceef9f2
JW
1357 NetClientState *ncs[MAX_QUEUE_NUM];
1358 NetClientState *nc;
1359 int queues, i;
436e5e53 1360
1ceef9f2 1361 queues = qemu_find_net_clients_except(name, ncs,
f394b2e2 1362 NET_CLIENT_DRIVER__MAX,
1ceef9f2
JW
1363 MAX_QUEUE_NUM);
1364
1365 if (queues == 0) {
75158ebb
MA
1366 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
1367 "Device '%s' not found", name);
4b37156c 1368 return;
436e5e53 1369 }
1ceef9f2 1370 nc = ncs[0];
436e5e53 1371
1ceef9f2
JW
1372 for (i = 0; i < queues; i++) {
1373 ncs[i]->link_down = !up;
1374 }
436e5e53 1375
35277d14
SH
1376 if (nc->info->link_status_changed) {
1377 nc->info->link_status_changed(nc);
665a3b07 1378 }
ab1cbe1c 1379
02d38fcb
VY
1380 if (nc->peer) {
1381 /* Change peer link only if the peer is NIC and then notify peer.
1382 * If the peer is a HUBPORT or a backend, we do not change the
1383 * link status.
1384 *
af1a5c3e 1385 * This behavior is compatible with qemu hubs where there could be
02d38fcb
VY
1386 * multiple clients that can still communicate with each other in
1387 * disconnected mode. For now maintain this compatibility.
1388 */
f394b2e2 1389 if (nc->peer->info->type == NET_CLIENT_DRIVER_NIC) {
02d38fcb
VY
1390 for (i = 0; i < queues; i++) {
1391 ncs[i]->peer->link_down = !up;
1392 }
1393 }
1394 if (nc->peer->info->link_status_changed) {
1395 nc->peer->info->link_status_changed(nc->peer);
1396 }
ab1cbe1c 1397 }
436e5e53
AL
1398}
1399
538f0497 1400static void net_vm_change_state_handler(void *opaque, bool running,
ca77d85e
MT
1401 RunState state)
1402{
625de449
FZ
1403 NetClientState *nc;
1404 NetClientState *tmp;
ca77d85e 1405
625de449
FZ
1406 QTAILQ_FOREACH_SAFE(nc, &net_clients, next, tmp) {
1407 if (running) {
1408 /* Flush queued packets and wake up backends. */
1409 if (nc->peer && qemu_can_send_packet(nc)) {
1410 qemu_flush_queued_packets(nc->peer);
1411 }
1412 } else {
1413 /* Complete all queued packets, to guarantee we don't modify
1414 * state later when VM is not running.
1415 */
ca77d85e
MT
1416 qemu_flush_or_purge_queued_packets(nc, true);
1417 }
1418 }
1419}
1420
63a01ef8
AL
1421void net_cleanup(void)
1422{
1ceef9f2 1423 NetClientState *nc;
577c4af9 1424
0c7af1a7
RL
1425 /*cleanup colo compare module for COLO*/
1426 colo_compare_cleanup();
1427
1ceef9f2
JW
1428 /* We may del multiple entries during qemu_del_net_client(),
1429 * so QTAILQ_FOREACH_SAFE() is also not safe here.
1430 */
1431 while (!QTAILQ_EMPTY(&net_clients)) {
1432 nc = QTAILQ_FIRST(&net_clients);
f394b2e2 1433 if (nc->info->type == NET_CLIENT_DRIVER_NIC) {
948ecf21
JW
1434 qemu_del_nic(qemu_get_nic(nc));
1435 } else {
1436 qemu_del_net_client(nc);
1437 }
577c4af9 1438 }
ca77d85e
MT
1439
1440 qemu_del_vm_change_state_handler(net_change_state_entry);
63a01ef8
AL
1441}
1442
668680f7 1443void net_check_clients(void)
63a01ef8 1444{
35277d14 1445 NetClientState *nc;
48e2faf2 1446 int i;
63a01ef8 1447
81017645 1448 net_hub_check_clients();
ac60cc18 1449
35277d14
SH
1450 QTAILQ_FOREACH(nc, &net_clients, next) {
1451 if (!nc->peer) {
8297be80 1452 warn_report("%s %s has no peer",
b62e39b4
AF
1453 nc->info->type == NET_CLIENT_DRIVER_NIC
1454 ? "nic" : "netdev",
1455 nc->name);
efe32fdd
MA
1456 }
1457 }
48e2faf2
PM
1458
1459 /* Check that all NICs requested via -net nic actually got created.
1460 * NICs created via -device don't need to be checked here because
1461 * they are always instantiated.
1462 */
1463 for (i = 0; i < MAX_NICS; i++) {
1464 NICInfo *nd = &nd_table[i];
1465 if (nd->used && !nd->instantiated) {
8297be80
AF
1466 warn_report("requested NIC (%s, model %s) "
1467 "was not created (not supported by this machine?)",
1468 nd->name ? nd->name : "anonymous",
1469 nd->model ? nd->model : "unspecified");
48e2faf2
PM
1470 }
1471 }
63a01ef8 1472}
dc1c9fe8 1473
28d0de7a 1474static int net_init_client(void *dummy, QemuOpts *opts, Error **errp)
dc1c9fe8 1475{
34f708b0 1476 return net_client_init(opts, false, errp);
f6b134ac
MM
1477}
1478
28d0de7a 1479static int net_init_netdev(void *dummy, QemuOpts *opts, Error **errp)
f6b134ac 1480{
ad6f932f
PB
1481 const char *type = qemu_opt_get(opts, "type");
1482
1483 if (type && is_help_option(type)) {
1484 show_netdevs();
1485 exit(0);
1486 }
34f708b0 1487 return net_client_init(opts, true, errp);
dc1c9fe8 1488}
4559a1db 1489
78cd6f7b
TH
1490/* For the convenience "--nic" parameter */
1491static int net_param_nic(void *dummy, QemuOpts *opts, Error **errp)
1492{
1493 char *mac, *nd_id;
1494 int idx, ret;
1495 NICInfo *ni;
1496 const char *type;
1497
1498 type = qemu_opt_get(opts, "type");
1499 if (type && g_str_equal(type, "none")) {
1500 return 0; /* Nothing to do, default_net is cleared in vl.c */
1501 }
1502
1503 idx = nic_get_free_idx();
1504 if (idx == -1 || nb_nics >= MAX_NICS) {
1505 error_setg(errp, "no more on-board/default NIC slots available");
4559a1db
LC
1506 return -1;
1507 }
1508
78cd6f7b
TH
1509 if (!type) {
1510 qemu_opt_set(opts, "type", "user", &error_abort);
1511 }
1512
1513 ni = &nd_table[idx];
1514 memset(ni, 0, sizeof(*ni));
1515 ni->model = qemu_opt_get_del(opts, "model");
1516
1517 /* Create an ID if the user did not specify one */
1518 nd_id = g_strdup(qemu_opts_id(opts));
1519 if (!nd_id) {
27eb3722 1520 nd_id = id_generate(ID_NET);
78cd6f7b
TH
1521 qemu_opts_set_id(opts, nd_id);
1522 }
1523
1524 /* Handle MAC address */
1525 mac = qemu_opt_get_del(opts, "mac");
1526 if (mac) {
1527 ret = net_parse_macaddr(ni->macaddr.a, mac);
1528 g_free(mac);
1529 if (ret) {
1530 error_setg(errp, "invalid syntax for ethernet address");
9d946191 1531 goto out;
78cd6f7b
TH
1532 }
1533 if (is_multicast_ether_addr(ni->macaddr.a)) {
1534 error_setg(errp, "NIC cannot have multicast MAC address");
9d946191
TH
1535 ret = -1;
1536 goto out;
78cd6f7b
TH
1537 }
1538 }
1539 qemu_macaddr_default_if_unset(&ni->macaddr);
1540
1541 ret = net_client_init(opts, true, errp);
1542 if (ret == 0) {
1543 ni->netdev = qemu_find_netdev(nd_id);
1544 ni->used = true;
1545 nb_nics++;
1546 }
1547
9d946191 1548out:
78cd6f7b 1549 g_free(nd_id);
4559a1db 1550 return ret;
dc1c9fe8
MM
1551}
1552
34f708b0 1553int net_init_clients(Error **errp)
dc1c9fe8 1554{
ca77d85e
MT
1555 net_change_state_entry =
1556 qemu_add_vm_change_state_handler(net_vm_change_state_handler, NULL);
1557
94878994 1558 QTAILQ_INIT(&net_clients);
5610c3aa 1559
28d0de7a 1560 if (qemu_opts_foreach(qemu_find_opts("netdev"),
34f708b0 1561 net_init_netdev, NULL, errp)) {
f6b134ac 1562 return -1;
a4c7367f 1563 }
f6b134ac 1564
78cd6f7b
TH
1565 if (qemu_opts_foreach(qemu_find_opts("nic"), net_param_nic, NULL, errp)) {
1566 return -1;
1567 }
1568
34f708b0 1569 if (qemu_opts_foreach(qemu_find_opts("net"), net_init_client, NULL, errp)) {
dc1c9fe8
MM
1570 return -1;
1571 }
1572
dc1c9fe8
MM
1573 return 0;
1574}
1575
7f161aae 1576int net_client_parse(QemuOptsList *opts_list, const char *optarg)
dc1c9fe8 1577{
70b94331 1578 if (!qemu_opts_parse_noisily(opts_list, optarg, true)) {
dc1c9fe8
MM
1579 return -1;
1580 }
1581
1582 return 0;
1583}
7fc8d918
JW
1584
1585/* From FreeBSD */
1586/* XXX: optimize */
eaba8f34 1587uint32_t net_crc32(const uint8_t *p, int len)
7fc8d918
JW
1588{
1589 uint32_t crc;
1590 int carry, i, j;
1591 uint8_t b;
1592
1593 crc = 0xffffffff;
eaba8f34
MCA
1594 for (i = 0; i < len; i++) {
1595 b = *p++;
7fc8d918
JW
1596 for (j = 0; j < 8; j++) {
1597 carry = ((crc & 0x80000000L) ? 1 : 0) ^ (b & 0x01);
1598 crc <<= 1;
1599 b >>= 1;
1600 if (carry) {
eaba8f34 1601 crc = ((crc ^ POLYNOMIAL_BE) | carry);
7fc8d918
JW
1602 }
1603 }
1604 }
eaba8f34
MCA
1605
1606 return crc;
1607}
1608
f1a7deb9
MCA
1609uint32_t net_crc32_le(const uint8_t *p, int len)
1610{
1611 uint32_t crc;
1612 int carry, i, j;
1613 uint8_t b;
1614
1615 crc = 0xffffffff;
1616 for (i = 0; i < len; i++) {
1617 b = *p++;
1618 for (j = 0; j < 8; j++) {
1619 carry = (crc & 0x1) ^ (b & 0x01);
1620 crc >>= 1;
1621 b >>= 1;
1622 if (carry) {
1623 crc ^= POLYNOMIAL_LE;
1624 }
1625 }
1626 }
1627
1628 return crc;
1629}
1630
4d454574
PB
1631QemuOptsList qemu_netdev_opts = {
1632 .name = "netdev",
1633 .implied_opt_name = "type",
1634 .head = QTAILQ_HEAD_INITIALIZER(qemu_netdev_opts.head),
78cd6f7b
TH
1635 .desc = {
1636 /*
1637 * no elements => accept any params
1638 * validation will happen later
1639 */
1640 { /* end of list */ }
1641 },
1642};
1643
1644QemuOptsList qemu_nic_opts = {
1645 .name = "nic",
1646 .implied_opt_name = "type",
1647 .head = QTAILQ_HEAD_INITIALIZER(qemu_nic_opts.head),
4d454574
PB
1648 .desc = {
1649 /*
1650 * no elements => accept any params
1651 * validation will happen later
1652 */
1653 { /* end of list */ }
1654 },
1655};
1656
1657QemuOptsList qemu_net_opts = {
1658 .name = "net",
1659 .implied_opt_name = "type",
1660 .head = QTAILQ_HEAD_INITIALIZER(qemu_net_opts.head),
1661 .desc = {
1662 /*
1663 * no elements => accept any params
1664 * validation will happen later
1665 */
1666 { /* end of list */ }
1667 },
1668};
16a3df40
ZC
1669
1670void net_socket_rs_init(SocketReadState *rs,
3cde5ea2
ZC
1671 SocketReadStateFinalize *finalize,
1672 bool vnet_hdr)
16a3df40
ZC
1673{
1674 rs->state = 0;
3cde5ea2 1675 rs->vnet_hdr = vnet_hdr;
16a3df40
ZC
1676 rs->index = 0;
1677 rs->packet_len = 0;
3cde5ea2 1678 rs->vnet_hdr_len = 0;
16a3df40
ZC
1679 memset(rs->buf, 0, sizeof(rs->buf));
1680 rs->finalize = finalize;
1681}
1682
1683/*
1684 * Returns
e9e0a585
ZC
1685 * 0: success
1686 * -1: error occurs
16a3df40
ZC
1687 */
1688int net_fill_rstate(SocketReadState *rs, const uint8_t *buf, int size)
1689{
1690 unsigned int l;
1691
1692 while (size > 0) {
3cde5ea2
ZC
1693 /* Reassemble a packet from the network.
1694 * 0 = getting length.
1695 * 1 = getting vnet header length.
1696 * 2 = getting data.
1697 */
1698 switch (rs->state) {
16a3df40
ZC
1699 case 0:
1700 l = 4 - rs->index;
1701 if (l > size) {
1702 l = size;
1703 }
1704 memcpy(rs->buf + rs->index, buf, l);
1705 buf += l;
1706 size -= l;
1707 rs->index += l;
1708 if (rs->index == 4) {
1709 /* got length */
1710 rs->packet_len = ntohl(*(uint32_t *)rs->buf);
1711 rs->index = 0;
3cde5ea2
ZC
1712 if (rs->vnet_hdr) {
1713 rs->state = 1;
1714 } else {
1715 rs->state = 2;
1716 rs->vnet_hdr_len = 0;
1717 }
16a3df40
ZC
1718 }
1719 break;
1720 case 1:
3cde5ea2
ZC
1721 l = 4 - rs->index;
1722 if (l > size) {
1723 l = size;
1724 }
1725 memcpy(rs->buf + rs->index, buf, l);
1726 buf += l;
1727 size -= l;
1728 rs->index += l;
1729 if (rs->index == 4) {
1730 /* got vnet header length */
1731 rs->vnet_hdr_len = ntohl(*(uint32_t *)rs->buf);
1732 rs->index = 0;
1733 rs->state = 2;
1734 }
1735 break;
1736 case 2:
16a3df40
ZC
1737 l = rs->packet_len - rs->index;
1738 if (l > size) {
1739 l = size;
1740 }
1741 if (rs->index + l <= sizeof(rs->buf)) {
1742 memcpy(rs->buf + rs->index, buf, l);
1743 } else {
1744 fprintf(stderr, "serious error: oversized packet received,"
1745 "connection terminated.\n");
1746 rs->index = rs->state = 0;
1747 return -1;
1748 }
1749
1750 rs->index += l;
1751 buf += l;
1752 size -= l;
1753 if (rs->index >= rs->packet_len) {
1754 rs->index = 0;
1755 rs->state = 0;
e79cd406
DB
1756 assert(rs->finalize);
1757 rs->finalize(rs);
16a3df40
ZC
1758 }
1759 break;
1760 }
1761 }
e9e0a585
ZC
1762
1763 assert(size == 0);
16a3df40
ZC
1764 return 0;
1765}