FD.io VPP  v17.04-9-g99c0734
Vector Packet Processing
interface.api
Go to the documentation of this file.
1 /** \brief Set flags on the interface
2  @param client_index - opaque cookie to identify the sender
3  @param context - sender context, to match reply w/ request
4  @param sw_if_index - index of the interface to set flags on
5  @param admin_up_down - set the admin state, 1 = up, 0 = down
6  @param link_up_down - Oper state sent on change event, not used in config.
7  @param deleted - interface was deleted
8 */
9 define sw_interface_set_flags
10 {
14  /* 1 = up, 0 = down */
18 };
19 
20 /** \brief Reply to sw_interface_set_flags
21  @param context - sender context which was passed in the request
22  @param retval - return code of the set flags request
23 */
24 define sw_interface_set_flags_reply
25 {
28 };
29 
30 /** \brief Set interface MTU
31  @param client_index - opaque cookie to identify the sender
32  @param context - sender context, to match reply w/ request
33  @param sw_if_index - index of the interface to set MTU on
34  @param mtu - MTU
35 */
36 define sw_interface_set_mtu
37 {
42 };
43 
44 /** \brief Reply to sw_interface_set_mtu
45  @param context - sender context which was passed in the request
46  @param retval - return code of the set flags request
47 */
48 define sw_interface_set_mtu_reply
49 {
52 };
53 
54 /** \brief Register for interface events
55  @param client_index - opaque cookie to identify the sender
56  @param context - sender context, to match reply w/ request
57  @param enable_disable - 1 => register for events, 0 => cancel registration
58  @param pid - sender's pid
59 */
60 define want_interface_events
61 {
66 };
67 
68 /** \brief Reply for interface events registration
69  @param context - returned sender context, to match reply w/ request
70  @param retval - return code
71 */
72 define want_interface_events_reply
73 {
76 };
77 
78 /** \brief Interface details structure (fix this)
79  @param sw_if_index - index of the interface
80  @param sup_sw_if_index - index of parent interface if any, else same as sw_if_index
81  @param l2_address_length - length of the interface's l2 address
82  @param pid - the interface's l2 address
83  @param interface_name - name of the interface
84  @param link_duplex - 1 if half duplex, 2 if full duplex
85  @param link_speed - 1 = 10M, 2 = 100M, 4 = 1G, 8 = 10G, 16 = 40G, 32 = 100G
86  @param link_MTU - max. transmittion unit
87  @param sub_if_id - A number 0-N to uniquely identify this subif on super if
88  @param sub_dot1ad - 0 = dot1q, 1 = dot1ad
89  @param sub_dot1ah - 1 = dot1ah, 0 = otherwise
90  @param sub_number_of_tags - Number of tags (0 - 2)
91  @param sub_outer_vlan_id
92  @param sub_inner_vlan_id
93  @param sub_exact_match
94  @param sub_default
95  @param sub_outer_vlan_id_any
96  @param sub_inner_vlan_id_any
97  @param vtr_op - vlan tag rewrite operation
98  @param vtr_push_dot1q
99  @param vtr_tag1
100  @param vtr_tag2
101  @param pbb_outer_tag - translate pbb s-tag
102  @param pbb_b_dmac[6] - B-tag remote mac address
103  @param pbb_b_smac[6] - B-tag local mac address
104  @param pbb_b_vlanid - B-tag vlanid
105  @param pbb_i_sid - I-tag service id
106 */
107 define sw_interface_details
108 {
111 
112  /* index of sup interface (e.g. hw interface).
113  equal to sw_if_index for super hw interface. */
115 
116  /* Layer 2 address, if applicable */
118  u8 l2_address[8];
119 
120  /* Interface name */
121  u8 interface_name[64];
122 
123  /* 1 = up, 0 = down */
126 
127  /* 1 = half duplex, 2 = full duplex */
129 
130  /* 1 = 10M, 2 = 100M, 4 = 1G, 8 = 10G, 16 = 40G, 32 = 100G */
132 
133  /* MTU */
135 
136  /* Subinterface ID. A number 0-N to uniquely identify this subinterface under the super interface */
138 
139  /* 0 = dot1q, 1=dot1ad */
141  /* 1 = dot1h, 1=otherwise */
143 
144  /* Number of tags 0-2 */
152 
153  /* vlan tag rewrite state */
155  u32 vtr_push_dot1q; // ethertype of first pushed tag is dot1q/dot1ad
156  u32 vtr_tag1; // first pushed tag
157  u32 vtr_tag2; // second pushed tag
158  u8 tag[64];
159 
160  /* pbb tag rewrite info */
162  u8 b_dmac[6];
163  u8 b_smac[6];
166 };
167 
168 /* works */
169 define sw_interface_dump
170 {
174  u8 name_filter[49];
175 };
176 
177 /** \brief Set or delete one or all ip addresses on a specified interface
178  @param client_index - opaque cookie to identify the sender
179  @param context - sender context, to match reply w/ request
180  @param sw_if_index - index of the interface to add/del addresses
181  @param is_add - add address if non-zero, else delete
182  @param is_ipv6 - if non-zero the address is ipv6, else ipv4
183  @param del_all - if non-zero delete all addresses on the interface
184  @param address_length - address length in bytes, 4 for ip4, 16 for ip6
185  @param address - array of address bytes
186 */
187 define sw_interface_add_del_address
188 {
196  u8 address[16];
197 };
198 
199 /** \brief Reply to sw_interface_add_del_address
200  @param context - returned sender context, to match reply w/ request
201  @param retval - return code
202 */
203 define sw_interface_add_del_address_reply
204 {
207 };
208 
209 /** \brief Associate the specified interface with a fib table
210  @param client_index - opaque cookie to identify the sender
211  @param context - sender context, to match reply w/ request
212  @param sw_if_index - index of the interface
213  @param is_ipv6 - if non-zero ipv6, else ipv4
214  @param vrf_id - fib table/vrd id to associate the interface with
215 */
216 define sw_interface_set_table
217 {
223 };
224 
225 /** \brief Reply to sw_interface_set_table
226  @param context - returned sender context, to match reply w/ request
227  @param retval - return code
228 */
229 define sw_interface_set_table_reply
230 {
233 };
234 
235 /** \brief Get VRF id assigned to interface
236  @param client_index - opaque cookie to identify the sender
237  @param context - sender context, to match reply w/ request
238  @param sw_if_index - index of the interface
239 */
240 define sw_interface_get_table
241 {
246 };
247 
248 /** \brief Reply to get_sw_interface_vrf
249  @param context - sender context which was passed in the request
250  @param vrf_id - VRF id assigned to the interface
251 */
252 define sw_interface_get_table_reply
253 {
257 };
258 
259 /** \brief Stats counters structure
260  @param vnet_counter_type- such as ip4, ip6, punts, etc
261  @param is_combined - rx & tx total (all types) counts
262  @param first_sw_if_index - first sw index in block of index, counts
263  @param count - number of interfaces this stats block includes counters for
264  @param data - contiguous block of vlib_counter_t structures
265 */
266 define vnet_interface_counters
267 {
268  /* enums - plural - in vnet/interface.h */
273  u8 data[count];
274 };
275 
276 /** \brief Set unnumbered interface add / del request
277  @param client_index - opaque cookie to identify the sender
278  @param context - sender context, to match reply w/ request
279  @param sw_if_index - interface with an IP address
280  @param unnumbered_sw_if_index - interface which will use the address
281  @param is_add - if non-zero set the association, else unset it
282 */
283 define sw_interface_set_unnumbered
284 {
287  u32 sw_if_index; /* use this intfc address */
288  u32 unnumbered_sw_if_index; /* on this interface */
290 };
291 
292 /** \brief Set unnumbered interface add / del response
293  @param context - sender context, to match reply w/ request
294  @param retval - return code for the request
295 */
296 define sw_interface_set_unnumbered_reply
297 {
300 };
301 
302 /** \brief Clear interface statistics
303  @param client_index - opaque cookie to identify the sender
304  @param context - sender context, to match reply w/ request
305  @param sw_if_index - index of the interface to clear statistics
306 */
307 define sw_interface_clear_stats
308 {
312 };
313 
314 /** \brief Reply to sw_interface_clear_stats
315  @param context - sender context which was passed in the request
316  @param retval - return code of the set flags request
317 */
318 define sw_interface_clear_stats_reply
319 {
322 };
323 
324 /** \brief Set / clear software interface tag
325  @param client_index - opaque cookie to identify the sender
326  @param context - sender context, to match reply w/ request
327  @param sw_if_index - the interface
328  @param add_del - 1 = add, 0 = delete
329  @param tag - an ascii tag
330 */
331 define sw_interface_tag_add_del
332 {
337  u8 tag[64];
338 };
339 
340 /** \brief Reply to set / clear software interface tag
341  @param context - sender context which was passed in the request
342  @param retval - return code for the request
343 */
344 define sw_interface_tag_add_del_reply
345 {
348 };
349 /*
350  * Local Variables:
351  * eval: (c-set-style "gnu")
352  * End:
353  */
354 
int i32
Definition: types.h:81
unsigned int u32
Definition: types.h:88
unsigned short u16
Definition: types.h:57
unsigned char u8
Definition: types.h:56