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 BUILD_BUG_ON(sizeof_field(struct napi_gro_cb, zeroed) != sizeof(u32));
488 BUILD_BUG_ON(!IS_ALIGNED(offsetof(struct napi_gro_cb, zeroed),
489 sizeof(u32))); /* Avoid slow unaligned acc */
490 *(u32 *)&NAPI_GRO_CB(skb)->zeroed = 0;
491 NAPI_GRO_CB(skb)->flush = skb_is_gso(skb) || skb_has_frag_list(skb);
492 NAPI_GRO_CB(skb)->is_atomic = 1;
494 /* Setup for GRO checksum validation */
495 switch (skb->ip_summed) {
496 case CHECKSUM_COMPLETE:
497 NAPI_GRO_CB(skb)->csum = skb->csum;
498 NAPI_GRO_CB(skb)->csum_valid = 1;
500 case CHECKSUM_UNNECESSARY:
501 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
505 pp = INDIRECT_CALL_INET(ptype->callbacks.gro_receive,
506 ipv6_gro_receive, inet_gro_receive,
507 &gro_list->list, skb);
512 if (&ptype->list == head)
515 if (PTR_ERR(pp) == -EINPROGRESS) {
520 same_flow = NAPI_GRO_CB(skb)->same_flow;
521 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
524 skb_list_del_init(pp);
525 napi_gro_complete(napi, pp);
532 if (NAPI_GRO_CB(skb)->flush)
535 if (unlikely(gro_list->count >= MAX_GRO_SKBS))
536 gro_flush_oldest(napi, &gro_list->list);
540 NAPI_GRO_CB(skb)->count = 1;
541 NAPI_GRO_CB(skb)->age = jiffies;
542 NAPI_GRO_CB(skb)->last = skb;
543 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
544 list_add(&skb->list, &gro_list->list);
548 grow = skb_gro_offset(skb) - skb_headlen(skb);
550 gro_pull_from_frag0(skb, grow);
552 if (gro_list->count) {
553 if (!test_bit(bucket, &napi->gro_bitmask))
554 __set_bit(bucket, &napi->gro_bitmask);
555 } else if (test_bit(bucket, &napi->gro_bitmask)) {
556 __clear_bit(bucket, &napi->gro_bitmask);
566 struct packet_offload *gro_find_receive_by_type(__be16 type)
568 struct list_head *offload_head = &offload_base;
569 struct packet_offload *ptype;
571 list_for_each_entry_rcu(ptype, offload_head, list) {
572 if (ptype->type != type || !ptype->callbacks.gro_receive)
578 EXPORT_SYMBOL(gro_find_receive_by_type);
580 struct packet_offload *gro_find_complete_by_type(__be16 type)
582 struct list_head *offload_head = &offload_base;
583 struct packet_offload *ptype;
585 list_for_each_entry_rcu(ptype, offload_head, list) {
586 if (ptype->type != type || !ptype->callbacks.gro_complete)
592 EXPORT_SYMBOL(gro_find_complete_by_type);
594 static gro_result_t napi_skb_finish(struct napi_struct *napi,
600 gro_normal_one(napi, skb, 1);
603 case GRO_MERGED_FREE:
604 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
605 napi_skb_free_stolen_head(skb);
606 else if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
609 __kfree_skb_defer(skb);
621 gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
625 skb_mark_napi_id(skb, napi);
626 trace_napi_gro_receive_entry(skb);
628 skb_gro_reset_offset(skb, 0);
630 ret = napi_skb_finish(napi, skb, dev_gro_receive(napi, skb));
631 trace_napi_gro_receive_exit(ret);
635 EXPORT_SYMBOL(napi_gro_receive);
637 static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
639 if (unlikely(skb->pfmemalloc)) {
643 __skb_pull(skb, skb_headlen(skb));
644 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
645 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
646 __vlan_hwaccel_clear_tag(skb);
647 skb->dev = napi->dev;
650 /* eth_type_trans() assumes pkt_type is PACKET_HOST */
651 skb->pkt_type = PACKET_HOST;
653 skb->encapsulation = 0;
654 skb_shinfo(skb)->gso_type = 0;
655 if (unlikely(skb->slow_gro)) {
665 struct sk_buff *napi_get_frags(struct napi_struct *napi)
667 struct sk_buff *skb = napi->skb;
670 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
673 skb_mark_napi_id(skb, napi);
678 EXPORT_SYMBOL(napi_get_frags);
680 static gro_result_t napi_frags_finish(struct napi_struct *napi,
687 __skb_push(skb, ETH_HLEN);
688 skb->protocol = eth_type_trans(skb, skb->dev);
689 if (ret == GRO_NORMAL)
690 gro_normal_one(napi, skb, 1);
693 case GRO_MERGED_FREE:
694 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
695 napi_skb_free_stolen_head(skb);
697 napi_reuse_skb(napi, skb);
708 /* Upper GRO stack assumes network header starts at gro_offset=0
709 * Drivers could call both napi_gro_frags() and napi_gro_receive()
710 * We copy ethernet header into skb->data to have a common layout.
712 static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
714 struct sk_buff *skb = napi->skb;
715 const struct ethhdr *eth;
716 unsigned int hlen = sizeof(*eth);
720 skb_reset_mac_header(skb);
721 skb_gro_reset_offset(skb, hlen);
723 if (unlikely(skb_gro_header_hard(skb, hlen))) {
724 eth = skb_gro_header_slow(skb, hlen, 0);
725 if (unlikely(!eth)) {
726 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
727 __func__, napi->dev->name);
728 napi_reuse_skb(napi, skb);
732 eth = (const struct ethhdr *)skb->data;
733 gro_pull_from_frag0(skb, hlen);
734 NAPI_GRO_CB(skb)->frag0 += hlen;
735 NAPI_GRO_CB(skb)->frag0_len -= hlen;
737 __skb_pull(skb, hlen);
740 * This works because the only protocols we care about don't require
742 * We'll fix it up properly in napi_frags_finish()
744 skb->protocol = eth->h_proto;
749 gro_result_t napi_gro_frags(struct napi_struct *napi)
752 struct sk_buff *skb = napi_frags_skb(napi);
754 trace_napi_gro_frags_entry(skb);
756 ret = napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
757 trace_napi_gro_frags_exit(ret);
761 EXPORT_SYMBOL(napi_gro_frags);
763 /* Compute the checksum from gro_offset and return the folded value
764 * after adding in any pseudo checksum.
766 __sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
771 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
773 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
774 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
775 /* See comments in __skb_checksum_complete(). */
777 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
778 !skb->csum_complete_sw)
779 netdev_rx_csum_fault(skb->dev, skb);
782 NAPI_GRO_CB(skb)->csum = wsum;
783 NAPI_GRO_CB(skb)->csum_valid = 1;
787 EXPORT_SYMBOL(__skb_gro_checksum_complete);