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