FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
virtio.h
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2017 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17 
18 #ifndef _VNET_DEVICES_VIRTIO_VIRTIO_H_
19 #define _VNET_DEVICES_VIRTIO_VIRTIO_H_
20 
21 #include <linux/virtio_config.h>
22 #include <linux/virtio_net.h>
23 #include <linux/virtio_pci.h>
24 #include <linux/virtio_ring.h>
25 
26 #define foreach_virtio_net_features \
27  _ (VIRTIO_NET_F_CSUM, 0) /* Host handles pkts w/ partial csum */ \
28  _ (VIRTIO_NET_F_GUEST_CSUM, 1) /* Guest handles pkts w/ partial csum */ \
29  _ (VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, 2) /* Dynamic offload configuration. */ \
30  _ (VIRTIO_NET_F_MTU, 3) /* Initial MTU advice. */ \
31  _ (VIRTIO_NET_F_MAC, 5) /* Host has given MAC address. */ \
32  _ (VIRTIO_NET_F_GSO, 6) /* Host handles pkts w/ any GSO. */ \
33  _ (VIRTIO_NET_F_GUEST_TSO4, 7) /* Guest can handle TSOv4 in. */ \
34  _ (VIRTIO_NET_F_GUEST_TSO6, 8) /* Guest can handle TSOv6 in. */ \
35  _ (VIRTIO_NET_F_GUEST_ECN, 9) /* Guest can handle TSO[6] w/ ECN in. */ \
36  _ (VIRTIO_NET_F_GUEST_UFO, 10) /* Guest can handle UFO in. */ \
37  _ (VIRTIO_NET_F_HOST_TSO4, 11) /* Host can handle TSOv4 in. */ \
38  _ (VIRTIO_NET_F_HOST_TSO6, 12) /* Host can handle TSOv6 in. */ \
39  _ (VIRTIO_NET_F_HOST_ECN, 13) /* Host can handle TSO[6] w/ ECN in. */ \
40  _ (VIRTIO_NET_F_HOST_UFO, 14) /* Host can handle UFO in. */ \
41  _ (VIRTIO_NET_F_MRG_RXBUF, 15) /* Host can merge receive buffers. */ \
42  _ (VIRTIO_NET_F_STATUS, 16) /* virtio_net_config.status available */ \
43  _ (VIRTIO_NET_F_CTRL_VQ, 17) /* Control channel available */ \
44  _ (VIRTIO_NET_F_CTRL_RX, 18) /* Control channel RX mode support */ \
45  _ (VIRTIO_NET_F_CTRL_VLAN, 19) /* Control channel VLAN filtering */ \
46  _ (VIRTIO_NET_F_CTRL_RX_EXTRA, 20) /* Extra RX mode control support */ \
47  _ (VIRTIO_NET_F_GUEST_ANNOUNCE, 21) /* Guest can announce device on the network */ \
48  _ (VIRTIO_NET_F_MQ, 22) /* Device supports Receive Flow Steering */ \
49  _ (VIRTIO_NET_F_CTRL_MAC_ADDR, 23) /* Set MAC address */ \
50  _ (VIRTIO_F_NOTIFY_ON_EMPTY, 24) \
51  _ (VHOST_F_LOG_ALL, 26) /* Log all write descriptors */ \
52  _ (VIRTIO_F_ANY_LAYOUT, 27) /* Can the device handle any descripor layout */ \
53  _ (VIRTIO_RING_F_INDIRECT_DESC, 28) /* Support indirect buffer descriptors */ \
54  _ (VIRTIO_RING_F_EVENT_IDX, 29) /* The Guest publishes the used index for which it expects an interrupt \
55  * at the end of the avail ring. Host should ignore the avail->flags field. */ \
56 /* The Host publishes the avail index for which it expects a kick \
57  * at the end of the used ring. Guest should ignore the used->flags field. */ \
58  _ (VHOST_USER_F_PROTOCOL_FEATURES, 30) \
59  _ (VIRTIO_F_VERSION_1, 32)
60 
61 
62 #define foreach_virtio_if_flag \
63  _(0, ADMIN_UP, "admin-up") \
64  _(1, DELETING, "deleting")
65 
66 typedef enum
67 {
68 #define _(a, b, c) VIRTIO_IF_FLAG_##b = (1 << a),
70 #undef _
72 
73 #define VIRTIO_NUM_RX_DESC 256
74 #define VIRTIO_NUM_TX_DESC 256
75 
76 #define VIRTIO_FEATURE(X) (1ULL << X)
77 
78 #define TX_QUEUE(X) ((X*2) + 1)
79 #define RX_QUEUE(X) (X*2)
80 #define TX_QUEUE_ACCESS(X) (X/2)
81 #define RX_QUEUE_ACCESS(X) (X/2)
82 
83 typedef enum
84 {
89 
90 
91 typedef struct
92 {
93  u8 mac[6];
98 
99 #define VIRTIO_RING_FLAG_MASK_INT 1
100 
101 typedef struct
102 {
103  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
104  struct vring_desc *desc;
105  struct vring_used *used;
106  struct vring_avail *avail;
110  int kick_fd;
111  int call_fd;
121 
122 typedef union
123 {
124  struct
125  {
128  u8 slot:5;
129  u8 function:3;
130  };
132 } pci_addr_t;
133 
134 typedef struct
135 {
136  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
138 
145  union
146  {
149  };
151  union
152  {
153  int fd;
155  };
156  union
157  {
158  int tap_fd;
160  };
163  u64 features, remote_features;
164 
165  /* error */
167  u8 support_int_mode; /* support interrupt mode */
172  u8 mac_addr[6];
176  u8 host_mac_addr[6];
183  int ifindex;
185 } virtio_if_t;
186 
187 typedef struct
188 {
189  /* logging */
191 
193 } virtio_main_t;
194 
198 
200  u16 sz);
202  u32 idx);
204  u32 idx);
206  u32 idx);
207 extern void virtio_free_used_desc (vlib_main_t * vm, virtio_vring_t * vring);
208 extern void virtio_free_rx_buffers (vlib_main_t * vm, virtio_vring_t * vring);
209 extern void virtio_set_net_hdr_size (virtio_if_t * vif);
210 extern void virtio_show (vlib_main_t * vm, u32 * hw_if_indices, u8 show_descr,
211  u32 type);
213  virtio_if_t * vif, u16 queue_id);
215 
218 {
219  if (vif->type == VIRTIO_IF_TYPE_PCI)
220  virtio_pci_legacy_notify_queue (vm, vif, vring->queue_id);
221  else
222  {
223  u64 x = 1;
224  int __clib_unused r;
225 
226  r = write (vring->kick_fd, &x, sizeof (x));
227  vring->last_kick_avail_idx = vring->avail->idx;
228  }
229 }
230 
231 #endif /* _VNET_DEVICES_VIRTIO_VIRTIO_H_ */
232 
233 /*
234  * fd.io coding-style-patch-verification: ON
235  *
236  * Local Variables:
237  * eval: (c-set-style "gnu")
238  * End:
239  */
u32 per_interface_next_index
Definition: virtio.h:150
struct vring_used * used
Definition: virtio.h:105
virtio_if_t * interfaces
Definition: virtio.h:192
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
Definition: cache.h:60
vl_api_mac_address_t mac
Definition: l2.api:490
ip4_address_t host_ip4_addr
Definition: virtio.h:177
u16 max_virtqueue_pairs
Definition: virtio.h:95
void virtio_set_net_hdr_size(virtio_if_t *vif)
Definition: virtio.c:257
void virtio_show(vlib_main_t *vm, u32 *hw_if_indices, u8 show_descr, u32 type)
Definition: virtio.c:267
clib_error_t * virtio_vring_free_rx(vlib_main_t *vm, virtio_if_t *vif, u32 idx)
Definition: virtio.c:170
clib_error_t * virtio_vring_init(vlib_main_t *vm, virtio_if_t *vif, u16 idx, u16 sz)
Definition: virtio.c:65
unsigned long u64
Definition: types.h:89
int gso_enabled
Definition: virtio.h:182
u32 host_mtu_size
Definition: virtio.h:181
u32 dev_instance
Definition: virtio.h:139
vnet_device_class_t virtio_device_class
u8 *( format_function_t)(u8 *s, va_list *args)
Definition: format.h:48
u16 domain
Definition: virtio.h:126
struct _vnet_device_class vnet_device_class_t
unsigned char u8
Definition: types.h:56
u32 msix_enabled
Definition: virtio.h:154
u32 vlib_log_class_t
Definition: vlib.h:51
u32 as_u32
Definition: virtio.h:131
struct vring_avail * avail
Definition: virtio.h:106
#define static_always_inline
Definition: clib.h:99
u32 hw_if_index
Definition: virtio.h:140
u8 host_ip6_prefix_len
Definition: virtio.h:180
u8 * host_bridge
Definition: virtio.h:175
int ifindex
Definition: virtio.h:183
u8 bus
Definition: virtio.h:127
u8 support_int_mode
Definition: virtio.h:167
clib_spinlock_t lockp
Definition: virtio.h:107
virtio_main_t virtio_main
Definition: virtio.c:37
unsigned int u32
Definition: types.h:88
void virtio_free_rx_buffers(vlib_main_t *vm, virtio_vring_t *vring)
Definition: virtio.c:155
u32 id
Definition: virtio.h:147
u16 queue_id
Definition: virtio.h:114
u16 num_txqs
Definition: virtio.h:170
vl_api_fib_path_type_t type
Definition: fib_types.api:123
virtio_if_flag_t
Definition: virtio.h:66
u32 pci_dev_handle
Definition: virtio.h:159
int tap_fd
Definition: virtio.h:158
unsigned short u16
Definition: types.h:57
pci_addr_t pci_addr
Definition: virtio.h:148
void virtio_pci_legacy_notify_queue(vlib_main_t *vm, virtio_if_t *vif, u16 queue_id)
Definition: pci.c:208
u8 buffer_pool_index
Definition: virtio.h:112
u8 status
Definition: virtio.h:171
u16 desc_next
Definition: virtio.h:109
u16 virtio_net_hdr_sz
Definition: virtio.h:143
u16 num_rxqs
Definition: virtio.h:169
virtio_vring_t * rxq_vrings
Definition: virtio.h:161
format_function_t format_virtio_device_name
Definition: virtio.h:214
u16 last_used_idx
Definition: virtio.h:118
vlib_main_t * vm
Definition: buffer.c:312
ip6_address_t host_ip6_addr
Definition: virtio.h:179
u32 call_file_index
Definition: virtio.h:116
u8 * net_ns
Definition: virtio.h:174
u32 flags
Definition: virtio.h:137
u16 last_kick_avail_idx
Definition: virtio.h:119
clib_error_t * error
Definition: virtio.h:166
vlib_log_class_t log_default
Definition: virtio.h:190
u32 numa_node
Definition: virtio.h:142
virtio_if_type_t type
Definition: virtio.h:144
u64 remote_features
Definition: virtio.h:163
void virtio_free_used_desc(vlib_main_t *vm, virtio_vring_t *vring)
Definition: virtio.c:192
vlib_node_registration_t virtio_input_node
(constructor) VLIB_REGISTER_NODE (virtio_input_node)
Definition: node.c:397
struct _vlib_node_registration vlib_node_registration_t
#define foreach_virtio_if_flag
Definition: virtio.h:62
int fd
Definition: virtio.h:153
clib_error_t * virtio_vring_free_tx(vlib_main_t *vm, virtio_if_t *vif, u32 idx)
Definition: virtio.c:218
u32 * buffers
Definition: virtio.h:117
u8 host_ip4_prefix_len
Definition: virtio.h:178
u32 sw_if_index
Definition: virtio.h:141
virtio_vring_t * cxq_vring
Definition: virtio.h:184
struct vring_desc * desc
Definition: virtio.h:104
u16 max_queue_pairs
Definition: virtio.h:168
virtio_if_type_t
Definition: virtio.h:83
void virtio_vring_set_numa_node(vlib_main_t *vm, virtio_if_t *vif, u32 idx)
Definition: virtio.c:241
u16 desc_in_use
Definition: virtio.h:108
virtio_vring_t * txq_vrings
Definition: virtio.h:162
static_always_inline void virtio_kick(vlib_main_t *vm, virtio_vring_t *vring, virtio_if_t *vif)
Definition: virtio.h:217
u8 * host_if_name
Definition: virtio.h:173