]> Git Repo - qemu.git/blame - hw/net/virtio-net.c
Merge remote-tracking branch 'cohuck/tags/s390x-20170523' into staging
[qemu.git] / hw / net / virtio-net.c
CommitLineData
fbe78f4f
AL
1/*
2 * Virtio Network Device
3 *
4 * Copyright IBM, Corp. 2007
5 *
6 * Authors:
7 * Anthony Liguori <[email protected]>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13
9b8bfe21 14#include "qemu/osdep.h"
1de7afc9 15#include "qemu/iov.h"
0d09e41a 16#include "hw/virtio/virtio.h"
1422e32d 17#include "net/net.h"
7200ac3c 18#include "net/checksum.h"
a8ed73f7 19#include "net/tap.h"
1de7afc9
PB
20#include "qemu/error-report.h"
21#include "qemu/timer.h"
0d09e41a
PB
22#include "hw/virtio/virtio-net.h"
23#include "net/vhost_net.h"
17ec5a86 24#include "hw/virtio/virtio-bus.h"
b1be4280 25#include "qapi/qmp/qjson.h"
06150279 26#include "qapi-event.h"
1399c60d 27#include "hw/virtio/virtio-access.h"
fbe78f4f 28
0ce0e8f4 29#define VIRTIO_NET_VM_VERSION 11
b6503ed9 30
4ffb17f5 31#define MAC_TABLE_ENTRIES 64
f21c0ed9 32#define MAX_VLAN (1 << 12) /* Per 802.1Q definition */
9d6271b8 33
1c0fbfa3
MT
34/* previously fixed value */
35#define VIRTIO_NET_RX_QUEUE_DEFAULT_SIZE 256
36/* for now, only allow larger queues; with virtio-1, guest can downsize */
37#define VIRTIO_NET_RX_QUEUE_MIN_SIZE VIRTIO_NET_RX_QUEUE_DEFAULT_SIZE
38
14f9b664
JL
39/*
40 * Calculate the number of bytes up to and including the given 'field' of
41 * 'container'.
42 */
43#define endof(container, field) \
44 (offsetof(container, field) + sizeof(((container *)0)->field))
45
46typedef struct VirtIOFeature {
47 uint32_t flags;
48 size_t end;
49} VirtIOFeature;
50
51static VirtIOFeature feature_sizes[] = {
52 {.flags = 1 << VIRTIO_NET_F_MAC,
53 .end = endof(struct virtio_net_config, mac)},
54 {.flags = 1 << VIRTIO_NET_F_STATUS,
55 .end = endof(struct virtio_net_config, status)},
56 {.flags = 1 << VIRTIO_NET_F_MQ,
57 .end = endof(struct virtio_net_config, max_virtqueue_pairs)},
a93e599d
MC
58 {.flags = 1 << VIRTIO_NET_F_MTU,
59 .end = endof(struct virtio_net_config, mtu)},
14f9b664
JL
60 {}
61};
62
fed699f9 63static VirtIONetQueue *virtio_net_get_subqueue(NetClientState *nc)
0c87e93e
JW
64{
65 VirtIONet *n = qemu_get_nic_opaque(nc);
66
fed699f9 67 return &n->vqs[nc->queue_index];
0c87e93e 68}
fed699f9
JW
69
70static int vq2q(int queue_index)
71{
72 return queue_index / 2;
73}
74
fbe78f4f
AL
75/* TODO
76 * - we could suppress RX interrupt if we were so inclined.
77 */
78
0f03eca6 79static void virtio_net_get_config(VirtIODevice *vdev, uint8_t *config)
fbe78f4f 80{
17a0ca55 81 VirtIONet *n = VIRTIO_NET(vdev);
fbe78f4f
AL
82 struct virtio_net_config netcfg;
83
1399c60d
RR
84 virtio_stw_p(vdev, &netcfg.status, n->status);
85 virtio_stw_p(vdev, &netcfg.max_virtqueue_pairs, n->max_queues);
a93e599d 86 virtio_stw_p(vdev, &netcfg.mtu, n->net_conf.mtu);
79674068 87 memcpy(netcfg.mac, n->mac, ETH_ALEN);
14f9b664 88 memcpy(config, &netcfg, n->config_size);
fbe78f4f
AL
89}
90
0f03eca6
AL
91static void virtio_net_set_config(VirtIODevice *vdev, const uint8_t *config)
92{
17a0ca55 93 VirtIONet *n = VIRTIO_NET(vdev);
14f9b664 94 struct virtio_net_config netcfg = {};
0f03eca6 95
14f9b664 96 memcpy(&netcfg, config, n->config_size);
0f03eca6 97
95129d6f
CH
98 if (!virtio_vdev_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR) &&
99 !virtio_vdev_has_feature(vdev, VIRTIO_F_VERSION_1) &&
c1943a3f 100 memcmp(netcfg.mac, n->mac, ETH_ALEN)) {
79674068 101 memcpy(n->mac, netcfg.mac, ETH_ALEN);
b356f76d 102 qemu_format_nic_info_str(qemu_get_queue(n->nic), n->mac);
0f03eca6
AL
103 }
104}
105
783e7706
MT
106static bool virtio_net_started(VirtIONet *n, uint8_t status)
107{
17a0ca55 108 VirtIODevice *vdev = VIRTIO_DEVICE(n);
783e7706 109 return (status & VIRTIO_CONFIG_S_DRIVER_OK) &&
17a0ca55 110 (n->status & VIRTIO_NET_S_LINK_UP) && vdev->vm_running;
783e7706
MT
111}
112
f57fcf70
JW
113static void virtio_net_announce_timer(void *opaque)
114{
115 VirtIONet *n = opaque;
116 VirtIODevice *vdev = VIRTIO_DEVICE(n);
117
118 n->announce_counter--;
119 n->status |= VIRTIO_NET_S_ANNOUNCE;
120 virtio_notify_config(vdev);
121}
122
783e7706 123static void virtio_net_vhost_status(VirtIONet *n, uint8_t status)
afbaa7b4 124{
17a0ca55 125 VirtIODevice *vdev = VIRTIO_DEVICE(n);
b356f76d 126 NetClientState *nc = qemu_get_queue(n->nic);
fed699f9 127 int queues = n->multiqueue ? n->max_queues : 1;
b356f76d 128
ed8b4afe 129 if (!get_vhost_net(nc->peer)) {
afbaa7b4
MT
130 return;
131 }
fed699f9 132
8c1ac475
RK
133 if ((virtio_net_started(n, status) && !nc->peer->link_down) ==
134 !!n->vhost_started) {
afbaa7b4
MT
135 return;
136 }
137 if (!n->vhost_started) {
086abc1c
MT
138 int r, i;
139
1bfa316c
GK
140 if (n->needs_vnet_hdr_swap) {
141 error_report("backend does not support %s vnet headers; "
142 "falling back on userspace virtio",
143 virtio_is_big_endian(vdev) ? "BE" : "LE");
144 return;
145 }
146
086abc1c
MT
147 /* Any packets outstanding? Purge them to avoid touching rings
148 * when vhost is running.
149 */
150 for (i = 0; i < queues; i++) {
151 NetClientState *qnc = qemu_get_subqueue(n->nic, i);
152
153 /* Purge both directions: TX and RX. */
154 qemu_net_queue_purge(qnc->peer->incoming_queue, qnc);
155 qemu_net_queue_purge(qnc->incoming_queue, qnc->peer);
156 }
157
a93e599d
MC
158 if (virtio_has_feature(vdev->guest_features, VIRTIO_NET_F_MTU)) {
159 r = vhost_net_set_mtu(get_vhost_net(nc->peer), n->net_conf.mtu);
160 if (r < 0) {
161 error_report("%uBytes MTU not supported by the backend",
162 n->net_conf.mtu);
163
164 return;
165 }
166 }
167
1830b80f 168 n->vhost_started = 1;
17a0ca55 169 r = vhost_net_start(vdev, n->nic->ncs, queues);
afbaa7b4 170 if (r < 0) {
e7b43f7e
SH
171 error_report("unable to start vhost net: %d: "
172 "falling back on userspace virtio", -r);
1830b80f 173 n->vhost_started = 0;
afbaa7b4
MT
174 }
175 } else {
17a0ca55 176 vhost_net_stop(vdev, n->nic->ncs, queues);
afbaa7b4
MT
177 n->vhost_started = 0;
178 }
179}
180
1bfa316c
GK
181static int virtio_net_set_vnet_endian_one(VirtIODevice *vdev,
182 NetClientState *peer,
183 bool enable)
184{
185 if (virtio_is_big_endian(vdev)) {
186 return qemu_set_vnet_be(peer, enable);
187 } else {
188 return qemu_set_vnet_le(peer, enable);
189 }
190}
191
192static bool virtio_net_set_vnet_endian(VirtIODevice *vdev, NetClientState *ncs,
193 int queues, bool enable)
194{
195 int i;
196
197 for (i = 0; i < queues; i++) {
198 if (virtio_net_set_vnet_endian_one(vdev, ncs[i].peer, enable) < 0 &&
199 enable) {
200 while (--i >= 0) {
201 virtio_net_set_vnet_endian_one(vdev, ncs[i].peer, false);
202 }
203
204 return true;
205 }
206 }
207
208 return false;
209}
210
211static void virtio_net_vnet_endian_status(VirtIONet *n, uint8_t status)
212{
213 VirtIODevice *vdev = VIRTIO_DEVICE(n);
214 int queues = n->multiqueue ? n->max_queues : 1;
215
216 if (virtio_net_started(n, status)) {
217 /* Before using the device, we tell the network backend about the
218 * endianness to use when parsing vnet headers. If the backend
219 * can't do it, we fallback onto fixing the headers in the core
220 * virtio-net code.
221 */
222 n->needs_vnet_hdr_swap = virtio_net_set_vnet_endian(vdev, n->nic->ncs,
223 queues, true);
224 } else if (virtio_net_started(n, vdev->status)) {
225 /* After using the device, we need to reset the network backend to
226 * the default (guest native endianness), otherwise the guest may
227 * lose network connectivity if it is rebooted into a different
228 * endianness.
229 */
230 virtio_net_set_vnet_endian(vdev, n->nic->ncs, queues, false);
231 }
232}
233
283e2c2a
YB
234static void virtio_net_drop_tx_queue_data(VirtIODevice *vdev, VirtQueue *vq)
235{
236 unsigned int dropped = virtqueue_drop_all(vq);
237 if (dropped) {
238 virtio_notify(vdev, vq);
239 }
240}
241
783e7706
MT
242static void virtio_net_set_status(struct VirtIODevice *vdev, uint8_t status)
243{
17a0ca55 244 VirtIONet *n = VIRTIO_NET(vdev);
fed699f9
JW
245 VirtIONetQueue *q;
246 int i;
247 uint8_t queue_status;
783e7706 248
1bfa316c 249 virtio_net_vnet_endian_status(n, status);
783e7706
MT
250 virtio_net_vhost_status(n, status);
251
fed699f9 252 for (i = 0; i < n->max_queues; i++) {
38705bb5
FZ
253 NetClientState *ncs = qemu_get_subqueue(n->nic, i);
254 bool queue_started;
fed699f9 255 q = &n->vqs[i];
783e7706 256
fed699f9
JW
257 if ((!n->multiqueue && i != 0) || i >= n->curr_queues) {
258 queue_status = 0;
783e7706 259 } else {
fed699f9 260 queue_status = status;
783e7706 261 }
38705bb5
FZ
262 queue_started =
263 virtio_net_started(n, queue_status) && !n->vhost_started;
264
265 if (queue_started) {
266 qemu_flush_queued_packets(ncs);
267 }
fed699f9
JW
268
269 if (!q->tx_waiting) {
270 continue;
271 }
272
38705bb5 273 if (queue_started) {
fed699f9 274 if (q->tx_timer) {
bc72ad67
AB
275 timer_mod(q->tx_timer,
276 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + n->tx_timeout);
fed699f9
JW
277 } else {
278 qemu_bh_schedule(q->tx_bh);
279 }
783e7706 280 } else {
fed699f9 281 if (q->tx_timer) {
bc72ad67 282 timer_del(q->tx_timer);
fed699f9
JW
283 } else {
284 qemu_bh_cancel(q->tx_bh);
285 }
283e2c2a
YB
286 if ((n->status & VIRTIO_NET_S_LINK_UP) == 0 &&
287 (queue_status & VIRTIO_CONFIG_S_DRIVER_OK)) {
288 /* if tx is waiting we are likely have some packets in tx queue
289 * and disabled notification */
290 q->tx_waiting = 0;
291 virtio_queue_set_notification(q->tx_vq, 1);
292 virtio_net_drop_tx_queue_data(vdev, q->tx_vq);
293 }
783e7706
MT
294 }
295 }
296}
297
4e68f7a0 298static void virtio_net_set_link_status(NetClientState *nc)
554c97dd 299{
cc1f0f45 300 VirtIONet *n = qemu_get_nic_opaque(nc);
17a0ca55 301 VirtIODevice *vdev = VIRTIO_DEVICE(n);
554c97dd
AL
302 uint16_t old_status = n->status;
303
eb6b6c12 304 if (nc->link_down)
554c97dd
AL
305 n->status &= ~VIRTIO_NET_S_LINK_UP;
306 else
307 n->status |= VIRTIO_NET_S_LINK_UP;
308
309 if (n->status != old_status)
17a0ca55 310 virtio_notify_config(vdev);
afbaa7b4 311
17a0ca55 312 virtio_net_set_status(vdev, vdev->status);
554c97dd
AL
313}
314
b1be4280
AK
315static void rxfilter_notify(NetClientState *nc)
316{
b1be4280
AK
317 VirtIONet *n = qemu_get_nic_opaque(nc);
318
319 if (nc->rxfilter_notify_enabled) {
96e35046 320 gchar *path = object_get_canonical_path(OBJECT(n->qdev));
06150279
WX
321 qapi_event_send_nic_rx_filter_changed(!!n->netclient_name,
322 n->netclient_name, path, &error_abort);
96e35046 323 g_free(path);
b1be4280
AK
324
325 /* disable event notification to avoid events flooding */
326 nc->rxfilter_notify_enabled = 0;
327 }
328}
329
f7bc8ef8
AK
330static intList *get_vlan_table(VirtIONet *n)
331{
332 intList *list, *entry;
333 int i, j;
334
335 list = NULL;
336 for (i = 0; i < MAX_VLAN >> 5; i++) {
337 for (j = 0; n->vlans[i] && j <= 0x1f; j++) {
338 if (n->vlans[i] & (1U << j)) {
339 entry = g_malloc0(sizeof(*entry));
340 entry->value = (i << 5) + j;
341 entry->next = list;
342 list = entry;
343 }
344 }
345 }
346
347 return list;
348}
349
b1be4280
AK
350static RxFilterInfo *virtio_net_query_rxfilter(NetClientState *nc)
351{
352 VirtIONet *n = qemu_get_nic_opaque(nc);
f7bc8ef8 353 VirtIODevice *vdev = VIRTIO_DEVICE(n);
b1be4280
AK
354 RxFilterInfo *info;
355 strList *str_list, *entry;
f7bc8ef8 356 int i;
b1be4280
AK
357
358 info = g_malloc0(sizeof(*info));
359 info->name = g_strdup(nc->name);
360 info->promiscuous = n->promisc;
361
362 if (n->nouni) {
363 info->unicast = RX_STATE_NONE;
364 } else if (n->alluni) {
365 info->unicast = RX_STATE_ALL;
366 } else {
367 info->unicast = RX_STATE_NORMAL;
368 }
369
370 if (n->nomulti) {
371 info->multicast = RX_STATE_NONE;
372 } else if (n->allmulti) {
373 info->multicast = RX_STATE_ALL;
374 } else {
375 info->multicast = RX_STATE_NORMAL;
376 }
377
378 info->broadcast_allowed = n->nobcast;
379 info->multicast_overflow = n->mac_table.multi_overflow;
380 info->unicast_overflow = n->mac_table.uni_overflow;
381
b0575ba4 382 info->main_mac = qemu_mac_strdup_printf(n->mac);
b1be4280
AK
383
384 str_list = NULL;
385 for (i = 0; i < n->mac_table.first_multi; i++) {
386 entry = g_malloc0(sizeof(*entry));
b0575ba4 387 entry->value = qemu_mac_strdup_printf(n->mac_table.macs + i * ETH_ALEN);
b1be4280
AK
388 entry->next = str_list;
389 str_list = entry;
390 }
391 info->unicast_table = str_list;
392
393 str_list = NULL;
394 for (i = n->mac_table.first_multi; i < n->mac_table.in_use; i++) {
395 entry = g_malloc0(sizeof(*entry));
b0575ba4 396 entry->value = qemu_mac_strdup_printf(n->mac_table.macs + i * ETH_ALEN);
b1be4280
AK
397 entry->next = str_list;
398 str_list = entry;
399 }
400 info->multicast_table = str_list;
f7bc8ef8 401 info->vlan_table = get_vlan_table(n);
b1be4280 402
95129d6f 403 if (!virtio_vdev_has_feature(vdev, VIRTIO_NET_F_CTRL_VLAN)) {
f7bc8ef8
AK
404 info->vlan = RX_STATE_ALL;
405 } else if (!info->vlan_table) {
406 info->vlan = RX_STATE_NONE;
407 } else {
408 info->vlan = RX_STATE_NORMAL;
b1be4280 409 }
b1be4280
AK
410
411 /* enable event notification after query */
412 nc->rxfilter_notify_enabled = 1;
413
414 return info;
415}
416
002437cd
AL
417static void virtio_net_reset(VirtIODevice *vdev)
418{
17a0ca55 419 VirtIONet *n = VIRTIO_NET(vdev);
002437cd
AL
420
421 /* Reset back to compatibility mode */
422 n->promisc = 1;
423 n->allmulti = 0;
015cb166
AW
424 n->alluni = 0;
425 n->nomulti = 0;
426 n->nouni = 0;
427 n->nobcast = 0;
fed699f9
JW
428 /* multiqueue is disabled by default */
429 n->curr_queues = 1;
f57fcf70
JW
430 timer_del(n->announce_timer);
431 n->announce_counter = 0;
432 n->status &= ~VIRTIO_NET_S_ANNOUNCE;
b6503ed9 433
f21c0ed9 434 /* Flush any MAC and VLAN filter table state */
b6503ed9 435 n->mac_table.in_use = 0;
2d9aba39 436 n->mac_table.first_multi = 0;
8fd2a2f1
AW
437 n->mac_table.multi_overflow = 0;
438 n->mac_table.uni_overflow = 0;
b6503ed9 439 memset(n->mac_table.macs, 0, MAC_TABLE_ENTRIES * ETH_ALEN);
41dc8a67 440 memcpy(&n->mac[0], &n->nic->conf->macaddr, sizeof(n->mac));
702d66a8 441 qemu_format_nic_info_str(qemu_get_queue(n->nic), n->mac);
f21c0ed9 442 memset(n->vlans, 0, MAX_VLAN >> 3);
002437cd
AL
443}
444
6e371ab8 445static void peer_test_vnet_hdr(VirtIONet *n)
3a330134 446{
b356f76d
JW
447 NetClientState *nc = qemu_get_queue(n->nic);
448 if (!nc->peer) {
6e371ab8 449 return;
b356f76d 450 }
3a330134 451
d6085e3a 452 n->has_vnet_hdr = qemu_has_vnet_hdr(nc->peer);
6e371ab8 453}
3a330134 454
6e371ab8
MT
455static int peer_has_vnet_hdr(VirtIONet *n)
456{
3a330134
MM
457 return n->has_vnet_hdr;
458}
459
0ce0e8f4
MM
460static int peer_has_ufo(VirtIONet *n)
461{
462 if (!peer_has_vnet_hdr(n))
463 return 0;
464
d6085e3a 465 n->has_ufo = qemu_has_ufo(qemu_get_queue(n->nic)->peer);
0ce0e8f4
MM
466
467 return n->has_ufo;
468}
469
bb9d17f8
CH
470static void virtio_net_set_mrg_rx_bufs(VirtIONet *n, int mergeable_rx_bufs,
471 int version_1)
ff3a8066 472{
fed699f9
JW
473 int i;
474 NetClientState *nc;
475
ff3a8066
MT
476 n->mergeable_rx_bufs = mergeable_rx_bufs;
477
bb9d17f8
CH
478 if (version_1) {
479 n->guest_hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
480 } else {
481 n->guest_hdr_len = n->mergeable_rx_bufs ?
482 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
483 sizeof(struct virtio_net_hdr);
484 }
ff3a8066 485
fed699f9
JW
486 for (i = 0; i < n->max_queues; i++) {
487 nc = qemu_get_subqueue(n->nic, i);
488
489 if (peer_has_vnet_hdr(n) &&
d6085e3a
SH
490 qemu_has_vnet_hdr_len(nc->peer, n->guest_hdr_len)) {
491 qemu_set_vnet_hdr_len(nc->peer, n->guest_hdr_len);
fed699f9
JW
492 n->host_hdr_len = n->guest_hdr_len;
493 }
ff3a8066
MT
494 }
495}
496
fed699f9
JW
497static int peer_attach(VirtIONet *n, int index)
498{
499 NetClientState *nc = qemu_get_subqueue(n->nic, index);
500
501 if (!nc->peer) {
502 return 0;
503 }
504
f394b2e2 505 if (nc->peer->info->type == NET_CLIENT_DRIVER_VHOST_USER) {
7263a0ad
CO
506 vhost_set_vring_enable(nc->peer, 1);
507 }
508
f394b2e2 509 if (nc->peer->info->type != NET_CLIENT_DRIVER_TAP) {
fed699f9
JW
510 return 0;
511 }
512
1074b879
JW
513 if (n->max_queues == 1) {
514 return 0;
515 }
516
fed699f9
JW
517 return tap_enable(nc->peer);
518}
519
520static int peer_detach(VirtIONet *n, int index)
521{
522 NetClientState *nc = qemu_get_subqueue(n->nic, index);
523
524 if (!nc->peer) {
525 return 0;
526 }
527
f394b2e2 528 if (nc->peer->info->type == NET_CLIENT_DRIVER_VHOST_USER) {
7263a0ad
CO
529 vhost_set_vring_enable(nc->peer, 0);
530 }
531
f394b2e2 532 if (nc->peer->info->type != NET_CLIENT_DRIVER_TAP) {
fed699f9
JW
533 return 0;
534 }
535
536 return tap_disable(nc->peer);
537}
538
539static void virtio_net_set_queues(VirtIONet *n)
540{
541 int i;
ddfa83ea 542 int r;
fed699f9 543
68b5f314
YB
544 if (n->nic->peer_deleted) {
545 return;
546 }
547
fed699f9
JW
548 for (i = 0; i < n->max_queues; i++) {
549 if (i < n->curr_queues) {
ddfa83ea
JS
550 r = peer_attach(n, i);
551 assert(!r);
fed699f9 552 } else {
ddfa83ea
JS
553 r = peer_detach(n, i);
554 assert(!r);
fed699f9
JW
555 }
556 }
557}
558
ec57db16 559static void virtio_net_set_multiqueue(VirtIONet *n, int multiqueue);
fed699f9 560
9d5b731d
JW
561static uint64_t virtio_net_get_features(VirtIODevice *vdev, uint64_t features,
562 Error **errp)
fbe78f4f 563{
17a0ca55 564 VirtIONet *n = VIRTIO_NET(vdev);
b356f76d 565 NetClientState *nc = qemu_get_queue(n->nic);
fbe78f4f 566
da3e8a23
SZ
567 /* Firstly sync all virtio-net possible supported features */
568 features |= n->host_features;
569
0cd09c3a 570 virtio_add_feature(&features, VIRTIO_NET_F_MAC);
c9f79a3f 571
6e371ab8 572 if (!peer_has_vnet_hdr(n)) {
0cd09c3a
CH
573 virtio_clear_feature(&features, VIRTIO_NET_F_CSUM);
574 virtio_clear_feature(&features, VIRTIO_NET_F_HOST_TSO4);
575 virtio_clear_feature(&features, VIRTIO_NET_F_HOST_TSO6);
576 virtio_clear_feature(&features, VIRTIO_NET_F_HOST_ECN);
8172539d 577
0cd09c3a
CH
578 virtio_clear_feature(&features, VIRTIO_NET_F_GUEST_CSUM);
579 virtio_clear_feature(&features, VIRTIO_NET_F_GUEST_TSO4);
580 virtio_clear_feature(&features, VIRTIO_NET_F_GUEST_TSO6);
581 virtio_clear_feature(&features, VIRTIO_NET_F_GUEST_ECN);
8172539d 582 }
3a330134 583
8172539d 584 if (!peer_has_vnet_hdr(n) || !peer_has_ufo(n)) {
0cd09c3a
CH
585 virtio_clear_feature(&features, VIRTIO_NET_F_GUEST_UFO);
586 virtio_clear_feature(&features, VIRTIO_NET_F_HOST_UFO);
3a330134
MM
587 }
588
ed8b4afe 589 if (!get_vhost_net(nc->peer)) {
9bc6304c
MT
590 return features;
591 }
ed8b4afe 592 return vhost_net_get_features(get_vhost_net(nc->peer), features);
fbe78f4f
AL
593}
594
019a3edb 595static uint64_t virtio_net_bad_features(VirtIODevice *vdev)
8eca6b1b 596{
019a3edb 597 uint64_t features = 0;
8eca6b1b
AL
598
599 /* Linux kernel 2.6.25. It understood MAC (as everyone must),
600 * but also these: */
0cd09c3a
CH
601 virtio_add_feature(&features, VIRTIO_NET_F_MAC);
602 virtio_add_feature(&features, VIRTIO_NET_F_CSUM);
603 virtio_add_feature(&features, VIRTIO_NET_F_HOST_TSO4);
604 virtio_add_feature(&features, VIRTIO_NET_F_HOST_TSO6);
605 virtio_add_feature(&features, VIRTIO_NET_F_HOST_ECN);
8eca6b1b 606
8172539d 607 return features;
8eca6b1b
AL
608}
609
644c9858
DF
610static void virtio_net_apply_guest_offloads(VirtIONet *n)
611{
ad37bb3b 612 qemu_set_offload(qemu_get_queue(n->nic)->peer,
644c9858
DF
613 !!(n->curr_guest_offloads & (1ULL << VIRTIO_NET_F_GUEST_CSUM)),
614 !!(n->curr_guest_offloads & (1ULL << VIRTIO_NET_F_GUEST_TSO4)),
615 !!(n->curr_guest_offloads & (1ULL << VIRTIO_NET_F_GUEST_TSO6)),
616 !!(n->curr_guest_offloads & (1ULL << VIRTIO_NET_F_GUEST_ECN)),
617 !!(n->curr_guest_offloads & (1ULL << VIRTIO_NET_F_GUEST_UFO)));
618}
619
620static uint64_t virtio_net_guest_offloads_by_features(uint32_t features)
621{
622 static const uint64_t guest_offloads_mask =
623 (1ULL << VIRTIO_NET_F_GUEST_CSUM) |
624 (1ULL << VIRTIO_NET_F_GUEST_TSO4) |
625 (1ULL << VIRTIO_NET_F_GUEST_TSO6) |
626 (1ULL << VIRTIO_NET_F_GUEST_ECN) |
627 (1ULL << VIRTIO_NET_F_GUEST_UFO);
628
629 return guest_offloads_mask & features;
630}
631
632static inline uint64_t virtio_net_supported_guest_offloads(VirtIONet *n)
633{
634 VirtIODevice *vdev = VIRTIO_DEVICE(n);
635 return virtio_net_guest_offloads_by_features(vdev->guest_features);
636}
637
d5aaa1b0 638static void virtio_net_set_features(VirtIODevice *vdev, uint64_t features)
fbe78f4f 639{
17a0ca55 640 VirtIONet *n = VIRTIO_NET(vdev);
fed699f9
JW
641 int i;
642
ef546f12 643 virtio_net_set_multiqueue(n,
95129d6f 644 virtio_has_feature(features, VIRTIO_NET_F_MQ));
fbe78f4f 645
ef546f12 646 virtio_net_set_mrg_rx_bufs(n,
95129d6f
CH
647 virtio_has_feature(features,
648 VIRTIO_NET_F_MRG_RXBUF),
649 virtio_has_feature(features,
650 VIRTIO_F_VERSION_1));
f5436dd9
MM
651
652 if (n->has_vnet_hdr) {
644c9858
DF
653 n->curr_guest_offloads =
654 virtio_net_guest_offloads_by_features(features);
655 virtio_net_apply_guest_offloads(n);
f5436dd9 656 }
fed699f9
JW
657
658 for (i = 0; i < n->max_queues; i++) {
659 NetClientState *nc = qemu_get_subqueue(n->nic, i);
660
ed8b4afe 661 if (!get_vhost_net(nc->peer)) {
fed699f9
JW
662 continue;
663 }
ed8b4afe 664 vhost_net_ack_features(get_vhost_net(nc->peer), features);
dc14a397 665 }
0b1eaa88 666
95129d6f 667 if (virtio_has_feature(features, VIRTIO_NET_F_CTRL_VLAN)) {
0b1eaa88
SF
668 memset(n->vlans, 0, MAX_VLAN >> 3);
669 } else {
670 memset(n->vlans, 0xff, MAX_VLAN >> 3);
671 }
fbe78f4f
AL
672}
673
002437cd 674static int virtio_net_handle_rx_mode(VirtIONet *n, uint8_t cmd,
921ac5d0 675 struct iovec *iov, unsigned int iov_cnt)
002437cd
AL
676{
677 uint8_t on;
921ac5d0 678 size_t s;
b1be4280 679 NetClientState *nc = qemu_get_queue(n->nic);
002437cd 680
921ac5d0
MT
681 s = iov_to_buf(iov, iov_cnt, 0, &on, sizeof(on));
682 if (s != sizeof(on)) {
683 return VIRTIO_NET_ERR;
002437cd
AL
684 }
685
dd23454b 686 if (cmd == VIRTIO_NET_CTRL_RX_PROMISC) {
002437cd 687 n->promisc = on;
dd23454b 688 } else if (cmd == VIRTIO_NET_CTRL_RX_ALLMULTI) {
002437cd 689 n->allmulti = on;
dd23454b 690 } else if (cmd == VIRTIO_NET_CTRL_RX_ALLUNI) {
015cb166 691 n->alluni = on;
dd23454b 692 } else if (cmd == VIRTIO_NET_CTRL_RX_NOMULTI) {
015cb166 693 n->nomulti = on;
dd23454b 694 } else if (cmd == VIRTIO_NET_CTRL_RX_NOUNI) {
015cb166 695 n->nouni = on;
dd23454b 696 } else if (cmd == VIRTIO_NET_CTRL_RX_NOBCAST) {
015cb166 697 n->nobcast = on;
921ac5d0 698 } else {
002437cd 699 return VIRTIO_NET_ERR;
921ac5d0 700 }
002437cd 701
b1be4280
AK
702 rxfilter_notify(nc);
703
002437cd
AL
704 return VIRTIO_NET_OK;
705}
706
644c9858
DF
707static int virtio_net_handle_offloads(VirtIONet *n, uint8_t cmd,
708 struct iovec *iov, unsigned int iov_cnt)
709{
710 VirtIODevice *vdev = VIRTIO_DEVICE(n);
711 uint64_t offloads;
712 size_t s;
713
95129d6f 714 if (!virtio_vdev_has_feature(vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)) {
644c9858
DF
715 return VIRTIO_NET_ERR;
716 }
717
718 s = iov_to_buf(iov, iov_cnt, 0, &offloads, sizeof(offloads));
719 if (s != sizeof(offloads)) {
720 return VIRTIO_NET_ERR;
721 }
722
723 if (cmd == VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET) {
724 uint64_t supported_offloads;
725
726 if (!n->has_vnet_hdr) {
727 return VIRTIO_NET_ERR;
728 }
729
730 supported_offloads = virtio_net_supported_guest_offloads(n);
731 if (offloads & ~supported_offloads) {
732 return VIRTIO_NET_ERR;
733 }
734
735 n->curr_guest_offloads = offloads;
736 virtio_net_apply_guest_offloads(n);
737
738 return VIRTIO_NET_OK;
739 } else {
740 return VIRTIO_NET_ERR;
741 }
742}
743
b6503ed9 744static int virtio_net_handle_mac(VirtIONet *n, uint8_t cmd,
921ac5d0 745 struct iovec *iov, unsigned int iov_cnt)
b6503ed9 746{
1399c60d 747 VirtIODevice *vdev = VIRTIO_DEVICE(n);
b6503ed9 748 struct virtio_net_ctrl_mac mac_data;
921ac5d0 749 size_t s;
b1be4280 750 NetClientState *nc = qemu_get_queue(n->nic);
b6503ed9 751
c1943a3f
AK
752 if (cmd == VIRTIO_NET_CTRL_MAC_ADDR_SET) {
753 if (iov_size(iov, iov_cnt) != sizeof(n->mac)) {
754 return VIRTIO_NET_ERR;
755 }
756 s = iov_to_buf(iov, iov_cnt, 0, &n->mac, sizeof(n->mac));
757 assert(s == sizeof(n->mac));
b356f76d 758 qemu_format_nic_info_str(qemu_get_queue(n->nic), n->mac);
b1be4280
AK
759 rxfilter_notify(nc);
760
c1943a3f
AK
761 return VIRTIO_NET_OK;
762 }
763
921ac5d0 764 if (cmd != VIRTIO_NET_CTRL_MAC_TABLE_SET) {
b6503ed9 765 return VIRTIO_NET_ERR;
921ac5d0 766 }
b6503ed9 767
cae2e556
AK
768 int in_use = 0;
769 int first_multi = 0;
770 uint8_t uni_overflow = 0;
771 uint8_t multi_overflow = 0;
772 uint8_t *macs = g_malloc0(MAC_TABLE_ENTRIES * ETH_ALEN);
b6503ed9 773
921ac5d0
MT
774 s = iov_to_buf(iov, iov_cnt, 0, &mac_data.entries,
775 sizeof(mac_data.entries));
1399c60d 776 mac_data.entries = virtio_ldl_p(vdev, &mac_data.entries);
921ac5d0 777 if (s != sizeof(mac_data.entries)) {
b1be4280 778 goto error;
921ac5d0
MT
779 }
780 iov_discard_front(&iov, &iov_cnt, s);
b6503ed9 781
921ac5d0 782 if (mac_data.entries * ETH_ALEN > iov_size(iov, iov_cnt)) {
b1be4280 783 goto error;
921ac5d0 784 }
b6503ed9
AL
785
786 if (mac_data.entries <= MAC_TABLE_ENTRIES) {
cae2e556 787 s = iov_to_buf(iov, iov_cnt, 0, macs,
921ac5d0
MT
788 mac_data.entries * ETH_ALEN);
789 if (s != mac_data.entries * ETH_ALEN) {
b1be4280 790 goto error;
921ac5d0 791 }
cae2e556 792 in_use += mac_data.entries;
b6503ed9 793 } else {
cae2e556 794 uni_overflow = 1;
b6503ed9
AL
795 }
796
921ac5d0
MT
797 iov_discard_front(&iov, &iov_cnt, mac_data.entries * ETH_ALEN);
798
cae2e556 799 first_multi = in_use;
2d9aba39 800
921ac5d0
MT
801 s = iov_to_buf(iov, iov_cnt, 0, &mac_data.entries,
802 sizeof(mac_data.entries));
1399c60d 803 mac_data.entries = virtio_ldl_p(vdev, &mac_data.entries);
921ac5d0 804 if (s != sizeof(mac_data.entries)) {
b1be4280 805 goto error;
921ac5d0
MT
806 }
807
808 iov_discard_front(&iov, &iov_cnt, s);
b6503ed9 809
921ac5d0 810 if (mac_data.entries * ETH_ALEN != iov_size(iov, iov_cnt)) {
b1be4280 811 goto error;
921ac5d0 812 }
b6503ed9 813
edc24385 814 if (mac_data.entries <= MAC_TABLE_ENTRIES - in_use) {
cae2e556 815 s = iov_to_buf(iov, iov_cnt, 0, &macs[in_use * ETH_ALEN],
921ac5d0
MT
816 mac_data.entries * ETH_ALEN);
817 if (s != mac_data.entries * ETH_ALEN) {
b1be4280 818 goto error;
8fd2a2f1 819 }
cae2e556 820 in_use += mac_data.entries;
921ac5d0 821 } else {
cae2e556 822 multi_overflow = 1;
b6503ed9
AL
823 }
824
cae2e556
AK
825 n->mac_table.in_use = in_use;
826 n->mac_table.first_multi = first_multi;
827 n->mac_table.uni_overflow = uni_overflow;
828 n->mac_table.multi_overflow = multi_overflow;
829 memcpy(n->mac_table.macs, macs, MAC_TABLE_ENTRIES * ETH_ALEN);
830 g_free(macs);
b1be4280
AK
831 rxfilter_notify(nc);
832
b6503ed9 833 return VIRTIO_NET_OK;
b1be4280
AK
834
835error:
cae2e556 836 g_free(macs);
b1be4280 837 return VIRTIO_NET_ERR;
b6503ed9
AL
838}
839
f21c0ed9 840static int virtio_net_handle_vlan_table(VirtIONet *n, uint8_t cmd,
921ac5d0 841 struct iovec *iov, unsigned int iov_cnt)
f21c0ed9 842{
1399c60d 843 VirtIODevice *vdev = VIRTIO_DEVICE(n);
f21c0ed9 844 uint16_t vid;
921ac5d0 845 size_t s;
b1be4280 846 NetClientState *nc = qemu_get_queue(n->nic);
f21c0ed9 847
921ac5d0 848 s = iov_to_buf(iov, iov_cnt, 0, &vid, sizeof(vid));
1399c60d 849 vid = virtio_lduw_p(vdev, &vid);
921ac5d0 850 if (s != sizeof(vid)) {
f21c0ed9
AL
851 return VIRTIO_NET_ERR;
852 }
853
f21c0ed9
AL
854 if (vid >= MAX_VLAN)
855 return VIRTIO_NET_ERR;
856
857 if (cmd == VIRTIO_NET_CTRL_VLAN_ADD)
858 n->vlans[vid >> 5] |= (1U << (vid & 0x1f));
859 else if (cmd == VIRTIO_NET_CTRL_VLAN_DEL)
860 n->vlans[vid >> 5] &= ~(1U << (vid & 0x1f));
861 else
862 return VIRTIO_NET_ERR;
863
b1be4280
AK
864 rxfilter_notify(nc);
865
f21c0ed9
AL
866 return VIRTIO_NET_OK;
867}
868
f57fcf70
JW
869static int virtio_net_handle_announce(VirtIONet *n, uint8_t cmd,
870 struct iovec *iov, unsigned int iov_cnt)
871{
872 if (cmd == VIRTIO_NET_CTRL_ANNOUNCE_ACK &&
873 n->status & VIRTIO_NET_S_ANNOUNCE) {
874 n->status &= ~VIRTIO_NET_S_ANNOUNCE;
875 if (n->announce_counter) {
876 timer_mod(n->announce_timer,
877 qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) +
878 self_announce_delay(n->announce_counter));
879 }
880 return VIRTIO_NET_OK;
881 } else {
882 return VIRTIO_NET_ERR;
883 }
884}
885
fed699f9 886static int virtio_net_handle_mq(VirtIONet *n, uint8_t cmd,
f8f7c533 887 struct iovec *iov, unsigned int iov_cnt)
fed699f9 888{
17a0ca55 889 VirtIODevice *vdev = VIRTIO_DEVICE(n);
f8f7c533
JW
890 struct virtio_net_ctrl_mq mq;
891 size_t s;
892 uint16_t queues;
fed699f9 893
f8f7c533
JW
894 s = iov_to_buf(iov, iov_cnt, 0, &mq, sizeof(mq));
895 if (s != sizeof(mq)) {
fed699f9
JW
896 return VIRTIO_NET_ERR;
897 }
898
899 if (cmd != VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET) {
900 return VIRTIO_NET_ERR;
901 }
902
1399c60d 903 queues = virtio_lduw_p(vdev, &mq.virtqueue_pairs);
fed699f9 904
f8f7c533
JW
905 if (queues < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
906 queues > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
907 queues > n->max_queues ||
fed699f9
JW
908 !n->multiqueue) {
909 return VIRTIO_NET_ERR;
910 }
911
f8f7c533 912 n->curr_queues = queues;
fed699f9
JW
913 /* stop the backend before changing the number of queues to avoid handling a
914 * disabled queue */
17a0ca55 915 virtio_net_set_status(vdev, vdev->status);
fed699f9
JW
916 virtio_net_set_queues(n);
917
918 return VIRTIO_NET_OK;
919}
ba7eadb5 920
3d11d36c
AL
921static void virtio_net_handle_ctrl(VirtIODevice *vdev, VirtQueue *vq)
922{
17a0ca55 923 VirtIONet *n = VIRTIO_NET(vdev);
3d11d36c
AL
924 struct virtio_net_ctrl_hdr ctrl;
925 virtio_net_ctrl_ack status = VIRTIO_NET_ERR;
51b19ebe 926 VirtQueueElement *elem;
921ac5d0 927 size_t s;
771b6ed3 928 struct iovec *iov, *iov2;
921ac5d0 929 unsigned int iov_cnt;
3d11d36c 930
51b19ebe
PB
931 for (;;) {
932 elem = virtqueue_pop(vq, sizeof(VirtQueueElement));
933 if (!elem) {
934 break;
935 }
936 if (iov_size(elem->in_sg, elem->in_num) < sizeof(status) ||
937 iov_size(elem->out_sg, elem->out_num) < sizeof(ctrl)) {
ba7eadb5
GK
938 virtio_error(vdev, "virtio-net ctrl missing headers");
939 virtqueue_detach_element(vq, elem, 0);
940 g_free(elem);
941 break;
3d11d36c
AL
942 }
943
51b19ebe
PB
944 iov_cnt = elem->out_num;
945 iov2 = iov = g_memdup(elem->out_sg, sizeof(struct iovec) * elem->out_num);
921ac5d0
MT
946 s = iov_to_buf(iov, iov_cnt, 0, &ctrl, sizeof(ctrl));
947 iov_discard_front(&iov, &iov_cnt, sizeof(ctrl));
948 if (s != sizeof(ctrl)) {
949 status = VIRTIO_NET_ERR;
dd23454b 950 } else if (ctrl.class == VIRTIO_NET_CTRL_RX) {
921ac5d0
MT
951 status = virtio_net_handle_rx_mode(n, ctrl.cmd, iov, iov_cnt);
952 } else if (ctrl.class == VIRTIO_NET_CTRL_MAC) {
953 status = virtio_net_handle_mac(n, ctrl.cmd, iov, iov_cnt);
954 } else if (ctrl.class == VIRTIO_NET_CTRL_VLAN) {
955 status = virtio_net_handle_vlan_table(n, ctrl.cmd, iov, iov_cnt);
f57fcf70
JW
956 } else if (ctrl.class == VIRTIO_NET_CTRL_ANNOUNCE) {
957 status = virtio_net_handle_announce(n, ctrl.cmd, iov, iov_cnt);
fed699f9 958 } else if (ctrl.class == VIRTIO_NET_CTRL_MQ) {
f8f7c533 959 status = virtio_net_handle_mq(n, ctrl.cmd, iov, iov_cnt);
644c9858
DF
960 } else if (ctrl.class == VIRTIO_NET_CTRL_GUEST_OFFLOADS) {
961 status = virtio_net_handle_offloads(n, ctrl.cmd, iov, iov_cnt);
3d11d36c
AL
962 }
963
51b19ebe 964 s = iov_from_buf(elem->in_sg, elem->in_num, 0, &status, sizeof(status));
921ac5d0 965 assert(s == sizeof(status));
3d11d36c 966
51b19ebe 967 virtqueue_push(vq, elem, sizeof(status));
3d11d36c 968 virtio_notify(vdev, vq);
771b6ed3 969 g_free(iov2);
51b19ebe 970 g_free(elem);
3d11d36c
AL
971 }
972}
973
fbe78f4f
AL
974/* RX */
975
976static void virtio_net_handle_rx(VirtIODevice *vdev, VirtQueue *vq)
977{
17a0ca55 978 VirtIONet *n = VIRTIO_NET(vdev);
fed699f9 979 int queue_index = vq2q(virtio_get_queue_index(vq));
8aeff62d 980
fed699f9 981 qemu_flush_queued_packets(qemu_get_subqueue(n->nic, queue_index));
fbe78f4f
AL
982}
983
4e68f7a0 984static int virtio_net_can_receive(NetClientState *nc)
fbe78f4f 985{
cc1f0f45 986 VirtIONet *n = qemu_get_nic_opaque(nc);
17a0ca55 987 VirtIODevice *vdev = VIRTIO_DEVICE(n);
fed699f9 988 VirtIONetQueue *q = virtio_net_get_subqueue(nc);
0c87e93e 989
17a0ca55 990 if (!vdev->vm_running) {
95477323
MT
991 return 0;
992 }
cdd5cc12 993
fed699f9
JW
994 if (nc->queue_index >= n->curr_queues) {
995 return 0;
996 }
997
0c87e93e 998 if (!virtio_queue_ready(q->rx_vq) ||
17a0ca55 999 !(vdev->status & VIRTIO_CONFIG_S_DRIVER_OK)) {
fbe78f4f 1000 return 0;
0c87e93e 1001 }
fbe78f4f 1002
cdd5cc12
MM
1003 return 1;
1004}
1005
0c87e93e 1006static int virtio_net_has_buffers(VirtIONetQueue *q, int bufsize)
cdd5cc12 1007{
0c87e93e
JW
1008 VirtIONet *n = q->n;
1009 if (virtio_queue_empty(q->rx_vq) ||
fbe78f4f 1010 (n->mergeable_rx_bufs &&
0c87e93e
JW
1011 !virtqueue_avail_bytes(q->rx_vq, bufsize, 0))) {
1012 virtio_queue_set_notification(q->rx_vq, 1);
06b12970
TL
1013
1014 /* To avoid a race condition where the guest has made some buffers
1015 * available after the above check but before notification was
1016 * enabled, check for available buffers again.
1017 */
0c87e93e 1018 if (virtio_queue_empty(q->rx_vq) ||
06b12970 1019 (n->mergeable_rx_bufs &&
0c87e93e 1020 !virtqueue_avail_bytes(q->rx_vq, bufsize, 0))) {
06b12970 1021 return 0;
0c87e93e 1022 }
fbe78f4f
AL
1023 }
1024
0c87e93e 1025 virtio_queue_set_notification(q->rx_vq, 0);
fbe78f4f
AL
1026 return 1;
1027}
1028
1399c60d 1029static void virtio_net_hdr_swap(VirtIODevice *vdev, struct virtio_net_hdr *hdr)
032a74a1 1030{
1399c60d
RR
1031 virtio_tswap16s(vdev, &hdr->hdr_len);
1032 virtio_tswap16s(vdev, &hdr->gso_size);
1033 virtio_tswap16s(vdev, &hdr->csum_start);
1034 virtio_tswap16s(vdev, &hdr->csum_offset);
032a74a1
CLG
1035}
1036
1d41b0c1
AL
1037/* dhclient uses AF_PACKET but doesn't pass auxdata to the kernel so
1038 * it never finds out that the packets don't have valid checksums. This
1039 * causes dhclient to get upset. Fedora's carried a patch for ages to
1040 * fix this with Xen but it hasn't appeared in an upstream release of
1041 * dhclient yet.
1042 *
1043 * To avoid breaking existing guests, we catch udp packets and add
1044 * checksums. This is terrible but it's better than hacking the guest
1045 * kernels.
1046 *
1047 * N.B. if we introduce a zero-copy API, this operation is no longer free so
1048 * we should provide a mechanism to disable it to avoid polluting the host
1049 * cache.
1050 */
1051static void work_around_broken_dhclient(struct virtio_net_hdr *hdr,
22cc84db 1052 uint8_t *buf, size_t size)
1d41b0c1
AL
1053{
1054 if ((hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) && /* missing csum */
1055 (size > 27 && size < 1500) && /* normal sized MTU */
1056 (buf[12] == 0x08 && buf[13] == 0x00) && /* ethertype == IPv4 */
1057 (buf[23] == 17) && /* ip.protocol == UDP */
1058 (buf[34] == 0 && buf[35] == 67)) { /* udp.srcport == bootps */
22cc84db 1059 net_checksum_calculate(buf, size);
1d41b0c1
AL
1060 hdr->flags &= ~VIRTIO_NET_HDR_F_NEEDS_CSUM;
1061 }
1062}
1063
280598b7
MT
1064static void receive_header(VirtIONet *n, const struct iovec *iov, int iov_cnt,
1065 const void *buf, size_t size)
fbe78f4f 1066{
3a330134 1067 if (n->has_vnet_hdr) {
22cc84db
MT
1068 /* FIXME this cast is evil */
1069 void *wbuf = (void *)buf;
280598b7
MT
1070 work_around_broken_dhclient(wbuf, wbuf + n->host_hdr_len,
1071 size - n->host_hdr_len);
1bfa316c
GK
1072
1073 if (n->needs_vnet_hdr_swap) {
1074 virtio_net_hdr_swap(VIRTIO_DEVICE(n), wbuf);
1075 }
280598b7 1076 iov_from_buf(iov, iov_cnt, 0, buf, sizeof(struct virtio_net_hdr));
22cc84db
MT
1077 } else {
1078 struct virtio_net_hdr hdr = {
1079 .flags = 0,
1080 .gso_type = VIRTIO_NET_HDR_GSO_NONE
1081 };
1082 iov_from_buf(iov, iov_cnt, 0, &hdr, sizeof hdr);
3a330134 1083 }
fbe78f4f
AL
1084}
1085
3831ab20
AL
1086static int receive_filter(VirtIONet *n, const uint8_t *buf, int size)
1087{
1088 static const uint8_t bcast[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
f21c0ed9 1089 static const uint8_t vlan[] = {0x81, 0x00};
3831ab20 1090 uint8_t *ptr = (uint8_t *)buf;
b6503ed9 1091 int i;
3831ab20
AL
1092
1093 if (n->promisc)
1094 return 1;
1095
e043ebc6 1096 ptr += n->host_hdr_len;
3a330134 1097
f21c0ed9 1098 if (!memcmp(&ptr[12], vlan, sizeof(vlan))) {
7542d3e7 1099 int vid = lduw_be_p(ptr + 14) & 0xfff;
f21c0ed9
AL
1100 if (!(n->vlans[vid >> 5] & (1U << (vid & 0x1f))))
1101 return 0;
1102 }
1103
bbe2f399
AW
1104 if (ptr[0] & 1) { // multicast
1105 if (!memcmp(ptr, bcast, sizeof(bcast))) {
015cb166
AW
1106 return !n->nobcast;
1107 } else if (n->nomulti) {
1108 return 0;
8fd2a2f1 1109 } else if (n->allmulti || n->mac_table.multi_overflow) {
bbe2f399
AW
1110 return 1;
1111 }
2d9aba39
AW
1112
1113 for (i = n->mac_table.first_multi; i < n->mac_table.in_use; i++) {
1114 if (!memcmp(ptr, &n->mac_table.macs[i * ETH_ALEN], ETH_ALEN)) {
1115 return 1;
1116 }
1117 }
bbe2f399 1118 } else { // unicast
015cb166
AW
1119 if (n->nouni) {
1120 return 0;
1121 } else if (n->alluni || n->mac_table.uni_overflow) {
8fd2a2f1
AW
1122 return 1;
1123 } else if (!memcmp(ptr, n->mac, ETH_ALEN)) {
bbe2f399
AW
1124 return 1;
1125 }
3831ab20 1126
2d9aba39
AW
1127 for (i = 0; i < n->mac_table.first_multi; i++) {
1128 if (!memcmp(ptr, &n->mac_table.macs[i * ETH_ALEN], ETH_ALEN)) {
1129 return 1;
1130 }
1131 }
b6503ed9
AL
1132 }
1133
3831ab20
AL
1134 return 0;
1135}
1136
97cd965c
PB
1137static ssize_t virtio_net_receive_rcu(NetClientState *nc, const uint8_t *buf,
1138 size_t size)
fbe78f4f 1139{
cc1f0f45 1140 VirtIONet *n = qemu_get_nic_opaque(nc);
fed699f9 1141 VirtIONetQueue *q = virtio_net_get_subqueue(nc);
17a0ca55 1142 VirtIODevice *vdev = VIRTIO_DEVICE(n);
63c58728
MT
1143 struct iovec mhdr_sg[VIRTQUEUE_MAX_SIZE];
1144 struct virtio_net_hdr_mrg_rxbuf mhdr;
1145 unsigned mhdr_cnt = 0;
22cc84db 1146 size_t offset, i, guest_offset;
fbe78f4f 1147
fed699f9 1148 if (!virtio_net_can_receive(nc)) {
cdd5cc12 1149 return -1;
b356f76d 1150 }
cdd5cc12 1151
940cda94 1152 /* hdr_len refers to the header we supply to the guest */
0c87e93e 1153 if (!virtio_net_has_buffers(q, size + n->guest_hdr_len - n->host_hdr_len)) {
8aeff62d 1154 return 0;
0c87e93e 1155 }
fbe78f4f 1156
3831ab20 1157 if (!receive_filter(n, buf, size))
4f1c942b 1158 return size;
3831ab20 1159
fbe78f4f
AL
1160 offset = i = 0;
1161
1162 while (offset < size) {
51b19ebe 1163 VirtQueueElement *elem;
fbe78f4f 1164 int len, total;
51b19ebe 1165 const struct iovec *sg;
fbe78f4f 1166
22c253d9 1167 total = 0;
fbe78f4f 1168
51b19ebe
PB
1169 elem = virtqueue_pop(q->rx_vq, sizeof(VirtQueueElement));
1170 if (!elem) {
ba10b9c0
GK
1171 if (i) {
1172 virtio_error(vdev, "virtio-net unexpected empty queue: "
1173 "i %zd mergeable %d offset %zd, size %zd, "
1174 "guest hdr len %zd, host hdr len %zd "
1175 "guest features 0x%" PRIx64,
1176 i, n->mergeable_rx_bufs, offset, size,
1177 n->guest_hdr_len, n->host_hdr_len,
1178 vdev->guest_features);
1179 }
1180 return -1;
fbe78f4f
AL
1181 }
1182
51b19ebe 1183 if (elem->in_num < 1) {
ba10b9c0
GK
1184 virtio_error(vdev,
1185 "virtio-net receive queue contains no in buffers");
1186 virtqueue_detach_element(q->rx_vq, elem, 0);
1187 g_free(elem);
1188 return -1;
fbe78f4f
AL
1189 }
1190
51b19ebe 1191 sg = elem->in_sg;
fbe78f4f 1192 if (i == 0) {
c8d28e7e 1193 assert(offset == 0);
63c58728
MT
1194 if (n->mergeable_rx_bufs) {
1195 mhdr_cnt = iov_copy(mhdr_sg, ARRAY_SIZE(mhdr_sg),
51b19ebe 1196 sg, elem->in_num,
63c58728
MT
1197 offsetof(typeof(mhdr), num_buffers),
1198 sizeof(mhdr.num_buffers));
1199 }
fbe78f4f 1200
51b19ebe 1201 receive_header(n, sg, elem->in_num, buf, size);
c8d28e7e 1202 offset = n->host_hdr_len;
e35e23f6 1203 total += n->guest_hdr_len;
22cc84db
MT
1204 guest_offset = n->guest_hdr_len;
1205 } else {
1206 guest_offset = 0;
fbe78f4f
AL
1207 }
1208
1209 /* copy in packet. ugh */
51b19ebe 1210 len = iov_from_buf(sg, elem->in_num, guest_offset,
dcf6f5e1 1211 buf + offset, size - offset);
fbe78f4f 1212 total += len;
279a4253
MT
1213 offset += len;
1214 /* If buffers can't be merged, at this point we
1215 * must have consumed the complete packet.
1216 * Otherwise, drop it. */
1217 if (!n->mergeable_rx_bufs && offset < size) {
27e57efe 1218 virtqueue_unpop(q->rx_vq, elem, total);
51b19ebe 1219 g_free(elem);
279a4253
MT
1220 return size;
1221 }
fbe78f4f
AL
1222
1223 /* signal other side */
51b19ebe
PB
1224 virtqueue_fill(q->rx_vq, elem, total, i++);
1225 g_free(elem);
fbe78f4f
AL
1226 }
1227
63c58728 1228 if (mhdr_cnt) {
1399c60d 1229 virtio_stw_p(vdev, &mhdr.num_buffers, i);
63c58728
MT
1230 iov_from_buf(mhdr_sg, mhdr_cnt,
1231 0,
1232 &mhdr.num_buffers, sizeof mhdr.num_buffers);
44b15bc5 1233 }
fbe78f4f 1234
0c87e93e 1235 virtqueue_flush(q->rx_vq, i);
17a0ca55 1236 virtio_notify(vdev, q->rx_vq);
4f1c942b
MM
1237
1238 return size;
fbe78f4f
AL
1239}
1240
97cd965c
PB
1241static ssize_t virtio_net_receive(NetClientState *nc, const uint8_t *buf,
1242 size_t size)
1243{
1244 ssize_t r;
1245
1246 rcu_read_lock();
1247 r = virtio_net_receive_rcu(nc, buf, size);
1248 rcu_read_unlock();
1249 return r;
1250}
1251
0c87e93e 1252static int32_t virtio_net_flush_tx(VirtIONetQueue *q);
6243375f 1253
4e68f7a0 1254static void virtio_net_tx_complete(NetClientState *nc, ssize_t len)
6243375f 1255{
cc1f0f45 1256 VirtIONet *n = qemu_get_nic_opaque(nc);
fed699f9 1257 VirtIONetQueue *q = virtio_net_get_subqueue(nc);
17a0ca55 1258 VirtIODevice *vdev = VIRTIO_DEVICE(n);
6243375f 1259
51b19ebe 1260 virtqueue_push(q->tx_vq, q->async_tx.elem, 0);
17a0ca55 1261 virtio_notify(vdev, q->tx_vq);
6243375f 1262
51b19ebe
PB
1263 g_free(q->async_tx.elem);
1264 q->async_tx.elem = NULL;
6243375f 1265
0c87e93e
JW
1266 virtio_queue_set_notification(q->tx_vq, 1);
1267 virtio_net_flush_tx(q);
6243375f
MM
1268}
1269
fbe78f4f 1270/* TX */
0c87e93e 1271static int32_t virtio_net_flush_tx(VirtIONetQueue *q)
fbe78f4f 1272{
0c87e93e 1273 VirtIONet *n = q->n;
17a0ca55 1274 VirtIODevice *vdev = VIRTIO_DEVICE(n);
51b19ebe 1275 VirtQueueElement *elem;
e3f30488 1276 int32_t num_packets = 0;
fed699f9 1277 int queue_index = vq2q(virtio_get_queue_index(q->tx_vq));
17a0ca55 1278 if (!(vdev->status & VIRTIO_CONFIG_S_DRIVER_OK)) {
e3f30488
AW
1279 return num_packets;
1280 }
fbe78f4f 1281
51b19ebe 1282 if (q->async_tx.elem) {
0c87e93e 1283 virtio_queue_set_notification(q->tx_vq, 0);
e3f30488 1284 return num_packets;
6243375f
MM
1285 }
1286
51b19ebe 1287 for (;;) {
bd89dd98 1288 ssize_t ret;
51b19ebe
PB
1289 unsigned int out_num;
1290 struct iovec sg[VIRTQUEUE_MAX_SIZE], sg2[VIRTQUEUE_MAX_SIZE + 1], *out_sg;
feb93f36 1291 struct virtio_net_hdr_mrg_rxbuf mhdr;
fbe78f4f 1292
51b19ebe
PB
1293 elem = virtqueue_pop(q->tx_vq, sizeof(VirtQueueElement));
1294 if (!elem) {
1295 break;
1296 }
1297
1298 out_num = elem->out_num;
1299 out_sg = elem->out_sg;
7b80d08e 1300 if (out_num < 1) {
fa5e56c2
GK
1301 virtio_error(vdev, "virtio-net header not in first element");
1302 virtqueue_detach_element(q->tx_vq, elem, 0);
1303 g_free(elem);
1304 return -EINVAL;
fbe78f4f
AL
1305 }
1306
032a74a1 1307 if (n->has_vnet_hdr) {
feb93f36
JW
1308 if (iov_to_buf(out_sg, out_num, 0, &mhdr, n->guest_hdr_len) <
1309 n->guest_hdr_len) {
fa5e56c2
GK
1310 virtio_error(vdev, "virtio-net header incorrect");
1311 virtqueue_detach_element(q->tx_vq, elem, 0);
1312 g_free(elem);
1313 return -EINVAL;
032a74a1 1314 }
1bfa316c 1315 if (n->needs_vnet_hdr_swap) {
feb93f36
JW
1316 virtio_net_hdr_swap(vdev, (void *) &mhdr);
1317 sg2[0].iov_base = &mhdr;
1318 sg2[0].iov_len = n->guest_hdr_len;
1319 out_num = iov_copy(&sg2[1], ARRAY_SIZE(sg2) - 1,
1320 out_sg, out_num,
1321 n->guest_hdr_len, -1);
1322 if (out_num == VIRTQUEUE_MAX_SIZE) {
1323 goto drop;
1324 }
1325 out_num += 1;
1326 out_sg = sg2;
1327 }
032a74a1 1328 }
14761f9c
MT
1329 /*
1330 * If host wants to see the guest header as is, we can
1331 * pass it on unchanged. Otherwise, copy just the parts
1332 * that host is interested in.
1333 */
1334 assert(n->host_hdr_len <= n->guest_hdr_len);
1335 if (n->host_hdr_len != n->guest_hdr_len) {
1336 unsigned sg_num = iov_copy(sg, ARRAY_SIZE(sg),
1337 out_sg, out_num,
1338 0, n->host_hdr_len);
1339 sg_num += iov_copy(sg + sg_num, ARRAY_SIZE(sg) - sg_num,
1340 out_sg, out_num,
1341 n->guest_hdr_len, -1);
1342 out_num = sg_num;
1343 out_sg = sg;
fbe78f4f
AL
1344 }
1345
fed699f9
JW
1346 ret = qemu_sendv_packet_async(qemu_get_subqueue(n->nic, queue_index),
1347 out_sg, out_num, virtio_net_tx_complete);
6243375f 1348 if (ret == 0) {
0c87e93e
JW
1349 virtio_queue_set_notification(q->tx_vq, 0);
1350 q->async_tx.elem = elem;
e3f30488 1351 return -EBUSY;
6243375f
MM
1352 }
1353
feb93f36 1354drop:
51b19ebe 1355 virtqueue_push(q->tx_vq, elem, 0);
17a0ca55 1356 virtio_notify(vdev, q->tx_vq);
51b19ebe 1357 g_free(elem);
e3f30488
AW
1358
1359 if (++num_packets >= n->tx_burst) {
1360 break;
1361 }
fbe78f4f 1362 }
e3f30488 1363 return num_packets;
fbe78f4f
AL
1364}
1365
a697a334 1366static void virtio_net_handle_tx_timer(VirtIODevice *vdev, VirtQueue *vq)
fbe78f4f 1367{
17a0ca55 1368 VirtIONet *n = VIRTIO_NET(vdev);
fed699f9 1369 VirtIONetQueue *q = &n->vqs[vq2q(virtio_get_queue_index(vq))];
fbe78f4f 1370
283e2c2a
YB
1371 if (unlikely((n->status & VIRTIO_NET_S_LINK_UP) == 0)) {
1372 virtio_net_drop_tx_queue_data(vdev, vq);
1373 return;
1374 }
1375
783e7706 1376 /* This happens when device was stopped but VCPU wasn't. */
17a0ca55 1377 if (!vdev->vm_running) {
0c87e93e 1378 q->tx_waiting = 1;
783e7706
MT
1379 return;
1380 }
1381
0c87e93e 1382 if (q->tx_waiting) {
fbe78f4f 1383 virtio_queue_set_notification(vq, 1);
bc72ad67 1384 timer_del(q->tx_timer);
0c87e93e 1385 q->tx_waiting = 0;
fa5e56c2
GK
1386 if (virtio_net_flush_tx(q) == -EINVAL) {
1387 return;
1388 }
fbe78f4f 1389 } else {
bc72ad67
AB
1390 timer_mod(q->tx_timer,
1391 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + n->tx_timeout);
0c87e93e 1392 q->tx_waiting = 1;
fbe78f4f
AL
1393 virtio_queue_set_notification(vq, 0);
1394 }
1395}
1396
a697a334
AW
1397static void virtio_net_handle_tx_bh(VirtIODevice *vdev, VirtQueue *vq)
1398{
17a0ca55 1399 VirtIONet *n = VIRTIO_NET(vdev);
fed699f9 1400 VirtIONetQueue *q = &n->vqs[vq2q(virtio_get_queue_index(vq))];
a697a334 1401
283e2c2a
YB
1402 if (unlikely((n->status & VIRTIO_NET_S_LINK_UP) == 0)) {
1403 virtio_net_drop_tx_queue_data(vdev, vq);
1404 return;
1405 }
1406
0c87e93e 1407 if (unlikely(q->tx_waiting)) {
a697a334
AW
1408 return;
1409 }
0c87e93e 1410 q->tx_waiting = 1;
783e7706 1411 /* This happens when device was stopped but VCPU wasn't. */
17a0ca55 1412 if (!vdev->vm_running) {
783e7706
MT
1413 return;
1414 }
a697a334 1415 virtio_queue_set_notification(vq, 0);
0c87e93e 1416 qemu_bh_schedule(q->tx_bh);
a697a334
AW
1417}
1418
fbe78f4f
AL
1419static void virtio_net_tx_timer(void *opaque)
1420{
0c87e93e
JW
1421 VirtIONetQueue *q = opaque;
1422 VirtIONet *n = q->n;
17a0ca55 1423 VirtIODevice *vdev = VIRTIO_DEVICE(n);
e8bcf842
MT
1424 /* This happens when device was stopped but BH wasn't. */
1425 if (!vdev->vm_running) {
1426 /* Make sure tx waiting is set, so we'll run when restarted. */
1427 assert(q->tx_waiting);
1428 return;
1429 }
fbe78f4f 1430
0c87e93e 1431 q->tx_waiting = 0;
fbe78f4f
AL
1432
1433 /* Just in case the driver is not ready on more */
17a0ca55 1434 if (!(vdev->status & VIRTIO_CONFIG_S_DRIVER_OK)) {
fbe78f4f 1435 return;
17a0ca55 1436 }
fbe78f4f 1437
0c87e93e
JW
1438 virtio_queue_set_notification(q->tx_vq, 1);
1439 virtio_net_flush_tx(q);
fbe78f4f
AL
1440}
1441
a697a334
AW
1442static void virtio_net_tx_bh(void *opaque)
1443{
0c87e93e
JW
1444 VirtIONetQueue *q = opaque;
1445 VirtIONet *n = q->n;
17a0ca55 1446 VirtIODevice *vdev = VIRTIO_DEVICE(n);
a697a334
AW
1447 int32_t ret;
1448
e8bcf842
MT
1449 /* This happens when device was stopped but BH wasn't. */
1450 if (!vdev->vm_running) {
1451 /* Make sure tx waiting is set, so we'll run when restarted. */
1452 assert(q->tx_waiting);
1453 return;
1454 }
783e7706 1455
0c87e93e 1456 q->tx_waiting = 0;
a697a334
AW
1457
1458 /* Just in case the driver is not ready on more */
17a0ca55 1459 if (unlikely(!(vdev->status & VIRTIO_CONFIG_S_DRIVER_OK))) {
a697a334 1460 return;
17a0ca55 1461 }
a697a334 1462
0c87e93e 1463 ret = virtio_net_flush_tx(q);
fa5e56c2
GK
1464 if (ret == -EBUSY || ret == -EINVAL) {
1465 return; /* Notification re-enable handled by tx_complete or device
1466 * broken */
a697a334
AW
1467 }
1468
1469 /* If we flush a full burst of packets, assume there are
1470 * more coming and immediately reschedule */
1471 if (ret >= n->tx_burst) {
0c87e93e
JW
1472 qemu_bh_schedule(q->tx_bh);
1473 q->tx_waiting = 1;
a697a334
AW
1474 return;
1475 }
1476
1477 /* If less than a full burst, re-enable notification and flush
1478 * anything that may have come in while we weren't looking. If
1479 * we find something, assume the guest is still active and reschedule */
0c87e93e 1480 virtio_queue_set_notification(q->tx_vq, 1);
fa5e56c2
GK
1481 ret = virtio_net_flush_tx(q);
1482 if (ret == -EINVAL) {
1483 return;
1484 } else if (ret > 0) {
0c87e93e
JW
1485 virtio_queue_set_notification(q->tx_vq, 0);
1486 qemu_bh_schedule(q->tx_bh);
1487 q->tx_waiting = 1;
a697a334
AW
1488 }
1489}
1490
f9d6dbf0
WC
1491static void virtio_net_add_queue(VirtIONet *n, int index)
1492{
1493 VirtIODevice *vdev = VIRTIO_DEVICE(n);
1494
1c0fbfa3
MT
1495 n->vqs[index].rx_vq = virtio_add_queue(vdev, n->net_conf.rx_queue_size,
1496 virtio_net_handle_rx);
f9d6dbf0
WC
1497 if (n->net_conf.tx && !strcmp(n->net_conf.tx, "timer")) {
1498 n->vqs[index].tx_vq =
1499 virtio_add_queue(vdev, 256, virtio_net_handle_tx_timer);
1500 n->vqs[index].tx_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL,
1501 virtio_net_tx_timer,
1502 &n->vqs[index]);
1503 } else {
1504 n->vqs[index].tx_vq =
1505 virtio_add_queue(vdev, 256, virtio_net_handle_tx_bh);
1506 n->vqs[index].tx_bh = qemu_bh_new(virtio_net_tx_bh, &n->vqs[index]);
1507 }
1508
1509 n->vqs[index].tx_waiting = 0;
1510 n->vqs[index].n = n;
1511}
1512
1513static void virtio_net_del_queue(VirtIONet *n, int index)
1514{
1515 VirtIODevice *vdev = VIRTIO_DEVICE(n);
1516 VirtIONetQueue *q = &n->vqs[index];
1517 NetClientState *nc = qemu_get_subqueue(n->nic, index);
1518
1519 qemu_purge_queued_packets(nc);
1520
1521 virtio_del_queue(vdev, index * 2);
1522 if (q->tx_timer) {
1523 timer_del(q->tx_timer);
1524 timer_free(q->tx_timer);
f989c30c 1525 q->tx_timer = NULL;
f9d6dbf0
WC
1526 } else {
1527 qemu_bh_delete(q->tx_bh);
f989c30c 1528 q->tx_bh = NULL;
f9d6dbf0 1529 }
f989c30c 1530 q->tx_waiting = 0;
f9d6dbf0
WC
1531 virtio_del_queue(vdev, index * 2 + 1);
1532}
1533
1534static void virtio_net_change_num_queues(VirtIONet *n, int new_max_queues)
1535{
1536 VirtIODevice *vdev = VIRTIO_DEVICE(n);
1537 int old_num_queues = virtio_get_num_queues(vdev);
1538 int new_num_queues = new_max_queues * 2 + 1;
1539 int i;
1540
1541 assert(old_num_queues >= 3);
1542 assert(old_num_queues % 2 == 1);
1543
1544 if (old_num_queues == new_num_queues) {
1545 return;
1546 }
1547
1548 /*
1549 * We always need to remove and add ctrl vq if
1550 * old_num_queues != new_num_queues. Remove ctrl_vq first,
1551 * and then we only enter one of the following too loops.
1552 */
1553 virtio_del_queue(vdev, old_num_queues - 1);
1554
1555 for (i = new_num_queues - 1; i < old_num_queues - 1; i += 2) {
1556 /* new_num_queues < old_num_queues */
1557 virtio_net_del_queue(n, i / 2);
1558 }
1559
1560 for (i = old_num_queues - 1; i < new_num_queues - 1; i += 2) {
1561 /* new_num_queues > old_num_queues */
1562 virtio_net_add_queue(n, i / 2);
1563 }
1564
1565 /* add ctrl_vq last */
1566 n->ctrl_vq = virtio_add_queue(vdev, 64, virtio_net_handle_ctrl);
1567}
1568
ec57db16 1569static void virtio_net_set_multiqueue(VirtIONet *n, int multiqueue)
fed699f9 1570{
f9d6dbf0
WC
1571 int max = multiqueue ? n->max_queues : 1;
1572
fed699f9 1573 n->multiqueue = multiqueue;
f9d6dbf0 1574 virtio_net_change_num_queues(n, max);
fed699f9 1575
fed699f9
JW
1576 virtio_net_set_queues(n);
1577}
1578
982b78c5 1579static int virtio_net_post_load_device(void *opaque, int version_id)
037dab2f 1580{
982b78c5
DDAG
1581 VirtIONet *n = opaque;
1582 VirtIODevice *vdev = VIRTIO_DEVICE(n);
037dab2f 1583 int i, link_down;
fbe78f4f 1584
982b78c5 1585 virtio_net_set_mrg_rx_bufs(n, n->mergeable_rx_bufs,
95129d6f
CH
1586 virtio_vdev_has_feature(vdev,
1587 VIRTIO_F_VERSION_1));
fbe78f4f 1588
76010cb3 1589 /* MAC_TABLE_ENTRIES may be different from the saved image */
982b78c5 1590 if (n->mac_table.in_use > MAC_TABLE_ENTRIES) {
76010cb3 1591 n->mac_table.in_use = 0;
b6503ed9 1592 }
0ce0e8f4 1593
982b78c5 1594 if (!virtio_vdev_has_feature(vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)) {
6c666823
MT
1595 n->curr_guest_offloads = virtio_net_supported_guest_offloads(n);
1596 }
1597
1598 if (peer_has_vnet_hdr(n)) {
1599 virtio_net_apply_guest_offloads(n);
1600 }
1601
5f800801
JW
1602 virtio_net_set_queues(n);
1603
2d9aba39
AW
1604 /* Find the first multicast entry in the saved MAC filter */
1605 for (i = 0; i < n->mac_table.in_use; i++) {
1606 if (n->mac_table.macs[i * ETH_ALEN] & 1) {
1607 break;
1608 }
1609 }
1610 n->mac_table.first_multi = i;
98991481
AK
1611
1612 /* nc.link_down can't be migrated, so infer link_down according
1613 * to link status bit in n->status */
5f800801
JW
1614 link_down = (n->status & VIRTIO_NET_S_LINK_UP) == 0;
1615 for (i = 0; i < n->max_queues; i++) {
1616 qemu_get_subqueue(n->nic, i)->link_down = link_down;
1617 }
98991481 1618
6c666823
MT
1619 if (virtio_vdev_has_feature(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE) &&
1620 virtio_vdev_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ)) {
1621 n->announce_counter = SELF_ANNOUNCE_ROUNDS;
1622 timer_mod(n->announce_timer, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL));
1623 }
1624
fbe78f4f
AL
1625 return 0;
1626}
1627
982b78c5
DDAG
1628/* tx_waiting field of a VirtIONetQueue */
1629static const VMStateDescription vmstate_virtio_net_queue_tx_waiting = {
1630 .name = "virtio-net-queue-tx_waiting",
1631 .fields = (VMStateField[]) {
1632 VMSTATE_UINT32(tx_waiting, VirtIONetQueue),
1633 VMSTATE_END_OF_LIST()
1634 },
1635};
1636
1637static bool max_queues_gt_1(void *opaque, int version_id)
1638{
1639 return VIRTIO_NET(opaque)->max_queues > 1;
1640}
1641
1642static bool has_ctrl_guest_offloads(void *opaque, int version_id)
1643{
1644 return virtio_vdev_has_feature(VIRTIO_DEVICE(opaque),
1645 VIRTIO_NET_F_CTRL_GUEST_OFFLOADS);
1646}
1647
1648static bool mac_table_fits(void *opaque, int version_id)
1649{
1650 return VIRTIO_NET(opaque)->mac_table.in_use <= MAC_TABLE_ENTRIES;
1651}
1652
1653static bool mac_table_doesnt_fit(void *opaque, int version_id)
1654{
1655 return !mac_table_fits(opaque, version_id);
1656}
1657
1658/* This temporary type is shared by all the WITH_TMP methods
1659 * although only some fields are used by each.
1660 */
1661struct VirtIONetMigTmp {
1662 VirtIONet *parent;
1663 VirtIONetQueue *vqs_1;
1664 uint16_t curr_queues_1;
1665 uint8_t has_ufo;
1666 uint32_t has_vnet_hdr;
1667};
1668
1669/* The 2nd and subsequent tx_waiting flags are loaded later than
1670 * the 1st entry in the queues and only if there's more than one
1671 * entry. We use the tmp mechanism to calculate a temporary
1672 * pointer and count and also validate the count.
1673 */
1674
1675static void virtio_net_tx_waiting_pre_save(void *opaque)
1676{
1677 struct VirtIONetMigTmp *tmp = opaque;
1678
1679 tmp->vqs_1 = tmp->parent->vqs + 1;
1680 tmp->curr_queues_1 = tmp->parent->curr_queues - 1;
1681 if (tmp->parent->curr_queues == 0) {
1682 tmp->curr_queues_1 = 0;
1683 }
1684}
1685
1686static int virtio_net_tx_waiting_pre_load(void *opaque)
1687{
1688 struct VirtIONetMigTmp *tmp = opaque;
1689
1690 /* Reuse the pointer setup from save */
1691 virtio_net_tx_waiting_pre_save(opaque);
1692
1693 if (tmp->parent->curr_queues > tmp->parent->max_queues) {
1694 error_report("virtio-net: curr_queues %x > max_queues %x",
1695 tmp->parent->curr_queues, tmp->parent->max_queues);
1696
1697 return -EINVAL;
1698 }
1699
1700 return 0; /* all good */
1701}
1702
1703static const VMStateDescription vmstate_virtio_net_tx_waiting = {
1704 .name = "virtio-net-tx_waiting",
1705 .pre_load = virtio_net_tx_waiting_pre_load,
1706 .pre_save = virtio_net_tx_waiting_pre_save,
1707 .fields = (VMStateField[]) {
1708 VMSTATE_STRUCT_VARRAY_POINTER_UINT16(vqs_1, struct VirtIONetMigTmp,
1709 curr_queues_1,
1710 vmstate_virtio_net_queue_tx_waiting,
1711 struct VirtIONetQueue),
1712 VMSTATE_END_OF_LIST()
1713 },
1714};
1715
1716/* the 'has_ufo' flag is just tested; if the incoming stream has the
1717 * flag set we need to check that we have it
1718 */
1719static int virtio_net_ufo_post_load(void *opaque, int version_id)
1720{
1721 struct VirtIONetMigTmp *tmp = opaque;
1722
1723 if (tmp->has_ufo && !peer_has_ufo(tmp->parent)) {
1724 error_report("virtio-net: saved image requires TUN_F_UFO support");
1725 return -EINVAL;
1726 }
1727
1728 return 0;
1729}
1730
1731static void virtio_net_ufo_pre_save(void *opaque)
1732{
1733 struct VirtIONetMigTmp *tmp = opaque;
1734
1735 tmp->has_ufo = tmp->parent->has_ufo;
1736}
1737
1738static const VMStateDescription vmstate_virtio_net_has_ufo = {
1739 .name = "virtio-net-ufo",
1740 .post_load = virtio_net_ufo_post_load,
1741 .pre_save = virtio_net_ufo_pre_save,
1742 .fields = (VMStateField[]) {
1743 VMSTATE_UINT8(has_ufo, struct VirtIONetMigTmp),
1744 VMSTATE_END_OF_LIST()
1745 },
1746};
1747
1748/* the 'has_vnet_hdr' flag is just tested; if the incoming stream has the
1749 * flag set we need to check that we have it
1750 */
1751static int virtio_net_vnet_post_load(void *opaque, int version_id)
1752{
1753 struct VirtIONetMigTmp *tmp = opaque;
1754
1755 if (tmp->has_vnet_hdr && !peer_has_vnet_hdr(tmp->parent)) {
1756 error_report("virtio-net: saved image requires vnet_hdr=on");
1757 return -EINVAL;
1758 }
1759
1760 return 0;
1761}
1762
1763static void virtio_net_vnet_pre_save(void *opaque)
1764{
1765 struct VirtIONetMigTmp *tmp = opaque;
1766
1767 tmp->has_vnet_hdr = tmp->parent->has_vnet_hdr;
1768}
1769
1770static const VMStateDescription vmstate_virtio_net_has_vnet = {
1771 .name = "virtio-net-vnet",
1772 .post_load = virtio_net_vnet_post_load,
1773 .pre_save = virtio_net_vnet_pre_save,
1774 .fields = (VMStateField[]) {
1775 VMSTATE_UINT32(has_vnet_hdr, struct VirtIONetMigTmp),
1776 VMSTATE_END_OF_LIST()
1777 },
1778};
1779
1780static const VMStateDescription vmstate_virtio_net_device = {
1781 .name = "virtio-net-device",
1782 .version_id = VIRTIO_NET_VM_VERSION,
1783 .minimum_version_id = VIRTIO_NET_VM_VERSION,
1784 .post_load = virtio_net_post_load_device,
1785 .fields = (VMStateField[]) {
1786 VMSTATE_UINT8_ARRAY(mac, VirtIONet, ETH_ALEN),
1787 VMSTATE_STRUCT_POINTER(vqs, VirtIONet,
1788 vmstate_virtio_net_queue_tx_waiting,
1789 VirtIONetQueue),
1790 VMSTATE_UINT32(mergeable_rx_bufs, VirtIONet),
1791 VMSTATE_UINT16(status, VirtIONet),
1792 VMSTATE_UINT8(promisc, VirtIONet),
1793 VMSTATE_UINT8(allmulti, VirtIONet),
1794 VMSTATE_UINT32(mac_table.in_use, VirtIONet),
1795
1796 /* Guarded pair: If it fits we load it, else we throw it away
1797 * - can happen if source has a larger MAC table.; post-load
1798 * sets flags in this case.
1799 */
1800 VMSTATE_VBUFFER_MULTIPLY(mac_table.macs, VirtIONet,
1801 0, mac_table_fits, mac_table.in_use,
1802 ETH_ALEN),
1803 VMSTATE_UNUSED_VARRAY_UINT32(VirtIONet, mac_table_doesnt_fit, 0,
1804 mac_table.in_use, ETH_ALEN),
1805
1806 /* Note: This is an array of uint32's that's always been saved as a
1807 * buffer; hold onto your endiannesses; it's actually used as a bitmap
1808 * but based on the uint.
1809 */
1810 VMSTATE_BUFFER_POINTER_UNSAFE(vlans, VirtIONet, 0, MAX_VLAN >> 3),
1811 VMSTATE_WITH_TMP(VirtIONet, struct VirtIONetMigTmp,
1812 vmstate_virtio_net_has_vnet),
1813 VMSTATE_UINT8(mac_table.multi_overflow, VirtIONet),
1814 VMSTATE_UINT8(mac_table.uni_overflow, VirtIONet),
1815 VMSTATE_UINT8(alluni, VirtIONet),
1816 VMSTATE_UINT8(nomulti, VirtIONet),
1817 VMSTATE_UINT8(nouni, VirtIONet),
1818 VMSTATE_UINT8(nobcast, VirtIONet),
1819 VMSTATE_WITH_TMP(VirtIONet, struct VirtIONetMigTmp,
1820 vmstate_virtio_net_has_ufo),
1821 VMSTATE_SINGLE_TEST(max_queues, VirtIONet, max_queues_gt_1, 0,
1822 vmstate_info_uint16_equal, uint16_t),
1823 VMSTATE_UINT16_TEST(curr_queues, VirtIONet, max_queues_gt_1),
1824 VMSTATE_WITH_TMP(VirtIONet, struct VirtIONetMigTmp,
1825 vmstate_virtio_net_tx_waiting),
1826 VMSTATE_UINT64_TEST(curr_guest_offloads, VirtIONet,
1827 has_ctrl_guest_offloads),
1828 VMSTATE_END_OF_LIST()
1829 },
1830};
1831
eb6b6c12 1832static NetClientInfo net_virtio_info = {
f394b2e2 1833 .type = NET_CLIENT_DRIVER_NIC,
eb6b6c12
MM
1834 .size = sizeof(NICState),
1835 .can_receive = virtio_net_can_receive,
1836 .receive = virtio_net_receive,
eb6b6c12 1837 .link_status_changed = virtio_net_set_link_status,
b1be4280 1838 .query_rx_filter = virtio_net_query_rxfilter,
eb6b6c12
MM
1839};
1840
f56a1247
MT
1841static bool virtio_net_guest_notifier_pending(VirtIODevice *vdev, int idx)
1842{
17a0ca55 1843 VirtIONet *n = VIRTIO_NET(vdev);
fed699f9 1844 NetClientState *nc = qemu_get_subqueue(n->nic, vq2q(idx));
f56a1247 1845 assert(n->vhost_started);
ed8b4afe 1846 return vhost_net_virtqueue_pending(get_vhost_net(nc->peer), idx);
f56a1247
MT
1847}
1848
1849static void virtio_net_guest_notifier_mask(VirtIODevice *vdev, int idx,
1850 bool mask)
1851{
17a0ca55 1852 VirtIONet *n = VIRTIO_NET(vdev);
fed699f9 1853 NetClientState *nc = qemu_get_subqueue(n->nic, vq2q(idx));
f56a1247 1854 assert(n->vhost_started);
ed8b4afe 1855 vhost_net_virtqueue_mask(get_vhost_net(nc->peer),
f56a1247
MT
1856 vdev, idx, mask);
1857}
1858
019a3edb 1859static void virtio_net_set_config_size(VirtIONet *n, uint64_t host_features)
fbe78f4f 1860{
14f9b664 1861 int i, config_size = 0;
0cd09c3a 1862 virtio_add_feature(&host_features, VIRTIO_NET_F_MAC);
a93e599d 1863
14f9b664
JL
1864 for (i = 0; feature_sizes[i].flags != 0; i++) {
1865 if (host_features & feature_sizes[i].flags) {
1866 config_size = MAX(feature_sizes[i].end, config_size);
1867 }
1868 }
17ec5a86
FK
1869 n->config_size = config_size;
1870}
1871
8a253ec2
FK
1872void virtio_net_set_netclient_name(VirtIONet *n, const char *name,
1873 const char *type)
1874{
1875 /*
1876 * The name can be NULL, the netclient name will be type.x.
1877 */
1878 assert(type != NULL);
1879
9e288406 1880 g_free(n->netclient_name);
9e288406 1881 g_free(n->netclient_type);
80e0090a 1882 n->netclient_name = g_strdup(name);
8a253ec2
FK
1883 n->netclient_type = g_strdup(type);
1884}
1885
e6f746b3 1886static void virtio_net_device_realize(DeviceState *dev, Error **errp)
17ec5a86 1887{
e6f746b3 1888 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
284a32f0 1889 VirtIONet *n = VIRTIO_NET(dev);
b1be4280 1890 NetClientState *nc;
284a32f0 1891 int i;
1773d9ee 1892
a93e599d
MC
1893 if (n->net_conf.mtu) {
1894 n->host_features |= (0x1 << VIRTIO_NET_F_MTU);
1895 }
1896
da3e8a23 1897 virtio_net_set_config_size(n, n->host_features);
284a32f0 1898 virtio_init(vdev, "virtio-net", VIRTIO_ID_NET, n->config_size);
fbe78f4f 1899
1c0fbfa3
MT
1900 /*
1901 * We set a lower limit on RX queue size to what it always was.
1902 * Guests that want a smaller ring can always resize it without
1903 * help from us (using virtio 1 and up).
1904 */
1905 if (n->net_conf.rx_queue_size < VIRTIO_NET_RX_QUEUE_MIN_SIZE ||
1906 n->net_conf.rx_queue_size > VIRTQUEUE_MAX_SIZE ||
1907 (n->net_conf.rx_queue_size & (n->net_conf.rx_queue_size - 1))) {
1908 error_setg(errp, "Invalid rx_queue_size (= %" PRIu16 "), "
1909 "must be a power of 2 between %d and %d.",
1910 n->net_conf.rx_queue_size, VIRTIO_NET_RX_QUEUE_MIN_SIZE,
1911 VIRTQUEUE_MAX_SIZE);
1912 virtio_cleanup(vdev);
1913 return;
1914 }
1915
575a1c0e 1916 n->max_queues = MAX(n->nic_conf.peers.queues, 1);
87b3bd1c 1917 if (n->max_queues * 2 + 1 > VIRTIO_QUEUE_MAX) {
7e0e736e 1918 error_setg(errp, "Invalid number of queues (= %" PRIu32 "), "
631b22ea 1919 "must be a positive integer less than %d.",
87b3bd1c 1920 n->max_queues, (VIRTIO_QUEUE_MAX - 1) / 2);
7e0e736e
JW
1921 virtio_cleanup(vdev);
1922 return;
1923 }
f6b26cf2 1924 n->vqs = g_malloc0(sizeof(VirtIONetQueue) * n->max_queues);
fed699f9 1925 n->curr_queues = 1;
1773d9ee 1926 n->tx_timeout = n->net_conf.txtimer;
a697a334 1927
1773d9ee
FK
1928 if (n->net_conf.tx && strcmp(n->net_conf.tx, "timer")
1929 && strcmp(n->net_conf.tx, "bh")) {
e7b43f7e
SH
1930 error_report("virtio-net: "
1931 "Unknown option tx=%s, valid options: \"timer\" \"bh\"",
1773d9ee 1932 n->net_conf.tx);
e7b43f7e 1933 error_report("Defaulting to \"bh\"");
a697a334
AW
1934 }
1935
da51a335 1936 for (i = 0; i < n->max_queues; i++) {
f9d6dbf0 1937 virtio_net_add_queue(n, i);
a697a334 1938 }
da51a335 1939
17a0ca55 1940 n->ctrl_vq = virtio_add_queue(vdev, 64, virtio_net_handle_ctrl);
1773d9ee
FK
1941 qemu_macaddr_default_if_unset(&n->nic_conf.macaddr);
1942 memcpy(&n->mac[0], &n->nic_conf.macaddr, sizeof(n->mac));
554c97dd 1943 n->status = VIRTIO_NET_S_LINK_UP;
f57fcf70
JW
1944 n->announce_timer = timer_new_ms(QEMU_CLOCK_VIRTUAL,
1945 virtio_net_announce_timer, n);
fbe78f4f 1946
8a253ec2
FK
1947 if (n->netclient_type) {
1948 /*
1949 * Happen when virtio_net_set_netclient_name has been called.
1950 */
1951 n->nic = qemu_new_nic(&net_virtio_info, &n->nic_conf,
1952 n->netclient_type, n->netclient_name, n);
1953 } else {
1954 n->nic = qemu_new_nic(&net_virtio_info, &n->nic_conf,
284a32f0 1955 object_get_typename(OBJECT(dev)), dev->id, n);
8a253ec2
FK
1956 }
1957
6e371ab8
MT
1958 peer_test_vnet_hdr(n);
1959 if (peer_has_vnet_hdr(n)) {
fed699f9 1960 for (i = 0; i < n->max_queues; i++) {
d6085e3a 1961 qemu_using_vnet_hdr(qemu_get_subqueue(n->nic, i)->peer, true);
fed699f9 1962 }
6e371ab8
MT
1963 n->host_hdr_len = sizeof(struct virtio_net_hdr);
1964 } else {
1965 n->host_hdr_len = 0;
1966 }
eb6b6c12 1967
1773d9ee 1968 qemu_format_nic_info_str(qemu_get_queue(n->nic), n->nic_conf.macaddr.a);
96d5e201 1969
fed699f9 1970 n->vqs[0].tx_waiting = 0;
1773d9ee 1971 n->tx_burst = n->net_conf.txburst;
bb9d17f8 1972 virtio_net_set_mrg_rx_bufs(n, 0, 0);
002437cd 1973 n->promisc = 1; /* for compatibility */
fbe78f4f 1974
7267c094 1975 n->mac_table.macs = g_malloc0(MAC_TABLE_ENTRIES * ETH_ALEN);
b6503ed9 1976
7267c094 1977 n->vlans = g_malloc0(MAX_VLAN >> 3);
f21c0ed9 1978
b1be4280
AK
1979 nc = qemu_get_queue(n->nic);
1980 nc->rxfilter_notify_enabled = 1;
1981
284a32f0 1982 n->qdev = dev;
17ec5a86
FK
1983}
1984
306ec6c3 1985static void virtio_net_device_unrealize(DeviceState *dev, Error **errp)
17ec5a86 1986{
306ec6c3
AF
1987 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
1988 VirtIONet *n = VIRTIO_NET(dev);
f9d6dbf0 1989 int i, max_queues;
17ec5a86
FK
1990
1991 /* This will stop vhost backend if appropriate. */
1992 virtio_net_set_status(vdev, 0);
1993
9e288406
MA
1994 g_free(n->netclient_name);
1995 n->netclient_name = NULL;
1996 g_free(n->netclient_type);
1997 n->netclient_type = NULL;
8a253ec2 1998
17ec5a86
FK
1999 g_free(n->mac_table.macs);
2000 g_free(n->vlans);
2001
f9d6dbf0
WC
2002 max_queues = n->multiqueue ? n->max_queues : 1;
2003 for (i = 0; i < max_queues; i++) {
2004 virtio_net_del_queue(n, i);
17ec5a86
FK
2005 }
2006
f57fcf70
JW
2007 timer_del(n->announce_timer);
2008 timer_free(n->announce_timer);
17ec5a86
FK
2009 g_free(n->vqs);
2010 qemu_del_nic(n->nic);
6a1a8cc7 2011 virtio_cleanup(vdev);
17ec5a86
FK
2012}
2013
2014static void virtio_net_instance_init(Object *obj)
2015{
2016 VirtIONet *n = VIRTIO_NET(obj);
2017
2018 /*
2019 * The default config_size is sizeof(struct virtio_net_config).
2020 * Can be overriden with virtio_net_set_config_size.
2021 */
2022 n->config_size = sizeof(struct virtio_net_config);
aa4197c3
GA
2023 device_add_bootindex_property(obj, &n->nic_conf.bootindex,
2024 "bootindex", "/ethernet-phy@0",
2025 DEVICE(n), NULL);
17ec5a86
FK
2026}
2027
4d45dcfb
HP
2028static void virtio_net_pre_save(void *opaque)
2029{
2030 VirtIONet *n = opaque;
2031
2032 /* At this point, backend must be stopped, otherwise
2033 * it might keep writing to memory. */
2034 assert(!n->vhost_started);
2035}
2036
2037static const VMStateDescription vmstate_virtio_net = {
2038 .name = "virtio-net",
2039 .minimum_version_id = VIRTIO_NET_VM_VERSION,
2040 .version_id = VIRTIO_NET_VM_VERSION,
2041 .fields = (VMStateField[]) {
2042 VMSTATE_VIRTIO_DEVICE,
2043 VMSTATE_END_OF_LIST()
2044 },
2045 .pre_save = virtio_net_pre_save,
2046};
290c2428 2047
17ec5a86 2048static Property virtio_net_properties[] = {
87108bb2
SZ
2049 DEFINE_PROP_BIT("csum", VirtIONet, host_features, VIRTIO_NET_F_CSUM, true),
2050 DEFINE_PROP_BIT("guest_csum", VirtIONet, host_features,
2051 VIRTIO_NET_F_GUEST_CSUM, true),
2052 DEFINE_PROP_BIT("gso", VirtIONet, host_features, VIRTIO_NET_F_GSO, true),
2053 DEFINE_PROP_BIT("guest_tso4", VirtIONet, host_features,
2054 VIRTIO_NET_F_GUEST_TSO4, true),
2055 DEFINE_PROP_BIT("guest_tso6", VirtIONet, host_features,
2056 VIRTIO_NET_F_GUEST_TSO6, true),
2057 DEFINE_PROP_BIT("guest_ecn", VirtIONet, host_features,
2058 VIRTIO_NET_F_GUEST_ECN, true),
2059 DEFINE_PROP_BIT("guest_ufo", VirtIONet, host_features,
2060 VIRTIO_NET_F_GUEST_UFO, true),
2061 DEFINE_PROP_BIT("guest_announce", VirtIONet, host_features,
2062 VIRTIO_NET_F_GUEST_ANNOUNCE, true),
2063 DEFINE_PROP_BIT("host_tso4", VirtIONet, host_features,
2064 VIRTIO_NET_F_HOST_TSO4, true),
2065 DEFINE_PROP_BIT("host_tso6", VirtIONet, host_features,
2066 VIRTIO_NET_F_HOST_TSO6, true),
2067 DEFINE_PROP_BIT("host_ecn", VirtIONet, host_features,
2068 VIRTIO_NET_F_HOST_ECN, true),
2069 DEFINE_PROP_BIT("host_ufo", VirtIONet, host_features,
2070 VIRTIO_NET_F_HOST_UFO, true),
2071 DEFINE_PROP_BIT("mrg_rxbuf", VirtIONet, host_features,
2072 VIRTIO_NET_F_MRG_RXBUF, true),
2073 DEFINE_PROP_BIT("status", VirtIONet, host_features,
2074 VIRTIO_NET_F_STATUS, true),
2075 DEFINE_PROP_BIT("ctrl_vq", VirtIONet, host_features,
2076 VIRTIO_NET_F_CTRL_VQ, true),
2077 DEFINE_PROP_BIT("ctrl_rx", VirtIONet, host_features,
2078 VIRTIO_NET_F_CTRL_RX, true),
2079 DEFINE_PROP_BIT("ctrl_vlan", VirtIONet, host_features,
2080 VIRTIO_NET_F_CTRL_VLAN, true),
2081 DEFINE_PROP_BIT("ctrl_rx_extra", VirtIONet, host_features,
2082 VIRTIO_NET_F_CTRL_RX_EXTRA, true),
2083 DEFINE_PROP_BIT("ctrl_mac_addr", VirtIONet, host_features,
2084 VIRTIO_NET_F_CTRL_MAC_ADDR, true),
2085 DEFINE_PROP_BIT("ctrl_guest_offloads", VirtIONet, host_features,
2086 VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, true),
2087 DEFINE_PROP_BIT("mq", VirtIONet, host_features, VIRTIO_NET_F_MQ, false),
17ec5a86
FK
2088 DEFINE_NIC_PROPERTIES(VirtIONet, nic_conf),
2089 DEFINE_PROP_UINT32("x-txtimer", VirtIONet, net_conf.txtimer,
87108bb2 2090 TX_TIMER_INTERVAL),
17ec5a86
FK
2091 DEFINE_PROP_INT32("x-txburst", VirtIONet, net_conf.txburst, TX_BURST),
2092 DEFINE_PROP_STRING("tx", VirtIONet, net_conf.tx),
1c0fbfa3
MT
2093 DEFINE_PROP_UINT16("rx_queue_size", VirtIONet, net_conf.rx_queue_size,
2094 VIRTIO_NET_RX_QUEUE_DEFAULT_SIZE),
a93e599d 2095 DEFINE_PROP_UINT16("host_mtu", VirtIONet, net_conf.mtu, 0),
17ec5a86
FK
2096 DEFINE_PROP_END_OF_LIST(),
2097};
2098
2099static void virtio_net_class_init(ObjectClass *klass, void *data)
2100{
2101 DeviceClass *dc = DEVICE_CLASS(klass);
2102 VirtioDeviceClass *vdc = VIRTIO_DEVICE_CLASS(klass);
e6f746b3 2103
17ec5a86 2104 dc->props = virtio_net_properties;
290c2428 2105 dc->vmsd = &vmstate_virtio_net;
125ee0ed 2106 set_bit(DEVICE_CATEGORY_NETWORK, dc->categories);
e6f746b3 2107 vdc->realize = virtio_net_device_realize;
306ec6c3 2108 vdc->unrealize = virtio_net_device_unrealize;
17ec5a86
FK
2109 vdc->get_config = virtio_net_get_config;
2110 vdc->set_config = virtio_net_set_config;
2111 vdc->get_features = virtio_net_get_features;
2112 vdc->set_features = virtio_net_set_features;
2113 vdc->bad_features = virtio_net_bad_features;
2114 vdc->reset = virtio_net_reset;
2115 vdc->set_status = virtio_net_set_status;
2116 vdc->guest_notifier_mask = virtio_net_guest_notifier_mask;
2117 vdc->guest_notifier_pending = virtio_net_guest_notifier_pending;
2a083ffd 2118 vdc->legacy_features |= (0x1 << VIRTIO_NET_F_GSO);
982b78c5 2119 vdc->vmsd = &vmstate_virtio_net_device;
17ec5a86
FK
2120}
2121
2122static const TypeInfo virtio_net_info = {
2123 .name = TYPE_VIRTIO_NET,
2124 .parent = TYPE_VIRTIO_DEVICE,
2125 .instance_size = sizeof(VirtIONet),
2126 .instance_init = virtio_net_instance_init,
2127 .class_init = virtio_net_class_init,
2128};
2129
2130static void virtio_register_types(void)
2131{
2132 type_register_static(&virtio_net_info);
2133}
2134
2135type_init(virtio_register_types)
This page took 1.190104 seconds and 4 git commands to generate.