bb7ab1567a8b47f4aef5da31c4cecd01aeb2914d
[sdk/emulator/qemu.git] / net.c
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  */
24 #include "net.h"
25
26 #include "config-host.h"
27
28 #include "net/tap.h"
29 #include "net/socket.h"
30 #include "net/dump.h"
31 #include "net/slirp.h"
32 #include "net/vde.h"
33 #include "net/util.h"
34 #include "monitor.h"
35 #include "sysemu.h"
36 #include "qemu-common.h"
37 #include "qemu_socket.h"
38 #include "hw/qdev.h"
39
40 static QTAILQ_HEAD(, VLANState) vlans;
41 static QTAILQ_HEAD(, VLANClientState) non_vlan_clients;
42
43 int default_net = 1;
44
45 /***********************************************************/
46 /* network device redirectors */
47
48 #if defined(DEBUG_NET)
49 static void hex_dump(FILE *f, const uint8_t *buf, int size)
50 {
51     int len, i, j, c;
52
53     for(i=0;i<size;i+=16) {
54         len = size - i;
55         if (len > 16)
56             len = 16;
57         fprintf(f, "%08x ", i);
58         for(j=0;j<16;j++) {
59             if (j < len)
60                 fprintf(f, " %02x", buf[i+j]);
61             else
62                 fprintf(f, "   ");
63         }
64         fprintf(f, " ");
65         for(j=0;j<len;j++) {
66             c = buf[i+j];
67             if (c < ' ' || c > '~')
68                 c = '.';
69             fprintf(f, "%c", c);
70         }
71         fprintf(f, "\n");
72     }
73 }
74 #endif
75
76 static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
77 {
78     const char *p, *p1;
79     int len;
80     p = *pp;
81     p1 = strchr(p, sep);
82     if (!p1)
83         return -1;
84     len = p1 - p;
85     p1++;
86     if (buf_size > 0) {
87         if (len > buf_size - 1)
88             len = buf_size - 1;
89         memcpy(buf, p, len);
90         buf[len] = '\0';
91     }
92     *pp = p1;
93     return 0;
94 }
95
96 int parse_host_src_port(struct sockaddr_in *haddr,
97                         struct sockaddr_in *saddr,
98                         const char *input_str)
99 {
100     char *str = qemu_strdup(input_str);
101     char *host_str = str;
102     char *src_str;
103     const char *src_str2;
104     char *ptr;
105
106     /*
107      * Chop off any extra arguments at the end of the string which
108      * would start with a comma, then fill in the src port information
109      * if it was provided else use the "any address" and "any port".
110      */
111     if ((ptr = strchr(str,',')))
112         *ptr = '\0';
113
114     if ((src_str = strchr(input_str,'@'))) {
115         *src_str = '\0';
116         src_str++;
117     }
118
119     if (parse_host_port(haddr, host_str) < 0)
120         goto fail;
121
122     src_str2 = src_str;
123     if (!src_str || *src_str == '\0')
124         src_str2 = ":0";
125
126     if (parse_host_port(saddr, src_str2) < 0)
127         goto fail;
128
129     free(str);
130     return(0);
131
132 fail:
133     free(str);
134     return -1;
135 }
136
137 int parse_host_port(struct sockaddr_in *saddr, const char *str)
138 {
139     char buf[512];
140     struct hostent *he;
141     const char *p, *r;
142     int port;
143
144     p = str;
145     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
146         return -1;
147     saddr->sin_family = AF_INET;
148     if (buf[0] == '\0') {
149         saddr->sin_addr.s_addr = 0;
150     } else {
151         if (qemu_isdigit(buf[0])) {
152             if (!inet_aton(buf, &saddr->sin_addr))
153                 return -1;
154         } else {
155             if ((he = gethostbyname(buf)) == NULL)
156                 return - 1;
157             saddr->sin_addr = *(struct in_addr *)he->h_addr;
158         }
159     }
160     port = strtol(p, (char **)&r, 0);
161     if (r == p)
162         return -1;
163     saddr->sin_port = htons(port);
164     return 0;
165 }
166
167 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
168 {
169     snprintf(vc->info_str, sizeof(vc->info_str),
170              "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
171              vc->model,
172              macaddr[0], macaddr[1], macaddr[2],
173              macaddr[3], macaddr[4], macaddr[5]);
174 }
175
176 void qemu_macaddr_default_if_unset(MACAddr *macaddr)
177 {
178     static int index = 0;
179     static const MACAddr zero = { .a = { 0,0,0,0,0,0 } };
180
181     if (memcmp(macaddr, &zero, sizeof(zero)) != 0)
182         return;
183     macaddr->a[0] = 0x52;
184     macaddr->a[1] = 0x54;
185     macaddr->a[2] = 0x00;
186     macaddr->a[3] = 0x12;
187     macaddr->a[4] = 0x34;
188     macaddr->a[5] = 0x56 + index++;
189 }
190
191 static char *assign_name(VLANClientState *vc1, const char *model)
192 {
193     VLANState *vlan;
194     char buf[256];
195     int id = 0;
196
197     QTAILQ_FOREACH(vlan, &vlans, next) {
198         VLANClientState *vc;
199
200         QTAILQ_FOREACH(vc, &vlan->clients, next) {
201             if (vc != vc1 && strcmp(vc->model, model) == 0) {
202                 id++;
203             }
204         }
205     }
206
207     snprintf(buf, sizeof(buf), "%s.%d", model, id);
208
209     return qemu_strdup(buf);
210 }
211
212 static ssize_t qemu_deliver_packet(VLANClientState *sender,
213                                    unsigned flags,
214                                    const uint8_t *data,
215                                    size_t size,
216                                    void *opaque);
217 static ssize_t qemu_deliver_packet_iov(VLANClientState *sender,
218                                        unsigned flags,
219                                        const struct iovec *iov,
220                                        int iovcnt,
221                                        void *opaque);
222
223 VLANClientState *qemu_new_net_client(NetClientInfo *info,
224                                      VLANState *vlan,
225                                      VLANClientState *peer,
226                                      const char *model,
227                                      const char *name)
228 {
229     VLANClientState *vc;
230
231     assert(info->size >= sizeof(VLANClientState));
232
233     vc = qemu_mallocz(info->size);
234
235     vc->info = info;
236     vc->model = qemu_strdup(model);
237     if (name) {
238         vc->name = qemu_strdup(name);
239     } else {
240         vc->name = assign_name(vc, model);
241     }
242
243     if (vlan) {
244         assert(!peer);
245         vc->vlan = vlan;
246         QTAILQ_INSERT_TAIL(&vc->vlan->clients, vc, next);
247     } else {
248         if (peer) {
249             assert(!peer->peer);
250             vc->peer = peer;
251             peer->peer = vc;
252         }
253         QTAILQ_INSERT_TAIL(&non_vlan_clients, vc, next);
254
255         vc->send_queue = qemu_new_net_queue(qemu_deliver_packet,
256                                             qemu_deliver_packet_iov,
257                                             vc);
258     }
259
260     return vc;
261 }
262
263 NICState *qemu_new_nic(NetClientInfo *info,
264                        NICConf *conf,
265                        const char *model,
266                        const char *name,
267                        void *opaque)
268 {
269     VLANClientState *nc;
270     NICState *nic;
271
272     assert(info->type == NET_CLIENT_TYPE_NIC);
273     assert(info->size >= sizeof(NICState));
274
275     nc = qemu_new_net_client(info, conf->vlan, conf->peer, model, name);
276
277     nic = DO_UPCAST(NICState, nc, nc);
278     nic->conf = conf;
279     nic->opaque = opaque;
280
281     return nic;
282 }
283
284 void qemu_del_vlan_client(VLANClientState *vc)
285 {
286     if (vc->vlan) {
287         QTAILQ_REMOVE(&vc->vlan->clients, vc, next);
288     } else {
289         if (vc->send_queue) {
290             qemu_del_net_queue(vc->send_queue);
291         }
292         QTAILQ_REMOVE(&non_vlan_clients, vc, next);
293         if (vc->peer) {
294             vc->peer->peer = NULL;
295         }
296     }
297
298     if (vc->info->cleanup) {
299         vc->info->cleanup(vc);
300     }
301
302     qemu_free(vc->name);
303     qemu_free(vc->model);
304     qemu_free(vc);
305 }
306
307 VLANClientState *
308 qemu_find_vlan_client_by_name(Monitor *mon, int vlan_id,
309                               const char *client_str)
310 {
311     VLANState *vlan;
312     VLANClientState *vc;
313
314     vlan = qemu_find_vlan(vlan_id, 0);
315     if (!vlan) {
316         monitor_printf(mon, "unknown VLAN %d\n", vlan_id);
317         return NULL;
318     }
319
320     QTAILQ_FOREACH(vc, &vlan->clients, next) {
321         if (!strcmp(vc->name, client_str)) {
322             break;
323         }
324     }
325     if (!vc) {
326         monitor_printf(mon, "can't find device %s on VLAN %d\n",
327                        client_str, vlan_id);
328     }
329
330     return vc;
331 }
332
333 void qemu_foreach_nic(qemu_nic_foreach func, void *opaque)
334 {
335     VLANClientState *nc;
336     VLANState *vlan;
337
338     QTAILQ_FOREACH(nc, &non_vlan_clients, next) {
339         if (nc->info->type == NET_CLIENT_TYPE_NIC) {
340             func(DO_UPCAST(NICState, nc, nc), opaque);
341         }
342     }
343
344     QTAILQ_FOREACH(vlan, &vlans, next) {
345         QTAILQ_FOREACH(nc, &vlan->clients, next) {
346             if (nc->info->type == NET_CLIENT_TYPE_NIC) {
347                 func(DO_UPCAST(NICState, nc, nc), opaque);
348             }
349         }
350     }
351 }
352
353 int qemu_can_send_packet(VLANClientState *sender)
354 {
355     VLANState *vlan = sender->vlan;
356     VLANClientState *vc;
357
358     if (sender->peer) {
359         if (sender->peer->receive_disabled) {
360             return 0;
361         } else if (sender->peer->info->can_receive &&
362                    !sender->peer->info->can_receive(sender->peer)) {
363             return 0;
364         } else {
365             return 1;
366         }
367     }
368
369     if (!sender->vlan) {
370         return 1;
371     }
372
373     QTAILQ_FOREACH(vc, &vlan->clients, next) {
374         if (vc == sender) {
375             continue;
376         }
377
378         /* no can_receive() handler, they can always receive */
379         if (!vc->info->can_receive || vc->info->can_receive(vc)) {
380             return 1;
381         }
382     }
383     return 0;
384 }
385
386 static ssize_t qemu_deliver_packet(VLANClientState *sender,
387                                    unsigned flags,
388                                    const uint8_t *data,
389                                    size_t size,
390                                    void *opaque)
391 {
392     VLANClientState *vc = opaque;
393     ssize_t ret;
394
395     if (vc->link_down) {
396         return size;
397     }
398
399     if (vc->receive_disabled) {
400         return 0;
401     }
402
403     if (flags & QEMU_NET_PACKET_FLAG_RAW && vc->info->receive_raw) {
404         ret = vc->info->receive_raw(vc, data, size);
405     } else {
406         ret = vc->info->receive(vc, data, size);
407     }
408
409     if (ret == 0) {
410         vc->receive_disabled = 1;
411     };
412
413     return ret;
414 }
415
416 static ssize_t qemu_vlan_deliver_packet(VLANClientState *sender,
417                                         unsigned flags,
418                                         const uint8_t *buf,
419                                         size_t size,
420                                         void *opaque)
421 {
422     VLANState *vlan = opaque;
423     VLANClientState *vc;
424     ssize_t ret = -1;
425
426     QTAILQ_FOREACH(vc, &vlan->clients, next) {
427         ssize_t len;
428
429         if (vc == sender) {
430             continue;
431         }
432
433         if (vc->link_down) {
434             ret = size;
435             continue;
436         }
437
438         if (vc->receive_disabled) {
439             ret = 0;
440             continue;
441         }
442
443         if (flags & QEMU_NET_PACKET_FLAG_RAW && vc->info->receive_raw) {
444             len = vc->info->receive_raw(vc, buf, size);
445         } else {
446             len = vc->info->receive(vc, buf, size);
447         }
448
449         if (len == 0) {
450             vc->receive_disabled = 1;
451         }
452
453         ret = (ret >= 0) ? ret : len;
454
455     }
456
457     return ret;
458 }
459
460 void qemu_purge_queued_packets(VLANClientState *vc)
461 {
462     NetQueue *queue;
463
464     if (!vc->peer && !vc->vlan) {
465         return;
466     }
467
468     if (vc->peer) {
469         queue = vc->peer->send_queue;
470     } else {
471         queue = vc->vlan->send_queue;
472     }
473
474     qemu_net_queue_purge(queue, vc);
475 }
476
477 void qemu_flush_queued_packets(VLANClientState *vc)
478 {
479     NetQueue *queue;
480
481     vc->receive_disabled = 0;
482
483     if (vc->vlan) {
484         queue = vc->vlan->send_queue;
485     } else {
486         queue = vc->send_queue;
487     }
488
489     qemu_net_queue_flush(queue);
490 }
491
492 static ssize_t qemu_send_packet_async_with_flags(VLANClientState *sender,
493                                                  unsigned flags,
494                                                  const uint8_t *buf, int size,
495                                                  NetPacketSent *sent_cb)
496 {
497     NetQueue *queue;
498
499 #ifdef DEBUG_NET
500     printf("qemu_send_packet_async:\n");
501     hex_dump(stdout, buf, size);
502 #endif
503
504     if (sender->link_down || (!sender->peer && !sender->vlan)) {
505         return size;
506     }
507
508     if (sender->peer) {
509         queue = sender->peer->send_queue;
510     } else {
511         queue = sender->vlan->send_queue;
512     }
513
514     return qemu_net_queue_send(queue, sender, flags, buf, size, sent_cb);
515 }
516
517 ssize_t qemu_send_packet_async(VLANClientState *sender,
518                                const uint8_t *buf, int size,
519                                NetPacketSent *sent_cb)
520 {
521     return qemu_send_packet_async_with_flags(sender, QEMU_NET_PACKET_FLAG_NONE,
522                                              buf, size, sent_cb);
523 }
524
525 void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size)
526 {
527     qemu_send_packet_async(vc, buf, size, NULL);
528 }
529
530 ssize_t qemu_send_packet_raw(VLANClientState *vc, const uint8_t *buf, int size)
531 {
532     return qemu_send_packet_async_with_flags(vc, QEMU_NET_PACKET_FLAG_RAW,
533                                              buf, size, NULL);
534 }
535
536 static ssize_t vc_sendv_compat(VLANClientState *vc, const struct iovec *iov,
537                                int iovcnt)
538 {
539     uint8_t buffer[4096];
540     size_t offset = 0;
541     int i;
542
543     for (i = 0; i < iovcnt; i++) {
544         size_t len;
545
546         len = MIN(sizeof(buffer) - offset, iov[i].iov_len);
547         memcpy(buffer + offset, iov[i].iov_base, len);
548         offset += len;
549     }
550
551     return vc->info->receive(vc, buffer, offset);
552 }
553
554 static ssize_t calc_iov_length(const struct iovec *iov, int iovcnt)
555 {
556     size_t offset = 0;
557     int i;
558
559     for (i = 0; i < iovcnt; i++)
560         offset += iov[i].iov_len;
561     return offset;
562 }
563
564 static ssize_t qemu_deliver_packet_iov(VLANClientState *sender,
565                                        unsigned flags,
566                                        const struct iovec *iov,
567                                        int iovcnt,
568                                        void *opaque)
569 {
570     VLANClientState *vc = opaque;
571
572     if (vc->link_down) {
573         return calc_iov_length(iov, iovcnt);
574     }
575
576     if (vc->info->receive_iov) {
577         return vc->info->receive_iov(vc, iov, iovcnt);
578     } else {
579         return vc_sendv_compat(vc, iov, iovcnt);
580     }
581 }
582
583 static ssize_t qemu_vlan_deliver_packet_iov(VLANClientState *sender,
584                                             unsigned flags,
585                                             const struct iovec *iov,
586                                             int iovcnt,
587                                             void *opaque)
588 {
589     VLANState *vlan = opaque;
590     VLANClientState *vc;
591     ssize_t ret = -1;
592
593     QTAILQ_FOREACH(vc, &vlan->clients, next) {
594         ssize_t len;
595
596         if (vc == sender) {
597             continue;
598         }
599
600         if (vc->link_down) {
601             ret = calc_iov_length(iov, iovcnt);
602             continue;
603         }
604
605         assert(!(flags & QEMU_NET_PACKET_FLAG_RAW));
606
607         if (vc->info->receive_iov) {
608             len = vc->info->receive_iov(vc, iov, iovcnt);
609         } else {
610             len = vc_sendv_compat(vc, iov, iovcnt);
611         }
612
613         ret = (ret >= 0) ? ret : len;
614     }
615
616     return ret;
617 }
618
619 ssize_t qemu_sendv_packet_async(VLANClientState *sender,
620                                 const struct iovec *iov, int iovcnt,
621                                 NetPacketSent *sent_cb)
622 {
623     NetQueue *queue;
624
625     if (sender->link_down || (!sender->peer && !sender->vlan)) {
626         return calc_iov_length(iov, iovcnt);
627     }
628
629     if (sender->peer) {
630         queue = sender->peer->send_queue;
631     } else {
632         queue = sender->vlan->send_queue;
633     }
634
635     return qemu_net_queue_send_iov(queue, sender,
636                                    QEMU_NET_PACKET_FLAG_NONE,
637                                    iov, iovcnt, sent_cb);
638 }
639
640 ssize_t
641 qemu_sendv_packet(VLANClientState *vc, const struct iovec *iov, int iovcnt)
642 {
643     return qemu_sendv_packet_async(vc, iov, iovcnt, NULL);
644 }
645
646 /* find or alloc a new VLAN */
647 VLANState *qemu_find_vlan(int id, int allocate)
648 {
649     VLANState *vlan;
650
651     QTAILQ_FOREACH(vlan, &vlans, next) {
652         if (vlan->id == id) {
653             return vlan;
654         }
655     }
656
657     if (!allocate) {
658         return NULL;
659     }
660
661     vlan = qemu_mallocz(sizeof(VLANState));
662     vlan->id = id;
663     QTAILQ_INIT(&vlan->clients);
664
665     vlan->send_queue = qemu_new_net_queue(qemu_vlan_deliver_packet,
666                                           qemu_vlan_deliver_packet_iov,
667                                           vlan);
668
669     QTAILQ_INSERT_TAIL(&vlans, vlan, next);
670
671     return vlan;
672 }
673
674 VLANClientState *qemu_find_netdev(const char *id)
675 {
676     VLANClientState *vc;
677
678     QTAILQ_FOREACH(vc, &non_vlan_clients, next) {
679         if (!strcmp(vc->name, id)) {
680             return vc;
681         }
682     }
683
684     return NULL;
685 }
686
687 static int nic_get_free_idx(void)
688 {
689     int index;
690
691     for (index = 0; index < MAX_NICS; index++)
692         if (!nd_table[index].used)
693             return index;
694     return -1;
695 }
696
697 int qemu_show_nic_models(const char *arg, const char *const *models)
698 {
699     int i;
700
701     if (!arg || strcmp(arg, "?"))
702         return 0;
703
704     fprintf(stderr, "qemu: Supported NIC models: ");
705     for (i = 0 ; models[i]; i++)
706         fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
707     return 1;
708 }
709
710 void qemu_check_nic_model(NICInfo *nd, const char *model)
711 {
712     const char *models[2];
713
714     models[0] = model;
715     models[1] = NULL;
716
717     if (qemu_show_nic_models(nd->model, models))
718         exit(0);
719     if (qemu_find_nic_model(nd, models, model) < 0)
720         exit(1);
721 }
722
723 int qemu_find_nic_model(NICInfo *nd, const char * const *models,
724                         const char *default_model)
725 {
726     int i;
727
728     if (!nd->model)
729         nd->model = qemu_strdup(default_model);
730
731     for (i = 0 ; models[i]; i++) {
732         if (strcmp(nd->model, models[i]) == 0)
733             return i;
734     }
735
736     error_report("qemu: Unsupported NIC model: %s", nd->model);
737     return -1;
738 }
739
740 int net_handle_fd_param(Monitor *mon, const char *param)
741 {
742     if (!qemu_isdigit(param[0])) {
743         int fd;
744
745         fd = monitor_get_fd(mon, param);
746         if (fd == -1) {
747             error_report("No file descriptor named %s found", param);
748             return -1;
749         }
750
751         return fd;
752     } else {
753         return strtol(param, NULL, 0);
754     }
755 }
756
757 static int net_init_nic(QemuOpts *opts,
758                         Monitor *mon,
759                         const char *name,
760                         VLANState *vlan)
761 {
762     int idx;
763     NICInfo *nd;
764     const char *netdev;
765
766     idx = nic_get_free_idx();
767     if (idx == -1 || nb_nics >= MAX_NICS) {
768         error_report("Too Many NICs");
769         return -1;
770     }
771
772     nd = &nd_table[idx];
773
774     memset(nd, 0, sizeof(*nd));
775
776     if ((netdev = qemu_opt_get(opts, "netdev"))) {
777         nd->netdev = qemu_find_netdev(netdev);
778         if (!nd->netdev) {
779             error_report("netdev '%s' not found", netdev);
780             return -1;
781         }
782     } else {
783         assert(vlan);
784         nd->vlan = vlan;
785     }
786     if (name) {
787         nd->name = qemu_strdup(name);
788     }
789     if (qemu_opt_get(opts, "model")) {
790         nd->model = qemu_strdup(qemu_opt_get(opts, "model"));
791     }
792     if (qemu_opt_get(opts, "addr")) {
793         nd->devaddr = qemu_strdup(qemu_opt_get(opts, "addr"));
794     }
795
796     nd->macaddr[0] = 0x52;
797     nd->macaddr[1] = 0x54;
798     nd->macaddr[2] = 0x00;
799     nd->macaddr[3] = 0x12;
800     nd->macaddr[4] = 0x34;
801     nd->macaddr[5] = 0x56 + idx;
802
803     if (qemu_opt_get(opts, "macaddr") &&
804         net_parse_macaddr(nd->macaddr, qemu_opt_get(opts, "macaddr")) < 0) {
805         error_report("invalid syntax for ethernet address");
806         return -1;
807     }
808
809     nd->nvectors = qemu_opt_get_number(opts, "vectors",
810                                        DEV_NVECTORS_UNSPECIFIED);
811     if (nd->nvectors != DEV_NVECTORS_UNSPECIFIED &&
812         (nd->nvectors < 0 || nd->nvectors > 0x7ffffff)) {
813         error_report("invalid # of vectors: %d", nd->nvectors);
814         return -1;
815     }
816
817     nd->used = 1;
818     nb_nics++;
819
820     return idx;
821 }
822
823 #define NET_COMMON_PARAMS_DESC                     \
824     {                                              \
825         .name = "type",                            \
826         .type = QEMU_OPT_STRING,                   \
827         .help = "net client type (nic, tap etc.)", \
828      }, {                                          \
829         .name = "vlan",                            \
830         .type = QEMU_OPT_NUMBER,                   \
831         .help = "vlan number",                     \
832      }, {                                          \
833         .name = "name",                            \
834         .type = QEMU_OPT_STRING,                   \
835         .help = "identifier for monitor commands", \
836      }
837
838 typedef int (*net_client_init_func)(QemuOpts *opts,
839                                     Monitor *mon,
840                                     const char *name,
841                                     VLANState *vlan);
842
843 /* magic number, but compiler will warn if too small */
844 #define NET_MAX_DESC 20
845
846 static const struct {
847     const char *type;
848     net_client_init_func init;
849     QemuOptDesc desc[NET_MAX_DESC];
850 } net_client_types[] = {
851     {
852         .type = "none",
853         .desc = {
854             NET_COMMON_PARAMS_DESC,
855             { /* end of list */ }
856         },
857     }, {
858         .type = "nic",
859         .init = net_init_nic,
860         .desc = {
861             NET_COMMON_PARAMS_DESC,
862             {
863                 .name = "netdev",
864                 .type = QEMU_OPT_STRING,
865                 .help = "id of -netdev to connect to",
866             },
867             {
868                 .name = "macaddr",
869                 .type = QEMU_OPT_STRING,
870                 .help = "MAC address",
871             }, {
872                 .name = "model",
873                 .type = QEMU_OPT_STRING,
874                 .help = "device model (e1000, rtl8139, virtio etc.)",
875             }, {
876                 .name = "addr",
877                 .type = QEMU_OPT_STRING,
878                 .help = "PCI device address",
879             }, {
880                 .name = "vectors",
881                 .type = QEMU_OPT_NUMBER,
882                 .help = "number of MSI-x vectors, 0 to disable MSI-X",
883             },
884             { /* end of list */ }
885         },
886 #ifdef CONFIG_SLIRP
887     }, {
888         .type = "user",
889         .init = net_init_slirp,
890         .desc = {
891             NET_COMMON_PARAMS_DESC,
892             {
893                 .name = "hostname",
894                 .type = QEMU_OPT_STRING,
895                 .help = "client hostname reported by the builtin DHCP server",
896             }, {
897                 .name = "restrict",
898                 .type = QEMU_OPT_STRING,
899                 .help = "isolate the guest from the host (y|yes|n|no)",
900             }, {
901                 .name = "ip",
902                 .type = QEMU_OPT_STRING,
903                 .help = "legacy parameter, use net= instead",
904             }, {
905                 .name = "net",
906                 .type = QEMU_OPT_STRING,
907                 .help = "IP address and optional netmask",
908             }, {
909                 .name = "host",
910                 .type = QEMU_OPT_STRING,
911                 .help = "guest-visible address of the host",
912             }, {
913                 .name = "tftp",
914                 .type = QEMU_OPT_STRING,
915                 .help = "root directory of the built-in TFTP server",
916             }, {
917                 .name = "bootfile",
918                 .type = QEMU_OPT_STRING,
919                 .help = "BOOTP filename, for use with tftp=",
920             }, {
921                 .name = "dhcpstart",
922                 .type = QEMU_OPT_STRING,
923                 .help = "the first of the 16 IPs the built-in DHCP server can assign",
924             }, {
925                 .name = "dns",
926                 .type = QEMU_OPT_STRING,
927                 .help = "guest-visible address of the virtual nameserver",
928             }, {
929                 .name = "smb",
930                 .type = QEMU_OPT_STRING,
931                 .help = "root directory of the built-in SMB server",
932             }, {
933                 .name = "smbserver",
934                 .type = QEMU_OPT_STRING,
935                 .help = "IP address of the built-in SMB server",
936             }, {
937                 .name = "hostfwd",
938                 .type = QEMU_OPT_STRING,
939                 .help = "guest port number to forward incoming TCP or UDP connections",
940             }, {
941                 .name = "guestfwd",
942                 .type = QEMU_OPT_STRING,
943                 .help = "IP address and port to forward guest TCP connections",
944             },
945             { /* end of list */ }
946         },
947 #endif
948     }, {
949         .type = "tap",
950         .init = net_init_tap,
951         .desc = {
952             NET_COMMON_PARAMS_DESC,
953             {
954                 .name = "ifname",
955                 .type = QEMU_OPT_STRING,
956                 .help = "interface name",
957             },
958 #ifndef _WIN32
959             {
960                 .name = "fd",
961                 .type = QEMU_OPT_STRING,
962                 .help = "file descriptor of an already opened tap",
963             }, {
964                 .name = "script",
965                 .type = QEMU_OPT_STRING,
966                 .help = "script to initialize the interface",
967             }, {
968                 .name = "downscript",
969                 .type = QEMU_OPT_STRING,
970                 .help = "script to shut down the interface",
971             }, {
972                 .name = "sndbuf",
973                 .type = QEMU_OPT_SIZE,
974                 .help = "send buffer limit"
975             }, {
976                 .name = "vnet_hdr",
977                 .type = QEMU_OPT_BOOL,
978                 .help = "enable the IFF_VNET_HDR flag on the tap interface"
979             },
980 #endif /* _WIN32 */
981             { /* end of list */ }
982         },
983     }, {
984         .type = "socket",
985         .init = net_init_socket,
986         .desc = {
987             NET_COMMON_PARAMS_DESC,
988             {
989                 .name = "fd",
990                 .type = QEMU_OPT_STRING,
991                 .help = "file descriptor of an already opened socket",
992             }, {
993                 .name = "listen",
994                 .type = QEMU_OPT_STRING,
995                 .help = "port number, and optional hostname, to listen on",
996             }, {
997                 .name = "connect",
998                 .type = QEMU_OPT_STRING,
999                 .help = "port number, and optional hostname, to connect to",
1000             }, {
1001                 .name = "mcast",
1002                 .type = QEMU_OPT_STRING,
1003                 .help = "UDP multicast address and port number",
1004             },
1005             { /* end of list */ }
1006         },
1007 #ifdef CONFIG_VDE
1008     }, {
1009         .type = "vde",
1010         .init = net_init_vde,
1011         .desc = {
1012             NET_COMMON_PARAMS_DESC,
1013             {
1014                 .name = "sock",
1015                 .type = QEMU_OPT_STRING,
1016                 .help = "socket path",
1017             }, {
1018                 .name = "port",
1019                 .type = QEMU_OPT_NUMBER,
1020                 .help = "port number",
1021             }, {
1022                 .name = "group",
1023                 .type = QEMU_OPT_STRING,
1024                 .help = "group owner of socket",
1025             }, {
1026                 .name = "mode",
1027                 .type = QEMU_OPT_NUMBER,
1028                 .help = "permissions for socket",
1029             },
1030             { /* end of list */ }
1031         },
1032 #endif
1033     }, {
1034         .type = "dump",
1035         .init = net_init_dump,
1036         .desc = {
1037             NET_COMMON_PARAMS_DESC,
1038             {
1039                 .name = "len",
1040                 .type = QEMU_OPT_SIZE,
1041                 .help = "per-packet size limit (64k default)",
1042             }, {
1043                 .name = "file",
1044                 .type = QEMU_OPT_STRING,
1045                 .help = "dump file path (default is qemu-vlan0.pcap)",
1046             },
1047             { /* end of list */ }
1048         },
1049     },
1050     { /* end of list */ }
1051 };
1052
1053 int net_client_init(Monitor *mon, QemuOpts *opts, int is_netdev)
1054 {
1055     const char *name;
1056     const char *type;
1057     int i;
1058
1059     type = qemu_opt_get(opts, "type");
1060
1061     if (!is_netdev) {
1062         if (!type) {
1063             error_report("No type specified for -net");
1064             return -1;
1065         }
1066     } else {
1067         if (!type) {
1068             error_report("No type specified for -netdev");
1069             return -1;
1070         }
1071
1072         if (strcmp(type, "tap") != 0 &&
1073 #ifdef CONFIG_SLIRP
1074             strcmp(type, "user") != 0 &&
1075 #endif
1076 #ifdef CONFIG_VDE
1077             strcmp(type, "vde") != 0 &&
1078 #endif
1079             strcmp(type, "socket") != 0) {
1080             error_report("The '%s' network backend type is not valid with -netdev",
1081                          type);
1082             return -1;
1083         }
1084
1085         if (qemu_opt_get(opts, "vlan")) {
1086             error_report("The 'vlan' parameter is not valid with -netdev");
1087             return -1;
1088         }
1089         if (qemu_opt_get(opts, "name")) {
1090             error_report("The 'name' parameter is not valid with -netdev");
1091             return -1;
1092         }
1093         if (!qemu_opts_id(opts)) {
1094             error_report("The id= parameter is required with -netdev");
1095             return -1;
1096         }
1097     }
1098
1099     name = qemu_opts_id(opts);
1100     if (!name) {
1101         name = qemu_opt_get(opts, "name");
1102     }
1103
1104     for (i = 0; net_client_types[i].type != NULL; i++) {
1105         if (!strcmp(net_client_types[i].type, type)) {
1106             VLANState *vlan = NULL;
1107
1108             if (qemu_opts_validate(opts, &net_client_types[i].desc[0]) == -1) {
1109                 return -1;
1110             }
1111
1112             /* Do not add to a vlan if it's a -netdev or a nic with a
1113              * netdev= parameter. */
1114             if (!(is_netdev ||
1115                   (strcmp(type, "nic") == 0 && qemu_opt_get(opts, "netdev")))) {
1116                 vlan = qemu_find_vlan(qemu_opt_get_number(opts, "vlan", 0), 1);
1117             }
1118
1119             if (net_client_types[i].init) {
1120                 return net_client_types[i].init(opts, mon, name, vlan);
1121             } else {
1122                 return 0;
1123             }
1124         }
1125     }
1126
1127     error_report("Invalid -net type '%s'", type);
1128     return -1;
1129 }
1130
1131 static int net_host_check_device(const char *device)
1132 {
1133     int i;
1134     const char *valid_param_list[] = { "tap", "socket", "dump"
1135 #ifdef CONFIG_SLIRP
1136                                        ,"user"
1137 #endif
1138 #ifdef CONFIG_VDE
1139                                        ,"vde"
1140 #endif
1141     };
1142     for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
1143         if (!strncmp(valid_param_list[i], device,
1144                      strlen(valid_param_list[i])))
1145             return 1;
1146     }
1147
1148     return 0;
1149 }
1150
1151 void net_host_device_add(Monitor *mon, const QDict *qdict)
1152 {
1153     const char *device = qdict_get_str(qdict, "device");
1154     const char *opts_str = qdict_get_try_str(qdict, "opts");
1155     QemuOpts *opts;
1156
1157     if (!net_host_check_device(device)) {
1158         monitor_printf(mon, "invalid host network device %s\n", device);
1159         return;
1160     }
1161
1162     opts = qemu_opts_parse(&qemu_net_opts, opts_str ? opts_str : "", NULL);
1163     if (!opts) {
1164         monitor_printf(mon, "parsing network options '%s' failed\n",
1165                        opts_str ? opts_str : "");
1166         return;
1167     }
1168
1169     qemu_opt_set(opts, "type", device);
1170
1171     if (net_client_init(mon, opts, 0) < 0) {
1172         monitor_printf(mon, "adding host network device %s failed\n", device);
1173     }
1174 }
1175
1176 void net_host_device_remove(Monitor *mon, const QDict *qdict)
1177 {
1178     VLANClientState *vc;
1179     int vlan_id = qdict_get_int(qdict, "vlan_id");
1180     const char *device = qdict_get_str(qdict, "device");
1181
1182     vc = qemu_find_vlan_client_by_name(mon, vlan_id, device);
1183     if (!vc) {
1184         return;
1185     }
1186     if (!net_host_check_device(vc->model)) {
1187         monitor_printf(mon, "invalid host network device %s\n", device);
1188         return;
1189     }
1190     qemu_del_vlan_client(vc);
1191 }
1192
1193 void net_set_boot_mask(int net_boot_mask)
1194 {
1195     int i;
1196
1197     /* Only the first four NICs may be bootable */
1198     net_boot_mask = net_boot_mask & 0xF;
1199
1200     for (i = 0; i < nb_nics; i++) {
1201         if (net_boot_mask & (1 << i)) {
1202             nd_table[i].bootable = 1;
1203             net_boot_mask &= ~(1 << i);
1204         }
1205     }
1206
1207     if (net_boot_mask) {
1208         fprintf(stderr, "Cannot boot from non-existent NIC\n");
1209         exit(1);
1210     }
1211 }
1212
1213 void do_info_network(Monitor *mon)
1214 {
1215     VLANState *vlan;
1216     VLANClientState *vc;
1217
1218     QTAILQ_FOREACH(vlan, &vlans, next) {
1219         monitor_printf(mon, "VLAN %d devices:\n", vlan->id);
1220
1221         QTAILQ_FOREACH(vc, &vlan->clients, next) {
1222             monitor_printf(mon, "  %s: %s\n", vc->name, vc->info_str);
1223         }
1224     }
1225     monitor_printf(mon, "Devices not on any VLAN:\n");
1226     QTAILQ_FOREACH(vc, &non_vlan_clients, next) {
1227         monitor_printf(mon, "  %s: %s", vc->name, vc->info_str);
1228         if (vc->peer) {
1229             monitor_printf(mon, " peer=%s", vc->peer->name);
1230         }
1231         monitor_printf(mon, "\n");
1232     }
1233 }
1234
1235 void do_set_link(Monitor *mon, const QDict *qdict)
1236 {
1237     VLANState *vlan;
1238     VLANClientState *vc = NULL;
1239     const char *name = qdict_get_str(qdict, "name");
1240     const char *up_or_down = qdict_get_str(qdict, "up_or_down");
1241
1242     QTAILQ_FOREACH(vlan, &vlans, next) {
1243         QTAILQ_FOREACH(vc, &vlan->clients, next) {
1244             if (strcmp(vc->name, name) == 0) {
1245                 goto done;
1246             }
1247         }
1248     }
1249     vc = qemu_find_netdev(name);
1250 done:
1251
1252     if (!vc) {
1253         monitor_printf(mon, "could not find network device '%s'\n", name);
1254         return;
1255     }
1256
1257     if (strcmp(up_or_down, "up") == 0)
1258         vc->link_down = 0;
1259     else if (strcmp(up_or_down, "down") == 0)
1260         vc->link_down = 1;
1261     else
1262         monitor_printf(mon, "invalid link status '%s'; only 'up' or 'down' "
1263                        "valid\n", up_or_down);
1264
1265     if (vc->info->link_status_changed) {
1266         vc->info->link_status_changed(vc);
1267     }
1268 }
1269
1270 void net_cleanup(void)
1271 {
1272     VLANState *vlan;
1273     VLANClientState *vc, *next_vc;
1274
1275     QTAILQ_FOREACH(vlan, &vlans, next) {
1276         QTAILQ_FOREACH_SAFE(vc, &vlan->clients, next, next_vc) {
1277             qemu_del_vlan_client(vc);
1278         }
1279     }
1280
1281     QTAILQ_FOREACH_SAFE(vc, &non_vlan_clients, next, next_vc) {
1282         qemu_del_vlan_client(vc);
1283     }
1284 }
1285
1286 void net_check_clients(void)
1287 {
1288     VLANState *vlan;
1289     VLANClientState *vc;
1290     int has_nic = 0, has_host_dev = 0;
1291
1292     QTAILQ_FOREACH(vlan, &vlans, next) {
1293         QTAILQ_FOREACH(vc, &vlan->clients, next) {
1294             switch (vc->info->type) {
1295             case NET_CLIENT_TYPE_NIC:
1296                 has_nic = 1;
1297                 break;
1298             case NET_CLIENT_TYPE_SLIRP:
1299             case NET_CLIENT_TYPE_TAP:
1300             case NET_CLIENT_TYPE_SOCKET:
1301             case NET_CLIENT_TYPE_VDE:
1302                 has_host_dev = 1;
1303                 break;
1304             default: ;
1305             }
1306         }
1307         if (has_host_dev && !has_nic)
1308             fprintf(stderr, "Warning: vlan %d with no nics\n", vlan->id);
1309         if (has_nic && !has_host_dev)
1310             fprintf(stderr,
1311                     "Warning: vlan %d is not connected to host network\n",
1312                     vlan->id);
1313     }
1314     QTAILQ_FOREACH(vc, &non_vlan_clients, next) {
1315         if (!vc->peer) {
1316             fprintf(stderr, "Warning: %s %s has no peer\n",
1317                     vc->info->type == NET_CLIENT_TYPE_NIC ? "nic" : "netdev",
1318                     vc->name);
1319         }
1320     }
1321 }
1322
1323 static int net_init_client(QemuOpts *opts, void *dummy)
1324 {
1325     if (net_client_init(NULL, opts, 0) < 0)
1326         return -1;
1327     return 0;
1328 }
1329
1330 static int net_init_netdev(QemuOpts *opts, void *dummy)
1331 {
1332     return net_client_init(NULL, opts, 1);
1333 }
1334
1335 int net_init_clients(void)
1336 {
1337     if (default_net) {
1338         /* if no clients, we use a default config */
1339         qemu_opts_set(&qemu_net_opts, NULL, "type", "nic");
1340 #ifdef CONFIG_SLIRP
1341         qemu_opts_set(&qemu_net_opts, NULL, "type", "user");
1342 #endif
1343     }
1344
1345     QTAILQ_INIT(&vlans);
1346     QTAILQ_INIT(&non_vlan_clients);
1347
1348     if (qemu_opts_foreach(&qemu_netdev_opts, net_init_netdev, NULL, 1) == -1)
1349         return -1;
1350
1351     if (qemu_opts_foreach(&qemu_net_opts, net_init_client, NULL, 1) == -1) {
1352         return -1;
1353     }
1354
1355     return 0;
1356 }
1357
1358 int net_client_parse(QemuOptsList *opts_list, const char *optarg)
1359 {
1360 #if defined(CONFIG_SLIRP)
1361     int ret;
1362     if (net_slirp_parse_legacy(opts_list, optarg, &ret)) {
1363         return ret;
1364     }
1365 #endif
1366
1367     if (!qemu_opts_parse(opts_list, optarg, "type")) {
1368         return -1;
1369     }
1370
1371     default_net = 0;
1372     return 0;
1373 }