blob: b98616172dd19b1847e9b02874f6f463903820f3 [file] [log] [blame]
aliguori63a01ef2008-10-31 19:10:00 +00001/*
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 */
blueswir1d40cdb12009-03-07 16:52:02 +000024#include "config-host.h"
25
Paolo Bonzini1422e322012-10-24 08:43:34 +020026#include "net/net.h"
Paolo Bonzinifd9400b2012-10-24 11:27:28 +020027#include "clients.h"
28#include "hub.h"
Paolo Bonzini1422e322012-10-24 08:43:34 +020029#include "net/slirp.h"
Paolo Bonzinifd9400b2012-10-24 11:27:28 +020030#include "util.h"
Paolo Bonzinia245fc12012-09-17 18:43:51 +020031
Paolo Bonzini83c90892012-12-17 18:19:49 +010032#include "monitor/monitor.h"
Mark McLoughlin1df49e02009-11-25 18:48:58 +000033#include "qemu-common.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010034#include "qemu/sockets.h"
35#include "qemu/config-file.h"
Luiz Capitulino4b371562011-11-23 13:11:55 -020036#include "qmp-commands.h"
Amit Shah75422b02010-02-25 17:24:43 +053037#include "hw/qdev.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010038#include "qemu/iov.h"
Laszlo Ersek6687b792012-07-17 16:17:13 +020039#include "qapi-visit.h"
40#include "qapi/opts-visitor.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010041#include "qapi/dealloc-visitor.h"
blueswir1511d2b12009-03-07 15:32:56 +000042
Stefan Weil2944e4e2012-02-04 09:24:46 +010043/* Net bridge is currently not supported for W32. */
44#if !defined(_WIN32)
45# define CONFIG_NET_BRIDGE
46#endif
47
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +010048static QTAILQ_HEAD(, NetClientState) net_clients;
aliguori63a01ef2008-10-31 19:10:00 +000049
Gerd Hoffmanncb4522c2009-12-08 13:11:47 +010050int default_net = 1;
51
aliguori63a01ef2008-10-31 19:10:00 +000052/***********************************************************/
53/* network device redirectors */
54
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000055#if defined(DEBUG_NET)
aliguori63a01ef2008-10-31 19:10:00 +000056static 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
aliguori63a01ef2008-10-31 19:10:00 +000083static 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
aliguori63a01ef2008-10-31 19:10:00 +0000103int 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 {
blueswir1cd390082008-11-16 13:53:32 +0000117 if (qemu_isdigit(buf[0])) {
aliguori63a01ef2008-10-31 19:10:00 +0000118 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
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100133void qemu_format_nic_info_str(NetClientState *nc, uint8_t macaddr[6])
aliguori7cb7434b2009-01-07 17:46:21 +0000134{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100135 snprintf(nc->info_str, sizeof(nc->info_str),
aliguori4dda4062009-01-08 19:01:37 +0000136 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100137 nc->model,
aliguori7cb7434b2009-01-07 17:46:21 +0000138 macaddr[0], macaddr[1], macaddr[2],
139 macaddr[3], macaddr[4], macaddr[5]);
140}
141
Gerd Hoffmann76d32cb2009-10-21 15:25:22 +0200142void 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
Stefan Hajnoczid33d93b2012-07-24 16:35:05 +0100157/**
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 */
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100163static char *assign_name(NetClientState *nc1, const char *model)
aliguori676cff22009-01-07 17:43:44 +0000164{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100165 NetClientState *nc;
aliguori676cff22009-01-07 17:43:44 +0000166 char buf[256];
167 int id = 0;
168
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100169 QTAILQ_FOREACH(nc, &net_clients, next) {
170 if (nc == nc1) {
Stefan Hajnoczid33d93b2012-07-24 16:35:05 +0100171 continue;
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100172 }
Stefan Hajnoczid33d93b2012-07-24 16:35:05 +0100173 /* For compatibility only bump id for net clients on a vlan */
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100174 if (strcmp(nc->model, model) == 0 &&
175 net_hub_id_for_client(nc, NULL) == 0) {
Markus Armbruster53e51d82011-06-16 18:45:36 +0200176 id++;
177 }
178 }
179
aliguori676cff22009-01-07 17:43:44 +0000180 snprintf(buf, sizeof(buf), "%s.%d", model, id);
181
Anthony Liguori7267c092011-08-20 22:09:37 -0500182 return g_strdup(buf);
aliguori676cff22009-01-07 17:43:44 +0000183}
184
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100185NetClientState *qemu_new_net_client(NetClientInfo *info,
186 NetClientState *peer,
187 const char *model,
188 const char *name)
aliguori63a01ef2008-10-31 19:10:00 +0000189{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100190 NetClientState *nc;
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100191
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100192 assert(info->size >= sizeof(NetClientState));
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100193
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100194 nc = g_malloc0(info->size);
Mark McLoughlin45460d12009-11-25 18:49:02 +0000195
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100196 nc->info = info;
197 nc->model = g_strdup(model);
Mark McLoughlin45460d12009-11-25 18:49:02 +0000198 if (name) {
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100199 nc->name = g_strdup(name);
Mark McLoughlin45460d12009-11-25 18:49:02 +0000200 } else {
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100201 nc->name = assign_name(nc, model);
Mark McLoughlin45460d12009-11-25 18:49:02 +0000202 }
aliguori63a01ef2008-10-31 19:10:00 +0000203
Stefan Hajnocziab5f3f82012-07-24 16:35:08 +0100204 if (peer) {
205 assert(!peer->peer);
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100206 nc->peer = peer;
207 peer->peer = nc;
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100208 }
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100209 QTAILQ_INSERT_TAIL(&net_clients, nc, next);
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100210
Zhi Yong Wu86a77c32012-07-24 16:35:17 +0100211 nc->send_queue = qemu_new_net_queue(nc);
aliguori63a01ef2008-10-31 19:10:00 +0000212
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100213 return nc;
aliguori63a01ef2008-10-31 19:10:00 +0000214}
215
Mark McLoughlinebef2c02009-11-25 18:49:10 +0000216NICState *qemu_new_nic(NetClientInfo *info,
217 NICConf *conf,
218 const char *model,
219 const char *name,
220 void *opaque)
221{
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100222 NetClientState *nc;
Mark McLoughlinebef2c02009-11-25 18:49:10 +0000223 NICState *nic;
224
Laszlo Ersek2be64a62012-07-17 16:17:12 +0200225 assert(info->type == NET_CLIENT_OPTIONS_KIND_NIC);
Mark McLoughlinebef2c02009-11-25 18:49:10 +0000226 assert(info->size >= sizeof(NICState));
227
Stefan Hajnocziab5f3f82012-07-24 16:35:08 +0100228 nc = qemu_new_net_client(info, conf->peer, model, name);
Mark McLoughlinebef2c02009-11-25 18:49:10 +0000229
230 nic = DO_UPCAST(NICState, nc, nc);
231 nic->conf = conf;
232 nic->opaque = opaque;
233
234 return nic;
235}
236
Jason Wangb356f762013-01-30 19:12:22 +0800237NetClientState *qemu_get_queue(NICState *nic)
238{
239 return &nic->nc;
240}
241
Stefan Hajnoczib20c6b92012-07-24 16:35:15 +0100242static void qemu_cleanup_net_client(NetClientState *nc)
aliguori63a01ef2008-10-31 19:10:00 +0000243{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100244 QTAILQ_REMOVE(&net_clients, nc, next);
aliguori63a01ef2008-10-31 19:10:00 +0000245
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100246 if (nc->info->cleanup) {
247 nc->info->cleanup(nc);
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100248 }
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200249}
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100250
Stefan Hajnoczib20c6b92012-07-24 16:35:15 +0100251static void qemu_free_net_client(NetClientState *nc)
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200252{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100253 if (nc->send_queue) {
254 qemu_del_net_queue(nc->send_queue);
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200255 }
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100256 if (nc->peer) {
257 nc->peer->peer = NULL;
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100258 }
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100259 g_free(nc->name);
260 g_free(nc->model);
261 g_free(nc);
aliguori63a01ef2008-10-31 19:10:00 +0000262}
263
Stefan Hajnoczib20c6b92012-07-24 16:35:15 +0100264void qemu_del_net_client(NetClientState *nc)
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200265{
266 /* If there is a peer NIC, delete and cleanup client, but do not free. */
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100267 if (nc->peer && nc->peer->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
268 NICState *nic = DO_UPCAST(NICState, nc, nc->peer);
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200269 if (nic->peer_deleted) {
270 return;
271 }
272 nic->peer_deleted = true;
273 /* Let NIC know peer is gone. */
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100274 nc->peer->link_down = true;
275 if (nc->peer->info->link_status_changed) {
276 nc->peer->info->link_status_changed(nc->peer);
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200277 }
Stefan Hajnoczib20c6b92012-07-24 16:35:15 +0100278 qemu_cleanup_net_client(nc);
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200279 return;
280 }
281
282 /* If this is a peer NIC and peer has already been deleted, free it now. */
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100283 if (nc->peer && nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
284 NICState *nic = DO_UPCAST(NICState, nc, nc);
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200285 if (nic->peer_deleted) {
Stefan Hajnoczib20c6b92012-07-24 16:35:15 +0100286 qemu_free_net_client(nc->peer);
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200287 }
288 }
289
Stefan Hajnoczib20c6b92012-07-24 16:35:15 +0100290 qemu_cleanup_net_client(nc);
291 qemu_free_net_client(nc);
Jan Kiszka1a609522009-06-24 14:42:31 +0200292}
293
Mark McLoughlin57f9ef12009-11-25 18:49:31 +0000294void qemu_foreach_nic(qemu_nic_foreach func, void *opaque)
295{
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100296 NetClientState *nc;
Mark McLoughlin57f9ef12009-11-25 18:49:31 +0000297
Stefan Hajnoczi94878992012-07-24 16:35:12 +0100298 QTAILQ_FOREACH(nc, &net_clients, next) {
Laszlo Ersek2be64a62012-07-17 16:17:12 +0200299 if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
Mark McLoughlin57f9ef12009-11-25 18:49:31 +0000300 func(DO_UPCAST(NICState, nc, nc), opaque);
301 }
302 }
Mark McLoughlin57f9ef12009-11-25 18:49:31 +0000303}
304
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100305int qemu_can_send_packet(NetClientState *sender)
aliguori63a01ef2008-10-31 19:10:00 +0000306{
Stefan Hajnoczia005d072012-07-24 16:35:11 +0100307 if (!sender->peer) {
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100308 return 1;
309 }
310
Stefan Hajnoczia005d072012-07-24 16:35:11 +0100311 if (sender->peer->receive_disabled) {
312 return 0;
313 } else if (sender->peer->info->can_receive &&
314 !sender->peer->info->can_receive(sender->peer)) {
315 return 0;
aliguori63a01ef2008-10-31 19:10:00 +0000316 }
Vincent Palatin60c07d92011-03-02 17:25:02 -0500317 return 1;
aliguori63a01ef2008-10-31 19:10:00 +0000318}
319
Zhi Yong Wu86a77c32012-07-24 16:35:17 +0100320ssize_t qemu_deliver_packet(NetClientState *sender,
321 unsigned flags,
322 const uint8_t *data,
323 size_t size,
324 void *opaque)
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100325{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100326 NetClientState *nc = opaque;
Mark McLoughlin893379e2009-10-27 18:16:36 +0000327 ssize_t ret;
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100328
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100329 if (nc->link_down) {
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100330 return size;
331 }
332
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100333 if (nc->receive_disabled) {
Mark McLoughlin893379e2009-10-27 18:16:36 +0000334 return 0;
335 }
336
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100337 if (flags & QEMU_NET_PACKET_FLAG_RAW && nc->info->receive_raw) {
338 ret = nc->info->receive_raw(nc, data, size);
Mark McLoughlin893379e2009-10-27 18:16:36 +0000339 } else {
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100340 ret = nc->info->receive(nc, data, size);
Mark McLoughlin893379e2009-10-27 18:16:36 +0000341 }
342
343 if (ret == 0) {
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100344 nc->receive_disabled = 1;
Mark McLoughlin893379e2009-10-27 18:16:36 +0000345 };
346
347 return ret;
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100348}
349
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100350void qemu_purge_queued_packets(NetClientState *nc)
aliguori63a01ef2008-10-31 19:10:00 +0000351{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100352 if (!nc->peer) {
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100353 return;
354 }
355
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100356 qemu_net_queue_purge(nc->peer->send_queue, nc);
Mark McLoughlin8cad5512009-06-18 18:21:29 +0100357}
358
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100359void qemu_flush_queued_packets(NetClientState *nc)
Mark McLoughline94667b2009-04-29 11:48:12 +0100360{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100361 nc->receive_disabled = 0;
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100362
Paolo Bonzini987a9b42012-08-09 16:45:55 +0200363 if (qemu_net_queue_flush(nc->send_queue)) {
364 /* We emptied the queue successfully, signal to the IO thread to repoll
365 * the file descriptor (for tap, for example).
366 */
367 qemu_notify_event();
368 }
Mark McLoughline94667b2009-04-29 11:48:12 +0100369}
370
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100371static ssize_t qemu_send_packet_async_with_flags(NetClientState *sender,
Mark McLoughlinca77d172009-10-22 17:43:41 +0100372 unsigned flags,
373 const uint8_t *buf, int size,
374 NetPacketSent *sent_cb)
aliguori764a4d12009-04-21 19:56:41 +0000375{
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100376 NetQueue *queue;
Mark McLoughline94667b2009-04-29 11:48:12 +0100377
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100378#ifdef DEBUG_NET
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100379 printf("qemu_send_packet_async:\n");
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100380 hex_dump(stdout, buf, size);
381#endif
382
Stefan Hajnoczia005d072012-07-24 16:35:11 +0100383 if (sender->link_down || !sender->peer) {
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100384 return size;
385 }
386
Stefan Hajnoczia005d072012-07-24 16:35:11 +0100387 queue = sender->peer->send_queue;
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100388
Mark McLoughlinca77d172009-10-22 17:43:41 +0100389 return qemu_net_queue_send(queue, sender, flags, buf, size, sent_cb);
390}
391
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100392ssize_t qemu_send_packet_async(NetClientState *sender,
Mark McLoughlinca77d172009-10-22 17:43:41 +0100393 const uint8_t *buf, int size,
394 NetPacketSent *sent_cb)
395{
396 return qemu_send_packet_async_with_flags(sender, QEMU_NET_PACKET_FLAG_NONE,
397 buf, size, sent_cb);
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100398}
399
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100400void qemu_send_packet(NetClientState *nc, const uint8_t *buf, int size)
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100401{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100402 qemu_send_packet_async(nc, buf, size, NULL);
aliguori63a01ef2008-10-31 19:10:00 +0000403}
404
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100405ssize_t qemu_send_packet_raw(NetClientState *nc, const uint8_t *buf, int size)
Mark McLoughlinca77d172009-10-22 17:43:41 +0100406{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100407 return qemu_send_packet_async_with_flags(nc, QEMU_NET_PACKET_FLAG_RAW,
Mark McLoughlinca77d172009-10-22 17:43:41 +0100408 buf, size, NULL);
409}
410
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100411static ssize_t nc_sendv_compat(NetClientState *nc, const struct iovec *iov,
aliguorifbe78f42008-12-17 19:13:11 +0000412 int iovcnt)
413{
414 uint8_t buffer[4096];
Benjamin Poirierce053662011-02-23 19:57:21 -0500415 size_t offset;
aliguorifbe78f42008-12-17 19:13:11 +0000416
Michael Tokarevdcf6f5e2012-03-11 18:05:12 +0400417 offset = iov_to_buf(iov, iovcnt, 0, buffer, sizeof(buffer));
aliguorifbe78f42008-12-17 19:13:11 +0000418
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100419 return nc->info->receive(nc, buffer, offset);
aliguorifbe78f42008-12-17 19:13:11 +0000420}
421
Zhi Yong Wu86a77c32012-07-24 16:35:17 +0100422ssize_t qemu_deliver_packet_iov(NetClientState *sender,
423 unsigned flags,
424 const struct iovec *iov,
425 int iovcnt,
426 void *opaque)
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100427{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100428 NetClientState *nc = opaque;
Stefan Hajnoczic67f5dc2012-08-17 21:16:42 +0100429 int ret;
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100430
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100431 if (nc->link_down) {
Benjamin Poirierce053662011-02-23 19:57:21 -0500432 return iov_size(iov, iovcnt);
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100433 }
434
Stefan Hajnoczic67f5dc2012-08-17 21:16:42 +0100435 if (nc->receive_disabled) {
436 return 0;
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100437 }
Stefan Hajnoczic67f5dc2012-08-17 21:16:42 +0100438
439 if (nc->info->receive_iov) {
440 ret = nc->info->receive_iov(nc, iov, iovcnt);
441 } else {
442 ret = nc_sendv_compat(nc, iov, iovcnt);
443 }
444
445 if (ret == 0) {
446 nc->receive_disabled = 1;
447 }
448
449 return ret;
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100450}
451
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100452ssize_t qemu_sendv_packet_async(NetClientState *sender,
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100453 const struct iovec *iov, int iovcnt,
454 NetPacketSent *sent_cb)
aliguorifbe78f42008-12-17 19:13:11 +0000455{
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100456 NetQueue *queue;
457
Stefan Hajnoczia005d072012-07-24 16:35:11 +0100458 if (sender->link_down || !sender->peer) {
Benjamin Poirierce053662011-02-23 19:57:21 -0500459 return iov_size(iov, iovcnt);
aliguorifbe78f42008-12-17 19:13:11 +0000460 }
461
Stefan Hajnoczia005d072012-07-24 16:35:11 +0100462 queue = sender->peer->send_queue;
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100463
Mark McLoughlinc0b8e492009-10-22 17:43:40 +0100464 return qemu_net_queue_send_iov(queue, sender,
465 QEMU_NET_PACKET_FLAG_NONE,
466 iov, iovcnt, sent_cb);
aliguorifbe78f42008-12-17 19:13:11 +0000467}
468
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100469ssize_t
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100470qemu_sendv_packet(NetClientState *nc, const struct iovec *iov, int iovcnt)
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100471{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100472 return qemu_sendv_packet_async(nc, iov, iovcnt, NULL);
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100473}
474
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100475NetClientState *qemu_find_netdev(const char *id)
aliguori63a01ef2008-10-31 19:10:00 +0000476{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100477 NetClientState *nc;
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100478
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100479 QTAILQ_FOREACH(nc, &net_clients, next) {
480 if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC)
Markus Armbruster85dde9a2011-06-16 18:45:37 +0200481 continue;
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100482 if (!strcmp(nc->name, id)) {
483 return nc;
Mark McLoughlin5869c4d2009-10-08 19:58:29 +0100484 }
485 }
486
487 return NULL;
488}
489
aliguori76970792009-02-11 15:20:03 +0000490static int nic_get_free_idx(void)
491{
492 int index;
493
494 for (index = 0; index < MAX_NICS; index++)
495 if (!nd_table[index].used)
496 return index;
497 return -1;
498}
499
Markus Armbruster07caea32009-09-25 03:53:51 +0200500int qemu_show_nic_models(const char *arg, const char *const *models)
501{
502 int i;
503
Peter Maydellc8057f92012-08-02 13:45:54 +0100504 if (!arg || !is_help_option(arg)) {
Markus Armbruster07caea32009-09-25 03:53:51 +0200505 return 0;
Peter Maydellc8057f92012-08-02 13:45:54 +0100506 }
Markus Armbruster07caea32009-09-25 03:53:51 +0200507
508 fprintf(stderr, "qemu: Supported NIC models: ");
509 for (i = 0 ; models[i]; i++)
510 fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
511 return 1;
512}
513
aliguorid07f22c2009-01-13 19:03:57 +0000514void qemu_check_nic_model(NICInfo *nd, const char *model)
515{
516 const char *models[2];
517
518 models[0] = model;
519 models[1] = NULL;
520
Markus Armbruster07caea32009-09-25 03:53:51 +0200521 if (qemu_show_nic_models(nd->model, models))
522 exit(0);
523 if (qemu_find_nic_model(nd, models, model) < 0)
524 exit(1);
aliguorid07f22c2009-01-13 19:03:57 +0000525}
526
Markus Armbruster07caea32009-09-25 03:53:51 +0200527int qemu_find_nic_model(NICInfo *nd, const char * const *models,
528 const char *default_model)
aliguorid07f22c2009-01-13 19:03:57 +0000529{
Markus Armbruster07caea32009-09-25 03:53:51 +0200530 int i;
aliguorid07f22c2009-01-13 19:03:57 +0000531
532 if (!nd->model)
Anthony Liguori7267c092011-08-20 22:09:37 -0500533 nd->model = g_strdup(default_model);
aliguorid07f22c2009-01-13 19:03:57 +0000534
Markus Armbruster07caea32009-09-25 03:53:51 +0200535 for (i = 0 ; models[i]; i++) {
536 if (strcmp(nd->model, models[i]) == 0)
537 return i;
aliguorid07f22c2009-01-13 19:03:57 +0000538 }
539
Markus Armbruster6daf1942011-06-22 14:03:54 +0200540 error_report("Unsupported NIC model: %s", nd->model);
Markus Armbruster07caea32009-09-25 03:53:51 +0200541 return -1;
aliguorid07f22c2009-01-13 19:03:57 +0000542}
543
Laszlo Ersek1a0c0952012-07-17 16:17:21 +0200544static int net_init_nic(const NetClientOptions *opts, const char *name,
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100545 NetClientState *peer)
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100546{
547 int idx;
548 NICInfo *nd;
Laszlo Ersek2456f362012-07-17 16:17:14 +0200549 const NetLegacyNicOptions *nic;
550
551 assert(opts->kind == NET_CLIENT_OPTIONS_KIND_NIC);
552 nic = opts->nic;
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100553
554 idx = nic_get_free_idx();
555 if (idx == -1 || nb_nics >= MAX_NICS) {
Markus Armbruster1ecda022010-02-18 17:25:24 +0100556 error_report("Too Many NICs");
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100557 return -1;
558 }
559
560 nd = &nd_table[idx];
561
562 memset(nd, 0, sizeof(*nd));
563
Laszlo Ersek2456f362012-07-17 16:17:14 +0200564 if (nic->has_netdev) {
565 nd->netdev = qemu_find_netdev(nic->netdev);
Mark McLoughlin5869c4d2009-10-08 19:58:29 +0100566 if (!nd->netdev) {
Laszlo Ersek2456f362012-07-17 16:17:14 +0200567 error_report("netdev '%s' not found", nic->netdev);
Mark McLoughlin5869c4d2009-10-08 19:58:29 +0100568 return -1;
569 }
570 } else {
Stefan Hajnoczid33d93b2012-07-24 16:35:05 +0100571 assert(peer);
572 nd->netdev = peer;
Mark McLoughlin5869c4d2009-10-08 19:58:29 +0100573 }
Markus Armbrusterc64f50d2013-01-22 11:07:57 +0100574 nd->name = g_strdup(name);
Laszlo Ersek2456f362012-07-17 16:17:14 +0200575 if (nic->has_model) {
576 nd->model = g_strdup(nic->model);
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100577 }
Laszlo Ersek2456f362012-07-17 16:17:14 +0200578 if (nic->has_addr) {
579 nd->devaddr = g_strdup(nic->addr);
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100580 }
581
Laszlo Ersek2456f362012-07-17 16:17:14 +0200582 if (nic->has_macaddr &&
583 net_parse_macaddr(nd->macaddr.a, nic->macaddr) < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +0100584 error_report("invalid syntax for ethernet address");
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100585 return -1;
586 }
Jan Kiszka6eed1852011-07-20 12:20:22 +0200587 qemu_macaddr_default_if_unset(&nd->macaddr);
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100588
Laszlo Ersek2456f362012-07-17 16:17:14 +0200589 if (nic->has_vectors) {
590 if (nic->vectors > 0x7ffffff) {
591 error_report("invalid # of vectors: %"PRIu32, nic->vectors);
592 return -1;
593 }
594 nd->nvectors = nic->vectors;
595 } else {
596 nd->nvectors = DEV_NVECTORS_UNSPECIFIED;
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100597 }
598
599 nd->used = 1;
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100600 nb_nics++;
601
602 return idx;
603}
604
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100605
Laszlo Ersek6687b792012-07-17 16:17:13 +0200606static int (* const net_client_init_fun[NET_CLIENT_OPTIONS_KIND_MAX])(
Laszlo Ersek1a0c0952012-07-17 16:17:21 +0200607 const NetClientOptions *opts,
Laszlo Ersek6687b792012-07-17 16:17:13 +0200608 const char *name,
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100609 NetClientState *peer) = {
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +0100610 [NET_CLIENT_OPTIONS_KIND_NIC] = net_init_nic,
Mark McLoughlinec302ff2009-10-06 12:17:07 +0100611#ifdef CONFIG_SLIRP
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +0100612 [NET_CLIENT_OPTIONS_KIND_USER] = net_init_slirp,
Mark McLoughlinec302ff2009-10-06 12:17:07 +0100613#endif
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +0100614 [NET_CLIENT_OPTIONS_KIND_TAP] = net_init_tap,
615 [NET_CLIENT_OPTIONS_KIND_SOCKET] = net_init_socket,
Mark McLoughlindd510582009-10-06 12:17:10 +0100616#ifdef CONFIG_VDE
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +0100617 [NET_CLIENT_OPTIONS_KIND_VDE] = net_init_vde,
Mark McLoughlindd510582009-10-06 12:17:10 +0100618#endif
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +0100619 [NET_CLIENT_OPTIONS_KIND_DUMP] = net_init_dump,
Stefan Weil2944e4e2012-02-04 09:24:46 +0100620#ifdef CONFIG_NET_BRIDGE
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +0100621 [NET_CLIENT_OPTIONS_KIND_BRIDGE] = net_init_bridge,
Laszlo Ersek6687b792012-07-17 16:17:13 +0200622#endif
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +0100623 [NET_CLIENT_OPTIONS_KIND_HUBPORT] = net_init_hubport,
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100624};
625
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100626
Laszlo Ersek1a0c0952012-07-17 16:17:21 +0200627static int net_client_init1(const void *object, int is_netdev, Error **errp)
Laszlo Ersek6687b792012-07-17 16:17:13 +0200628{
629 union {
630 const Netdev *netdev;
631 const NetLegacy *net;
632 } u;
633 const NetClientOptions *opts;
634 const char *name;
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100635
Markus Armbruster5294e2c2010-03-25 17:22:38 +0100636 if (is_netdev) {
Laszlo Ersek6687b792012-07-17 16:17:13 +0200637 u.netdev = object;
638 opts = u.netdev->opts;
639 name = u.netdev->id;
640
641 switch (opts->kind) {
Mark McLoughlinf6b134a2009-10-08 19:58:27 +0100642#ifdef CONFIG_SLIRP
Laszlo Ersek6687b792012-07-17 16:17:13 +0200643 case NET_CLIENT_OPTIONS_KIND_USER:
Mark McLoughlinf6b134a2009-10-08 19:58:27 +0100644#endif
Laszlo Ersek6687b792012-07-17 16:17:13 +0200645 case NET_CLIENT_OPTIONS_KIND_TAP:
646 case NET_CLIENT_OPTIONS_KIND_SOCKET:
Mark McLoughlinf6b134a2009-10-08 19:58:27 +0100647#ifdef CONFIG_VDE
Laszlo Ersek6687b792012-07-17 16:17:13 +0200648 case NET_CLIENT_OPTIONS_KIND_VDE:
Mark McLoughlinf6b134a2009-10-08 19:58:27 +0100649#endif
Laszlo Ersek6687b792012-07-17 16:17:13 +0200650#ifdef CONFIG_NET_BRIDGE
651 case NET_CLIENT_OPTIONS_KIND_BRIDGE:
652#endif
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +0100653 case NET_CLIENT_OPTIONS_KIND_HUBPORT:
Laszlo Ersek6687b792012-07-17 16:17:13 +0200654 break;
655
656 default:
Luiz Capitulino4559a1d2012-04-20 16:50:25 -0300657 error_set(errp, QERR_INVALID_PARAMETER_VALUE, "type",
658 "a netdev backend type");
Mark McLoughlinf6b134a2009-10-08 19:58:27 +0100659 return -1;
660 }
Laszlo Ersek6687b792012-07-17 16:17:13 +0200661 } else {
662 u.net = object;
663 opts = u.net->opts;
664 /* missing optional values have been initialized to "all bits zero" */
665 name = u.net->has_id ? u.net->id : u.net->name;
666 }
Mark McLoughlinf6b134a2009-10-08 19:58:27 +0100667
Laszlo Ersek6687b792012-07-17 16:17:13 +0200668 if (net_client_init_fun[opts->kind]) {
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100669 NetClientState *peer = NULL;
Laszlo Ersek6687b792012-07-17 16:17:13 +0200670
671 /* Do not add to a vlan if it's a -netdev or a nic with a netdev=
672 * parameter. */
673 if (!is_netdev &&
674 (opts->kind != NET_CLIENT_OPTIONS_KIND_NIC ||
675 !opts->nic->has_netdev)) {
Stefan Hajnoczid33d93b2012-07-24 16:35:05 +0100676 peer = net_hub_add_port(u.net->has_vlan ? u.net->vlan : 0, NULL);
Mark McLoughlinf6b134a2009-10-08 19:58:27 +0100677 }
Laszlo Ersek6687b792012-07-17 16:17:13 +0200678
Stefan Hajnoczid33d93b2012-07-24 16:35:05 +0100679 if (net_client_init_fun[opts->kind](opts, name, peer) < 0) {
Laszlo Ersek6687b792012-07-17 16:17:13 +0200680 /* TODO push error reporting into init() methods */
681 error_set(errp, QERR_DEVICE_INIT_FAILED,
682 NetClientOptionsKind_lookup[opts->kind]);
Mark McLoughlinf6b134a2009-10-08 19:58:27 +0100683 return -1;
684 }
685 }
Laszlo Ersek6687b792012-07-17 16:17:13 +0200686 return 0;
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100687}
688
Laszlo Ersek6687b792012-07-17 16:17:13 +0200689
690static void net_visit(Visitor *v, int is_netdev, void **object, Error **errp)
691{
692 if (is_netdev) {
693 visit_type_Netdev(v, (Netdev **)object, NULL, errp);
694 } else {
695 visit_type_NetLegacy(v, (NetLegacy **)object, NULL, errp);
696 }
697}
698
699
700int net_client_init(QemuOpts *opts, int is_netdev, Error **errp)
701{
702 void *object = NULL;
703 Error *err = NULL;
704 int ret = -1;
705
706 {
707 OptsVisitor *ov = opts_visitor_new(opts);
708
709 net_visit(opts_get_visitor(ov), is_netdev, &object, &err);
710 opts_visitor_cleanup(ov);
711 }
712
713 if (!err) {
Laszlo Ersek1a0c0952012-07-17 16:17:21 +0200714 ret = net_client_init1(object, is_netdev, &err);
Laszlo Ersek6687b792012-07-17 16:17:13 +0200715 }
716
717 if (object) {
718 QapiDeallocVisitor *dv = qapi_dealloc_visitor_new();
719
720 net_visit(qapi_dealloc_get_visitor(dv), is_netdev, &object, NULL);
721 qapi_dealloc_visitor_cleanup(dv);
722 }
723
724 error_propagate(errp, err);
725 return ret;
726}
727
728
aliguori6f338c32009-02-11 15:21:54 +0000729static int net_host_check_device(const char *device)
730{
731 int i;
aliguoribb9ea792009-04-21 19:56:28 +0000732 const char *valid_param_list[] = { "tap", "socket", "dump"
Stefan Weil2944e4e2012-02-04 09:24:46 +0100733#ifdef CONFIG_NET_BRIDGE
734 , "bridge"
735#endif
aliguori6f338c32009-02-11 15:21:54 +0000736#ifdef CONFIG_SLIRP
737 ,"user"
738#endif
739#ifdef CONFIG_VDE
740 ,"vde"
741#endif
742 };
743 for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) {
744 if (!strncmp(valid_param_list[i], device,
745 strlen(valid_param_list[i])))
746 return 1;
747 }
748
749 return 0;
750}
751
Luiz Capitulinof18c16d2009-08-28 15:27:14 -0300752void net_host_device_add(Monitor *mon, const QDict *qdict)
aliguori6f338c32009-02-11 15:21:54 +0000753{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -0300754 const char *device = qdict_get_str(qdict, "device");
Mark McLoughlin7f1c9d22009-10-06 12:17:13 +0100755 const char *opts_str = qdict_get_try_str(qdict, "opts");
Luiz Capitulino4559a1d2012-04-20 16:50:25 -0300756 Error *local_err = NULL;
Mark McLoughlin7f1c9d22009-10-06 12:17:13 +0100757 QemuOpts *opts;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -0300758
aliguori6f338c32009-02-11 15:21:54 +0000759 if (!net_host_check_device(device)) {
aliguori376253e2009-03-05 23:01:23 +0000760 monitor_printf(mon, "invalid host network device %s\n", device);
aliguori6f338c32009-02-11 15:21:54 +0000761 return;
762 }
Mark McLoughlin7f1c9d22009-10-06 12:17:13 +0100763
Gerd Hoffmann3329f072010-08-20 13:52:01 +0200764 opts = qemu_opts_parse(qemu_find_opts("net"), opts_str ? opts_str : "", 0);
Mark McLoughlin7f1c9d22009-10-06 12:17:13 +0100765 if (!opts) {
Mark McLoughlin7f1c9d22009-10-06 12:17:13 +0100766 return;
767 }
768
769 qemu_opt_set(opts, "type", device);
770
Luiz Capitulino4559a1d2012-04-20 16:50:25 -0300771 net_client_init(opts, 0, &local_err);
772 if (error_is_set(&local_err)) {
773 qerror_report_err(local_err);
774 error_free(local_err);
aliguori5c8be672009-04-21 19:56:32 +0000775 monitor_printf(mon, "adding host network device %s failed\n", device);
776 }
aliguori6f338c32009-02-11 15:21:54 +0000777}
778
Luiz Capitulinof18c16d2009-08-28 15:27:14 -0300779void net_host_device_remove(Monitor *mon, const QDict *qdict)
aliguori6f338c32009-02-11 15:21:54 +0000780{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100781 NetClientState *nc;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -0300782 int vlan_id = qdict_get_int(qdict, "vlan_id");
783 const char *device = qdict_get_str(qdict, "device");
aliguori6f338c32009-02-11 15:21:54 +0000784
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100785 nc = net_hub_find_client_by_name(vlan_id, device);
786 if (!nc) {
aliguori6f338c32009-02-11 15:21:54 +0000787 return;
788 }
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100789 if (!net_host_check_device(nc->model)) {
aliguorie8f1f9d2009-04-21 19:56:08 +0000790 monitor_printf(mon, "invalid host network device %s\n", device);
791 return;
792 }
Stefan Hajnoczib20c6b92012-07-24 16:35:15 +0100793 qemu_del_net_client(nc);
aliguori6f338c32009-02-11 15:21:54 +0000794}
795
Luiz Capitulino928059a2012-04-18 17:34:15 -0300796void netdev_add(QemuOpts *opts, Error **errp)
797{
798 net_client_init(opts, 1, errp);
799}
800
801int qmp_netdev_add(Monitor *mon, const QDict *qdict, QObject **ret)
Markus Armbrusterae82d322010-03-25 17:22:40 +0100802{
Luiz Capitulino4e899782012-04-18 17:24:01 -0300803 Error *local_err = NULL;
Luiz Capitulino928059a2012-04-18 17:34:15 -0300804 QemuOptsList *opts_list;
Markus Armbrusterae82d322010-03-25 17:22:40 +0100805 QemuOpts *opts;
Markus Armbrusterae82d322010-03-25 17:22:40 +0100806
Luiz Capitulino928059a2012-04-18 17:34:15 -0300807 opts_list = qemu_find_opts_err("netdev", &local_err);
808 if (error_is_set(&local_err)) {
809 goto exit_err;
Markus Armbrusterae82d322010-03-25 17:22:40 +0100810 }
811
Luiz Capitulino928059a2012-04-18 17:34:15 -0300812 opts = qemu_opts_from_qdict(opts_list, qdict, &local_err);
813 if (error_is_set(&local_err)) {
814 goto exit_err;
815 }
816
817 netdev_add(opts, &local_err);
818 if (error_is_set(&local_err)) {
Yoshiaki Tamura410cbaf2010-06-21 10:41:36 +0900819 qemu_opts_del(opts);
Luiz Capitulino928059a2012-04-18 17:34:15 -0300820 goto exit_err;
Yoshiaki Tamura410cbaf2010-06-21 10:41:36 +0900821 }
822
Luiz Capitulino928059a2012-04-18 17:34:15 -0300823 return 0;
824
825exit_err:
826 qerror_report_err(local_err);
827 error_free(local_err);
828 return -1;
Markus Armbrusterae82d322010-03-25 17:22:40 +0100829}
830
Luiz Capitulino5f964152012-04-16 14:36:32 -0300831void qmp_netdev_del(const char *id, Error **errp)
Markus Armbrusterae82d322010-03-25 17:22:40 +0100832{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100833 NetClientState *nc;
Stefan Hajnoczi645c9492012-10-24 14:34:12 +0200834 QemuOpts *opts;
Markus Armbrusterae82d322010-03-25 17:22:40 +0100835
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100836 nc = qemu_find_netdev(id);
837 if (!nc) {
Luiz Capitulino5f964152012-04-16 14:36:32 -0300838 error_set(errp, QERR_DEVICE_NOT_FOUND, id);
839 return;
Markus Armbrusterae82d322010-03-25 17:22:40 +0100840 }
Luiz Capitulino5f964152012-04-16 14:36:32 -0300841
Stefan Hajnoczi645c9492012-10-24 14:34:12 +0200842 opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), id);
843 if (!opts) {
844 error_setg(errp, "Device '%s' is not a netdev", id);
845 return;
846 }
847
Stefan Hajnoczib20c6b92012-07-24 16:35:15 +0100848 qemu_del_net_client(nc);
Stefan Hajnoczi645c9492012-10-24 14:34:12 +0200849 qemu_opts_del(opts);
Markus Armbrusterae82d322010-03-25 17:22:40 +0100850}
851
Zhi Yong Wu1a859592012-07-24 16:35:16 +0100852void print_net_client(Monitor *mon, NetClientState *nc)
Jan Kiszka44e798d2011-07-20 12:20:21 +0200853{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100854 monitor_printf(mon, "%s: type=%s,%s\n", nc->name,
855 NetClientOptionsKind_lookup[nc->info->type], nc->info_str);
Jan Kiszka44e798d2011-07-20 12:20:21 +0200856}
857
Wenchao Xia84f2d0e2013-01-14 14:06:25 +0800858void do_info_network(Monitor *mon, const QDict *qdict)
aliguori63a01ef2008-10-31 19:10:00 +0000859{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100860 NetClientState *nc, *peer;
Laszlo Ersek2be64a62012-07-17 16:17:12 +0200861 NetClientOptionsKind type;
aliguori63a01ef2008-10-31 19:10:00 +0000862
Zhi Yong Wu1a859592012-07-24 16:35:16 +0100863 net_hub_info(mon);
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100864
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100865 QTAILQ_FOREACH(nc, &net_clients, next) {
866 peer = nc->peer;
867 type = nc->info->type;
Zhi Yong Wu1a859592012-07-24 16:35:16 +0100868
869 /* Skip if already printed in hub info */
870 if (net_hub_id_for_client(nc, NULL) == 0) {
871 continue;
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100872 }
Zhi Yong Wu1a859592012-07-24 16:35:16 +0100873
Laszlo Ersek2be64a62012-07-17 16:17:12 +0200874 if (!peer || type == NET_CLIENT_OPTIONS_KIND_NIC) {
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100875 print_net_client(mon, nc);
Jan Kiszka19061e62011-07-20 12:20:19 +0200876 } /* else it's a netdev connected to a NIC, printed with the NIC */
Laszlo Ersek2be64a62012-07-17 16:17:12 +0200877 if (peer && type == NET_CLIENT_OPTIONS_KIND_NIC) {
Zhi Yong Wu1a859592012-07-24 16:35:16 +0100878 monitor_printf(mon, " \\ ");
Jan Kiszka44e798d2011-07-20 12:20:21 +0200879 print_net_client(mon, peer);
Markus Armbrustera0104e02010-02-11 14:45:01 +0100880 }
Markus Armbrustera0104e02010-02-11 14:45:01 +0100881 }
aliguori63a01ef2008-10-31 19:10:00 +0000882}
883
Luiz Capitulino4b371562011-11-23 13:11:55 -0200884void qmp_set_link(const char *name, bool up, Error **errp)
aliguori436e5e52009-01-08 19:44:06 +0000885{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100886 NetClientState *nc = NULL;
aliguori436e5e52009-01-08 19:44:06 +0000887
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100888 QTAILQ_FOREACH(nc, &net_clients, next) {
889 if (!strcmp(nc->name, name)) {
Markus Armbruster85dde9a2011-06-16 18:45:37 +0200890 goto done;
891 }
892 }
edgar_igldd5de372009-01-09 00:48:28 +0000893done:
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100894 if (!nc) {
Luiz Capitulino4b371562011-11-23 13:11:55 -0200895 error_set(errp, QERR_DEVICE_NOT_FOUND, name);
896 return;
aliguori436e5e52009-01-08 19:44:06 +0000897 }
898
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100899 nc->link_down = !up;
aliguori436e5e52009-01-08 19:44:06 +0000900
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100901 if (nc->info->link_status_changed) {
902 nc->info->link_status_changed(nc);
Mark McLoughlin665a3b02009-11-25 18:49:30 +0000903 }
Michael S. Tsirkinab1cbe12011-02-09 18:45:04 +0200904
905 /* Notify peer. Don't update peer link status: this makes it possible to
906 * disconnect from host network without notifying the guest.
907 * FIXME: is disconnected link status change operation useful?
908 *
909 * Current behaviour is compatible with qemu vlans where there could be
910 * multiple clients that can still communicate with each other in
911 * disconnected mode. For now maintain this compatibility. */
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100912 if (nc->peer && nc->peer->info->link_status_changed) {
913 nc->peer->info->link_status_changed(nc->peer);
Michael S. Tsirkinab1cbe12011-02-09 18:45:04 +0200914 }
aliguori436e5e52009-01-08 19:44:06 +0000915}
916
aliguori63a01ef2008-10-31 19:10:00 +0000917void net_cleanup(void)
918{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100919 NetClientState *nc, *next_vc;
aliguori63a01ef2008-10-31 19:10:00 +0000920
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100921 QTAILQ_FOREACH_SAFE(nc, &net_clients, next, next_vc) {
Stefan Hajnoczib20c6b92012-07-24 16:35:15 +0100922 qemu_del_net_client(nc);
Mark McLoughlin577c4af2009-10-08 19:58:28 +0100923 }
aliguori63a01ef2008-10-31 19:10:00 +0000924}
925
Markus Armbruster668680f2010-02-11 14:44:58 +0100926void net_check_clients(void)
aliguori63a01ef2008-10-31 19:10:00 +0000927{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100928 NetClientState *nc;
Peter Maydell48e2faf2011-05-20 16:50:01 +0100929 int i;
aliguori63a01ef2008-10-31 19:10:00 +0000930
Peter Maydell641f6ea2011-05-20 16:50:00 +0100931 /* Don't warn about the default network setup that you get if
932 * no command line -net or -netdev options are specified. There
933 * are two cases that we would otherwise complain about:
934 * (1) board doesn't support a NIC but the implicit "-net nic"
935 * requested one
936 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
937 * sets up a nic that isn't connected to anything.
938 */
939 if (default_net) {
940 return;
941 }
942
Stefan Hajnoczi81017642012-07-24 16:35:07 +0100943 net_hub_check_clients();
Tristan Gingoldac60cc12011-03-15 14:20:54 +0100944
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100945 QTAILQ_FOREACH(nc, &net_clients, next) {
946 if (!nc->peer) {
Markus Armbrusterefe32fd2010-02-11 14:45:00 +0100947 fprintf(stderr, "Warning: %s %s has no peer\n",
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100948 nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC ?
949 "nic" : "netdev", nc->name);
Markus Armbrusterefe32fd2010-02-11 14:45:00 +0100950 }
951 }
Peter Maydell48e2faf2011-05-20 16:50:01 +0100952
953 /* Check that all NICs requested via -net nic actually got created.
954 * NICs created via -device don't need to be checked here because
955 * they are always instantiated.
956 */
957 for (i = 0; i < MAX_NICS; i++) {
958 NICInfo *nd = &nd_table[i];
959 if (nd->used && !nd->instantiated) {
960 fprintf(stderr, "Warning: requested NIC (%s, model %s) "
961 "was not created (not supported by this machine?)\n",
962 nd->name ? nd->name : "anonymous",
963 nd->model ? nd->model : "unspecified");
964 }
965 }
aliguori63a01ef2008-10-31 19:10:00 +0000966}
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +0100967
968static int net_init_client(QemuOpts *opts, void *dummy)
969{
Luiz Capitulino4559a1d2012-04-20 16:50:25 -0300970 Error *local_err = NULL;
971
972 net_client_init(opts, 0, &local_err);
973 if (error_is_set(&local_err)) {
974 qerror_report_err(local_err);
975 error_free(local_err);
Mark McLoughlinc1671a02009-10-12 09:52:00 +0100976 return -1;
Luiz Capitulino4559a1d2012-04-20 16:50:25 -0300977 }
978
Mark McLoughlinc1671a02009-10-12 09:52:00 +0100979 return 0;
Mark McLoughlinf6b134a2009-10-08 19:58:27 +0100980}
981
982static int net_init_netdev(QemuOpts *opts, void *dummy)
983{
Luiz Capitulino4559a1d2012-04-20 16:50:25 -0300984 Error *local_err = NULL;
985 int ret;
986
987 ret = net_client_init(opts, 1, &local_err);
988 if (error_is_set(&local_err)) {
989 qerror_report_err(local_err);
990 error_free(local_err);
991 return -1;
992 }
993
994 return ret;
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +0100995}
996
997int net_init_clients(void)
998{
Gerd Hoffmann3329f072010-08-20 13:52:01 +0200999 QemuOptsList *net = qemu_find_opts("net");
1000
Gerd Hoffmanncb4522c2009-12-08 13:11:47 +01001001 if (default_net) {
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001002 /* if no clients, we use a default config */
Gerd Hoffmann3329f072010-08-20 13:52:01 +02001003 qemu_opts_set(net, NULL, "type", "nic");
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001004#ifdef CONFIG_SLIRP
Gerd Hoffmann3329f072010-08-20 13:52:01 +02001005 qemu_opts_set(net, NULL, "type", "user");
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001006#endif
1007 }
1008
Stefan Hajnoczi94878992012-07-24 16:35:12 +01001009 QTAILQ_INIT(&net_clients);
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01001010
Gerd Hoffmann3329f072010-08-20 13:52:01 +02001011 if (qemu_opts_foreach(qemu_find_opts("netdev"), net_init_netdev, NULL, 1) == -1)
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01001012 return -1;
1013
Gerd Hoffmann3329f072010-08-20 13:52:01 +02001014 if (qemu_opts_foreach(net, net_init_client, NULL, 1) == -1) {
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001015 return -1;
1016 }
1017
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001018 return 0;
1019}
1020
Mark McLoughlin7f161aa2009-10-08 19:58:25 +01001021int net_client_parse(QemuOptsList *opts_list, const char *optarg)
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001022{
Juan Quintelaa3a766e2009-10-07 23:44:15 +02001023#if defined(CONFIG_SLIRP)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +00001024 int ret;
1025 if (net_slirp_parse_legacy(opts_list, optarg, &ret)) {
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001026 return ret;
1027 }
Juan Quintelaa3a766e2009-10-07 23:44:15 +02001028#endif
Mark McLoughlin68ac40d2009-11-25 18:48:54 +00001029
Markus Armbruster8212c642010-02-10 19:52:18 +01001030 if (!qemu_opts_parse(opts_list, optarg, 1)) {
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001031 return -1;
1032 }
1033
Gerd Hoffmanncb4522c2009-12-08 13:11:47 +01001034 default_net = 0;
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001035 return 0;
1036}
Jason Wang7fc8d912012-03-05 11:08:50 +08001037
1038/* From FreeBSD */
1039/* XXX: optimize */
1040unsigned compute_mcast_idx(const uint8_t *ep)
1041{
1042 uint32_t crc;
1043 int carry, i, j;
1044 uint8_t b;
1045
1046 crc = 0xffffffff;
1047 for (i = 0; i < 6; i++) {
1048 b = *ep++;
1049 for (j = 0; j < 8; j++) {
1050 carry = ((crc & 0x80000000L) ? 1 : 0) ^ (b & 0x01);
1051 crc <<= 1;
1052 b >>= 1;
1053 if (carry) {
1054 crc = ((crc ^ POLYNOMIAL) | carry);
1055 }
1056 }
1057 }
1058 return crc >> 26;
1059}
Paolo Bonzini4d454572012-11-26 16:03:42 +01001060
1061QemuOptsList qemu_netdev_opts = {
1062 .name = "netdev",
1063 .implied_opt_name = "type",
1064 .head = QTAILQ_HEAD_INITIALIZER(qemu_netdev_opts.head),
1065 .desc = {
1066 /*
1067 * no elements => accept any params
1068 * validation will happen later
1069 */
1070 { /* end of list */ }
1071 },
1072};
1073
1074QemuOptsList qemu_net_opts = {
1075 .name = "net",
1076 .implied_opt_name = "type",
1077 .head = QTAILQ_HEAD_INITIALIZER(qemu_net_opts.head),
1078 .desc = {
1079 /*
1080 * no elements => accept any params
1081 * validation will happen later
1082 */
1083 { /* end of list */ }
1084 },
1085};