blob: 885901f89a4d71bf1a7bde86a7b660b6eaab7d78 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 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 */
Neale Ranns1357f3b2016-10-16 12:01:42 -070015#ifndef included_vnet_mpls_h
16#define included_vnet_mpls_h
Ed Warnickecb9cada2015-12-08 15:45:58 -070017
18#include <vnet/vnet.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010019#include <vnet/mpls/packet.h>
20#include <vnet/mpls/mpls_types.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070021#include <vnet/ip/ip4_packet.h>
22#include <vnet/ethernet/ethernet.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010023#include <vnet/fib/fib_node.h>
24#include <vnet/adj/adj.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070025
Neale Ranns0bfe5d82016-08-25 15:29:12 +010026/**
27 * @brief Definition of a callback for receiving MPLS interface state change
28 * notifications
29 */
Neale Ranns2297af02017-09-12 09:45:04 -070030typedef void (*mpls_interface_state_change_callback_t) (u32 sw_if_index,
31 u32 is_enable);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010032
Neale Ranns2297af02017-09-12 09:45:04 -070033typedef struct
34{
Neale Ranns0bfe5d82016-08-25 15:29:12 +010035 /* MPLS FIB index for each software interface */
36 u32 *fib_index_by_sw_if_index;
37
38 /** A pool of all the MPLS FIBs */
39 struct fib_table_t_ *fibs;
40
Neale Rannsa3af3372017-03-28 03:49:52 -070041 /** A pool of all the MPLS FIBs */
42 struct mpls_fib_t_ *mpls_fibs;
43
Neale Ranns0bfe5d82016-08-25 15:29:12 +010044 /** A hash table to lookup the mpls_fib by table ID */
45 uword *fib_index_by_table_id;
46
Damjan Marion8b3191e2016-11-09 19:54:20 +010047 /* Feature arc indices */
48 u8 input_feature_arc_index;
49 u8 output_feature_arc_index;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010050
51 /* IP4 enabled count by software interface */
Neale Ranns2297af02017-09-12 09:45:04 -070052 u8 *mpls_enabled_by_sw_if_index;
Filip Tehlar17fcd982019-03-05 04:32:11 -080053
54 u32 mpls_lookup_node_index;
Filip Tehlarda5088c2021-06-22 22:01:19 +000055 u16 msg_id_base;
Ed Warnickecb9cada2015-12-08 15:45:58 -070056} mpls_main_t;
57
Neale Ranns0bfe5d82016-08-25 15:29:12 +010058extern mpls_main_t mpls_main;
59
Neale Ranns2297af02017-09-12 09:45:04 -070060extern clib_error_t *mpls_feature_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -070061
Neale Ranns0bfe5d82016-08-25 15:29:12 +010062format_function_t format_mpls_eos_bit;
63format_function_t format_mpls_unicast_header_net_byte_order;
64format_function_t format_mpls_unicast_label;
65format_function_t format_mpls_header;
66
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +010067extern vlib_node_registration_t mpls_input_node;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010068extern vlib_node_registration_t mpls_output_node;
69extern vlib_node_registration_t mpls_midchain_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -070070
Ed Warnickecb9cada2015-12-08 15:45:58 -070071/* Parse mpls protocol as 0xXXXX or protocol name.
72 In either host or network byte order. */
Ed Warnickecb9cada2015-12-08 15:45:58 -070073unformat_function_t unformat_mpls_label_net_byte_order;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010074unformat_function_t unformat_mpls_unicast_label;
Ed Warnickecb9cada2015-12-08 15:45:58 -070075
76/* Parse mpls header. */
77unformat_function_t unformat_mpls_header;
78unformat_function_t unformat_pg_mpls_header;
79
Nathan Skrzypczak275bd792021-09-17 17:29:14 +020080int mpls_sw_interface_enable_disable (mpls_main_t *mm, u32 sw_if_index,
81 u8 is_enable);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010082
83u8 mpls_sw_interface_is_enabled (u32 sw_if_index);
84
Neale Ranns2297af02017-09-12 09:45:04 -070085int mpls_dest_cmp (void *a1, void *a2);
marek zavodsky2c21a9a2016-06-21 05:35:16 +020086
Neale Ranns2297af02017-09-12 09:45:04 -070087int mpls_fib_index_cmp (void *a1, void *a2);
marek zavodsky2c21a9a2016-06-21 05:35:16 +020088
Neale Ranns2297af02017-09-12 09:45:04 -070089int mpls_label_cmp (void *a1, void *a2);
marek zavodsky2c21a9a2016-06-21 05:35:16 +020090
Neale Ranns2297af02017-09-12 09:45:04 -070091void mpls_table_create (u32 table_id, u8 is_api, const u8 * name);
92void mpls_table_delete (u32 table_id, u8 is_api);
Neale Ranns15002542017-09-10 04:39:11 -070093
Neale Ranns1357f3b2016-10-16 12:01:42 -070094#endif /* included_vnet_mpls_h */
Neale Ranns2297af02017-09-12 09:45:04 -070095
96/*
97 * fd.io coding-style-patch-verification: ON
98 *
99 * Local Variables:
100 * eval: (c-set-style "gnu")
101 * End:
102 */