b0125e60c63670b5b883c49a5ca479dbd1deb4fd
[vpp.git] / src / vnet / mpls / mpls.h
1 /*
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  */
15 #ifndef included_vnet_mpls_h
16 #define included_vnet_mpls_h
17
18 #include <vnet/vnet.h>
19 #include <vnet/mpls/packet.h>
20 #include <vnet/mpls/mpls_types.h>
21 #include <vnet/ip/ip4_packet.h>
22 #include <vnet/ethernet/ethernet.h>
23 #include <vnet/fib/fib_node.h>
24 #include <vnet/adj/adj.h>
25
26 typedef enum {
27 #define mpls_error(n,s) MPLS_ERROR_##n,
28 #include <vnet/mpls/error.def>
29 #undef mpls_error
30   MPLS_N_ERROR,
31 } mpls_error_t;
32
33 /**
34  * @brief Definition of a callback for receiving MPLS interface state change
35  * notifications
36  */
37 typedef void (*mpls_interface_state_change_callback_t)(u32 sw_if_index,
38                                                        u32 is_enable);
39
40 typedef struct {
41   /* MPLS FIB index for each software interface */
42   u32 *fib_index_by_sw_if_index;
43
44   /**  A pool of all the MPLS FIBs */
45   struct fib_table_t_ *fibs;
46
47   /**  A pool of all the MPLS FIBs */
48   struct mpls_fib_t_ *mpls_fibs;
49
50   /** A hash table to lookup the mpls_fib by table ID */
51   uword *fib_index_by_table_id;
52
53   /* Feature arc indices */
54   u8 input_feature_arc_index;
55   u8 output_feature_arc_index;
56
57   /* IP4 enabled count by software interface */
58   u8 * mpls_enabled_by_sw_if_index;
59
60   /* convenience */
61   vlib_main_t * vlib_main;
62   vnet_main_t * vnet_main;
63 } mpls_main_t;
64
65 extern mpls_main_t mpls_main;
66
67 extern clib_error_t * mpls_feature_init(vlib_main_t * vm);
68
69 format_function_t format_mpls_eos_bit;
70 format_function_t format_mpls_unicast_header_net_byte_order;
71 format_function_t format_mpls_unicast_label;
72 format_function_t format_mpls_header;
73
74 extern vlib_node_registration_t mpls_input_node;
75 extern vlib_node_registration_t mpls_output_node;
76 extern vlib_node_registration_t mpls_midchain_node;
77
78 /* Parse mpls protocol as 0xXXXX or protocol name.
79    In either host or network byte order. */
80 unformat_function_t unformat_mpls_protocol_host_byte_order;
81 unformat_function_t unformat_mpls_protocol_net_byte_order;
82 unformat_function_t unformat_mpls_label_net_byte_order;
83 unformat_function_t unformat_mpls_unicast_label;
84
85 /* Parse mpls header. */
86 unformat_function_t unformat_mpls_header;
87 unformat_function_t unformat_pg_mpls_header;
88
89 void mpls_sw_interface_enable_disable (mpls_main_t * mm,
90                                        u32 sw_if_index,
91                                        u8 is_enable);
92
93 u8 mpls_sw_interface_is_enabled (u32 sw_if_index);
94
95 int mpls_fib_reset_labels (u32 fib_id);
96
97 int
98 mpls_dest_cmp(void * a1, void * a2);
99
100 int
101 mpls_fib_index_cmp(void * a1, void * a2);
102
103 int
104 mpls_label_cmp(void * a1, void * a2);
105
106 #endif /* included_vnet_mpls_h */