blob: 033f4f3387098f1e883b2e5d23b58f0dfb738f7e [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"
Dmitry Krivenokd60b20c2013-10-21 12:08:44 +040030#include "net/eth.h"
Paolo Bonzinifd9400b2012-10-24 11:27:28 +020031#include "util.h"
Paolo Bonzinia245fc12012-09-17 18:43:51 +020032
Paolo Bonzini83c90892012-12-17 18:19:49 +010033#include "monitor/monitor.h"
Mark McLoughlin1df49e02009-11-25 18:48:58 +000034#include "qemu-common.h"
Markus Armbrustercc7a8ea2015-03-17 17:22:46 +010035#include "qapi/qmp/qerror.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010036#include "qemu/error-report.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010037#include "qemu/sockets.h"
38#include "qemu/config-file.h"
Luiz Capitulino4b371562011-11-23 13:11:55 -020039#include "qmp-commands.h"
Amit Shah75422b02010-02-25 17:24:43 +053040#include "hw/qdev.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010041#include "qemu/iov.h"
Alex Bligh6a1751b2013-08-21 16:02:47 +010042#include "qemu/main-loop.h"
Laszlo Ersek6687b792012-07-17 16:17:13 +020043#include "qapi-visit.h"
44#include "qapi/opts-visitor.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010045#include "qapi/dealloc-visitor.h"
zhanghailiange1d64c02014-08-26 16:06:17 +080046#include "sysemu/sysemu.h"
Yang Hongyangfdccce42015-10-07 11:52:14 +080047#include "net/filter.h"
blueswir1511d2b12009-03-07 15:32:56 +000048
Stefan Weil2944e4e2012-02-04 09:24:46 +010049/* Net bridge is currently not supported for W32. */
50#if !defined(_WIN32)
51# define CONFIG_NET_BRIDGE
52#endif
53
Michael S. Tsirkinca77d852014-09-04 11:39:13 +030054static VMChangeStateEntry *net_change_state_entry;
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +010055static QTAILQ_HEAD(, NetClientState) net_clients;
aliguori63a01ef2008-10-31 19:10:00 +000056
Hani Benhabiles84007e82014-05-27 23:39:33 +010057const char *host_net_devices[] = {
58 "tap",
59 "socket",
60 "dump",
61#ifdef CONFIG_NET_BRIDGE
62 "bridge",
63#endif
Stefan Hajnoczi027a2472015-05-27 17:16:48 +010064#ifdef CONFIG_NETMAP
65 "netmap",
66#endif
Hani Benhabiles84007e82014-05-27 23:39:33 +010067#ifdef CONFIG_SLIRP
68 "user",
69#endif
70#ifdef CONFIG_VDE
71 "vde",
72#endif
Nikolay Nikolaev03ce5742014-06-10 13:02:16 +030073 "vhost-user",
Hani Benhabiles84007e82014-05-27 23:39:33 +010074 NULL,
75};
76
Gerd Hoffmanncb4522c2009-12-08 13:11:47 +010077int default_net = 1;
78
aliguori63a01ef2008-10-31 19:10:00 +000079/***********************************************************/
80/* network device redirectors */
81
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000082#if defined(DEBUG_NET)
aliguori63a01ef2008-10-31 19:10:00 +000083static void hex_dump(FILE *f, const uint8_t *buf, int size)
84{
85 int len, i, j, c;
86
87 for(i=0;i<size;i+=16) {
88 len = size - i;
89 if (len > 16)
90 len = 16;
91 fprintf(f, "%08x ", i);
92 for(j=0;j<16;j++) {
93 if (j < len)
94 fprintf(f, " %02x", buf[i+j]);
95 else
96 fprintf(f, " ");
97 }
98 fprintf(f, " ");
99 for(j=0;j<len;j++) {
100 c = buf[i+j];
101 if (c < ' ' || c > '~')
102 c = '.';
103 fprintf(f, "%c", c);
104 }
105 fprintf(f, "\n");
106 }
107}
108#endif
109
aliguori63a01ef2008-10-31 19:10:00 +0000110static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
111{
112 const char *p, *p1;
113 int len;
114 p = *pp;
115 p1 = strchr(p, sep);
116 if (!p1)
117 return -1;
118 len = p1 - p;
119 p1++;
120 if (buf_size > 0) {
121 if (len > buf_size - 1)
122 len = buf_size - 1;
123 memcpy(buf, p, len);
124 buf[len] = '\0';
125 }
126 *pp = p1;
127 return 0;
128}
129
aliguori63a01ef2008-10-31 19:10:00 +0000130int parse_host_port(struct sockaddr_in *saddr, const char *str)
131{
132 char buf[512];
133 struct hostent *he;
134 const char *p, *r;
135 int port;
136
137 p = str;
138 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
139 return -1;
140 saddr->sin_family = AF_INET;
141 if (buf[0] == '\0') {
142 saddr->sin_addr.s_addr = 0;
143 } else {
blueswir1cd390082008-11-16 13:53:32 +0000144 if (qemu_isdigit(buf[0])) {
aliguori63a01ef2008-10-31 19:10:00 +0000145 if (!inet_aton(buf, &saddr->sin_addr))
146 return -1;
147 } else {
148 if ((he = gethostbyname(buf)) == NULL)
149 return - 1;
150 saddr->sin_addr = *(struct in_addr *)he->h_addr;
151 }
152 }
153 port = strtol(p, (char **)&r, 0);
154 if (r == p)
155 return -1;
156 saddr->sin_port = htons(port);
157 return 0;
158}
159
Scott Feldman890ee6a2015-03-13 21:09:25 -0700160char *qemu_mac_strdup_printf(const uint8_t *macaddr)
161{
162 return g_strdup_printf("%.2x:%.2x:%.2x:%.2x:%.2x:%.2x",
163 macaddr[0], macaddr[1], macaddr[2],
164 macaddr[3], macaddr[4], macaddr[5]);
165}
166
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100167void qemu_format_nic_info_str(NetClientState *nc, uint8_t macaddr[6])
aliguori7cb7434b2009-01-07 17:46:21 +0000168{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100169 snprintf(nc->info_str, sizeof(nc->info_str),
aliguori4dda4062009-01-08 19:01:37 +0000170 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100171 nc->model,
aliguori7cb7434b2009-01-07 17:46:21 +0000172 macaddr[0], macaddr[1], macaddr[2],
173 macaddr[3], macaddr[4], macaddr[5]);
174}
175
Shannon Zhao2bc22a52015-05-21 17:44:48 +0800176static int mac_table[256] = {0};
177
178static void qemu_macaddr_set_used(MACAddr *macaddr)
179{
180 int index;
181
182 for (index = 0x56; index < 0xFF; index++) {
183 if (macaddr->a[5] == index) {
184 mac_table[index]++;
185 }
186 }
187}
188
189static void qemu_macaddr_set_free(MACAddr *macaddr)
190{
191 int index;
192 static const MACAddr base = { .a = { 0x52, 0x54, 0x00, 0x12, 0x34, 0 } };
193
194 if (memcmp(macaddr->a, &base.a, (sizeof(base.a) - 1)) != 0) {
195 return;
196 }
197 for (index = 0x56; index < 0xFF; index++) {
198 if (macaddr->a[5] == index) {
199 mac_table[index]--;
200 }
201 }
202}
203
204static int qemu_macaddr_get_free(void)
205{
206 int index;
207
208 for (index = 0x56; index < 0xFF; index++) {
209 if (mac_table[index] == 0) {
210 return index;
211 }
212 }
213
214 return -1;
215}
216
Gerd Hoffmann76d32cb2009-10-21 15:25:22 +0200217void qemu_macaddr_default_if_unset(MACAddr *macaddr)
218{
Gerd Hoffmann76d32cb2009-10-21 15:25:22 +0200219 static const MACAddr zero = { .a = { 0,0,0,0,0,0 } };
Shannon Zhao2bc22a52015-05-21 17:44:48 +0800220 static const MACAddr base = { .a = { 0x52, 0x54, 0x00, 0x12, 0x34, 0 } };
Gerd Hoffmann76d32cb2009-10-21 15:25:22 +0200221
Shannon Zhao2bc22a52015-05-21 17:44:48 +0800222 if (memcmp(macaddr, &zero, sizeof(zero)) != 0) {
223 if (memcmp(macaddr->a, &base.a, (sizeof(base.a) - 1)) != 0) {
224 return;
225 } else {
226 qemu_macaddr_set_used(macaddr);
227 return;
228 }
229 }
230
Gerd Hoffmann76d32cb2009-10-21 15:25:22 +0200231 macaddr->a[0] = 0x52;
232 macaddr->a[1] = 0x54;
233 macaddr->a[2] = 0x00;
234 macaddr->a[3] = 0x12;
235 macaddr->a[4] = 0x34;
Shannon Zhao2bc22a52015-05-21 17:44:48 +0800236 macaddr->a[5] = qemu_macaddr_get_free();
237 qemu_macaddr_set_used(macaddr);
Gerd Hoffmann76d32cb2009-10-21 15:25:22 +0200238}
239
Stefan Hajnoczid33d93b2012-07-24 16:35:05 +0100240/**
241 * Generate a name for net client
242 *
Amos Kongc9635302013-04-15 18:55:19 +0800243 * Only net clients created with the legacy -net option and NICs need this.
Stefan Hajnoczid33d93b2012-07-24 16:35:05 +0100244 */
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100245static char *assign_name(NetClientState *nc1, const char *model)
aliguori676cff22009-01-07 17:43:44 +0000246{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100247 NetClientState *nc;
aliguori676cff22009-01-07 17:43:44 +0000248 int id = 0;
249
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100250 QTAILQ_FOREACH(nc, &net_clients, next) {
251 if (nc == nc1) {
Stefan Hajnoczid33d93b2012-07-24 16:35:05 +0100252 continue;
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100253 }
Amos Kongc9635302013-04-15 18:55:19 +0800254 if (strcmp(nc->model, model) == 0) {
Markus Armbruster53e51d82011-06-16 18:45:36 +0200255 id++;
256 }
257 }
258
Hani Benhabiles4bf2c132014-01-09 19:34:27 +0100259 return g_strdup_printf("%s.%d", model, id);
aliguori676cff22009-01-07 17:43:44 +0000260}
261
Jason Wangf7860452013-01-30 19:12:27 +0800262static void qemu_net_client_destructor(NetClientState *nc)
263{
264 g_free(nc);
265}
266
Jason Wang18a15412013-01-30 19:12:26 +0800267static void qemu_net_client_setup(NetClientState *nc,
268 NetClientInfo *info,
269 NetClientState *peer,
270 const char *model,
Jason Wangf7860452013-01-30 19:12:27 +0800271 const char *name,
272 NetClientDestructor *destructor)
aliguori63a01ef2008-10-31 19:10:00 +0000273{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100274 nc->info = info;
275 nc->model = g_strdup(model);
Mark McLoughlin45460d12009-11-25 18:49:02 +0000276 if (name) {
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100277 nc->name = g_strdup(name);
Mark McLoughlin45460d12009-11-25 18:49:02 +0000278 } else {
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100279 nc->name = assign_name(nc, model);
Mark McLoughlin45460d12009-11-25 18:49:02 +0000280 }
aliguori63a01ef2008-10-31 19:10:00 +0000281
Stefan Hajnocziab5f3f82012-07-24 16:35:08 +0100282 if (peer) {
283 assert(!peer->peer);
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100284 nc->peer = peer;
285 peer->peer = nc;
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100286 }
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100287 QTAILQ_INSERT_TAIL(&net_clients, nc, next);
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100288
Jan Kiszka067404b2013-08-02 21:47:08 +0200289 nc->incoming_queue = qemu_new_net_queue(nc);
Jason Wangf7860452013-01-30 19:12:27 +0800290 nc->destructor = destructor;
Yang Hongyangfdccce42015-10-07 11:52:14 +0800291 QTAILQ_INIT(&nc->filters);
Jason Wang18a15412013-01-30 19:12:26 +0800292}
293
294NetClientState *qemu_new_net_client(NetClientInfo *info,
295 NetClientState *peer,
296 const char *model,
297 const char *name)
298{
299 NetClientState *nc;
300
301 assert(info->size >= sizeof(NetClientState));
302
303 nc = g_malloc0(info->size);
Jason Wangf7860452013-01-30 19:12:27 +0800304 qemu_net_client_setup(nc, info, peer, model, name,
305 qemu_net_client_destructor);
Jason Wang18a15412013-01-30 19:12:26 +0800306
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100307 return nc;
aliguori63a01ef2008-10-31 19:10:00 +0000308}
309
Mark McLoughlinebef2c02009-11-25 18:49:10 +0000310NICState *qemu_new_nic(NetClientInfo *info,
311 NICConf *conf,
312 const char *model,
313 const char *name,
314 void *opaque)
315{
Jason Wang1ceef9f2013-01-30 19:12:28 +0800316 NetClientState **peers = conf->peers.ncs;
Mark McLoughlinebef2c02009-11-25 18:49:10 +0000317 NICState *nic;
Jiri Pirko575a1c02014-05-26 12:04:08 +0200318 int i, queues = MAX(1, conf->peers.queues);
Mark McLoughlinebef2c02009-11-25 18:49:10 +0000319
Laszlo Ersek2be64a62012-07-17 16:17:12 +0200320 assert(info->type == NET_CLIENT_OPTIONS_KIND_NIC);
Mark McLoughlinebef2c02009-11-25 18:49:10 +0000321 assert(info->size >= sizeof(NICState));
322
Jason Wangf6b26cf2013-02-22 23:15:06 +0800323 nic = g_malloc0(info->size + sizeof(NetClientState) * queues);
324 nic->ncs = (void *)nic + info->size;
Mark McLoughlinebef2c02009-11-25 18:49:10 +0000325 nic->conf = conf;
326 nic->opaque = opaque;
327
Jason Wangf6b26cf2013-02-22 23:15:06 +0800328 for (i = 0; i < queues; i++) {
329 qemu_net_client_setup(&nic->ncs[i], info, peers[i], model, name,
Jason Wang1ceef9f2013-01-30 19:12:28 +0800330 NULL);
331 nic->ncs[i].queue_index = i;
332 }
333
Mark McLoughlinebef2c02009-11-25 18:49:10 +0000334 return nic;
335}
336
Jason Wang1ceef9f2013-01-30 19:12:28 +0800337NetClientState *qemu_get_subqueue(NICState *nic, int queue_index)
338{
Jason Wangf6b26cf2013-02-22 23:15:06 +0800339 return nic->ncs + queue_index;
Jason Wang1ceef9f2013-01-30 19:12:28 +0800340}
341
Jason Wangb356f762013-01-30 19:12:22 +0800342NetClientState *qemu_get_queue(NICState *nic)
343{
Jason Wang1ceef9f2013-01-30 19:12:28 +0800344 return qemu_get_subqueue(nic, 0);
Jason Wangb356f762013-01-30 19:12:22 +0800345}
346
Jason Wangcc1f0f42013-01-30 19:12:23 +0800347NICState *qemu_get_nic(NetClientState *nc)
348{
Jason Wang1ceef9f2013-01-30 19:12:28 +0800349 NetClientState *nc0 = nc - nc->queue_index;
350
Jason Wangf6b26cf2013-02-22 23:15:06 +0800351 return (NICState *)((void *)nc0 - nc->info->size);
Jason Wangcc1f0f42013-01-30 19:12:23 +0800352}
353
354void *qemu_get_nic_opaque(NetClientState *nc)
355{
356 NICState *nic = qemu_get_nic(nc);
357
358 return nic->opaque;
359}
360
Stefan Hajnoczib20c6b92012-07-24 16:35:15 +0100361static void qemu_cleanup_net_client(NetClientState *nc)
aliguori63a01ef2008-10-31 19:10:00 +0000362{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100363 QTAILQ_REMOVE(&net_clients, nc, next);
aliguori63a01ef2008-10-31 19:10:00 +0000364
Andreas Färbercc2a9042013-02-12 23:16:06 +0100365 if (nc->info->cleanup) {
366 nc->info->cleanup(nc);
367 }
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200368}
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100369
Stefan Hajnoczib20c6b92012-07-24 16:35:15 +0100370static void qemu_free_net_client(NetClientState *nc)
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200371{
Jan Kiszka067404b2013-08-02 21:47:08 +0200372 if (nc->incoming_queue) {
373 qemu_del_net_queue(nc->incoming_queue);
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200374 }
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100375 if (nc->peer) {
376 nc->peer->peer = NULL;
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100377 }
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100378 g_free(nc->name);
379 g_free(nc->model);
Jason Wangf7860452013-01-30 19:12:27 +0800380 if (nc->destructor) {
381 nc->destructor(nc);
382 }
aliguori63a01ef2008-10-31 19:10:00 +0000383}
384
Stefan Hajnoczib20c6b92012-07-24 16:35:15 +0100385void qemu_del_net_client(NetClientState *nc)
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200386{
Jason Wang1ceef9f2013-01-30 19:12:28 +0800387 NetClientState *ncs[MAX_QUEUE_NUM];
388 int queues, i;
Yang Hongyangfdccce42015-10-07 11:52:14 +0800389 NetFilterState *nf, *next;
Jason Wang1ceef9f2013-01-30 19:12:28 +0800390
Paolo Bonzini7fb43912014-12-23 17:53:20 +0100391 assert(nc->info->type != NET_CLIENT_OPTIONS_KIND_NIC);
392
Jason Wang1ceef9f2013-01-30 19:12:28 +0800393 /* If the NetClientState belongs to a multiqueue backend, we will change all
394 * other NetClientStates also.
395 */
396 queues = qemu_find_net_clients_except(nc->name, ncs,
397 NET_CLIENT_OPTIONS_KIND_NIC,
398 MAX_QUEUE_NUM);
399 assert(queues != 0);
400
Yang Hongyangfdccce42015-10-07 11:52:14 +0800401 QTAILQ_FOREACH_SAFE(nf, &nc->filters, next, next) {
402 object_unparent(OBJECT(nf));
403 }
404
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200405 /* If there is a peer NIC, delete and cleanup client, but do not free. */
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100406 if (nc->peer && nc->peer->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
Jason Wangcc1f0f42013-01-30 19:12:23 +0800407 NICState *nic = qemu_get_nic(nc->peer);
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200408 if (nic->peer_deleted) {
409 return;
410 }
411 nic->peer_deleted = true;
Jason Wang1ceef9f2013-01-30 19:12:28 +0800412
413 for (i = 0; i < queues; i++) {
414 ncs[i]->peer->link_down = true;
415 }
416
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100417 if (nc->peer->info->link_status_changed) {
418 nc->peer->info->link_status_changed(nc->peer);
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200419 }
Jason Wang1ceef9f2013-01-30 19:12:28 +0800420
421 for (i = 0; i < queues; i++) {
422 qemu_cleanup_net_client(ncs[i]);
423 }
424
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200425 return;
426 }
427
Jason Wang1ceef9f2013-01-30 19:12:28 +0800428 for (i = 0; i < queues; i++) {
429 qemu_cleanup_net_client(ncs[i]);
430 qemu_free_net_client(ncs[i]);
431 }
Jason Wang948ecf22013-01-30 19:12:24 +0800432}
433
434void qemu_del_nic(NICState *nic)
435{
Jiri Pirko575a1c02014-05-26 12:04:08 +0200436 int i, queues = MAX(nic->conf->peers.queues, 1);
Jason Wang1ceef9f2013-01-30 19:12:28 +0800437
Shannon Zhao2bc22a52015-05-21 17:44:48 +0800438 qemu_macaddr_set_free(&nic->conf->macaddr);
439
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200440 /* If this is a peer NIC and peer has already been deleted, free it now. */
Jason Wang1ceef9f2013-01-30 19:12:28 +0800441 if (nic->peer_deleted) {
442 for (i = 0; i < queues; i++) {
443 qemu_free_net_client(qemu_get_subqueue(nic, i)->peer);
Michael S. Tsirkina083a892010-09-20 18:08:41 +0200444 }
445 }
446
Jason Wang1ceef9f2013-01-30 19:12:28 +0800447 for (i = queues - 1; i >= 0; i--) {
448 NetClientState *nc = qemu_get_subqueue(nic, i);
449
450 qemu_cleanup_net_client(nc);
451 qemu_free_net_client(nc);
452 }
Jason Wangf6b26cf2013-02-22 23:15:06 +0800453
454 g_free(nic);
Jan Kiszka1a609522009-06-24 14:42:31 +0200455}
456
Mark McLoughlin57f9ef12009-11-25 18:49:31 +0000457void qemu_foreach_nic(qemu_nic_foreach func, void *opaque)
458{
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100459 NetClientState *nc;
Mark McLoughlin57f9ef12009-11-25 18:49:31 +0000460
Stefan Hajnoczi94878992012-07-24 16:35:12 +0100461 QTAILQ_FOREACH(nc, &net_clients, next) {
Laszlo Ersek2be64a62012-07-17 16:17:12 +0200462 if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
Jason Wang1ceef9f2013-01-30 19:12:28 +0800463 if (nc->queue_index == 0) {
464 func(qemu_get_nic(nc), opaque);
465 }
Mark McLoughlin57f9ef12009-11-25 18:49:31 +0000466 }
467 }
Mark McLoughlin57f9ef12009-11-25 18:49:31 +0000468}
469
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100470bool qemu_has_ufo(NetClientState *nc)
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100471{
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100472 if (!nc || !nc->info->has_ufo) {
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100473 return false;
474 }
475
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100476 return nc->info->has_ufo(nc);
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100477}
478
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100479bool qemu_has_vnet_hdr(NetClientState *nc)
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100480{
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100481 if (!nc || !nc->info->has_vnet_hdr) {
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100482 return false;
483 }
484
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100485 return nc->info->has_vnet_hdr(nc);
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100486}
487
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100488bool qemu_has_vnet_hdr_len(NetClientState *nc, int len)
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100489{
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100490 if (!nc || !nc->info->has_vnet_hdr_len) {
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100491 return false;
492 }
493
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100494 return nc->info->has_vnet_hdr_len(nc, len);
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100495}
496
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100497void qemu_using_vnet_hdr(NetClientState *nc, bool enable)
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100498{
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100499 if (!nc || !nc->info->using_vnet_hdr) {
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100500 return;
501 }
502
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100503 nc->info->using_vnet_hdr(nc, enable);
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100504}
505
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100506void qemu_set_offload(NetClientState *nc, int csum, int tso4, int tso6,
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100507 int ecn, int ufo)
508{
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100509 if (!nc || !nc->info->set_offload) {
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100510 return;
511 }
512
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100513 nc->info->set_offload(nc, csum, tso4, tso6, ecn, ufo);
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100514}
515
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100516void qemu_set_vnet_hdr_len(NetClientState *nc, int len)
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100517{
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100518 if (!nc || !nc->info->set_vnet_hdr_len) {
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100519 return;
520 }
521
Stefan Hajnoczid6085e32014-02-20 12:14:07 +0100522 nc->info->set_vnet_hdr_len(nc, len);
Vincenzo Maffione1f55ac42014-02-06 17:02:16 +0100523}
524
Greg Kurzc80cd6b2015-06-17 15:23:44 +0200525int qemu_set_vnet_le(NetClientState *nc, bool is_le)
526{
527 if (!nc || !nc->info->set_vnet_le) {
528 return -ENOSYS;
529 }
530
531 return nc->info->set_vnet_le(nc, is_le);
532}
533
534int qemu_set_vnet_be(NetClientState *nc, bool is_be)
535{
536 if (!nc || !nc->info->set_vnet_be) {
537 return -ENOSYS;
538 }
539
540 return nc->info->set_vnet_be(nc, is_be);
541}
542
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100543int qemu_can_send_packet(NetClientState *sender)
aliguori63a01ef2008-10-31 19:10:00 +0000544{
zhanghailiange1d64c02014-08-26 16:06:17 +0800545 int vm_running = runstate_is_running();
546
547 if (!vm_running) {
548 return 0;
549 }
550
Stefan Hajnoczia005d072012-07-24 16:35:11 +0100551 if (!sender->peer) {
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100552 return 1;
553 }
554
Stefan Hajnoczia005d072012-07-24 16:35:11 +0100555 if (sender->peer->receive_disabled) {
556 return 0;
557 } else if (sender->peer->info->can_receive &&
558 !sender->peer->info->can_receive(sender->peer)) {
559 return 0;
aliguori63a01ef2008-10-31 19:10:00 +0000560 }
Vincent Palatin60c07d92011-03-02 17:25:02 -0500561 return 1;
aliguori63a01ef2008-10-31 19:10:00 +0000562}
563
Zhi Yong Wu86a77c32012-07-24 16:35:17 +0100564ssize_t qemu_deliver_packet(NetClientState *sender,
565 unsigned flags,
566 const uint8_t *data,
567 size_t size,
568 void *opaque)
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100569{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100570 NetClientState *nc = opaque;
Mark McLoughlin893379e2009-10-27 18:16:36 +0000571 ssize_t ret;
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100572
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100573 if (nc->link_down) {
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100574 return size;
575 }
576
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100577 if (nc->receive_disabled) {
Mark McLoughlin893379e2009-10-27 18:16:36 +0000578 return 0;
579 }
580
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100581 if (flags & QEMU_NET_PACKET_FLAG_RAW && nc->info->receive_raw) {
582 ret = nc->info->receive_raw(nc, data, size);
Mark McLoughlin893379e2009-10-27 18:16:36 +0000583 } else {
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100584 ret = nc->info->receive(nc, data, size);
Mark McLoughlin893379e2009-10-27 18:16:36 +0000585 }
586
587 if (ret == 0) {
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100588 nc->receive_disabled = 1;
Igor Ryzhovb9259652014-04-16 17:43:07 +0400589 }
Mark McLoughlin893379e2009-10-27 18:16:36 +0000590
591 return ret;
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100592}
593
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100594void qemu_purge_queued_packets(NetClientState *nc)
aliguori63a01ef2008-10-31 19:10:00 +0000595{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100596 if (!nc->peer) {
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100597 return;
598 }
599
Jan Kiszka067404b2013-08-02 21:47:08 +0200600 qemu_net_queue_purge(nc->peer->incoming_queue, nc);
Mark McLoughlin8cad5512009-06-18 18:21:29 +0100601}
602
Michael S. Tsirkinca77d852014-09-04 11:39:13 +0300603static
604void qemu_flush_or_purge_queued_packets(NetClientState *nc, bool purge)
Mark McLoughline94667b2009-04-29 11:48:12 +0100605{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100606 nc->receive_disabled = 0;
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100607
Luigi Rizzo199ee602013-02-05 17:53:31 +0100608 if (nc->peer && nc->peer->info->type == NET_CLIENT_OPTIONS_KIND_HUBPORT) {
609 if (net_hub_flush(nc->peer)) {
610 qemu_notify_event();
611 }
Luigi Rizzo199ee602013-02-05 17:53:31 +0100612 }
Jan Kiszka067404b2013-08-02 21:47:08 +0200613 if (qemu_net_queue_flush(nc->incoming_queue)) {
Paolo Bonzini987a9b42012-08-09 16:45:55 +0200614 /* We emptied the queue successfully, signal to the IO thread to repoll
615 * the file descriptor (for tap, for example).
616 */
617 qemu_notify_event();
Michael S. Tsirkinca77d852014-09-04 11:39:13 +0300618 } else if (purge) {
619 /* Unable to empty the queue, purge remaining packets */
620 qemu_net_queue_purge(nc->incoming_queue, nc);
Paolo Bonzini987a9b42012-08-09 16:45:55 +0200621 }
Mark McLoughline94667b2009-04-29 11:48:12 +0100622}
623
Michael S. Tsirkinca77d852014-09-04 11:39:13 +0300624void qemu_flush_queued_packets(NetClientState *nc)
625{
626 qemu_flush_or_purge_queued_packets(nc, false);
627}
628
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100629static ssize_t qemu_send_packet_async_with_flags(NetClientState *sender,
Mark McLoughlinca77d172009-10-22 17:43:41 +0100630 unsigned flags,
631 const uint8_t *buf, int size,
632 NetPacketSent *sent_cb)
aliguori764a4d12009-04-21 19:56:41 +0000633{
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100634 NetQueue *queue;
Mark McLoughline94667b2009-04-29 11:48:12 +0100635
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100636#ifdef DEBUG_NET
Mark McLoughlind80b9fc2009-10-08 19:58:24 +0100637 printf("qemu_send_packet_async:\n");
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100638 hex_dump(stdout, buf, size);
639#endif
640
Stefan Hajnoczia005d072012-07-24 16:35:11 +0100641 if (sender->link_down || !sender->peer) {
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100642 return size;
643 }
644
Jan Kiszka067404b2013-08-02 21:47:08 +0200645 queue = sender->peer->incoming_queue;
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100646
Mark McLoughlinca77d172009-10-22 17:43:41 +0100647 return qemu_net_queue_send(queue, sender, flags, buf, size, sent_cb);
648}
649
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100650ssize_t qemu_send_packet_async(NetClientState *sender,
Mark McLoughlinca77d172009-10-22 17:43:41 +0100651 const uint8_t *buf, int size,
652 NetPacketSent *sent_cb)
653{
654 return qemu_send_packet_async_with_flags(sender, QEMU_NET_PACKET_FLAG_NONE,
655 buf, size, sent_cb);
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100656}
657
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100658void qemu_send_packet(NetClientState *nc, const uint8_t *buf, int size)
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100659{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100660 qemu_send_packet_async(nc, buf, size, NULL);
aliguori63a01ef2008-10-31 19:10:00 +0000661}
662
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100663ssize_t qemu_send_packet_raw(NetClientState *nc, const uint8_t *buf, int size)
Mark McLoughlinca77d172009-10-22 17:43:41 +0100664{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100665 return qemu_send_packet_async_with_flags(nc, QEMU_NET_PACKET_FLAG_RAW,
Mark McLoughlinca77d172009-10-22 17:43:41 +0100666 buf, size, NULL);
667}
668
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100669static ssize_t nc_sendv_compat(NetClientState *nc, const struct iovec *iov,
aliguorifbe78f42008-12-17 19:13:11 +0000670 int iovcnt)
671{
Scott Feldmand32fcad2013-03-18 11:43:44 -0700672 uint8_t buffer[NET_BUFSIZE];
Benjamin Poirierce053662011-02-23 19:57:21 -0500673 size_t offset;
aliguorifbe78f42008-12-17 19:13:11 +0000674
Michael Tokarevdcf6f5e2012-03-11 18:05:12 +0400675 offset = iov_to_buf(iov, iovcnt, 0, buffer, sizeof(buffer));
aliguorifbe78f42008-12-17 19:13:11 +0000676
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100677 return nc->info->receive(nc, buffer, offset);
aliguorifbe78f42008-12-17 19:13:11 +0000678}
679
Zhi Yong Wu86a77c32012-07-24 16:35:17 +0100680ssize_t qemu_deliver_packet_iov(NetClientState *sender,
681 unsigned flags,
682 const struct iovec *iov,
683 int iovcnt,
684 void *opaque)
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100685{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100686 NetClientState *nc = opaque;
Stefan Hajnoczic67f5dc2012-08-17 21:16:42 +0100687 int ret;
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100688
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100689 if (nc->link_down) {
Benjamin Poirierce053662011-02-23 19:57:21 -0500690 return iov_size(iov, iovcnt);
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100691 }
692
Stefan Hajnoczic67f5dc2012-08-17 21:16:42 +0100693 if (nc->receive_disabled) {
694 return 0;
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100695 }
Stefan Hajnoczic67f5dc2012-08-17 21:16:42 +0100696
697 if (nc->info->receive_iov) {
698 ret = nc->info->receive_iov(nc, iov, iovcnt);
699 } else {
700 ret = nc_sendv_compat(nc, iov, iovcnt);
701 }
702
703 if (ret == 0) {
704 nc->receive_disabled = 1;
705 }
706
707 return ret;
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100708}
709
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100710ssize_t qemu_sendv_packet_async(NetClientState *sender,
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100711 const struct iovec *iov, int iovcnt,
712 NetPacketSent *sent_cb)
aliguorifbe78f42008-12-17 19:13:11 +0000713{
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100714 NetQueue *queue;
715
Stefan Hajnoczia005d072012-07-24 16:35:11 +0100716 if (sender->link_down || !sender->peer) {
Benjamin Poirierce053662011-02-23 19:57:21 -0500717 return iov_size(iov, iovcnt);
aliguorifbe78f42008-12-17 19:13:11 +0000718 }
719
Jan Kiszka067404b2013-08-02 21:47:08 +0200720 queue = sender->peer->incoming_queue;
Mark McLoughlin9a6ecb32009-10-08 19:58:32 +0100721
Mark McLoughlinc0b8e492009-10-22 17:43:40 +0100722 return qemu_net_queue_send_iov(queue, sender,
723 QEMU_NET_PACKET_FLAG_NONE,
724 iov, iovcnt, sent_cb);
aliguorifbe78f42008-12-17 19:13:11 +0000725}
726
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100727ssize_t
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100728qemu_sendv_packet(NetClientState *nc, const struct iovec *iov, int iovcnt)
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100729{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100730 return qemu_sendv_packet_async(nc, iov, iovcnt, NULL);
Mark McLoughlinf3b6c7f2009-04-29 12:15:26 +0100731}
732
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100733NetClientState *qemu_find_netdev(const char *id)
aliguori63a01ef2008-10-31 19:10:00 +0000734{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100735 NetClientState *nc;
Mark McLoughlin5610c3a2009-10-08 19:58:23 +0100736
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100737 QTAILQ_FOREACH(nc, &net_clients, next) {
738 if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC)
Markus Armbruster85dde9a2011-06-16 18:45:37 +0200739 continue;
Stefan Hajnoczi35277d12012-07-24 16:35:14 +0100740 if (!strcmp(nc->name, id)) {
741 return nc;
Mark McLoughlin5869c4d2009-10-08 19:58:29 +0100742 }
743 }
744
745 return NULL;
746}
747
Jason Wang6c51ae72013-01-30 19:12:25 +0800748int qemu_find_net_clients_except(const char *id, NetClientState **ncs,
749 NetClientOptionsKind type, int max)
750{
751 NetClientState *nc;
752 int ret = 0;
753
754 QTAILQ_FOREACH(nc, &net_clients, next) {
755 if (nc->info->type == type) {
756 continue;
757 }
Hani Benhabiles40d19392014-05-07 23:41:30 +0100758 if (!id || !strcmp(nc->name, id)) {
Jason Wang6c51ae72013-01-30 19:12:25 +0800759 if (ret < max) {
760 ncs[ret] = nc;
761 }
762 ret++;
763 }
764 }
765
766 return ret;
767}
768
aliguori76970792009-02-11 15:20:03 +0000769static int nic_get_free_idx(void)
770{
771 int index;
772
773 for (index = 0; index < MAX_NICS; index++)
774 if (!nd_table[index].used)
775 return index;
776 return -1;
777}
778
Markus Armbruster07caea32009-09-25 03:53:51 +0200779int qemu_show_nic_models(const char *arg, const char *const *models)
780{
781 int i;
782
Peter Maydellc8057f92012-08-02 13:45:54 +0100783 if (!arg || !is_help_option(arg)) {
Markus Armbruster07caea32009-09-25 03:53:51 +0200784 return 0;
Peter Maydellc8057f92012-08-02 13:45:54 +0100785 }
Markus Armbruster07caea32009-09-25 03:53:51 +0200786
787 fprintf(stderr, "qemu: Supported NIC models: ");
788 for (i = 0 ; models[i]; i++)
789 fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n');
790 return 1;
791}
792
aliguorid07f22c2009-01-13 19:03:57 +0000793void qemu_check_nic_model(NICInfo *nd, const char *model)
794{
795 const char *models[2];
796
797 models[0] = model;
798 models[1] = NULL;
799
Markus Armbruster07caea32009-09-25 03:53:51 +0200800 if (qemu_show_nic_models(nd->model, models))
801 exit(0);
802 if (qemu_find_nic_model(nd, models, model) < 0)
803 exit(1);
aliguorid07f22c2009-01-13 19:03:57 +0000804}
805
Markus Armbruster07caea32009-09-25 03:53:51 +0200806int qemu_find_nic_model(NICInfo *nd, const char * const *models,
807 const char *default_model)
aliguorid07f22c2009-01-13 19:03:57 +0000808{
Markus Armbruster07caea32009-09-25 03:53:51 +0200809 int i;
aliguorid07f22c2009-01-13 19:03:57 +0000810
811 if (!nd->model)
Anthony Liguori7267c092011-08-20 22:09:37 -0500812 nd->model = g_strdup(default_model);
aliguorid07f22c2009-01-13 19:03:57 +0000813
Markus Armbruster07caea32009-09-25 03:53:51 +0200814 for (i = 0 ; models[i]; i++) {
815 if (strcmp(nd->model, models[i]) == 0)
816 return i;
aliguorid07f22c2009-01-13 19:03:57 +0000817 }
818
Markus Armbruster6daf1942011-06-22 14:03:54 +0200819 error_report("Unsupported NIC model: %s", nd->model);
Markus Armbruster07caea32009-09-25 03:53:51 +0200820 return -1;
aliguorid07f22c2009-01-13 19:03:57 +0000821}
822
Laszlo Ersek1a0c0952012-07-17 16:17:21 +0200823static int net_init_nic(const NetClientOptions *opts, const char *name,
Markus Armbrustera30ecde2015-05-15 13:58:50 +0200824 NetClientState *peer, Error **errp)
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100825{
826 int idx;
827 NICInfo *nd;
Laszlo Ersek2456f362012-07-17 16:17:14 +0200828 const NetLegacyNicOptions *nic;
829
830 assert(opts->kind == NET_CLIENT_OPTIONS_KIND_NIC);
831 nic = opts->nic;
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100832
833 idx = nic_get_free_idx();
834 if (idx == -1 || nb_nics >= MAX_NICS) {
Markus Armbruster66308862015-05-15 13:58:51 +0200835 error_setg(errp, "too many NICs");
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100836 return -1;
837 }
838
839 nd = &nd_table[idx];
840
841 memset(nd, 0, sizeof(*nd));
842
Laszlo Ersek2456f362012-07-17 16:17:14 +0200843 if (nic->has_netdev) {
844 nd->netdev = qemu_find_netdev(nic->netdev);
Mark McLoughlin5869c4d2009-10-08 19:58:29 +0100845 if (!nd->netdev) {
Markus Armbruster66308862015-05-15 13:58:51 +0200846 error_setg(errp, "netdev '%s' not found", nic->netdev);
Mark McLoughlin5869c4d2009-10-08 19:58:29 +0100847 return -1;
848 }
849 } else {
Stefan Hajnoczid33d93b2012-07-24 16:35:05 +0100850 assert(peer);
851 nd->netdev = peer;
Mark McLoughlin5869c4d2009-10-08 19:58:29 +0100852 }
Markus Armbrusterc64f50d2013-01-22 11:07:57 +0100853 nd->name = g_strdup(name);
Laszlo Ersek2456f362012-07-17 16:17:14 +0200854 if (nic->has_model) {
855 nd->model = g_strdup(nic->model);
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100856 }
Laszlo Ersek2456f362012-07-17 16:17:14 +0200857 if (nic->has_addr) {
858 nd->devaddr = g_strdup(nic->addr);
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100859 }
860
Laszlo Ersek2456f362012-07-17 16:17:14 +0200861 if (nic->has_macaddr &&
862 net_parse_macaddr(nd->macaddr.a, nic->macaddr) < 0) {
Markus Armbruster66308862015-05-15 13:58:51 +0200863 error_setg(errp, "invalid syntax for ethernet address");
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100864 return -1;
865 }
Dmitry Krivenokd60b20c2013-10-21 12:08:44 +0400866 if (nic->has_macaddr &&
867 is_multicast_ether_addr(nd->macaddr.a)) {
Markus Armbruster66308862015-05-15 13:58:51 +0200868 error_setg(errp,
869 "NIC cannot have multicast MAC address (odd 1st byte)");
Dmitry Krivenokd60b20c2013-10-21 12:08:44 +0400870 return -1;
871 }
Jan Kiszka6eed1852011-07-20 12:20:22 +0200872 qemu_macaddr_default_if_unset(&nd->macaddr);
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100873
Laszlo Ersek2456f362012-07-17 16:17:14 +0200874 if (nic->has_vectors) {
875 if (nic->vectors > 0x7ffffff) {
Markus Armbruster66308862015-05-15 13:58:51 +0200876 error_setg(errp, "invalid # of vectors: %"PRIu32, nic->vectors);
Laszlo Ersek2456f362012-07-17 16:17:14 +0200877 return -1;
878 }
879 nd->nvectors = nic->vectors;
880 } else {
881 nd->nvectors = DEV_NVECTORS_UNSPECIFIED;
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100882 }
883
884 nd->used = 1;
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100885 nb_nics++;
886
887 return idx;
888}
889
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100890
Laszlo Ersek6687b792012-07-17 16:17:13 +0200891static int (* const net_client_init_fun[NET_CLIENT_OPTIONS_KIND_MAX])(
Laszlo Ersek1a0c0952012-07-17 16:17:21 +0200892 const NetClientOptions *opts,
Laszlo Ersek6687b792012-07-17 16:17:13 +0200893 const char *name,
Markus Armbrustera30ecde2015-05-15 13:58:50 +0200894 NetClientState *peer, Error **errp) = {
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +0100895 [NET_CLIENT_OPTIONS_KIND_NIC] = net_init_nic,
Mark McLoughlinec302ff2009-10-06 12:17:07 +0100896#ifdef CONFIG_SLIRP
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +0100897 [NET_CLIENT_OPTIONS_KIND_USER] = net_init_slirp,
Mark McLoughlinec302ff2009-10-06 12:17:07 +0100898#endif
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +0100899 [NET_CLIENT_OPTIONS_KIND_TAP] = net_init_tap,
900 [NET_CLIENT_OPTIONS_KIND_SOCKET] = net_init_socket,
Mark McLoughlindd510582009-10-06 12:17:10 +0100901#ifdef CONFIG_VDE
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +0100902 [NET_CLIENT_OPTIONS_KIND_VDE] = net_init_vde,
Mark McLoughlindd510582009-10-06 12:17:10 +0100903#endif
Vincenzo Maffione58952132013-11-06 11:44:06 +0100904#ifdef CONFIG_NETMAP
905 [NET_CLIENT_OPTIONS_KIND_NETMAP] = net_init_netmap,
906#endif
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +0100907 [NET_CLIENT_OPTIONS_KIND_DUMP] = net_init_dump,
Stefan Weil2944e4e2012-02-04 09:24:46 +0100908#ifdef CONFIG_NET_BRIDGE
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +0100909 [NET_CLIENT_OPTIONS_KIND_BRIDGE] = net_init_bridge,
Laszlo Ersek6687b792012-07-17 16:17:13 +0200910#endif
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +0100911 [NET_CLIENT_OPTIONS_KIND_HUBPORT] = net_init_hubport,
Nikolay Nikolaev03ce5742014-06-10 13:02:16 +0300912#ifdef CONFIG_VHOST_NET_USED
913 [NET_CLIENT_OPTIONS_KIND_VHOST_USER] = net_init_vhost_user,
914#endif
Gonglei015a33b2014-07-01 20:58:08 +0800915#ifdef CONFIG_L2TPV3
Anton Ivanov3fb69aa2014-06-20 10:34:41 +0100916 [NET_CLIENT_OPTIONS_KIND_L2TPV3] = net_init_l2tpv3,
917#endif
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100918};
919
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100920
Laszlo Ersek1a0c0952012-07-17 16:17:21 +0200921static int net_client_init1(const void *object, int is_netdev, Error **errp)
Laszlo Ersek6687b792012-07-17 16:17:13 +0200922{
Laszlo Ersek6687b792012-07-17 16:17:13 +0200923 const NetClientOptions *opts;
924 const char *name;
Stefan Hajnoczi4ef0def2015-05-27 17:16:51 +0100925 NetClientState *peer = NULL;
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100926
Markus Armbruster5294e2c2010-03-25 17:22:38 +0100927 if (is_netdev) {
Stefan Hajnoczi1e81aba2015-05-27 17:16:52 +0100928 const Netdev *netdev = object;
929 opts = netdev->opts;
930 name = netdev->id;
Laszlo Ersek6687b792012-07-17 16:17:13 +0200931
Stefan Hajnoczi13226292015-05-27 17:16:49 +0100932 if (opts->kind == NET_CLIENT_OPTIONS_KIND_DUMP ||
933 opts->kind == NET_CLIENT_OPTIONS_KIND_NIC ||
934 !net_client_init_fun[opts->kind]) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100935 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "type",
936 "a netdev backend type");
Mark McLoughlinf6b134a2009-10-08 19:58:27 +0100937 return -1;
938 }
Laszlo Ersek6687b792012-07-17 16:17:13 +0200939 } else {
Stefan Hajnoczi1e81aba2015-05-27 17:16:52 +0100940 const NetLegacy *net = object;
941 opts = net->opts;
942 /* missing optional values have been initialized to "all bits zero" */
943 name = net->has_id ? net->id : net->name;
944
945 if (opts->kind == NET_CLIENT_OPTIONS_KIND_NONE) {
946 return 0; /* nothing to do */
947 }
Markus Armbrusterca7eb182015-05-15 13:58:49 +0200948 if (opts->kind == NET_CLIENT_OPTIONS_KIND_HUBPORT) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100949 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "type",
950 "a net type");
Markus Armbrusterca7eb182015-05-15 13:58:49 +0200951 return -1;
952 }
Stefan Hajnoczid139e9a2015-05-27 17:16:50 +0100953
954 if (!net_client_init_fun[opts->kind]) {
955 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "type",
956 "a net backend type (maybe it is not compiled "
957 "into this binary)");
958 return -1;
959 }
Mark McLoughlinf6b134a2009-10-08 19:58:27 +0100960
Stefan Hajnoczi1e81aba2015-05-27 17:16:52 +0100961 /* Do not add to a vlan if it's a nic with a netdev= parameter. */
962 if (opts->kind != NET_CLIENT_OPTIONS_KIND_NIC ||
963 !opts->nic->has_netdev) {
964 peer = net_hub_add_port(net->has_vlan ? net->vlan : 0, NULL);
965 }
Stefan Hajnoczi4ef0def2015-05-27 17:16:51 +0100966 }
Laszlo Ersek6687b792012-07-17 16:17:13 +0200967
Stefan Hajnoczi4ef0def2015-05-27 17:16:51 +0100968 if (net_client_init_fun[opts->kind](opts, name, peer, errp) < 0) {
969 /* FIXME drop when all init functions store an Error */
970 if (errp && !*errp) {
971 error_setg(errp, QERR_DEVICE_INIT_FAILED,
972 NetClientOptionsKind_lookup[opts->kind]);
Mark McLoughlinf6b134a2009-10-08 19:58:27 +0100973 }
Stefan Hajnoczi4ef0def2015-05-27 17:16:51 +0100974 return -1;
Mark McLoughlinf6b134a2009-10-08 19:58:27 +0100975 }
Laszlo Ersek6687b792012-07-17 16:17:13 +0200976 return 0;
Mark McLoughlinf83c6e12009-10-06 12:17:06 +0100977}
978
Laszlo Ersek6687b792012-07-17 16:17:13 +0200979
980static void net_visit(Visitor *v, int is_netdev, void **object, Error **errp)
981{
982 if (is_netdev) {
983 visit_type_Netdev(v, (Netdev **)object, NULL, errp);
984 } else {
985 visit_type_NetLegacy(v, (NetLegacy **)object, NULL, errp);
986 }
987}
988
989
990int net_client_init(QemuOpts *opts, int is_netdev, Error **errp)
991{
992 void *object = NULL;
993 Error *err = NULL;
994 int ret = -1;
995
996 {
997 OptsVisitor *ov = opts_visitor_new(opts);
998
999 net_visit(opts_get_visitor(ov), is_netdev, &object, &err);
1000 opts_visitor_cleanup(ov);
1001 }
1002
1003 if (!err) {
Laszlo Ersek1a0c0952012-07-17 16:17:21 +02001004 ret = net_client_init1(object, is_netdev, &err);
Laszlo Ersek6687b792012-07-17 16:17:13 +02001005 }
1006
1007 if (object) {
1008 QapiDeallocVisitor *dv = qapi_dealloc_visitor_new();
1009
1010 net_visit(qapi_dealloc_get_visitor(dv), is_netdev, &object, NULL);
1011 qapi_dealloc_visitor_cleanup(dv);
1012 }
1013
1014 error_propagate(errp, err);
1015 return ret;
1016}
1017
1018
aliguori6f338c32009-02-11 15:21:54 +00001019static int net_host_check_device(const char *device)
1020{
1021 int i;
Hani Benhabiles84007e82014-05-27 23:39:33 +01001022 for (i = 0; host_net_devices[i]; i++) {
1023 if (!strncmp(host_net_devices[i], device,
1024 strlen(host_net_devices[i]))) {
aliguori6f338c32009-02-11 15:21:54 +00001025 return 1;
Hani Benhabiles84007e82014-05-27 23:39:33 +01001026 }
aliguori6f338c32009-02-11 15:21:54 +00001027 }
1028
1029 return 0;
1030}
1031
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001032void hmp_host_net_add(Monitor *mon, const QDict *qdict)
aliguori6f338c32009-02-11 15:21:54 +00001033{
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001034 const char *device = qdict_get_str(qdict, "device");
Mark McLoughlin7f1c9d22009-10-06 12:17:13 +01001035 const char *opts_str = qdict_get_try_str(qdict, "opts");
Luiz Capitulino4559a1d2012-04-20 16:50:25 -03001036 Error *local_err = NULL;
Mark McLoughlin7f1c9d22009-10-06 12:17:13 +01001037 QemuOpts *opts;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001038
aliguori6f338c32009-02-11 15:21:54 +00001039 if (!net_host_check_device(device)) {
aliguori376253e2009-03-05 23:01:23 +00001040 monitor_printf(mon, "invalid host network device %s\n", device);
aliguori6f338c32009-02-11 15:21:54 +00001041 return;
1042 }
Mark McLoughlin7f1c9d22009-10-06 12:17:13 +01001043
Markus Armbruster70b94332015-02-13 12:50:26 +01001044 opts = qemu_opts_parse_noisily(qemu_find_opts("net"),
1045 opts_str ? opts_str : "", false);
Mark McLoughlin7f1c9d22009-10-06 12:17:13 +01001046 if (!opts) {
Mark McLoughlin7f1c9d22009-10-06 12:17:13 +01001047 return;
1048 }
1049
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01001050 qemu_opt_set(opts, "type", device, &error_abort);
Mark McLoughlin7f1c9d22009-10-06 12:17:13 +01001051
Luiz Capitulino4559a1d2012-04-20 16:50:25 -03001052 net_client_init(opts, 0, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01001053 if (local_err) {
Markus Armbruster12d0cc22015-02-10 15:02:06 +01001054 error_report_err(local_err);
aliguori5c8be672009-04-21 19:56:32 +00001055 monitor_printf(mon, "adding host network device %s failed\n", device);
1056 }
aliguori6f338c32009-02-11 15:21:54 +00001057}
1058
Markus Armbruster3e5a50d2015-02-06 13:55:43 +01001059void hmp_host_net_remove(Monitor *mon, const QDict *qdict)
aliguori6f338c32009-02-11 15:21:54 +00001060{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +01001061 NetClientState *nc;
Luiz Capitulinof18c16d2009-08-28 15:27:14 -03001062 int vlan_id = qdict_get_int(qdict, "vlan_id");
1063 const char *device = qdict_get_str(qdict, "device");
aliguori6f338c32009-02-11 15:21:54 +00001064
Stefan Hajnoczi35277d12012-07-24 16:35:14 +01001065 nc = net_hub_find_client_by_name(vlan_id, device);
1066 if (!nc) {
Hani Benhabiles86e11772014-04-01 00:05:14 +01001067 error_report("Host network device '%s' on hub '%d' not found",
1068 device, vlan_id);
aliguori6f338c32009-02-11 15:21:54 +00001069 return;
1070 }
Paolo Bonzini7fb43912014-12-23 17:53:20 +01001071 if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
Hani Benhabiles86e11772014-04-01 00:05:14 +01001072 error_report("invalid host network device '%s'", device);
aliguorie8f1f9d2009-04-21 19:56:08 +00001073 return;
1074 }
Jason Wang64a55d62015-02-02 15:06:37 +08001075
1076 qemu_del_net_client(nc->peer);
Stefan Hajnoczib20c6b92012-07-24 16:35:15 +01001077 qemu_del_net_client(nc);
aliguori6f338c32009-02-11 15:21:54 +00001078}
1079
Luiz Capitulino928059a2012-04-18 17:34:15 -03001080void netdev_add(QemuOpts *opts, Error **errp)
1081{
1082 net_client_init(opts, 1, errp);
1083}
1084
Markus Armbruster485febc2015-03-13 17:25:50 +01001085void qmp_netdev_add(QDict *qdict, QObject **ret, Error **errp)
Markus Armbrusterae82d322010-03-25 17:22:40 +01001086{
Luiz Capitulino4e899782012-04-18 17:24:01 -03001087 Error *local_err = NULL;
Luiz Capitulino928059a2012-04-18 17:34:15 -03001088 QemuOptsList *opts_list;
Markus Armbrusterae82d322010-03-25 17:22:40 +01001089 QemuOpts *opts;
Markus Armbrusterae82d322010-03-25 17:22:40 +01001090
Luiz Capitulino928059a2012-04-18 17:34:15 -03001091 opts_list = qemu_find_opts_err("netdev", &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01001092 if (local_err) {
Markus Armbruster485febc2015-03-13 17:25:50 +01001093 goto out;
Markus Armbrusterae82d322010-03-25 17:22:40 +01001094 }
1095
Luiz Capitulino928059a2012-04-18 17:34:15 -03001096 opts = qemu_opts_from_qdict(opts_list, qdict, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01001097 if (local_err) {
Markus Armbruster485febc2015-03-13 17:25:50 +01001098 goto out;
Luiz Capitulino928059a2012-04-18 17:34:15 -03001099 }
1100
1101 netdev_add(opts, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01001102 if (local_err) {
Yoshiaki Tamura410cbaf2010-06-21 10:41:36 +09001103 qemu_opts_del(opts);
Markus Armbruster485febc2015-03-13 17:25:50 +01001104 goto out;
Yoshiaki Tamura410cbaf2010-06-21 10:41:36 +09001105 }
1106
Markus Armbruster485febc2015-03-13 17:25:50 +01001107out:
1108 error_propagate(errp, local_err);
Markus Armbrusterae82d322010-03-25 17:22:40 +01001109}
1110
Luiz Capitulino5f964152012-04-16 14:36:32 -03001111void qmp_netdev_del(const char *id, Error **errp)
Markus Armbrusterae82d322010-03-25 17:22:40 +01001112{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +01001113 NetClientState *nc;
Stefan Hajnoczi645c9492012-10-24 14:34:12 +02001114 QemuOpts *opts;
Markus Armbrusterae82d322010-03-25 17:22:40 +01001115
Stefan Hajnoczi35277d12012-07-24 16:35:14 +01001116 nc = qemu_find_netdev(id);
1117 if (!nc) {
Markus Armbruster75158eb2015-03-16 08:57:47 +01001118 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
1119 "Device '%s' not found", id);
Luiz Capitulino5f964152012-04-16 14:36:32 -03001120 return;
Markus Armbrusterae82d322010-03-25 17:22:40 +01001121 }
Luiz Capitulino5f964152012-04-16 14:36:32 -03001122
Stefan Hajnoczi645c9492012-10-24 14:34:12 +02001123 opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), id);
1124 if (!opts) {
1125 error_setg(errp, "Device '%s' is not a netdev", id);
1126 return;
1127 }
1128
Stefan Hajnoczib20c6b92012-07-24 16:35:15 +01001129 qemu_del_net_client(nc);
Stefan Hajnoczi645c9492012-10-24 14:34:12 +02001130 qemu_opts_del(opts);
Markus Armbrusterae82d322010-03-25 17:22:40 +01001131}
1132
Zhi Yong Wu1a859592012-07-24 16:35:16 +01001133void print_net_client(Monitor *mon, NetClientState *nc)
Jan Kiszka44e798d2011-07-20 12:20:21 +02001134{
Jason Wang1ceef9f2013-01-30 19:12:28 +08001135 monitor_printf(mon, "%s: index=%d,type=%s,%s\n", nc->name,
1136 nc->queue_index,
1137 NetClientOptionsKind_lookup[nc->info->type],
1138 nc->info_str);
Jan Kiszka44e798d2011-07-20 12:20:21 +02001139}
1140
Amos Kongb1be4282013-06-14 15:45:52 +08001141RxFilterInfoList *qmp_query_rx_filter(bool has_name, const char *name,
1142 Error **errp)
1143{
1144 NetClientState *nc;
1145 RxFilterInfoList *filter_list = NULL, *last_entry = NULL;
1146
1147 QTAILQ_FOREACH(nc, &net_clients, next) {
1148 RxFilterInfoList *entry;
1149 RxFilterInfo *info;
1150
1151 if (has_name && strcmp(nc->name, name) != 0) {
1152 continue;
1153 }
1154
1155 /* only query rx-filter information of NIC */
1156 if (nc->info->type != NET_CLIENT_OPTIONS_KIND_NIC) {
1157 if (has_name) {
1158 error_setg(errp, "net client(%s) isn't a NIC", name);
Markus Armbruster9083da12014-04-24 15:44:18 +02001159 return NULL;
Amos Kongb1be4282013-06-14 15:45:52 +08001160 }
1161 continue;
1162 }
1163
1164 if (nc->info->query_rx_filter) {
1165 info = nc->info->query_rx_filter(nc);
1166 entry = g_malloc0(sizeof(*entry));
1167 entry->value = info;
1168
1169 if (!filter_list) {
1170 filter_list = entry;
1171 } else {
1172 last_entry->next = entry;
1173 }
1174 last_entry = entry;
1175 } else if (has_name) {
1176 error_setg(errp, "net client(%s) doesn't support"
1177 " rx-filter querying", name);
Markus Armbruster9083da12014-04-24 15:44:18 +02001178 return NULL;
Amos Kongb1be4282013-06-14 15:45:52 +08001179 }
Markus Armbruster638fb142014-04-24 15:44:17 +02001180
1181 if (has_name) {
1182 break;
1183 }
Amos Kongb1be4282013-06-14 15:45:52 +08001184 }
1185
Markus Armbruster9083da12014-04-24 15:44:18 +02001186 if (filter_list == NULL && has_name) {
Amos Kongb1be4282013-06-14 15:45:52 +08001187 error_setg(errp, "invalid net client name: %s", name);
1188 }
1189
1190 return filter_list;
1191}
1192
Markus Armbruster1ce6be22015-02-06 14:18:24 +01001193void hmp_info_network(Monitor *mon, const QDict *qdict)
aliguori63a01ef2008-10-31 19:10:00 +00001194{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +01001195 NetClientState *nc, *peer;
Laszlo Ersek2be64a62012-07-17 16:17:12 +02001196 NetClientOptionsKind type;
aliguori63a01ef2008-10-31 19:10:00 +00001197
Zhi Yong Wu1a859592012-07-24 16:35:16 +01001198 net_hub_info(mon);
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01001199
Stefan Hajnoczi35277d12012-07-24 16:35:14 +01001200 QTAILQ_FOREACH(nc, &net_clients, next) {
1201 peer = nc->peer;
1202 type = nc->info->type;
Zhi Yong Wu1a859592012-07-24 16:35:16 +01001203
1204 /* Skip if already printed in hub info */
1205 if (net_hub_id_for_client(nc, NULL) == 0) {
1206 continue;
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01001207 }
Zhi Yong Wu1a859592012-07-24 16:35:16 +01001208
Laszlo Ersek2be64a62012-07-17 16:17:12 +02001209 if (!peer || type == NET_CLIENT_OPTIONS_KIND_NIC) {
Stefan Hajnoczi35277d12012-07-24 16:35:14 +01001210 print_net_client(mon, nc);
Jan Kiszka19061e62011-07-20 12:20:19 +02001211 } /* else it's a netdev connected to a NIC, printed with the NIC */
Laszlo Ersek2be64a62012-07-17 16:17:12 +02001212 if (peer && type == NET_CLIENT_OPTIONS_KIND_NIC) {
Zhi Yong Wu1a859592012-07-24 16:35:16 +01001213 monitor_printf(mon, " \\ ");
Jan Kiszka44e798d2011-07-20 12:20:21 +02001214 print_net_client(mon, peer);
Markus Armbrustera0104e02010-02-11 14:45:01 +01001215 }
Markus Armbrustera0104e02010-02-11 14:45:01 +01001216 }
aliguori63a01ef2008-10-31 19:10:00 +00001217}
1218
Luiz Capitulino4b371562011-11-23 13:11:55 -02001219void qmp_set_link(const char *name, bool up, Error **errp)
aliguori436e5e52009-01-08 19:44:06 +00001220{
Jason Wang1ceef9f2013-01-30 19:12:28 +08001221 NetClientState *ncs[MAX_QUEUE_NUM];
1222 NetClientState *nc;
1223 int queues, i;
aliguori436e5e52009-01-08 19:44:06 +00001224
Jason Wang1ceef9f2013-01-30 19:12:28 +08001225 queues = qemu_find_net_clients_except(name, ncs,
1226 NET_CLIENT_OPTIONS_KIND_MAX,
1227 MAX_QUEUE_NUM);
1228
1229 if (queues == 0) {
Markus Armbruster75158eb2015-03-16 08:57:47 +01001230 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
1231 "Device '%s' not found", name);
Luiz Capitulino4b371562011-11-23 13:11:55 -02001232 return;
aliguori436e5e52009-01-08 19:44:06 +00001233 }
Jason Wang1ceef9f2013-01-30 19:12:28 +08001234 nc = ncs[0];
aliguori436e5e52009-01-08 19:44:06 +00001235
Jason Wang1ceef9f2013-01-30 19:12:28 +08001236 for (i = 0; i < queues; i++) {
1237 ncs[i]->link_down = !up;
1238 }
aliguori436e5e52009-01-08 19:44:06 +00001239
Stefan Hajnoczi35277d12012-07-24 16:35:14 +01001240 if (nc->info->link_status_changed) {
1241 nc->info->link_status_changed(nc);
Mark McLoughlin665a3b02009-11-25 18:49:30 +00001242 }
Michael S. Tsirkinab1cbe12011-02-09 18:45:04 +02001243
Vlad Yasevich02d38fc2013-11-21 21:05:51 -05001244 if (nc->peer) {
1245 /* Change peer link only if the peer is NIC and then notify peer.
1246 * If the peer is a HUBPORT or a backend, we do not change the
1247 * link status.
1248 *
1249 * This behavior is compatible with qemu vlans where there could be
1250 * multiple clients that can still communicate with each other in
1251 * disconnected mode. For now maintain this compatibility.
1252 */
1253 if (nc->peer->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
1254 for (i = 0; i < queues; i++) {
1255 ncs[i]->peer->link_down = !up;
1256 }
1257 }
1258 if (nc->peer->info->link_status_changed) {
1259 nc->peer->info->link_status_changed(nc->peer);
1260 }
Michael S. Tsirkinab1cbe12011-02-09 18:45:04 +02001261 }
aliguori436e5e52009-01-08 19:44:06 +00001262}
1263
Michael S. Tsirkinca77d852014-09-04 11:39:13 +03001264static void net_vm_change_state_handler(void *opaque, int running,
1265 RunState state)
1266{
Fam Zheng625de442015-07-07 09:21:07 +08001267 NetClientState *nc;
1268 NetClientState *tmp;
Michael S. Tsirkinca77d852014-09-04 11:39:13 +03001269
Fam Zheng625de442015-07-07 09:21:07 +08001270 QTAILQ_FOREACH_SAFE(nc, &net_clients, next, tmp) {
1271 if (running) {
1272 /* Flush queued packets and wake up backends. */
1273 if (nc->peer && qemu_can_send_packet(nc)) {
1274 qemu_flush_queued_packets(nc->peer);
1275 }
1276 } else {
1277 /* Complete all queued packets, to guarantee we don't modify
1278 * state later when VM is not running.
1279 */
Michael S. Tsirkinca77d852014-09-04 11:39:13 +03001280 qemu_flush_or_purge_queued_packets(nc, true);
1281 }
1282 }
1283}
1284
aliguori63a01ef2008-10-31 19:10:00 +00001285void net_cleanup(void)
1286{
Jason Wang1ceef9f2013-01-30 19:12:28 +08001287 NetClientState *nc;
aliguori63a01ef2008-10-31 19:10:00 +00001288
Jason Wang1ceef9f2013-01-30 19:12:28 +08001289 /* We may del multiple entries during qemu_del_net_client(),
1290 * so QTAILQ_FOREACH_SAFE() is also not safe here.
1291 */
1292 while (!QTAILQ_EMPTY(&net_clients)) {
1293 nc = QTAILQ_FIRST(&net_clients);
Jason Wang948ecf22013-01-30 19:12:24 +08001294 if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC) {
1295 qemu_del_nic(qemu_get_nic(nc));
1296 } else {
1297 qemu_del_net_client(nc);
1298 }
Mark McLoughlin577c4af2009-10-08 19:58:28 +01001299 }
Michael S. Tsirkinca77d852014-09-04 11:39:13 +03001300
1301 qemu_del_vm_change_state_handler(net_change_state_entry);
aliguori63a01ef2008-10-31 19:10:00 +00001302}
1303
Markus Armbruster668680f2010-02-11 14:44:58 +01001304void net_check_clients(void)
aliguori63a01ef2008-10-31 19:10:00 +00001305{
Stefan Hajnoczi35277d12012-07-24 16:35:14 +01001306 NetClientState *nc;
Peter Maydell48e2faf2011-05-20 16:50:01 +01001307 int i;
aliguori63a01ef2008-10-31 19:10:00 +00001308
Peter Maydell641f6ea2011-05-20 16:50:00 +01001309 /* Don't warn about the default network setup that you get if
1310 * no command line -net or -netdev options are specified. There
1311 * are two cases that we would otherwise complain about:
1312 * (1) board doesn't support a NIC but the implicit "-net nic"
1313 * requested one
1314 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
1315 * sets up a nic that isn't connected to anything.
1316 */
1317 if (default_net) {
1318 return;
1319 }
1320
Stefan Hajnoczi81017642012-07-24 16:35:07 +01001321 net_hub_check_clients();
Tristan Gingoldac60cc12011-03-15 14:20:54 +01001322
Stefan Hajnoczi35277d12012-07-24 16:35:14 +01001323 QTAILQ_FOREACH(nc, &net_clients, next) {
1324 if (!nc->peer) {
Markus Armbrusterefe32fd2010-02-11 14:45:00 +01001325 fprintf(stderr, "Warning: %s %s has no peer\n",
Stefan Hajnoczi35277d12012-07-24 16:35:14 +01001326 nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC ?
1327 "nic" : "netdev", nc->name);
Markus Armbrusterefe32fd2010-02-11 14:45:00 +01001328 }
1329 }
Peter Maydell48e2faf2011-05-20 16:50:01 +01001330
1331 /* Check that all NICs requested via -net nic actually got created.
1332 * NICs created via -device don't need to be checked here because
1333 * they are always instantiated.
1334 */
1335 for (i = 0; i < MAX_NICS; i++) {
1336 NICInfo *nd = &nd_table[i];
1337 if (nd->used && !nd->instantiated) {
1338 fprintf(stderr, "Warning: requested NIC (%s, model %s) "
1339 "was not created (not supported by this machine?)\n",
1340 nd->name ? nd->name : "anonymous",
1341 nd->model ? nd->model : "unspecified");
1342 }
1343 }
aliguori63a01ef2008-10-31 19:10:00 +00001344}
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001345
Markus Armbruster28d0de72015-03-13 13:35:14 +01001346static int net_init_client(void *dummy, QemuOpts *opts, Error **errp)
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001347{
Luiz Capitulino4559a1d2012-04-20 16:50:25 -03001348 Error *local_err = NULL;
1349
1350 net_client_init(opts, 0, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01001351 if (local_err) {
Markus Armbruster12d0cc22015-02-10 15:02:06 +01001352 error_report_err(local_err);
Mark McLoughlinc1671a02009-10-12 09:52:00 +01001353 return -1;
Luiz Capitulino4559a1d2012-04-20 16:50:25 -03001354 }
1355
Mark McLoughlinc1671a02009-10-12 09:52:00 +01001356 return 0;
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01001357}
1358
Markus Armbruster28d0de72015-03-13 13:35:14 +01001359static int net_init_netdev(void *dummy, QemuOpts *opts, Error **errp)
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01001360{
Luiz Capitulino4559a1d2012-04-20 16:50:25 -03001361 Error *local_err = NULL;
1362 int ret;
1363
1364 ret = net_client_init(opts, 1, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01001365 if (local_err) {
Markus Armbruster12d0cc22015-02-10 15:02:06 +01001366 error_report_err(local_err);
Luiz Capitulino4559a1d2012-04-20 16:50:25 -03001367 return -1;
1368 }
1369
1370 return ret;
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001371}
1372
1373int net_init_clients(void)
1374{
Gerd Hoffmann3329f072010-08-20 13:52:01 +02001375 QemuOptsList *net = qemu_find_opts("net");
1376
Gerd Hoffmanncb4522c2009-12-08 13:11:47 +01001377 if (default_net) {
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001378 /* if no clients, we use a default config */
Markus Armbruster79087c72015-02-12 17:07:34 +01001379 qemu_opts_set(net, NULL, "type", "nic", &error_abort);
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001380#ifdef CONFIG_SLIRP
Markus Armbruster79087c72015-02-12 17:07:34 +01001381 qemu_opts_set(net, NULL, "type", "user", &error_abort);
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001382#endif
1383 }
1384
Michael S. Tsirkinca77d852014-09-04 11:39:13 +03001385 net_change_state_entry =
1386 qemu_add_vm_change_state_handler(net_vm_change_state_handler, NULL);
1387
Stefan Hajnoczi94878992012-07-24 16:35:12 +01001388 QTAILQ_INIT(&net_clients);
Mark McLoughlin5610c3a2009-10-08 19:58:23 +01001389
Markus Armbruster28d0de72015-03-13 13:35:14 +01001390 if (qemu_opts_foreach(qemu_find_opts("netdev"),
1391 net_init_netdev, NULL, NULL)) {
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01001392 return -1;
Markus Armbrustera4c73672015-03-13 11:07:24 +01001393 }
Mark McLoughlinf6b134a2009-10-08 19:58:27 +01001394
Markus Armbruster28d0de72015-03-13 13:35:14 +01001395 if (qemu_opts_foreach(net, net_init_client, NULL, NULL)) {
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001396 return -1;
1397 }
1398
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001399 return 0;
1400}
1401
Mark McLoughlin7f161aa2009-10-08 19:58:25 +01001402int net_client_parse(QemuOptsList *opts_list, const char *optarg)
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001403{
Juan Quintelaa3a766e2009-10-07 23:44:15 +02001404#if defined(CONFIG_SLIRP)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +00001405 int ret;
1406 if (net_slirp_parse_legacy(opts_list, optarg, &ret)) {
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001407 return ret;
1408 }
Juan Quintelaa3a766e2009-10-07 23:44:15 +02001409#endif
Mark McLoughlin68ac40d2009-11-25 18:48:54 +00001410
Markus Armbruster70b94332015-02-13 12:50:26 +01001411 if (!qemu_opts_parse_noisily(opts_list, optarg, true)) {
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001412 return -1;
1413 }
1414
Gerd Hoffmanncb4522c2009-12-08 13:11:47 +01001415 default_net = 0;
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01001416 return 0;
1417}
Jason Wang7fc8d912012-03-05 11:08:50 +08001418
1419/* From FreeBSD */
1420/* XXX: optimize */
1421unsigned compute_mcast_idx(const uint8_t *ep)
1422{
1423 uint32_t crc;
1424 int carry, i, j;
1425 uint8_t b;
1426
1427 crc = 0xffffffff;
1428 for (i = 0; i < 6; i++) {
1429 b = *ep++;
1430 for (j = 0; j < 8; j++) {
1431 carry = ((crc & 0x80000000L) ? 1 : 0) ^ (b & 0x01);
1432 crc <<= 1;
1433 b >>= 1;
1434 if (carry) {
1435 crc = ((crc ^ POLYNOMIAL) | carry);
1436 }
1437 }
1438 }
1439 return crc >> 26;
1440}
Paolo Bonzini4d454572012-11-26 16:03:42 +01001441
1442QemuOptsList qemu_netdev_opts = {
1443 .name = "netdev",
1444 .implied_opt_name = "type",
1445 .head = QTAILQ_HEAD_INITIALIZER(qemu_netdev_opts.head),
1446 .desc = {
1447 /*
1448 * no elements => accept any params
1449 * validation will happen later
1450 */
1451 { /* end of list */ }
1452 },
1453};
1454
1455QemuOptsList qemu_net_opts = {
1456 .name = "net",
1457 .implied_opt_name = "type",
1458 .head = QTAILQ_HEAD_INITIALIZER(qemu_net_opts.head),
1459 .desc = {
1460 /*
1461 * no elements => accept any params
1462 * validation will happen later
1463 */
1464 { /* end of list */ }
1465 },
1466};