1 // SPDX-License-Identifier: GPL-2.0-only
3 * Network Service Header
5 * Copyright (c) 2017 Red Hat, Inc. -- Jiri Benc <jbenc@redhat.com>
8 #include <linux/module.h>
9 #include <linux/netdevice.h>
10 #include <linux/skbuff.h>
12 #include <net/tun_proto.h>
14 int nsh_push(struct sk_buff
*skb
, const struct nshhdr
*pushed_nh
)
17 size_t length
= nsh_hdr_len(pushed_nh
);
21 next_proto
= TUN_P_ETHERNET
;
23 next_proto
= tun_p_from_eth_p(skb
->protocol
);
28 /* Add the NSH header */
29 if (skb_cow_head(skb
, length
) < 0)
32 skb_push(skb
, length
);
33 nh
= (struct nshhdr
*)(skb
->data
);
34 memcpy(nh
, pushed_nh
, length
);
36 skb_postpush_rcsum(skb
, nh
, length
);
38 skb
->protocol
= htons(ETH_P_NSH
);
39 skb_reset_mac_header(skb
);
40 skb_reset_network_header(skb
);
41 skb_reset_mac_len(skb
);
45 EXPORT_SYMBOL_GPL(nsh_push
);
47 int nsh_pop(struct sk_buff
*skb
)
53 if (!pskb_may_pull(skb
, NSH_BASE_HDR_LEN
))
55 nh
= (struct nshhdr
*)(skb
->data
);
56 length
= nsh_hdr_len(nh
);
57 if (length
< NSH_BASE_HDR_LEN
)
59 inner_proto
= tun_p_to_eth_p(nh
->np
);
60 if (!pskb_may_pull(skb
, length
))
66 skb_pull_rcsum(skb
, length
);
67 skb_reset_mac_header(skb
);
68 skb_reset_network_header(skb
);
69 skb_reset_mac_len(skb
);
70 skb
->protocol
= inner_proto
;
74 EXPORT_SYMBOL_GPL(nsh_pop
);
76 static struct sk_buff
*nsh_gso_segment(struct sk_buff
*skb
,
77 netdev_features_t features
)
79 struct sk_buff
*segs
= ERR_PTR(-EINVAL
);
80 unsigned int nsh_len
, mac_len
;
84 skb_reset_network_header(skb
);
86 nhoff
= skb
->network_header
- skb
->mac_header
;
87 mac_len
= skb
->mac_len
;
89 if (unlikely(!pskb_may_pull(skb
, NSH_BASE_HDR_LEN
)))
91 nsh_len
= nsh_hdr_len(nsh_hdr(skb
));
92 if (nsh_len
< NSH_BASE_HDR_LEN
)
94 if (unlikely(!pskb_may_pull(skb
, nsh_len
)))
97 proto
= tun_p_to_eth_p(nsh_hdr(skb
)->np
);
101 __skb_pull(skb
, nsh_len
);
103 skb_reset_mac_header(skb
);
104 skb
->mac_len
= proto
== htons(ETH_P_TEB
) ? ETH_HLEN
: 0;
105 skb
->protocol
= proto
;
107 features
&= NETIF_F_SG
;
108 segs
= skb_mac_gso_segment(skb
, features
);
109 if (IS_ERR_OR_NULL(segs
)) {
110 skb_gso_error_unwind(skb
, htons(ETH_P_NSH
), nsh_len
,
111 skb
->network_header
- nhoff
,
116 for (skb
= segs
; skb
; skb
= skb
->next
) {
117 skb
->protocol
= htons(ETH_P_NSH
);
118 __skb_push(skb
, nsh_len
);
119 skb_set_mac_header(skb
, -nhoff
);
120 skb
->network_header
= skb
->mac_header
+ mac_len
;
121 skb
->mac_len
= mac_len
;
128 static struct packet_offload nsh_packet_offload __read_mostly
= {
129 .type
= htons(ETH_P_NSH
),
132 .gso_segment
= nsh_gso_segment
,
136 static int __init
nsh_init_module(void)
138 dev_add_offload(&nsh_packet_offload
);
142 static void __exit
nsh_cleanup_module(void)
144 dev_remove_offload(&nsh_packet_offload
);
147 module_init(nsh_init_module
);
148 module_exit(nsh_cleanup_module
);
150 MODULE_AUTHOR("Jiri Benc <jbenc@redhat.com>");
151 MODULE_DESCRIPTION("NSH protocol");
152 MODULE_LICENSE("GPL v2");