FD.io VPP  v20.05-21-gb1500e9ff
Vector Packet Processing
gtp6_e.c
Go to the documentation of this file.
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 
25 
26 static void
28 {
29 }
30 
31 static void
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 = {
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] = {
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
75 {
76  if (!unformat (input, "end.m.gtp6.e"))
77  return 0;
78  return 1;
79 }
80 
81 static int
83 {
84  return 0;
85 }
86 
87 static int
89 {
90  return 0;
91 }
92 
93 static clib_error_t *
95 {
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
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 
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,
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* */
142 {
143  .arc_name = "ip6-unicast",
144  .node_name = "srv6-end-m-gtp6-e",
145  .runs_before = 0,
146 };
147 
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  */
dpo_lock_fn_t dv_lock
A reference counting lock function.
Definition: dpo.h:406
#define GTPU_PT_GTP
Definition: mobile.h:164
#define CLIB_UNUSED(x)
Definition: clib.h:86
A virtual function table regisitered for a DPO type.
Definition: dpo.h:401
#define SRV6_GTP_UDP_DST_PORT
Definition: mobile.h:29
SR LocalSID.
Definition: sr.h:120
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
#define GTPU_TYPE_GTPU
Definition: mobile.h:104
u32 index
Definition: node.h:282
static u8 * clb_format_srv6_end_m_gtp6_e(u8 *s, va_list *args)
Definition: gtp6_e.c:67
static u8 def_str[]
Definition: gtp6_e.c:62
u32 index_t
A Data-Path Object is an object that represents actions that are applied to packets are they are swit...
Definition: dpo.h:41
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
int sr_localsid_register_function(vlib_main_t *vm, u8 *fn_name, u8 *keyword_str, u8 *def_str, u8 *params_str, u8 prefix_length, dpo_type_t *dpo, format_function_t *ls_format, unformat_function_t *ls_unformat, sr_plugin_callback_t *creation_fn, sr_plugin_callback_t *removal_fn)
SR LocalSID plugin registry.
Definition: sr_localsid.c:2347
unsigned char u8
Definition: types.h:56
srv6_end_main_v6_t srv6_end_main_v6
Definition: gtp6_e.c:24
enum dpo_type_t_ dpo_type_t
Common types of data-path objects New types can be dynamically added using dpo_register_new_type() ...
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
vl_api_ip6_address_t ip6
Definition: one.api:424
ip6_header_t ip6
Definition: mobile.h:156
#define clib_error_return(e, args...)
Definition: error.h:99
static u8 fn_name[]
Definition: gtp6_e.c:60
unsigned int u32
Definition: types.h:88
dpo_type_t dpo_register_new_type(const dpo_vft_t *vft, const char *const *const *nodes)
Create and register a new DPO type.
Definition: dpo.c:342
static void clb_dpo_unlock_srv6_end_m_gtp6_e(dpo_id_t *dpo)
Definition: gtp6_e.c:32
static void clb_dpo_lock_srv6_end_m_gtp6_e(dpo_id_t *dpo)
Definition: gtp6_e.c:27
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:170
vlib_node_t * vlib_get_node_by_name(vlib_main_t *vm, u8 *name)
Definition: node.c:45
static const char *const *const dpo_nodes[DPO_PROTO_NUM]
Definition: gtp6_e.c:56
vnet_main_t * vnet_main
Definition: mobile.h:249
static int clb_creation_srv6_end_m_gtp6_e(ip6_sr_localsid_t *localsid)
Definition: gtp6_e.c:82
struct _unformat_input_t unformat_input_t
static int clb_removal_srv6_end_m_gtp6_e(ip6_sr_localsid_t *localsid)
Definition: gtp6_e.c:88
vlib_main_t * vm
Definition: in2out_ed.c:1599
vlib_main_t vlib_node_runtime_t * node
Definition: in2out_ed.c:1599
static u8 * clb_dpo_format_srv6_end_m_gtp6_e(u8 *s, va_list *args)
Definition: gtp6_e.c:37
ip6_gtpu_header_t cache_hdr
Definition: mobile.h:254
udp_header_t udp
Definition: mobile.h:157
static u8 keyword_str[]
Definition: gtp6_e.c:61
u32 end_m_gtp6_e_node_index
Definition: mobile.h:251
vlib_main_t * vlib_main
Definition: mobile.h:248
#define GTPU_V1_VER
Definition: mobile.h:162
static_always_inline void clib_memset_u8(void *p, u8 val, uword count)
Definition: string.h:424
u32 ip_version_traffic_class_and_flow_label
Definition: ip6_packet.h:297
#define DPO_PROTO_NUM
Definition: dpo.h:70
u32 error_node_index
Definition: mobile.h:252
vlib_node_registration_t srv6_end_m_gtp6_e
(constructor) VLIB_REGISTER_NODE (srv6_end_m_gtp6_e)
Definition: node.c:2966
static const char *const srv6_end_m_gtp6_e_nodes[]
Definition: gtp6_e.c:51
u64 uword
Definition: types.h:112
Bits Octets 8 7 6 5 4 3 2 1 1 Version PT (*) E S PN 2 Message Type 3 Length (1st Octet) 4 Length...
Definition: mobile.h:90
static uword clb_unformat_srv6_end_m_gtp6_e(unformat_input_t *input, va_list *args)
Definition: gtp6_e.c:74
static clib_error_t * srv6_end_m_gtp6_e_init(vlib_main_t *vm)
Definition: gtp6_e.c:94
u8 ver_flags
Definition: mobile.h:92
gtpu_header_t gtpu
Definition: mobile.h:158
VNET_FEATURE_INIT(srv6_end_m_gtp6_e, static)
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
static u8 param_str[]
Definition: gtp6_e.c:64