1 // SPDX-License-Identifier: GPL-2.0-or-later
3 #include <net/dst_metadata.h>
4 #include <net/busy_poll.h>
5 #include <trace/events/net.h>
9 /* This should be increased if a protocol with a bigger head is added. */
10 #define GRO_MAX_HEAD (MAX_HEADER + 128)
12 static DEFINE_SPINLOCK(offload_lock);
13 static struct list_head offload_base __read_mostly = LIST_HEAD_INIT(offload_base);
14 /* Maximum number of GRO_NORMAL skbs to batch up for list-RX */
15 int gro_normal_batch __read_mostly = 8;
18 * dev_add_offload - register offload handlers
19 * @po: protocol offload declaration
21 * Add protocol offload handlers to the networking stack. The passed
22 * &proto_offload is linked into kernel lists and may not be freed until
23 * it has been removed from the kernel lists.
25 * This call does not sleep therefore it can not
26 * guarantee all CPU's that are in middle of receiving packets
27 * will see the new offload handlers (until the next received packet).
29 void dev_add_offload(struct packet_offload *po)
31 struct packet_offload *elem;
33 spin_lock(&offload_lock);
34 list_for_each_entry(elem, &offload_base, list) {
35 if (po->priority < elem->priority)
38 list_add_rcu(&po->list, elem->list.prev);
39 spin_unlock(&offload_lock);
41 EXPORT_SYMBOL(dev_add_offload);
44 * __dev_remove_offload - remove offload handler
45 * @po: packet offload declaration
47 * Remove a protocol offload handler that was previously added to the
48 * kernel offload handlers by dev_add_offload(). The passed &offload_type
49 * is removed from the kernel lists and can be freed or reused once this
52 * The packet type might still be in use by receivers
53 * and must not be freed until after all the CPU's have gone
54 * through a quiescent state.
56 static void __dev_remove_offload(struct packet_offload *po)
58 struct list_head *head = &offload_base;
59 struct packet_offload *po1;
61 spin_lock(&offload_lock);
63 list_for_each_entry(po1, head, list) {
65 list_del_rcu(&po->list);
70 pr_warn("dev_remove_offload: %p not found\n", po);
72 spin_unlock(&offload_lock);
76 * dev_remove_offload - remove packet offload handler
77 * @po: packet offload declaration
79 * Remove a packet offload handler that was previously added to the kernel
80 * offload handlers by dev_add_offload(). The passed &offload_type is
81 * removed from the kernel lists and can be freed or reused once this
84 * This call sleeps to guarantee that no CPU is looking at the packet
87 void dev_remove_offload(struct packet_offload *po)
89 __dev_remove_offload(po);
93 EXPORT_SYMBOL(dev_remove_offload);
96 * skb_eth_gso_segment - segmentation handler for ethernet protocols.
97 * @skb: buffer to segment
98 * @features: features for the output path (see dev->features)
99 * @type: Ethernet Protocol ID
101 struct sk_buff *skb_eth_gso_segment(struct sk_buff *skb,
102 netdev_features_t features, __be16 type)
104 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
105 struct packet_offload *ptype;
108 list_for_each_entry_rcu(ptype, &offload_base, list) {
109 if (ptype->type == type && ptype->callbacks.gso_segment) {
110 segs = ptype->callbacks.gso_segment(skb, features);
118 EXPORT_SYMBOL(skb_eth_gso_segment);
121 * skb_mac_gso_segment - mac layer segmentation handler.
122 * @skb: buffer to segment
123 * @features: features for the output path (see dev->features)
125 struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
126 netdev_features_t features)
128 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
129 struct packet_offload *ptype;
130 int vlan_depth = skb->mac_len;
131 __be16 type = skb_network_protocol(skb, &vlan_depth);
134 return ERR_PTR(-EINVAL);
136 __skb_pull(skb, vlan_depth);
139 list_for_each_entry_rcu(ptype, &offload_base, list) {
140 if (ptype->type == type && ptype->callbacks.gso_segment) {
141 segs = ptype->callbacks.gso_segment(skb, features);
147 __skb_push(skb, skb->data - skb_mac_header(skb));
151 EXPORT_SYMBOL(skb_mac_gso_segment);
153 int skb_gro_receive(struct sk_buff *p, struct sk_buff *skb)
155 struct skb_shared_info *pinfo, *skbinfo = skb_shinfo(skb);
156 unsigned int offset = skb_gro_offset(skb);
157 unsigned int headlen = skb_headlen(skb);
158 unsigned int len = skb_gro_len(skb);
159 unsigned int delta_truesize;
160 unsigned int gro_max_size;
161 unsigned int new_truesize;
164 /* pairs with WRITE_ONCE() in netif_set_gro_max_size() */
165 gro_max_size = READ_ONCE(p->dev->gro_max_size);
167 if (unlikely(p->len + len >= gro_max_size || NAPI_GRO_CB(skb)->flush))
170 lp = NAPI_GRO_CB(p)->last;
171 pinfo = skb_shinfo(lp);
173 if (headlen <= offset) {
176 int i = skbinfo->nr_frags;
177 int nr_frags = pinfo->nr_frags + i;
179 if (nr_frags > MAX_SKB_FRAGS)
183 pinfo->nr_frags = nr_frags;
184 skbinfo->nr_frags = 0;
186 frag = pinfo->frags + nr_frags;
187 frag2 = skbinfo->frags + i;
192 skb_frag_off_add(frag, offset);
193 skb_frag_size_sub(frag, offset);
195 /* all fragments truesize : remove (head size + sk_buff) */
196 new_truesize = SKB_TRUESIZE(skb_end_offset(skb));
197 delta_truesize = skb->truesize - new_truesize;
199 skb->truesize = new_truesize;
200 skb->len -= skb->data_len;
203 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
205 } else if (skb->head_frag) {
206 int nr_frags = pinfo->nr_frags;
207 skb_frag_t *frag = pinfo->frags + nr_frags;
208 struct page *page = virt_to_head_page(skb->head);
209 unsigned int first_size = headlen - offset;
210 unsigned int first_offset;
212 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
215 first_offset = skb->data -
216 (unsigned char *)page_address(page) +
219 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
221 __skb_frag_set_page(frag, page);
222 skb_frag_off_set(frag, first_offset);
223 skb_frag_size_set(frag, first_size);
225 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
226 /* We dont need to clear skbinfo->nr_frags here */
228 new_truesize = SKB_DATA_ALIGN(sizeof(struct sk_buff));
229 delta_truesize = skb->truesize - new_truesize;
230 skb->truesize = new_truesize;
231 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
236 /* sk owenrship - if any - completely transferred to the aggregated packet */
237 skb->destructor = NULL;
238 delta_truesize = skb->truesize;
239 if (offset > headlen) {
240 unsigned int eat = offset - headlen;
242 skb_frag_off_add(&skbinfo->frags[0], eat);
243 skb_frag_size_sub(&skbinfo->frags[0], eat);
244 skb->data_len -= eat;
249 __skb_pull(skb, offset);
251 if (NAPI_GRO_CB(p)->last == p)
252 skb_shinfo(p)->frag_list = skb;
254 NAPI_GRO_CB(p)->last->next = skb;
255 NAPI_GRO_CB(p)->last = skb;
256 __skb_header_release(skb);
260 NAPI_GRO_CB(p)->count++;
262 p->truesize += delta_truesize;
266 lp->truesize += delta_truesize;
269 NAPI_GRO_CB(skb)->same_flow = 1;
274 static void napi_gro_complete(struct napi_struct *napi, struct sk_buff *skb)
276 struct packet_offload *ptype;
277 __be16 type = skb->protocol;
278 struct list_head *head = &offload_base;
281 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
283 if (NAPI_GRO_CB(skb)->count == 1) {
284 skb_shinfo(skb)->gso_size = 0;
289 list_for_each_entry_rcu(ptype, head, list) {
290 if (ptype->type != type || !ptype->callbacks.gro_complete)
293 err = INDIRECT_CALL_INET(ptype->callbacks.gro_complete,
294 ipv6_gro_complete, inet_gro_complete,
301 WARN_ON(&ptype->list == head);
307 gro_normal_one(napi, skb, NAPI_GRO_CB(skb)->count);
310 static void __napi_gro_flush_chain(struct napi_struct *napi, u32 index,
313 struct list_head *head = &napi->gro_hash[index].list;
314 struct sk_buff *skb, *p;
316 list_for_each_entry_safe_reverse(skb, p, head, list) {
317 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
319 skb_list_del_init(skb);
320 napi_gro_complete(napi, skb);
321 napi->gro_hash[index].count--;
324 if (!napi->gro_hash[index].count)
325 __clear_bit(index, &napi->gro_bitmask);
328 /* napi->gro_hash[].list contains packets ordered by age.
329 * youngest packets at the head of it.
330 * Complete skbs in reverse order to reduce latencies.
332 void napi_gro_flush(struct napi_struct *napi, bool flush_old)
334 unsigned long bitmask = napi->gro_bitmask;
335 unsigned int i, base = ~0U;
337 while ((i = ffs(bitmask)) != 0) {
340 __napi_gro_flush_chain(napi, base, flush_old);
343 EXPORT_SYMBOL(napi_gro_flush);
345 static void gro_list_prepare(const struct list_head *head,
346 const struct sk_buff *skb)
348 unsigned int maclen = skb->dev->hard_header_len;
349 u32 hash = skb_get_hash_raw(skb);
352 list_for_each_entry(p, head, list) {
355 NAPI_GRO_CB(p)->flush = 0;
357 if (hash != skb_get_hash_raw(p)) {
358 NAPI_GRO_CB(p)->same_flow = 0;
362 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
363 diffs |= skb_vlan_tag_present(p) ^ skb_vlan_tag_present(skb);
364 if (skb_vlan_tag_present(p))
365 diffs |= skb_vlan_tag_get(p) ^ skb_vlan_tag_get(skb);
366 diffs |= skb_metadata_differs(p, skb);
367 if (maclen == ETH_HLEN)
368 diffs |= compare_ether_header(skb_mac_header(p),
369 skb_mac_header(skb));
371 diffs = memcmp(skb_mac_header(p),
375 /* in most common scenarions 'slow_gro' is 0
376 * otherwise we are already on some slower paths
377 * either skip all the infrequent tests altogether or
378 * avoid trying too hard to skip each of them individually
380 if (!diffs && unlikely(skb->slow_gro | p->slow_gro)) {
381 #if IS_ENABLED(CONFIG_SKB_EXTENSIONS) && IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
382 struct tc_skb_ext *skb_ext;
383 struct tc_skb_ext *p_ext;
386 diffs |= p->sk != skb->sk;
387 diffs |= skb_metadata_dst_cmp(p, skb);
388 diffs |= skb_get_nfct(p) ^ skb_get_nfct(skb);
390 #if IS_ENABLED(CONFIG_SKB_EXTENSIONS) && IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
391 skb_ext = skb_ext_find(skb, TC_SKB_EXT);
392 p_ext = skb_ext_find(p, TC_SKB_EXT);
394 diffs |= (!!p_ext) ^ (!!skb_ext);
395 if (!diffs && unlikely(skb_ext))
396 diffs |= p_ext->chain ^ skb_ext->chain;
400 NAPI_GRO_CB(p)->same_flow = !diffs;
404 static inline void skb_gro_reset_offset(struct sk_buff *skb, u32 nhoff)
406 const struct skb_shared_info *pinfo = skb_shinfo(skb);
407 const skb_frag_t *frag0 = &pinfo->frags[0];
409 NAPI_GRO_CB(skb)->data_offset = 0;
410 NAPI_GRO_CB(skb)->frag0 = NULL;
411 NAPI_GRO_CB(skb)->frag0_len = 0;
413 if (!skb_headlen(skb) && pinfo->nr_frags &&
414 !PageHighMem(skb_frag_page(frag0)) &&
415 (!NET_IP_ALIGN || !((skb_frag_off(frag0) + nhoff) & 3))) {
416 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
417 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
418 skb_frag_size(frag0),
419 skb->end - skb->tail);
423 static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
425 struct skb_shared_info *pinfo = skb_shinfo(skb);
427 BUG_ON(skb->end - skb->tail < grow);
429 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
431 skb->data_len -= grow;
434 skb_frag_off_add(&pinfo->frags[0], grow);
435 skb_frag_size_sub(&pinfo->frags[0], grow);
437 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
438 skb_frag_unref(skb, 0);
439 memmove(pinfo->frags, pinfo->frags + 1,
440 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
444 static void gro_flush_oldest(struct napi_struct *napi, struct list_head *head)
446 struct sk_buff *oldest;
448 oldest = list_last_entry(head, struct sk_buff, list);
450 /* We are called with head length >= MAX_GRO_SKBS, so this is
453 if (WARN_ON_ONCE(!oldest))
456 /* Do not adjust napi->gro_hash[].count, caller is adding a new
459 skb_list_del_init(oldest);
460 napi_gro_complete(napi, oldest);
463 static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
465 u32 bucket = skb_get_hash_raw(skb) & (GRO_HASH_BUCKETS - 1);
466 struct gro_list *gro_list = &napi->gro_hash[bucket];
467 struct list_head *head = &offload_base;
468 struct packet_offload *ptype;
469 __be16 type = skb->protocol;
470 struct sk_buff *pp = NULL;
475 if (netif_elide_gro(skb->dev))
478 gro_list_prepare(&gro_list->list, skb);
481 list_for_each_entry_rcu(ptype, head, list) {
482 if (ptype->type != type || !ptype->callbacks.gro_receive)
485 skb_set_network_header(skb, skb_gro_offset(skb));
486 skb_reset_mac_len(skb);
487 NAPI_GRO_CB(skb)->same_flow = 0;
488 NAPI_GRO_CB(skb)->flush = skb_is_gso(skb) || skb_has_frag_list(skb);
489 NAPI_GRO_CB(skb)->free = 0;
490 NAPI_GRO_CB(skb)->encap_mark = 0;
491 NAPI_GRO_CB(skb)->recursion_counter = 0;
492 NAPI_GRO_CB(skb)->is_fou = 0;
493 NAPI_GRO_CB(skb)->is_atomic = 1;
494 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
496 /* Setup for GRO checksum validation */
497 switch (skb->ip_summed) {
498 case CHECKSUM_COMPLETE:
499 NAPI_GRO_CB(skb)->csum = skb->csum;
500 NAPI_GRO_CB(skb)->csum_valid = 1;
501 NAPI_GRO_CB(skb)->csum_cnt = 0;
503 case CHECKSUM_UNNECESSARY:
504 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
505 NAPI_GRO_CB(skb)->csum_valid = 0;
508 NAPI_GRO_CB(skb)->csum_cnt = 0;
509 NAPI_GRO_CB(skb)->csum_valid = 0;
512 pp = INDIRECT_CALL_INET(ptype->callbacks.gro_receive,
513 ipv6_gro_receive, inet_gro_receive,
514 &gro_list->list, skb);
519 if (&ptype->list == head)
522 if (PTR_ERR(pp) == -EINPROGRESS) {
527 same_flow = NAPI_GRO_CB(skb)->same_flow;
528 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
531 skb_list_del_init(pp);
532 napi_gro_complete(napi, pp);
539 if (NAPI_GRO_CB(skb)->flush)
542 if (unlikely(gro_list->count >= MAX_GRO_SKBS))
543 gro_flush_oldest(napi, &gro_list->list);
547 NAPI_GRO_CB(skb)->count = 1;
548 NAPI_GRO_CB(skb)->age = jiffies;
549 NAPI_GRO_CB(skb)->last = skb;
550 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
551 list_add(&skb->list, &gro_list->list);
555 grow = skb_gro_offset(skb) - skb_headlen(skb);
557 gro_pull_from_frag0(skb, grow);
559 if (gro_list->count) {
560 if (!test_bit(bucket, &napi->gro_bitmask))
561 __set_bit(bucket, &napi->gro_bitmask);
562 } else if (test_bit(bucket, &napi->gro_bitmask)) {
563 __clear_bit(bucket, &napi->gro_bitmask);
573 struct packet_offload *gro_find_receive_by_type(__be16 type)
575 struct list_head *offload_head = &offload_base;
576 struct packet_offload *ptype;
578 list_for_each_entry_rcu(ptype, offload_head, list) {
579 if (ptype->type != type || !ptype->callbacks.gro_receive)
585 EXPORT_SYMBOL(gro_find_receive_by_type);
587 struct packet_offload *gro_find_complete_by_type(__be16 type)
589 struct list_head *offload_head = &offload_base;
590 struct packet_offload *ptype;
592 list_for_each_entry_rcu(ptype, offload_head, list) {
593 if (ptype->type != type || !ptype->callbacks.gro_complete)
599 EXPORT_SYMBOL(gro_find_complete_by_type);
601 static gro_result_t napi_skb_finish(struct napi_struct *napi,
607 gro_normal_one(napi, skb, 1);
610 case GRO_MERGED_FREE:
611 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
612 napi_skb_free_stolen_head(skb);
613 else if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
616 __kfree_skb_defer(skb);
628 gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
632 skb_mark_napi_id(skb, napi);
633 trace_napi_gro_receive_entry(skb);
635 skb_gro_reset_offset(skb, 0);
637 ret = napi_skb_finish(napi, skb, dev_gro_receive(napi, skb));
638 trace_napi_gro_receive_exit(ret);
642 EXPORT_SYMBOL(napi_gro_receive);
644 static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
646 if (unlikely(skb->pfmemalloc)) {
650 __skb_pull(skb, skb_headlen(skb));
651 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
652 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
653 __vlan_hwaccel_clear_tag(skb);
654 skb->dev = napi->dev;
657 /* eth_type_trans() assumes pkt_type is PACKET_HOST */
658 skb->pkt_type = PACKET_HOST;
660 skb->encapsulation = 0;
661 skb_shinfo(skb)->gso_type = 0;
662 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
663 if (unlikely(skb->slow_gro)) {
673 struct sk_buff *napi_get_frags(struct napi_struct *napi)
675 struct sk_buff *skb = napi->skb;
678 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
681 skb_mark_napi_id(skb, napi);
686 EXPORT_SYMBOL(napi_get_frags);
688 static gro_result_t napi_frags_finish(struct napi_struct *napi,
695 __skb_push(skb, ETH_HLEN);
696 skb->protocol = eth_type_trans(skb, skb->dev);
697 if (ret == GRO_NORMAL)
698 gro_normal_one(napi, skb, 1);
701 case GRO_MERGED_FREE:
702 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
703 napi_skb_free_stolen_head(skb);
705 napi_reuse_skb(napi, skb);
716 /* Upper GRO stack assumes network header starts at gro_offset=0
717 * Drivers could call both napi_gro_frags() and napi_gro_receive()
718 * We copy ethernet header into skb->data to have a common layout.
720 static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
722 struct sk_buff *skb = napi->skb;
723 const struct ethhdr *eth;
724 unsigned int hlen = sizeof(*eth);
728 skb_reset_mac_header(skb);
729 skb_gro_reset_offset(skb, hlen);
731 if (unlikely(skb_gro_header_hard(skb, hlen))) {
732 eth = skb_gro_header_slow(skb, hlen, 0);
733 if (unlikely(!eth)) {
734 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
735 __func__, napi->dev->name);
736 napi_reuse_skb(napi, skb);
740 eth = (const struct ethhdr *)skb->data;
741 gro_pull_from_frag0(skb, hlen);
742 NAPI_GRO_CB(skb)->frag0 += hlen;
743 NAPI_GRO_CB(skb)->frag0_len -= hlen;
745 __skb_pull(skb, hlen);
748 * This works because the only protocols we care about don't require
750 * We'll fix it up properly in napi_frags_finish()
752 skb->protocol = eth->h_proto;
757 gro_result_t napi_gro_frags(struct napi_struct *napi)
760 struct sk_buff *skb = napi_frags_skb(napi);
762 trace_napi_gro_frags_entry(skb);
764 ret = napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
765 trace_napi_gro_frags_exit(ret);
769 EXPORT_SYMBOL(napi_gro_frags);
771 /* Compute the checksum from gro_offset and return the folded value
772 * after adding in any pseudo checksum.
774 __sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
779 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
781 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
782 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
783 /* See comments in __skb_checksum_complete(). */
785 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
786 !skb->csum_complete_sw)
787 netdev_rx_csum_fault(skb->dev, skb);
790 NAPI_GRO_CB(skb)->csum = wsum;
791 NAPI_GRO_CB(skb)->csum_valid = 1;
795 EXPORT_SYMBOL(__skb_gro_checksum_complete);