-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagic.h
78 lines (69 loc) · 2.5 KB
/
magic.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
#ifndef _WG_MAGIC_H
#define _WG_MAGIC_H
#include <linux/skbuff.h>
#include <linux/ip.h>
#include <linux/ipv6.h>
#include <net/ip_tunnels.h>
#include <net/mpls.h>
#include <net/mpls.h>
#define SKB_MPLS_TYPE(skb) (skb->reserved_tailroom >> 24)
#define SKB_MPLS_LABEL(skb) (skb->reserved_tailroom & 0xFFFFFF)
enum mpls_type {
WG_MPLS_NONE = 0,
WG_MPLS_UC = 1,
WG_MPLS_MC = 2
};
static inline bool decap_mpls(struct sk_buff *skb){
__be16 mpls_type = skb->protocol;
struct mpls_shim_hdr *hdr;
hdr = mpls_hdr(skb);
// use reserved tailroom for mpls label + exp + bos
__u32 skb_lse = be32_to_cpu(hdr->label_stack_entry) >>8;
skb_pull(skb, MPLS_HLEN);
skb_reset_network_header(skb);
// if stacked
if (!(skb_lse & 1)) {
skb->protocol = mpls_type;
}
else { // if not stacked
// do not trust inner_protocol since skb would be forwarded and decap
// if (skb->inner_protocol == htons(ETH_P_IP) || skb->inner_protocol == htons(ETH_P_IPV6)) {
__be16 real_protocol = ip_tunnel_parse_protocol(skb);
// real_protocol != inner_protocol
if (real_protocol != htons(ETH_P_IP) && real_protocol != htons(ETH_P_IPV6))
return false;
skb->protocol = real_protocol;
}
if (mpls_type == htons(ETH_P_MPLS_UC))
skb->reserved_tailroom = skb_lse | (WG_MPLS_UC<<24);
else if (mpls_type == htons(ETH_P_MPLS_MC))
skb->reserved_tailroom = skb_lse | (WG_MPLS_MC<<24);
return true;
}
static inline void encap_mpls(struct sk_buff *skb){
if (SKB_MPLS_TYPE(skb)){
__u8 inner_ttl = 64;
__be16 inner_protocol = skb->protocol;
if (inner_protocol == htons(ETH_P_IPV6))
inner_ttl = ipv6_hdr(skb)->hop_limit;
if (inner_protocol == htons(ETH_P_IP))
inner_ttl = ip_hdr(skb)->ttl;
if (inner_protocol == htons(ETH_P_MPLS_UC))
inner_ttl = be32_to_cpu(mpls_hdr(skb)->label_stack_entry) & 0xff;
skb_push(skb, MPLS_HLEN);
skb_reset_network_header(skb);
skb->protocol = htons(ETH_P_MPLS_UC);
struct mpls_shim_hdr *hdr;
hdr = mpls_hdr(skb);
hdr->label_stack_entry =
mpls_entry_encode(
SKB_MPLS_LABEL(skb) >>4, // label
inner_ttl, // ttl
(SKB_MPLS_LABEL(skb) >>1)&0b111, // exp
SKB_MPLS_LABEL(skb) & 1 // bos
).label_stack_entry;
skb->reserved_tailroom = 0;
skb->inner_protocol = inner_protocol;
}
}
#endif /* _WG_MAGIC_H */