2 * netmap access for qemu
4 * Copyright (c) 2012-2013 Luigi Rizzo
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include <sys/ioctl.h>
31 #define NETMAP_WITH_LIBS
32 #include <net/netmap.h>
33 #include <net/netmap_user.h>
38 #include "sysemu/sysemu.h"
39 #include "qemu/error-report.h"
42 /* Private netmap device info. */
43 typedef struct NetmapPriv
{
47 struct netmap_if
*nifp
;
48 struct netmap_ring
*rx
;
49 struct netmap_ring
*tx
;
50 char fdname
[PATH_MAX
]; /* Normally "/dev/netmap". */
51 char ifname
[IFNAMSIZ
];
54 typedef struct NetmapState
{
59 struct iovec iov
[IOV_MAX
];
60 int vnet_hdr_len
; /* Current virtio-net header length. */
64 #define pkt_copy bcopy
66 /* A fast copy routine only for multiples of 64 bytes, non overlapped. */
68 pkt_copy(const void *_src
, void *_dst
, int l
)
70 const uint64_t *src
= _src
;
72 if (unlikely(l
>= 1024)) {
76 for (; l
> 0; l
-= 64) {
87 #endif /* __FreeBSD__ */
90 * Open a netmap device. We assume there is only one queue
91 * (which is the case for the VALE bridge).
93 static int netmap_open(NetmapPriv
*me
)
100 me
->fd
= fd
= open(me
->fdname
, O_RDWR
);
102 error_report("Unable to open netmap device '%s' (%s)",
103 me
->fdname
, strerror(errno
));
106 memset(&req
, 0, sizeof(req
));
107 pstrcpy(req
.nr_name
, sizeof(req
.nr_name
), me
->ifname
);
108 req
.nr_ringid
= NETMAP_NO_TX_POLL
;
109 req
.nr_version
= NETMAP_API
;
110 err
= ioctl(fd
, NIOCREGIF
, &req
);
112 error_report("Unable to register %s: %s", me
->ifname
, strerror(errno
));
115 l
= me
->memsize
= req
.nr_memsize
;
117 me
->mem
= mmap(0, l
, PROT_WRITE
| PROT_READ
, MAP_SHARED
, fd
, 0);
118 if (me
->mem
== MAP_FAILED
) {
119 error_report("Unable to mmap netmap shared memory: %s",
125 me
->nifp
= NETMAP_IF(me
->mem
, req
.nr_offset
);
126 me
->tx
= NETMAP_TXRING(me
->nifp
, 0);
127 me
->rx
= NETMAP_RXRING(me
->nifp
, 0);
135 static void netmap_send(void *opaque
);
136 static void netmap_writable(void *opaque
);
138 /* Set the event-loop handlers for the netmap backend. */
139 static void netmap_update_fd_handler(NetmapState
*s
)
141 qemu_set_fd_handler(s
->me
.fd
,
142 s
->read_poll
? netmap_send
: NULL
,
143 s
->write_poll
? netmap_writable
: NULL
,
147 /* Update the read handler. */
148 static void netmap_read_poll(NetmapState
*s
, bool enable
)
150 if (s
->read_poll
!= enable
) { /* Do nothing if not changed. */
151 s
->read_poll
= enable
;
152 netmap_update_fd_handler(s
);
156 /* Update the write handler. */
157 static void netmap_write_poll(NetmapState
*s
, bool enable
)
159 if (s
->write_poll
!= enable
) {
160 s
->write_poll
= enable
;
161 netmap_update_fd_handler(s
);
165 static void netmap_poll(NetClientState
*nc
, bool enable
)
167 NetmapState
*s
= DO_UPCAST(NetmapState
, nc
, nc
);
169 if (s
->read_poll
!= enable
|| s
->write_poll
!= enable
) {
170 s
->write_poll
= enable
;
171 s
->read_poll
= enable
;
172 netmap_update_fd_handler(s
);
177 * The fd_write() callback, invoked if the fd is marked as
178 * writable after a poll. Unregister the handler and flush any
181 static void netmap_writable(void *opaque
)
183 NetmapState
*s
= opaque
;
185 netmap_write_poll(s
, false);
186 qemu_flush_queued_packets(&s
->nc
);
189 static ssize_t
netmap_receive(NetClientState
*nc
,
190 const uint8_t *buf
, size_t size
)
192 NetmapState
*s
= DO_UPCAST(NetmapState
, nc
, nc
);
193 struct netmap_ring
*ring
= s
->me
.tx
;
198 if (unlikely(!ring
)) {
203 if (unlikely(size
> ring
->nr_buf_size
)) {
204 RD(5, "[netmap_receive] drop packet of size %d > %d\n",
205 (int)size
, ring
->nr_buf_size
);
209 if (nm_ring_empty(ring
)) {
210 /* No available slots in the netmap TX ring. */
211 netmap_write_poll(s
, true);
216 idx
= ring
->slot
[i
].buf_idx
;
217 dst
= (uint8_t *)NETMAP_BUF(ring
, idx
);
219 ring
->slot
[i
].len
= size
;
220 ring
->slot
[i
].flags
= 0;
221 pkt_copy(buf
, dst
, size
);
222 ring
->cur
= ring
->head
= nm_ring_next(ring
, i
);
223 ioctl(s
->me
.fd
, NIOCTXSYNC
, NULL
);
228 static ssize_t
netmap_receive_iov(NetClientState
*nc
,
229 const struct iovec
*iov
, int iovcnt
)
231 NetmapState
*s
= DO_UPCAST(NetmapState
, nc
, nc
);
232 struct netmap_ring
*ring
= s
->me
.tx
;
239 if (unlikely(!ring
)) {
240 /* Drop the packet. */
241 return iov_size(iov
, iovcnt
);
244 last
= i
= ring
->cur
;
246 if (nm_ring_space(ring
) < iovcnt
) {
247 /* Not enough netmap slots. */
248 netmap_write_poll(s
, true);
252 for (j
= 0; j
< iovcnt
; j
++) {
253 int iov_frag_size
= iov
[j
].iov_len
;
257 /* Split each iovec fragment over more netmap slots, if
259 while (iov_frag_size
) {
260 nm_frag_size
= MIN(iov_frag_size
, ring
->nr_buf_size
);
262 if (unlikely(nm_ring_empty(ring
))) {
263 /* We run out of netmap slots while splitting the
265 netmap_write_poll(s
, true);
269 idx
= ring
->slot
[i
].buf_idx
;
270 dst
= (uint8_t *)NETMAP_BUF(ring
, idx
);
272 ring
->slot
[i
].len
= nm_frag_size
;
273 ring
->slot
[i
].flags
= NS_MOREFRAG
;
274 pkt_copy(iov
[j
].iov_base
+ offset
, dst
, nm_frag_size
);
277 i
= nm_ring_next(ring
, i
);
279 offset
+= nm_frag_size
;
280 iov_frag_size
-= nm_frag_size
;
283 /* The last slot must not have NS_MOREFRAG set. */
284 ring
->slot
[last
].flags
&= ~NS_MOREFRAG
;
286 /* Now update ring->cur and ring->head. */
287 ring
->cur
= ring
->head
= i
;
289 ioctl(s
->me
.fd
, NIOCTXSYNC
, NULL
);
291 return iov_size(iov
, iovcnt
);
294 /* Complete a previous send (backend --> guest) and enable the
296 static void netmap_send_completed(NetClientState
*nc
, ssize_t len
)
298 NetmapState
*s
= DO_UPCAST(NetmapState
, nc
, nc
);
300 netmap_read_poll(s
, true);
303 static void netmap_send(void *opaque
)
305 NetmapState
*s
= opaque
;
306 struct netmap_ring
*ring
= s
->me
.rx
;
308 /* Keep sending while there are available packets into the netmap
309 RX ring and the forwarding path towards the peer is open. */
310 while (!nm_ring_empty(ring
)) {
319 idx
= ring
->slot
[i
].buf_idx
;
320 morefrag
= (ring
->slot
[i
].flags
& NS_MOREFRAG
);
321 s
->iov
[iovcnt
].iov_base
= (u_char
*)NETMAP_BUF(ring
, idx
);
322 s
->iov
[iovcnt
].iov_len
= ring
->slot
[i
].len
;
325 ring
->cur
= ring
->head
= nm_ring_next(ring
, i
);
326 } while (!nm_ring_empty(ring
) && morefrag
);
328 if (unlikely(nm_ring_empty(ring
) && morefrag
)) {
329 RD(5, "[netmap_send] ran out of slots, with a pending"
330 "incomplete packet\n");
333 iovsize
= qemu_sendv_packet_async(&s
->nc
, s
->iov
, iovcnt
,
334 netmap_send_completed
);
337 /* The peer does not receive anymore. Packet is queued, stop
338 * reading from the backend until netmap_send_completed()
340 netmap_read_poll(s
, false);
346 /* Flush and close. */
347 static void netmap_cleanup(NetClientState
*nc
)
349 NetmapState
*s
= DO_UPCAST(NetmapState
, nc
, nc
);
351 qemu_purge_queued_packets(nc
);
353 netmap_poll(nc
, false);
354 munmap(s
->me
.mem
, s
->me
.memsize
);
360 /* Offloading manipulation support callbacks. */
361 static bool netmap_has_ufo(NetClientState
*nc
)
366 static bool netmap_has_vnet_hdr(NetClientState
*nc
)
371 static bool netmap_has_vnet_hdr_len(NetClientState
*nc
, int len
)
373 return len
== 0 || len
== sizeof(struct virtio_net_hdr
) ||
374 len
== sizeof(struct virtio_net_hdr_mrg_rxbuf
);
377 static void netmap_using_vnet_hdr(NetClientState
*nc
, bool enable
)
381 static void netmap_set_vnet_hdr_len(NetClientState
*nc
, int len
)
383 NetmapState
*s
= DO_UPCAST(NetmapState
, nc
, nc
);
387 /* Issue a NETMAP_BDG_VNET_HDR command to change the virtio-net header
388 * length for the netmap adapter associated to 'me->ifname'.
390 memset(&req
, 0, sizeof(req
));
391 pstrcpy(req
.nr_name
, sizeof(req
.nr_name
), s
->me
.ifname
);
392 req
.nr_version
= NETMAP_API
;
393 req
.nr_cmd
= NETMAP_BDG_VNET_HDR
;
395 err
= ioctl(s
->me
.fd
, NIOCREGIF
, &req
);
397 error_report("Unable to execute NETMAP_BDG_VNET_HDR on %s: %s",
398 s
->me
.ifname
, strerror(errno
));
400 /* Keep track of the current length. */
401 s
->vnet_hdr_len
= len
;
405 static void netmap_set_offload(NetClientState
*nc
, int csum
, int tso4
, int tso6
,
408 NetmapState
*s
= DO_UPCAST(NetmapState
, nc
, nc
);
410 /* Setting a virtio-net header length greater than zero automatically
411 * enables the offloadings.
413 if (!s
->vnet_hdr_len
) {
414 netmap_set_vnet_hdr_len(nc
, sizeof(struct virtio_net_hdr
));
418 /* NetClientInfo methods */
419 static NetClientInfo net_netmap_info
= {
420 .type
= NET_CLIENT_OPTIONS_KIND_NETMAP
,
421 .size
= sizeof(NetmapState
),
422 .receive
= netmap_receive
,
423 .receive_iov
= netmap_receive_iov
,
425 .cleanup
= netmap_cleanup
,
426 .has_ufo
= netmap_has_ufo
,
427 .has_vnet_hdr
= netmap_has_vnet_hdr
,
428 .has_vnet_hdr_len
= netmap_has_vnet_hdr_len
,
429 .using_vnet_hdr
= netmap_using_vnet_hdr
,
430 .set_offload
= netmap_set_offload
,
431 .set_vnet_hdr_len
= netmap_set_vnet_hdr_len
,
434 /* The exported init function
436 * ... -net netmap,ifname="..."
438 int net_init_netmap(const NetClientOptions
*opts
,
439 const char *name
, NetClientState
*peer
, Error
**errp
)
441 /* FIXME error_setg(errp, ...) on failure */
442 const NetdevNetmapOptions
*netmap_opts
= opts
->netmap
;
447 pstrcpy(me
.fdname
, sizeof(me
.fdname
),
448 netmap_opts
->has_devname
? netmap_opts
->devname
: "/dev/netmap");
449 /* Set default name for the port if not supplied. */
450 pstrcpy(me
.ifname
, sizeof(me
.ifname
), netmap_opts
->ifname
);
451 if (netmap_open(&me
)) {
454 /* Create the object. */
455 nc
= qemu_new_net_client(&net_netmap_info
, peer
, "netmap", name
);
456 s
= DO_UPCAST(NetmapState
, nc
, nc
);
459 netmap_read_poll(s
, true); /* Initially only poll for reads. */