misc: remove GNU Indent directives
[vpp.git] / src / plugins / srv6-mobile / gtp4_e.c
1 /*
2  * srv6_end_m_gtp4_e.c
3  *
4  * Copyright (c) 2019 Arrcus Inc 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 #include <vnet/vnet.h>
19 #include <vnet/adj/adj.h>
20 #include <vnet/plugin/plugin.h>
21 #include <vpp/app/version.h>
22 #include <srv6-mobile/mobile.h>
23
24 srv6_end_main_v4_t srv6_end_main_v4;
25
26 static void
27 clb_dpo_lock_srv6_end_m_gtp4_e (dpo_id_t * dpo)
28 {
29 }
30
31 static void
32 clb_dpo_unlock_srv6_end_m_gtp4_e (dpo_id_t * dpo)
33 {
34 }
35
36 static u8 *
37 clb_dpo_format_srv6_end_m_gtp4_e (u8 * s, va_list * args)
38 {
39   index_t index = va_arg (*args, index_t);
40   CLIB_UNUSED (u32 indent) = va_arg (*args, u32);
41
42   return (format (s, "SR: dynamic_proxy_index:[%u]", index));
43 }
44
45 const static dpo_vft_t dpo_vft = {
46   .dv_lock = clb_dpo_lock_srv6_end_m_gtp4_e,
47   .dv_unlock = clb_dpo_unlock_srv6_end_m_gtp4_e,
48   .dv_format = clb_dpo_format_srv6_end_m_gtp4_e,
49 };
50
51 const static char *const srv6_end_m_gtp4_e_nodes[] = {
52   "srv6-end-m-gtp4-e",
53   NULL,
54 };
55
56 const static char *const *const dpo_nodes[DPO_PROTO_NUM] = {
57   [DPO_PROTO_IP6] = srv6_end_m_gtp4_e_nodes,
58 };
59
60 static u8 fn_name[] = "SRv6-End.M.GTP4.E-plugin";
61 static u8 keyword_str[] = "end.m.gtp4.e";
62 static u8 def_str[] =
63   "Endpoint function with encapsulation for IPv4/GTP tunnel";
64 static u8 param_str[] = "";
65
66 static u8 *
67 clb_format_srv6_end_m_gtp4_e (u8 * s, va_list * args)
68 {
69   srv6_end_gtp4_e_param_t *ls_mem = va_arg (*args, void *);
70
71   s = format (s, "SRv6 End gtp4.e\n");
72
73   s = format (s, "\tIPv4 address position: %d\n", ls_mem->v4src_position);
74
75   s = format (s, "\tIPv4 source address: %U\n", format_ip4_address,
76               &ls_mem->v4src_addr);
77
78   s = format (s, "\tFib Table %d\n", ls_mem->fib_table);
79
80   return s;
81 }
82
83 void
84 alloc_param_srv6_end_m_gtp4_e (void **plugin_mem_p, const void *v4src_addr,
85                                const u32 v4src_position, const u32 fib_table)
86 {
87   srv6_end_gtp4_e_param_t *ls_mem;
88   ls_mem = clib_mem_alloc (sizeof *ls_mem);
89   clib_memset (ls_mem, 0, sizeof *ls_mem);
90   *plugin_mem_p = ls_mem;
91   ls_mem->v4src_position = v4src_position;
92   memcpy (&ls_mem->v4src_addr, v4src_addr, sizeof (ip4_address_t));
93
94   ls_mem->fib_table = fib_table;
95   ls_mem->fib4_index = ip4_fib_index_from_table_id (fib_table);
96   ls_mem->fib6_index = ip6_fib_index_from_table_id (fib_table);
97 }
98
99 static uword
100 clb_unformat_srv6_end_m_gtp4_e (unformat_input_t * input, va_list * args)
101 {
102   void **plugin_mem_p = va_arg (*args, void **);
103   ip4_address_t v4src_addr;
104   u32 v4src_position = 0;
105   u32 fib_table;
106   bool config = false;
107
108   memset (&v4src_addr, 0, sizeof (ip4_address_t));
109
110   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
111     {
112       if (unformat (input, "end.m.gtp4.e v4src_position %d fib-table %d",
113                     &v4src_position, &fib_table))
114         {
115           config = true;
116         }
117       else if (unformat (input, "end.m.gtp4.e v4src_addr %U fib-table %d",
118                          unformat_ip4_address, &v4src_addr, &fib_table))
119         {
120           config = true;
121         }
122       else
123         {
124           return 0;
125         }
126     }
127
128   if (!config)
129     return 0;
130
131   alloc_param_srv6_end_m_gtp4_e (plugin_mem_p, &v4src_addr, v4src_position,
132                                  fib_table);
133
134   return 1;
135 }
136
137 static int
138 clb_creation_srv6_end_m_gtp4_e (ip6_sr_localsid_t * localsid)
139 {
140   return 0;
141 }
142
143 static int
144 clb_removal_srv6_end_m_gtp4_e (ip6_sr_localsid_t * localsid)
145 {
146   srv6_end_gtp4_e_param_t *ls_mem;
147
148   ls_mem = localsid->plugin_mem;
149
150   clib_mem_free (ls_mem);
151
152   return 0;
153 }
154
155 static clib_error_t *
156 srv6_end_m_gtp4_e_init (vlib_main_t * vm)
157 {
158   srv6_end_main_v4_t *sm = &srv6_end_main_v4;
159   ip4_header_t *ip4 = &sm->cache_hdr.ip4;
160   udp_header_t *udp = &sm->cache_hdr.udp;
161   gtpu_header_t *gtpu = &sm->cache_hdr.gtpu;
162   dpo_type_t dpo_type;
163   vlib_node_t *node;
164   int rc;
165
166   sm->vlib_main = vm;
167   sm->vnet_main = vnet_get_main ();
168
169   node = vlib_get_node_by_name (vm, (u8 *) "srv6-end-m-gtp4-e");
170   sm->end_m_gtp4_e_node_index = node->index;
171
172   node = vlib_get_node_by_name (vm, (u8 *) "error-drop");
173   sm->error_node_index = node->index;
174
175   sm->dst_p_len = 32;
176   sm->src_p_len = 64;
177
178   // clear the pre cached packet
179   clib_memset_u8 (ip4, 0, sizeof (ip4_gtpu_header_t));
180
181   // set defaults
182   ip4->ip_version_and_header_length = 0x45;
183   ip4->protocol = IP_PROTOCOL_UDP;
184   ip4->ttl = 64;
185
186   udp->dst_port = clib_host_to_net_u16 (SRV6_GTP_UDP_DST_PORT);
187
188   gtpu->ver_flags = GTPU_V1_VER | GTPU_PT_GTP;
189   gtpu->type = GTPU_TYPE_GTPU;
190   //
191
192   dpo_type = dpo_register_new_type (&dpo_vft, dpo_nodes);
193
194   rc = sr_localsid_register_function (vm, fn_name, keyword_str, def_str, param_str, 32, //prefix len
195                                       &dpo_type,
196                                       clb_format_srv6_end_m_gtp4_e,
197                                       clb_unformat_srv6_end_m_gtp4_e,
198                                       clb_creation_srv6_end_m_gtp4_e,
199                                       clb_removal_srv6_end_m_gtp4_e);
200   if (rc < 0)
201     clib_error_return (0, "SRv6 Endpoint GTP4.E LocalSID function"
202                        "couldn't be registered");
203   return 0;
204 }
205
206 VNET_FEATURE_INIT (srv6_end_m_gtp4_e, static) =
207 {
208   .arc_name = "ip6-unicast",
209   .node_name = "srv6-end-m-gtp4-e",
210   .runs_before = 0,
211 };
212
213 VLIB_INIT_FUNCTION (srv6_end_m_gtp4_e_init);
214
215 VLIB_PLUGIN_REGISTER () = {
216   .version = VPP_BUILD_VER,
217   .description = "SRv6 GTP Endpoint Functions",
218 };
219
220 /*
221  * fd.io coding-style-patch-verification: ON
222  *
223  * Local Variables:
224  * eval: (c-set-style "gnu")
225  * End:
226  */