-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathparsing.h
245 lines (226 loc) · 6.68 KB
/
parsing.h
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
// Project Calico BPF dataplane programs.
// Copyright (c) 2020-2022 Tigera, Inc. All rights reserved.
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
#ifndef __CALI_PARSING_H__
#define __CALI_PARSING_H__
#include <linux/tcp.h>
#include <linux/udp.h>
#ifdef IPVER6
#include <linux/icmpv6.h>
#else
#include <linux/icmp.h>
#endif
#include "types.h"
#include "skb.h"
#include "routes.h"
#define PARSING_OK 0
#define PARSING_OK_V6 1
#define PARSING_ALLOW_WITHOUT_ENFORCING_POLICY 2
#define PARSING_ERROR -1
static CALI_BPF_INLINE int bpf_load_bytes(struct cali_tc_ctx *ctx, __u32 offset, void *buf, __u32 len);
#ifdef IPVER6
#include "parsing6.h"
#else
#include "parsing4.h"
#endif
#ifdef IPVER6
static CALI_BPF_INLINE int parse_packet_ip(struct cali_tc_ctx *ctx)
{
return parse_packet_ip_v6(ctx);
}
static CALI_BPF_INLINE void tc_state_fill_from_iphdr(struct cali_tc_ctx *ctx)
{
return tc_state_fill_from_iphdr_v6(ctx);
}
#else
static CALI_BPF_INLINE int parse_packet_ip(struct cali_tc_ctx *ctx)
{
return parse_packet_ip_v4(ctx);
}
static CALI_BPF_INLINE void tc_state_fill_from_iphdr(struct cali_tc_ctx *ctx)
{
return tc_state_fill_from_iphdr_v4(ctx);
}
#endif
static CALI_BPF_INLINE int bpf_load_bytes(struct cali_tc_ctx *ctx, __u32 offset, void *buf, __u32 len)
{
int ret;
#if CALI_F_XDP
#ifdef BPF_CORE_SUPPORTED
if (bpf_core_enum_value_exists(enum bpf_func_id, BPF_FUNC_xdp_load_bytes)) {
ret = bpf_xdp_load_bytes(ctx->xdp, offset, buf, len);
} else
#endif
{
return -22 /* EINVAL */;
}
#else /* CALI_F_XDP */
ret = bpf_skb_load_bytes(ctx->skb, offset, buf, len);
#endif /* CALI_F_XDP */
return ret;
}
/* Continue parsing packet based on the IP protocol and fill in relevant fields
* in the state (struct cali_tc_state). */
static CALI_BPF_INLINE int tc_state_fill_from_nexthdr(struct cali_tc_ctx *ctx, bool decap)
{
if (ctx->ipheader_len == 20) {
switch (ctx->state->ip_proto) {
case IPPROTO_TCP:
if (skb_refresh_validate_ptrs(ctx, TCP_SIZE)) {
deny_reason(ctx, CALI_REASON_SHORT);
CALI_DEBUG("Too short");
goto deny;
}
__builtin_memcpy(ctx->scratch->l4, ((void*)ip_hdr(ctx))+IP_SIZE, TCP_SIZE);
break;
case IPPROTO_UDP:
{
int len = UDP_SIZE;
if (decap) {
/* We try to opportunistically load the vxlan
* header as well, small cost and makes reading
* vxlan cheap later.
*/
len += sizeof(struct vxlanhdr);
if (skb_refresh_validate_ptrs(ctx, len) == 0) {
__builtin_memcpy(ctx->scratch->l4, ((void*)ip_hdr(ctx))+IP_SIZE, len);
break;
}
}
if (skb_refresh_validate_ptrs(ctx, UDP_SIZE)) {
deny_reason(ctx, CALI_REASON_SHORT);
CALI_DEBUG("Too short");
goto deny;
}
__builtin_memcpy(ctx->scratch->l4, ((void*)ip_hdr(ctx))+IP_SIZE, UDP_SIZE);
}
break;
default:
__builtin_memcpy(ctx->scratch->l4, ((void*)ip_hdr(ctx))+IP_SIZE, UDP_SIZE);
break;
}
} else {
switch (ctx->state->ip_proto) {
case IPPROTO_TCP:
/* Load the L4 header in case there were ip options as we loaded the options instead. */
if (bpf_load_bytes(ctx, skb_l4hdr_offset(ctx), ctx->scratch->l4, TCP_SIZE)) {
CALI_DEBUG("Too short");
goto deny;
}
break;
case IPPROTO_UDP:
{
int len = UDP_SIZE;
if (decap) {
/* We try to opportunistically load the vxlan
* header as well, small cost and makes reading
* vxlan cheap later.
*/
len += sizeof(struct vxlanhdr);
}
int offset = skb_l4hdr_offset(ctx);
if (bpf_load_bytes(ctx, offset, ctx->scratch->l4, len)) {
if (bpf_load_bytes(ctx, offset, ctx->scratch->l4, UDP_SIZE)) {
CALI_DEBUG("Too short");
goto deny;
}
}
}
break;
default:
if (bpf_load_bytes(ctx, skb_l4hdr_offset(ctx), ctx->scratch->l4, UDP_SIZE)) {
CALI_DEBUG("Too short");
goto deny;
}
break;
}
}
switch (ctx->state->ip_proto) {
case IPPROTO_TCP:
ctx->state->sport = bpf_ntohs(tcp_hdr(ctx)->source);
ctx->state->dport = bpf_ntohs(tcp_hdr(ctx)->dest);
ctx->state->pre_nat_dport = ctx->state->dport;
CALI_DEBUG("TCP; ports: s=%d d=%d", ctx->state->sport, ctx->state->dport);
break;
case IPPROTO_UDP:
ctx->state->sport = bpf_ntohs(udp_hdr(ctx)->source);
ctx->state->dport = bpf_ntohs(udp_hdr(ctx)->dest);
ctx->state->pre_nat_dport = ctx->state->dport;
CALI_DEBUG("UDP; ports: s=%d d=%d", ctx->state->sport, ctx->state->dport);
if (ctx->state->dport == VXLAN_PORT) {
/* CALI_F_FROM_HEP case is handled in vxlan_attempt_decap above since it already decoded
* the header. */
if (CALI_F_TO_HEP) {
if (rt_addr_is_remote_host(&ctx->state->ip_dst) &&
rt_addr_is_local_host(&ctx->state->ip_src)) {
CALI_DEBUG("VXLAN packet to known Calico host, allow.");
goto allow;
} else {
/* Unlike IPIP, the user can be using VXLAN on a different VNI
* so we don't simply drop it. */
CALI_DEBUG("VXLAN packet to unknown dest, fall through to policy.");
}
}
}
break;
#ifdef IPVER6
case IPPROTO_ICMPV6:
CALI_DEBUG("ICMPV6; type=%d code=%d",
icmp_hdr(ctx)->icmp6_type, icmp_hdr(ctx)->icmp6_code);
ctx->state->sport = 0;
/* icmp_type/code are in dport */
ctx->state->icmp_type = icmp_hdr(ctx)->icmp6_type;
ctx->state->icmp_code = icmp_hdr(ctx)->icmp6_code;
break;
#else
case IPPROTO_ICMP:
CALI_DEBUG("ICMP; type=%d code=%d",
icmp_hdr(ctx)->type, icmp_hdr(ctx)->code);
ctx->state->sport = 0;
/* icmp_type/code are in dport */
ctx->state->icmp_type = icmp_hdr(ctx)->type;
ctx->state->icmp_code = icmp_hdr(ctx)->code;
break;
#endif
case IPPROTO_IPIP:
if (CALI_F_IPIP | CALI_F_L3_DEV) {
// IPIP should never be sent down the tunnel.
CALI_DEBUG("IPIP traffic to/from tunnel: drop");
deny_reason(ctx, CALI_REASON_UNAUTH_SOURCE);
goto deny;
}
if (CALI_F_FROM_HEP) {
if (rt_addr_is_remote_host(&ctx->state->ip_src)) {
CALI_DEBUG("IPIP packet from known Calico host, allow.");
goto allow;
} else {
CALI_DEBUG("IPIP packet from unknown source, drop.");
deny_reason(ctx, CALI_REASON_UNAUTH_SOURCE);
goto deny;
}
} else if (CALI_F_TO_HEP && !CALI_F_IPIP && !CALI_F_L3_DEV) {
if (rt_addr_is_remote_host(&ctx->state->ip_dst)) {
CALI_DEBUG("IPIP packet to known Calico host, allow.");
goto allow;
} else {
CALI_DEBUG("IPIP packet to unknown dest, drop.");
deny_reason(ctx, CALI_REASON_UNAUTH_SOURCE);
goto deny;
}
}
if (CALI_F_FROM_WEP) {
CALI_DEBUG("IPIP traffic from workload: drop");
deny_reason(ctx, CALI_REASON_UNAUTH_SOURCE);
goto deny;
}
default:
CALI_DEBUG("Unknown protocol (%d), unable to extract ports",
(int)ctx->state->ip_proto);
}
return PARSING_OK;
allow:
return PARSING_ALLOW_WITHOUT_ENFORCING_POLICY;
deny:
return PARSING_ERROR;
}
#endif /* __CALI_PARSING_H__ */