forked from travelping/upg-vpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupf_proxy_output.c
358 lines (307 loc) · 10.2 KB
/
upf_proxy_output.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
/*
* Copyright (c) 2018 Travelping GmbH
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <inttypes.h>
#include <vppinfra/error.h>
#include <vppinfra/hash.h>
#include <vnet/vnet.h>
#include <vnet/ip/ip.h>
#include <vnet/tcp/tcp.h>
#include <vnet/tcp/tcp_inlines.h>
#include <vnet/fib/ip4_fib.h>
#include <vnet/fib/ip6_fib.h>
#include <vnet/ethernet/ethernet.h>
#include <upf/upf.h>
#include <upf/upf_pfcp.h>
#include <upf/upf_proxy.h>
#if CLIB_DEBUG > 1
#define upf_debug clib_warning
#else
#define upf_debug(...) \
do { } while (0)
#endif
typedef enum
{
UPF_PROXY_OUTPUT_NEXT_DROP,
UPF_PROXY_OUTPUT_NEXT_CLASSIFY,
UPF_PROXY_OUTPUT_NEXT_PROCESS,
UPF_PROXY_OUTPUT_N_NEXT,
} upf_proxy_output_next_t;
static upf_proxy_output_next_t ft_next_map_next[FT_NEXT_N_NEXT] = {
[FT_NEXT_DROP] = UPF_PROXY_OUTPUT_NEXT_DROP,
[FT_NEXT_CLASSIFY] = UPF_PROXY_OUTPUT_NEXT_CLASSIFY,
[FT_NEXT_PROCESS] = UPF_PROXY_OUTPUT_NEXT_PROCESS,
[FT_NEXT_PROXY] = UPF_PROXY_OUTPUT_NEXT_PROCESS,
};
/* Statistics (not all errors) */
#define foreach_upf_proxy_output_error \
_(PROCESS, "good packets process") \
_(INVALID_FLOW, "flow entry not found") \
_(NO_SESSION, "session not found")
static char *upf_proxy_output_error_strings[] = {
#define _(sym,string) string,
foreach_upf_proxy_output_error
#undef _
};
typedef enum
{
#define _(sym,str) UPF_PROXY_OUTPUT_ERROR_##sym,
foreach_upf_proxy_output_error
#undef _
UPF_PROXY_OUTPUT_N_ERROR,
} upf_proxy_output_error_t;
typedef struct
{
u32 session_index;
u64 cp_seid;
u32 flow_id;
u32 pdr_idx;
u8 packet_data[64 - 1 * sizeof (u32)];
}
upf_proxy_output_trace_t;
static u8 *
format_upf_proxy_output_trace (u8 * s, va_list * args)
{
CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
upf_proxy_output_trace_t *t = va_arg (*args, upf_proxy_output_trace_t *);
u32 indent = format_get_indent (s);
s = format (s, "upf_session%d cp-seid 0x%016" PRIx64 " Flow %u PDR Idx %u\n"
"%U%U",
t->session_index, t->cp_seid, t->flow_id, t->pdr_idx,
format_white_space, indent,
format_ip4_header, t->packet_data, sizeof (t->packet_data));
return s;
}
static uword
upf_proxy_output (vlib_main_t * vm, vlib_node_runtime_t * node,
vlib_frame_t * from_frame, flow_direction_t direction,
int is_ip4)
{
u32 n_left_from, next_index, *from, *to_next;
upf_main_t *gtm = &upf_main;
vnet_main_t *vnm = gtm->vnet_main;
vnet_interface_main_t *im = &vnm->interface_main;
flowtable_main_t *fm = &flowtable_main;
from = vlib_frame_vector_args (from_frame);
n_left_from = from_frame->n_vectors;
u32 thread_index = vlib_get_thread_index ();
u32 stats_sw_if_index, stats_n_packets, stats_n_bytes;
u32 sw_if_index = 0;
u32 next = 0;
u32 len;
next_index = node->cached_next_index;
stats_sw_if_index = node->runtime_data[0];
stats_n_packets = stats_n_bytes = 0;
while (n_left_from > 0)
{
u32 n_left_to_next;
vlib_buffer_t *b;
u32 error;
u32 bi;
vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
while (n_left_from > 0 && n_left_to_next > 0)
{
flow_entry_t *flow = NULL;
upf_session_t *sx = NULL;
struct rules *active;
u32 flow_id;
bi = from[0];
to_next[0] = bi;
from += 1;
to_next += 1;
n_left_from -= 1;
n_left_to_next -= 1;
b = vlib_get_buffer (vm, bi);
error = 0;
flow_id = vnet_buffer (b)->tcp.next_node_opaque;
ASSERT (flow_id != ~0);
if (flow_id == ~0 || pool_is_free_index (fm->flows, flow_id))
{
next = UPF_PROXY_OUTPUT_NEXT_DROP;
error = UPF_PROXY_OUTPUT_ERROR_INVALID_FLOW;
goto stats;
}
flow = pool_elt_at_index (fm->flows, flow_id);
upf_debug ("flow: %p (0x%08x): %U\n",
flow, flow_id, format_flow_key, &flow->key);
upf_debug ("flow: %U\n", format_flow, flow);
upf_debug ("IP hdr: %U", format_ip4_header,
vlib_buffer_get_current (b), b->current_length);
upf_debug ("Flow ORIGIN/REVERSE Pdr Id: %u/%u, FT Next %u/%u",
flow_pdr_id (flow, FT_ORIGIN), flow_pdr_id (flow,
FT_REVERSE),
flow_next (flow, FT_ORIGIN), flow_next (flow,
FT_REVERSE));
if (pool_is_free
(gtm->sessions, gtm->sessions + flow->session_index))
{
clib_warning
("The flow has sidx %d that refers to a dead session",
flow->session_index);
next = UPF_PROXY_OUTPUT_NEXT_DROP;
error = UPF_PROXY_OUTPUT_ERROR_INVALID_FLOW;
goto stats;
}
UPF_ENTER_SUBGRAPH (b, flow->session_index, is_ip4);
upf_buffer_opaque (b)->gtpu.flow_id = flow_id;
upf_buffer_opaque (b)->gtpu.is_reverse =
direction ^ flow->is_reverse;
upf_buffer_opaque (b)->gtpu.is_proxied = 1;
/* mostly borrowed from vnet/interface_output.c calc_checksums */
if (is_ip4)
{
ip4_header_t *ip4;
tcp_header_t *th;
ip4 = (ip4_header_t *) vlib_buffer_get_current (b);
th = (tcp_header_t *) ip4_next_header (ip4);
ip4->checksum = ip4_header_checksum (ip4);
th->checksum = 0;
th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ip4);
}
else
{
int bogus;
ip6_header_t *ip6;
tcp_header_t *th;
ip6 = (ip6_header_t *) vlib_buffer_get_current (b);
th = (tcp_header_t *) ip6_next_header (ip6);
th->checksum = 0;
th->checksum =
ip6_tcp_udp_icmp_compute_checksum (vm, b, ip6, &bogus);
}
b->flags &= ~VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
b->flags &= ~VNET_BUFFER_F_OFFLOAD_UDP_CKSUM;
b->flags &= ~VNET_BUFFER_F_OFFLOAD_IP_CKSUM;
next = ft_next_map_next[flow_next (flow, direction)];
if (next == UPF_PROXY_OUTPUT_NEXT_PROCESS)
{
upf_pdr_t *pdr;
if (!pool_is_free_index (gtm->sessions, flow->session_index))
{
sx = pool_elt_at_index (gtm->sessions, flow->session_index);
if (sx->generation != flow->generation)
sx = NULL;
}
ASSERT (flow_pdr_id (flow, direction) != ~0);
active = sx ? pfcp_get_rules (sx, PFCP_ACTIVE) : NULL;
pdr =
active ? pfcp_get_pdr_by_id (active,
flow_pdr_id (flow,
direction)) : NULL;
if (!pdr)
{
next = UPF_PROXY_OUTPUT_NEXT_DROP;
error = UPF_PROXY_OUTPUT_ERROR_NO_SESSION;
goto stats;
}
upf_buffer_opaque (b)->gtpu.pdr_idx = pdr - active->pdr;
}
stats:
len = vlib_buffer_length_in_chain (vm, b);
stats_n_packets += 1;
stats_n_bytes += len;
/* Batch stats increment on the same gtpu tunnel so counter is not
incremented per packet. Note stats are still incremented for deleted
and admin-down tunnel where packets are dropped. It is not worthwhile
to check for this rare case and affect normal path performance. */
if (PREDICT_FALSE (sw_if_index != stats_sw_if_index))
{
stats_n_packets -= 1;
stats_n_bytes -= len;
if (stats_n_packets)
vlib_increment_combined_counter
(im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_TX,
thread_index, stats_sw_if_index,
stats_n_packets, stats_n_bytes);
stats_n_packets = 1;
stats_n_bytes = len;
stats_sw_if_index = sw_if_index;
}
b->error = error ? node->errors[error] : 0;
if (PREDICT_FALSE (b->flags & VLIB_BUFFER_IS_TRACED))
{
upf_session_t *sess = NULL;
u32 sidx = 0;
upf_proxy_output_trace_t *tr =
vlib_add_trace (vm, node, b, sizeof (*tr));
/* Get next node index and adj index from tunnel next_dpo */
sidx = upf_buffer_opaque (b)->gtpu.session_index;
sess = pool_elt_at_index (gtm->sessions, sidx);
tr->session_index = sidx;
tr->cp_seid = sess->cp_seid;
tr->flow_id = upf_buffer_opaque (b)->gtpu.flow_id;
tr->pdr_idx = upf_buffer_opaque (b)->gtpu.pdr_idx;
clib_memcpy (tr->packet_data, vlib_buffer_get_current (b),
sizeof (tr->packet_data));
}
vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
to_next, n_left_to_next, bi, next);
}
vlib_put_next_frame (vm, node, next_index, n_left_to_next);
}
return from_frame->n_vectors;
}
VLIB_NODE_FN (upf_ip4_proxy_server_output_node) (vlib_main_t * vm,
vlib_node_runtime_t * node,
vlib_frame_t * from_frame)
{
return upf_proxy_output (vm, node, from_frame, FT_REVERSE, /* is_ip4 */ 1);
}
VLIB_NODE_FN (upf_ip6_proxy_server_output_node) (vlib_main_t * vm,
vlib_node_runtime_t * node,
vlib_frame_t * from_frame)
{
return upf_proxy_output (vm, node, from_frame, FT_REVERSE, /* is_ip4 */ 0);
}
/* *INDENT-OFF* */
VLIB_REGISTER_NODE (upf_ip4_proxy_server_output_node) = {
.name = "upf-ip4-proxy-server-output",
.vector_size = sizeof (u32),
.format_trace = format_upf_proxy_output_trace,
.type = VLIB_NODE_TYPE_INTERNAL,
.n_errors = ARRAY_LEN(upf_proxy_output_error_strings),
.error_strings = upf_proxy_output_error_strings,
.n_next_nodes = UPF_PROXY_OUTPUT_N_NEXT,
.next_nodes = {
[UPF_PROXY_OUTPUT_NEXT_DROP] = "error-drop",
[UPF_PROXY_OUTPUT_NEXT_CLASSIFY] = "upf-ip4-classify",
[UPF_PROXY_OUTPUT_NEXT_PROCESS] = "upf-ip4-forward",
},
};
/* *INDENT-ON* */
/* *INDENT-OFF* */
VLIB_REGISTER_NODE (upf_ip6_proxy_server_output_node) = {
.name = "upf-ip6-proxy-server-output",
.vector_size = sizeof (u32),
.format_trace = format_upf_proxy_output_trace,
.type = VLIB_NODE_TYPE_INTERNAL,
.n_errors = ARRAY_LEN(upf_proxy_output_error_strings),
.error_strings = upf_proxy_output_error_strings,
.n_next_nodes = UPF_PROXY_OUTPUT_N_NEXT,
.next_nodes = {
[UPF_PROXY_OUTPUT_NEXT_DROP] = "error-drop",
[UPF_PROXY_OUTPUT_NEXT_CLASSIFY] = "upf-ip6-classify",
[UPF_PROXY_OUTPUT_NEXT_PROCESS] = "upf-ip6-forward",
},
};
/* *INDENT-ON* */
/*
* fd.io coding-style-patch-verification: ON
*
* Local Variables:
* eval: (c-set-style "gnu")
* End:
*/