blob: 075f72df2d5a8e91f35d0e6310b36c00fbe77296 [file] [log] [blame]
aliguorifbe78f42008-12-17 19:13:11 +00001/*
2 * Virtio Network Device
3 *
4 * Copyright IBM, Corp. 2007
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
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
Amit Shahe4d56392010-04-27 18:04:05 +053014#include "iov.h"
aliguorifbe78f42008-12-17 19:13:11 +000015#include "virtio.h"
16#include "net.h"
Mark McLoughlin7200ac32009-10-22 17:49:03 +010017#include "net/checksum.h"
Mark McLoughlina8ed73f2009-10-22 17:49:05 +010018#include "net/tap.h"
Markus Armbruster2f792012010-02-18 16:24:31 +010019#include "qemu-error.h"
aliguorifbe78f42008-12-17 19:13:11 +000020#include "qemu-timer.h"
21#include "virtio-net.h"
Michael S. Tsirkin9bc63042010-03-17 13:08:42 +020022#include "vhost_net.h"
aliguorifbe78f42008-12-17 19:13:11 +000023
Mark McLoughlin0ce0e8f2009-10-22 17:43:50 +010024#define VIRTIO_NET_VM_VERSION 11
aliguorib6503ed2009-02-05 22:36:28 +000025
Alex Williamson4ffb17f2009-06-05 14:47:23 -060026#define MAC_TABLE_ENTRIES 64
aliguorif21c0ed2009-02-05 22:36:32 +000027#define MAX_VLAN (1 << 12) /* Per 802.1Q definition */
aliguori9d6271b2009-02-05 22:36:04 +000028
aliguorifbe78f42008-12-17 19:13:11 +000029typedef struct VirtIONet
30{
31 VirtIODevice vdev;
aliguori79674062009-02-05 22:36:12 +000032 uint8_t mac[ETH_ALEN];
aliguori554c97d2009-01-08 19:46:33 +000033 uint16_t status;
aliguorifbe78f42008-12-17 19:13:11 +000034 VirtQueue *rx_vq;
35 VirtQueue *tx_vq;
aliguori3d11d362009-02-05 22:36:16 +000036 VirtQueue *ctrl_vq;
Mark McLoughlineb6b6c12009-11-25 18:49:11 +000037 NICState *nic;
aliguorifbe78f42008-12-17 19:13:11 +000038 QEMUTimer *tx_timer;
39 int tx_timer_active;
Mark McLoughlin3a330132009-10-22 17:43:45 +010040 uint32_t has_vnet_hdr;
Mark McLoughlin0ce0e8f2009-10-22 17:43:50 +010041 uint8_t has_ufo;
Mark McLoughlin62433752009-06-18 18:21:36 +010042 struct {
43 VirtQueueElement elem;
44 ssize_t len;
45 } async_tx;
aliguorifbe78f42008-12-17 19:13:11 +000046 int mergeable_rx_bufs;
Alex Williamsonf10c5922009-06-05 14:46:57 -060047 uint8_t promisc;
48 uint8_t allmulti;
Alex Williamson015cb162009-06-05 14:47:18 -060049 uint8_t alluni;
50 uint8_t nomulti;
51 uint8_t nouni;
52 uint8_t nobcast;
Michael S. Tsirkin9bc63042010-03-17 13:08:42 +020053 uint8_t vhost_started;
54 VMChangeStateEntry *vmstate;
aliguorib6503ed2009-02-05 22:36:28 +000055 struct {
56 int in_use;
Alex Williamson2d9aba32009-06-05 14:47:13 -060057 int first_multi;
Alex Williamson8fd2a2f2009-06-05 14:47:08 -060058 uint8_t multi_overflow;
59 uint8_t uni_overflow;
aliguorib6503ed2009-02-05 22:36:28 +000060 uint8_t *macs;
61 } mac_table;
aliguorif21c0ed2009-02-05 22:36:32 +000062 uint32_t *vlans;
Alex Williamson01657c82010-06-25 11:09:28 -060063 DeviceState *qdev;
aliguorifbe78f42008-12-17 19:13:11 +000064} VirtIONet;
65
66/* TODO
67 * - we could suppress RX interrupt if we were so inclined.
68 */
69
70static VirtIONet *to_virtio_net(VirtIODevice *vdev)
71{
72 return (VirtIONet *)vdev;
73}
74
aliguori0f03eca2009-02-05 22:36:08 +000075static void virtio_net_get_config(VirtIODevice *vdev, uint8_t *config)
aliguorifbe78f42008-12-17 19:13:11 +000076{
77 VirtIONet *n = to_virtio_net(vdev);
78 struct virtio_net_config netcfg;
79
aliguori554c97d2009-01-08 19:46:33 +000080 netcfg.status = n->status;
aliguori79674062009-02-05 22:36:12 +000081 memcpy(netcfg.mac, n->mac, ETH_ALEN);
aliguorifbe78f42008-12-17 19:13:11 +000082 memcpy(config, &netcfg, sizeof(netcfg));
83}
84
aliguori0f03eca2009-02-05 22:36:08 +000085static void virtio_net_set_config(VirtIODevice *vdev, const uint8_t *config)
86{
87 VirtIONet *n = to_virtio_net(vdev);
88 struct virtio_net_config netcfg;
89
90 memcpy(&netcfg, config, sizeof(netcfg));
91
aliguori79674062009-02-05 22:36:12 +000092 if (memcmp(netcfg.mac, n->mac, ETH_ALEN)) {
93 memcpy(n->mac, netcfg.mac, ETH_ALEN);
Mark McLoughlineb6b6c12009-11-25 18:49:11 +000094 qemu_format_nic_info_str(&n->nic->nc, n->mac);
aliguori0f03eca2009-02-05 22:36:08 +000095 }
96}
97
Mark McLoughlineb6b6c12009-11-25 18:49:11 +000098static void virtio_net_set_link_status(VLANClientState *nc)
aliguori554c97d2009-01-08 19:46:33 +000099{
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000100 VirtIONet *n = DO_UPCAST(NICState, nc, nc)->opaque;
aliguori554c97d2009-01-08 19:46:33 +0000101 uint16_t old_status = n->status;
102
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000103 if (nc->link_down)
aliguori554c97d2009-01-08 19:46:33 +0000104 n->status &= ~VIRTIO_NET_S_LINK_UP;
105 else
106 n->status |= VIRTIO_NET_S_LINK_UP;
107
108 if (n->status != old_status)
109 virtio_notify_config(&n->vdev);
110}
111
aliguori002437c2009-02-05 22:36:20 +0000112static void virtio_net_reset(VirtIODevice *vdev)
113{
114 VirtIONet *n = to_virtio_net(vdev);
115
116 /* Reset back to compatibility mode */
117 n->promisc = 1;
118 n->allmulti = 0;
Alex Williamson015cb162009-06-05 14:47:18 -0600119 n->alluni = 0;
120 n->nomulti = 0;
121 n->nouni = 0;
122 n->nobcast = 0;
Michael S. Tsirkin9bc63042010-03-17 13:08:42 +0200123 if (n->vhost_started) {
124 vhost_net_stop(tap_get_vhost_net(n->nic->nc.peer), vdev);
125 n->vhost_started = 0;
126 }
aliguorib6503ed2009-02-05 22:36:28 +0000127
aliguorif21c0ed2009-02-05 22:36:32 +0000128 /* Flush any MAC and VLAN filter table state */
aliguorib6503ed2009-02-05 22:36:28 +0000129 n->mac_table.in_use = 0;
Alex Williamson2d9aba32009-06-05 14:47:13 -0600130 n->mac_table.first_multi = 0;
Alex Williamson8fd2a2f2009-06-05 14:47:08 -0600131 n->mac_table.multi_overflow = 0;
132 n->mac_table.uni_overflow = 0;
aliguorib6503ed2009-02-05 22:36:28 +0000133 memset(n->mac_table.macs, 0, MAC_TABLE_ENTRIES * ETH_ALEN);
aliguorif21c0ed2009-02-05 22:36:32 +0000134 memset(n->vlans, 0, MAX_VLAN >> 3);
aliguori002437c2009-02-05 22:36:20 +0000135}
136
Mark McLoughlin3a330132009-10-22 17:43:45 +0100137static int peer_has_vnet_hdr(VirtIONet *n)
138{
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000139 if (!n->nic->nc.peer)
Mark McLoughlin3a330132009-10-22 17:43:45 +0100140 return 0;
141
Mark McLoughlin665a3b02009-11-25 18:49:30 +0000142 if (n->nic->nc.peer->info->type != NET_CLIENT_TYPE_TAP)
Mark McLoughlin3a330132009-10-22 17:43:45 +0100143 return 0;
144
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000145 n->has_vnet_hdr = tap_has_vnet_hdr(n->nic->nc.peer);
Mark McLoughlin3a330132009-10-22 17:43:45 +0100146
147 return n->has_vnet_hdr;
148}
149
Mark McLoughlin0ce0e8f2009-10-22 17:43:50 +0100150static int peer_has_ufo(VirtIONet *n)
151{
152 if (!peer_has_vnet_hdr(n))
153 return 0;
154
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000155 n->has_ufo = tap_has_ufo(n->nic->nc.peer);
Mark McLoughlin0ce0e8f2009-10-22 17:43:50 +0100156
157 return n->has_ufo;
158}
159
Michael S. Tsirkin81725392010-01-10 13:52:53 +0200160static uint32_t virtio_net_get_features(VirtIODevice *vdev, uint32_t features)
aliguorifbe78f42008-12-17 19:13:11 +0000161{
Mark McLoughlin3a330132009-10-22 17:43:45 +0100162 VirtIONet *n = to_virtio_net(vdev);
aliguorifbe78f42008-12-17 19:13:11 +0000163
Michael S. Tsirkinc9f79a32010-01-12 20:50:17 +0200164 features |= (1 << VIRTIO_NET_F_MAC);
165
Mark McLoughlin3a330132009-10-22 17:43:45 +0100166 if (peer_has_vnet_hdr(n)) {
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000167 tap_using_vnet_hdr(n->nic->nc.peer, 1);
Michael S. Tsirkin81725392010-01-10 13:52:53 +0200168 } else {
169 features &= ~(0x1 << VIRTIO_NET_F_CSUM);
170 features &= ~(0x1 << VIRTIO_NET_F_HOST_TSO4);
171 features &= ~(0x1 << VIRTIO_NET_F_HOST_TSO6);
172 features &= ~(0x1 << VIRTIO_NET_F_HOST_ECN);
Mark McLoughlin3a330132009-10-22 17:43:45 +0100173
Michael S. Tsirkin81725392010-01-10 13:52:53 +0200174 features &= ~(0x1 << VIRTIO_NET_F_GUEST_CSUM);
175 features &= ~(0x1 << VIRTIO_NET_F_GUEST_TSO4);
176 features &= ~(0x1 << VIRTIO_NET_F_GUEST_TSO6);
177 features &= ~(0x1 << VIRTIO_NET_F_GUEST_ECN);
178 }
Mark McLoughlinf5436dd2009-10-22 17:43:47 +0100179
Michael S. Tsirkin81725392010-01-10 13:52:53 +0200180 if (!peer_has_vnet_hdr(n) || !peer_has_ufo(n)) {
181 features &= ~(0x1 << VIRTIO_NET_F_GUEST_UFO);
182 features &= ~(0x1 << VIRTIO_NET_F_HOST_UFO);
Mark McLoughlin3a330132009-10-22 17:43:45 +0100183 }
184
Michael S. Tsirkin9bc63042010-03-17 13:08:42 +0200185 if (!n->nic->nc.peer ||
186 n->nic->nc.peer->info->type != NET_CLIENT_TYPE_TAP) {
187 return features;
188 }
189 if (!tap_get_vhost_net(n->nic->nc.peer)) {
190 return features;
191 }
192 return vhost_net_get_features(tap_get_vhost_net(n->nic->nc.peer), features);
aliguorifbe78f42008-12-17 19:13:11 +0000193}
194
aliguori8eca6b12009-04-05 17:40:08 +0000195static uint32_t virtio_net_bad_features(VirtIODevice *vdev)
196{
197 uint32_t features = 0;
198
199 /* Linux kernel 2.6.25. It understood MAC (as everyone must),
200 * but also these: */
201 features |= (1 << VIRTIO_NET_F_MAC);
Dustin Kirkland184bd042009-10-29 10:34:15 -0500202 features |= (1 << VIRTIO_NET_F_CSUM);
203 features |= (1 << VIRTIO_NET_F_HOST_TSO4);
204 features |= (1 << VIRTIO_NET_F_HOST_TSO6);
205 features |= (1 << VIRTIO_NET_F_HOST_ECN);
aliguori8eca6b12009-04-05 17:40:08 +0000206
Michael S. Tsirkin81725392010-01-10 13:52:53 +0200207 return features;
aliguori8eca6b12009-04-05 17:40:08 +0000208}
209
aliguorifbe78f42008-12-17 19:13:11 +0000210static void virtio_net_set_features(VirtIODevice *vdev, uint32_t features)
211{
212 VirtIONet *n = to_virtio_net(vdev);
213
214 n->mergeable_rx_bufs = !!(features & (1 << VIRTIO_NET_F_MRG_RXBUF));
Mark McLoughlinf5436dd2009-10-22 17:43:47 +0100215
216 if (n->has_vnet_hdr) {
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000217 tap_set_offload(n->nic->nc.peer,
Mark McLoughlinf5436dd2009-10-22 17:43:47 +0100218 (features >> VIRTIO_NET_F_GUEST_CSUM) & 1,
219 (features >> VIRTIO_NET_F_GUEST_TSO4) & 1,
220 (features >> VIRTIO_NET_F_GUEST_TSO6) & 1,
Sridhar Samudrala6c9f58b2009-10-22 17:43:49 +0100221 (features >> VIRTIO_NET_F_GUEST_ECN) & 1,
222 (features >> VIRTIO_NET_F_GUEST_UFO) & 1);
Mark McLoughlinf5436dd2009-10-22 17:43:47 +0100223 }
David L Stevensdc14a392010-03-31 21:20:31 +0300224 if (!n->nic->nc.peer ||
225 n->nic->nc.peer->info->type != NET_CLIENT_TYPE_TAP) {
226 return;
227 }
228 if (!tap_get_vhost_net(n->nic->nc.peer)) {
229 return;
230 }
Michael S. Tsirkin57c32292010-05-09 14:35:43 +0300231 vhost_net_ack_features(tap_get_vhost_net(n->nic->nc.peer), features);
aliguorifbe78f42008-12-17 19:13:11 +0000232}
233
aliguori002437c2009-02-05 22:36:20 +0000234static int virtio_net_handle_rx_mode(VirtIONet *n, uint8_t cmd,
235 VirtQueueElement *elem)
236{
237 uint8_t on;
238
239 if (elem->out_num != 2 || elem->out_sg[1].iov_len != sizeof(on)) {
240 fprintf(stderr, "virtio-net ctrl invalid rx mode command\n");
241 exit(1);
242 }
243
244 on = ldub_p(elem->out_sg[1].iov_base);
245
246 if (cmd == VIRTIO_NET_CTRL_RX_MODE_PROMISC)
247 n->promisc = on;
248 else if (cmd == VIRTIO_NET_CTRL_RX_MODE_ALLMULTI)
249 n->allmulti = on;
Alex Williamson015cb162009-06-05 14:47:18 -0600250 else if (cmd == VIRTIO_NET_CTRL_RX_MODE_ALLUNI)
251 n->alluni = on;
252 else if (cmd == VIRTIO_NET_CTRL_RX_MODE_NOMULTI)
253 n->nomulti = on;
254 else if (cmd == VIRTIO_NET_CTRL_RX_MODE_NOUNI)
255 n->nouni = on;
256 else if (cmd == VIRTIO_NET_CTRL_RX_MODE_NOBCAST)
257 n->nobcast = on;
aliguori002437c2009-02-05 22:36:20 +0000258 else
259 return VIRTIO_NET_ERR;
260
261 return VIRTIO_NET_OK;
262}
263
aliguorib6503ed2009-02-05 22:36:28 +0000264static int virtio_net_handle_mac(VirtIONet *n, uint8_t cmd,
265 VirtQueueElement *elem)
266{
267 struct virtio_net_ctrl_mac mac_data;
268
269 if (cmd != VIRTIO_NET_CTRL_MAC_TABLE_SET || elem->out_num != 3 ||
270 elem->out_sg[1].iov_len < sizeof(mac_data) ||
271 elem->out_sg[2].iov_len < sizeof(mac_data))
272 return VIRTIO_NET_ERR;
273
274 n->mac_table.in_use = 0;
Alex Williamson2d9aba32009-06-05 14:47:13 -0600275 n->mac_table.first_multi = 0;
Alex Williamson8fd2a2f2009-06-05 14:47:08 -0600276 n->mac_table.uni_overflow = 0;
277 n->mac_table.multi_overflow = 0;
aliguorib6503ed2009-02-05 22:36:28 +0000278 memset(n->mac_table.macs, 0, MAC_TABLE_ENTRIES * ETH_ALEN);
279
280 mac_data.entries = ldl_le_p(elem->out_sg[1].iov_base);
281
282 if (sizeof(mac_data.entries) +
283 (mac_data.entries * ETH_ALEN) > elem->out_sg[1].iov_len)
284 return VIRTIO_NET_ERR;
285
286 if (mac_data.entries <= MAC_TABLE_ENTRIES) {
287 memcpy(n->mac_table.macs, elem->out_sg[1].iov_base + sizeof(mac_data),
288 mac_data.entries * ETH_ALEN);
289 n->mac_table.in_use += mac_data.entries;
290 } else {
Alex Williamson8fd2a2f2009-06-05 14:47:08 -0600291 n->mac_table.uni_overflow = 1;
aliguorib6503ed2009-02-05 22:36:28 +0000292 }
293
Alex Williamson2d9aba32009-06-05 14:47:13 -0600294 n->mac_table.first_multi = n->mac_table.in_use;
295
aliguorib6503ed2009-02-05 22:36:28 +0000296 mac_data.entries = ldl_le_p(elem->out_sg[2].iov_base);
297
298 if (sizeof(mac_data.entries) +
299 (mac_data.entries * ETH_ALEN) > elem->out_sg[2].iov_len)
300 return VIRTIO_NET_ERR;
301
302 if (mac_data.entries) {
303 if (n->mac_table.in_use + mac_data.entries <= MAC_TABLE_ENTRIES) {
304 memcpy(n->mac_table.macs + (n->mac_table.in_use * ETH_ALEN),
305 elem->out_sg[2].iov_base + sizeof(mac_data),
306 mac_data.entries * ETH_ALEN);
307 n->mac_table.in_use += mac_data.entries;
Alex Williamson8fd2a2f2009-06-05 14:47:08 -0600308 } else {
309 n->mac_table.multi_overflow = 1;
310 }
aliguorib6503ed2009-02-05 22:36:28 +0000311 }
312
313 return VIRTIO_NET_OK;
314}
315
aliguorif21c0ed2009-02-05 22:36:32 +0000316static int virtio_net_handle_vlan_table(VirtIONet *n, uint8_t cmd,
317 VirtQueueElement *elem)
318{
319 uint16_t vid;
320
321 if (elem->out_num != 2 || elem->out_sg[1].iov_len != sizeof(vid)) {
322 fprintf(stderr, "virtio-net ctrl invalid vlan command\n");
323 return VIRTIO_NET_ERR;
324 }
325
326 vid = lduw_le_p(elem->out_sg[1].iov_base);
327
328 if (vid >= MAX_VLAN)
329 return VIRTIO_NET_ERR;
330
331 if (cmd == VIRTIO_NET_CTRL_VLAN_ADD)
332 n->vlans[vid >> 5] |= (1U << (vid & 0x1f));
333 else if (cmd == VIRTIO_NET_CTRL_VLAN_DEL)
334 n->vlans[vid >> 5] &= ~(1U << (vid & 0x1f));
335 else
336 return VIRTIO_NET_ERR;
337
338 return VIRTIO_NET_OK;
339}
340
aliguori3d11d362009-02-05 22:36:16 +0000341static void virtio_net_handle_ctrl(VirtIODevice *vdev, VirtQueue *vq)
342{
aliguori002437c2009-02-05 22:36:20 +0000343 VirtIONet *n = to_virtio_net(vdev);
aliguori3d11d362009-02-05 22:36:16 +0000344 struct virtio_net_ctrl_hdr ctrl;
345 virtio_net_ctrl_ack status = VIRTIO_NET_ERR;
346 VirtQueueElement elem;
347
348 while (virtqueue_pop(vq, &elem)) {
349 if ((elem.in_num < 1) || (elem.out_num < 1)) {
350 fprintf(stderr, "virtio-net ctrl missing headers\n");
351 exit(1);
352 }
353
354 if (elem.out_sg[0].iov_len < sizeof(ctrl) ||
aliguoric6bb9a32009-03-13 15:04:02 +0000355 elem.in_sg[elem.in_num - 1].iov_len < sizeof(status)) {
aliguori3d11d362009-02-05 22:36:16 +0000356 fprintf(stderr, "virtio-net ctrl header not in correct element\n");
357 exit(1);
358 }
359
360 ctrl.class = ldub_p(elem.out_sg[0].iov_base);
361 ctrl.cmd = ldub_p(elem.out_sg[0].iov_base + sizeof(ctrl.class));
362
aliguori002437c2009-02-05 22:36:20 +0000363 if (ctrl.class == VIRTIO_NET_CTRL_RX_MODE)
364 status = virtio_net_handle_rx_mode(n, ctrl.cmd, &elem);
aliguorib6503ed2009-02-05 22:36:28 +0000365 else if (ctrl.class == VIRTIO_NET_CTRL_MAC)
366 status = virtio_net_handle_mac(n, ctrl.cmd, &elem);
aliguorif21c0ed2009-02-05 22:36:32 +0000367 else if (ctrl.class == VIRTIO_NET_CTRL_VLAN)
368 status = virtio_net_handle_vlan_table(n, ctrl.cmd, &elem);
aliguori002437c2009-02-05 22:36:20 +0000369
aliguori3d11d362009-02-05 22:36:16 +0000370 stb_p(elem.in_sg[elem.in_num - 1].iov_base, status);
371
372 virtqueue_push(vq, &elem, sizeof(status));
373 virtio_notify(vdev, vq);
374 }
375}
376
aliguorifbe78f42008-12-17 19:13:11 +0000377/* RX */
378
379static void virtio_net_handle_rx(VirtIODevice *vdev, VirtQueue *vq)
380{
Mark McLoughlin8aeff622009-04-29 13:40:02 +0100381 VirtIONet *n = to_virtio_net(vdev);
382
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000383 qemu_flush_queued_packets(&n->nic->nc);
Glauber Costaa61d1f62009-07-20 13:07:41 -0400384
385 /* We now have RX buffers, signal to the IO thread to break out of the
386 * select to re-poll the tap file descriptor */
387 qemu_notify_event();
aliguorifbe78f42008-12-17 19:13:11 +0000388}
389
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000390static int virtio_net_can_receive(VLANClientState *nc)
aliguorifbe78f42008-12-17 19:13:11 +0000391{
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000392 VirtIONet *n = DO_UPCAST(NICState, nc, nc)->opaque;
Mark McLoughlincdd5cc12009-10-27 18:16:38 +0000393
aliguorifbe78f42008-12-17 19:13:11 +0000394 if (!virtio_queue_ready(n->rx_vq) ||
395 !(n->vdev.status & VIRTIO_CONFIG_S_DRIVER_OK))
396 return 0;
397
Mark McLoughlincdd5cc12009-10-27 18:16:38 +0000398 return 1;
399}
400
401static int virtio_net_has_buffers(VirtIONet *n, int bufsize)
402{
aliguorifbe78f42008-12-17 19:13:11 +0000403 if (virtio_queue_empty(n->rx_vq) ||
404 (n->mergeable_rx_bufs &&
405 !virtqueue_avail_bytes(n->rx_vq, bufsize, 0))) {
406 virtio_queue_set_notification(n->rx_vq, 1);
Tom Lendacky06b12972010-02-08 10:10:01 -0600407
408 /* To avoid a race condition where the guest has made some buffers
409 * available after the above check but before notification was
410 * enabled, check for available buffers again.
411 */
412 if (virtio_queue_empty(n->rx_vq) ||
413 (n->mergeable_rx_bufs &&
414 !virtqueue_avail_bytes(n->rx_vq, bufsize, 0)))
415 return 0;
aliguorifbe78f42008-12-17 19:13:11 +0000416 }
417
418 virtio_queue_set_notification(n->rx_vq, 0);
419 return 1;
420}
421
Anthony Liguori1d41b0c2009-10-22 17:43:48 +0100422/* dhclient uses AF_PACKET but doesn't pass auxdata to the kernel so
423 * it never finds out that the packets don't have valid checksums. This
424 * causes dhclient to get upset. Fedora's carried a patch for ages to
425 * fix this with Xen but it hasn't appeared in an upstream release of
426 * dhclient yet.
427 *
428 * To avoid breaking existing guests, we catch udp packets and add
429 * checksums. This is terrible but it's better than hacking the guest
430 * kernels.
431 *
432 * N.B. if we introduce a zero-copy API, this operation is no longer free so
433 * we should provide a mechanism to disable it to avoid polluting the host
434 * cache.
435 */
436static void work_around_broken_dhclient(struct virtio_net_hdr *hdr,
437 const uint8_t *buf, size_t size)
438{
439 if ((hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) && /* missing csum */
440 (size > 27 && size < 1500) && /* normal sized MTU */
441 (buf[12] == 0x08 && buf[13] == 0x00) && /* ethertype == IPv4 */
442 (buf[23] == 17) && /* ip.protocol == UDP */
443 (buf[34] == 0 && buf[35] == 67)) { /* udp.srcport == bootps */
444 /* FIXME this cast is evil */
445 net_checksum_calculate((uint8_t *)buf, size);
446 hdr->flags &= ~VIRTIO_NET_HDR_F_NEEDS_CSUM;
447 }
448}
449
aliguorifbe78f42008-12-17 19:13:11 +0000450static int receive_header(VirtIONet *n, struct iovec *iov, int iovcnt,
aliguori4689f4b2008-12-17 19:45:40 +0000451 const void *buf, size_t size, size_t hdr_len)
aliguorifbe78f42008-12-17 19:13:11 +0000452{
blueswir13f4cb3d2009-04-13 16:31:01 +0000453 struct virtio_net_hdr *hdr = (struct virtio_net_hdr *)iov[0].iov_base;
aliguorifbe78f42008-12-17 19:13:11 +0000454 int offset = 0;
455
456 hdr->flags = 0;
457 hdr->gso_type = VIRTIO_NET_HDR_GSO_NONE;
458
Mark McLoughlin3a330132009-10-22 17:43:45 +0100459 if (n->has_vnet_hdr) {
460 memcpy(hdr, buf, sizeof(*hdr));
461 offset = sizeof(*hdr);
Anthony Liguori1d41b0c2009-10-22 17:43:48 +0100462 work_around_broken_dhclient(hdr, buf + offset, size - offset);
Mark McLoughlin3a330132009-10-22 17:43:45 +0100463 }
464
aliguorifbe78f42008-12-17 19:13:11 +0000465 /* We only ever receive a struct virtio_net_hdr from the tapfd,
466 * but we may be passing along a larger header to the guest.
467 */
468 iov[0].iov_base += hdr_len;
469 iov[0].iov_len -= hdr_len;
470
471 return offset;
472}
473
aliguori3831ab22009-02-05 22:36:24 +0000474static int receive_filter(VirtIONet *n, const uint8_t *buf, int size)
475{
476 static const uint8_t bcast[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
aliguorif21c0ed2009-02-05 22:36:32 +0000477 static const uint8_t vlan[] = {0x81, 0x00};
aliguori3831ab22009-02-05 22:36:24 +0000478 uint8_t *ptr = (uint8_t *)buf;
aliguorib6503ed2009-02-05 22:36:28 +0000479 int i;
aliguori3831ab22009-02-05 22:36:24 +0000480
481 if (n->promisc)
482 return 1;
483
Mark McLoughlin3a330132009-10-22 17:43:45 +0100484 if (n->has_vnet_hdr) {
485 ptr += sizeof(struct virtio_net_hdr);
486 }
487
aliguorif21c0ed2009-02-05 22:36:32 +0000488 if (!memcmp(&ptr[12], vlan, sizeof(vlan))) {
489 int vid = be16_to_cpup((uint16_t *)(ptr + 14)) & 0xfff;
490 if (!(n->vlans[vid >> 5] & (1U << (vid & 0x1f))))
491 return 0;
492 }
493
Alex Williamsonbbe2f392009-06-05 14:47:02 -0600494 if (ptr[0] & 1) { // multicast
495 if (!memcmp(ptr, bcast, sizeof(bcast))) {
Alex Williamson015cb162009-06-05 14:47:18 -0600496 return !n->nobcast;
497 } else if (n->nomulti) {
498 return 0;
Alex Williamson8fd2a2f2009-06-05 14:47:08 -0600499 } else if (n->allmulti || n->mac_table.multi_overflow) {
Alex Williamsonbbe2f392009-06-05 14:47:02 -0600500 return 1;
501 }
Alex Williamson2d9aba32009-06-05 14:47:13 -0600502
503 for (i = n->mac_table.first_multi; i < n->mac_table.in_use; i++) {
504 if (!memcmp(ptr, &n->mac_table.macs[i * ETH_ALEN], ETH_ALEN)) {
505 return 1;
506 }
507 }
Alex Williamsonbbe2f392009-06-05 14:47:02 -0600508 } else { // unicast
Alex Williamson015cb162009-06-05 14:47:18 -0600509 if (n->nouni) {
510 return 0;
511 } else if (n->alluni || n->mac_table.uni_overflow) {
Alex Williamson8fd2a2f2009-06-05 14:47:08 -0600512 return 1;
513 } else if (!memcmp(ptr, n->mac, ETH_ALEN)) {
Alex Williamsonbbe2f392009-06-05 14:47:02 -0600514 return 1;
515 }
aliguori3831ab22009-02-05 22:36:24 +0000516
Alex Williamson2d9aba32009-06-05 14:47:13 -0600517 for (i = 0; i < n->mac_table.first_multi; i++) {
518 if (!memcmp(ptr, &n->mac_table.macs[i * ETH_ALEN], ETH_ALEN)) {
519 return 1;
520 }
521 }
aliguorib6503ed2009-02-05 22:36:28 +0000522 }
523
aliguori3831ab22009-02-05 22:36:24 +0000524 return 0;
525}
526
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000527static ssize_t virtio_net_receive(VLANClientState *nc, const uint8_t *buf, size_t size)
aliguorifbe78f42008-12-17 19:13:11 +0000528{
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000529 VirtIONet *n = DO_UPCAST(NICState, nc, nc)->opaque;
aliguorifbe78f42008-12-17 19:13:11 +0000530 struct virtio_net_hdr_mrg_rxbuf *mhdr = NULL;
Michael S. Tsirkin279a4252010-06-22 16:22:49 +0300531 size_t guest_hdr_len, offset, i, host_hdr_len;
aliguorifbe78f42008-12-17 19:13:11 +0000532
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000533 if (!virtio_net_can_receive(&n->nic->nc))
Mark McLoughlincdd5cc12009-10-27 18:16:38 +0000534 return -1;
535
Michael S. Tsirkin940cda92010-06-06 18:53:10 +0300536 /* hdr_len refers to the header we supply to the guest */
Michael S. Tsirkin279a4252010-06-22 16:22:49 +0300537 guest_hdr_len = n->mergeable_rx_bufs ?
Michael S. Tsirkin940cda92010-06-06 18:53:10 +0300538 sizeof(struct virtio_net_hdr_mrg_rxbuf) : sizeof(struct virtio_net_hdr);
539
540
Michael S. Tsirkin279a4252010-06-22 16:22:49 +0300541 host_hdr_len = n->has_vnet_hdr ? sizeof(struct virtio_net_hdr) : 0;
542 if (!virtio_net_has_buffers(n, size + guest_hdr_len - host_hdr_len))
Mark McLoughlin8aeff622009-04-29 13:40:02 +0100543 return 0;
aliguorifbe78f42008-12-17 19:13:11 +0000544
aliguori3831ab22009-02-05 22:36:24 +0000545 if (!receive_filter(n, buf, size))
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100546 return size;
aliguori3831ab22009-02-05 22:36:24 +0000547
aliguorifbe78f42008-12-17 19:13:11 +0000548 offset = i = 0;
549
550 while (offset < size) {
551 VirtQueueElement elem;
552 int len, total;
553 struct iovec sg[VIRTQUEUE_MAX_SIZE];
554
Amit Shah22c253d2010-01-13 16:24:43 +0530555 total = 0;
aliguorifbe78f42008-12-17 19:13:11 +0000556
Michael S. Tsirkin279a4252010-06-22 16:22:49 +0300557 if (virtqueue_pop(n->rx_vq, &elem) == 0) {
aliguorifbe78f42008-12-17 19:13:11 +0000558 if (i == 0)
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100559 return -1;
Michael S. Tsirkin279a4252010-06-22 16:22:49 +0300560 fprintf(stderr, "virtio-net unexpected empty queue: "
561 "i %zd mergeable %d offset %zd, size %zd, "
562 "guest hdr len %zd, host hdr len %zd guest features 0x%x\n",
563 i, n->mergeable_rx_bufs, offset, size,
564 guest_hdr_len, host_hdr_len, n->vdev.guest_features);
aliguorifbe78f42008-12-17 19:13:11 +0000565 exit(1);
566 }
567
568 if (elem.in_num < 1) {
569 fprintf(stderr, "virtio-net receive queue contains no in buffers\n");
570 exit(1);
571 }
572
Michael S. Tsirkin279a4252010-06-22 16:22:49 +0300573 if (!n->mergeable_rx_bufs && elem.in_sg[0].iov_len != guest_hdr_len) {
aliguorifbe78f42008-12-17 19:13:11 +0000574 fprintf(stderr, "virtio-net header not in first element\n");
575 exit(1);
576 }
577
578 memcpy(&sg, &elem.in_sg[0], sizeof(sg[0]) * elem.in_num);
579
580 if (i == 0) {
581 if (n->mergeable_rx_bufs)
582 mhdr = (struct virtio_net_hdr_mrg_rxbuf *)sg[0].iov_base;
583
584 offset += receive_header(n, sg, elem.in_num,
Michael S. Tsirkin279a4252010-06-22 16:22:49 +0300585 buf + offset, size - offset, guest_hdr_len);
586 total += guest_hdr_len;
aliguorifbe78f42008-12-17 19:13:11 +0000587 }
588
589 /* copy in packet. ugh */
Amit Shahe4d56392010-04-27 18:04:05 +0530590 len = iov_from_buf(sg, elem.in_num,
591 buf + offset, size - offset);
aliguorifbe78f42008-12-17 19:13:11 +0000592 total += len;
Michael S. Tsirkin279a4252010-06-22 16:22:49 +0300593 offset += len;
594 /* If buffers can't be merged, at this point we
595 * must have consumed the complete packet.
596 * Otherwise, drop it. */
597 if (!n->mergeable_rx_bufs && offset < size) {
598#if 0
599 fprintf(stderr, "virtio-net truncated non-mergeable packet: "
600
601 "i %zd mergeable %d offset %zd, size %zd, "
602 "guest hdr len %zd, host hdr len %zd\n",
603 i, n->mergeable_rx_bufs,
604 offset, size, guest_hdr_len, host_hdr_len);
605#endif
606 return size;
607 }
aliguorifbe78f42008-12-17 19:13:11 +0000608
609 /* signal other side */
610 virtqueue_fill(n->rx_vq, &elem, total, i++);
aliguorifbe78f42008-12-17 19:13:11 +0000611 }
612
613 if (mhdr)
614 mhdr->num_buffers = i;
615
616 virtqueue_flush(n->rx_vq, i);
617 virtio_notify(&n->vdev, n->rx_vq);
Mark McLoughlin4f1c9422009-05-18 13:40:55 +0100618
619 return size;
aliguorifbe78f42008-12-17 19:13:11 +0000620}
621
Mark McLoughlin62433752009-06-18 18:21:36 +0100622static void virtio_net_flush_tx(VirtIONet *n, VirtQueue *vq);
623
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000624static void virtio_net_tx_complete(VLANClientState *nc, ssize_t len)
Mark McLoughlin62433752009-06-18 18:21:36 +0100625{
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000626 VirtIONet *n = DO_UPCAST(NICState, nc, nc)->opaque;
Mark McLoughlin62433752009-06-18 18:21:36 +0100627
628 virtqueue_push(n->tx_vq, &n->async_tx.elem, n->async_tx.len);
629 virtio_notify(&n->vdev, n->tx_vq);
630
631 n->async_tx.elem.out_num = n->async_tx.len = 0;
632
633 virtio_queue_set_notification(n->tx_vq, 1);
634 virtio_net_flush_tx(n, n->tx_vq);
635}
636
aliguorifbe78f42008-12-17 19:13:11 +0000637/* TX */
638static void virtio_net_flush_tx(VirtIONet *n, VirtQueue *vq)
639{
640 VirtQueueElement elem;
aliguorifbe78f42008-12-17 19:13:11 +0000641
642 if (!(n->vdev.status & VIRTIO_CONFIG_S_DRIVER_OK))
643 return;
644
Mark McLoughlin62433752009-06-18 18:21:36 +0100645 if (n->async_tx.elem.out_num) {
646 virtio_queue_set_notification(n->tx_vq, 0);
647 return;
648 }
649
aliguorifbe78f42008-12-17 19:13:11 +0000650 while (virtqueue_pop(vq, &elem)) {
Mark McLoughlin62433752009-06-18 18:21:36 +0100651 ssize_t ret, len = 0;
aliguorifbe78f42008-12-17 19:13:11 +0000652 unsigned int out_num = elem.out_num;
653 struct iovec *out_sg = &elem.out_sg[0];
654 unsigned hdr_len;
655
656 /* hdr_len refers to the header received from the guest */
657 hdr_len = n->mergeable_rx_bufs ?
658 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
659 sizeof(struct virtio_net_hdr);
660
661 if (out_num < 1 || out_sg->iov_len != hdr_len) {
662 fprintf(stderr, "virtio-net header not in first element\n");
663 exit(1);
664 }
665
666 /* ignore the header if GSO is not supported */
Mark McLoughlin3a330132009-10-22 17:43:45 +0100667 if (!n->has_vnet_hdr) {
aliguorifbe78f42008-12-17 19:13:11 +0000668 out_num--;
669 out_sg++;
670 len += hdr_len;
671 } else if (n->mergeable_rx_bufs) {
672 /* tapfd expects a struct virtio_net_hdr */
673 hdr_len -= sizeof(struct virtio_net_hdr);
674 out_sg->iov_len -= hdr_len;
675 len += hdr_len;
676 }
677
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000678 ret = qemu_sendv_packet_async(&n->nic->nc, out_sg, out_num,
Mark McLoughlin62433752009-06-18 18:21:36 +0100679 virtio_net_tx_complete);
680 if (ret == 0) {
681 virtio_queue_set_notification(n->tx_vq, 0);
682 n->async_tx.elem = elem;
683 n->async_tx.len = len;
684 return;
685 }
686
687 len += ret;
aliguorifbe78f42008-12-17 19:13:11 +0000688
689 virtqueue_push(vq, &elem, len);
690 virtio_notify(&n->vdev, vq);
691 }
692}
693
694static void virtio_net_handle_tx(VirtIODevice *vdev, VirtQueue *vq)
695{
696 VirtIONet *n = to_virtio_net(vdev);
697
698 if (n->tx_timer_active) {
699 virtio_queue_set_notification(vq, 1);
700 qemu_del_timer(n->tx_timer);
701 n->tx_timer_active = 0;
702 virtio_net_flush_tx(n, vq);
703 } else {
704 qemu_mod_timer(n->tx_timer,
705 qemu_get_clock(vm_clock) + TX_TIMER_INTERVAL);
706 n->tx_timer_active = 1;
707 virtio_queue_set_notification(vq, 0);
708 }
709}
710
711static void virtio_net_tx_timer(void *opaque)
712{
713 VirtIONet *n = opaque;
714
715 n->tx_timer_active = 0;
716
717 /* Just in case the driver is not ready on more */
718 if (!(n->vdev.status & VIRTIO_CONFIG_S_DRIVER_OK))
719 return;
720
721 virtio_queue_set_notification(n->tx_vq, 1);
722 virtio_net_flush_tx(n, n->tx_vq);
723}
724
725static void virtio_net_save(QEMUFile *f, void *opaque)
726{
727 VirtIONet *n = opaque;
728
Michael S. Tsirkin9bc63042010-03-17 13:08:42 +0200729 if (n->vhost_started) {
730 /* TODO: should we really stop the backend?
731 * If we don't, it might keep writing to memory. */
732 vhost_net_stop(tap_get_vhost_net(n->nic->nc.peer), &n->vdev);
733 n->vhost_started = 0;
734 }
aliguorifbe78f42008-12-17 19:13:11 +0000735 virtio_save(&n->vdev, f);
736
aliguori79674062009-02-05 22:36:12 +0000737 qemu_put_buffer(f, n->mac, ETH_ALEN);
aliguorifbe78f42008-12-17 19:13:11 +0000738 qemu_put_be32(f, n->tx_timer_active);
aliguorie46cb382009-01-07 17:50:45 +0000739 qemu_put_be32(f, n->mergeable_rx_bufs);
aliguori9d6271b2009-02-05 22:36:04 +0000740 qemu_put_be16(f, n->status);
Alex Williamsonf10c5922009-06-05 14:46:57 -0600741 qemu_put_byte(f, n->promisc);
742 qemu_put_byte(f, n->allmulti);
aliguorib6503ed2009-02-05 22:36:28 +0000743 qemu_put_be32(f, n->mac_table.in_use);
744 qemu_put_buffer(f, n->mac_table.macs, n->mac_table.in_use * ETH_ALEN);
aliguorif21c0ed2009-02-05 22:36:32 +0000745 qemu_put_buffer(f, (uint8_t *)n->vlans, MAX_VLAN >> 3);
Mark McLoughlin3a330132009-10-22 17:43:45 +0100746 qemu_put_be32(f, n->has_vnet_hdr);
Alex Williamson8fd2a2f2009-06-05 14:47:08 -0600747 qemu_put_byte(f, n->mac_table.multi_overflow);
748 qemu_put_byte(f, n->mac_table.uni_overflow);
Alex Williamson015cb162009-06-05 14:47:18 -0600749 qemu_put_byte(f, n->alluni);
750 qemu_put_byte(f, n->nomulti);
751 qemu_put_byte(f, n->nouni);
752 qemu_put_byte(f, n->nobcast);
Mark McLoughlin0ce0e8f2009-10-22 17:43:50 +0100753 qemu_put_byte(f, n->has_ufo);
aliguorifbe78f42008-12-17 19:13:11 +0000754}
755
756static int virtio_net_load(QEMUFile *f, void *opaque, int version_id)
757{
758 VirtIONet *n = opaque;
Alex Williamson2d9aba32009-06-05 14:47:13 -0600759 int i;
aliguorifbe78f42008-12-17 19:13:11 +0000760
aliguori9d6271b2009-02-05 22:36:04 +0000761 if (version_id < 2 || version_id > VIRTIO_NET_VM_VERSION)
aliguorifbe78f42008-12-17 19:13:11 +0000762 return -EINVAL;
763
764 virtio_load(&n->vdev, f);
765
aliguori79674062009-02-05 22:36:12 +0000766 qemu_get_buffer(f, n->mac, ETH_ALEN);
aliguorifbe78f42008-12-17 19:13:11 +0000767 n->tx_timer_active = qemu_get_be32(f);
aliguorie46cb382009-01-07 17:50:45 +0000768 n->mergeable_rx_bufs = qemu_get_be32(f);
aliguorifbe78f42008-12-17 19:13:11 +0000769
aliguori9d6271b2009-02-05 22:36:04 +0000770 if (version_id >= 3)
771 n->status = qemu_get_be16(f);
772
aliguori002437c2009-02-05 22:36:20 +0000773 if (version_id >= 4) {
Alex Williamsonf10c5922009-06-05 14:46:57 -0600774 if (version_id < 8) {
775 n->promisc = qemu_get_be32(f);
776 n->allmulti = qemu_get_be32(f);
777 } else {
778 n->promisc = qemu_get_byte(f);
779 n->allmulti = qemu_get_byte(f);
780 }
aliguori002437c2009-02-05 22:36:20 +0000781 }
782
aliguorib6503ed2009-02-05 22:36:28 +0000783 if (version_id >= 5) {
784 n->mac_table.in_use = qemu_get_be32(f);
785 /* MAC_TABLE_ENTRIES may be different from the saved image */
786 if (n->mac_table.in_use <= MAC_TABLE_ENTRIES) {
787 qemu_get_buffer(f, n->mac_table.macs,
788 n->mac_table.in_use * ETH_ALEN);
789 } else if (n->mac_table.in_use) {
790 qemu_fseek(f, n->mac_table.in_use * ETH_ALEN, SEEK_CUR);
Alex Williamson8fd2a2f2009-06-05 14:47:08 -0600791 n->mac_table.multi_overflow = n->mac_table.uni_overflow = 1;
aliguorib6503ed2009-02-05 22:36:28 +0000792 n->mac_table.in_use = 0;
793 }
794 }
795
aliguorif21c0ed2009-02-05 22:36:32 +0000796 if (version_id >= 6)
797 qemu_get_buffer(f, (uint8_t *)n->vlans, MAX_VLAN >> 3);
798
Mark McLoughlin3a330132009-10-22 17:43:45 +0100799 if (version_id >= 7) {
800 if (qemu_get_be32(f) && !peer_has_vnet_hdr(n)) {
Markus Armbruster1ecda022010-02-18 17:25:24 +0100801 error_report("virtio-net: saved image requires vnet_hdr=on");
Mark McLoughlin3a330132009-10-22 17:43:45 +0100802 return -1;
803 }
804
805 if (n->has_vnet_hdr) {
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000806 tap_using_vnet_hdr(n->nic->nc.peer, 1);
807 tap_set_offload(n->nic->nc.peer,
Michael S. Tsirkin704a76f2010-01-10 13:52:47 +0200808 (n->vdev.guest_features >> VIRTIO_NET_F_GUEST_CSUM) & 1,
809 (n->vdev.guest_features >> VIRTIO_NET_F_GUEST_TSO4) & 1,
810 (n->vdev.guest_features >> VIRTIO_NET_F_GUEST_TSO6) & 1,
811 (n->vdev.guest_features >> VIRTIO_NET_F_GUEST_ECN) & 1,
812 (n->vdev.guest_features >> VIRTIO_NET_F_GUEST_UFO) & 1);
Mark McLoughlin3a330132009-10-22 17:43:45 +0100813 }
Alex Williamson6c042c12009-06-05 14:46:52 -0600814 }
815
Alex Williamson8fd2a2f2009-06-05 14:47:08 -0600816 if (version_id >= 9) {
817 n->mac_table.multi_overflow = qemu_get_byte(f);
818 n->mac_table.uni_overflow = qemu_get_byte(f);
819 }
820
Alex Williamson015cb162009-06-05 14:47:18 -0600821 if (version_id >= 10) {
822 n->alluni = qemu_get_byte(f);
823 n->nomulti = qemu_get_byte(f);
824 n->nouni = qemu_get_byte(f);
825 n->nobcast = qemu_get_byte(f);
826 }
827
Mark McLoughlin0ce0e8f2009-10-22 17:43:50 +0100828 if (version_id >= 11) {
829 if (qemu_get_byte(f) && !peer_has_ufo(n)) {
Markus Armbruster1ecda022010-02-18 17:25:24 +0100830 error_report("virtio-net: saved image requires TUN_F_UFO support");
Mark McLoughlin0ce0e8f2009-10-22 17:43:50 +0100831 return -1;
832 }
833 }
834
Alex Williamson2d9aba32009-06-05 14:47:13 -0600835 /* Find the first multicast entry in the saved MAC filter */
836 for (i = 0; i < n->mac_table.in_use; i++) {
837 if (n->mac_table.macs[i * ETH_ALEN] & 1) {
838 break;
839 }
840 }
841 n->mac_table.first_multi = i;
842
aliguorifbe78f42008-12-17 19:13:11 +0000843 if (n->tx_timer_active) {
844 qemu_mod_timer(n->tx_timer,
845 qemu_get_clock(vm_clock) + TX_TIMER_INTERVAL);
846 }
aliguorifbe78f42008-12-17 19:13:11 +0000847 return 0;
848}
849
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000850static void virtio_net_cleanup(VLANClientState *nc)
aliguorib946a152009-04-17 17:11:08 +0000851{
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000852 VirtIONet *n = DO_UPCAST(NICState, nc, nc)->opaque;
aliguorib946a152009-04-17 17:11:08 +0000853
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000854 n->nic = NULL;
aliguorib946a152009-04-17 17:11:08 +0000855}
856
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000857static NetClientInfo net_virtio_info = {
858 .type = NET_CLIENT_TYPE_NIC,
859 .size = sizeof(NICState),
860 .can_receive = virtio_net_can_receive,
861 .receive = virtio_net_receive,
862 .cleanup = virtio_net_cleanup,
863 .link_status_changed = virtio_net_set_link_status,
864};
865
Michael S. Tsirkin9bc63042010-03-17 13:08:42 +0200866static void virtio_net_set_status(struct VirtIODevice *vdev, uint8_t status)
867{
868 VirtIONet *n = to_virtio_net(vdev);
869 if (!n->nic->nc.peer) {
870 return;
871 }
872 if (n->nic->nc.peer->info->type != NET_CLIENT_TYPE_TAP) {
873 return;
874 }
875
876 if (!tap_get_vhost_net(n->nic->nc.peer)) {
877 return;
878 }
879 if (!!n->vhost_started == !!(status & VIRTIO_CONFIG_S_DRIVER_OK)) {
880 return;
881 }
882 if (status & VIRTIO_CONFIG_S_DRIVER_OK) {
883 int r = vhost_net_start(tap_get_vhost_net(n->nic->nc.peer), vdev);
884 if (r < 0) {
885 fprintf(stderr, "unable to start vhost net: %d: "
886 "falling back on userspace virtio\n", -r);
887 } else {
888 n->vhost_started = 1;
889 }
890 } else {
891 vhost_net_stop(tap_get_vhost_net(n->nic->nc.peer), vdev);
892 n->vhost_started = 0;
893 }
894}
895
896static void virtio_net_vmstate_change(void *opaque, int running, int reason)
897{
898 VirtIONet *n = opaque;
Michael S. Tsirkin7f974482010-06-02 11:40:54 +0300899 uint8_t status = running ? VIRTIO_CONFIG_S_DRIVER_OK : 0;
900 /* This is called when vm is started/stopped,
901 * it will start/stop vhost backend if * appropriate
902 * e.g. after migration. */
903 virtio_net_set_status(&n->vdev, n->vdev.status & status);
Michael S. Tsirkin9bc63042010-03-17 13:08:42 +0200904}
905
Gerd Hoffmann97b15622009-10-21 15:25:35 +0200906VirtIODevice *virtio_net_init(DeviceState *dev, NICConf *conf)
aliguorifbe78f42008-12-17 19:13:11 +0000907{
908 VirtIONet *n;
aliguorifbe78f42008-12-17 19:13:11 +0000909
Paul Brook53c25ce2009-05-18 14:51:59 +0100910 n = (VirtIONet *)virtio_common_init("virtio-net", VIRTIO_ID_NET,
911 sizeof(struct virtio_net_config),
912 sizeof(VirtIONet));
aliguorifbe78f42008-12-17 19:13:11 +0000913
aliguori0f03eca2009-02-05 22:36:08 +0000914 n->vdev.get_config = virtio_net_get_config;
915 n->vdev.set_config = virtio_net_set_config;
aliguorifbe78f42008-12-17 19:13:11 +0000916 n->vdev.get_features = virtio_net_get_features;
917 n->vdev.set_features = virtio_net_set_features;
aliguori8eca6b12009-04-05 17:40:08 +0000918 n->vdev.bad_features = virtio_net_bad_features;
aliguori002437c2009-02-05 22:36:20 +0000919 n->vdev.reset = virtio_net_reset;
Michael S. Tsirkin9bc63042010-03-17 13:08:42 +0200920 n->vdev.set_status = virtio_net_set_status;
aliguorifbe78f42008-12-17 19:13:11 +0000921 n->rx_vq = virtio_add_queue(&n->vdev, 256, virtio_net_handle_rx);
922 n->tx_vq = virtio_add_queue(&n->vdev, 256, virtio_net_handle_tx);
Alex Williamson4ffb17f2009-06-05 14:47:23 -0600923 n->ctrl_vq = virtio_add_queue(&n->vdev, 64, virtio_net_handle_ctrl);
Gerd Hoffmann97b15622009-10-21 15:25:35 +0200924 qemu_macaddr_default_if_unset(&conf->macaddr);
Mark McLoughlin3cbe04c2009-10-28 14:07:23 +0000925 memcpy(&n->mac[0], &conf->macaddr, sizeof(n->mac));
aliguori554c97d2009-01-08 19:46:33 +0000926 n->status = VIRTIO_NET_S_LINK_UP;
aliguorifbe78f42008-12-17 19:13:11 +0000927
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000928 n->nic = qemu_new_nic(&net_virtio_info, conf, dev->info->name, dev->id, n);
929
930 qemu_format_nic_info_str(&n->nic->nc, conf->macaddr.a);
aliguori96d5e202009-01-07 17:47:15 +0000931
aliguorifbe78f42008-12-17 19:13:11 +0000932 n->tx_timer = qemu_new_timer(vm_clock, virtio_net_tx_timer, n);
933 n->tx_timer_active = 0;
934 n->mergeable_rx_bufs = 0;
aliguori002437c2009-02-05 22:36:20 +0000935 n->promisc = 1; /* for compatibility */
aliguorifbe78f42008-12-17 19:13:11 +0000936
aliguorib6503ed2009-02-05 22:36:28 +0000937 n->mac_table.macs = qemu_mallocz(MAC_TABLE_ENTRIES * ETH_ALEN);
aliguorib6503ed2009-02-05 22:36:28 +0000938
aliguorif21c0ed2009-02-05 22:36:32 +0000939 n->vlans = qemu_mallocz(MAX_VLAN >> 3);
aliguorif21c0ed2009-02-05 22:36:32 +0000940
Alex Williamson01657c82010-06-25 11:09:28 -0600941 n->qdev = dev;
942 register_savevm(dev, "virtio-net", -1, VIRTIO_NET_VM_VERSION,
aliguorifbe78f42008-12-17 19:13:11 +0000943 virtio_net_save, virtio_net_load, n);
Michael S. Tsirkin9bc63042010-03-17 13:08:42 +0200944 n->vmstate = qemu_add_vm_change_state_handler(virtio_net_vmstate_change, n);
Paul Brookcf21e102009-05-14 22:35:07 +0100945
Paul Brook53c25ce2009-05-18 14:51:59 +0100946 return &n->vdev;
Paul Brookcf21e102009-05-14 22:35:07 +0100947}
Gerd Hoffmann97b15622009-10-21 15:25:35 +0200948
949void virtio_net_exit(VirtIODevice *vdev)
950{
951 VirtIONet *n = DO_UPCAST(VirtIONet, vdev, vdev);
Michael S. Tsirkin9bc63042010-03-17 13:08:42 +0200952 qemu_del_vm_change_state_handler(n->vmstate);
953
954 if (n->vhost_started) {
955 vhost_net_stop(tap_get_vhost_net(n->nic->nc.peer), vdev);
956 }
Gerd Hoffmann97b15622009-10-21 15:25:35 +0200957
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000958 qemu_purge_queued_packets(&n->nic->nc);
Gerd Hoffmann97b15622009-10-21 15:25:35 +0200959
Alex Williamson01657c82010-06-25 11:09:28 -0600960 unregister_savevm(n->qdev, "virtio-net", n);
Gerd Hoffmann97b15622009-10-21 15:25:35 +0200961
962 qemu_free(n->mac_table.macs);
963 qemu_free(n->vlans);
964
965 qemu_del_timer(n->tx_timer);
966 qemu_free_timer(n->tx_timer);
967
968 virtio_cleanup(&n->vdev);
Mark McLoughlineb6b6c12009-11-25 18:49:11 +0000969 qemu_del_vlan_client(&n->nic->nc);
Gerd Hoffmann97b15622009-10-21 15:25:35 +0200970}