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