3f366e81e5c63dcc3968bc49b6623804b9164614
[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[] = "<sr-prefix>/<sr-prefixlen> [nhtype <nhtype>]";
65
66 static u8 *
67 clb_format_srv6_end_m_gtp6_d (u8 * s, va_list * args)
68 {
69   srv6_end_gtp6_param_t *ls_mem = va_arg (*args, void *);
70
71   s = format (s, "SRv6 End gtp6.d\n\t");
72
73   s =
74     format (s, "SR Prefix: %U/%d", format_ip6_address, &ls_mem->sr_prefix,
75             ls_mem->sr_prefixlen);
76
77   if (ls_mem->nhtype != SRV6_NHTYPE_NONE)
78     {
79       if (ls_mem->nhtype == SRV6_NHTYPE_IPV4)
80         s = format (s, ", NHType IPv4\n");
81       else if (ls_mem->nhtype == SRV6_NHTYPE_IPV6)
82         s = format (s, ", NHType IPv6\n");
83       else if (ls_mem->nhtype == SRV6_NHTYPE_NON_IP)
84         s = format (s, ", NHType Non-IP\n");
85       else
86         s = format (s, ", NHType Unknow(%d)\n", ls_mem->nhtype);
87     }
88   else
89     s = format (s, "\n");
90
91   return s;
92 }
93
94 static uword
95 clb_unformat_srv6_end_m_gtp6_d (unformat_input_t * input, va_list * args)
96 {
97   void **plugin_mem_p = va_arg (*args, void **);
98   srv6_end_gtp6_param_t *ls_mem;
99   ip6_address_t sr_prefix;
100   u32 sr_prefixlen;
101   u8 nhtype;
102
103   if (unformat (input, "end.m.gtp6.d %U/%d nh-type ipv4",
104                 unformat_ip6_address, &sr_prefix, &sr_prefixlen))
105     {
106       nhtype = SRV6_NHTYPE_IPV4;
107     }
108   else if (unformat (input, "end.m.gtp6.d %U/%d nh-type ipv6",
109                      unformat_ip6_address, &sr_prefix, &sr_prefixlen))
110     {
111       nhtype = SRV6_NHTYPE_IPV6;
112     }
113   else if (unformat (input, "end.m.gtp6.d %U/%d nh-type none",
114                      unformat_ip6_address, &sr_prefix, &sr_prefixlen))
115     {
116       nhtype = SRV6_NHTYPE_NON_IP;
117     }
118   else if (unformat (input, "end.m.gtp6.d %U/%d",
119                      unformat_ip6_address, &sr_prefix, &sr_prefixlen))
120     {
121       nhtype = SRV6_NHTYPE_NONE;
122     }
123   else
124     {
125       return 0;
126     }
127
128   ls_mem = clib_mem_alloc_aligned_at_offset (sizeof *ls_mem, 0, 0, 1);
129   clib_memset (ls_mem, 0, sizeof *ls_mem);
130   *plugin_mem_p = ls_mem;
131
132   ls_mem->sr_prefix = sr_prefix;
133   ls_mem->sr_prefixlen = sr_prefixlen;
134
135   ls_mem->nhtype = nhtype;
136
137   return 1;
138 }
139
140 static int
141 clb_creation_srv6_end_m_gtp6_d (ip6_sr_localsid_t * localsid)
142 {
143   return 0;
144 }
145
146 static int
147 clb_removal_srv6_end_m_gtp6_d (ip6_sr_localsid_t * localsid)
148 {
149   srv6_end_gtp6_param_t *ls_mem;
150
151   ls_mem = localsid->plugin_mem;
152
153   clib_mem_free (ls_mem);
154
155   return 0;
156 }
157
158 static clib_error_t *
159 srv6_end_m_gtp6_d_init (vlib_main_t * vm)
160 {
161   srv6_end_main_v6_decap_t *sm = &srv6_end_main_v6_decap;
162   ip6_header_t *ip6;
163   dpo_type_t dpo_type;
164   vlib_node_t *node;
165   u32 rc;
166
167   sm->vlib_main = vm;
168   sm->vnet_main = vnet_get_main ();
169
170   node = vlib_get_node_by_name (vm, (u8 *) "srv6-end-m-gtp6-d");
171   sm->end_m_gtp6_d_node_index = node->index;
172
173   node = vlib_get_node_by_name (vm, (u8 *) "error-drop");
174   sm->error_node_index = node->index;
175
176   ip6 = &sm->cache_hdr;
177
178   clib_memset_u8 (ip6, 0, sizeof (ip6_header_t));
179
180   // IPv6 header (default)
181   ip6->ip_version_traffic_class_and_flow_label = 0x60;
182   ip6->hop_limit = 64;
183   ip6->protocol = IP_PROTOCOL_IPV6;
184
185   dpo_type = dpo_register_new_type (&dpo_vft, dpo_nodes);
186
187   rc = sr_localsid_register_function (vm, fn_name, keyword_str, def_str, param_str, 128,        //prefix len
188                                       &dpo_type,
189                                       clb_format_srv6_end_m_gtp6_d,
190                                       clb_unformat_srv6_end_m_gtp6_d,
191                                       clb_creation_srv6_end_m_gtp6_d,
192                                       clb_removal_srv6_end_m_gtp6_d);
193   if (rc < 0)
194     clib_error_return (0, "SRv6 Endpoint GTP6.D LocalSID function"
195                        "couldn't be registered");
196   return 0;
197 }
198
199 /* *INDENT-OFF* */
200 VNET_FEATURE_INIT (srv6_end_m_gtp6_d, static) =
201 {
202   .arc_name = "ip6-unicast",
203   .node_name = "srv6-end-m-gtp6-d",
204   .runs_before = 0,
205 };
206
207 VLIB_INIT_FUNCTION (srv6_end_m_gtp6_d_init);
208 /* *INDENT-ON* */
209
210 /*
211  * fd.io coding-style-patch-verification: ON
212  *
213  * Local Variables:
214  * eval: (c-set-style "gnu")
215  * End:
216  */