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