blob: 7d38ffc5bdce3ed2e01b026dcc07744552c6cd7e [file] [log] [blame]
Pavel Kotucek0f971d82017-01-03 10:48:54 +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
Neale Ranns31ed7442018-02-23 05:29:09 -080016option version = "1.1.0";
17import "vnet/fib/fib_types.api";
Dave Barach0d056e52017-09-28 15:11:16 -040018
Pavel Kotucek0f971d82017-01-03 10:48:54 +010019/** \brief Bind/Unbind an MPLS local label to an IP prefix. i.e. create
20 a per-prefix label entry.
21 @param client_index - opaque cookie to identify the sender
22 @param context - sender context, to match reply w/ request
23 @param mb_mpls_table_id - The MPLS table-id the MPLS entry will be added in
24 @param mb_label - The MPLS label value to bind
25 @param mb_ip_table_id - The IP table-id of the IP prefix to bind to.
Pavel Kotucek0f971d82017-01-03 10:48:54 +010026 @param mb_is_bind - Bind or unbind
27 @param mb_is_ip4 - The prefix to bind to is IPv4
28 @param mb_address_length - Length of IP prefix
29 @param mb_address[16] - IP prefix/
30*/
Dave Barach11b8dbf2017-04-24 10:46:54 -040031autoreply define mpls_ip_bind_unbind
Pavel Kotucek0f971d82017-01-03 10:48:54 +010032{
33 u32 client_index;
34 u32 context;
35 u32 mb_mpls_table_id;
36 u32 mb_label;
37 u32 mb_ip_table_id;
Pavel Kotucek0f971d82017-01-03 10:48:54 +010038 u8 mb_is_bind;
39 u8 mb_is_ip4;
40 u8 mb_address_length;
41 u8 mb_address[16];
42};
43
Pavel Kotucek0f971d82017-01-03 10:48:54 +010044define mpls_tunnel_add_del
45{
46 u32 client_index;
47 u32 context;
48 u32 mt_sw_if_index;
49 u8 mt_is_add;
50 u8 mt_l2_only;
Neale Ranns0f26c5a2017-03-01 15:12:11 -080051 u8 mt_is_multicast;
Pavel Kotucek0f971d82017-01-03 10:48:54 +010052 u8 mt_next_hop_proto_is_ip4;
53 u8 mt_next_hop_weight;
Neale Ranns57b58602017-07-15 07:37:25 -070054 u8 mt_next_hop_preference;
Pavel Kotucek0f971d82017-01-03 10:48:54 +010055 u8 mt_next_hop[16];
56 u8 mt_next_hop_n_out_labels;
Neale Ranns7c922dc2018-08-30 06:12:27 -070057 u32 mt_next_hop_via_label;
Pavel Kotucek0f971d82017-01-03 10:48:54 +010058 u32 mt_next_hop_sw_if_index;
59 u32 mt_next_hop_table_id;
Neale Ranns31ed7442018-02-23 05:29:09 -080060 vl_api_fib_mpls_label_t mt_next_hop_out_label_stack[mt_next_hop_n_out_labels];
Pavel Kotucek0f971d82017-01-03 10:48:54 +010061};
62
63/** \brief Reply for MPLS tunnel add / del request
64 @param context - returned sender context, to match reply w/ request
65 @param retval - return code
66 @param sw_if_index - SW interface index of the tunnel created
67*/
68define mpls_tunnel_add_del_reply
69{
70 u32 context;
71 i32 retval;
72 u32 sw_if_index;
73};
74
75/** \brief Dump mpls eth tunnel table
76 @param client_index - opaque cookie to identify the sender
77 @param tunnel_index - eth tunnel identifier or -1 in case of all tunnels
78*/
79define mpls_tunnel_dump
80{
81 u32 client_index;
82 u32 context;
83 i32 tunnel_index;
84};
85
Neale Ranns0f26c5a2017-03-01 15:12:11 -080086/** \brief mpls tunnel details
87*/
88manual_endian manual_print define mpls_tunnel_details
89{
90 u32 context;
Neale Ranns6a30b5f2018-09-25 07:22:36 -070091 u32 mt_sw_if_index;
Neale Ranns0f26c5a2017-03-01 15:12:11 -080092 u8 mt_tunnel_index;
93 u8 mt_l2_only;
94 u8 mt_is_multicast;
95 u32 mt_count;
Neale Ranns31ed7442018-02-23 05:29:09 -080096 vl_api_fib_path_t mt_paths[mt_count];
Neale Ranns0f26c5a2017-03-01 15:12:11 -080097};
98
99/** \brief MPLS Route Add / del route
100 @param client_index - opaque cookie to identify the sender
101 @param context - sender context, to match reply w/ request
Neale Ranns28ab9cc2017-08-14 07:18:42 -0700102 @param mt_table_id - The MPLS table-id the route is added in
103 @param mt_is_add - Is this a route add or delete
Neale Ranns2297af02017-09-12 09:45:04 -0700104 @param mt_name - A client provided name/tag for the table. If this
105 is not set by the client, then VPP will generate
106 something meaningfull.
Neale Ranns28ab9cc2017-08-14 07:18:42 -0700107*/
108autoreply define mpls_table_add_del
109{
110 u32 client_index;
111 u32 context;
112 u32 mt_table_id;
113 u8 mt_is_add;
Neale Ranns2297af02017-09-12 09:45:04 -0700114 u8 mt_name[64];
Neale Ranns28ab9cc2017-08-14 07:18:42 -0700115};
116
117/** \brief MPLS Route Add / del route
118 @param client_index - opaque cookie to identify the sender
119 @param context - sender context, to match reply w/ request
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800120 @param mr_label - The MPLS label value
121 @param mr_eos - The End of stack bit
122 @param mr_table_id - The MPLS table-id the route is added in
123 @param mr_classify_table_index - If this is a classify route,
124 this is the classify table index
Florin Corasd0a59722017-10-15 17:41:21 +0000125 create them
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800126 @param mr_is_add - Is this a route add or delete
127 @param mr_is_classify - Is this route result a classify
128 @param mr_is_multicast - Is this a multicast route
129 @param mr_is_multipath - Is this route update a multipath - i.e. is this
130 a path addition to an existing route
131 @param mr_is_resolve_host - Recurse resolution constraint via a host prefix
132 @param mr_is_resolve_attached - Recurse resolution constraint via attached prefix
133 @param mr_is_interface_rx - Interface Receive path
134 @param mr_is_interface_rx - RPF-ID Receive path. The next-hop interface
135 is used as the RPF-ID
Neale Rannsda78f952017-05-24 09:15:43 -0700136 @param mr_next_hop_proto - The next-hop protocol, of type dpo_proto_t
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800137 @param mr_next_hop_weight - The weight, for UCMP
138 @param mr_next_hop[16] - the nextop address
139 @param mr_next_hop_sw_if_index - the next-hop SW interface
140 @param mr_next_hop_table_id - the next-hop table-id (if appropriate)
141 @param mr_next_hop_n_out_labels - the number of labels in the label stack
142 @param mr_next_hop_out_label_stack - the next-hop output label stack, outer most first
143 @param next_hop_via_label - The next-hop is a resolved via a local label
144*/
Neale Ranns008dbe12018-09-07 09:32:36 -0700145define mpls_route_add_del
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800146{
147 u32 client_index;
148 u32 context;
149 u32 mr_label;
150 u8 mr_eos;
151 u32 mr_table_id;
152 u32 mr_classify_table_index;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800153 u8 mr_is_add;
154 u8 mr_is_classify;
155 u8 mr_is_multicast;
156 u8 mr_is_multipath;
157 u8 mr_is_resolve_host;
158 u8 mr_is_resolve_attached;
159 u8 mr_is_interface_rx;
160 u8 mr_is_rpf_id;
Neale Rannsda78f952017-05-24 09:15:43 -0700161 u8 mr_next_hop_proto;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800162 u8 mr_next_hop_weight;
Neale Ranns57b58602017-07-15 07:37:25 -0700163 u8 mr_next_hop_preference;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800164 u8 mr_next_hop[16];
165 u8 mr_next_hop_n_out_labels;
166 u32 mr_next_hop_sw_if_index;
167 u32 mr_next_hop_table_id;
168 u32 mr_next_hop_via_label;
Neale Ranns31ed7442018-02-23 05:29:09 -0800169 vl_api_fib_mpls_label_t mr_next_hop_out_label_stack[mr_next_hop_n_out_labels];
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800170};
171
Neale Ranns008dbe12018-09-07 09:32:36 -0700172define mpls_route_add_del_reply
173{
174 u32 context;
175 i32 retval;
176 u32 stats_index;
177};
178
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100179/** \brief Dump MPLS fib table
180 @param client_index - opaque cookie to identify the sender
181*/
182define mpls_fib_dump
183{
184 u32 client_index;
185 u32 context;
186};
187
188/** \brief mpls FIB table response
189 @param table_id - MPLS fib table id
190 @param s_bit - End-of-stack bit
191 @param label - MPLS label value
192 @param count - the number of fib_path in path
193 @param path - array of of fib_path structures
194*/
195manual_endian manual_print define mpls_fib_details
196{
197 u32 context;
198 u32 table_id;
Neale Ranns2297af02017-09-12 09:45:04 -0700199 u8 table_name[64];
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100200 u8 eos_bit;
201 u32 label;
202 u32 count;
Neale Ranns31ed7442018-02-23 05:29:09 -0800203 vl_api_fib_path_t path[count];
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100204};
205
Neale Rannsb8d44812017-11-10 06:53:54 -0800206/** \brief Enable or Disable MPLS on and interface
207 @param client_index - opaque cookie to identify the sender
208 @param context - sender context, to match reply w/ request
209 @param sw_if_index - index of the interface
210 @param enable - if non-zero enable, else disable
211*/
212autoreply define sw_interface_set_mpls_enable
213{
214 u32 client_index;
215 u32 context;
216 u32 sw_if_index;
217 u8 enable;
218};
219
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100220/*
221 * Local Variables:
222 * eval: (c-set-style "gnu")
223 * End:
224 */
Dave Barach11b8dbf2017-04-24 10:46:54 -0400225