]> git.proxmox.com Git - mirror_qemu.git/blame - net/net.c
net: tap: use abort() instead of assert(0)
[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 */
d40cdb10
BS
24#include "config-host.h"
25
1422e32d 26#include "net/net.h"
fd9400b3
PB
27#include "clients.h"
28#include "hub.h"
1422e32d 29#include "net/slirp.h"
fd9400b3 30#include "util.h"
a245fc18 31
83c9089e 32#include "monitor/monitor.h"
1df49e04 33#include "qemu-common.h"
1de7afc9
PB
34#include "qemu/sockets.h"
35#include "qemu/config-file.h"
4b37156c 36#include "qmp-commands.h"
75422b0d 37#include "hw/qdev.h"
1de7afc9 38#include "qemu/iov.h"
6687b79d
LE
39#include "qapi-visit.h"
40#include "qapi/opts-visitor.h"
7b1b5d19 41#include "qapi/dealloc-visitor.h"
511d2b14 42
2944e4ec
SW
43/* Net bridge is currently not supported for W32. */
44#if !defined(_WIN32)
45# define CONFIG_NET_BRIDGE
46#endif
47
4e68f7a0 48static QTAILQ_HEAD(, NetClientState) net_clients;
63a01ef8 49
cb4522cc
GH
50int default_net = 1;
51
63a01ef8
AL
52/***********************************************************/
53/* network device redirectors */
54
68ac40d2 55#if defined(DEBUG_NET)
63a01ef8
AL
56static void hex_dump(FILE *f, const uint8_t *buf, int size)
57{
58 int len, i, j, c;
59
60 for(i=0;i<size;i+=16) {
61 len = size - i;
62 if (len > 16)
63 len = 16;
64 fprintf(f, "%08x ", i);
65 for(j=0;j<16;j++) {
66 if (j < len)
67 fprintf(f, " %02x", buf[i+j]);
68 else
69 fprintf(f, " ");
70 }
71 fprintf(f, " ");
72 for(j=0;j<len;j++) {
73 c = buf[i+j];
74 if (c < ' ' || c > '~')
75 c = '.';
76 fprintf(f, "%c", c);
77 }
78 fprintf(f, "\n");
79 }
80}
81#endif
82
63a01ef8
AL
83static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
84{
85 const char *p, *p1;
86 int len;
87 p = *pp;
88 p1 = strchr(p, sep);
89 if (!p1)
90 return -1;
91 len = p1 - p;
92 p1++;
93 if (buf_size > 0) {
94 if (len > buf_size - 1)
95 len = buf_size - 1;
96 memcpy(buf, p, len);
97 buf[len] = '\0';
98 }
99 *pp = p1;
100 return 0;
101}
102
63a01ef8
AL
103int parse_host_port(struct sockaddr_in *saddr, const char *str)
104{
105 char buf[512];
106 struct hostent *he;
107 const char *p, *r;
108 int port;
109
110 p = str;
111 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
112 return -1;
113 saddr->sin_family = AF_INET;
114 if (buf[0] == '\0') {
115 saddr->sin_addr.s_addr = 0;
116 } else {
cd390083 117 if (qemu_isdigit(buf[0])) {
63a01ef8
AL
118 if (!inet_aton(buf, &saddr->sin_addr))
119 return -1;
120 } else {
121 if ((he = gethostbyname(buf)) == NULL)
122 return - 1;
123 saddr->sin_addr = *(struct in_addr *)he->h_addr;
124 }
125 }
126 port = strtol(p, (char **)&r, 0);
127 if (r == p)
128 return -1;
129 saddr->sin_port = htons(port);
130 return 0;
131}
132
35277d14 133void qemu_format_nic_info_str(NetClientState *nc, uint8_t macaddr[6])
7cb7434b 134{
35277d14 135 snprintf(nc->info_str, sizeof(nc->info_str),
4dda4063 136 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
35277d14 137 nc->model,
7cb7434b
AL
138 macaddr[0], macaddr[1], macaddr[2],
139 macaddr[3], macaddr[4], macaddr[5]);
140}
141
76d32cba
GH
142void qemu_macaddr_default_if_unset(MACAddr *macaddr)
143{
144 static int index = 0;
145 static const MACAddr zero = { .a = { 0,0,0,0,0,0 } };
146
147 if (memcmp(macaddr, &zero, sizeof(zero)) != 0)
148 return;
149 macaddr->a[0] = 0x52;
150 macaddr->a[1] = 0x54;
151 macaddr->a[2] = 0x00;
152 macaddr->a[3] = 0x12;
153 macaddr->a[4] = 0x34;
154 macaddr->a[5] = 0x56 + index++;
155}
156
d33d93b2
SH
157/**
158 * Generate a name for net client
159 *
160 * Only net clients created with the legacy -net option need this. Naming is
161 * mandatory for net clients created with -netdev.
162 */
35277d14 163static char *assign_name(NetClientState *nc1, const char *model)
676cff29 164{
35277d14 165 NetClientState *nc;
676cff29
AL
166 char buf[256];
167 int id = 0;
168
35277d14
SH
169 QTAILQ_FOREACH(nc, &net_clients, next) {
170 if (nc == nc1) {
d33d93b2 171 continue;
5610c3aa 172 }
d33d93b2 173 /* For compatibility only bump id for net clients on a vlan */
35277d14
SH
174 if (strcmp(nc->model, model) == 0 &&
175 net_hub_id_for_client(nc, NULL) == 0) {
53e51d85
MA
176 id++;
177 }
178 }
179
676cff29
AL
180 snprintf(buf, sizeof(buf), "%s.%d", model, id);
181
7267c094 182 return g_strdup(buf);
676cff29
AL
183}
184
4e68f7a0
SH
185NetClientState *qemu_new_net_client(NetClientInfo *info,
186 NetClientState *peer,
187 const char *model,
188 const char *name)
63a01ef8 189{
35277d14 190 NetClientState *nc;
5610c3aa 191
4e68f7a0 192 assert(info->size >= sizeof(NetClientState));
45460d1a 193
35277d14 194 nc = g_malloc0(info->size);
5610c3aa 195
35277d14
SH
196 nc->info = info;
197 nc->model = g_strdup(model);
45460d1a 198 if (name) {
35277d14 199 nc->name = g_strdup(name);
45460d1a 200 } else {
35277d14 201 nc->name = assign_name(nc, model);
45460d1a 202 }
5610c3aa 203
ab5f3f84
SH
204 if (peer) {
205 assert(!peer->peer);
35277d14
SH
206 nc->peer = peer;
207 peer->peer = nc;
d80b9fc6 208 }
35277d14 209 QTAILQ_INSERT_TAIL(&net_clients, nc, next);
63a01ef8 210
86a77c38 211 nc->send_queue = qemu_new_net_queue(nc);
63a01ef8 212
35277d14 213 return nc;
63a01ef8
AL
214}
215
ebef2c09
MM
216NICState *qemu_new_nic(NetClientInfo *info,
217 NICConf *conf,
218 const char *model,
219 const char *name,
220 void *opaque)
221{
4e68f7a0 222 NetClientState *nc;
ebef2c09
MM
223 NICState *nic;
224
2be64a68 225 assert(info->type == NET_CLIENT_OPTIONS_KIND_NIC);
ebef2c09
MM
226 assert(info->size >= sizeof(NICState));
227
ab5f3f84 228 nc = qemu_new_net_client(info, conf->peer, model, name);
ebef2c09
MM
229
230 nic = DO_UPCAST(NICState, nc, nc);
231 nic->conf = conf;
232 nic->opaque = opaque;
233
234 return nic;
235}
236
b20c6b9e 237static void qemu_cleanup_net_client(NetClientState *nc)
63a01ef8 238{
35277d14 239 QTAILQ_REMOVE(&net_clients, nc, next);
63a01ef8 240
35277d14
SH
241 if (nc->info->cleanup) {
242 nc->info->cleanup(nc);
5610c3aa 243 }
a083a89d 244}
5610c3aa 245
b20c6b9e 246static void qemu_free_net_client(NetClientState *nc)
a083a89d 247{
35277d14
SH
248 if (nc->send_queue) {
249 qemu_del_net_queue(nc->send_queue);
a005d073 250 }
35277d14
SH
251 if (nc->peer) {
252 nc->peer->peer = NULL;
a083a89d 253 }
35277d14
SH
254 g_free(nc->name);
255 g_free(nc->model);
256 g_free(nc);
63a01ef8
AL
257}
258
b20c6b9e 259void qemu_del_net_client(NetClientState *nc)
a083a89d
MT
260{
261 /* If there is a peer NIC, delete and cleanup client, but do not free. */
35277d14
SH
262 if (nc->peer && nc->peer->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
263 NICState *nic = DO_UPCAST(NICState, nc, nc->peer);
a083a89d
MT
264 if (nic->peer_deleted) {
265 return;
266 }
267 nic->peer_deleted = true;
268 /* Let NIC know peer is gone. */
35277d14
SH
269 nc->peer->link_down = true;
270 if (nc->peer->info->link_status_changed) {
271 nc->peer->info->link_status_changed(nc->peer);
a083a89d 272 }
b20c6b9e 273 qemu_cleanup_net_client(nc);
a083a89d
MT
274 return;
275 }
276
277 /* If this is a peer NIC and peer has already been deleted, free it now. */
35277d14
SH
278 if (nc->peer && nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
279 NICState *nic = DO_UPCAST(NICState, nc, nc);
a083a89d 280 if (nic->peer_deleted) {
b20c6b9e 281 qemu_free_net_client(nc->peer);
1a609520
JK
282 }
283 }
1a609520 284
b20c6b9e
SH
285 qemu_cleanup_net_client(nc);
286 qemu_free_net_client(nc);
1a609520
JK
287}
288
57f9ef17
MM
289void qemu_foreach_nic(qemu_nic_foreach func, void *opaque)
290{
4e68f7a0 291 NetClientState *nc;
57f9ef17 292
94878994 293 QTAILQ_FOREACH(nc, &net_clients, next) {
2be64a68 294 if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
57f9ef17
MM
295 func(DO_UPCAST(NICState, nc, nc), opaque);
296 }
297 }
57f9ef17
MM
298}
299
4e68f7a0 300int qemu_can_send_packet(NetClientState *sender)
63a01ef8 301{
a005d073 302 if (!sender->peer) {
d80b9fc6
MM
303 return 1;
304 }
305
a005d073
SH
306 if (sender->peer->receive_disabled) {
307 return 0;
308 } else if (sender->peer->info->can_receive &&
309 !sender->peer->info->can_receive(sender->peer)) {
310 return 0;
63a01ef8 311 }
60c07d93 312 return 1;
63a01ef8
AL
313}
314
86a77c38
ZYW
315ssize_t qemu_deliver_packet(NetClientState *sender,
316 unsigned flags,
317 const uint8_t *data,
318 size_t size,
319 void *opaque)
9a6ecb30 320{
35277d14 321 NetClientState *nc = opaque;
893379ef 322 ssize_t ret;
9a6ecb30 323
35277d14 324 if (nc->link_down) {
9a6ecb30
MM
325 return size;
326 }
327
35277d14 328 if (nc->receive_disabled) {
893379ef
MM
329 return 0;
330 }
331
35277d14
SH
332 if (flags & QEMU_NET_PACKET_FLAG_RAW && nc->info->receive_raw) {
333 ret = nc->info->receive_raw(nc, data, size);
893379ef 334 } else {
35277d14 335 ret = nc->info->receive(nc, data, size);
893379ef
MM
336 }
337
338 if (ret == 0) {
35277d14 339 nc->receive_disabled = 1;
893379ef
MM
340 };
341
342 return ret;
9a6ecb30
MM
343}
344
35277d14 345void qemu_purge_queued_packets(NetClientState *nc)
8cad5516 346{
35277d14 347 if (!nc->peer) {
d80b9fc6 348 return;
9a6ecb30 349 }
d80b9fc6 350
35277d14 351 qemu_net_queue_purge(nc->peer->send_queue, nc);
8cad5516
MM
352}
353
35277d14 354void qemu_flush_queued_packets(NetClientState *nc)
e94667b9 355{
35277d14 356 nc->receive_disabled = 0;
9a6ecb30 357
987a9b48
PB
358 if (qemu_net_queue_flush(nc->send_queue)) {
359 /* We emptied the queue successfully, signal to the IO thread to repoll
360 * the file descriptor (for tap, for example).
361 */
362 qemu_notify_event();
363 }
e94667b9
MM
364}
365
4e68f7a0 366static ssize_t qemu_send_packet_async_with_flags(NetClientState *sender,
ca77d175
MM
367 unsigned flags,
368 const uint8_t *buf, int size,
369 NetPacketSent *sent_cb)
764a4d1d 370{
9a6ecb30 371 NetQueue *queue;
436e5e53 372
63a01ef8 373#ifdef DEBUG_NET
d80b9fc6 374 printf("qemu_send_packet_async:\n");
63a01ef8
AL
375 hex_dump(stdout, buf, size);
376#endif
f3b6c7fc 377
a005d073 378 if (sender->link_down || !sender->peer) {
9a6ecb30
MM
379 return size;
380 }
381
a005d073 382 queue = sender->peer->send_queue;
9a6ecb30 383
ca77d175
MM
384 return qemu_net_queue_send(queue, sender, flags, buf, size, sent_cb);
385}
386
4e68f7a0 387ssize_t qemu_send_packet_async(NetClientState *sender,
ca77d175
MM
388 const uint8_t *buf, int size,
389 NetPacketSent *sent_cb)
390{
391 return qemu_send_packet_async_with_flags(sender, QEMU_NET_PACKET_FLAG_NONE,
392 buf, size, sent_cb);
f3b6c7fc
MM
393}
394
35277d14 395void qemu_send_packet(NetClientState *nc, const uint8_t *buf, int size)
f3b6c7fc 396{
35277d14 397 qemu_send_packet_async(nc, buf, size, NULL);
63a01ef8
AL
398}
399
35277d14 400ssize_t qemu_send_packet_raw(NetClientState *nc, const uint8_t *buf, int size)
ca77d175 401{
35277d14 402 return qemu_send_packet_async_with_flags(nc, QEMU_NET_PACKET_FLAG_RAW,
ca77d175
MM
403 buf, size, NULL);
404}
405
35277d14 406static ssize_t nc_sendv_compat(NetClientState *nc, const struct iovec *iov,
fbe78f4f
AL
407 int iovcnt)
408{
409 uint8_t buffer[4096];
ce053661 410 size_t offset;
fbe78f4f 411
dcf6f5e1 412 offset = iov_to_buf(iov, iovcnt, 0, buffer, sizeof(buffer));
fbe78f4f 413
35277d14 414 return nc->info->receive(nc, buffer, offset);
fbe78f4f
AL
415}
416
86a77c38
ZYW
417ssize_t qemu_deliver_packet_iov(NetClientState *sender,
418 unsigned flags,
419 const struct iovec *iov,
420 int iovcnt,
421 void *opaque)
9a6ecb30 422{
35277d14 423 NetClientState *nc = opaque;
c67f5dc1 424 int ret;
9a6ecb30 425
35277d14 426 if (nc->link_down) {
ce053661 427 return iov_size(iov, iovcnt);
9a6ecb30
MM
428 }
429
c67f5dc1
SH
430 if (nc->receive_disabled) {
431 return 0;
432 }
433
35277d14 434 if (nc->info->receive_iov) {
c67f5dc1 435 ret = nc->info->receive_iov(nc, iov, iovcnt);
9a6ecb30 436 } else {
c67f5dc1
SH
437 ret = nc_sendv_compat(nc, iov, iovcnt);
438 }
439
440 if (ret == 0) {
441 nc->receive_disabled = 1;
e94667b9 442 }
c67f5dc1
SH
443
444 return ret;
e94667b9
MM
445}
446
4e68f7a0 447ssize_t qemu_sendv_packet_async(NetClientState *sender,
f3b6c7fc
MM
448 const struct iovec *iov, int iovcnt,
449 NetPacketSent *sent_cb)
e94667b9 450{
9a6ecb30
MM
451 NetQueue *queue;
452
a005d073 453 if (sender->link_down || !sender->peer) {
ce053661 454 return iov_size(iov, iovcnt);
e94667b9
MM
455 }
456
a005d073 457 queue = sender->peer->send_queue;
9a6ecb30 458
c0b8e49c
MM
459 return qemu_net_queue_send_iov(queue, sender,
460 QEMU_NET_PACKET_FLAG_NONE,
461 iov, iovcnt, sent_cb);
fbe78f4f
AL
462}
463
f3b6c7fc 464ssize_t
35277d14 465qemu_sendv_packet(NetClientState *nc, const struct iovec *iov, int iovcnt)
f3b6c7fc 466{
35277d14 467 return qemu_sendv_packet_async(nc, iov, iovcnt, NULL);
63a01ef8
AL
468}
469
4e68f7a0 470NetClientState *qemu_find_netdev(const char *id)
5869c4d5 471{
35277d14 472 NetClientState *nc;
5869c4d5 473
35277d14
SH
474 QTAILQ_FOREACH(nc, &net_clients, next) {
475 if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC)
85dde9a9 476 continue;
35277d14
SH
477 if (!strcmp(nc->name, id)) {
478 return nc;
5869c4d5
MM
479 }
480 }
481
482 return NULL;
483}
484
7697079b
AL
485static int nic_get_free_idx(void)
486{
487 int index;
488
489 for (index = 0; index < MAX_NICS; index++)
490 if (!nd_table[index].used)
491 return index;
492 return -1;
493}
494
07caea31
MA
495int qemu_show_nic_models(const char *arg, const char *const *models)
496{
497 int i;
498
c8057f95 499 if (!arg || !is_help_option(arg)) {
07caea31 500 return 0;
c8057f95 501 }
07caea31
MA
502
503 fprintf(stderr, "qemu: Supported NIC models: ");
504 for (i = 0 ; models[i]; i++)
505 fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
506 return 1;
507}
508
d07f22c5
AL
509void qemu_check_nic_model(NICInfo *nd, const char *model)
510{
511 const char *models[2];
512
513 models[0] = model;
514 models[1] = NULL;
515
07caea31
MA
516 if (qemu_show_nic_models(nd->model, models))
517 exit(0);
518 if (qemu_find_nic_model(nd, models, model) < 0)
519 exit(1);
d07f22c5
AL
520}
521
07caea31
MA
522int qemu_find_nic_model(NICInfo *nd, const char * const *models,
523 const char *default_model)
d07f22c5 524{
07caea31 525 int i;
d07f22c5
AL
526
527 if (!nd->model)
7267c094 528 nd->model = g_strdup(default_model);
d07f22c5 529
07caea31
MA
530 for (i = 0 ; models[i]; i++) {
531 if (strcmp(nd->model, models[i]) == 0)
532 return i;
d07f22c5
AL
533 }
534
6daf194d 535 error_report("Unsupported NIC model: %s", nd->model);
07caea31 536 return -1;
d07f22c5
AL
537}
538
1a0c0958 539static int net_init_nic(const NetClientOptions *opts, const char *name,
4e68f7a0 540 NetClientState *peer)
f83c6e10
MM
541{
542 int idx;
543 NICInfo *nd;
2456f36f
LE
544 const NetLegacyNicOptions *nic;
545
546 assert(opts->kind == NET_CLIENT_OPTIONS_KIND_NIC);
547 nic = opts->nic;
f83c6e10
MM
548
549 idx = nic_get_free_idx();
550 if (idx == -1 || nb_nics >= MAX_NICS) {
1ecda02b 551 error_report("Too Many NICs");
f83c6e10
MM
552 return -1;
553 }
554
555 nd = &nd_table[idx];
556
557 memset(nd, 0, sizeof(*nd));
558
2456f36f
LE
559 if (nic->has_netdev) {
560 nd->netdev = qemu_find_netdev(nic->netdev);
5869c4d5 561 if (!nd->netdev) {
2456f36f 562 error_report("netdev '%s' not found", nic->netdev);
5869c4d5
MM
563 return -1;
564 }
565 } else {
d33d93b2
SH
566 assert(peer);
567 nd->netdev = peer;
5869c4d5 568 }
c64f50d1 569 nd->name = g_strdup(name);
2456f36f
LE
570 if (nic->has_model) {
571 nd->model = g_strdup(nic->model);
f83c6e10 572 }
2456f36f
LE
573 if (nic->has_addr) {
574 nd->devaddr = g_strdup(nic->addr);
f83c6e10
MM
575 }
576
2456f36f
LE
577 if (nic->has_macaddr &&
578 net_parse_macaddr(nd->macaddr.a, nic->macaddr) < 0) {
1ecda02b 579 error_report("invalid syntax for ethernet address");
f83c6e10
MM
580 return -1;
581 }
6eed1856 582 qemu_macaddr_default_if_unset(&nd->macaddr);
f83c6e10 583
2456f36f
LE
584 if (nic->has_vectors) {
585 if (nic->vectors > 0x7ffffff) {
586 error_report("invalid # of vectors: %"PRIu32, nic->vectors);
587 return -1;
588 }
589 nd->nvectors = nic->vectors;
590 } else {
591 nd->nvectors = DEV_NVECTORS_UNSPECIFIED;
f83c6e10
MM
592 }
593
594 nd->used = 1;
f83c6e10
MM
595 nb_nics++;
596
597 return idx;
598}
599
6687b79d
LE
600
601static int (* const net_client_init_fun[NET_CLIENT_OPTIONS_KIND_MAX])(
1a0c0958 602 const NetClientOptions *opts,
6687b79d 603 const char *name,
4e68f7a0 604 NetClientState *peer) = {
f6c874e3 605 [NET_CLIENT_OPTIONS_KIND_NIC] = net_init_nic,
ec302ffd 606#ifdef CONFIG_SLIRP
f6c874e3 607 [NET_CLIENT_OPTIONS_KIND_USER] = net_init_slirp,
2944e4ec 608#endif
f6c874e3
SH
609 [NET_CLIENT_OPTIONS_KIND_TAP] = net_init_tap,
610 [NET_CLIENT_OPTIONS_KIND_SOCKET] = net_init_socket,
dd51058d 611#ifdef CONFIG_VDE
f6c874e3 612 [NET_CLIENT_OPTIONS_KIND_VDE] = net_init_vde,
dd51058d 613#endif
f6c874e3 614 [NET_CLIENT_OPTIONS_KIND_DUMP] = net_init_dump,
2944e4ec 615#ifdef CONFIG_NET_BRIDGE
f6c874e3 616 [NET_CLIENT_OPTIONS_KIND_BRIDGE] = net_init_bridge,
6687b79d 617#endif
f6c874e3 618 [NET_CLIENT_OPTIONS_KIND_HUBPORT] = net_init_hubport,
f83c6e10
MM
619};
620
6687b79d 621
1a0c0958 622static int net_client_init1(const void *object, int is_netdev, Error **errp)
f83c6e10 623{
6687b79d
LE
624 union {
625 const Netdev *netdev;
626 const NetLegacy *net;
627 } u;
628 const NetClientOptions *opts;
6d952ebe 629 const char *name;
f83c6e10 630
5294e2c7 631 if (is_netdev) {
6687b79d
LE
632 u.netdev = object;
633 opts = u.netdev->opts;
634 name = u.netdev->id;
635
636 switch (opts->kind) {
f6b134ac 637#ifdef CONFIG_SLIRP
6687b79d 638 case NET_CLIENT_OPTIONS_KIND_USER:
f6b134ac 639#endif
6687b79d
LE
640 case NET_CLIENT_OPTIONS_KIND_TAP:
641 case NET_CLIENT_OPTIONS_KIND_SOCKET:
f6b134ac 642#ifdef CONFIG_VDE
6687b79d
LE
643 case NET_CLIENT_OPTIONS_KIND_VDE:
644#endif
645#ifdef CONFIG_NET_BRIDGE
646 case NET_CLIENT_OPTIONS_KIND_BRIDGE:
f6b134ac 647#endif
f6c874e3 648 case NET_CLIENT_OPTIONS_KIND_HUBPORT:
6687b79d
LE
649 break;
650
651 default:
4559a1db
LC
652 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "type",
653 "a netdev backend type");
f6b134ac
MM
654 return -1;
655 }
6687b79d
LE
656 } else {
657 u.net = object;
658 opts = u.net->opts;
659 /* missing optional values have been initialized to "all bits zero" */
660 name = u.net->has_id ? u.net->id : u.net->name;
661 }
f6b134ac 662
6687b79d 663 if (net_client_init_fun[opts->kind]) {
4e68f7a0 664 NetClientState *peer = NULL;
6687b79d
LE
665
666 /* Do not add to a vlan if it's a -netdev or a nic with a netdev=
667 * parameter. */
668 if (!is_netdev &&
669 (opts->kind != NET_CLIENT_OPTIONS_KIND_NIC ||
670 !opts->nic->has_netdev)) {
d33d93b2 671 peer = net_hub_add_port(u.net->has_vlan ? u.net->vlan : 0, NULL);
f6b134ac 672 }
6687b79d 673
d33d93b2 674 if (net_client_init_fun[opts->kind](opts, name, peer) < 0) {
6687b79d
LE
675 /* TODO push error reporting into init() methods */
676 error_set(errp, QERR_DEVICE_INIT_FAILED,
677 NetClientOptionsKind_lookup[opts->kind]);
f6b134ac
MM
678 return -1;
679 }
680 }
6687b79d
LE
681 return 0;
682}
683
f6b134ac 684
6687b79d
LE
685static void net_visit(Visitor *v, int is_netdev, void **object, Error **errp)
686{
687 if (is_netdev) {
688 visit_type_Netdev(v, (Netdev **)object, NULL, errp);
689 } else {
690 visit_type_NetLegacy(v, (NetLegacy **)object, NULL, errp);
6d952ebe 691 }
6687b79d 692}
6d952ebe 693
f6b134ac 694
6687b79d
LE
695int net_client_init(QemuOpts *opts, int is_netdev, Error **errp)
696{
697 void *object = NULL;
698 Error *err = NULL;
699 int ret = -1;
f83c6e10 700
6687b79d
LE
701 {
702 OptsVisitor *ov = opts_visitor_new(opts);
f6b134ac 703
6687b79d
LE
704 net_visit(opts_get_visitor(ov), is_netdev, &object, &err);
705 opts_visitor_cleanup(ov);
f83c6e10
MM
706 }
707
6687b79d 708 if (!err) {
1a0c0958 709 ret = net_client_init1(object, is_netdev, &err);
6687b79d
LE
710 }
711
712 if (object) {
713 QapiDeallocVisitor *dv = qapi_dealloc_visitor_new();
714
715 net_visit(qapi_dealloc_get_visitor(dv), is_netdev, &object, NULL);
716 qapi_dealloc_visitor_cleanup(dv);
717 }
718
719 error_propagate(errp, err);
720 return ret;
f83c6e10
MM
721}
722
6687b79d 723
6f338c34
AL
724static int net_host_check_device(const char *device)
725{
726 int i;
bb9ea79e 727 const char *valid_param_list[] = { "tap", "socket", "dump"
2944e4ec
SW
728#ifdef CONFIG_NET_BRIDGE
729 , "bridge"
730#endif
6f338c34
AL
731#ifdef CONFIG_SLIRP
732 ,"user"
733#endif
734#ifdef CONFIG_VDE
735 ,"vde"
736#endif
737 };
738 for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
739 if (!strncmp(valid_param_list[i], device,
740 strlen(valid_param_list[i])))
741 return 1;
742 }
743
744 return 0;
745}
746
f18c16de 747void net_host_device_add(Monitor *mon, const QDict *qdict)
6f338c34 748{
f18c16de 749 const char *device = qdict_get_str(qdict, "device");
7f1c9d20 750 const char *opts_str = qdict_get_try_str(qdict, "opts");
4559a1db 751 Error *local_err = NULL;
7f1c9d20 752 QemuOpts *opts;
f18c16de 753
6f338c34 754 if (!net_host_check_device(device)) {
376253ec 755 monitor_printf(mon, "invalid host network device %s\n", device);
6f338c34
AL
756 return;
757 }
7f1c9d20 758
3329f07b 759 opts = qemu_opts_parse(qemu_find_opts("net"), opts_str ? opts_str : "", 0);
7f1c9d20 760 if (!opts) {
7f1c9d20
MM
761 return;
762 }
763
764 qemu_opt_set(opts, "type", device);
765
4559a1db
LC
766 net_client_init(opts, 0, &local_err);
767 if (error_is_set(&local_err)) {
768 qerror_report_err(local_err);
769 error_free(local_err);
5c8be678
AL
770 monitor_printf(mon, "adding host network device %s failed\n", device);
771 }
6f338c34
AL
772}
773
f18c16de 774void net_host_device_remove(Monitor *mon, const QDict *qdict)
6f338c34 775{
35277d14 776 NetClientState *nc;
f18c16de
LC
777 int vlan_id = qdict_get_int(qdict, "vlan_id");
778 const char *device = qdict_get_str(qdict, "device");
6f338c34 779
35277d14
SH
780 nc = net_hub_find_client_by_name(vlan_id, device);
781 if (!nc) {
6f338c34
AL
782 return;
783 }
35277d14 784 if (!net_host_check_device(nc->model)) {
e8f1f9db
AL
785 monitor_printf(mon, "invalid host network device %s\n", device);
786 return;
787 }
b20c6b9e 788 qemu_del_net_client(nc);
6f338c34
AL
789}
790
928059a3
LC
791void netdev_add(QemuOpts *opts, Error **errp)
792{
793 net_client_init(opts, 1, errp);
794}
795
796int qmp_netdev_add(Monitor *mon, const QDict *qdict, QObject **ret)
ae82d324 797{
4e89978e 798 Error *local_err = NULL;
928059a3 799 QemuOptsList *opts_list;
ae82d324 800 QemuOpts *opts;
ae82d324 801
928059a3
LC
802 opts_list = qemu_find_opts_err("netdev", &local_err);
803 if (error_is_set(&local_err)) {
804 goto exit_err;
ae82d324
MA
805 }
806
928059a3
LC
807 opts = qemu_opts_from_qdict(opts_list, qdict, &local_err);
808 if (error_is_set(&local_err)) {
809 goto exit_err;
810 }
811
812 netdev_add(opts, &local_err);
813 if (error_is_set(&local_err)) {
410cbafe 814 qemu_opts_del(opts);
928059a3 815 goto exit_err;
410cbafe
YT
816 }
817
928059a3
LC
818 return 0;
819
820exit_err:
821 qerror_report_err(local_err);
822 error_free(local_err);
823 return -1;
ae82d324
MA
824}
825
5f964155 826void qmp_netdev_del(const char *id, Error **errp)
ae82d324 827{
35277d14 828 NetClientState *nc;
645c9496 829 QemuOpts *opts;
ae82d324 830
35277d14
SH
831 nc = qemu_find_netdev(id);
832 if (!nc) {
5f964155
LC
833 error_set(errp, QERR_DEVICE_NOT_FOUND, id);
834 return;
ae82d324 835 }
5f964155 836
645c9496
SH
837 opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), id);
838 if (!opts) {
839 error_setg(errp, "Device '%s' is not a netdev", id);
840 return;
841 }
842
b20c6b9e 843 qemu_del_net_client(nc);
645c9496 844 qemu_opts_del(opts);
ae82d324
MA
845}
846
1a859593 847void print_net_client(Monitor *mon, NetClientState *nc)
44e798d3 848{
35277d14
SH
849 monitor_printf(mon, "%s: type=%s,%s\n", nc->name,
850 NetClientOptionsKind_lookup[nc->info->type], nc->info_str);
44e798d3
JK
851}
852
84f2d0ea 853void do_info_network(Monitor *mon, const QDict *qdict)
63a01ef8 854{
35277d14 855 NetClientState *nc, *peer;
2be64a68 856 NetClientOptionsKind type;
63a01ef8 857
1a859593
ZYW
858 net_hub_info(mon);
859
35277d14
SH
860 QTAILQ_FOREACH(nc, &net_clients, next) {
861 peer = nc->peer;
862 type = nc->info->type;
5610c3aa 863
1a859593
ZYW
864 /* Skip if already printed in hub info */
865 if (net_hub_id_for_client(nc, NULL) == 0) {
866 continue;
5610c3aa 867 }
1a859593 868
2be64a68 869 if (!peer || type == NET_CLIENT_OPTIONS_KIND_NIC) {
35277d14 870 print_net_client(mon, nc);
19061e63 871 } /* else it's a netdev connected to a NIC, printed with the NIC */
2be64a68 872 if (peer && type == NET_CLIENT_OPTIONS_KIND_NIC) {
1a859593 873 monitor_printf(mon, " \\ ");
44e798d3 874 print_net_client(mon, peer);
a0104e0e 875 }
a0104e0e 876 }
63a01ef8
AL
877}
878
4b37156c 879void qmp_set_link(const char *name, bool up, Error **errp)
436e5e53 880{
35277d14 881 NetClientState *nc = NULL;
436e5e53 882
35277d14
SH
883 QTAILQ_FOREACH(nc, &net_clients, next) {
884 if (!strcmp(nc->name, name)) {
85dde9a9
MA
885 goto done;
886 }
887 }
dd5de373 888done:
35277d14 889 if (!nc) {
4b37156c
LC
890 error_set(errp, QERR_DEVICE_NOT_FOUND, name);
891 return;
436e5e53
AL
892 }
893
35277d14 894 nc->link_down = !up;
436e5e53 895
35277d14
SH
896 if (nc->info->link_status_changed) {
897 nc->info->link_status_changed(nc);
665a3b07 898 }
ab1cbe1c
MT
899
900 /* Notify peer. Don't update peer link status: this makes it possible to
901 * disconnect from host network without notifying the guest.
902 * FIXME: is disconnected link status change operation useful?
903 *
904 * Current behaviour is compatible with qemu vlans where there could be
905 * multiple clients that can still communicate with each other in
906 * disconnected mode. For now maintain this compatibility. */
35277d14
SH
907 if (nc->peer && nc->peer->info->link_status_changed) {
908 nc->peer->info->link_status_changed(nc->peer);
ab1cbe1c 909 }
436e5e53
AL
910}
911
63a01ef8
AL
912void net_cleanup(void)
913{
35277d14 914 NetClientState *nc, *next_vc;
577c4af9 915
35277d14 916 QTAILQ_FOREACH_SAFE(nc, &net_clients, next, next_vc) {
b20c6b9e 917 qemu_del_net_client(nc);
577c4af9 918 }
63a01ef8
AL
919}
920
668680f7 921void net_check_clients(void)
63a01ef8 922{
35277d14 923 NetClientState *nc;
48e2faf2 924 int i;
63a01ef8 925
641f6eae
PM
926 /* Don't warn about the default network setup that you get if
927 * no command line -net or -netdev options are specified. There
928 * are two cases that we would otherwise complain about:
929 * (1) board doesn't support a NIC but the implicit "-net nic"
930 * requested one
931 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
932 * sets up a nic that isn't connected to anything.
933 */
934 if (default_net) {
935 return;
936 }
937
81017645 938 net_hub_check_clients();
ac60cc18 939
35277d14
SH
940 QTAILQ_FOREACH(nc, &net_clients, next) {
941 if (!nc->peer) {
efe32fdd 942 fprintf(stderr, "Warning: %s %s has no peer\n",
35277d14
SH
943 nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC ?
944 "nic" : "netdev", nc->name);
efe32fdd
MA
945 }
946 }
48e2faf2
PM
947
948 /* Check that all NICs requested via -net nic actually got created.
949 * NICs created via -device don't need to be checked here because
950 * they are always instantiated.
951 */
952 for (i = 0; i < MAX_NICS; i++) {
953 NICInfo *nd = &nd_table[i];
954 if (nd->used && !nd->instantiated) {
955 fprintf(stderr, "Warning: requested NIC (%s, model %s) "
956 "was not created (not supported by this machine?)\n",
957 nd->name ? nd->name : "anonymous",
958 nd->model ? nd->model : "unspecified");
959 }
960 }
63a01ef8 961}
dc1c9fe8
MM
962
963static int net_init_client(QemuOpts *opts, void *dummy)
964{
4559a1db
LC
965 Error *local_err = NULL;
966
967 net_client_init(opts, 0, &local_err);
968 if (error_is_set(&local_err)) {
969 qerror_report_err(local_err);
970 error_free(local_err);
c1671a08 971 return -1;
4559a1db
LC
972 }
973
c1671a08 974 return 0;
f6b134ac
MM
975}
976
977static int net_init_netdev(QemuOpts *opts, void *dummy)
978{
4559a1db
LC
979 Error *local_err = NULL;
980 int ret;
981
982 ret = net_client_init(opts, 1, &local_err);
983 if (error_is_set(&local_err)) {
984 qerror_report_err(local_err);
985 error_free(local_err);
986 return -1;
987 }
988
989 return ret;
dc1c9fe8
MM
990}
991
992int net_init_clients(void)
993{
3329f07b
GH
994 QemuOptsList *net = qemu_find_opts("net");
995
cb4522cc 996 if (default_net) {
dc1c9fe8 997 /* if no clients, we use a default config */
3329f07b 998 qemu_opts_set(net, NULL, "type", "nic");
dc1c9fe8 999#ifdef CONFIG_SLIRP
3329f07b 1000 qemu_opts_set(net, NULL, "type", "user");
dc1c9fe8
MM
1001#endif
1002 }
1003
94878994 1004 QTAILQ_INIT(&net_clients);
5610c3aa 1005
3329f07b 1006 if (qemu_opts_foreach(qemu_find_opts("netdev"), net_init_netdev, NULL, 1) == -1)
f6b134ac
MM
1007 return -1;
1008
3329f07b 1009 if (qemu_opts_foreach(net, net_init_client, NULL, 1) == -1) {
dc1c9fe8
MM
1010 return -1;
1011 }
1012
dc1c9fe8
MM
1013 return 0;
1014}
1015
7f161aae 1016int net_client_parse(QemuOptsList *opts_list, const char *optarg)
dc1c9fe8 1017{
a3a766e7 1018#if defined(CONFIG_SLIRP)
68ac40d2
MM
1019 int ret;
1020 if (net_slirp_parse_legacy(opts_list, optarg, &ret)) {
dc1c9fe8
MM
1021 return ret;
1022 }
a3a766e7 1023#endif
68ac40d2 1024
8212c64f 1025 if (!qemu_opts_parse(opts_list, optarg, 1)) {
dc1c9fe8
MM
1026 return -1;
1027 }
1028
cb4522cc 1029 default_net = 0;
dc1c9fe8
MM
1030 return 0;
1031}
7fc8d918
JW
1032
1033/* From FreeBSD */
1034/* XXX: optimize */
1035unsigned compute_mcast_idx(const uint8_t *ep)
1036{
1037 uint32_t crc;
1038 int carry, i, j;
1039 uint8_t b;
1040
1041 crc = 0xffffffff;
1042 for (i = 0; i < 6; i++) {
1043 b = *ep++;
1044 for (j = 0; j < 8; j++) {
1045 carry = ((crc & 0x80000000L) ? 1 : 0) ^ (b & 0x01);
1046 crc <<= 1;
1047 b >>= 1;
1048 if (carry) {
1049 crc = ((crc ^ POLYNOMIAL) | carry);
1050 }
1051 }
1052 }
1053 return crc >> 26;
1054}
4d454574
PB
1055
1056QemuOptsList qemu_netdev_opts = {
1057 .name = "netdev",
1058 .implied_opt_name = "type",
1059 .head = QTAILQ_HEAD_INITIALIZER(qemu_netdev_opts.head),
1060 .desc = {
1061 /*
1062 * no elements => accept any params
1063 * validation will happen later
1064 */
1065 { /* end of list */ }
1066 },
1067};
1068
1069QemuOptsList qemu_net_opts = {
1070 .name = "net",
1071 .implied_opt_name = "type",
1072 .head = QTAILQ_HEAD_INITIALIZER(qemu_net_opts.head),
1073 .desc = {
1074 /*
1075 * no elements => accept any params
1076 * validation will happen later
1077 */
1078 { /* end of list */ }
1079 },
1080};