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