VPP-25 Add API for GRE tunnel create/delete/show.
[vpp.git] / vnet / vnet / gre / gre.h
1 /*
2  * gre.h: types/functions for gre.
3  *
4  * Copyright (c) 2012 Cisco and/or its affiliates.
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #ifndef included_gre_h
19 #define included_gre_h
20
21 #include <vnet/vnet.h>
22 #include <vnet/gre/packet.h>
23 #include <vnet/ip/ip.h>
24 #include <vnet/ip/ip4.h>
25 #include <vnet/ip/ip4_packet.h>
26 #include <vnet/pg/pg.h>
27 #include <vnet/ip/format.h>
28
29 extern vnet_hw_interface_class_t gre_hw_interface_class;
30
31 typedef enum {
32 #define gre_error(n,s) GRE_ERROR_##n,
33 #include <vnet/gre/error.def>
34 #undef gre_error
35   GRE_N_ERROR,
36 } gre_error_t;
37
38 typedef struct {
39   /* Name (a c string). */
40   char * name;
41
42   /* GRE protocol type in host byte order. */
43   gre_protocol_t protocol;
44
45   /* Node which handles this type. */
46   u32 node_index;
47
48   /* Next index for this type. */
49   u32 next_index;
50 } gre_protocol_info_t;
51
52 typedef struct {
53   ip4_address_t tunnel_src;
54   ip4_address_t tunnel_dst;
55   u32 outer_fib_index;
56   u32 hw_if_index;
57   u32 sw_if_index;
58 } gre_tunnel_t;
59
60 typedef struct {
61   /* pool of tunnel instances */
62   gre_tunnel_t *tunnels;
63
64   gre_protocol_info_t * protocol_infos;
65
66   /* Hash tables mapping name/protocol to protocol info index. */
67   uword * protocol_info_by_name, * protocol_info_by_protocol;
68   /* Hash mapping src/dst addr pair to tunnel */
69   uword * tunnel_by_key;
70
71   /* Free vlib hw_if_indices */
72   u32 * free_vxlan_tunnel_hw_if_indices;
73
74   /* Mapping from sw_if_index to tunnel index */
75   u32 * tunnel_index_by_sw_if_index;
76
77   /* convenience */
78   vlib_main_t * vlib_main;
79   vnet_main_t * vnet_main;
80 } gre_main_t;
81
82 always_inline gre_protocol_info_t *
83 gre_get_protocol_info (gre_main_t * em, gre_protocol_t protocol)
84 {
85   uword * p = hash_get (em->protocol_info_by_protocol, protocol);
86   return p ? vec_elt_at_index (em->protocol_infos, p[0]) : 0;
87 }
88
89 gre_main_t gre_main;
90
91 /* Register given node index to take input for given gre type. */
92 void
93 gre_register_input_type (vlib_main_t * vm,
94                          gre_protocol_t protocol,
95                          u32 node_index);
96
97 void gre_set_adjacency (vnet_rewrite_header_t * rw,
98                         uword max_data_bytes,
99                         gre_protocol_t protocol);
100
101 format_function_t format_gre_protocol;
102 format_function_t format_gre_header;
103 format_function_t format_gre_header_with_length;
104
105 extern vlib_node_registration_t gre_input_node;
106 extern vnet_device_class_t gre_device_class;
107
108 /* Parse gre protocol as 0xXXXX or protocol name.
109    In either host or network byte order. */
110 unformat_function_t unformat_gre_protocol_host_byte_order;
111 unformat_function_t unformat_gre_protocol_net_byte_order;
112
113 /* Parse gre header. */
114 unformat_function_t unformat_gre_header;
115 unformat_function_t unformat_pg_gre_header;
116
117 void
118 gre_register_input_protocol (vlib_main_t * vm,
119                              gre_protocol_t protocol,
120                              u32 node_index);
121
122 /* manually added to the interface output node in gre.c */
123 #define GRE_OUTPUT_NEXT_LOOKUP  1
124
125 typedef struct {
126   u8 is_add;
127
128   ip4_address_t src, dst;
129   u32 outer_table_id;
130 } vnet_gre_add_del_tunnel_args_t;
131
132 int vnet_gre_add_del_tunnel
133   (vnet_gre_add_del_tunnel_args_t *a, u32 * sw_if_indexp);
134
135 #endif /* included_gre_h */