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
|
/*
* Copyright (c) 2020 Cisco and/or its affiliates.
* 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.
*/
#ifndef __included_lib_nat_inlines_h__
#define __included_lib_nat_inlines_h__
#include <vnet/tcp/tcp_packet.h>
#include <vnet/ip/ip4_packet.h>
static inline void
increment_v4_address (ip4_address_t * a)
{
u32 v;
v = clib_net_to_host_u32 (a->as_u32) + 1;
a->as_u32 = clib_host_to_net_u32 (v);
}
always_inline void
mss_clamping (u16 mss_clamping, tcp_header_t * tcp, ip_csum_t * sum)
{
u8 *data;
u8 opt_len, opts_len, kind;
u16 mss;
if (!(mss_clamping && tcp_syn (tcp)))
return;
opts_len = (tcp_doff (tcp) << 2) - sizeof (tcp_header_t);
data = (u8 *) (tcp + 1);
for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
{
kind = data[0];
if (kind == TCP_OPTION_EOL)
break;
else if (kind == TCP_OPTION_NOOP)
{
opt_len = 1;
continue;
}
else
{
if (opts_len < 2)
return;
opt_len = data[1];
if (opt_len < 2 || opt_len > opts_len)
return;
}
if (kind == TCP_OPTION_MSS)
{
mss = *(u16 *) (data + 2);
if (clib_net_to_host_u16 (mss) > mss_clamping)
{
u16 mss_value_net = clib_host_to_net_u16 (mss_clamping);
*sum =
ip_csum_update (*sum, mss, mss_value_net, ip4_header_t,
length);
clib_memcpy_fast (data + 2, &mss_value_net, 2);
}
return;
}
}
}
static_always_inline u16
nat_random_port (u32 *random_seed, u16 min, u16 max)
{
u32 rwide;
u16 r;
rwide = random_u32 (random_seed);
r = rwide & 0xFFFF;
if (r >= min && r <= max)
return r;
return min + (rwide % (max - min + 1));
}
#endif /* __included_lib_nat_inlines_h__ */
/*
* fd.io coding-style-patch-verification: ON
*
* Local Variables:
* eval: (c-set-style "gnu")
* End:
*/
|