misc: fix 4 coverity warnings in srv6-mobile
[vpp.git] / src / plugins / srv6-mobile / gtp6_e.c
1 /*
2  * srv6_end_m_gtp6_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_v6_t srv6_end_main_v6;
25
26 static void
27 clb_dpo_lock_srv6_end_m_gtp6_e (dpo_id_t * dpo)
28 {
29 }
30
31 static void
32 clb_dpo_unlock_srv6_end_m_gtp6_e (dpo_id_t * dpo)
33 {
34 }
35
36 static u8 *
37 clb_dpo_format_srv6_end_m_gtp6_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_gtp6_e,
47   .dv_unlock = clb_dpo_unlock_srv6_end_m_gtp6_e,
48   .dv_format = clb_dpo_format_srv6_end_m_gtp6_e,
49 };
50
51 const static char *const srv6_end_m_gtp6_e_nodes[] = {
52   "srv6-end-m-gtp6-e",
53   NULL,
54 };
55
56 const static char *const *const dpo_nodes[DPO_PROTO_NUM] = {
57   [DPO_PROTO_IP6] = srv6_end_m_gtp6_e_nodes,
58 };
59
60 static u8 fn_name[] = "SRv6-End.M.GTP6.E-plugin";
61 static u8 keyword_str[] = "end.m.gtp6.e";
62 static u8 def_str[] =
63   "Endpoint function with encapsulation for IPv6/GTP tunnel";
64 static u8 param_str[] = "";
65
66 static u8 *
67 clb_format_srv6_end_m_gtp6_e (u8 * s, va_list * args)
68 {
69   s = format (s, "SRv6 End format function unsupported.");
70   return s;
71 }
72
73 static uword
74 clb_unformat_srv6_end_m_gtp6_e (unformat_input_t * input, va_list * args)
75 {
76   if (!unformat (input, "end.m.gtp6.e"))
77     return 0;
78   return 1;
79 }
80
81 static int
82 clb_creation_srv6_end_m_gtp6_e (ip6_sr_localsid_t * localsid)
83 {
84   return 0;
85 }
86
87 static int
88 clb_removal_srv6_end_m_gtp6_e (ip6_sr_localsid_t * localsid)
89 {
90   return 0;
91 }
92
93 static clib_error_t *
94 srv6_end_m_gtp6_e_init (vlib_main_t * vm)
95 {
96   srv6_end_main_v6_t *sm = &srv6_end_main_v6;
97   ip6_header_t *ip6 = &sm->cache_hdr.ip6;
98   udp_header_t *udp = &sm->cache_hdr.udp;
99   gtpu_header_t *gtpu = &sm->cache_hdr.gtpu;
100   dpo_type_t dpo_type;
101   vlib_node_t *node;
102   int rc;
103
104   sm->vlib_main = vm;
105   sm->vnet_main = vnet_get_main ();
106
107   node = vlib_get_node_by_name (vm, (u8 *) "srv6-end-m-gtp6-e");
108   sm->end_m_gtp6_e_node_index = node->index;
109
110   node = vlib_get_node_by_name (vm, (u8 *) "error-drop");
111   sm->error_node_index = node->index;
112
113   // clear the pre cached packet
114   clib_memset_u8 (ip6, 0, sizeof (ip6_gtpu_header_t));
115
116   // set defaults
117   ip6->ip_version_traffic_class_and_flow_label = 0x60;
118   ip6->protocol = IP_PROTOCOL_UDP;
119   ip6->hop_limit = 64;
120
121   udp->dst_port = clib_host_to_net_u16 (SRV6_GTP_UDP_DST_PORT);
122
123   gtpu->ver_flags = GTPU_V1_VER | GTPU_PT_GTP;
124   gtpu->type = GTPU_TYPE_GTPU;
125
126   dpo_type = dpo_register_new_type (&dpo_vft, dpo_nodes);
127
128   rc = sr_localsid_register_function (vm, fn_name, keyword_str, def_str, param_str, 128,        //prefix len
129                                       &dpo_type,
130                                       clb_format_srv6_end_m_gtp6_e,
131                                       clb_unformat_srv6_end_m_gtp6_e,
132                                       clb_creation_srv6_end_m_gtp6_e,
133                                       clb_removal_srv6_end_m_gtp6_e);
134   if (rc < 0)
135     clib_error_return (0, "SRv6 Endpoint GTP6.E LocalSID function"
136                        "couldn't be registered");
137   return 0;
138 }
139
140 /* *INDENT-OFF* */
141 VNET_FEATURE_INIT (srv6_end_m_gtp6_e, static) =
142 {
143   .arc_name = "ip6-unicast",
144   .node_name = "srv6-end-m-gtp6-e",
145   .runs_before = 0,
146 };
147
148 VLIB_INIT_FUNCTION (srv6_end_m_gtp6_e_init);
149 /* *INDENT-ON* */
150
151 /*
152  * fd.io coding-style-patch-verification: ON
153  *
154  * Local Variables:
155  * eval: (c-set-style "gnu")
156  * End:
157  */