blob: 5d85812807aecab5dc800e3afa60d15f18233e38 [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";
Neale Ranns097fa662018-05-01 05:17:55 -070018import "vnet/ip/ip_types.api";
Dave Barach0d056e52017-09-28 15:11:16 -040019
Pavel Kotucek0f971d82017-01-03 10:48:54 +010020/** \brief Bind/Unbind an MPLS local label to an IP prefix. i.e. create
21 a per-prefix label entry.
22 @param client_index - opaque cookie to identify the sender
23 @param context - sender context, to match reply w/ request
24 @param mb_mpls_table_id - The MPLS table-id the MPLS entry will be added in
25 @param mb_label - The MPLS label value to bind
26 @param mb_ip_table_id - The IP table-id of the IP prefix to bind to.
Pavel Kotucek0f971d82017-01-03 10:48:54 +010027 @param mb_is_bind - Bind or unbind
28 @param mb_is_ip4 - The prefix to bind to is IPv4
29 @param mb_address_length - Length of IP prefix
30 @param mb_address[16] - IP prefix/
31*/
Dave Barach11b8dbf2017-04-24 10:46:54 -040032autoreply define mpls_ip_bind_unbind
Pavel Kotucek0f971d82017-01-03 10:48:54 +010033{
34 u32 client_index;
35 u32 context;
36 u32 mb_mpls_table_id;
37 u32 mb_label;
38 u32 mb_ip_table_id;
Pavel Kotucek0f971d82017-01-03 10:48:54 +010039 u8 mb_is_bind;
Neale Ranns097fa662018-05-01 05:17:55 -070040 vl_api_prefix_t mb_prefix;
Pavel Kotucek0f971d82017-01-03 10:48:54 +010041};
42
Neale Ranns097fa662018-05-01 05:17:55 -070043typeonly define mpls_tunnel
44{
45 u32 mt_sw_if_index;
46 u32 mt_tunnel_index;
47 u8 mt_l2_only;
48 u8 mt_is_multicast;
49 u8 mt_n_paths;
50 vl_api_fib_path_t mt_paths[mt_n_paths];
51};
Pavel Kotucek0f971d82017-01-03 10:48:54 +010052define mpls_tunnel_add_del
53{
54 u32 client_index;
55 u32 context;
Pavel Kotucek0f971d82017-01-03 10:48:54 +010056 u8 mt_is_add;
Neale Ranns097fa662018-05-01 05:17:55 -070057 vl_api_mpls_tunnel_t mt_tunnel;
Pavel Kotucek0f971d82017-01-03 10:48:54 +010058};
59
60/** \brief Reply for MPLS tunnel add / del request
61 @param context - returned sender context, to match reply w/ request
62 @param retval - return code
63 @param sw_if_index - SW interface index of the tunnel created
64*/
65define mpls_tunnel_add_del_reply
66{
67 u32 context;
68 i32 retval;
69 u32 sw_if_index;
Neale Rannsf5fa5ae2018-09-26 05:07:25 -070070 u32 tunnel_index;
Pavel Kotucek0f971d82017-01-03 10:48:54 +010071};
72
73/** \brief Dump mpls eth tunnel table
74 @param client_index - opaque cookie to identify the sender
Neale Rannsf5fa5ae2018-09-26 05:07:25 -070075 @param sw_if_index - sw_if_index of the MPLS tunnel
76 (as returned from the create)
Pavel Kotucek0f971d82017-01-03 10:48:54 +010077*/
78define mpls_tunnel_dump
79{
80 u32 client_index;
81 u32 context;
Neale Rannsf5fa5ae2018-09-26 05:07:25 -070082 u32 sw_if_index;
Pavel Kotucek0f971d82017-01-03 10:48:54 +010083};
84
Neale Ranns0f26c5a2017-03-01 15:12:11 -080085/** \brief mpls tunnel details
86*/
87manual_endian manual_print define mpls_tunnel_details
88{
89 u32 context;
Neale Ranns097fa662018-05-01 05:17:55 -070090 vl_api_mpls_tunnel_t mt_tunnel;
Neale Ranns0f26c5a2017-03-01 15:12:11 -080091};
92
93/** \brief MPLS Route Add / del route
94 @param client_index - opaque cookie to identify the sender
95 @param context - sender context, to match reply w/ request
Neale Ranns28ab9cc2017-08-14 07:18:42 -070096 @param mt_table_id - The MPLS table-id the route is added in
97 @param mt_is_add - Is this a route add or delete
Neale Ranns2297af02017-09-12 09:45:04 -070098 @param mt_name - A client provided name/tag for the table. If this
99 is not set by the client, then VPP will generate
100 something meaningfull.
Neale Ranns28ab9cc2017-08-14 07:18:42 -0700101*/
Neale Ranns097fa662018-05-01 05:17:55 -0700102typeonly define mpls_table
103{
104 u32 mt_table_id;
105 u8 mt_name[64];
106};
Neale Ranns28ab9cc2017-08-14 07:18:42 -0700107autoreply define mpls_table_add_del
108{
109 u32 client_index;
110 u32 context;
Neale Ranns28ab9cc2017-08-14 07:18:42 -0700111 u8 mt_is_add;
Neale Ranns097fa662018-05-01 05:17:55 -0700112 vl_api_mpls_table_t mt_table;
113};
114
115/** \brief Dump MPLS fib table
116 @param client_index - opaque cookie to identify the sender
117*/
118define mpls_table_dump
119{
120 u32 client_index;
121 u32 context;
122};
123
124define mpls_table_details
125{
126 u32 context;
127 vl_api_mpls_table_t mt_table;
128};
129
130/** \brief MPLS Route
131 @param mr_label - The MPLS label value
132 @param mr_eos - The End of stack bit
133 @param mr_eos_proto - If EOS then this is the DPO packect's proto post pop
134 @param mr_table_id - The MPLS table-id the route is added in
135 @param mr_is_add - Is this a route add or delete
136 @param mr_is_multicast - Is this a multicast route
137 @param mr_n_paths - The number of paths
138 @param mr_paths - The paths
139*/
140typeonly define mpls_route
141{
142 u32 mr_table_id;
143 u32 mr_label;
144 u8 mr_eos;
145 u8 mr_eos_proto;
146 u8 mr_is_multicast;
147 u8 mr_n_paths;
148 vl_api_fib_path_t mr_paths[mr_n_paths];
Neale Ranns28ab9cc2017-08-14 07:18:42 -0700149};
150
151/** \brief MPLS Route Add / del route
152 @param client_index - opaque cookie to identify the sender
153 @param context - sender context, to match reply w/ request
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800154 @param mr_table_id - The MPLS table-id the route is added in
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800155 @param mr_is_add - Is this a route add or delete
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800156 @param mr_is_multipath - Is this route update a multipath - i.e. is this
157 a path addition to an existing route
Neale Ranns097fa662018-05-01 05:17:55 -0700158 @param mr_route - The Route
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800159*/
Neale Ranns008dbe12018-09-07 09:32:36 -0700160define mpls_route_add_del
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800161{
162 u32 client_index;
163 u32 context;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800164 u8 mr_is_add;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800165 u8 mr_is_multipath;
Neale Ranns097fa662018-05-01 05:17:55 -0700166 vl_api_mpls_route_t mr_route;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800167};
168
Neale Ranns008dbe12018-09-07 09:32:36 -0700169define mpls_route_add_del_reply
170{
171 u32 context;
172 i32 retval;
173 u32 stats_index;
174};
175
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100176/** \brief Dump MPLS fib table
177 @param client_index - opaque cookie to identify the sender
178*/
Neale Ranns097fa662018-05-01 05:17:55 -0700179define mpls_route_dump
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100180{
181 u32 client_index;
182 u32 context;
Neale Ranns097fa662018-05-01 05:17:55 -0700183 vl_api_mpls_table_t table;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100184};
185
186/** \brief mpls FIB table response
187 @param table_id - MPLS fib table id
188 @param s_bit - End-of-stack bit
189 @param label - MPLS label value
190 @param count - the number of fib_path in path
191 @param path - array of of fib_path structures
192*/
Neale Ranns097fa662018-05-01 05:17:55 -0700193manual_endian manual_print define mpls_route_details
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100194{
195 u32 context;
Neale Ranns097fa662018-05-01 05:17:55 -0700196 vl_api_mpls_route_t mr_route;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100197};
198
Neale Rannsb8d44812017-11-10 06:53:54 -0800199/** \brief Enable or Disable MPLS on and interface
200 @param client_index - opaque cookie to identify the sender
201 @param context - sender context, to match reply w/ request
202 @param sw_if_index - index of the interface
203 @param enable - if non-zero enable, else disable
204*/
205autoreply define sw_interface_set_mpls_enable
206{
207 u32 client_index;
208 u32 context;
209 u32 sw_if_index;
210 u8 enable;
211};
212
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100213/*
214 * Local Variables:
215 * eval: (c-set-style "gnu")
216 * End:
217 */
Dave Barach11b8dbf2017-04-24 10:46:54 -0400218