New upstream version 16.11.5
[deb_dpdk.git] / drivers / net / virtio / virtio_user / virtio_user_dev.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <stdint.h>
35 #include <stdio.h>
36 #include <fcntl.h>
37 #include <string.h>
38 #include <errno.h>
39 #include <sys/mman.h>
40 #include <unistd.h>
41 #include <sys/eventfd.h>
42
43 #include "vhost.h"
44 #include "virtio_user_dev.h"
45 #include "../virtio_ethdev.h"
46
47 static int
48 virtio_user_create_queue(struct virtio_user_dev *dev, uint32_t queue_sel)
49 {
50         /* Of all per virtqueue MSGs, make sure VHOST_SET_VRING_CALL come
51          * firstly because vhost depends on this msg to allocate virtqueue
52          * pair.
53          */
54         int callfd;
55         struct vhost_vring_file file;
56
57         /* May use invalid flag, but some backend leverages kickfd and callfd as
58          * criteria to judge if dev is alive. so finally we use real event_fd.
59          */
60         callfd = eventfd(0, EFD_CLOEXEC | EFD_NONBLOCK);
61         if (callfd < 0) {
62                 PMD_DRV_LOG(ERR, "callfd error, %s\n", strerror(errno));
63                 return -1;
64         }
65         file.index = queue_sel;
66         file.fd = callfd;
67         vhost_user_sock(dev->vhostfd, VHOST_USER_SET_VRING_CALL, &file);
68         dev->callfds[queue_sel] = callfd;
69
70         return 0;
71 }
72
73 static int
74 virtio_user_kick_queue(struct virtio_user_dev *dev, uint32_t queue_sel)
75 {
76         int kickfd;
77         struct vhost_vring_file file;
78         struct vhost_vring_state state;
79         struct vring *vring = &dev->vrings[queue_sel];
80         struct vhost_vring_addr addr = {
81                 .index = queue_sel,
82                 .desc_user_addr = (uint64_t)(uintptr_t)vring->desc,
83                 .avail_user_addr = (uint64_t)(uintptr_t)vring->avail,
84                 .used_user_addr = (uint64_t)(uintptr_t)vring->used,
85                 .log_guest_addr = 0,
86                 .flags = 0, /* disable log */
87         };
88
89         state.index = queue_sel;
90         state.num = vring->num;
91         vhost_user_sock(dev->vhostfd, VHOST_USER_SET_VRING_NUM, &state);
92
93         state.num = 0; /* no reservation */
94         vhost_user_sock(dev->vhostfd, VHOST_USER_SET_VRING_BASE, &state);
95
96         vhost_user_sock(dev->vhostfd, VHOST_USER_SET_VRING_ADDR, &addr);
97
98         /* Of all per virtqueue MSGs, make sure VHOST_USER_SET_VRING_KICK comes
99          * lastly because vhost depends on this msg to judge if
100          * virtio is ready.
101          */
102         kickfd = eventfd(0, EFD_CLOEXEC | EFD_NONBLOCK);
103         if (kickfd < 0) {
104                 PMD_DRV_LOG(ERR, "kickfd error, %s\n", strerror(errno));
105                 return -1;
106         }
107         file.index = queue_sel;
108         file.fd = kickfd;
109         vhost_user_sock(dev->vhostfd, VHOST_USER_SET_VRING_KICK, &file);
110         dev->kickfds[queue_sel] = kickfd;
111
112         return 0;
113 }
114
115 static int
116 virtio_user_queue_setup(struct virtio_user_dev *dev,
117                         int (*fn)(struct virtio_user_dev *, uint32_t))
118 {
119         uint32_t i, queue_sel;
120
121         for (i = 0; i < dev->max_queue_pairs; ++i) {
122                 queue_sel = 2 * i + VTNET_SQ_RQ_QUEUE_IDX;
123                 if (fn(dev, queue_sel) < 0) {
124                         PMD_DRV_LOG(INFO, "setup rx vq fails: %u", i);
125                         return -1;
126                 }
127         }
128         for (i = 0; i < dev->max_queue_pairs; ++i) {
129                 queue_sel = 2 * i + VTNET_SQ_TQ_QUEUE_IDX;
130                 if (fn(dev, queue_sel) < 0) {
131                         PMD_DRV_LOG(INFO, "setup tx vq fails: %u", i);
132                         return -1;
133                 }
134         }
135
136         return 0;
137 }
138
139 int
140 virtio_user_start_device(struct virtio_user_dev *dev)
141 {
142         uint64_t features;
143         int ret;
144
145         /* Do not check return as already done in init, or reset in stop */
146         vhost_user_sock(dev->vhostfd, VHOST_USER_SET_OWNER, NULL);
147
148         /* Step 0: tell vhost to create queues */
149         if (virtio_user_queue_setup(dev, virtio_user_create_queue) < 0)
150                 goto error;
151
152         /* Step 1: set features
153          * Make sure VHOST_USER_F_PROTOCOL_FEATURES is added if mq is enabled,
154          * VIRTIO_NET_F_MAC and VIRTIO_NET_F_CTRL_VQ is stripped.
155          */
156         features = dev->features;
157         if (dev->max_queue_pairs > 1)
158                 features |= VHOST_USER_MQ;
159         features &= ~(1ull << VIRTIO_NET_F_MAC);
160         features &= ~(1ull << VIRTIO_NET_F_CTRL_VQ);
161         ret = vhost_user_sock(dev->vhostfd, VHOST_USER_SET_FEATURES, &features);
162         if (ret < 0)
163                 goto error;
164         PMD_DRV_LOG(INFO, "set features: %" PRIx64, features);
165
166         /* Step 2: share memory regions */
167         ret = vhost_user_sock(dev->vhostfd, VHOST_USER_SET_MEM_TABLE, NULL);
168         if (ret < 0)
169                 goto error;
170
171         /* Step 3: kick queues */
172         if (virtio_user_queue_setup(dev, virtio_user_kick_queue) < 0)
173                 goto error;
174
175         /* Step 4: enable queues
176          * we enable the 1st queue pair by default.
177          */
178         vhost_user_enable_queue_pair(dev->vhostfd, 0, 1);
179
180         return 0;
181 error:
182         /* TODO: free resource here or caller to check */
183         return -1;
184 }
185
186 int virtio_user_stop_device(struct virtio_user_dev *dev)
187 {
188         uint32_t i;
189
190         for (i = 0; i < dev->max_queue_pairs * 2; ++i) {
191                 close(dev->callfds[i]);
192                 close(dev->kickfds[i]);
193         }
194
195         for (i = 0; i < dev->max_queue_pairs; ++i)
196                 vhost_user_enable_queue_pair(dev->vhostfd, i, 0);
197
198         return 0;
199 }
200
201 static inline void
202 parse_mac(struct virtio_user_dev *dev, const char *mac)
203 {
204         int i, r;
205         uint32_t tmp[ETHER_ADDR_LEN];
206
207         if (!mac)
208                 return;
209
210         r = sscanf(mac, "%x:%x:%x:%x:%x:%x", &tmp[0],
211                         &tmp[1], &tmp[2], &tmp[3], &tmp[4], &tmp[5]);
212         if (r == ETHER_ADDR_LEN) {
213                 for (i = 0; i < ETHER_ADDR_LEN; ++i)
214                         dev->mac_addr[i] = (uint8_t)tmp[i];
215                 dev->mac_specified = 1;
216         } else {
217                 /* ignore the wrong mac, use random mac */
218                 PMD_DRV_LOG(ERR, "wrong format of mac: %s", mac);
219         }
220 }
221
222 int
223 virtio_user_dev_init(struct virtio_user_dev *dev, char *path, int queues,
224                      int cq, int queue_size, const char *mac)
225 {
226         uint32_t i;
227
228         snprintf(dev->path, PATH_MAX, "%s", path);
229         dev->max_queue_pairs = queues;
230         dev->queue_pairs = 1; /* mq disabled by default */
231         dev->queue_size = queue_size;
232         dev->mac_specified = 0;
233         parse_mac(dev, mac);
234         dev->vhostfd = -1;
235
236         for (i = 0; i < VIRTIO_MAX_VIRTQUEUES; ++i) {
237                 dev->kickfds[i] = -1;
238                 dev->callfds[i] = -1;
239         }
240
241         dev->vhostfd = vhost_user_setup(dev->path);
242         if (dev->vhostfd < 0) {
243                 PMD_INIT_LOG(ERR, "backend set up fails");
244                 return -1;
245         }
246
247         if (vhost_user_sock(dev->vhostfd, VHOST_USER_SET_OWNER, NULL) < 0) {
248                 PMD_INIT_LOG(ERR, "set_owner fails: %s", strerror(errno));
249                 return -1;
250         }
251
252         if (vhost_user_sock(dev->vhostfd, VHOST_USER_GET_FEATURES,
253                             &dev->device_features) < 0) {
254                 PMD_INIT_LOG(ERR, "get_features failed: %s", strerror(errno));
255                 return -1;
256         }
257         if (dev->mac_specified)
258                 dev->device_features |= (1ull << VIRTIO_NET_F_MAC);
259
260         if (cq) {
261                 /* device does not really need to know anything about CQ,
262                  * so if necessary, we just claim to support CQ
263                  */
264                 dev->device_features |= (1ull << VIRTIO_NET_F_CTRL_VQ);
265         } else {
266                 dev->device_features &= ~(1ull << VIRTIO_NET_F_CTRL_VQ);
267                 /* Also disable features depends on VIRTIO_NET_F_CTRL_VQ */
268                 dev->device_features &= ~(1ull << VIRTIO_NET_F_CTRL_RX);
269                 dev->device_features &= ~(1ull << VIRTIO_NET_F_CTRL_VLAN);
270                 dev->device_features &= ~(1ull << VIRTIO_NET_F_GUEST_ANNOUNCE);
271                 dev->device_features &= ~(1ull << VIRTIO_NET_F_MQ);
272                 dev->device_features &= ~(1ull << VIRTIO_NET_F_CTRL_MAC_ADDR);
273         }
274
275         if (dev->max_queue_pairs > 1) {
276                 if (!(dev->features & VHOST_USER_MQ)) {
277                         PMD_INIT_LOG(ERR, "MQ not supported by the backend");
278                         return -1;
279                 }
280         }
281
282         return 0;
283 }
284
285 void
286 virtio_user_dev_uninit(struct virtio_user_dev *dev)
287 {
288         close(dev->vhostfd);
289 }
290
291 static uint8_t
292 virtio_user_handle_mq(struct virtio_user_dev *dev, uint16_t q_pairs)
293 {
294         uint16_t i;
295         uint8_t ret = 0;
296
297         if (q_pairs > dev->max_queue_pairs) {
298                 PMD_INIT_LOG(ERR, "multi-q config %u, but only %u supported",
299                              q_pairs, dev->max_queue_pairs);
300                 return -1;
301         }
302
303         for (i = 0; i < q_pairs; ++i)
304                 ret |= vhost_user_enable_queue_pair(dev->vhostfd, i, 1);
305         for (i = q_pairs; i < dev->max_queue_pairs; ++i)
306                 ret |= vhost_user_enable_queue_pair(dev->vhostfd, i, 0);
307
308         dev->queue_pairs = q_pairs;
309
310         return ret;
311 }
312
313 static uint32_t
314 virtio_user_handle_ctrl_msg(struct virtio_user_dev *dev, struct vring *vring,
315                             uint16_t idx_hdr)
316 {
317         struct virtio_net_ctrl_hdr *hdr;
318         virtio_net_ctrl_ack status = ~0;
319         uint16_t i, idx_data, idx_status;
320         uint32_t n_descs = 0;
321
322         /* locate desc for header, data, and status */
323         idx_data = vring->desc[idx_hdr].next;
324         n_descs++;
325
326         i = idx_data;
327         while (vring->desc[i].flags == VRING_DESC_F_NEXT) {
328                 i = vring->desc[i].next;
329                 n_descs++;
330         }
331
332         /* locate desc for status */
333         idx_status = i;
334         n_descs++;
335
336         hdr = (void *)(uintptr_t)vring->desc[idx_hdr].addr;
337         if (hdr->class == VIRTIO_NET_CTRL_MQ &&
338             hdr->cmd == VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET) {
339                 uint16_t queues;
340
341                 queues = *(uint16_t *)(uintptr_t)vring->desc[idx_data].addr;
342                 status = virtio_user_handle_mq(dev, queues);
343         }
344
345         /* Update status */
346         *(virtio_net_ctrl_ack *)(uintptr_t)vring->desc[idx_status].addr = status;
347
348         return n_descs;
349 }
350
351 void
352 virtio_user_handle_cq(struct virtio_user_dev *dev, uint16_t queue_idx)
353 {
354         uint16_t avail_idx, desc_idx;
355         struct vring_used_elem *uep;
356         uint32_t n_descs;
357         struct vring *vring = &dev->vrings[queue_idx];
358
359         /* Consume avail ring, using used ring idx as first one */
360         while (vring->used->idx != vring->avail->idx) {
361                 avail_idx = (vring->used->idx) & (vring->num - 1);
362                 desc_idx = vring->avail->ring[avail_idx];
363
364                 n_descs = virtio_user_handle_ctrl_msg(dev, vring, desc_idx);
365
366                 /* Update used ring */
367                 uep = &vring->used->ring[avail_idx];
368                 uep->id = avail_idx;
369                 uep->len = n_descs;
370
371                 vring->used->idx++;
372         }
373 }