blob: 127b0a27fc7f1c7a5509fab4aa99615b9bc032be [file] [log] [blame]
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +01001/*
2 * Copyright (c) 2015-2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
Steven Luongbc0d9ff2020-03-23 09:34:59 -070016option version = "4.0.1";
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +020017
18import "vnet/interface_types.api";
19import "vnet/ethernet/ethernet_types.api";
20import "vnet/devices/virtio/virtio_types.api";
Dave Barach0d056e52017-09-28 15:11:16 -040021
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010022/** \brief vhost-user interface create request
23 @param client_index - opaque cookie to identify the sender
24 @param is_server - our side is socket server
25 @param sock_filename - unix socket filename, used to speak with frontend
26 @param use_custom_mac - enable or disable the use of the provided hardware address
Mohsin Kazmiee2e58f2018-08-21 16:07:03 +020027 @param disable_mrg_rxbuf - disable the use of merge receive buffers
28 @param disable_indirect_desc - disable the use of indirect descriptors which driver can use
Steven Luong4208a4c2019-05-06 08:51:56 -070029 @param enable_gso - enable gso support (default 0)
Steven Luongbc0d9ff2020-03-23 09:34:59 -070030 @param enable_packed - enable packed ring support (default 0)
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010031 @param mac_address - hardware address to use if 'use_custom_mac' is set
32*/
33define create_vhost_user_if
34{
35 u32 client_index;
36 u32 context;
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +020037 bool is_server;
38 string sock_filename[256];
39 bool renumber;
40 bool disable_mrg_rxbuf;
41 bool disable_indirect_desc;
42 bool enable_gso;
Steven Luongbc0d9ff2020-03-23 09:34:59 -070043 bool enable_packed;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010044 u32 custom_dev_instance;
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +020045 bool use_custom_mac;
46 vl_api_mac_address_t mac_address;
47 string tag[64];
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010048};
49
50/** \brief vhost-user interface create response
51 @param context - sender context, to match reply w/ request
52 @param retval - return code for the request
53 @param sw_if_index - interface the operation is applied to
54*/
55define create_vhost_user_if_reply
56{
57 u32 context;
58 i32 retval;
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +020059 vl_api_interface_index_t sw_if_index;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010060};
61
62/** \brief vhost-user interface modify request
63 @param client_index - opaque cookie to identify the sender
64 @param is_server - our side is socket server
65 @param sock_filename - unix socket filename, used to speak with frontend
Steven Luong4208a4c2019-05-06 08:51:56 -070066 @param enable_gso - enable gso support (default 0)
Steven Luongbc0d9ff2020-03-23 09:34:59 -070067 @param enable_packed - enable packed ring support (default 0)
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010068*/
Dave Barach11b8dbf2017-04-24 10:46:54 -040069autoreply define modify_vhost_user_if
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010070{
71 u32 client_index;
72 u32 context;
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +020073 vl_api_interface_index_t sw_if_index;
74 bool is_server;
75 string sock_filename[256];
76 bool renumber;
77 bool enable_gso;
Steven Luongbc0d9ff2020-03-23 09:34:59 -070078 bool enable_packed;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010079 u32 custom_dev_instance;
80};
81
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010082/** \brief vhost-user interface delete request
83 @param client_index - opaque cookie to identify the sender
84*/
Dave Barach11b8dbf2017-04-24 10:46:54 -040085autoreply define delete_vhost_user_if
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010086{
87 u32 client_index;
88 u32 context;
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +020089 vl_api_interface_index_t sw_if_index;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010090};
91
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010092/** \brief Vhost-user interface details structure (fix this)
93 @param sw_if_index - index of the interface
94 @param interface_name - name of interface
95 @param virtio_net_hdr_sz - net header size
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +020096 @param features_first_32 - interface features, first 32 bits
97 @param features_last_32 - interface features, last 32 bits
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010098 @param is_server - vhost-user server socket
99 @param sock_filename - socket filename
100 @param num_regions - number of used memory regions
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200101 @param sock_errno - socket errno
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100102*/
103define sw_interface_vhost_user_details
104{
105 u32 context;
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200106 vl_api_interface_index_t sw_if_index;
107 string interface_name[64];
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100108 u32 virtio_net_hdr_sz;
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200109 vl_api_virtio_net_features_first_32_t features_first_32;
110 vl_api_virtio_net_features_last_32_t features_last_32;
111 bool is_server;
112 string sock_filename[256];
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100113 u32 num_regions;
114 i32 sock_errno;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100115};
116
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200117/** \brief Vhost-user interface dump request
118 @param sw_if_index - filter by sw_if_index UNIMPLEMENTED
119*/
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100120define sw_interface_vhost_user_dump
121{
122 u32 client_index;
123 u32 context;
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200124 vl_api_interface_index_t sw_if_index [default=0xffffffff];
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100125};
126/*
127 * Local Variables:
128 * eval: (c-set-style "gnu")
129 * End:
130 */