2 * xen paravirt network card backend
4 * (c) Gerd Hoffmann <kraxel@redhat.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; under version 2 of the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, see <http://www.gnu.org/licenses/>.
18 * Contributions after 2012-01-13 are licensed under the terms of the
19 * GNU GPL, version 2 or (at your option) any later version.
22 #include "qemu/osdep.h"
23 #include <sys/socket.h>
24 #include <sys/ioctl.h>
29 #include "net/checksum.h"
31 #include "hw/xen/xen-legacy-backend.h"
33 #include "hw/xen/interface/io/netif.h"
35 /* ------------------------------------------------------------- */
38 struct XenLegacyDevice xendev
; /* must be first */
43 struct netif_tx_sring
*txs
;
44 struct netif_rx_sring
*rxs
;
45 netif_tx_back_ring_t tx_ring
;
46 netif_rx_back_ring_t rx_ring
;
51 /* ------------------------------------------------------------- */
53 static void net_tx_response(struct XenNetDev
*netdev
, netif_tx_request_t
*txp
, int8_t st
)
55 RING_IDX i
= netdev
->tx_ring
.rsp_prod_pvt
;
56 netif_tx_response_t
*resp
;
59 resp
= RING_GET_RESPONSE(&netdev
->tx_ring
, i
);
64 if (txp
->flags
& NETTXF_extra_info
) {
65 RING_GET_RESPONSE(&netdev
->tx_ring
, ++i
)->status
= NETIF_RSP_NULL
;
69 netdev
->tx_ring
.rsp_prod_pvt
= ++i
;
70 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&netdev
->tx_ring
, notify
);
72 xen_pv_send_notify(&netdev
->xendev
);
75 if (i
== netdev
->tx_ring
.req_cons
) {
77 RING_FINAL_CHECK_FOR_REQUESTS(&netdev
->tx_ring
, more_to_do
);
84 static void net_tx_error(struct XenNetDev
*netdev
, netif_tx_request_t
*txp
, RING_IDX end
)
88 * Hmm, why netback fails everything in the ring?
89 * Should we do that even when not supporting SG and TSO?
91 RING_IDX cons
= netdev
->tx_ring
.req_cons
;
94 make_tx_response(netif
, txp
, NETIF_RSP_ERROR
);
98 txp
= RING_GET_REQUEST(&netdev
->tx_ring
, cons
++);
100 netdev
->tx_ring
.req_cons
= cons
;
101 netif_schedule_work(netif
);
104 net_tx_response(netdev
, txp
, NETIF_RSP_ERROR
);
108 static void net_tx_packets(struct XenNetDev
*netdev
)
110 netif_tx_request_t txreq
;
116 rc
= netdev
->tx_ring
.req_cons
;
117 rp
= netdev
->tx_ring
.sring
->req_prod
;
118 xen_rmb(); /* Ensure we see queued requests up to 'rp'. */
121 if (RING_REQUEST_CONS_OVERFLOW(&netdev
->tx_ring
, rc
)) {
124 memcpy(&txreq
, RING_GET_REQUEST(&netdev
->tx_ring
, rc
), sizeof(txreq
));
125 netdev
->tx_ring
.req_cons
= ++rc
;
128 /* should not happen in theory, we don't announce the *
129 * feature-{sg,gso,whatelse} flags in xenstore (yet?) */
130 if (txreq
.flags
& NETTXF_extra_info
) {
131 xen_pv_printf(&netdev
->xendev
, 0, "FIXME: extra info flag\n");
132 net_tx_error(netdev
, &txreq
, rc
);
135 if (txreq
.flags
& NETTXF_more_data
) {
136 xen_pv_printf(&netdev
->xendev
, 0, "FIXME: more data flag\n");
137 net_tx_error(netdev
, &txreq
, rc
);
142 if (txreq
.size
< 14) {
143 xen_pv_printf(&netdev
->xendev
, 0, "bad packet size: %d\n",
145 net_tx_error(netdev
, &txreq
, rc
);
149 if ((txreq
.offset
+ txreq
.size
) > XC_PAGE_SIZE
) {
150 xen_pv_printf(&netdev
->xendev
, 0, "error: page crossing\n");
151 net_tx_error(netdev
, &txreq
, rc
);
155 xen_pv_printf(&netdev
->xendev
, 3,
156 "tx packet ref %d, off %d, len %d, flags 0x%x%s%s%s%s\n",
157 txreq
.gref
, txreq
.offset
, txreq
.size
, txreq
.flags
,
158 (txreq
.flags
& NETTXF_csum_blank
) ? " csum_blank" : "",
159 (txreq
.flags
& NETTXF_data_validated
) ? " data_validated" : "",
160 (txreq
.flags
& NETTXF_more_data
) ? " more_data" : "",
161 (txreq
.flags
& NETTXF_extra_info
) ? " extra_info" : "");
163 page
= xen_be_map_grant_ref(&netdev
->xendev
, txreq
.gref
,
166 xen_pv_printf(&netdev
->xendev
, 0,
167 "error: tx gref dereference failed (%d)\n",
169 net_tx_error(netdev
, &txreq
, rc
);
172 if (txreq
.flags
& NETTXF_csum_blank
) {
173 /* have read-only mapping -> can't fill checksum in-place */
175 tmpbuf
= g_malloc(XC_PAGE_SIZE
);
177 memcpy(tmpbuf
, page
+ txreq
.offset
, txreq
.size
);
178 net_checksum_calculate(tmpbuf
, txreq
.size
);
179 qemu_send_packet(qemu_get_queue(netdev
->nic
), tmpbuf
,
182 qemu_send_packet(qemu_get_queue(netdev
->nic
),
183 page
+ txreq
.offset
, txreq
.size
);
185 xen_be_unmap_grant_ref(&netdev
->xendev
, page
);
186 net_tx_response(netdev
, &txreq
, NETIF_RSP_OKAY
);
188 if (!netdev
->tx_work
) {
196 /* ------------------------------------------------------------- */
198 static void net_rx_response(struct XenNetDev
*netdev
,
199 netif_rx_request_t
*req
, int8_t st
,
200 uint16_t offset
, uint16_t size
,
203 RING_IDX i
= netdev
->rx_ring
.rsp_prod_pvt
;
204 netif_rx_response_t
*resp
;
207 resp
= RING_GET_RESPONSE(&netdev
->rx_ring
, i
);
208 resp
->offset
= offset
;
211 resp
->status
= (int16_t)size
;
213 resp
->status
= (int16_t)st
;
216 xen_pv_printf(&netdev
->xendev
, 3,
217 "rx response: idx %d, status %d, flags 0x%x\n",
218 i
, resp
->status
, resp
->flags
);
220 netdev
->rx_ring
.rsp_prod_pvt
= ++i
;
221 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&netdev
->rx_ring
, notify
);
223 xen_pv_send_notify(&netdev
->xendev
);
227 #define NET_IP_ALIGN 2
229 static ssize_t
net_rx_packet(NetClientState
*nc
, const uint8_t *buf
, size_t size
)
231 struct XenNetDev
*netdev
= qemu_get_nic_opaque(nc
);
232 netif_rx_request_t rxreq
;
236 if (netdev
->xendev
.be_state
!= XenbusStateConnected
) {
240 rc
= netdev
->rx_ring
.req_cons
;
241 rp
= netdev
->rx_ring
.sring
->req_prod
;
242 xen_rmb(); /* Ensure we see queued requests up to 'rp'. */
244 if (rc
== rp
|| RING_REQUEST_CONS_OVERFLOW(&netdev
->rx_ring
, rc
)) {
247 if (size
> XC_PAGE_SIZE
- NET_IP_ALIGN
) {
248 xen_pv_printf(&netdev
->xendev
, 0, "packet too big (%lu > %ld)",
249 (unsigned long)size
, XC_PAGE_SIZE
- NET_IP_ALIGN
);
253 memcpy(&rxreq
, RING_GET_REQUEST(&netdev
->rx_ring
, rc
), sizeof(rxreq
));
254 netdev
->rx_ring
.req_cons
= ++rc
;
256 page
= xen_be_map_grant_ref(&netdev
->xendev
, rxreq
.gref
, PROT_WRITE
);
258 xen_pv_printf(&netdev
->xendev
, 0,
259 "error: rx gref dereference failed (%d)\n",
261 net_rx_response(netdev
, &rxreq
, NETIF_RSP_ERROR
, 0, 0, 0);
264 memcpy(page
+ NET_IP_ALIGN
, buf
, size
);
265 xen_be_unmap_grant_ref(&netdev
->xendev
, page
);
266 net_rx_response(netdev
, &rxreq
, NETIF_RSP_OKAY
, NET_IP_ALIGN
, size
, 0);
271 /* ------------------------------------------------------------- */
273 static NetClientInfo net_xen_info
= {
274 .type
= NET_CLIENT_DRIVER_NIC
,
275 .size
= sizeof(NICState
),
276 .receive
= net_rx_packet
,
279 static int net_init(struct XenLegacyDevice
*xendev
)
281 struct XenNetDev
*netdev
= container_of(xendev
, struct XenNetDev
, xendev
);
283 /* read xenstore entries */
284 if (netdev
->mac
== NULL
) {
285 netdev
->mac
= xenstore_read_be_str(&netdev
->xendev
, "mac");
288 /* do we have all we need? */
289 if (netdev
->mac
== NULL
) {
293 if (net_parse_macaddr(netdev
->conf
.macaddr
.a
, netdev
->mac
) < 0) {
297 netdev
->nic
= qemu_new_nic(&net_xen_info
, &netdev
->conf
,
298 "xen", NULL
, netdev
);
300 snprintf(qemu_get_queue(netdev
->nic
)->info_str
,
301 sizeof(qemu_get_queue(netdev
->nic
)->info_str
),
302 "nic: xenbus vif macaddr=%s", netdev
->mac
);
305 xenstore_write_be_int(&netdev
->xendev
, "feature-rx-copy", 1);
306 xenstore_write_be_int(&netdev
->xendev
, "feature-rx-flip", 0);
311 static int net_connect(struct XenLegacyDevice
*xendev
)
313 struct XenNetDev
*netdev
= container_of(xendev
, struct XenNetDev
, xendev
);
316 if (xenstore_read_fe_int(&netdev
->xendev
, "tx-ring-ref",
317 &netdev
->tx_ring_ref
) == -1) {
320 if (xenstore_read_fe_int(&netdev
->xendev
, "rx-ring-ref",
321 &netdev
->rx_ring_ref
) == -1) {
324 if (xenstore_read_fe_int(&netdev
->xendev
, "event-channel",
325 &netdev
->xendev
.remote_port
) == -1) {
329 if (xenstore_read_fe_int(&netdev
->xendev
, "request-rx-copy", &rx_copy
) == -1) {
333 xen_pv_printf(&netdev
->xendev
, 0,
334 "frontend doesn't support rx-copy.\n");
338 netdev
->txs
= xen_be_map_grant_ref(&netdev
->xendev
,
340 PROT_READ
| PROT_WRITE
);
344 netdev
->rxs
= xen_be_map_grant_ref(&netdev
->xendev
,
346 PROT_READ
| PROT_WRITE
);
348 xen_be_unmap_grant_ref(&netdev
->xendev
, netdev
->txs
);
352 BACK_RING_INIT(&netdev
->tx_ring
, netdev
->txs
, XC_PAGE_SIZE
);
353 BACK_RING_INIT(&netdev
->rx_ring
, netdev
->rxs
, XC_PAGE_SIZE
);
355 xen_be_bind_evtchn(&netdev
->xendev
);
357 xen_pv_printf(&netdev
->xendev
, 1, "ok: tx-ring-ref %d, rx-ring-ref %d, "
358 "remote port %d, local port %d\n",
359 netdev
->tx_ring_ref
, netdev
->rx_ring_ref
,
360 netdev
->xendev
.remote_port
, netdev
->xendev
.local_port
);
362 net_tx_packets(netdev
);
366 static void net_disconnect(struct XenLegacyDevice
*xendev
)
368 struct XenNetDev
*netdev
= container_of(xendev
, struct XenNetDev
, xendev
);
370 xen_pv_unbind_evtchn(&netdev
->xendev
);
373 xen_be_unmap_grant_ref(&netdev
->xendev
, netdev
->txs
);
377 xen_be_unmap_grant_ref(&netdev
->xendev
, netdev
->rxs
);
382 static void net_event(struct XenLegacyDevice
*xendev
)
384 struct XenNetDev
*netdev
= container_of(xendev
, struct XenNetDev
, xendev
);
385 net_tx_packets(netdev
);
386 qemu_flush_queued_packets(qemu_get_queue(netdev
->nic
));
389 static int net_free(struct XenLegacyDevice
*xendev
)
391 struct XenNetDev
*netdev
= container_of(xendev
, struct XenNetDev
, xendev
);
394 qemu_del_nic(netdev
->nic
);
402 /* ------------------------------------------------------------- */
404 struct XenDevOps xen_netdev_ops
= {
405 .size
= sizeof(struct XenNetDev
),
406 .flags
= DEVOPS_FLAG_NEED_GNTDEV
,
408 .initialise
= net_connect
,
410 .disconnect
= net_disconnect
,