Blame view

net/mpls/mpls_gso.c 2.29 KB
2874c5fd2   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
0d89d2035   Simon Horman   MPLS: Add limited...
2
3
4
5
6
  /*
   *	MPLS GSO Support
   *
   *	Authors: Simon Horman (horms@verge.net.au)
   *
0d89d2035   Simon Horman   MPLS: Add limited...
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
   *	Based on: GSO portions of net/ipv4/gre.c
   */
  
  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  
  #include <linux/err.h>
  #include <linux/module.h>
  #include <linux/netdev_features.h>
  #include <linux/netdevice.h>
  #include <linux/skbuff.h>
  
  static struct sk_buff *mpls_gso_segment(struct sk_buff *skb,
  				       netdev_features_t features)
  {
  	struct sk_buff *segs = ERR_PTR(-EINVAL);
48d2ab609   David Ahern   net: mpls: Fixups...
22
  	u16 mac_offset = skb->mac_header;
0d89d2035   Simon Horman   MPLS: Add limited...
23
  	netdev_features_t mpls_features;
48d2ab609   David Ahern   net: mpls: Fixups...
24
  	u16 mac_len = skb->mac_len;
0d89d2035   Simon Horman   MPLS: Add limited...
25
  	__be16 mpls_protocol;
48d2ab609   David Ahern   net: mpls: Fixups...
26
27
28
29
30
31
  	unsigned int mpls_hlen;
  
  	skb_reset_network_header(skb);
  	mpls_hlen = skb_inner_network_header(skb) - skb_network_header(skb);
  	if (unlikely(!pskb_may_pull(skb, mpls_hlen)))
  		goto out;
0d89d2035   Simon Horman   MPLS: Add limited...
32

0d89d2035   Simon Horman   MPLS: Add limited...
33
34
35
  	/* Setup inner SKB. */
  	mpls_protocol = skb->protocol;
  	skb->protocol = skb->inner_protocol;
48d2ab609   David Ahern   net: mpls: Fixups...
36
37
38
39
  	__skb_pull(skb, mpls_hlen);
  
  	skb->mac_len = 0;
  	skb_reset_mac_header(skb);
0d89d2035   Simon Horman   MPLS: Add limited...
40
41
  
  	/* Segment inner packet. */
1e16aa3dd   Florian Westphal   net: gso: use fea...
42
  	mpls_features = skb->dev->mpls_features & features;
0d89d2035   Simon Horman   MPLS: Add limited...
43
  	segs = skb_mac_gso_segment(skb, mpls_features);
48d2ab609   David Ahern   net: mpls: Fixups...
44
45
46
47
48
49
50
51
52
53
54
  	if (IS_ERR_OR_NULL(segs)) {
  		skb_gso_error_unwind(skb, mpls_protocol, mpls_hlen, mac_offset,
  				     mac_len);
  		goto out;
  	}
  	skb = segs;
  
  	mpls_hlen += mac_len;
  	do {
  		skb->mac_len = mac_len;
  		skb->protocol = mpls_protocol;
0d89d2035   Simon Horman   MPLS: Add limited...
55

48d2ab609   David Ahern   net: mpls: Fixups...
56
  		skb_reset_inner_network_header(skb);
0d89d2035   Simon Horman   MPLS: Add limited...
57

48d2ab609   David Ahern   net: mpls: Fixups...
58
  		__skb_push(skb, mpls_hlen);
0d89d2035   Simon Horman   MPLS: Add limited...
59

48d2ab609   David Ahern   net: mpls: Fixups...
60
61
62
  		skb_reset_mac_header(skb);
  		skb_set_network_header(skb, mac_len);
  	} while ((skb = skb->next));
5c7cdf339   Tom Herbert   gso: Remove arbit...
63

48d2ab609   David Ahern   net: mpls: Fixups...
64
  out:
0d89d2035   Simon Horman   MPLS: Add limited...
65
66
  	return segs;
  }
207895fd3   Daniel Borkmann   net: mark some po...
67
  static struct packet_offload mpls_mc_offload __read_mostly = {
0d89d2035   Simon Horman   MPLS: Add limited...
68
  	.type = cpu_to_be16(ETH_P_MPLS_MC),
bdef7de4b   David S. Miller   net: Add priority...
69
  	.priority = 15,
0d89d2035   Simon Horman   MPLS: Add limited...
70
  	.callbacks = {
0d89d2035   Simon Horman   MPLS: Add limited...
71
72
73
  		.gso_segment    =	mpls_gso_segment,
  	},
  };
207895fd3   Daniel Borkmann   net: mark some po...
74
  static struct packet_offload mpls_uc_offload __read_mostly = {
0d89d2035   Simon Horman   MPLS: Add limited...
75
  	.type = cpu_to_be16(ETH_P_MPLS_UC),
bdef7de4b   David S. Miller   net: Add priority...
76
  	.priority = 15,
0d89d2035   Simon Horman   MPLS: Add limited...
77
  	.callbacks = {
0d89d2035   Simon Horman   MPLS: Add limited...
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
  		.gso_segment    =	mpls_gso_segment,
  	},
  };
  
  static int __init mpls_gso_init(void)
  {
  	pr_info("MPLS GSO support
  ");
  
  	dev_add_offload(&mpls_uc_offload);
  	dev_add_offload(&mpls_mc_offload);
  
  	return 0;
  }
  
  static void __exit mpls_gso_exit(void)
  {
  	dev_remove_offload(&mpls_uc_offload);
  	dev_remove_offload(&mpls_mc_offload);
  }
  
  module_init(mpls_gso_init);
  module_exit(mpls_gso_exit);
  
  MODULE_DESCRIPTION("MPLS GSO support");
  MODULE_AUTHOR("Simon Horman (horms@verge.net.au)");
  MODULE_LICENSE("GPL");