srv6-mobile: Implement SRv6 mobile API funcs
[vpp.git] / src / plugins / srv6-mobile / gtp6_d.c
1 /*
2  * srv6_end_m_gtp6_d.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_v6_decap_t srv6_end_main_v6_decap;
25
26 static void
27 clb_dpo_lock_srv6_end_m_gtp6_d (dpo_id_t * dpo)
28 {
29 }
30
31 static void
32 clb_dpo_unlock_srv6_end_m_gtp6_d (dpo_id_t * dpo)
33 {
34 }
35
36 static u8 *
37 clb_dpo_format_srv6_end_m_gtp6_d (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_gtp6_d,
47   .dv_unlock = clb_dpo_unlock_srv6_end_m_gtp6_d,
48   .dv_format = clb_dpo_format_srv6_end_m_gtp6_d,
49 };
50
51 const static char *const srv6_end_m_gtp6_d_nodes[] = {
52   "srv6-end-m-gtp6-d",
53   NULL,
54 };
55
56 const static char *const *const dpo_nodes[DPO_PROTO_NUM] = {
57   [DPO_PROTO_IP6] = srv6_end_m_gtp6_d_nodes,
58 };
59
60 static u8 fn_name[] = "SRv6-End.M.GTP6.D-plugin";
61 static u8 keyword_str[] = "end.m.gtp6.d";
62 static u8 def_str[] =
63   "Endpoint function with dencapsulation for IPv6/GTP tunnel";
64 static u8 param_str[] =
65   "<sr-prefix>/<sr-prefixlen> [nhtype <nhtype>] fib-table <id>";
66
67 static u8 *
68 clb_format_srv6_end_m_gtp6_d (u8 * s, va_list * args)
69 {
70   srv6_end_gtp6_d_param_t *ls_mem = va_arg (*args, void *);
71
72   s = format (s, "SRv6 End gtp6.d\n\t");
73
74   s =
75     format (s, "SR Prefix: %U/%d", format_ip6_address, &ls_mem->sr_prefix,
76             ls_mem->sr_prefixlen);
77
78   if (ls_mem->nhtype != SRV6_NHTYPE_NONE)
79     {
80       if (ls_mem->nhtype == SRV6_NHTYPE_IPV4)
81         s = format (s, ", NHType IPv4");
82       else if (ls_mem->nhtype == SRV6_NHTYPE_IPV6)
83         s = format (s, ", NHType IPv6");
84       else if (ls_mem->nhtype == SRV6_NHTYPE_NON_IP)
85         s = format (s, ", NHType Non-IP");
86       else
87         s = format (s, ", NHType Unknow(%d)", ls_mem->nhtype);
88     }
89
90   s = format (s, " FIB table %d", ls_mem->fib_table);
91
92   s = format (s, " Drop In %d", ls_mem->drop_in);
93
94   return s;
95 }
96
97 void
98 alloc_param_srv6_end_m_gtp6_d (void **plugin_mem_p, const void *sr_prefix,
99                                const u32 sr_prefixlen, const u8 nhtype,
100                                const bool drop_in, const u32 fib_table)
101 {
102   srv6_end_gtp6_d_param_t *ls_mem;
103   ls_mem = clib_mem_alloc (sizeof *ls_mem);
104   clib_memset (ls_mem, 0, sizeof *ls_mem);
105   *plugin_mem_p = ls_mem;
106
107   ls_mem->sr_prefixlen = sr_prefixlen;
108   memcpy (&ls_mem->sr_prefix, sr_prefix, sizeof (ip6_address_t));
109   ls_mem->nhtype = nhtype;
110   ls_mem->drop_in = drop_in;
111   ls_mem->fib_table = fib_table;
112   ls_mem->fib4_index = ip4_fib_index_from_table_id (fib_table);
113   ls_mem->fib6_index = ip6_fib_index_from_table_id (fib_table);
114 }
115
116 static uword
117 clb_unformat_srv6_end_m_gtp6_d (unformat_input_t * input, va_list * args)
118 {
119   void **plugin_mem_p = va_arg (*args, void **);
120   ip6_address_t sr_prefix;
121   u32 sr_prefixlen;
122   u8 nhtype = SRV6_NHTYPE_NONE;
123   bool drop_in = false;
124   bool config = false;
125   u32 fib_table = 0;
126
127   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
128     {
129       if (unformat (input, "end.m.gtp6.d %U/%d nh-type ipv4 fib-table %d",
130                     unformat_ip6_address, &sr_prefix, &sr_prefixlen,
131                     &fib_table))
132         {
133           config = true;
134           nhtype = SRV6_NHTYPE_IPV4;
135         }
136       else if (unformat (input, "end.m.gtp6.d %U/%d nh-type ipv6 fib-table %d",
137                          unformat_ip6_address, &sr_prefix, &sr_prefixlen,
138                          &fib_table))
139         {
140           config = true;
141           nhtype = SRV6_NHTYPE_IPV6;
142         }
143       else if (unformat (input, "end.m.gtp6.d %U/%d nh-type none",
144                          unformat_ip6_address, &sr_prefix, &sr_prefixlen))
145         {
146           config = true;
147           nhtype = SRV6_NHTYPE_NON_IP;
148         }
149       else if (unformat (input, "end.m.gtp6.d %U/%d fib-table %d",
150                          unformat_ip6_address, &sr_prefix, &sr_prefixlen,
151                          &fib_table))
152         {
153           config = true;
154           nhtype = SRV6_NHTYPE_NONE;
155         }
156       else if (unformat (input, "drop-in"))
157         {
158           drop_in = true;
159         }
160       else
161         {
162           return 0;
163         }
164     }
165
166   if (!config)
167     {
168       return 0;
169     }
170
171   alloc_param_srv6_end_m_gtp6_d (plugin_mem_p, &sr_prefix, sr_prefixlen,
172                                  nhtype, drop_in, fib_table);
173
174   return 1;
175 }
176
177 static int
178 clb_creation_srv6_end_m_gtp6_d (ip6_sr_localsid_t * localsid)
179 {
180   return 0;
181 }
182
183 static int
184 clb_creation_srv6_end_m_gtp6_d_2 (ip6_sr_policy_t *sr_policy)
185 {
186   return 0;
187 }
188
189 static int
190 clb_removal_srv6_end_m_gtp6_d (ip6_sr_localsid_t * localsid)
191 {
192   srv6_end_gtp6_d_param_t *ls_mem;
193
194   ls_mem = localsid->plugin_mem;
195
196   clib_mem_free (ls_mem);
197
198   return 0;
199 }
200
201 static int
202 clb_removal_srv6_end_m_gtp6_d_2 (ip6_sr_policy_t *sr_policy)
203 {
204   srv6_end_gtp6_d_param_t *ls_mem;
205
206   ls_mem = sr_policy->plugin_mem;
207
208   clib_mem_free (ls_mem);
209
210   return 0;
211 }
212
213 static clib_error_t *
214 srv6_end_m_gtp6_d_init (vlib_main_t * vm)
215 {
216   srv6_end_main_v6_decap_t *sm = &srv6_end_main_v6_decap;
217   ip6_header_t *ip6;
218   dpo_type_t dpo_type;
219   vlib_node_t *node;
220   int rc;
221
222   sm->vlib_main = vm;
223   sm->vnet_main = vnet_get_main ();
224
225   node = vlib_get_node_by_name (vm, (u8 *) "srv6-end-m-gtp6-d");
226   sm->end_m_gtp6_d_node_index = node->index;
227
228   node = vlib_get_node_by_name (vm, (u8 *) "error-drop");
229   sm->error_node_index = node->index;
230
231   ip6 = &sm->cache_hdr;
232
233   clib_memset_u8 (ip6, 0, sizeof (ip6_header_t));
234
235   // IPv6 header (default)
236   ip6->ip_version_traffic_class_and_flow_label = 0x60;
237   ip6->hop_limit = 64;
238   ip6->protocol = IP_PROTOCOL_IPV6;
239
240   dpo_type = dpo_register_new_type (&dpo_vft, dpo_nodes);
241
242   rc = sr_localsid_register_function (vm, fn_name, keyword_str, def_str, param_str, 128,        //prefix len
243                                       &dpo_type,
244                                       clb_format_srv6_end_m_gtp6_d,
245                                       clb_unformat_srv6_end_m_gtp6_d,
246                                       clb_creation_srv6_end_m_gtp6_d,
247                                       clb_removal_srv6_end_m_gtp6_d);
248   if (rc < 0)
249     clib_error_return (0, "SRv6 Endpoint GTP6.D LocalSID function"
250                        "couldn't be registered");
251
252   rc = sr_policy_register_function (
253     vm, fn_name, keyword_str, def_str, param_str, 128, // prefix len
254     &dpo_type, clb_format_srv6_end_m_gtp6_d, clb_unformat_srv6_end_m_gtp6_d,
255     clb_creation_srv6_end_m_gtp6_d_2, clb_removal_srv6_end_m_gtp6_d_2);
256   if (rc < 0)
257     clib_error_return (0, "SRv6 GTP6.D Steering function"
258                           "couldn't be registered");
259
260   return 0;
261 }
262
263 /* *INDENT-OFF* */
264 VNET_FEATURE_INIT (srv6_end_m_gtp6_d, static) =
265 {
266   .arc_name = "ip6-unicast",
267   .node_name = "srv6-end-m-gtp6-d",
268   .runs_before = 0,
269 };
270
271 VLIB_INIT_FUNCTION (srv6_end_m_gtp6_d_init);
272 /* *INDENT-ON* */
273
274 /*
275  * fd.io coding-style-patch-verification: ON
276  *
277  * Local Variables:
278  * eval: (c-set-style "gnu")
279  * End:
280  */