2 * Virtio Network Device
4 * Copyright IBM, Corp. 2007
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #ifndef QEMU_VIRTIO_NET_H
15 #define QEMU_VIRTIO_NET_H
17 #include "qemu/units.h"
18 #include "standard-headers/linux/virtio_net.h"
19 #include "hw/virtio/virtio.h"
20 #include "net/announce.h"
21 #include "qemu/option_int.h"
23 #define TYPE_VIRTIO_NET "virtio-net-device"
24 #define VIRTIO_NET(obj) \
25 OBJECT_CHECK(VirtIONet, (obj), TYPE_VIRTIO_NET)
27 #define TX_TIMER_INTERVAL 150000 /* 150 us */
29 /* Limit the number of packets that can be sent via a single flush
30 * of the TX queue. This gives us a guaranteed exit condition and
31 * ensures fairness in the io path. 256 conveniently matches the
32 * length of the TX queue and shows a good balance of performance
36 typedef struct virtio_net_conf
41 uint16_t rx_queue_size
;
42 uint16_t tx_queue_size
;
50 /* Coalesced packets type & status */
52 RSC_COALESCE
, /* Data been coalesced */
53 RSC_FINAL
, /* Will terminate current connection */
54 RSC_NO_MATCH
, /* No matched in the buffer pool */
55 RSC_BYPASS
, /* Packet to be bypass, not tcp, tcp ctrl, etc */
56 RSC_CANDIDATE
/* Data want to be coalesced */
59 typedef struct VirtioNetRscStat
{
65 uint32_t no_match_cache
;
69 uint32_t tcp_ctrl_drain
;
74 uint32_t ack_out_of_win
;
75 uint32_t data_out_of_win
;
76 uint32_t data_out_of_order
;
77 uint32_t data_after_pure_ack
;
78 uint32_t bypass_not_tcp
;
85 uint32_t purge_failed
;
86 uint32_t drain_failed
;
87 uint32_t final_failed
;
91 /* Rsc unit general info used to checking if can coalescing */
92 typedef struct VirtioNetRscUnit
{
93 void *ip
; /* ip header */
94 uint16_t *ip_plen
; /* data len pointer in ip header field */
95 struct tcp_header
*tcp
; /* tcp header */
96 uint16_t tcp_hdrlen
; /* tcp header len */
97 uint16_t payload
; /* pure payload without virtio/eth/ip/tcp */
100 /* Coalesced segment */
101 typedef struct VirtioNetRscSeg
{
102 QTAILQ_ENTRY(VirtioNetRscSeg
) next
;
107 bool is_coalesced
; /* need recal ipv4 header checksum, mark here */
108 VirtioNetRscUnit unit
;
112 typedef struct VirtIONet VirtIONet
;
114 /* Chain is divided by protocol(ipv4/v6) and NetClientInfo */
115 typedef struct VirtioNetRscChain
{
116 QTAILQ_ENTRY(VirtioNetRscChain
) next
;
117 VirtIONet
*n
; /* VirtIONet */
120 uint16_t max_payload
;
121 QEMUTimer
*drain_timer
;
122 QTAILQ_HEAD(, VirtioNetRscSeg
) buffers
;
123 VirtioNetRscStat stat
;
126 /* Maximum packet size we can receive from tap device: header + 64k */
127 #define VIRTIO_NET_MAX_BUFSIZE (sizeof(struct virtio_net_hdr) + (64 * KiB))
129 typedef struct VirtIONetQueue
{
136 VirtQueueElement
*elem
;
142 VirtIODevice parent_obj
;
143 uint8_t mac
[ETH_ALEN
];
148 /* RSC Chains - temporary storage of coalesced data,
149 all these data are lost in case of migration */
150 QTAILQ_HEAD(, VirtioNetRscChain
) rsc_chains
;
153 uint32_t has_vnet_hdr
;
155 size_t guest_hdr_len
;
156 uint64_t host_features
;
157 uint32_t rsc_timeout
;
158 uint8_t rsc4_enabled
;
159 uint8_t rsc6_enabled
;
161 uint32_t mergeable_rx_bufs
;
168 uint8_t vhost_started
;
171 uint32_t first_multi
;
172 uint8_t multi_overflow
;
173 uint8_t uni_overflow
;
177 virtio_net_conf net_conf
;
182 uint16_t curr_queues
;
184 char *netclient_name
;
185 char *netclient_type
;
186 uint64_t curr_guest_offloads
;
187 /* used on saved state restore phase to preserve the curr_guest_offloads */
188 uint64_t saved_guest_offloads
;
189 AnnounceTimer announce_timer
;
190 bool needs_vnet_hdr_swap
;
191 bool mtu_bypass_backend
;
192 QemuOpts
*primary_device_opts
;
193 QDict
*primary_device_dict
;
194 DeviceState
*primary_dev
;
195 BusState
*primary_bus
;
196 char *primary_device_id
;
198 bool primary_should_be_hidden
;
200 DeviceListener primary_listener
;
201 Notifier migration_state
;
204 void virtio_net_set_netclient_name(VirtIONet
*n
, const char *name
,