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