]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - net/core/dev.c
airo: Add missing CAP_NET_ADMIN check in AIROOLDIOCTL/SIOCDEVPRIVATE
[mirror_ubuntu-hirsute-kernel.git] / net / core / dev.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4 2/*
722c9a0c 3 * NET3 Protocol independent device support routines.
1da177e4 4 *
1da177e4 5 * Derived from the non IP parts of dev.c 1.0.19
722c9a0c 6 * Authors: Ross Biro
1da177e4
LT
7 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
8 * Mark Evans, <evansmp@uhura.aston.ac.uk>
9 *
10 * Additional Authors:
11 * Florian la Roche <rzsfl@rz.uni-sb.de>
12 * Alan Cox <gw4pts@gw4pts.ampr.org>
13 * David Hinds <dahinds@users.sourceforge.net>
14 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
15 * Adam Sulmicki <adam@cfar.umd.edu>
16 * Pekka Riikonen <priikone@poesidon.pspt.fi>
17 *
18 * Changes:
19 * D.J. Barrow : Fixed bug where dev->refcnt gets set
722c9a0c 20 * to 2 if register_netdev gets called
21 * before net_dev_init & also removed a
22 * few lines of code in the process.
1da177e4
LT
23 * Alan Cox : device private ioctl copies fields back.
24 * Alan Cox : Transmit queue code does relevant
25 * stunts to keep the queue safe.
26 * Alan Cox : Fixed double lock.
27 * Alan Cox : Fixed promisc NULL pointer trap
28 * ???????? : Support the full private ioctl range
29 * Alan Cox : Moved ioctl permission check into
30 * drivers
31 * Tim Kordas : SIOCADDMULTI/SIOCDELMULTI
32 * Alan Cox : 100 backlog just doesn't cut it when
33 * you start doing multicast video 8)
34 * Alan Cox : Rewrote net_bh and list manager.
722c9a0c 35 * Alan Cox : Fix ETH_P_ALL echoback lengths.
1da177e4
LT
36 * Alan Cox : Took out transmit every packet pass
37 * Saved a few bytes in the ioctl handler
38 * Alan Cox : Network driver sets packet type before
39 * calling netif_rx. Saves a function
40 * call a packet.
41 * Alan Cox : Hashed net_bh()
42 * Richard Kooijman: Timestamp fixes.
43 * Alan Cox : Wrong field in SIOCGIFDSTADDR
44 * Alan Cox : Device lock protection.
722c9a0c 45 * Alan Cox : Fixed nasty side effect of device close
1da177e4
LT
46 * changes.
47 * Rudi Cilibrasi : Pass the right thing to
48 * set_mac_address()
49 * Dave Miller : 32bit quantity for the device lock to
50 * make it work out on a Sparc.
51 * Bjorn Ekwall : Added KERNELD hack.
52 * Alan Cox : Cleaned up the backlog initialise.
53 * Craig Metz : SIOCGIFCONF fix if space for under
54 * 1 device.
55 * Thomas Bogendoerfer : Return ENODEV for dev_open, if there
56 * is no device open function.
57 * Andi Kleen : Fix error reporting for SIOCGIFCONF
58 * Michael Chastain : Fix signed/unsigned for SIOCGIFCONF
59 * Cyrus Durgin : Cleaned for KMOD
60 * Adam Sulmicki : Bug Fix : Network Device Unload
61 * A network device unload needs to purge
62 * the backlog queue.
63 * Paul Rusty Russell : SIOCSIFNAME
64 * Pekka Riikonen : Netdev boot-time settings code
65 * Andrew Morton : Make unregister_netdevice wait
722c9a0c 66 * indefinitely on dev->refcnt
67 * J Hadi Salim : - Backlog queue sampling
1da177e4
LT
68 * - netif_rx() feedback
69 */
70
7c0f6ba6 71#include <linux/uaccess.h>
1da177e4 72#include <linux/bitops.h>
4fc268d2 73#include <linux/capability.h>
1da177e4
LT
74#include <linux/cpu.h>
75#include <linux/types.h>
76#include <linux/kernel.h>
08e9897d 77#include <linux/hash.h>
5a0e3ad6 78#include <linux/slab.h>
1da177e4 79#include <linux/sched.h>
f1083048 80#include <linux/sched/mm.h>
4a3e2f71 81#include <linux/mutex.h>
1da177e4
LT
82#include <linux/string.h>
83#include <linux/mm.h>
84#include <linux/socket.h>
85#include <linux/sockios.h>
86#include <linux/errno.h>
87#include <linux/interrupt.h>
88#include <linux/if_ether.h>
89#include <linux/netdevice.h>
90#include <linux/etherdevice.h>
0187bdfb 91#include <linux/ethtool.h>
1da177e4 92#include <linux/skbuff.h>
a7862b45 93#include <linux/bpf.h>
b5cdae32 94#include <linux/bpf_trace.h>
457c4cbc 95#include <net/net_namespace.h>
1da177e4 96#include <net/sock.h>
02d62e86 97#include <net/busy_poll.h>
1da177e4 98#include <linux/rtnetlink.h>
1da177e4 99#include <linux/stat.h>
1da177e4 100#include <net/dst.h>
fc4099f1 101#include <net/dst_metadata.h>
1da177e4 102#include <net/pkt_sched.h>
87d83093 103#include <net/pkt_cls.h>
1da177e4 104#include <net/checksum.h>
44540960 105#include <net/xfrm.h>
1da177e4
LT
106#include <linux/highmem.h>
107#include <linux/init.h>
1da177e4 108#include <linux/module.h>
1da177e4
LT
109#include <linux/netpoll.h>
110#include <linux/rcupdate.h>
111#include <linux/delay.h>
1da177e4 112#include <net/iw_handler.h>
1da177e4 113#include <asm/current.h>
5bdb9886 114#include <linux/audit.h>
db217334 115#include <linux/dmaengine.h>
f6a78bfc 116#include <linux/err.h>
c7fa9d18 117#include <linux/ctype.h>
723e98b7 118#include <linux/if_arp.h>
6de329e2 119#include <linux/if_vlan.h>
8f0f2223 120#include <linux/ip.h>
ad55dcaf 121#include <net/ip.h>
25cd9ba0 122#include <net/mpls.h>
8f0f2223
DM
123#include <linux/ipv6.h>
124#include <linux/in.h>
b6b2fed1
DM
125#include <linux/jhash.h>
126#include <linux/random.h>
9cbc1cb8 127#include <trace/events/napi.h>
cf66ba58 128#include <trace/events/net.h>
07dc22e7 129#include <trace/events/skb.h>
caeda9b9 130#include <linux/inetdevice.h>
c445477d 131#include <linux/cpu_rmap.h>
c5905afb 132#include <linux/static_key.h>
af12fa6e 133#include <linux/hashtable.h>
60877a32 134#include <linux/vmalloc.h>
529d0489 135#include <linux/if_macvlan.h>
e7fd2885 136#include <linux/errqueue.h>
3b47d303 137#include <linux/hrtimer.h>
e687ad60 138#include <linux/netfilter_ingress.h>
40e4e713 139#include <linux/crash_dump.h>
b72b5bf6 140#include <linux/sctp.h>
ae847f40 141#include <net/udp_tunnel.h>
6621dd29 142#include <linux/net_namespace.h>
aaa5d90b 143#include <linux/indirect_call_wrapper.h>
af3836df 144#include <net/devlink.h>
1da177e4 145
342709ef
PE
146#include "net-sysfs.h"
147
d565b0a1 148#define MAX_GRO_SKBS 8
5343da4c 149#define MAX_NEST_DEV 8
d565b0a1 150
5d38a079
HX
151/* This should be increased if a protocol with a bigger head is added. */
152#define GRO_MAX_HEAD (MAX_HEADER + 128)
153
1da177e4 154static DEFINE_SPINLOCK(ptype_lock);
62532da9 155static DEFINE_SPINLOCK(offload_lock);
900ff8c6
CW
156struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
157struct list_head ptype_all __read_mostly; /* Taps */
62532da9 158static struct list_head offload_base __read_mostly;
1da177e4 159
ae78dbfa 160static int netif_rx_internal(struct sk_buff *skb);
54951194 161static int call_netdevice_notifiers_info(unsigned long val,
54951194 162 struct netdev_notifier_info *info);
26372605
PM
163static int call_netdevice_notifiers_extack(unsigned long val,
164 struct net_device *dev,
165 struct netlink_ext_ack *extack);
90b602f8 166static struct napi_struct *napi_by_id(unsigned int napi_id);
ae78dbfa 167
1da177e4 168/*
7562f876 169 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
1da177e4
LT
170 * semaphore.
171 *
c6d14c84 172 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
1da177e4
LT
173 *
174 * Writers must hold the rtnl semaphore while they loop through the
7562f876 175 * dev_base_head list, and hold dev_base_lock for writing when they do the
1da177e4
LT
176 * actual updates. This allows pure readers to access the list even
177 * while a writer is preparing to update it.
178 *
179 * To put it another way, dev_base_lock is held for writing only to
180 * protect against pure readers; the rtnl semaphore provides the
181 * protection against other writers.
182 *
183 * See, for example usages, register_netdevice() and
184 * unregister_netdevice(), which must be called with the rtnl
185 * semaphore held.
186 */
1da177e4 187DEFINE_RWLOCK(dev_base_lock);
1da177e4
LT
188EXPORT_SYMBOL(dev_base_lock);
189
6c557001
FW
190static DEFINE_MUTEX(ifalias_mutex);
191
af12fa6e
ET
192/* protects napi_hash addition/deletion and napi_gen_id */
193static DEFINE_SPINLOCK(napi_hash_lock);
194
52bd2d62 195static unsigned int napi_gen_id = NR_CPUS;
6180d9de 196static DEFINE_READ_MOSTLY_HASHTABLE(napi_hash, 8);
af12fa6e 197
18afa4b0 198static seqcount_t devnet_rename_seq;
c91f6df2 199
4e985ada
TG
200static inline void dev_base_seq_inc(struct net *net)
201{
643aa9cb 202 while (++net->dev_base_seq == 0)
203 ;
4e985ada
TG
204}
205
881d966b 206static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
1da177e4 207{
8387ff25 208 unsigned int hash = full_name_hash(net, name, strnlen(name, IFNAMSIZ));
95c96174 209
08e9897d 210 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
1da177e4
LT
211}
212
881d966b 213static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
1da177e4 214{
7c28bd0b 215 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
1da177e4
LT
216}
217
e36fa2f7 218static inline void rps_lock(struct softnet_data *sd)
152102c7
CG
219{
220#ifdef CONFIG_RPS
e36fa2f7 221 spin_lock(&sd->input_pkt_queue.lock);
152102c7
CG
222#endif
223}
224
e36fa2f7 225static inline void rps_unlock(struct softnet_data *sd)
152102c7
CG
226{
227#ifdef CONFIG_RPS
e36fa2f7 228 spin_unlock(&sd->input_pkt_queue.lock);
152102c7
CG
229#endif
230}
231
ff927412
JP
232static struct netdev_name_node *netdev_name_node_alloc(struct net_device *dev,
233 const char *name)
234{
235 struct netdev_name_node *name_node;
236
237 name_node = kmalloc(sizeof(*name_node), GFP_KERNEL);
238 if (!name_node)
239 return NULL;
240 INIT_HLIST_NODE(&name_node->hlist);
241 name_node->dev = dev;
242 name_node->name = name;
243 return name_node;
244}
245
246static struct netdev_name_node *
247netdev_name_node_head_alloc(struct net_device *dev)
248{
36fbf1e5
JP
249 struct netdev_name_node *name_node;
250
251 name_node = netdev_name_node_alloc(dev, dev->name);
252 if (!name_node)
253 return NULL;
254 INIT_LIST_HEAD(&name_node->list);
255 return name_node;
ff927412
JP
256}
257
258static void netdev_name_node_free(struct netdev_name_node *name_node)
259{
260 kfree(name_node);
261}
262
263static void netdev_name_node_add(struct net *net,
264 struct netdev_name_node *name_node)
265{
266 hlist_add_head_rcu(&name_node->hlist,
267 dev_name_hash(net, name_node->name));
268}
269
270static void netdev_name_node_del(struct netdev_name_node *name_node)
271{
272 hlist_del_rcu(&name_node->hlist);
273}
274
275static struct netdev_name_node *netdev_name_node_lookup(struct net *net,
276 const char *name)
277{
278 struct hlist_head *head = dev_name_hash(net, name);
279 struct netdev_name_node *name_node;
280
281 hlist_for_each_entry(name_node, head, hlist)
282 if (!strcmp(name_node->name, name))
283 return name_node;
284 return NULL;
285}
286
287static struct netdev_name_node *netdev_name_node_lookup_rcu(struct net *net,
288 const char *name)
289{
290 struct hlist_head *head = dev_name_hash(net, name);
291 struct netdev_name_node *name_node;
292
293 hlist_for_each_entry_rcu(name_node, head, hlist)
294 if (!strcmp(name_node->name, name))
295 return name_node;
296 return NULL;
297}
298
36fbf1e5
JP
299int netdev_name_node_alt_create(struct net_device *dev, const char *name)
300{
301 struct netdev_name_node *name_node;
302 struct net *net = dev_net(dev);
303
304 name_node = netdev_name_node_lookup(net, name);
305 if (name_node)
306 return -EEXIST;
307 name_node = netdev_name_node_alloc(dev, name);
308 if (!name_node)
309 return -ENOMEM;
310 netdev_name_node_add(net, name_node);
311 /* The node that holds dev->name acts as a head of per-device list. */
312 list_add_tail(&name_node->list, &dev->name_node->list);
313
314 return 0;
315}
316EXPORT_SYMBOL(netdev_name_node_alt_create);
317
318static void __netdev_name_node_alt_destroy(struct netdev_name_node *name_node)
319{
320 list_del(&name_node->list);
321 netdev_name_node_del(name_node);
322 kfree(name_node->name);
323 netdev_name_node_free(name_node);
324}
325
326int netdev_name_node_alt_destroy(struct net_device *dev, const char *name)
327{
328 struct netdev_name_node *name_node;
329 struct net *net = dev_net(dev);
330
331 name_node = netdev_name_node_lookup(net, name);
332 if (!name_node)
333 return -ENOENT;
334 __netdev_name_node_alt_destroy(name_node);
335
336 return 0;
337}
338EXPORT_SYMBOL(netdev_name_node_alt_destroy);
339
340static void netdev_name_node_alt_flush(struct net_device *dev)
341{
342 struct netdev_name_node *name_node, *tmp;
343
344 list_for_each_entry_safe(name_node, tmp, &dev->name_node->list, list)
345 __netdev_name_node_alt_destroy(name_node);
346}
347
ce286d32 348/* Device list insertion */
53759be9 349static void list_netdevice(struct net_device *dev)
ce286d32 350{
c346dca1 351 struct net *net = dev_net(dev);
ce286d32
EB
352
353 ASSERT_RTNL();
354
355 write_lock_bh(&dev_base_lock);
c6d14c84 356 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
ff927412 357 netdev_name_node_add(net, dev->name_node);
fb699dfd
ED
358 hlist_add_head_rcu(&dev->index_hlist,
359 dev_index_hash(net, dev->ifindex));
ce286d32 360 write_unlock_bh(&dev_base_lock);
4e985ada
TG
361
362 dev_base_seq_inc(net);
ce286d32
EB
363}
364
fb699dfd
ED
365/* Device list removal
366 * caller must respect a RCU grace period before freeing/reusing dev
367 */
ce286d32
EB
368static void unlist_netdevice(struct net_device *dev)
369{
370 ASSERT_RTNL();
371
372 /* Unlink dev from the device chain */
373 write_lock_bh(&dev_base_lock);
c6d14c84 374 list_del_rcu(&dev->dev_list);
ff927412 375 netdev_name_node_del(dev->name_node);
fb699dfd 376 hlist_del_rcu(&dev->index_hlist);
ce286d32 377 write_unlock_bh(&dev_base_lock);
4e985ada
TG
378
379 dev_base_seq_inc(dev_net(dev));
ce286d32
EB
380}
381
1da177e4
LT
382/*
383 * Our notifier list
384 */
385
f07d5b94 386static RAW_NOTIFIER_HEAD(netdev_chain);
1da177e4
LT
387
388/*
389 * Device drivers call our routines to queue packets here. We empty the
390 * queue in the local softnet handler.
391 */
bea3348e 392
9958da05 393DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
d1b19dff 394EXPORT_PER_CPU_SYMBOL(softnet_data);
1da177e4 395
1da177e4 396/*******************************************************************************
eb13da1a 397 *
398 * Protocol management and registration routines
399 *
400 *******************************************************************************/
1da177e4 401
1da177e4 402
1da177e4
LT
403/*
404 * Add a protocol ID to the list. Now that the input handler is
405 * smarter we can dispense with all the messy stuff that used to be
406 * here.
407 *
408 * BEWARE!!! Protocol handlers, mangling input packets,
409 * MUST BE last in hash buckets and checking protocol handlers
410 * MUST start from promiscuous ptype_all chain in net_bh.
411 * It is true now, do not change it.
412 * Explanation follows: if protocol handler, mangling packet, will
413 * be the first on list, it is not able to sense, that packet
414 * is cloned and should be copied-on-write, so that it will
415 * change it and subsequent readers will get broken packet.
416 * --ANK (980803)
417 */
418
c07b68e8
ED
419static inline struct list_head *ptype_head(const struct packet_type *pt)
420{
421 if (pt->type == htons(ETH_P_ALL))
7866a621 422 return pt->dev ? &pt->dev->ptype_all : &ptype_all;
c07b68e8 423 else
7866a621
SN
424 return pt->dev ? &pt->dev->ptype_specific :
425 &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
c07b68e8
ED
426}
427
1da177e4
LT
428/**
429 * dev_add_pack - add packet handler
430 * @pt: packet type declaration
431 *
432 * Add a protocol handler to the networking stack. The passed &packet_type
433 * is linked into kernel lists and may not be freed until it has been
434 * removed from the kernel lists.
435 *
4ec93edb 436 * This call does not sleep therefore it can not
1da177e4
LT
437 * guarantee all CPU's that are in middle of receiving packets
438 * will see the new packet type (until the next received packet).
439 */
440
441void dev_add_pack(struct packet_type *pt)
442{
c07b68e8 443 struct list_head *head = ptype_head(pt);
1da177e4 444
c07b68e8
ED
445 spin_lock(&ptype_lock);
446 list_add_rcu(&pt->list, head);
447 spin_unlock(&ptype_lock);
1da177e4 448}
d1b19dff 449EXPORT_SYMBOL(dev_add_pack);
1da177e4 450
1da177e4
LT
451/**
452 * __dev_remove_pack - remove packet handler
453 * @pt: packet type declaration
454 *
455 * Remove a protocol handler that was previously added to the kernel
456 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
457 * from the kernel lists and can be freed or reused once this function
4ec93edb 458 * returns.
1da177e4
LT
459 *
460 * The packet type might still be in use by receivers
461 * and must not be freed until after all the CPU's have gone
462 * through a quiescent state.
463 */
464void __dev_remove_pack(struct packet_type *pt)
465{
c07b68e8 466 struct list_head *head = ptype_head(pt);
1da177e4
LT
467 struct packet_type *pt1;
468
c07b68e8 469 spin_lock(&ptype_lock);
1da177e4
LT
470
471 list_for_each_entry(pt1, head, list) {
472 if (pt == pt1) {
473 list_del_rcu(&pt->list);
474 goto out;
475 }
476 }
477
7b6cd1ce 478 pr_warn("dev_remove_pack: %p not found\n", pt);
1da177e4 479out:
c07b68e8 480 spin_unlock(&ptype_lock);
1da177e4 481}
d1b19dff
ED
482EXPORT_SYMBOL(__dev_remove_pack);
483
1da177e4
LT
484/**
485 * dev_remove_pack - remove packet handler
486 * @pt: packet type declaration
487 *
488 * Remove a protocol handler that was previously added to the kernel
489 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
490 * from the kernel lists and can be freed or reused once this function
491 * returns.
492 *
493 * This call sleeps to guarantee that no CPU is looking at the packet
494 * type after return.
495 */
496void dev_remove_pack(struct packet_type *pt)
497{
498 __dev_remove_pack(pt);
4ec93edb 499
1da177e4
LT
500 synchronize_net();
501}
d1b19dff 502EXPORT_SYMBOL(dev_remove_pack);
1da177e4 503
62532da9
VY
504
505/**
506 * dev_add_offload - register offload handlers
507 * @po: protocol offload declaration
508 *
509 * Add protocol offload handlers to the networking stack. The passed
510 * &proto_offload is linked into kernel lists and may not be freed until
511 * it has been removed from the kernel lists.
512 *
513 * This call does not sleep therefore it can not
514 * guarantee all CPU's that are in middle of receiving packets
515 * will see the new offload handlers (until the next received packet).
516 */
517void dev_add_offload(struct packet_offload *po)
518{
bdef7de4 519 struct packet_offload *elem;
62532da9
VY
520
521 spin_lock(&offload_lock);
bdef7de4
DM
522 list_for_each_entry(elem, &offload_base, list) {
523 if (po->priority < elem->priority)
524 break;
525 }
526 list_add_rcu(&po->list, elem->list.prev);
62532da9
VY
527 spin_unlock(&offload_lock);
528}
529EXPORT_SYMBOL(dev_add_offload);
530
531/**
532 * __dev_remove_offload - remove offload handler
533 * @po: packet offload declaration
534 *
535 * Remove a protocol offload handler that was previously added to the
536 * kernel offload handlers by dev_add_offload(). The passed &offload_type
537 * is removed from the kernel lists and can be freed or reused once this
538 * function returns.
539 *
540 * The packet type might still be in use by receivers
541 * and must not be freed until after all the CPU's have gone
542 * through a quiescent state.
543 */
1d143d9f 544static void __dev_remove_offload(struct packet_offload *po)
62532da9
VY
545{
546 struct list_head *head = &offload_base;
547 struct packet_offload *po1;
548
c53aa505 549 spin_lock(&offload_lock);
62532da9
VY
550
551 list_for_each_entry(po1, head, list) {
552 if (po == po1) {
553 list_del_rcu(&po->list);
554 goto out;
555 }
556 }
557
558 pr_warn("dev_remove_offload: %p not found\n", po);
559out:
c53aa505 560 spin_unlock(&offload_lock);
62532da9 561}
62532da9
VY
562
563/**
564 * dev_remove_offload - remove packet offload handler
565 * @po: packet offload declaration
566 *
567 * Remove a packet offload handler that was previously added to the kernel
568 * offload handlers by dev_add_offload(). The passed &offload_type is
569 * removed from the kernel lists and can be freed or reused once this
570 * function returns.
571 *
572 * This call sleeps to guarantee that no CPU is looking at the packet
573 * type after return.
574 */
575void dev_remove_offload(struct packet_offload *po)
576{
577 __dev_remove_offload(po);
578
579 synchronize_net();
580}
581EXPORT_SYMBOL(dev_remove_offload);
582
1da177e4 583/******************************************************************************
eb13da1a 584 *
585 * Device Boot-time Settings Routines
586 *
587 ******************************************************************************/
1da177e4
LT
588
589/* Boot time configuration table */
590static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
591
592/**
593 * netdev_boot_setup_add - add new setup entry
594 * @name: name of the device
595 * @map: configured settings for the device
596 *
597 * Adds new setup entry to the dev_boot_setup list. The function
598 * returns 0 on error and 1 on success. This is a generic routine to
599 * all netdevices.
600 */
601static int netdev_boot_setup_add(char *name, struct ifmap *map)
602{
603 struct netdev_boot_setup *s;
604 int i;
605
606 s = dev_boot_setup;
607 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
608 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
609 memset(s[i].name, 0, sizeof(s[i].name));
93b3cff9 610 strlcpy(s[i].name, name, IFNAMSIZ);
1da177e4
LT
611 memcpy(&s[i].map, map, sizeof(s[i].map));
612 break;
613 }
614 }
615
616 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
617}
618
619/**
722c9a0c 620 * netdev_boot_setup_check - check boot time settings
621 * @dev: the netdevice
1da177e4 622 *
722c9a0c 623 * Check boot time settings for the device.
624 * The found settings are set for the device to be used
625 * later in the device probing.
626 * Returns 0 if no settings found, 1 if they are.
1da177e4
LT
627 */
628int netdev_boot_setup_check(struct net_device *dev)
629{
630 struct netdev_boot_setup *s = dev_boot_setup;
631 int i;
632
633 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
634 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
93b3cff9 635 !strcmp(dev->name, s[i].name)) {
722c9a0c 636 dev->irq = s[i].map.irq;
637 dev->base_addr = s[i].map.base_addr;
638 dev->mem_start = s[i].map.mem_start;
639 dev->mem_end = s[i].map.mem_end;
1da177e4
LT
640 return 1;
641 }
642 }
643 return 0;
644}
d1b19dff 645EXPORT_SYMBOL(netdev_boot_setup_check);
1da177e4
LT
646
647
648/**
722c9a0c 649 * netdev_boot_base - get address from boot time settings
650 * @prefix: prefix for network device
651 * @unit: id for network device
652 *
653 * Check boot time settings for the base address of device.
654 * The found settings are set for the device to be used
655 * later in the device probing.
656 * Returns 0 if no settings found.
1da177e4
LT
657 */
658unsigned long netdev_boot_base(const char *prefix, int unit)
659{
660 const struct netdev_boot_setup *s = dev_boot_setup;
661 char name[IFNAMSIZ];
662 int i;
663
664 sprintf(name, "%s%d", prefix, unit);
665
666 /*
667 * If device already registered then return base of 1
668 * to indicate not to probe for this interface
669 */
881d966b 670 if (__dev_get_by_name(&init_net, name))
1da177e4
LT
671 return 1;
672
673 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
674 if (!strcmp(name, s[i].name))
675 return s[i].map.base_addr;
676 return 0;
677}
678
679/*
680 * Saves at boot time configured settings for any netdevice.
681 */
682int __init netdev_boot_setup(char *str)
683{
684 int ints[5];
685 struct ifmap map;
686
687 str = get_options(str, ARRAY_SIZE(ints), ints);
688 if (!str || !*str)
689 return 0;
690
691 /* Save settings */
692 memset(&map, 0, sizeof(map));
693 if (ints[0] > 0)
694 map.irq = ints[1];
695 if (ints[0] > 1)
696 map.base_addr = ints[2];
697 if (ints[0] > 2)
698 map.mem_start = ints[3];
699 if (ints[0] > 3)
700 map.mem_end = ints[4];
701
702 /* Add new entry to the list */
703 return netdev_boot_setup_add(str, &map);
704}
705
706__setup("netdev=", netdev_boot_setup);
707
708/*******************************************************************************
eb13da1a 709 *
710 * Device Interface Subroutines
711 *
712 *******************************************************************************/
1da177e4 713
a54acb3a
ND
714/**
715 * dev_get_iflink - get 'iflink' value of a interface
716 * @dev: targeted interface
717 *
718 * Indicates the ifindex the interface is linked to.
719 * Physical interfaces have the same 'ifindex' and 'iflink' values.
720 */
721
722int dev_get_iflink(const struct net_device *dev)
723{
724 if (dev->netdev_ops && dev->netdev_ops->ndo_get_iflink)
725 return dev->netdev_ops->ndo_get_iflink(dev);
726
7a66bbc9 727 return dev->ifindex;
a54acb3a
ND
728}
729EXPORT_SYMBOL(dev_get_iflink);
730
fc4099f1
PS
731/**
732 * dev_fill_metadata_dst - Retrieve tunnel egress information.
733 * @dev: targeted interface
734 * @skb: The packet.
735 *
736 * For better visibility of tunnel traffic OVS needs to retrieve
737 * egress tunnel information for a packet. Following API allows
738 * user to get this info.
739 */
740int dev_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
741{
742 struct ip_tunnel_info *info;
743
744 if (!dev->netdev_ops || !dev->netdev_ops->ndo_fill_metadata_dst)
745 return -EINVAL;
746
747 info = skb_tunnel_info_unclone(skb);
748 if (!info)
749 return -ENOMEM;
750 if (unlikely(!(info->mode & IP_TUNNEL_INFO_TX)))
751 return -EINVAL;
752
753 return dev->netdev_ops->ndo_fill_metadata_dst(dev, skb);
754}
755EXPORT_SYMBOL_GPL(dev_fill_metadata_dst);
756
1da177e4
LT
757/**
758 * __dev_get_by_name - find a device by its name
c4ea43c5 759 * @net: the applicable net namespace
1da177e4
LT
760 * @name: name to find
761 *
762 * Find an interface by name. Must be called under RTNL semaphore
763 * or @dev_base_lock. If the name is found a pointer to the device
764 * is returned. If the name is not found then %NULL is returned. The
765 * reference counters are not incremented so the caller must be
766 * careful with locks.
767 */
768
881d966b 769struct net_device *__dev_get_by_name(struct net *net, const char *name)
1da177e4 770{
ff927412 771 struct netdev_name_node *node_name;
1da177e4 772
ff927412
JP
773 node_name = netdev_name_node_lookup(net, name);
774 return node_name ? node_name->dev : NULL;
1da177e4 775}
d1b19dff 776EXPORT_SYMBOL(__dev_get_by_name);
1da177e4 777
72c9528b 778/**
722c9a0c 779 * dev_get_by_name_rcu - find a device by its name
780 * @net: the applicable net namespace
781 * @name: name to find
782 *
783 * Find an interface by name.
784 * If the name is found a pointer to the device is returned.
785 * If the name is not found then %NULL is returned.
786 * The reference counters are not incremented so the caller must be
787 * careful with locks. The caller must hold RCU lock.
72c9528b
ED
788 */
789
790struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
791{
ff927412 792 struct netdev_name_node *node_name;
72c9528b 793
ff927412
JP
794 node_name = netdev_name_node_lookup_rcu(net, name);
795 return node_name ? node_name->dev : NULL;
72c9528b
ED
796}
797EXPORT_SYMBOL(dev_get_by_name_rcu);
798
1da177e4
LT
799/**
800 * dev_get_by_name - find a device by its name
c4ea43c5 801 * @net: the applicable net namespace
1da177e4
LT
802 * @name: name to find
803 *
804 * Find an interface by name. This can be called from any
805 * context and does its own locking. The returned handle has
806 * the usage count incremented and the caller must use dev_put() to
807 * release it when it is no longer needed. %NULL is returned if no
808 * matching device is found.
809 */
810
881d966b 811struct net_device *dev_get_by_name(struct net *net, const char *name)
1da177e4
LT
812{
813 struct net_device *dev;
814
72c9528b
ED
815 rcu_read_lock();
816 dev = dev_get_by_name_rcu(net, name);
1da177e4
LT
817 if (dev)
818 dev_hold(dev);
72c9528b 819 rcu_read_unlock();
1da177e4
LT
820 return dev;
821}
d1b19dff 822EXPORT_SYMBOL(dev_get_by_name);
1da177e4
LT
823
824/**
825 * __dev_get_by_index - find a device by its ifindex
c4ea43c5 826 * @net: the applicable net namespace
1da177e4
LT
827 * @ifindex: index of device
828 *
829 * Search for an interface by index. Returns %NULL if the device
830 * is not found or a pointer to the device. The device has not
831 * had its reference counter increased so the caller must be careful
832 * about locking. The caller must hold either the RTNL semaphore
833 * or @dev_base_lock.
834 */
835
881d966b 836struct net_device *__dev_get_by_index(struct net *net, int ifindex)
1da177e4 837{
0bd8d536
ED
838 struct net_device *dev;
839 struct hlist_head *head = dev_index_hash(net, ifindex);
1da177e4 840
b67bfe0d 841 hlist_for_each_entry(dev, head, index_hlist)
1da177e4
LT
842 if (dev->ifindex == ifindex)
843 return dev;
0bd8d536 844
1da177e4
LT
845 return NULL;
846}
d1b19dff 847EXPORT_SYMBOL(__dev_get_by_index);
1da177e4 848
fb699dfd
ED
849/**
850 * dev_get_by_index_rcu - find a device by its ifindex
851 * @net: the applicable net namespace
852 * @ifindex: index of device
853 *
854 * Search for an interface by index. Returns %NULL if the device
855 * is not found or a pointer to the device. The device has not
856 * had its reference counter increased so the caller must be careful
857 * about locking. The caller must hold RCU lock.
858 */
859
860struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
861{
fb699dfd
ED
862 struct net_device *dev;
863 struct hlist_head *head = dev_index_hash(net, ifindex);
864
b67bfe0d 865 hlist_for_each_entry_rcu(dev, head, index_hlist)
fb699dfd
ED
866 if (dev->ifindex == ifindex)
867 return dev;
868
869 return NULL;
870}
871EXPORT_SYMBOL(dev_get_by_index_rcu);
872
1da177e4
LT
873
874/**
875 * dev_get_by_index - find a device by its ifindex
c4ea43c5 876 * @net: the applicable net namespace
1da177e4
LT
877 * @ifindex: index of device
878 *
879 * Search for an interface by index. Returns NULL if the device
880 * is not found or a pointer to the device. The device returned has
881 * had a reference added and the pointer is safe until the user calls
882 * dev_put to indicate they have finished with it.
883 */
884
881d966b 885struct net_device *dev_get_by_index(struct net *net, int ifindex)
1da177e4
LT
886{
887 struct net_device *dev;
888
fb699dfd
ED
889 rcu_read_lock();
890 dev = dev_get_by_index_rcu(net, ifindex);
1da177e4
LT
891 if (dev)
892 dev_hold(dev);
fb699dfd 893 rcu_read_unlock();
1da177e4
LT
894 return dev;
895}
d1b19dff 896EXPORT_SYMBOL(dev_get_by_index);
1da177e4 897
90b602f8
ML
898/**
899 * dev_get_by_napi_id - find a device by napi_id
900 * @napi_id: ID of the NAPI struct
901 *
902 * Search for an interface by NAPI ID. Returns %NULL if the device
903 * is not found or a pointer to the device. The device has not had
904 * its reference counter increased so the caller must be careful
905 * about locking. The caller must hold RCU lock.
906 */
907
908struct net_device *dev_get_by_napi_id(unsigned int napi_id)
909{
910 struct napi_struct *napi;
911
912 WARN_ON_ONCE(!rcu_read_lock_held());
913
914 if (napi_id < MIN_NAPI_ID)
915 return NULL;
916
917 napi = napi_by_id(napi_id);
918
919 return napi ? napi->dev : NULL;
920}
921EXPORT_SYMBOL(dev_get_by_napi_id);
922
5dbe7c17
NS
923/**
924 * netdev_get_name - get a netdevice name, knowing its ifindex.
925 * @net: network namespace
926 * @name: a pointer to the buffer where the name will be stored.
927 * @ifindex: the ifindex of the interface to get the name from.
928 *
929 * The use of raw_seqcount_begin() and cond_resched() before
930 * retrying is required as we want to give the writers a chance
931 * to complete when CONFIG_PREEMPT is not set.
932 */
933int netdev_get_name(struct net *net, char *name, int ifindex)
934{
935 struct net_device *dev;
936 unsigned int seq;
937
938retry:
939 seq = raw_seqcount_begin(&devnet_rename_seq);
940 rcu_read_lock();
941 dev = dev_get_by_index_rcu(net, ifindex);
942 if (!dev) {
943 rcu_read_unlock();
944 return -ENODEV;
945 }
946
947 strcpy(name, dev->name);
948 rcu_read_unlock();
949 if (read_seqcount_retry(&devnet_rename_seq, seq)) {
950 cond_resched();
951 goto retry;
952 }
953
954 return 0;
955}
956
1da177e4 957/**
941666c2 958 * dev_getbyhwaddr_rcu - find a device by its hardware address
c4ea43c5 959 * @net: the applicable net namespace
1da177e4
LT
960 * @type: media type of device
961 * @ha: hardware address
962 *
963 * Search for an interface by MAC address. Returns NULL if the device
c506653d
ED
964 * is not found or a pointer to the device.
965 * The caller must hold RCU or RTNL.
941666c2 966 * The returned device has not had its ref count increased
1da177e4
LT
967 * and the caller must therefore be careful about locking
968 *
1da177e4
LT
969 */
970
941666c2
ED
971struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
972 const char *ha)
1da177e4
LT
973{
974 struct net_device *dev;
975
941666c2 976 for_each_netdev_rcu(net, dev)
1da177e4
LT
977 if (dev->type == type &&
978 !memcmp(dev->dev_addr, ha, dev->addr_len))
7562f876
PE
979 return dev;
980
981 return NULL;
1da177e4 982}
941666c2 983EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
cf309e3f 984
881d966b 985struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
1da177e4
LT
986{
987 struct net_device *dev;
988
4e9cac2b 989 ASSERT_RTNL();
881d966b 990 for_each_netdev(net, dev)
4e9cac2b 991 if (dev->type == type)
7562f876
PE
992 return dev;
993
994 return NULL;
4e9cac2b 995}
4e9cac2b
PM
996EXPORT_SYMBOL(__dev_getfirstbyhwtype);
997
881d966b 998struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
4e9cac2b 999{
99fe3c39 1000 struct net_device *dev, *ret = NULL;
4e9cac2b 1001
99fe3c39
ED
1002 rcu_read_lock();
1003 for_each_netdev_rcu(net, dev)
1004 if (dev->type == type) {
1005 dev_hold(dev);
1006 ret = dev;
1007 break;
1008 }
1009 rcu_read_unlock();
1010 return ret;
1da177e4 1011}
1da177e4
LT
1012EXPORT_SYMBOL(dev_getfirstbyhwtype);
1013
1014/**
6c555490 1015 * __dev_get_by_flags - find any device with given flags
c4ea43c5 1016 * @net: the applicable net namespace
1da177e4
LT
1017 * @if_flags: IFF_* values
1018 * @mask: bitmask of bits in if_flags to check
1019 *
1020 * Search for any interface with the given flags. Returns NULL if a device
bb69ae04 1021 * is not found or a pointer to the device. Must be called inside
6c555490 1022 * rtnl_lock(), and result refcount is unchanged.
1da177e4
LT
1023 */
1024
6c555490
WC
1025struct net_device *__dev_get_by_flags(struct net *net, unsigned short if_flags,
1026 unsigned short mask)
1da177e4 1027{
7562f876 1028 struct net_device *dev, *ret;
1da177e4 1029
6c555490
WC
1030 ASSERT_RTNL();
1031
7562f876 1032 ret = NULL;
6c555490 1033 for_each_netdev(net, dev) {
1da177e4 1034 if (((dev->flags ^ if_flags) & mask) == 0) {
7562f876 1035 ret = dev;
1da177e4
LT
1036 break;
1037 }
1038 }
7562f876 1039 return ret;
1da177e4 1040}
6c555490 1041EXPORT_SYMBOL(__dev_get_by_flags);
1da177e4
LT
1042
1043/**
1044 * dev_valid_name - check if name is okay for network device
1045 * @name: name string
1046 *
1047 * Network device names need to be valid file names to
c7fa9d18
DM
1048 * to allow sysfs to work. We also disallow any kind of
1049 * whitespace.
1da177e4 1050 */
95f050bf 1051bool dev_valid_name(const char *name)
1da177e4 1052{
c7fa9d18 1053 if (*name == '\0')
95f050bf 1054 return false;
a9d48205 1055 if (strnlen(name, IFNAMSIZ) == IFNAMSIZ)
95f050bf 1056 return false;
c7fa9d18 1057 if (!strcmp(name, ".") || !strcmp(name, ".."))
95f050bf 1058 return false;
c7fa9d18
DM
1059
1060 while (*name) {
a4176a93 1061 if (*name == '/' || *name == ':' || isspace(*name))
95f050bf 1062 return false;
c7fa9d18
DM
1063 name++;
1064 }
95f050bf 1065 return true;
1da177e4 1066}
d1b19dff 1067EXPORT_SYMBOL(dev_valid_name);
1da177e4
LT
1068
1069/**
b267b179
EB
1070 * __dev_alloc_name - allocate a name for a device
1071 * @net: network namespace to allocate the device name in
1da177e4 1072 * @name: name format string
b267b179 1073 * @buf: scratch buffer and result name string
1da177e4
LT
1074 *
1075 * Passed a format string - eg "lt%d" it will try and find a suitable
3041a069
SH
1076 * id. It scans list of devices to build up a free map, then chooses
1077 * the first empty slot. The caller must hold the dev_base or rtnl lock
1078 * while allocating the name and adding the device in order to avoid
1079 * duplicates.
1080 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1081 * Returns the number of the unit assigned or a negative errno code.
1da177e4
LT
1082 */
1083
b267b179 1084static int __dev_alloc_name(struct net *net, const char *name, char *buf)
1da177e4
LT
1085{
1086 int i = 0;
1da177e4
LT
1087 const char *p;
1088 const int max_netdevices = 8*PAGE_SIZE;
cfcabdcc 1089 unsigned long *inuse;
1da177e4
LT
1090 struct net_device *d;
1091
93809105
RV
1092 if (!dev_valid_name(name))
1093 return -EINVAL;
1094
51f299dd 1095 p = strchr(name, '%');
1da177e4
LT
1096 if (p) {
1097 /*
1098 * Verify the string as this thing may have come from
1099 * the user. There must be either one "%d" and no other "%"
1100 * characters.
1101 */
1102 if (p[1] != 'd' || strchr(p + 2, '%'))
1103 return -EINVAL;
1104
1105 /* Use one page as a bit array of possible slots */
cfcabdcc 1106 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
1da177e4
LT
1107 if (!inuse)
1108 return -ENOMEM;
1109
881d966b 1110 for_each_netdev(net, d) {
1da177e4
LT
1111 if (!sscanf(d->name, name, &i))
1112 continue;
1113 if (i < 0 || i >= max_netdevices)
1114 continue;
1115
1116 /* avoid cases where sscanf is not exact inverse of printf */
b267b179 1117 snprintf(buf, IFNAMSIZ, name, i);
1da177e4
LT
1118 if (!strncmp(buf, d->name, IFNAMSIZ))
1119 set_bit(i, inuse);
1120 }
1121
1122 i = find_first_zero_bit(inuse, max_netdevices);
1123 free_page((unsigned long) inuse);
1124 }
1125
6224abda 1126 snprintf(buf, IFNAMSIZ, name, i);
b267b179 1127 if (!__dev_get_by_name(net, buf))
1da177e4 1128 return i;
1da177e4
LT
1129
1130 /* It is possible to run out of possible slots
1131 * when the name is long and there isn't enough space left
1132 * for the digits, or if all bits are used.
1133 */
029b6d14 1134 return -ENFILE;
1da177e4
LT
1135}
1136
2c88b855
RV
1137static int dev_alloc_name_ns(struct net *net,
1138 struct net_device *dev,
1139 const char *name)
1140{
1141 char buf[IFNAMSIZ];
1142 int ret;
1143
c46d7642 1144 BUG_ON(!net);
2c88b855
RV
1145 ret = __dev_alloc_name(net, name, buf);
1146 if (ret >= 0)
1147 strlcpy(dev->name, buf, IFNAMSIZ);
1148 return ret;
1da177e4
LT
1149}
1150
b267b179
EB
1151/**
1152 * dev_alloc_name - allocate a name for a device
1153 * @dev: device
1154 * @name: name format string
1155 *
1156 * Passed a format string - eg "lt%d" it will try and find a suitable
1157 * id. It scans list of devices to build up a free map, then chooses
1158 * the first empty slot. The caller must hold the dev_base or rtnl lock
1159 * while allocating the name and adding the device in order to avoid
1160 * duplicates.
1161 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1162 * Returns the number of the unit assigned or a negative errno code.
1163 */
1164
1165int dev_alloc_name(struct net_device *dev, const char *name)
1166{
c46d7642 1167 return dev_alloc_name_ns(dev_net(dev), dev, name);
b267b179 1168}
d1b19dff 1169EXPORT_SYMBOL(dev_alloc_name);
b267b179 1170
bacb7e18
ED
1171static int dev_get_valid_name(struct net *net, struct net_device *dev,
1172 const char *name)
828de4f6 1173{
55a5ec9b
DM
1174 BUG_ON(!net);
1175
1176 if (!dev_valid_name(name))
1177 return -EINVAL;
1178
1179 if (strchr(name, '%'))
1180 return dev_alloc_name_ns(net, dev, name);
1181 else if (__dev_get_by_name(net, name))
1182 return -EEXIST;
1183 else if (dev->name != name)
1184 strlcpy(dev->name, name, IFNAMSIZ);
1185
1186 return 0;
d9031024 1187}
1da177e4
LT
1188
1189/**
1190 * dev_change_name - change name of a device
1191 * @dev: device
1192 * @newname: name (or format string) must be at least IFNAMSIZ
1193 *
1194 * Change name of a device, can pass format strings "eth%d".
1195 * for wildcarding.
1196 */
cf04a4c7 1197int dev_change_name(struct net_device *dev, const char *newname)
1da177e4 1198{
238fa362 1199 unsigned char old_assign_type;
fcc5a03a 1200 char oldname[IFNAMSIZ];
1da177e4 1201 int err = 0;
fcc5a03a 1202 int ret;
881d966b 1203 struct net *net;
1da177e4
LT
1204
1205 ASSERT_RTNL();
c346dca1 1206 BUG_ON(!dev_net(dev));
1da177e4 1207
c346dca1 1208 net = dev_net(dev);
8065a779
SWL
1209
1210 /* Some auto-enslaved devices e.g. failover slaves are
1211 * special, as userspace might rename the device after
1212 * the interface had been brought up and running since
1213 * the point kernel initiated auto-enslavement. Allow
1214 * live name change even when these slave devices are
1215 * up and running.
1216 *
1217 * Typically, users of these auto-enslaving devices
1218 * don't actually care about slave name change, as
1219 * they are supposed to operate on master interface
1220 * directly.
1221 */
1222 if (dev->flags & IFF_UP &&
1223 likely(!(dev->priv_flags & IFF_LIVE_RENAME_OK)))
1da177e4
LT
1224 return -EBUSY;
1225
30e6c9fa 1226 write_seqcount_begin(&devnet_rename_seq);
c91f6df2
BH
1227
1228 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
30e6c9fa 1229 write_seqcount_end(&devnet_rename_seq);
c8d90dca 1230 return 0;
c91f6df2 1231 }
c8d90dca 1232
fcc5a03a
HX
1233 memcpy(oldname, dev->name, IFNAMSIZ);
1234
828de4f6 1235 err = dev_get_valid_name(net, dev, newname);
c91f6df2 1236 if (err < 0) {
30e6c9fa 1237 write_seqcount_end(&devnet_rename_seq);
d9031024 1238 return err;
c91f6df2 1239 }
1da177e4 1240
6fe82a39
VF
1241 if (oldname[0] && !strchr(oldname, '%'))
1242 netdev_info(dev, "renamed from %s\n", oldname);
1243
238fa362
TG
1244 old_assign_type = dev->name_assign_type;
1245 dev->name_assign_type = NET_NAME_RENAMED;
1246
fcc5a03a 1247rollback:
a1b3f594
EB
1248 ret = device_rename(&dev->dev, dev->name);
1249 if (ret) {
1250 memcpy(dev->name, oldname, IFNAMSIZ);
238fa362 1251 dev->name_assign_type = old_assign_type;
30e6c9fa 1252 write_seqcount_end(&devnet_rename_seq);
a1b3f594 1253 return ret;
dcc99773 1254 }
7f988eab 1255
30e6c9fa 1256 write_seqcount_end(&devnet_rename_seq);
c91f6df2 1257
5bb025fa
VF
1258 netdev_adjacent_rename_links(dev, oldname);
1259
7f988eab 1260 write_lock_bh(&dev_base_lock);
ff927412 1261 netdev_name_node_del(dev->name_node);
72c9528b
ED
1262 write_unlock_bh(&dev_base_lock);
1263
1264 synchronize_rcu();
1265
1266 write_lock_bh(&dev_base_lock);
ff927412 1267 netdev_name_node_add(net, dev->name_node);
7f988eab
HX
1268 write_unlock_bh(&dev_base_lock);
1269
056925ab 1270 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
fcc5a03a
HX
1271 ret = notifier_to_errno(ret);
1272
1273 if (ret) {
91e9c07b
ED
1274 /* err >= 0 after dev_alloc_name() or stores the first errno */
1275 if (err >= 0) {
fcc5a03a 1276 err = ret;
30e6c9fa 1277 write_seqcount_begin(&devnet_rename_seq);
fcc5a03a 1278 memcpy(dev->name, oldname, IFNAMSIZ);
5bb025fa 1279 memcpy(oldname, newname, IFNAMSIZ);
238fa362
TG
1280 dev->name_assign_type = old_assign_type;
1281 old_assign_type = NET_NAME_RENAMED;
fcc5a03a 1282 goto rollback;
91e9c07b 1283 } else {
7b6cd1ce 1284 pr_err("%s: name change rollback failed: %d\n",
91e9c07b 1285 dev->name, ret);
fcc5a03a
HX
1286 }
1287 }
1da177e4
LT
1288
1289 return err;
1290}
1291
0b815a1a
SH
1292/**
1293 * dev_set_alias - change ifalias of a device
1294 * @dev: device
1295 * @alias: name up to IFALIASZ
f0db275a 1296 * @len: limit of bytes to copy from info
0b815a1a
SH
1297 *
1298 * Set ifalias for a device,
1299 */
1300int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1301{
6c557001 1302 struct dev_ifalias *new_alias = NULL;
0b815a1a
SH
1303
1304 if (len >= IFALIASZ)
1305 return -EINVAL;
1306
6c557001
FW
1307 if (len) {
1308 new_alias = kmalloc(sizeof(*new_alias) + len + 1, GFP_KERNEL);
1309 if (!new_alias)
1310 return -ENOMEM;
1311
1312 memcpy(new_alias->ifalias, alias, len);
1313 new_alias->ifalias[len] = 0;
96ca4a2c
OH
1314 }
1315
6c557001 1316 mutex_lock(&ifalias_mutex);
e3f0d761
PM
1317 new_alias = rcu_replace_pointer(dev->ifalias, new_alias,
1318 mutex_is_locked(&ifalias_mutex));
6c557001
FW
1319 mutex_unlock(&ifalias_mutex);
1320
1321 if (new_alias)
1322 kfree_rcu(new_alias, rcuhead);
0b815a1a 1323
0b815a1a
SH
1324 return len;
1325}
0fe554a4 1326EXPORT_SYMBOL(dev_set_alias);
0b815a1a 1327
6c557001
FW
1328/**
1329 * dev_get_alias - get ifalias of a device
1330 * @dev: device
20e88320 1331 * @name: buffer to store name of ifalias
6c557001
FW
1332 * @len: size of buffer
1333 *
1334 * get ifalias for a device. Caller must make sure dev cannot go
1335 * away, e.g. rcu read lock or own a reference count to device.
1336 */
1337int dev_get_alias(const struct net_device *dev, char *name, size_t len)
1338{
1339 const struct dev_ifalias *alias;
1340 int ret = 0;
1341
1342 rcu_read_lock();
1343 alias = rcu_dereference(dev->ifalias);
1344 if (alias)
1345 ret = snprintf(name, len, "%s", alias->ifalias);
1346 rcu_read_unlock();
1347
1348 return ret;
1349}
0b815a1a 1350
d8a33ac4 1351/**
3041a069 1352 * netdev_features_change - device changes features
d8a33ac4
SH
1353 * @dev: device to cause notification
1354 *
1355 * Called to indicate a device has changed features.
1356 */
1357void netdev_features_change(struct net_device *dev)
1358{
056925ab 1359 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
d8a33ac4
SH
1360}
1361EXPORT_SYMBOL(netdev_features_change);
1362
1da177e4
LT
1363/**
1364 * netdev_state_change - device changes state
1365 * @dev: device to cause notification
1366 *
1367 * Called to indicate a device has changed state. This function calls
1368 * the notifier chains for netdev_chain and sends a NEWLINK message
1369 * to the routing socket.
1370 */
1371void netdev_state_change(struct net_device *dev)
1372{
1373 if (dev->flags & IFF_UP) {
51d0c047
DA
1374 struct netdev_notifier_change_info change_info = {
1375 .info.dev = dev,
1376 };
54951194 1377
51d0c047 1378 call_netdevice_notifiers_info(NETDEV_CHANGE,
54951194 1379 &change_info.info);
7f294054 1380 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
1da177e4
LT
1381 }
1382}
d1b19dff 1383EXPORT_SYMBOL(netdev_state_change);
1da177e4 1384
ee89bab1 1385/**
722c9a0c 1386 * netdev_notify_peers - notify network peers about existence of @dev
1387 * @dev: network device
ee89bab1
AW
1388 *
1389 * Generate traffic such that interested network peers are aware of
1390 * @dev, such as by generating a gratuitous ARP. This may be used when
1391 * a device wants to inform the rest of the network about some sort of
1392 * reconfiguration such as a failover event or virtual machine
1393 * migration.
1394 */
1395void netdev_notify_peers(struct net_device *dev)
c1da4ac7 1396{
ee89bab1
AW
1397 rtnl_lock();
1398 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
37c343b4 1399 call_netdevice_notifiers(NETDEV_RESEND_IGMP, dev);
ee89bab1 1400 rtnl_unlock();
c1da4ac7 1401}
ee89bab1 1402EXPORT_SYMBOL(netdev_notify_peers);
c1da4ac7 1403
40c900aa 1404static int __dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
1da177e4 1405{
d314774c 1406 const struct net_device_ops *ops = dev->netdev_ops;
3b8bcfd5 1407 int ret;
1da177e4 1408
e46b66bc
BH
1409 ASSERT_RTNL();
1410
1da177e4
LT
1411 if (!netif_device_present(dev))
1412 return -ENODEV;
1413
ca99ca14
NH
1414 /* Block netpoll from trying to do any rx path servicing.
1415 * If we don't do this there is a chance ndo_poll_controller
1416 * or ndo_poll may be running while we open the device
1417 */
66b5552f 1418 netpoll_poll_disable(dev);
ca99ca14 1419
40c900aa 1420 ret = call_netdevice_notifiers_extack(NETDEV_PRE_UP, dev, extack);
3b8bcfd5
JB
1421 ret = notifier_to_errno(ret);
1422 if (ret)
1423 return ret;
1424
1da177e4 1425 set_bit(__LINK_STATE_START, &dev->state);
bada339b 1426
d314774c
SH
1427 if (ops->ndo_validate_addr)
1428 ret = ops->ndo_validate_addr(dev);
bada339b 1429
d314774c
SH
1430 if (!ret && ops->ndo_open)
1431 ret = ops->ndo_open(dev);
1da177e4 1432
66b5552f 1433 netpoll_poll_enable(dev);
ca99ca14 1434
bada339b
JG
1435 if (ret)
1436 clear_bit(__LINK_STATE_START, &dev->state);
1437 else {
1da177e4 1438 dev->flags |= IFF_UP;
4417da66 1439 dev_set_rx_mode(dev);
1da177e4 1440 dev_activate(dev);
7bf23575 1441 add_device_randomness(dev->dev_addr, dev->addr_len);
1da177e4 1442 }
bada339b 1443
1da177e4
LT
1444 return ret;
1445}
1446
1447/**
bd380811 1448 * dev_open - prepare an interface for use.
00f54e68
PM
1449 * @dev: device to open
1450 * @extack: netlink extended ack
1da177e4 1451 *
bd380811
PM
1452 * Takes a device from down to up state. The device's private open
1453 * function is invoked and then the multicast lists are loaded. Finally
1454 * the device is moved into the up state and a %NETDEV_UP message is
1455 * sent to the netdev notifier chain.
1456 *
1457 * Calling this function on an active interface is a nop. On a failure
1458 * a negative errno code is returned.
1da177e4 1459 */
00f54e68 1460int dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
bd380811
PM
1461{
1462 int ret;
1463
bd380811
PM
1464 if (dev->flags & IFF_UP)
1465 return 0;
1466
40c900aa 1467 ret = __dev_open(dev, extack);
bd380811
PM
1468 if (ret < 0)
1469 return ret;
1470
7f294054 1471 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
bd380811
PM
1472 call_netdevice_notifiers(NETDEV_UP, dev);
1473
1474 return ret;
1475}
1476EXPORT_SYMBOL(dev_open);
1477
7051b88a 1478static void __dev_close_many(struct list_head *head)
1da177e4 1479{
44345724 1480 struct net_device *dev;
e46b66bc 1481
bd380811 1482 ASSERT_RTNL();
9d5010db
DM
1483 might_sleep();
1484
5cde2829 1485 list_for_each_entry(dev, head, close_list) {
3f4df206 1486 /* Temporarily disable netpoll until the interface is down */
66b5552f 1487 netpoll_poll_disable(dev);
3f4df206 1488
44345724 1489 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
1da177e4 1490
44345724 1491 clear_bit(__LINK_STATE_START, &dev->state);
1da177e4 1492
44345724
OP
1493 /* Synchronize to scheduled poll. We cannot touch poll list, it
1494 * can be even on different cpu. So just clear netif_running().
1495 *
1496 * dev->stop() will invoke napi_disable() on all of it's
1497 * napi_struct instances on this device.
1498 */
4e857c58 1499 smp_mb__after_atomic(); /* Commit netif_running(). */
44345724 1500 }
1da177e4 1501
44345724 1502 dev_deactivate_many(head);
d8b2a4d2 1503
5cde2829 1504 list_for_each_entry(dev, head, close_list) {
44345724 1505 const struct net_device_ops *ops = dev->netdev_ops;
1da177e4 1506
44345724
OP
1507 /*
1508 * Call the device specific close. This cannot fail.
1509 * Only if device is UP
1510 *
1511 * We allow it to be called even after a DETACH hot-plug
1512 * event.
1513 */
1514 if (ops->ndo_stop)
1515 ops->ndo_stop(dev);
1516
44345724 1517 dev->flags &= ~IFF_UP;
66b5552f 1518 netpoll_poll_enable(dev);
44345724 1519 }
44345724
OP
1520}
1521
7051b88a 1522static void __dev_close(struct net_device *dev)
44345724
OP
1523{
1524 LIST_HEAD(single);
1525
5cde2829 1526 list_add(&dev->close_list, &single);
7051b88a 1527 __dev_close_many(&single);
f87e6f47 1528 list_del(&single);
44345724
OP
1529}
1530
7051b88a 1531void dev_close_many(struct list_head *head, bool unlink)
44345724
OP
1532{
1533 struct net_device *dev, *tmp;
1da177e4 1534
5cde2829
EB
1535 /* Remove the devices that don't need to be closed */
1536 list_for_each_entry_safe(dev, tmp, head, close_list)
44345724 1537 if (!(dev->flags & IFF_UP))
5cde2829 1538 list_del_init(&dev->close_list);
44345724
OP
1539
1540 __dev_close_many(head);
1da177e4 1541
5cde2829 1542 list_for_each_entry_safe(dev, tmp, head, close_list) {
7f294054 1543 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
44345724 1544 call_netdevice_notifiers(NETDEV_DOWN, dev);
99c4a26a
DM
1545 if (unlink)
1546 list_del_init(&dev->close_list);
44345724 1547 }
bd380811 1548}
99c4a26a 1549EXPORT_SYMBOL(dev_close_many);
bd380811
PM
1550
1551/**
1552 * dev_close - shutdown an interface.
1553 * @dev: device to shutdown
1554 *
1555 * This function moves an active device into down state. A
1556 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1557 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1558 * chain.
1559 */
7051b88a 1560void dev_close(struct net_device *dev)
bd380811 1561{
e14a5993
ED
1562 if (dev->flags & IFF_UP) {
1563 LIST_HEAD(single);
1da177e4 1564
5cde2829 1565 list_add(&dev->close_list, &single);
99c4a26a 1566 dev_close_many(&single, true);
e14a5993
ED
1567 list_del(&single);
1568 }
1da177e4 1569}
d1b19dff 1570EXPORT_SYMBOL(dev_close);
1da177e4
LT
1571
1572
0187bdfb
BH
1573/**
1574 * dev_disable_lro - disable Large Receive Offload on a device
1575 * @dev: device
1576 *
1577 * Disable Large Receive Offload (LRO) on a net device. Must be
1578 * called under RTNL. This is needed if received packets may be
1579 * forwarded to another interface.
1580 */
1581void dev_disable_lro(struct net_device *dev)
1582{
fbe168ba
MK
1583 struct net_device *lower_dev;
1584 struct list_head *iter;
529d0489 1585
bc5787c6
MM
1586 dev->wanted_features &= ~NETIF_F_LRO;
1587 netdev_update_features(dev);
27660515 1588
22d5969f
MM
1589 if (unlikely(dev->features & NETIF_F_LRO))
1590 netdev_WARN(dev, "failed to disable LRO!\n");
fbe168ba
MK
1591
1592 netdev_for_each_lower_dev(dev, lower_dev, iter)
1593 dev_disable_lro(lower_dev);
0187bdfb
BH
1594}
1595EXPORT_SYMBOL(dev_disable_lro);
1596
56f5aa77
MC
1597/**
1598 * dev_disable_gro_hw - disable HW Generic Receive Offload on a device
1599 * @dev: device
1600 *
1601 * Disable HW Generic Receive Offload (GRO_HW) on a net device. Must be
1602 * called under RTNL. This is needed if Generic XDP is installed on
1603 * the device.
1604 */
1605static void dev_disable_gro_hw(struct net_device *dev)
1606{
1607 dev->wanted_features &= ~NETIF_F_GRO_HW;
1608 netdev_update_features(dev);
1609
1610 if (unlikely(dev->features & NETIF_F_GRO_HW))
1611 netdev_WARN(dev, "failed to disable GRO_HW!\n");
1612}
1613
ede2762d
KT
1614const char *netdev_cmd_to_name(enum netdev_cmd cmd)
1615{
1616#define N(val) \
1617 case NETDEV_##val: \
1618 return "NETDEV_" __stringify(val);
1619 switch (cmd) {
1620 N(UP) N(DOWN) N(REBOOT) N(CHANGE) N(REGISTER) N(UNREGISTER)
1621 N(CHANGEMTU) N(CHANGEADDR) N(GOING_DOWN) N(CHANGENAME) N(FEAT_CHANGE)
1622 N(BONDING_FAILOVER) N(PRE_UP) N(PRE_TYPE_CHANGE) N(POST_TYPE_CHANGE)
1623 N(POST_INIT) N(RELEASE) N(NOTIFY_PEERS) N(JOIN) N(CHANGEUPPER)
1624 N(RESEND_IGMP) N(PRECHANGEMTU) N(CHANGEINFODATA) N(BONDING_INFO)
1625 N(PRECHANGEUPPER) N(CHANGELOWERSTATE) N(UDP_TUNNEL_PUSH_INFO)
1626 N(UDP_TUNNEL_DROP_INFO) N(CHANGE_TX_QUEUE_LEN)
9daae9bd
GP
1627 N(CVLAN_FILTER_PUSH_INFO) N(CVLAN_FILTER_DROP_INFO)
1628 N(SVLAN_FILTER_PUSH_INFO) N(SVLAN_FILTER_DROP_INFO)
1570415f 1629 N(PRE_CHANGEADDR)
3f5ecd8a 1630 }
ede2762d
KT
1631#undef N
1632 return "UNKNOWN_NETDEV_EVENT";
1633}
1634EXPORT_SYMBOL_GPL(netdev_cmd_to_name);
1635
351638e7
JP
1636static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1637 struct net_device *dev)
1638{
51d0c047
DA
1639 struct netdev_notifier_info info = {
1640 .dev = dev,
1641 };
351638e7 1642
351638e7
JP
1643 return nb->notifier_call(nb, val, &info);
1644}
0187bdfb 1645
afa0df59
JP
1646static int call_netdevice_register_notifiers(struct notifier_block *nb,
1647 struct net_device *dev)
1648{
1649 int err;
1650
1651 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
1652 err = notifier_to_errno(err);
1653 if (err)
1654 return err;
1655
1656 if (!(dev->flags & IFF_UP))
1657 return 0;
1658
1659 call_netdevice_notifier(nb, NETDEV_UP, dev);
1660 return 0;
1661}
1662
1663static void call_netdevice_unregister_notifiers(struct notifier_block *nb,
1664 struct net_device *dev)
1665{
1666 if (dev->flags & IFF_UP) {
1667 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1668 dev);
1669 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
1670 }
1671 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
1672}
1673
1674static int call_netdevice_register_net_notifiers(struct notifier_block *nb,
1675 struct net *net)
1676{
1677 struct net_device *dev;
1678 int err;
1679
1680 for_each_netdev(net, dev) {
1681 err = call_netdevice_register_notifiers(nb, dev);
1682 if (err)
1683 goto rollback;
1684 }
1685 return 0;
1686
1687rollback:
1688 for_each_netdev_continue_reverse(net, dev)
1689 call_netdevice_unregister_notifiers(nb, dev);
1690 return err;
1691}
1692
1693static void call_netdevice_unregister_net_notifiers(struct notifier_block *nb,
1694 struct net *net)
1695{
1696 struct net_device *dev;
1697
1698 for_each_netdev(net, dev)
1699 call_netdevice_unregister_notifiers(nb, dev);
1700}
1701
881d966b
EB
1702static int dev_boot_phase = 1;
1703
1da177e4 1704/**
722c9a0c 1705 * register_netdevice_notifier - register a network notifier block
1706 * @nb: notifier
1da177e4 1707 *
722c9a0c 1708 * Register a notifier to be called when network device events occur.
1709 * The notifier passed is linked into the kernel structures and must
1710 * not be reused until it has been unregistered. A negative errno code
1711 * is returned on a failure.
1da177e4 1712 *
722c9a0c 1713 * When registered all registration and up events are replayed
1714 * to the new notifier to allow device to have a race free
1715 * view of the network device list.
1da177e4
LT
1716 */
1717
1718int register_netdevice_notifier(struct notifier_block *nb)
1719{
881d966b 1720 struct net *net;
1da177e4
LT
1721 int err;
1722
328fbe74
KT
1723 /* Close race with setup_net() and cleanup_net() */
1724 down_write(&pernet_ops_rwsem);
1da177e4 1725 rtnl_lock();
f07d5b94 1726 err = raw_notifier_chain_register(&netdev_chain, nb);
fcc5a03a
HX
1727 if (err)
1728 goto unlock;
881d966b
EB
1729 if (dev_boot_phase)
1730 goto unlock;
1731 for_each_net(net) {
afa0df59
JP
1732 err = call_netdevice_register_net_notifiers(nb, net);
1733 if (err)
1734 goto rollback;
1da177e4 1735 }
fcc5a03a
HX
1736
1737unlock:
1da177e4 1738 rtnl_unlock();
328fbe74 1739 up_write(&pernet_ops_rwsem);
1da177e4 1740 return err;
fcc5a03a
HX
1741
1742rollback:
afa0df59
JP
1743 for_each_net_continue_reverse(net)
1744 call_netdevice_unregister_net_notifiers(nb, net);
c67625a1
PE
1745
1746 raw_notifier_chain_unregister(&netdev_chain, nb);
fcc5a03a 1747 goto unlock;
1da177e4 1748}
d1b19dff 1749EXPORT_SYMBOL(register_netdevice_notifier);
1da177e4
LT
1750
1751/**
722c9a0c 1752 * unregister_netdevice_notifier - unregister a network notifier block
1753 * @nb: notifier
1da177e4 1754 *
722c9a0c 1755 * Unregister a notifier previously registered by
1756 * register_netdevice_notifier(). The notifier is unlinked into the
1757 * kernel structures and may then be reused. A negative errno code
1758 * is returned on a failure.
7d3d43da 1759 *
722c9a0c 1760 * After unregistering unregister and down device events are synthesized
1761 * for all devices on the device list to the removed notifier to remove
1762 * the need for special case cleanup code.
1da177e4
LT
1763 */
1764
1765int unregister_netdevice_notifier(struct notifier_block *nb)
1766{
7d3d43da
EB
1767 struct net_device *dev;
1768 struct net *net;
9f514950
HX
1769 int err;
1770
328fbe74
KT
1771 /* Close race with setup_net() and cleanup_net() */
1772 down_write(&pernet_ops_rwsem);
9f514950 1773 rtnl_lock();
f07d5b94 1774 err = raw_notifier_chain_unregister(&netdev_chain, nb);
7d3d43da
EB
1775 if (err)
1776 goto unlock;
1777
1778 for_each_net(net) {
1779 for_each_netdev(net, dev) {
1780 if (dev->flags & IFF_UP) {
351638e7
JP
1781 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1782 dev);
1783 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
7d3d43da 1784 }
351638e7 1785 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
7d3d43da
EB
1786 }
1787 }
1788unlock:
9f514950 1789 rtnl_unlock();
328fbe74 1790 up_write(&pernet_ops_rwsem);
9f514950 1791 return err;
1da177e4 1792}
d1b19dff 1793EXPORT_SYMBOL(unregister_netdevice_notifier);
1da177e4 1794
a30c7b42
JP
1795/**
1796 * register_netdevice_notifier_net - register a per-netns network notifier block
1797 * @net: network namespace
1798 * @nb: notifier
1799 *
1800 * Register a notifier to be called when network device events occur.
1801 * The notifier passed is linked into the kernel structures and must
1802 * not be reused until it has been unregistered. A negative errno code
1803 * is returned on a failure.
1804 *
1805 * When registered all registration and up events are replayed
1806 * to the new notifier to allow device to have a race free
1807 * view of the network device list.
1808 */
1809
1810int register_netdevice_notifier_net(struct net *net, struct notifier_block *nb)
1811{
1812 int err;
1813
1814 rtnl_lock();
1815 err = raw_notifier_chain_register(&net->netdev_chain, nb);
1816 if (err)
1817 goto unlock;
1818 if (dev_boot_phase)
1819 goto unlock;
1820
1821 err = call_netdevice_register_net_notifiers(nb, net);
1822 if (err)
1823 goto chain_unregister;
1824
1825unlock:
1826 rtnl_unlock();
1827 return err;
1828
1829chain_unregister:
1830 raw_notifier_chain_unregister(&netdev_chain, nb);
1831 goto unlock;
1832}
1833EXPORT_SYMBOL(register_netdevice_notifier_net);
1834
1835/**
1836 * unregister_netdevice_notifier_net - unregister a per-netns
1837 * network notifier block
1838 * @net: network namespace
1839 * @nb: notifier
1840 *
1841 * Unregister a notifier previously registered by
1842 * register_netdevice_notifier(). The notifier is unlinked into the
1843 * kernel structures and may then be reused. A negative errno code
1844 * is returned on a failure.
1845 *
1846 * After unregistering unregister and down device events are synthesized
1847 * for all devices on the device list to the removed notifier to remove
1848 * the need for special case cleanup code.
1849 */
1850
1851int unregister_netdevice_notifier_net(struct net *net,
1852 struct notifier_block *nb)
1853{
1854 int err;
1855
1856 rtnl_lock();
1857 err = raw_notifier_chain_unregister(&net->netdev_chain, nb);
1858 if (err)
1859 goto unlock;
1860
1861 call_netdevice_unregister_net_notifiers(nb, net);
1862
1863unlock:
1864 rtnl_unlock();
1865 return err;
1866}
1867EXPORT_SYMBOL(unregister_netdevice_notifier_net);
1868
351638e7
JP
1869/**
1870 * call_netdevice_notifiers_info - call all network notifier blocks
1871 * @val: value passed unmodified to notifier function
351638e7
JP
1872 * @info: notifier information data
1873 *
1874 * Call all network notifier blocks. Parameters and return value
1875 * are as for raw_notifier_call_chain().
1876 */
1877
1d143d9f 1878static int call_netdevice_notifiers_info(unsigned long val,
1d143d9f 1879 struct netdev_notifier_info *info)
351638e7 1880{
a30c7b42
JP
1881 struct net *net = dev_net(info->dev);
1882 int ret;
1883
351638e7 1884 ASSERT_RTNL();
a30c7b42
JP
1885
1886 /* Run per-netns notifier block chain first, then run the global one.
1887 * Hopefully, one day, the global one is going to be removed after
1888 * all notifier block registrators get converted to be per-netns.
1889 */
1890 ret = raw_notifier_call_chain(&net->netdev_chain, val, info);
1891 if (ret & NOTIFY_STOP_MASK)
1892 return ret;
351638e7
JP
1893 return raw_notifier_call_chain(&netdev_chain, val, info);
1894}
351638e7 1895
26372605
PM
1896static int call_netdevice_notifiers_extack(unsigned long val,
1897 struct net_device *dev,
1898 struct netlink_ext_ack *extack)
1899{
1900 struct netdev_notifier_info info = {
1901 .dev = dev,
1902 .extack = extack,
1903 };
1904
1905 return call_netdevice_notifiers_info(val, &info);
1906}
1907
1da177e4
LT
1908/**
1909 * call_netdevice_notifiers - call all network notifier blocks
1910 * @val: value passed unmodified to notifier function
c4ea43c5 1911 * @dev: net_device pointer passed unmodified to notifier function
1da177e4
LT
1912 *
1913 * Call all network notifier blocks. Parameters and return value
f07d5b94 1914 * are as for raw_notifier_call_chain().
1da177e4
LT
1915 */
1916
ad7379d4 1917int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
1da177e4 1918{
26372605 1919 return call_netdevice_notifiers_extack(val, dev, NULL);
1da177e4 1920}
edf947f1 1921EXPORT_SYMBOL(call_netdevice_notifiers);
1da177e4 1922
af7d6cce
SD
1923/**
1924 * call_netdevice_notifiers_mtu - call all network notifier blocks
1925 * @val: value passed unmodified to notifier function
1926 * @dev: net_device pointer passed unmodified to notifier function
1927 * @arg: additional u32 argument passed to the notifier function
1928 *
1929 * Call all network notifier blocks. Parameters and return value
1930 * are as for raw_notifier_call_chain().
1931 */
1932static int call_netdevice_notifiers_mtu(unsigned long val,
1933 struct net_device *dev, u32 arg)
1934{
1935 struct netdev_notifier_info_ext info = {
1936 .info.dev = dev,
1937 .ext.mtu = arg,
1938 };
1939
1940 BUILD_BUG_ON(offsetof(struct netdev_notifier_info_ext, info) != 0);
1941
1942 return call_netdevice_notifiers_info(val, &info.info);
1943}
1944
1cf51900 1945#ifdef CONFIG_NET_INGRESS
aabf6772 1946static DEFINE_STATIC_KEY_FALSE(ingress_needed_key);
4577139b
DB
1947
1948void net_inc_ingress_queue(void)
1949{
aabf6772 1950 static_branch_inc(&ingress_needed_key);
4577139b
DB
1951}
1952EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
1953
1954void net_dec_ingress_queue(void)
1955{
aabf6772 1956 static_branch_dec(&ingress_needed_key);
4577139b
DB
1957}
1958EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
1959#endif
1960
1f211a1b 1961#ifdef CONFIG_NET_EGRESS
aabf6772 1962static DEFINE_STATIC_KEY_FALSE(egress_needed_key);
1f211a1b
DB
1963
1964void net_inc_egress_queue(void)
1965{
aabf6772 1966 static_branch_inc(&egress_needed_key);
1f211a1b
DB
1967}
1968EXPORT_SYMBOL_GPL(net_inc_egress_queue);
1969
1970void net_dec_egress_queue(void)
1971{
aabf6772 1972 static_branch_dec(&egress_needed_key);
1f211a1b
DB
1973}
1974EXPORT_SYMBOL_GPL(net_dec_egress_queue);
1975#endif
1976
39e83922 1977static DEFINE_STATIC_KEY_FALSE(netstamp_needed_key);
e9666d10 1978#ifdef CONFIG_JUMP_LABEL
b90e5794 1979static atomic_t netstamp_needed_deferred;
13baa00a 1980static atomic_t netstamp_wanted;
5fa8bbda 1981static void netstamp_clear(struct work_struct *work)
1da177e4 1982{
b90e5794 1983 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
13baa00a 1984 int wanted;
b90e5794 1985
13baa00a
ED
1986 wanted = atomic_add_return(deferred, &netstamp_wanted);
1987 if (wanted > 0)
39e83922 1988 static_branch_enable(&netstamp_needed_key);
13baa00a 1989 else
39e83922 1990 static_branch_disable(&netstamp_needed_key);
5fa8bbda
ED
1991}
1992static DECLARE_WORK(netstamp_work, netstamp_clear);
b90e5794 1993#endif
5fa8bbda
ED
1994
1995void net_enable_timestamp(void)
1996{
e9666d10 1997#ifdef CONFIG_JUMP_LABEL
13baa00a
ED
1998 int wanted;
1999
2000 while (1) {
2001 wanted = atomic_read(&netstamp_wanted);
2002 if (wanted <= 0)
2003 break;
2004 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted + 1) == wanted)
2005 return;
2006 }
2007 atomic_inc(&netstamp_needed_deferred);
2008 schedule_work(&netstamp_work);
2009#else
39e83922 2010 static_branch_inc(&netstamp_needed_key);
13baa00a 2011#endif
1da177e4 2012}
d1b19dff 2013EXPORT_SYMBOL(net_enable_timestamp);
1da177e4
LT
2014
2015void net_disable_timestamp(void)
2016{
e9666d10 2017#ifdef CONFIG_JUMP_LABEL
13baa00a
ED
2018 int wanted;
2019
2020 while (1) {
2021 wanted = atomic_read(&netstamp_wanted);
2022 if (wanted <= 1)
2023 break;
2024 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted - 1) == wanted)
2025 return;
2026 }
2027 atomic_dec(&netstamp_needed_deferred);
5fa8bbda
ED
2028 schedule_work(&netstamp_work);
2029#else
39e83922 2030 static_branch_dec(&netstamp_needed_key);
5fa8bbda 2031#endif
1da177e4 2032}
d1b19dff 2033EXPORT_SYMBOL(net_disable_timestamp);
1da177e4 2034
3b098e2d 2035static inline void net_timestamp_set(struct sk_buff *skb)
1da177e4 2036{
2456e855 2037 skb->tstamp = 0;
39e83922 2038 if (static_branch_unlikely(&netstamp_needed_key))
a61bbcf2 2039 __net_timestamp(skb);
1da177e4
LT
2040}
2041
39e83922
DB
2042#define net_timestamp_check(COND, SKB) \
2043 if (static_branch_unlikely(&netstamp_needed_key)) { \
2044 if ((COND) && !(SKB)->tstamp) \
2045 __net_timestamp(SKB); \
2046 } \
3b098e2d 2047
f4b05d27 2048bool is_skb_forwardable(const struct net_device *dev, const struct sk_buff *skb)
79b569f0
DL
2049{
2050 unsigned int len;
2051
2052 if (!(dev->flags & IFF_UP))
2053 return false;
2054
2055 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
2056 if (skb->len <= len)
2057 return true;
2058
2059 /* if TSO is enabled, we don't care about the length as the packet
2060 * could be forwarded without being segmented before
2061 */
2062 if (skb_is_gso(skb))
2063 return true;
2064
2065 return false;
2066}
1ee481fb 2067EXPORT_SYMBOL_GPL(is_skb_forwardable);
79b569f0 2068
a0265d28
HX
2069int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
2070{
4e3264d2 2071 int ret = ____dev_forward_skb(dev, skb);
a0265d28 2072
4e3264d2
MKL
2073 if (likely(!ret)) {
2074 skb->protocol = eth_type_trans(skb, dev);
2075 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
2076 }
a0265d28 2077
4e3264d2 2078 return ret;
a0265d28
HX
2079}
2080EXPORT_SYMBOL_GPL(__dev_forward_skb);
2081
44540960
AB
2082/**
2083 * dev_forward_skb - loopback an skb to another netif
2084 *
2085 * @dev: destination network device
2086 * @skb: buffer to forward
2087 *
2088 * return values:
2089 * NET_RX_SUCCESS (no congestion)
6ec82562 2090 * NET_RX_DROP (packet was dropped, but freed)
44540960
AB
2091 *
2092 * dev_forward_skb can be used for injecting an skb from the
2093 * start_xmit function of one device into the receive queue
2094 * of another device.
2095 *
2096 * The receiving device may be in another namespace, so
2097 * we have to clear all information in the skb that could
2098 * impact namespace isolation.
2099 */
2100int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
2101{
a0265d28 2102 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
44540960
AB
2103}
2104EXPORT_SYMBOL_GPL(dev_forward_skb);
2105
71d9dec2
CG
2106static inline int deliver_skb(struct sk_buff *skb,
2107 struct packet_type *pt_prev,
2108 struct net_device *orig_dev)
2109{
1f8b977a 2110 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
1080e512 2111 return -ENOMEM;
63354797 2112 refcount_inc(&skb->users);
71d9dec2
CG
2113 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
2114}
2115
7866a621
SN
2116static inline void deliver_ptype_list_skb(struct sk_buff *skb,
2117 struct packet_type **pt,
fbcb2170
JP
2118 struct net_device *orig_dev,
2119 __be16 type,
7866a621
SN
2120 struct list_head *ptype_list)
2121{
2122 struct packet_type *ptype, *pt_prev = *pt;
2123
2124 list_for_each_entry_rcu(ptype, ptype_list, list) {
2125 if (ptype->type != type)
2126 continue;
2127 if (pt_prev)
fbcb2170 2128 deliver_skb(skb, pt_prev, orig_dev);
7866a621
SN
2129 pt_prev = ptype;
2130 }
2131 *pt = pt_prev;
2132}
2133
c0de08d0
EL
2134static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
2135{
a3d744e9 2136 if (!ptype->af_packet_priv || !skb->sk)
c0de08d0
EL
2137 return false;
2138
2139 if (ptype->id_match)
2140 return ptype->id_match(ptype, skb->sk);
2141 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
2142 return true;
2143
2144 return false;
2145}
2146
9f9a742d
MR
2147/**
2148 * dev_nit_active - return true if any network interface taps are in use
2149 *
2150 * @dev: network device to check for the presence of taps
2151 */
2152bool dev_nit_active(struct net_device *dev)
2153{
2154 return !list_empty(&ptype_all) || !list_empty(&dev->ptype_all);
2155}
2156EXPORT_SYMBOL_GPL(dev_nit_active);
2157
1da177e4
LT
2158/*
2159 * Support routine. Sends outgoing frames to any network
2160 * taps currently in use.
2161 */
2162
74b20582 2163void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
1da177e4
LT
2164{
2165 struct packet_type *ptype;
71d9dec2
CG
2166 struct sk_buff *skb2 = NULL;
2167 struct packet_type *pt_prev = NULL;
7866a621 2168 struct list_head *ptype_list = &ptype_all;
a61bbcf2 2169
1da177e4 2170 rcu_read_lock();
7866a621
SN
2171again:
2172 list_for_each_entry_rcu(ptype, ptype_list, list) {
fa788d98
VW
2173 if (ptype->ignore_outgoing)
2174 continue;
2175
1da177e4
LT
2176 /* Never send packets back to the socket
2177 * they originated from - MvS (miquels@drinkel.ow.org)
2178 */
7866a621
SN
2179 if (skb_loop_sk(ptype, skb))
2180 continue;
71d9dec2 2181
7866a621
SN
2182 if (pt_prev) {
2183 deliver_skb(skb2, pt_prev, skb->dev);
2184 pt_prev = ptype;
2185 continue;
2186 }
1da177e4 2187
7866a621
SN
2188 /* need to clone skb, done only once */
2189 skb2 = skb_clone(skb, GFP_ATOMIC);
2190 if (!skb2)
2191 goto out_unlock;
70978182 2192
7866a621 2193 net_timestamp_set(skb2);
1da177e4 2194
7866a621
SN
2195 /* skb->nh should be correctly
2196 * set by sender, so that the second statement is
2197 * just protection against buggy protocols.
2198 */
2199 skb_reset_mac_header(skb2);
2200
2201 if (skb_network_header(skb2) < skb2->data ||
2202 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
2203 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
2204 ntohs(skb2->protocol),
2205 dev->name);
2206 skb_reset_network_header(skb2);
1da177e4 2207 }
7866a621
SN
2208
2209 skb2->transport_header = skb2->network_header;
2210 skb2->pkt_type = PACKET_OUTGOING;
2211 pt_prev = ptype;
2212 }
2213
2214 if (ptype_list == &ptype_all) {
2215 ptype_list = &dev->ptype_all;
2216 goto again;
1da177e4 2217 }
7866a621 2218out_unlock:
581fe0ea
WB
2219 if (pt_prev) {
2220 if (!skb_orphan_frags_rx(skb2, GFP_ATOMIC))
2221 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
2222 else
2223 kfree_skb(skb2);
2224 }
1da177e4
LT
2225 rcu_read_unlock();
2226}
74b20582 2227EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
1da177e4 2228
2c53040f
BH
2229/**
2230 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
4f57c087
JF
2231 * @dev: Network device
2232 * @txq: number of queues available
2233 *
2234 * If real_num_tx_queues is changed the tc mappings may no longer be
2235 * valid. To resolve this verify the tc mapping remains valid and if
2236 * not NULL the mapping. With no priorities mapping to this
2237 * offset/count pair it will no longer be used. In the worst case TC0
2238 * is invalid nothing can be done so disable priority mappings. If is
2239 * expected that drivers will fix this mapping if they can before
2240 * calling netif_set_real_num_tx_queues.
2241 */
bb134d22 2242static void netif_setup_tc(struct net_device *dev, unsigned int txq)
4f57c087
JF
2243{
2244 int i;
2245 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2246
2247 /* If TC0 is invalidated disable TC mapping */
2248 if (tc->offset + tc->count > txq) {
7b6cd1ce 2249 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
4f57c087
JF
2250 dev->num_tc = 0;
2251 return;
2252 }
2253
2254 /* Invalidated prio to tc mappings set to TC0 */
2255 for (i = 1; i < TC_BITMASK + 1; i++) {
2256 int q = netdev_get_prio_tc_map(dev, i);
2257
2258 tc = &dev->tc_to_txq[q];
2259 if (tc->offset + tc->count > txq) {
7b6cd1ce
JP
2260 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
2261 i, q);
4f57c087
JF
2262 netdev_set_prio_tc_map(dev, i, 0);
2263 }
2264 }
2265}
2266
8d059b0f
AD
2267int netdev_txq_to_tc(struct net_device *dev, unsigned int txq)
2268{
2269 if (dev->num_tc) {
2270 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2271 int i;
2272
ffcfe25b 2273 /* walk through the TCs and see if it falls into any of them */
8d059b0f
AD
2274 for (i = 0; i < TC_MAX_QUEUE; i++, tc++) {
2275 if ((txq - tc->offset) < tc->count)
2276 return i;
2277 }
2278
ffcfe25b 2279 /* didn't find it, just return -1 to indicate no match */
8d059b0f
AD
2280 return -1;
2281 }
2282
2283 return 0;
2284}
8a5f2166 2285EXPORT_SYMBOL(netdev_txq_to_tc);
8d059b0f 2286
537c00de 2287#ifdef CONFIG_XPS
04157469
AN
2288struct static_key xps_needed __read_mostly;
2289EXPORT_SYMBOL(xps_needed);
2290struct static_key xps_rxqs_needed __read_mostly;
2291EXPORT_SYMBOL(xps_rxqs_needed);
537c00de
AD
2292static DEFINE_MUTEX(xps_map_mutex);
2293#define xmap_dereference(P) \
2294 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
2295
6234f874
AD
2296static bool remove_xps_queue(struct xps_dev_maps *dev_maps,
2297 int tci, u16 index)
537c00de 2298{
10cdc3f3
AD
2299 struct xps_map *map = NULL;
2300 int pos;
537c00de 2301
10cdc3f3 2302 if (dev_maps)
80d19669 2303 map = xmap_dereference(dev_maps->attr_map[tci]);
6234f874
AD
2304 if (!map)
2305 return false;
537c00de 2306
6234f874
AD
2307 for (pos = map->len; pos--;) {
2308 if (map->queues[pos] != index)
2309 continue;
2310
2311 if (map->len > 1) {
2312 map->queues[pos] = map->queues[--map->len];
10cdc3f3 2313 break;
537c00de 2314 }
6234f874 2315
80d19669 2316 RCU_INIT_POINTER(dev_maps->attr_map[tci], NULL);
6234f874
AD
2317 kfree_rcu(map, rcu);
2318 return false;
537c00de
AD
2319 }
2320
6234f874 2321 return true;
10cdc3f3
AD
2322}
2323
6234f874
AD
2324static bool remove_xps_queue_cpu(struct net_device *dev,
2325 struct xps_dev_maps *dev_maps,
2326 int cpu, u16 offset, u16 count)
2327{
184c449f
AD
2328 int num_tc = dev->num_tc ? : 1;
2329 bool active = false;
2330 int tci;
6234f874 2331
184c449f
AD
2332 for (tci = cpu * num_tc; num_tc--; tci++) {
2333 int i, j;
2334
2335 for (i = count, j = offset; i--; j++) {
6358d49a 2336 if (!remove_xps_queue(dev_maps, tci, j))
184c449f
AD
2337 break;
2338 }
2339
2340 active |= i < 0;
6234f874
AD
2341 }
2342
184c449f 2343 return active;
6234f874
AD
2344}
2345
867d0ad4
SD
2346static void reset_xps_maps(struct net_device *dev,
2347 struct xps_dev_maps *dev_maps,
2348 bool is_rxqs_map)
2349{
2350 if (is_rxqs_map) {
2351 static_key_slow_dec_cpuslocked(&xps_rxqs_needed);
2352 RCU_INIT_POINTER(dev->xps_rxqs_map, NULL);
2353 } else {
2354 RCU_INIT_POINTER(dev->xps_cpus_map, NULL);
2355 }
2356 static_key_slow_dec_cpuslocked(&xps_needed);
2357 kfree_rcu(dev_maps, rcu);
2358}
2359
80d19669
AN
2360static void clean_xps_maps(struct net_device *dev, const unsigned long *mask,
2361 struct xps_dev_maps *dev_maps, unsigned int nr_ids,
2362 u16 offset, u16 count, bool is_rxqs_map)
2363{
2364 bool active = false;
2365 int i, j;
2366
2367 for (j = -1; j = netif_attrmask_next(j, mask, nr_ids),
2368 j < nr_ids;)
2369 active |= remove_xps_queue_cpu(dev, dev_maps, j, offset,
2370 count);
867d0ad4
SD
2371 if (!active)
2372 reset_xps_maps(dev, dev_maps, is_rxqs_map);
80d19669 2373
f28c020f
SD
2374 if (!is_rxqs_map) {
2375 for (i = offset + (count - 1); count--; i--) {
2376 netdev_queue_numa_node_write(
2377 netdev_get_tx_queue(dev, i),
2378 NUMA_NO_NODE);
80d19669 2379 }
80d19669
AN
2380 }
2381}
2382
6234f874
AD
2383static void netif_reset_xps_queues(struct net_device *dev, u16 offset,
2384 u16 count)
10cdc3f3 2385{
80d19669 2386 const unsigned long *possible_mask = NULL;
10cdc3f3 2387 struct xps_dev_maps *dev_maps;
80d19669 2388 unsigned int nr_ids;
10cdc3f3 2389
04157469
AN
2390 if (!static_key_false(&xps_needed))
2391 return;
10cdc3f3 2392
4d99f660 2393 cpus_read_lock();
04157469 2394 mutex_lock(&xps_map_mutex);
10cdc3f3 2395
04157469
AN
2396 if (static_key_false(&xps_rxqs_needed)) {
2397 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2398 if (dev_maps) {
2399 nr_ids = dev->num_rx_queues;
2400 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids,
2401 offset, count, true);
2402 }
537c00de
AD
2403 }
2404
80d19669
AN
2405 dev_maps = xmap_dereference(dev->xps_cpus_map);
2406 if (!dev_maps)
2407 goto out_no_maps;
2408
2409 if (num_possible_cpus() > 1)
2410 possible_mask = cpumask_bits(cpu_possible_mask);
2411 nr_ids = nr_cpu_ids;
2412 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids, offset, count,
2413 false);
024e9679 2414
537c00de
AD
2415out_no_maps:
2416 mutex_unlock(&xps_map_mutex);
4d99f660 2417 cpus_read_unlock();
537c00de
AD
2418}
2419
6234f874
AD
2420static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
2421{
2422 netif_reset_xps_queues(dev, index, dev->num_tx_queues - index);
2423}
2424
80d19669
AN
2425static struct xps_map *expand_xps_map(struct xps_map *map, int attr_index,
2426 u16 index, bool is_rxqs_map)
01c5f864
AD
2427{
2428 struct xps_map *new_map;
2429 int alloc_len = XPS_MIN_MAP_ALLOC;
2430 int i, pos;
2431
2432 for (pos = 0; map && pos < map->len; pos++) {
2433 if (map->queues[pos] != index)
2434 continue;
2435 return map;
2436 }
2437
80d19669 2438 /* Need to add tx-queue to this CPU's/rx-queue's existing map */
01c5f864
AD
2439 if (map) {
2440 if (pos < map->alloc_len)
2441 return map;
2442
2443 alloc_len = map->alloc_len * 2;
2444 }
2445
80d19669
AN
2446 /* Need to allocate new map to store tx-queue on this CPU's/rx-queue's
2447 * map
2448 */
2449 if (is_rxqs_map)
2450 new_map = kzalloc(XPS_MAP_SIZE(alloc_len), GFP_KERNEL);
2451 else
2452 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2453 cpu_to_node(attr_index));
01c5f864
AD
2454 if (!new_map)
2455 return NULL;
2456
2457 for (i = 0; i < pos; i++)
2458 new_map->queues[i] = map->queues[i];
2459 new_map->alloc_len = alloc_len;
2460 new_map->len = pos;
2461
2462 return new_map;
2463}
2464
4d99f660 2465/* Must be called under cpus_read_lock */
80d19669
AN
2466int __netif_set_xps_queue(struct net_device *dev, const unsigned long *mask,
2467 u16 index, bool is_rxqs_map)
537c00de 2468{
80d19669 2469 const unsigned long *online_mask = NULL, *possible_mask = NULL;
01c5f864 2470 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
80d19669 2471 int i, j, tci, numa_node_id = -2;
184c449f 2472 int maps_sz, num_tc = 1, tc = 0;
537c00de 2473 struct xps_map *map, *new_map;
01c5f864 2474 bool active = false;
80d19669 2475 unsigned int nr_ids;
537c00de 2476
184c449f 2477 if (dev->num_tc) {
ffcfe25b 2478 /* Do not allow XPS on subordinate device directly */
184c449f 2479 num_tc = dev->num_tc;
ffcfe25b
AD
2480 if (num_tc < 0)
2481 return -EINVAL;
2482
2483 /* If queue belongs to subordinate dev use its map */
2484 dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
2485
184c449f
AD
2486 tc = netdev_txq_to_tc(dev, index);
2487 if (tc < 0)
2488 return -EINVAL;
2489 }
2490
537c00de 2491 mutex_lock(&xps_map_mutex);
80d19669
AN
2492 if (is_rxqs_map) {
2493 maps_sz = XPS_RXQ_DEV_MAPS_SIZE(num_tc, dev->num_rx_queues);
2494 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2495 nr_ids = dev->num_rx_queues;
2496 } else {
2497 maps_sz = XPS_CPU_DEV_MAPS_SIZE(num_tc);
2498 if (num_possible_cpus() > 1) {
2499 online_mask = cpumask_bits(cpu_online_mask);
2500 possible_mask = cpumask_bits(cpu_possible_mask);
2501 }
2502 dev_maps = xmap_dereference(dev->xps_cpus_map);
2503 nr_ids = nr_cpu_ids;
2504 }
537c00de 2505
80d19669
AN
2506 if (maps_sz < L1_CACHE_BYTES)
2507 maps_sz = L1_CACHE_BYTES;
537c00de 2508
01c5f864 2509 /* allocate memory for queue storage */
80d19669
AN
2510 for (j = -1; j = netif_attrmask_next_and(j, online_mask, mask, nr_ids),
2511 j < nr_ids;) {
01c5f864
AD
2512 if (!new_dev_maps)
2513 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
2bb60cb9
AD
2514 if (!new_dev_maps) {
2515 mutex_unlock(&xps_map_mutex);
01c5f864 2516 return -ENOMEM;
2bb60cb9 2517 }
01c5f864 2518
80d19669
AN
2519 tci = j * num_tc + tc;
2520 map = dev_maps ? xmap_dereference(dev_maps->attr_map[tci]) :
01c5f864
AD
2521 NULL;
2522
80d19669 2523 map = expand_xps_map(map, j, index, is_rxqs_map);
01c5f864
AD
2524 if (!map)
2525 goto error;
2526
80d19669 2527 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
01c5f864
AD
2528 }
2529
2530 if (!new_dev_maps)
2531 goto out_no_new_maps;
2532
867d0ad4
SD
2533 if (!dev_maps) {
2534 /* Increment static keys at most once per type */
2535 static_key_slow_inc_cpuslocked(&xps_needed);
2536 if (is_rxqs_map)
2537 static_key_slow_inc_cpuslocked(&xps_rxqs_needed);
2538 }
04157469 2539
80d19669
AN
2540 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2541 j < nr_ids;) {
184c449f 2542 /* copy maps belonging to foreign traffic classes */
80d19669 2543 for (i = tc, tci = j * num_tc; dev_maps && i--; tci++) {
184c449f 2544 /* fill in the new device map from the old device map */
80d19669
AN
2545 map = xmap_dereference(dev_maps->attr_map[tci]);
2546 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
184c449f
AD
2547 }
2548
2549 /* We need to explicitly update tci as prevous loop
2550 * could break out early if dev_maps is NULL.
2551 */
80d19669 2552 tci = j * num_tc + tc;
184c449f 2553
80d19669
AN
2554 if (netif_attr_test_mask(j, mask, nr_ids) &&
2555 netif_attr_test_online(j, online_mask, nr_ids)) {
2556 /* add tx-queue to CPU/rx-queue maps */
01c5f864
AD
2557 int pos = 0;
2558
80d19669 2559 map = xmap_dereference(new_dev_maps->attr_map[tci]);
01c5f864
AD
2560 while ((pos < map->len) && (map->queues[pos] != index))
2561 pos++;
2562
2563 if (pos == map->len)
2564 map->queues[map->len++] = index;
537c00de 2565#ifdef CONFIG_NUMA
80d19669
AN
2566 if (!is_rxqs_map) {
2567 if (numa_node_id == -2)
2568 numa_node_id = cpu_to_node(j);
2569 else if (numa_node_id != cpu_to_node(j))
2570 numa_node_id = -1;
2571 }
537c00de 2572#endif
01c5f864
AD
2573 } else if (dev_maps) {
2574 /* fill in the new device map from the old device map */
80d19669
AN
2575 map = xmap_dereference(dev_maps->attr_map[tci]);
2576 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
537c00de 2577 }
01c5f864 2578
184c449f
AD
2579 /* copy maps belonging to foreign traffic classes */
2580 for (i = num_tc - tc, tci++; dev_maps && --i; tci++) {
2581 /* fill in the new device map from the old device map */
80d19669
AN
2582 map = xmap_dereference(dev_maps->attr_map[tci]);
2583 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
184c449f 2584 }
537c00de
AD
2585 }
2586
80d19669
AN
2587 if (is_rxqs_map)
2588 rcu_assign_pointer(dev->xps_rxqs_map, new_dev_maps);
2589 else
2590 rcu_assign_pointer(dev->xps_cpus_map, new_dev_maps);
01c5f864 2591
537c00de 2592 /* Cleanup old maps */
184c449f
AD
2593 if (!dev_maps)
2594 goto out_no_old_maps;
2595
80d19669
AN
2596 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2597 j < nr_ids;) {
2598 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2599 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
2600 map = xmap_dereference(dev_maps->attr_map[tci]);
01c5f864
AD
2601 if (map && map != new_map)
2602 kfree_rcu(map, rcu);
2603 }
537c00de
AD
2604 }
2605
184c449f
AD
2606 kfree_rcu(dev_maps, rcu);
2607
2608out_no_old_maps:
01c5f864
AD
2609 dev_maps = new_dev_maps;
2610 active = true;
537c00de 2611
01c5f864 2612out_no_new_maps:
80d19669
AN
2613 if (!is_rxqs_map) {
2614 /* update Tx queue numa node */
2615 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2616 (numa_node_id >= 0) ?
2617 numa_node_id : NUMA_NO_NODE);
2618 }
537c00de 2619
01c5f864
AD
2620 if (!dev_maps)
2621 goto out_no_maps;
2622
80d19669
AN
2623 /* removes tx-queue from unused CPUs/rx-queues */
2624 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2625 j < nr_ids;) {
2626 for (i = tc, tci = j * num_tc; i--; tci++)
184c449f 2627 active |= remove_xps_queue(dev_maps, tci, index);
80d19669
AN
2628 if (!netif_attr_test_mask(j, mask, nr_ids) ||
2629 !netif_attr_test_online(j, online_mask, nr_ids))
184c449f
AD
2630 active |= remove_xps_queue(dev_maps, tci, index);
2631 for (i = num_tc - tc, tci++; --i; tci++)
2632 active |= remove_xps_queue(dev_maps, tci, index);
01c5f864
AD
2633 }
2634
2635 /* free map if not active */
867d0ad4
SD
2636 if (!active)
2637 reset_xps_maps(dev, dev_maps, is_rxqs_map);
01c5f864
AD
2638
2639out_no_maps:
537c00de
AD
2640 mutex_unlock(&xps_map_mutex);
2641
2642 return 0;
2643error:
01c5f864 2644 /* remove any maps that we added */
80d19669
AN
2645 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2646 j < nr_ids;) {
2647 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2648 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
184c449f 2649 map = dev_maps ?
80d19669 2650 xmap_dereference(dev_maps->attr_map[tci]) :
184c449f
AD
2651 NULL;
2652 if (new_map && new_map != map)
2653 kfree(new_map);
2654 }
01c5f864
AD
2655 }
2656
537c00de
AD
2657 mutex_unlock(&xps_map_mutex);
2658
537c00de
AD
2659 kfree(new_dev_maps);
2660 return -ENOMEM;
2661}
4d99f660 2662EXPORT_SYMBOL_GPL(__netif_set_xps_queue);
80d19669
AN
2663
2664int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2665 u16 index)
2666{
4d99f660
AV
2667 int ret;
2668
2669 cpus_read_lock();
2670 ret = __netif_set_xps_queue(dev, cpumask_bits(mask), index, false);
2671 cpus_read_unlock();
2672
2673 return ret;
80d19669 2674}
537c00de
AD
2675EXPORT_SYMBOL(netif_set_xps_queue);
2676
2677#endif
ffcfe25b
AD
2678static void netdev_unbind_all_sb_channels(struct net_device *dev)
2679{
2680 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2681
2682 /* Unbind any subordinate channels */
2683 while (txq-- != &dev->_tx[0]) {
2684 if (txq->sb_dev)
2685 netdev_unbind_sb_channel(dev, txq->sb_dev);
2686 }
2687}
2688
9cf1f6a8
AD
2689void netdev_reset_tc(struct net_device *dev)
2690{
6234f874
AD
2691#ifdef CONFIG_XPS
2692 netif_reset_xps_queues_gt(dev, 0);
2693#endif
ffcfe25b
AD
2694 netdev_unbind_all_sb_channels(dev);
2695
2696 /* Reset TC configuration of device */
9cf1f6a8
AD
2697 dev->num_tc = 0;
2698 memset(dev->tc_to_txq, 0, sizeof(dev->tc_to_txq));
2699 memset(dev->prio_tc_map, 0, sizeof(dev->prio_tc_map));
2700}
2701EXPORT_SYMBOL(netdev_reset_tc);
2702
2703int netdev_set_tc_queue(struct net_device *dev, u8 tc, u16 count, u16 offset)
2704{
2705 if (tc >= dev->num_tc)
2706 return -EINVAL;
2707
6234f874
AD
2708#ifdef CONFIG_XPS
2709 netif_reset_xps_queues(dev, offset, count);
2710#endif
9cf1f6a8
AD
2711 dev->tc_to_txq[tc].count = count;
2712 dev->tc_to_txq[tc].offset = offset;
2713 return 0;
2714}
2715EXPORT_SYMBOL(netdev_set_tc_queue);
2716
2717int netdev_set_num_tc(struct net_device *dev, u8 num_tc)
2718{
2719 if (num_tc > TC_MAX_QUEUE)
2720 return -EINVAL;
2721
6234f874
AD
2722#ifdef CONFIG_XPS
2723 netif_reset_xps_queues_gt(dev, 0);
2724#endif
ffcfe25b
AD
2725 netdev_unbind_all_sb_channels(dev);
2726
9cf1f6a8
AD
2727 dev->num_tc = num_tc;
2728 return 0;
2729}
2730EXPORT_SYMBOL(netdev_set_num_tc);
2731
ffcfe25b
AD
2732void netdev_unbind_sb_channel(struct net_device *dev,
2733 struct net_device *sb_dev)
2734{
2735 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2736
2737#ifdef CONFIG_XPS
2738 netif_reset_xps_queues_gt(sb_dev, 0);
2739#endif
2740 memset(sb_dev->tc_to_txq, 0, sizeof(sb_dev->tc_to_txq));
2741 memset(sb_dev->prio_tc_map, 0, sizeof(sb_dev->prio_tc_map));
2742
2743 while (txq-- != &dev->_tx[0]) {
2744 if (txq->sb_dev == sb_dev)
2745 txq->sb_dev = NULL;
2746 }
2747}
2748EXPORT_SYMBOL(netdev_unbind_sb_channel);
2749
2750int netdev_bind_sb_channel_queue(struct net_device *dev,
2751 struct net_device *sb_dev,
2752 u8 tc, u16 count, u16 offset)
2753{
2754 /* Make certain the sb_dev and dev are already configured */
2755 if (sb_dev->num_tc >= 0 || tc >= dev->num_tc)
2756 return -EINVAL;
2757
2758 /* We cannot hand out queues we don't have */
2759 if ((offset + count) > dev->real_num_tx_queues)
2760 return -EINVAL;
2761
2762 /* Record the mapping */
2763 sb_dev->tc_to_txq[tc].count = count;
2764 sb_dev->tc_to_txq[tc].offset = offset;
2765
2766 /* Provide a way for Tx queue to find the tc_to_txq map or
2767 * XPS map for itself.
2768 */
2769 while (count--)
2770 netdev_get_tx_queue(dev, count + offset)->sb_dev = sb_dev;
2771
2772 return 0;
2773}
2774EXPORT_SYMBOL(netdev_bind_sb_channel_queue);
2775
2776int netdev_set_sb_channel(struct net_device *dev, u16 channel)
2777{
2778 /* Do not use a multiqueue device to represent a subordinate channel */
2779 if (netif_is_multiqueue(dev))
2780 return -ENODEV;
2781
2782 /* We allow channels 1 - 32767 to be used for subordinate channels.
2783 * Channel 0 is meant to be "native" mode and used only to represent
2784 * the main root device. We allow writing 0 to reset the device back
2785 * to normal mode after being used as a subordinate channel.
2786 */
2787 if (channel > S16_MAX)
2788 return -EINVAL;
2789
2790 dev->num_tc = -channel;
2791
2792 return 0;
2793}
2794EXPORT_SYMBOL(netdev_set_sb_channel);
2795
f0796d5c
JF
2796/*
2797 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
3a053b1a 2798 * greater than real_num_tx_queues stale skbs on the qdisc must be flushed.
f0796d5c 2799 */
e6484930 2800int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
f0796d5c 2801{
ac5b7019 2802 bool disabling;
1d24eb48
TH
2803 int rc;
2804
ac5b7019
JK
2805 disabling = txq < dev->real_num_tx_queues;
2806
e6484930
TH
2807 if (txq < 1 || txq > dev->num_tx_queues)
2808 return -EINVAL;
f0796d5c 2809
5c56580b
BH
2810 if (dev->reg_state == NETREG_REGISTERED ||
2811 dev->reg_state == NETREG_UNREGISTERING) {
e6484930
TH
2812 ASSERT_RTNL();
2813
1d24eb48
TH
2814 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2815 txq);
bf264145
TH
2816 if (rc)
2817 return rc;
2818
4f57c087
JF
2819 if (dev->num_tc)
2820 netif_setup_tc(dev, txq);
2821
ac5b7019
JK
2822 dev->real_num_tx_queues = txq;
2823
2824 if (disabling) {
2825 synchronize_net();
e6484930 2826 qdisc_reset_all_tx_gt(dev, txq);
024e9679
AD
2827#ifdef CONFIG_XPS
2828 netif_reset_xps_queues_gt(dev, txq);
2829#endif
2830 }
ac5b7019
JK
2831 } else {
2832 dev->real_num_tx_queues = txq;
f0796d5c 2833 }
e6484930 2834
e6484930 2835 return 0;
f0796d5c
JF
2836}
2837EXPORT_SYMBOL(netif_set_real_num_tx_queues);
56079431 2838
a953be53 2839#ifdef CONFIG_SYSFS
62fe0b40
BH
2840/**
2841 * netif_set_real_num_rx_queues - set actual number of RX queues used
2842 * @dev: Network device
2843 * @rxq: Actual number of RX queues
2844 *
2845 * This must be called either with the rtnl_lock held or before
2846 * registration of the net device. Returns 0 on success, or a
4e7f7951
BH
2847 * negative error code. If called before registration, it always
2848 * succeeds.
62fe0b40
BH
2849 */
2850int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2851{
2852 int rc;
2853
bd25fa7b
TH
2854 if (rxq < 1 || rxq > dev->num_rx_queues)
2855 return -EINVAL;
2856
62fe0b40
BH
2857 if (dev->reg_state == NETREG_REGISTERED) {
2858 ASSERT_RTNL();
2859
62fe0b40
BH
2860 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2861 rxq);
2862 if (rc)
2863 return rc;
62fe0b40
BH
2864 }
2865
2866 dev->real_num_rx_queues = rxq;
2867 return 0;
2868}
2869EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2870#endif
2871
2c53040f
BH
2872/**
2873 * netif_get_num_default_rss_queues - default number of RSS queues
16917b87
YM
2874 *
2875 * This routine should set an upper limit on the number of RSS queues
2876 * used by default by multiqueue devices.
2877 */
a55b138b 2878int netif_get_num_default_rss_queues(void)
16917b87 2879{
40e4e713
HS
2880 return is_kdump_kernel() ?
2881 1 : min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
16917b87
YM
2882}
2883EXPORT_SYMBOL(netif_get_num_default_rss_queues);
2884
3bcb846c 2885static void __netif_reschedule(struct Qdisc *q)
56079431 2886{
def82a1d
JP
2887 struct softnet_data *sd;
2888 unsigned long flags;
56079431 2889
def82a1d 2890 local_irq_save(flags);
903ceff7 2891 sd = this_cpu_ptr(&softnet_data);
a9cbd588
CG
2892 q->next_sched = NULL;
2893 *sd->output_queue_tailp = q;
2894 sd->output_queue_tailp = &q->next_sched;
def82a1d
JP
2895 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2896 local_irq_restore(flags);
2897}
2898
2899void __netif_schedule(struct Qdisc *q)
2900{
2901 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
2902 __netif_reschedule(q);
56079431
DV
2903}
2904EXPORT_SYMBOL(__netif_schedule);
2905
e6247027
ED
2906struct dev_kfree_skb_cb {
2907 enum skb_free_reason reason;
2908};
2909
2910static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
56079431 2911{
e6247027
ED
2912 return (struct dev_kfree_skb_cb *)skb->cb;
2913}
2914
46e5da40
JF
2915void netif_schedule_queue(struct netdev_queue *txq)
2916{
2917 rcu_read_lock();
5be5515a 2918 if (!netif_xmit_stopped(txq)) {
46e5da40
JF
2919 struct Qdisc *q = rcu_dereference(txq->qdisc);
2920
2921 __netif_schedule(q);
2922 }
2923 rcu_read_unlock();
2924}
2925EXPORT_SYMBOL(netif_schedule_queue);
2926
46e5da40
JF
2927void netif_tx_wake_queue(struct netdev_queue *dev_queue)
2928{
2929 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
2930 struct Qdisc *q;
2931
2932 rcu_read_lock();
2933 q = rcu_dereference(dev_queue->qdisc);
2934 __netif_schedule(q);
2935 rcu_read_unlock();
2936 }
2937}
2938EXPORT_SYMBOL(netif_tx_wake_queue);
2939
e6247027 2940void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
56079431 2941{
e6247027 2942 unsigned long flags;
56079431 2943
9899886d
MJ
2944 if (unlikely(!skb))
2945 return;
2946
63354797 2947 if (likely(refcount_read(&skb->users) == 1)) {
e6247027 2948 smp_rmb();
63354797
RE
2949 refcount_set(&skb->users, 0);
2950 } else if (likely(!refcount_dec_and_test(&skb->users))) {
e6247027 2951 return;
bea3348e 2952 }
e6247027
ED
2953 get_kfree_skb_cb(skb)->reason = reason;
2954 local_irq_save(flags);
2955 skb->next = __this_cpu_read(softnet_data.completion_queue);
2956 __this_cpu_write(softnet_data.completion_queue, skb);
2957 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2958 local_irq_restore(flags);
56079431 2959}
e6247027 2960EXPORT_SYMBOL(__dev_kfree_skb_irq);
56079431 2961
e6247027 2962void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
56079431
DV
2963{
2964 if (in_irq() || irqs_disabled())
e6247027 2965 __dev_kfree_skb_irq(skb, reason);
56079431
DV
2966 else
2967 dev_kfree_skb(skb);
2968}
e6247027 2969EXPORT_SYMBOL(__dev_kfree_skb_any);
56079431
DV
2970
2971
bea3348e
SH
2972/**
2973 * netif_device_detach - mark device as removed
2974 * @dev: network device
2975 *
2976 * Mark device as removed from system and therefore no longer available.
2977 */
56079431
DV
2978void netif_device_detach(struct net_device *dev)
2979{
2980 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
2981 netif_running(dev)) {
d543103a 2982 netif_tx_stop_all_queues(dev);
56079431
DV
2983 }
2984}
2985EXPORT_SYMBOL(netif_device_detach);
2986
bea3348e
SH
2987/**
2988 * netif_device_attach - mark device as attached
2989 * @dev: network device
2990 *
2991 * Mark device as attached from system and restart if needed.
2992 */
56079431
DV
2993void netif_device_attach(struct net_device *dev)
2994{
2995 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
2996 netif_running(dev)) {
d543103a 2997 netif_tx_wake_all_queues(dev);
4ec93edb 2998 __netdev_watchdog_up(dev);
56079431
DV
2999 }
3000}
3001EXPORT_SYMBOL(netif_device_attach);
3002
5605c762
JP
3003/*
3004 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
3005 * to be used as a distribution range.
3006 */
eadec877
AD
3007static u16 skb_tx_hash(const struct net_device *dev,
3008 const struct net_device *sb_dev,
3009 struct sk_buff *skb)
5605c762
JP
3010{
3011 u32 hash;
3012 u16 qoffset = 0;
1b837d48 3013 u16 qcount = dev->real_num_tx_queues;
5605c762 3014
eadec877
AD
3015 if (dev->num_tc) {
3016 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
3017
3018 qoffset = sb_dev->tc_to_txq[tc].offset;
3019 qcount = sb_dev->tc_to_txq[tc].count;
3020 }
3021
5605c762
JP
3022 if (skb_rx_queue_recorded(skb)) {
3023 hash = skb_get_rx_queue(skb);
1b837d48
AD
3024 while (unlikely(hash >= qcount))
3025 hash -= qcount;
eadec877 3026 return hash + qoffset;
5605c762
JP
3027 }
3028
3029 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
3030}
5605c762 3031
36c92474
BH
3032static void skb_warn_bad_offload(const struct sk_buff *skb)
3033{
84d15ae5 3034 static const netdev_features_t null_features;
36c92474 3035 struct net_device *dev = skb->dev;
88ad4175 3036 const char *name = "";
36c92474 3037
c846ad9b
BG
3038 if (!net_ratelimit())
3039 return;
3040
88ad4175
BM
3041 if (dev) {
3042 if (dev->dev.parent)
3043 name = dev_driver_string(dev->dev.parent);
3044 else
3045 name = netdev_name(dev);
3046 }
6413139d
WB
3047 skb_dump(KERN_WARNING, skb, false);
3048 WARN(1, "%s: caps=(%pNF, %pNF)\n",
88ad4175 3049 name, dev ? &dev->features : &null_features,
6413139d 3050 skb->sk ? &skb->sk->sk_route_caps : &null_features);
36c92474
BH
3051}
3052
1da177e4
LT
3053/*
3054 * Invalidate hardware checksum when packet is to be mangled, and
3055 * complete checksum manually on outgoing path.
3056 */
84fa7933 3057int skb_checksum_help(struct sk_buff *skb)
1da177e4 3058{
d3bc23e7 3059 __wsum csum;
663ead3b 3060 int ret = 0, offset;
1da177e4 3061
84fa7933 3062 if (skb->ip_summed == CHECKSUM_COMPLETE)
a430a43d
HX
3063 goto out_set_summed;
3064
3065 if (unlikely(skb_shinfo(skb)->gso_size)) {
36c92474
BH
3066 skb_warn_bad_offload(skb);
3067 return -EINVAL;
1da177e4
LT
3068 }
3069
cef401de
ED
3070 /* Before computing a checksum, we should make sure no frag could
3071 * be modified by an external entity : checksum could be wrong.
3072 */
3073 if (skb_has_shared_frag(skb)) {
3074 ret = __skb_linearize(skb);
3075 if (ret)
3076 goto out;
3077 }
3078
55508d60 3079 offset = skb_checksum_start_offset(skb);
a030847e
HX
3080 BUG_ON(offset >= skb_headlen(skb));
3081 csum = skb_checksum(skb, offset, skb->len - offset, 0);
3082
3083 offset += skb->csum_offset;
3084 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
3085
8211fbfa
HK
3086 ret = skb_ensure_writable(skb, offset + sizeof(__sum16));
3087 if (ret)
3088 goto out;
1da177e4 3089
4f2e4ad5 3090 *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
a430a43d 3091out_set_summed:
1da177e4 3092 skb->ip_summed = CHECKSUM_NONE;
4ec93edb 3093out:
1da177e4
LT
3094 return ret;
3095}
d1b19dff 3096EXPORT_SYMBOL(skb_checksum_help);
1da177e4 3097
b72b5bf6
DC
3098int skb_crc32c_csum_help(struct sk_buff *skb)
3099{
3100 __le32 crc32c_csum;
3101 int ret = 0, offset, start;
3102
3103 if (skb->ip_summed != CHECKSUM_PARTIAL)
3104 goto out;
3105
3106 if (unlikely(skb_is_gso(skb)))
3107 goto out;
3108
3109 /* Before computing a checksum, we should make sure no frag could
3110 * be modified by an external entity : checksum could be wrong.
3111 */
3112 if (unlikely(skb_has_shared_frag(skb))) {
3113 ret = __skb_linearize(skb);
3114 if (ret)
3115 goto out;
3116 }
3117 start = skb_checksum_start_offset(skb);
3118 offset = start + offsetof(struct sctphdr, checksum);
3119 if (WARN_ON_ONCE(offset >= skb_headlen(skb))) {
3120 ret = -EINVAL;
3121 goto out;
3122 }
8211fbfa
HK
3123
3124 ret = skb_ensure_writable(skb, offset + sizeof(__le32));
3125 if (ret)
3126 goto out;
3127
b72b5bf6
DC
3128 crc32c_csum = cpu_to_le32(~__skb_checksum(skb, start,
3129 skb->len - start, ~(__u32)0,
3130 crc32c_csum_stub));
3131 *(__le32 *)(skb->data + offset) = crc32c_csum;
3132 skb->ip_summed = CHECKSUM_NONE;
dba00306 3133 skb->csum_not_inet = 0;
b72b5bf6
DC
3134out:
3135 return ret;
3136}
3137
53d6471c 3138__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
f6a78bfc 3139{
252e3346 3140 __be16 type = skb->protocol;
f6a78bfc 3141
19acc327
PS
3142 /* Tunnel gso handlers can set protocol to ethernet. */
3143 if (type == htons(ETH_P_TEB)) {
3144 struct ethhdr *eth;
3145
3146 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
3147 return 0;
3148
1dfe82eb 3149 eth = (struct ethhdr *)skb->data;
19acc327
PS
3150 type = eth->h_proto;
3151 }
3152
d4bcef3f 3153 return __vlan_get_protocol(skb, type, depth);
ec5f0615
PS
3154}
3155
3156/**
3157 * skb_mac_gso_segment - mac layer segmentation handler.
3158 * @skb: buffer to segment
3159 * @features: features for the output path (see dev->features)
3160 */
3161struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
3162 netdev_features_t features)
3163{
3164 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
3165 struct packet_offload *ptype;
53d6471c
VY
3166 int vlan_depth = skb->mac_len;
3167 __be16 type = skb_network_protocol(skb, &vlan_depth);
ec5f0615
PS
3168
3169 if (unlikely(!type))
3170 return ERR_PTR(-EINVAL);
3171
53d6471c 3172 __skb_pull(skb, vlan_depth);
f6a78bfc
HX
3173
3174 rcu_read_lock();
22061d80 3175 list_for_each_entry_rcu(ptype, &offload_base, list) {
f191a1d1 3176 if (ptype->type == type && ptype->callbacks.gso_segment) {
f191a1d1 3177 segs = ptype->callbacks.gso_segment(skb, features);
f6a78bfc
HX
3178 break;
3179 }
3180 }
3181 rcu_read_unlock();
3182
98e399f8 3183 __skb_push(skb, skb->data - skb_mac_header(skb));
576a30eb 3184
f6a78bfc
HX
3185 return segs;
3186}
05e8ef4a
PS
3187EXPORT_SYMBOL(skb_mac_gso_segment);
3188
3189
3190/* openvswitch calls this on rx path, so we need a different check.
3191 */
3192static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
3193{
3194 if (tx_path)
0c19f846
WB
3195 return skb->ip_summed != CHECKSUM_PARTIAL &&
3196 skb->ip_summed != CHECKSUM_UNNECESSARY;
6e7bc478
ED
3197
3198 return skb->ip_summed == CHECKSUM_NONE;
05e8ef4a
PS
3199}
3200
3201/**
3202 * __skb_gso_segment - Perform segmentation on skb.
3203 * @skb: buffer to segment
3204 * @features: features for the output path (see dev->features)
3205 * @tx_path: whether it is called in TX path
3206 *
3207 * This function segments the given skb and returns a list of segments.
3208 *
3209 * It may return NULL if the skb requires no segmentation. This is
3210 * only possible when GSO is used for verifying header integrity.
9207f9d4
KK
3211 *
3212 * Segmentation preserves SKB_SGO_CB_OFFSET bytes of previous skb cb.
05e8ef4a
PS
3213 */
3214struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
3215 netdev_features_t features, bool tx_path)
3216{
b2504a5d
ED
3217 struct sk_buff *segs;
3218
05e8ef4a
PS
3219 if (unlikely(skb_needs_check(skb, tx_path))) {
3220 int err;
3221
b2504a5d 3222 /* We're going to init ->check field in TCP or UDP header */
a40e0a66 3223 err = skb_cow_head(skb, 0);
3224 if (err < 0)
05e8ef4a
PS
3225 return ERR_PTR(err);
3226 }
3227
802ab55a
AD
3228 /* Only report GSO partial support if it will enable us to
3229 * support segmentation on this frame without needing additional
3230 * work.
3231 */
3232 if (features & NETIF_F_GSO_PARTIAL) {
3233 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
3234 struct net_device *dev = skb->dev;
3235
3236 partial_features |= dev->features & dev->gso_partial_features;
3237 if (!skb_gso_ok(skb, features | partial_features))
3238 features &= ~NETIF_F_GSO_PARTIAL;
3239 }
3240
9207f9d4
KK
3241 BUILD_BUG_ON(SKB_SGO_CB_OFFSET +
3242 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
3243
68c33163 3244 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
3347c960
ED
3245 SKB_GSO_CB(skb)->encap_level = 0;
3246
05e8ef4a
PS
3247 skb_reset_mac_header(skb);
3248 skb_reset_mac_len(skb);
3249
b2504a5d
ED
3250 segs = skb_mac_gso_segment(skb, features);
3251
8d74e9f8 3252 if (unlikely(skb_needs_check(skb, tx_path) && !IS_ERR(segs)))
b2504a5d
ED
3253 skb_warn_bad_offload(skb);
3254
3255 return segs;
05e8ef4a 3256}
12b0004d 3257EXPORT_SYMBOL(__skb_gso_segment);
f6a78bfc 3258
fb286bb2
HX
3259/* Take action when hardware reception checksum errors are detected. */
3260#ifdef CONFIG_BUG
7fe50ac8 3261void netdev_rx_csum_fault(struct net_device *dev, struct sk_buff *skb)
fb286bb2
HX
3262{
3263 if (net_ratelimit()) {
7b6cd1ce 3264 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
6413139d 3265 skb_dump(KERN_ERR, skb, true);
fb286bb2
HX
3266 dump_stack();
3267 }
3268}
3269EXPORT_SYMBOL(netdev_rx_csum_fault);
3270#endif
3271
ab74cfeb 3272/* XXX: check that highmem exists at all on the given machine. */
c1e756bf 3273static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
1da177e4 3274{
3d3a8533 3275#ifdef CONFIG_HIGHMEM
1da177e4 3276 int i;
f4563a75 3277
5acbbd42 3278 if (!(dev->features & NETIF_F_HIGHDMA)) {
ea2ab693
IC
3279 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3280 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
f4563a75 3281
ea2ab693 3282 if (PageHighMem(skb_frag_page(frag)))
5acbbd42 3283 return 1;
ea2ab693 3284 }
5acbbd42 3285 }
3d3a8533 3286#endif
1da177e4
LT
3287 return 0;
3288}
1da177e4 3289
3b392ddb
SH
3290/* If MPLS offload request, verify we are testing hardware MPLS features
3291 * instead of standard features for the netdev.
3292 */
d0edc7bf 3293#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
3b392ddb
SH
3294static netdev_features_t net_mpls_features(struct sk_buff *skb,
3295 netdev_features_t features,
3296 __be16 type)
3297{
25cd9ba0 3298 if (eth_p_mpls(type))
3b392ddb
SH
3299 features &= skb->dev->mpls_features;
3300
3301 return features;
3302}
3303#else
3304static netdev_features_t net_mpls_features(struct sk_buff *skb,
3305 netdev_features_t features,
3306 __be16 type)
3307{
3308 return features;
3309}
3310#endif
3311
c8f44aff 3312static netdev_features_t harmonize_features(struct sk_buff *skb,
c1e756bf 3313 netdev_features_t features)
f01a5236 3314{
53d6471c 3315 int tmp;
3b392ddb
SH
3316 __be16 type;
3317
3318 type = skb_network_protocol(skb, &tmp);
3319 features = net_mpls_features(skb, features, type);
53d6471c 3320
c0d680e5 3321 if (skb->ip_summed != CHECKSUM_NONE &&
3b392ddb 3322 !can_checksum_protocol(features, type)) {
996e8021 3323 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
f01a5236 3324 }
7be2c82c
ED
3325 if (illegal_highdma(skb->dev, skb))
3326 features &= ~NETIF_F_SG;
f01a5236
JG
3327
3328 return features;
3329}
3330
e38f3025
TM
3331netdev_features_t passthru_features_check(struct sk_buff *skb,
3332 struct net_device *dev,
3333 netdev_features_t features)
3334{
3335 return features;
3336}
3337EXPORT_SYMBOL(passthru_features_check);
3338
7ce23672 3339static netdev_features_t dflt_features_check(struct sk_buff *skb,
8cb65d00
TM
3340 struct net_device *dev,
3341 netdev_features_t features)
3342{
3343 return vlan_features_check(skb, features);
3344}
3345
cbc53e08
AD
3346static netdev_features_t gso_features_check(const struct sk_buff *skb,
3347 struct net_device *dev,
3348 netdev_features_t features)
3349{
3350 u16 gso_segs = skb_shinfo(skb)->gso_segs;
3351
3352 if (gso_segs > dev->gso_max_segs)
3353 return features & ~NETIF_F_GSO_MASK;
3354
802ab55a
AD
3355 /* Support for GSO partial features requires software
3356 * intervention before we can actually process the packets
3357 * so we need to strip support for any partial features now
3358 * and we can pull them back in after we have partially
3359 * segmented the frame.
3360 */
3361 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
3362 features &= ~dev->gso_partial_features;
3363
3364 /* Make sure to clear the IPv4 ID mangling feature if the
3365 * IPv4 header has the potential to be fragmented.
cbc53e08
AD
3366 */
3367 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
3368 struct iphdr *iph = skb->encapsulation ?
3369 inner_ip_hdr(skb) : ip_hdr(skb);
3370
3371 if (!(iph->frag_off & htons(IP_DF)))
3372 features &= ~NETIF_F_TSO_MANGLEID;
3373 }
3374
3375 return features;
3376}
3377
c1e756bf 3378netdev_features_t netif_skb_features(struct sk_buff *skb)
58e998c6 3379{
5f35227e 3380 struct net_device *dev = skb->dev;
fcbeb976 3381 netdev_features_t features = dev->features;
58e998c6 3382
cbc53e08
AD
3383 if (skb_is_gso(skb))
3384 features = gso_features_check(skb, dev, features);
30b678d8 3385
5f35227e
JG
3386 /* If encapsulation offload request, verify we are testing
3387 * hardware encapsulation features instead of standard
3388 * features for the netdev
3389 */
3390 if (skb->encapsulation)
3391 features &= dev->hw_enc_features;
3392
f5a7fb88
TM
3393 if (skb_vlan_tagged(skb))
3394 features = netdev_intersect_features(features,
3395 dev->vlan_features |
3396 NETIF_F_HW_VLAN_CTAG_TX |
3397 NETIF_F_HW_VLAN_STAG_TX);
f01a5236 3398
5f35227e
JG
3399 if (dev->netdev_ops->ndo_features_check)
3400 features &= dev->netdev_ops->ndo_features_check(skb, dev,
3401 features);
8cb65d00
TM
3402 else
3403 features &= dflt_features_check(skb, dev, features);
5f35227e 3404
c1e756bf 3405 return harmonize_features(skb, features);
58e998c6 3406}
c1e756bf 3407EXPORT_SYMBOL(netif_skb_features);
58e998c6 3408
2ea25513 3409static int xmit_one(struct sk_buff *skb, struct net_device *dev,
95f6b3dd 3410 struct netdev_queue *txq, bool more)
f6a78bfc 3411{
2ea25513
DM
3412 unsigned int len;
3413 int rc;
00829823 3414
9f9a742d 3415 if (dev_nit_active(dev))
2ea25513 3416 dev_queue_xmit_nit(skb, dev);
fc741216 3417
2ea25513
DM
3418 len = skb->len;
3419 trace_net_dev_start_xmit(skb, dev);
95f6b3dd 3420 rc = netdev_start_xmit(skb, dev, txq, more);
2ea25513 3421 trace_net_dev_xmit(skb, rc, dev, len);
adf30907 3422
2ea25513
DM
3423 return rc;
3424}
7b9c6090 3425
8dcda22a
DM
3426struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
3427 struct netdev_queue *txq, int *ret)
7f2e870f
DM
3428{
3429 struct sk_buff *skb = first;
3430 int rc = NETDEV_TX_OK;
7b9c6090 3431
7f2e870f
DM
3432 while (skb) {
3433 struct sk_buff *next = skb->next;
fc70fb64 3434
a8305bff 3435 skb_mark_not_on_list(skb);
95f6b3dd 3436 rc = xmit_one(skb, dev, txq, next != NULL);
7f2e870f
DM
3437 if (unlikely(!dev_xmit_complete(rc))) {
3438 skb->next = next;
3439 goto out;
3440 }
6afff0ca 3441
7f2e870f 3442 skb = next;
fe60faa5 3443 if (netif_tx_queue_stopped(txq) && skb) {
7f2e870f
DM
3444 rc = NETDEV_TX_BUSY;
3445 break;
9ccb8975 3446 }
7f2e870f 3447 }
9ccb8975 3448
7f2e870f
DM
3449out:
3450 *ret = rc;
3451 return skb;
3452}
b40863c6 3453
1ff0dc94
ED
3454static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
3455 netdev_features_t features)
f6a78bfc 3456{
df8a39de 3457 if (skb_vlan_tag_present(skb) &&
5968250c
JP
3458 !vlan_hw_offload_capable(features, skb->vlan_proto))
3459 skb = __vlan_hwaccel_push_inside(skb);
eae3f88e
DM
3460 return skb;
3461}
f6a78bfc 3462
43c26a1a
DC
3463int skb_csum_hwoffload_help(struct sk_buff *skb,
3464 const netdev_features_t features)
3465{
3466 if (unlikely(skb->csum_not_inet))
3467 return !!(features & NETIF_F_SCTP_CRC) ? 0 :
3468 skb_crc32c_csum_help(skb);
3469
3470 return !!(features & NETIF_F_CSUM_MASK) ? 0 : skb_checksum_help(skb);
3471}
3472EXPORT_SYMBOL(skb_csum_hwoffload_help);
3473
f53c7239 3474static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev, bool *again)
eae3f88e
DM
3475{
3476 netdev_features_t features;
f6a78bfc 3477
eae3f88e
DM
3478 features = netif_skb_features(skb);
3479 skb = validate_xmit_vlan(skb, features);
3480 if (unlikely(!skb))
3481 goto out_null;
7b9c6090 3482
ebf4e808
IL
3483 skb = sk_validate_xmit_skb(skb, dev);
3484 if (unlikely(!skb))
3485 goto out_null;
3486
8b86a61d 3487 if (netif_needs_gso(skb, features)) {
ce93718f
DM
3488 struct sk_buff *segs;
3489
3490 segs = skb_gso_segment(skb, features);
cecda693 3491 if (IS_ERR(segs)) {
af6dabc9 3492 goto out_kfree_skb;
cecda693
JW
3493 } else if (segs) {
3494 consume_skb(skb);
3495 skb = segs;
f6a78bfc 3496 }
eae3f88e
DM
3497 } else {
3498 if (skb_needs_linearize(skb, features) &&
3499 __skb_linearize(skb))
3500 goto out_kfree_skb;
4ec93edb 3501
eae3f88e
DM
3502 /* If packet is not checksummed and device does not
3503 * support checksumming for this protocol, complete
3504 * checksumming here.
3505 */
3506 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3507 if (skb->encapsulation)
3508 skb_set_inner_transport_header(skb,
3509 skb_checksum_start_offset(skb));
3510 else
3511 skb_set_transport_header(skb,
3512 skb_checksum_start_offset(skb));
43c26a1a 3513 if (skb_csum_hwoffload_help(skb, features))
eae3f88e 3514 goto out_kfree_skb;
7b9c6090 3515 }
0c772159 3516 }
7b9c6090 3517
f53c7239 3518 skb = validate_xmit_xfrm(skb, features, again);
3dca3f38 3519
eae3f88e 3520 return skb;
fc70fb64 3521
f6a78bfc
HX
3522out_kfree_skb:
3523 kfree_skb(skb);
eae3f88e 3524out_null:
d21fd63e 3525 atomic_long_inc(&dev->tx_dropped);
eae3f88e
DM
3526 return NULL;
3527}
6afff0ca 3528
f53c7239 3529struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev, bool *again)
55a93b3e
ED
3530{
3531 struct sk_buff *next, *head = NULL, *tail;
3532
bec3cfdc 3533 for (; skb != NULL; skb = next) {
55a93b3e 3534 next = skb->next;
a8305bff 3535 skb_mark_not_on_list(skb);
bec3cfdc
ED
3536
3537 /* in case skb wont be segmented, point to itself */
3538 skb->prev = skb;
3539
f53c7239 3540 skb = validate_xmit_skb(skb, dev, again);
bec3cfdc
ED
3541 if (!skb)
3542 continue;
55a93b3e 3543
bec3cfdc
ED
3544 if (!head)
3545 head = skb;
3546 else
3547 tail->next = skb;
3548 /* If skb was segmented, skb->prev points to
3549 * the last segment. If not, it still contains skb.
3550 */
3551 tail = skb->prev;
55a93b3e
ED
3552 }
3553 return head;
f6a78bfc 3554}
104ba78c 3555EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
f6a78bfc 3556
1def9238
ED
3557static void qdisc_pkt_len_init(struct sk_buff *skb)
3558{
3559 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3560
3561 qdisc_skb_cb(skb)->pkt_len = skb->len;
3562
3563 /* To get more precise estimation of bytes sent on wire,
3564 * we add to pkt_len the headers size of all segments
3565 */
a0dce875 3566 if (shinfo->gso_size && skb_transport_header_was_set(skb)) {
757b8b1d 3567 unsigned int hdr_len;
15e5a030 3568 u16 gso_segs = shinfo->gso_segs;
1def9238 3569
757b8b1d
ED
3570 /* mac layer + network layer */
3571 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3572
3573 /* + transport layer */
7c68d1a6
ED
3574 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
3575 const struct tcphdr *th;
3576 struct tcphdr _tcphdr;
3577
3578 th = skb_header_pointer(skb, skb_transport_offset(skb),
3579 sizeof(_tcphdr), &_tcphdr);
3580 if (likely(th))
3581 hdr_len += __tcp_hdrlen(th);
3582 } else {
3583 struct udphdr _udphdr;
3584
3585 if (skb_header_pointer(skb, skb_transport_offset(skb),
3586 sizeof(_udphdr), &_udphdr))
3587 hdr_len += sizeof(struct udphdr);
3588 }
15e5a030
JW
3589
3590 if (shinfo->gso_type & SKB_GSO_DODGY)
3591 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3592 shinfo->gso_size);
3593
3594 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
1def9238
ED
3595 }
3596}
3597
bbd8a0d3
KK
3598static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3599 struct net_device *dev,
3600 struct netdev_queue *txq)
3601{
3602 spinlock_t *root_lock = qdisc_lock(q);
520ac30f 3603 struct sk_buff *to_free = NULL;
a2da570d 3604 bool contended;
bbd8a0d3
KK
3605 int rc;
3606
a2da570d 3607 qdisc_calculate_pkt_len(skb, q);
6b3ba914
JF
3608
3609 if (q->flags & TCQ_F_NOLOCK) {
90b2be27 3610 if ((q->flags & TCQ_F_CAN_BYPASS) && READ_ONCE(q->empty) &&
d518d2ed
PA
3611 qdisc_run_begin(q)) {
3612 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED,
3613 &q->state))) {
3614 __qdisc_drop(skb, &to_free);
3615 rc = NET_XMIT_DROP;
3616 goto end_run;
3617 }
ba27b4cd
PA
3618 qdisc_bstats_cpu_update(q, skb);
3619
d518d2ed 3620 rc = NET_XMIT_SUCCESS;
ba27b4cd
PA
3621 if (sch_direct_xmit(skb, q, dev, txq, NULL, true))
3622 __qdisc_run(q);
3623
d518d2ed 3624end_run:
ba27b4cd 3625 qdisc_run_end(q);
6b3ba914
JF
3626 } else {
3627 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
32f7b44d 3628 qdisc_run(q);
6b3ba914
JF
3629 }
3630
3631 if (unlikely(to_free))
3632 kfree_skb_list(to_free);
3633 return rc;
3634 }
3635
79640a4c
ED
3636 /*
3637 * Heuristic to force contended enqueues to serialize on a
3638 * separate lock before trying to get qdisc main lock.
f9eb8aea 3639 * This permits qdisc->running owner to get the lock more
9bf2b8c2 3640 * often and dequeue packets faster.
79640a4c 3641 */
a2da570d 3642 contended = qdisc_is_running(q);
79640a4c
ED
3643 if (unlikely(contended))
3644 spin_lock(&q->busylock);
3645
bbd8a0d3
KK
3646 spin_lock(root_lock);
3647 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
520ac30f 3648 __qdisc_drop(skb, &to_free);
bbd8a0d3
KK
3649 rc = NET_XMIT_DROP;
3650 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
bc135b23 3651 qdisc_run_begin(q)) {
bbd8a0d3
KK
3652 /*
3653 * This is a work-conserving queue; there are no old skbs
3654 * waiting to be sent out; and the qdisc is not running -
3655 * xmit the skb directly.
3656 */
bfe0d029 3657
bfe0d029
ED
3658 qdisc_bstats_update(q, skb);
3659
55a93b3e 3660 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
79640a4c
ED
3661 if (unlikely(contended)) {
3662 spin_unlock(&q->busylock);
3663 contended = false;
3664 }
bbd8a0d3 3665 __qdisc_run(q);
6c148184 3666 }
bbd8a0d3 3667
6c148184 3668 qdisc_run_end(q);
bbd8a0d3
KK
3669 rc = NET_XMIT_SUCCESS;
3670 } else {
520ac30f 3671 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
79640a4c
ED
3672 if (qdisc_run_begin(q)) {
3673 if (unlikely(contended)) {
3674 spin_unlock(&q->busylock);
3675 contended = false;
3676 }
3677 __qdisc_run(q);
6c148184 3678 qdisc_run_end(q);
79640a4c 3679 }
bbd8a0d3
KK
3680 }
3681 spin_unlock(root_lock);
520ac30f
ED
3682 if (unlikely(to_free))
3683 kfree_skb_list(to_free);
79640a4c
ED
3684 if (unlikely(contended))
3685 spin_unlock(&q->busylock);
bbd8a0d3
KK
3686 return rc;
3687}
3688
86f8515f 3689#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
5bc1421e
NH
3690static void skb_update_prio(struct sk_buff *skb)
3691{
4dcb31d4
ED
3692 const struct netprio_map *map;
3693 const struct sock *sk;
3694 unsigned int prioidx;
5bc1421e 3695
4dcb31d4
ED
3696 if (skb->priority)
3697 return;
3698 map = rcu_dereference_bh(skb->dev->priomap);
3699 if (!map)
3700 return;
3701 sk = skb_to_full_sk(skb);
3702 if (!sk)
3703 return;
91c68ce2 3704
4dcb31d4
ED
3705 prioidx = sock_cgroup_prioidx(&sk->sk_cgrp_data);
3706
3707 if (prioidx < map->priomap_len)
3708 skb->priority = map->priomap[prioidx];
5bc1421e
NH
3709}
3710#else
3711#define skb_update_prio(skb)
3712#endif
3713
95603e22
MM
3714/**
3715 * dev_loopback_xmit - loop back @skb
0c4b51f0
EB
3716 * @net: network namespace this loopback is happening in
3717 * @sk: sk needed to be a netfilter okfn
95603e22
MM
3718 * @skb: buffer to transmit
3719 */
0c4b51f0 3720int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
95603e22
MM
3721{
3722 skb_reset_mac_header(skb);
3723 __skb_pull(skb, skb_network_offset(skb));
3724 skb->pkt_type = PACKET_LOOPBACK;
3725 skb->ip_summed = CHECKSUM_UNNECESSARY;
3726 WARN_ON(!skb_dst(skb));
3727 skb_dst_force(skb);
3728 netif_rx_ni(skb);
3729 return 0;
3730}
3731EXPORT_SYMBOL(dev_loopback_xmit);
3732
1f211a1b
DB
3733#ifdef CONFIG_NET_EGRESS
3734static struct sk_buff *
3735sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3736{
46209401 3737 struct mini_Qdisc *miniq = rcu_dereference_bh(dev->miniq_egress);
1f211a1b
DB
3738 struct tcf_result cl_res;
3739
46209401 3740 if (!miniq)
1f211a1b
DB
3741 return skb;
3742
8dc07fdb 3743 /* qdisc_skb_cb(skb)->pkt_len was already set by the caller. */
46209401 3744 mini_qdisc_bstats_cpu_update(miniq, skb);
1f211a1b 3745
46209401 3746 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
1f211a1b
DB
3747 case TC_ACT_OK:
3748 case TC_ACT_RECLASSIFY:
3749 skb->tc_index = TC_H_MIN(cl_res.classid);
3750 break;
3751 case TC_ACT_SHOT:
46209401 3752 mini_qdisc_qstats_cpu_drop(miniq);
1f211a1b 3753 *ret = NET_XMIT_DROP;
7e2c3aea
DB
3754 kfree_skb(skb);
3755 return NULL;
1f211a1b
DB
3756 case TC_ACT_STOLEN:
3757 case TC_ACT_QUEUED:
e25ea21f 3758 case TC_ACT_TRAP:
1f211a1b 3759 *ret = NET_XMIT_SUCCESS;
7e2c3aea 3760 consume_skb(skb);
1f211a1b
DB
3761 return NULL;
3762 case TC_ACT_REDIRECT:
3763 /* No need to push/pop skb's mac_header here on egress! */
3764 skb_do_redirect(skb);
3765 *ret = NET_XMIT_SUCCESS;
3766 return NULL;
3767 default:
3768 break;
3769 }
3770
3771 return skb;
3772}
3773#endif /* CONFIG_NET_EGRESS */
3774
fc9bab24
AN
3775#ifdef CONFIG_XPS
3776static int __get_xps_queue_idx(struct net_device *dev, struct sk_buff *skb,
3777 struct xps_dev_maps *dev_maps, unsigned int tci)
3778{
3779 struct xps_map *map;
3780 int queue_index = -1;
3781
3782 if (dev->num_tc) {
3783 tci *= dev->num_tc;
3784 tci += netdev_get_prio_tc_map(dev, skb->priority);
3785 }
3786
3787 map = rcu_dereference(dev_maps->attr_map[tci]);
3788 if (map) {
3789 if (map->len == 1)
3790 queue_index = map->queues[0];
3791 else
3792 queue_index = map->queues[reciprocal_scale(
3793 skb_get_hash(skb), map->len)];
3794 if (unlikely(queue_index >= dev->real_num_tx_queues))
3795 queue_index = -1;
3796 }
3797 return queue_index;
3798}
3799#endif
3800
eadec877
AD
3801static int get_xps_queue(struct net_device *dev, struct net_device *sb_dev,
3802 struct sk_buff *skb)
638b2a69
JP
3803{
3804#ifdef CONFIG_XPS
3805 struct xps_dev_maps *dev_maps;
fc9bab24 3806 struct sock *sk = skb->sk;
638b2a69
JP
3807 int queue_index = -1;
3808
04157469
AN
3809 if (!static_key_false(&xps_needed))
3810 return -1;
3811
638b2a69 3812 rcu_read_lock();
fc9bab24
AN
3813 if (!static_key_false(&xps_rxqs_needed))
3814 goto get_cpus_map;
3815
eadec877 3816 dev_maps = rcu_dereference(sb_dev->xps_rxqs_map);
638b2a69 3817 if (dev_maps) {
fc9bab24 3818 int tci = sk_rx_queue_get(sk);
184c449f 3819
fc9bab24
AN
3820 if (tci >= 0 && tci < dev->num_rx_queues)
3821 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3822 tci);
3823 }
184c449f 3824
fc9bab24
AN
3825get_cpus_map:
3826 if (queue_index < 0) {
eadec877 3827 dev_maps = rcu_dereference(sb_dev->xps_cpus_map);
fc9bab24
AN
3828 if (dev_maps) {
3829 unsigned int tci = skb->sender_cpu - 1;
3830
3831 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3832 tci);
638b2a69
JP
3833 }
3834 }
3835 rcu_read_unlock();
3836
3837 return queue_index;
3838#else
3839 return -1;
3840#endif
3841}
3842
a4ea8a3d 3843u16 dev_pick_tx_zero(struct net_device *dev, struct sk_buff *skb,
a350ecce 3844 struct net_device *sb_dev)
a4ea8a3d
AD
3845{
3846 return 0;
3847}
3848EXPORT_SYMBOL(dev_pick_tx_zero);
3849
3850u16 dev_pick_tx_cpu_id(struct net_device *dev, struct sk_buff *skb,
a350ecce 3851 struct net_device *sb_dev)
a4ea8a3d
AD
3852{
3853 return (u16)raw_smp_processor_id() % dev->real_num_tx_queues;
3854}
3855EXPORT_SYMBOL(dev_pick_tx_cpu_id);
3856
b71b5837
PA
3857u16 netdev_pick_tx(struct net_device *dev, struct sk_buff *skb,
3858 struct net_device *sb_dev)
638b2a69
JP
3859{
3860 struct sock *sk = skb->sk;
3861 int queue_index = sk_tx_queue_get(sk);
3862
eadec877
AD
3863 sb_dev = sb_dev ? : dev;
3864
638b2a69
JP
3865 if (queue_index < 0 || skb->ooo_okay ||
3866 queue_index >= dev->real_num_tx_queues) {
eadec877 3867 int new_index = get_xps_queue(dev, sb_dev, skb);
f4563a75 3868
638b2a69 3869 if (new_index < 0)
eadec877 3870 new_index = skb_tx_hash(dev, sb_dev, skb);
638b2a69
JP
3871
3872 if (queue_index != new_index && sk &&
004a5d01 3873 sk_fullsock(sk) &&
638b2a69
JP
3874 rcu_access_pointer(sk->sk_dst_cache))
3875 sk_tx_queue_set(sk, new_index);
3876
3877 queue_index = new_index;
3878 }
3879
3880 return queue_index;
3881}
b71b5837 3882EXPORT_SYMBOL(netdev_pick_tx);
638b2a69 3883
4bd97d51
PA
3884struct netdev_queue *netdev_core_pick_tx(struct net_device *dev,
3885 struct sk_buff *skb,
3886 struct net_device *sb_dev)
638b2a69
JP
3887{
3888 int queue_index = 0;
3889
3890#ifdef CONFIG_XPS
52bd2d62
ED
3891 u32 sender_cpu = skb->sender_cpu - 1;
3892
3893 if (sender_cpu >= (u32)NR_CPUS)
638b2a69
JP
3894 skb->sender_cpu = raw_smp_processor_id() + 1;
3895#endif
3896
3897 if (dev->real_num_tx_queues != 1) {
3898 const struct net_device_ops *ops = dev->netdev_ops;
f4563a75 3899
638b2a69 3900 if (ops->ndo_select_queue)
a350ecce 3901 queue_index = ops->ndo_select_queue(dev, skb, sb_dev);
638b2a69 3902 else
4bd97d51 3903 queue_index = netdev_pick_tx(dev, skb, sb_dev);
638b2a69 3904
d584527c 3905 queue_index = netdev_cap_txqueue(dev, queue_index);
638b2a69
JP
3906 }
3907
3908 skb_set_queue_mapping(skb, queue_index);
3909 return netdev_get_tx_queue(dev, queue_index);
3910}
3911
d29f749e 3912/**
9d08dd3d 3913 * __dev_queue_xmit - transmit a buffer
d29f749e 3914 * @skb: buffer to transmit
eadec877 3915 * @sb_dev: suboordinate device used for L2 forwarding offload
d29f749e
DJ
3916 *
3917 * Queue a buffer for transmission to a network device. The caller must
3918 * have set the device and priority and built the buffer before calling
3919 * this function. The function can be called from an interrupt.
3920 *
3921 * A negative errno code is returned on a failure. A success does not
3922 * guarantee the frame will be transmitted as it may be dropped due
3923 * to congestion or traffic shaping.
3924 *
3925 * -----------------------------------------------------------------------------------
3926 * I notice this method can also return errors from the queue disciplines,
3927 * including NET_XMIT_DROP, which is a positive value. So, errors can also
3928 * be positive.
3929 *
3930 * Regardless of the return value, the skb is consumed, so it is currently
3931 * difficult to retry a send to this method. (You can bump the ref count
3932 * before sending to hold a reference for retry if you are careful.)
3933 *
3934 * When calling this method, interrupts MUST be enabled. This is because
3935 * the BH enable code must have IRQs enabled so that it will not deadlock.
3936 * --BLG
3937 */
eadec877 3938static int __dev_queue_xmit(struct sk_buff *skb, struct net_device *sb_dev)
1da177e4
LT
3939{
3940 struct net_device *dev = skb->dev;
dc2b4847 3941 struct netdev_queue *txq;
1da177e4
LT
3942 struct Qdisc *q;
3943 int rc = -ENOMEM;
f53c7239 3944 bool again = false;
1da177e4 3945
6d1ccff6
ED
3946 skb_reset_mac_header(skb);
3947
e7fd2885
WB
3948 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
3949 __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED);
3950
4ec93edb
YH
3951 /* Disable soft irqs for various locks below. Also
3952 * stops preemption for RCU.
1da177e4 3953 */
4ec93edb 3954 rcu_read_lock_bh();
1da177e4 3955
5bc1421e
NH
3956 skb_update_prio(skb);
3957
1f211a1b
DB
3958 qdisc_pkt_len_init(skb);
3959#ifdef CONFIG_NET_CLS_ACT
8dc07fdb 3960 skb->tc_at_ingress = 0;
1f211a1b 3961# ifdef CONFIG_NET_EGRESS
aabf6772 3962 if (static_branch_unlikely(&egress_needed_key)) {
1f211a1b
DB
3963 skb = sch_handle_egress(skb, &rc, dev);
3964 if (!skb)
3965 goto out;
3966 }
3967# endif
3968#endif
02875878
ED
3969 /* If device/qdisc don't need skb->dst, release it right now while
3970 * its hot in this cpu cache.
3971 */
3972 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
3973 skb_dst_drop(skb);
3974 else
3975 skb_dst_force(skb);
3976
4bd97d51 3977 txq = netdev_core_pick_tx(dev, skb, sb_dev);
a898def2 3978 q = rcu_dereference_bh(txq->qdisc);
37437bb2 3979
cf66ba58 3980 trace_net_dev_queue(skb);
1da177e4 3981 if (q->enqueue) {
bbd8a0d3 3982 rc = __dev_xmit_skb(skb, q, dev, txq);
37437bb2 3983 goto out;
1da177e4
LT
3984 }
3985
3986 /* The device has no queue. Common case for software devices:
eb13da1a 3987 * loopback, all the sorts of tunnels...
1da177e4 3988
eb13da1a 3989 * Really, it is unlikely that netif_tx_lock protection is necessary
3990 * here. (f.e. loopback and IP tunnels are clean ignoring statistics
3991 * counters.)
3992 * However, it is possible, that they rely on protection
3993 * made by us here.
1da177e4 3994
eb13da1a 3995 * Check this and shot the lock. It is not prone from deadlocks.
3996 *Either shot noqueue qdisc, it is even simpler 8)
1da177e4
LT
3997 */
3998 if (dev->flags & IFF_UP) {
3999 int cpu = smp_processor_id(); /* ok because BHs are off */
4000
c773e847 4001 if (txq->xmit_lock_owner != cpu) {
97cdcf37 4002 if (dev_xmit_recursion())
745e20f1
ED
4003 goto recursion_alert;
4004
f53c7239 4005 skb = validate_xmit_skb(skb, dev, &again);
1f59533f 4006 if (!skb)
d21fd63e 4007 goto out;
1f59533f 4008
c773e847 4009 HARD_TX_LOCK(dev, txq, cpu);
1da177e4 4010
73466498 4011 if (!netif_xmit_stopped(txq)) {
97cdcf37 4012 dev_xmit_recursion_inc();
ce93718f 4013 skb = dev_hard_start_xmit(skb, dev, txq, &rc);
97cdcf37 4014 dev_xmit_recursion_dec();
572a9d7b 4015 if (dev_xmit_complete(rc)) {
c773e847 4016 HARD_TX_UNLOCK(dev, txq);
1da177e4
LT
4017 goto out;
4018 }
4019 }
c773e847 4020 HARD_TX_UNLOCK(dev, txq);
e87cc472
JP
4021 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
4022 dev->name);
1da177e4
LT
4023 } else {
4024 /* Recursion is detected! It is possible,
745e20f1
ED
4025 * unfortunately
4026 */
4027recursion_alert:
e87cc472
JP
4028 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
4029 dev->name);
1da177e4
LT
4030 }
4031 }
4032
4033 rc = -ENETDOWN;
d4828d85 4034 rcu_read_unlock_bh();
1da177e4 4035
015f0688 4036 atomic_long_inc(&dev->tx_dropped);
1f59533f 4037 kfree_skb_list(skb);
1da177e4
LT
4038 return rc;
4039out:
d4828d85 4040 rcu_read_unlock_bh();
1da177e4
LT
4041 return rc;
4042}
f663dd9a 4043
2b4aa3ce 4044int dev_queue_xmit(struct sk_buff *skb)
f663dd9a
JW
4045{
4046 return __dev_queue_xmit(skb, NULL);
4047}
2b4aa3ce 4048EXPORT_SYMBOL(dev_queue_xmit);
1da177e4 4049
eadec877 4050int dev_queue_xmit_accel(struct sk_buff *skb, struct net_device *sb_dev)
f663dd9a 4051{
eadec877 4052 return __dev_queue_xmit(skb, sb_dev);
f663dd9a
JW
4053}
4054EXPORT_SYMBOL(dev_queue_xmit_accel);
4055
865b03f2
MK
4056int dev_direct_xmit(struct sk_buff *skb, u16 queue_id)
4057{
4058 struct net_device *dev = skb->dev;
4059 struct sk_buff *orig_skb = skb;
4060 struct netdev_queue *txq;
4061 int ret = NETDEV_TX_BUSY;
4062 bool again = false;
4063
4064 if (unlikely(!netif_running(dev) ||
4065 !netif_carrier_ok(dev)))
4066 goto drop;
4067
4068 skb = validate_xmit_skb_list(skb, dev, &again);
4069 if (skb != orig_skb)
4070 goto drop;
4071
4072 skb_set_queue_mapping(skb, queue_id);
4073 txq = skb_get_tx_queue(dev, skb);
4074
4075 local_bh_disable();
4076
4077 HARD_TX_LOCK(dev, txq, smp_processor_id());
4078 if (!netif_xmit_frozen_or_drv_stopped(txq))
4079 ret = netdev_start_xmit(skb, dev, txq, false);
4080 HARD_TX_UNLOCK(dev, txq);
4081
4082 local_bh_enable();
4083
4084 if (!dev_xmit_complete(ret))
4085 kfree_skb(skb);
4086
4087 return ret;
4088drop:
4089 atomic_long_inc(&dev->tx_dropped);
4090 kfree_skb_list(skb);
4091 return NET_XMIT_DROP;
4092}
4093EXPORT_SYMBOL(dev_direct_xmit);
1da177e4 4094
eb13da1a 4095/*************************************************************************
4096 * Receiver routines
4097 *************************************************************************/
1da177e4 4098
6b2bedc3 4099int netdev_max_backlog __read_mostly = 1000;
c9e6bc64
ED
4100EXPORT_SYMBOL(netdev_max_backlog);
4101
3b098e2d 4102int netdev_tstamp_prequeue __read_mostly = 1;
6b2bedc3 4103int netdev_budget __read_mostly = 300;
7acf8a1e 4104unsigned int __read_mostly netdev_budget_usecs = 2000;
3d48b53f
MT
4105int weight_p __read_mostly = 64; /* old backlog weight */
4106int dev_weight_rx_bias __read_mostly = 1; /* bias for backlog weight */
4107int dev_weight_tx_bias __read_mostly = 1; /* bias for output_queue quota */
4108int dev_rx_weight __read_mostly = 64;
4109int dev_tx_weight __read_mostly = 64;
323ebb61
EC
4110/* Maximum number of GRO_NORMAL skbs to batch up for list-RX */
4111int gro_normal_batch __read_mostly = 8;
1da177e4 4112
eecfd7c4
ED
4113/* Called with irq disabled */
4114static inline void ____napi_schedule(struct softnet_data *sd,
4115 struct napi_struct *napi)
4116{
4117 list_add_tail(&napi->poll_list, &sd->poll_list);
4118 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4119}
4120
bfb564e7
KK
4121#ifdef CONFIG_RPS
4122
4123/* One global table that all flow-based protocols share. */
6e3f7faf 4124struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
bfb564e7 4125EXPORT_SYMBOL(rps_sock_flow_table);
567e4b79
ED
4126u32 rps_cpu_mask __read_mostly;
4127EXPORT_SYMBOL(rps_cpu_mask);
bfb564e7 4128
dc05360f 4129struct static_key_false rps_needed __read_mostly;
3df97ba8 4130EXPORT_SYMBOL(rps_needed);
dc05360f 4131struct static_key_false rfs_needed __read_mostly;
13bfff25 4132EXPORT_SYMBOL(rfs_needed);
adc9300e 4133
c445477d
BH
4134static struct rps_dev_flow *
4135set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4136 struct rps_dev_flow *rflow, u16 next_cpu)
4137{
a31196b0 4138 if (next_cpu < nr_cpu_ids) {
c445477d
BH
4139#ifdef CONFIG_RFS_ACCEL
4140 struct netdev_rx_queue *rxqueue;
4141 struct rps_dev_flow_table *flow_table;
4142 struct rps_dev_flow *old_rflow;
4143 u32 flow_id;
4144 u16 rxq_index;
4145 int rc;
4146
4147 /* Should we steer this flow to a different hardware queue? */
69a19ee6
BH
4148 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
4149 !(dev->features & NETIF_F_NTUPLE))
c445477d
BH
4150 goto out;
4151 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
4152 if (rxq_index == skb_get_rx_queue(skb))
4153 goto out;
4154
4155 rxqueue = dev->_rx + rxq_index;
4156 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4157 if (!flow_table)
4158 goto out;
61b905da 4159 flow_id = skb_get_hash(skb) & flow_table->mask;
c445477d
BH
4160 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
4161 rxq_index, flow_id);
4162 if (rc < 0)
4163 goto out;
4164 old_rflow = rflow;
4165 rflow = &flow_table->flows[flow_id];
c445477d
BH
4166 rflow->filter = rc;
4167 if (old_rflow->filter == rflow->filter)
4168 old_rflow->filter = RPS_NO_FILTER;
4169 out:
4170#endif
4171 rflow->last_qtail =
09994d1b 4172 per_cpu(softnet_data, next_cpu).input_queue_head;
c445477d
BH
4173 }
4174
09994d1b 4175 rflow->cpu = next_cpu;
c445477d
BH
4176 return rflow;
4177}
4178
bfb564e7
KK
4179/*
4180 * get_rps_cpu is called from netif_receive_skb and returns the target
4181 * CPU from the RPS map of the receiving queue for a given skb.
4182 * rcu_read_lock must be held on entry.
4183 */
4184static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4185 struct rps_dev_flow **rflowp)
4186{
567e4b79
ED
4187 const struct rps_sock_flow_table *sock_flow_table;
4188 struct netdev_rx_queue *rxqueue = dev->_rx;
bfb564e7 4189 struct rps_dev_flow_table *flow_table;
567e4b79 4190 struct rps_map *map;
bfb564e7 4191 int cpu = -1;
567e4b79 4192 u32 tcpu;
61b905da 4193 u32 hash;
bfb564e7
KK
4194
4195 if (skb_rx_queue_recorded(skb)) {
4196 u16 index = skb_get_rx_queue(skb);
567e4b79 4197
62fe0b40
BH
4198 if (unlikely(index >= dev->real_num_rx_queues)) {
4199 WARN_ONCE(dev->real_num_rx_queues > 1,
4200 "%s received packet on queue %u, but number "
4201 "of RX queues is %u\n",
4202 dev->name, index, dev->real_num_rx_queues);
bfb564e7
KK
4203 goto done;
4204 }
567e4b79
ED
4205 rxqueue += index;
4206 }
bfb564e7 4207
567e4b79
ED
4208 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
4209
4210 flow_table = rcu_dereference(rxqueue->rps_flow_table);
6e3f7faf 4211 map = rcu_dereference(rxqueue->rps_map);
567e4b79 4212 if (!flow_table && !map)
bfb564e7
KK
4213 goto done;
4214
2d47b459 4215 skb_reset_network_header(skb);
61b905da
TH
4216 hash = skb_get_hash(skb);
4217 if (!hash)
bfb564e7
KK
4218 goto done;
4219
fec5e652
TH
4220 sock_flow_table = rcu_dereference(rps_sock_flow_table);
4221 if (flow_table && sock_flow_table) {
fec5e652 4222 struct rps_dev_flow *rflow;
567e4b79
ED
4223 u32 next_cpu;
4224 u32 ident;
4225
4226 /* First check into global flow table if there is a match */
4227 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
4228 if ((ident ^ hash) & ~rps_cpu_mask)
4229 goto try_rps;
fec5e652 4230
567e4b79
ED
4231 next_cpu = ident & rps_cpu_mask;
4232
4233 /* OK, now we know there is a match,
4234 * we can look at the local (per receive queue) flow table
4235 */
61b905da 4236 rflow = &flow_table->flows[hash & flow_table->mask];
fec5e652
TH
4237 tcpu = rflow->cpu;
4238
fec5e652
TH
4239 /*
4240 * If the desired CPU (where last recvmsg was done) is
4241 * different from current CPU (one in the rx-queue flow
4242 * table entry), switch if one of the following holds:
a31196b0 4243 * - Current CPU is unset (>= nr_cpu_ids).
fec5e652
TH
4244 * - Current CPU is offline.
4245 * - The current CPU's queue tail has advanced beyond the
4246 * last packet that was enqueued using this table entry.
4247 * This guarantees that all previous packets for the flow
4248 * have been dequeued, thus preserving in order delivery.
4249 */
4250 if (unlikely(tcpu != next_cpu) &&
a31196b0 4251 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
fec5e652 4252 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
baefa31d
TH
4253 rflow->last_qtail)) >= 0)) {
4254 tcpu = next_cpu;
c445477d 4255 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
baefa31d 4256 }
c445477d 4257
a31196b0 4258 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
fec5e652
TH
4259 *rflowp = rflow;
4260 cpu = tcpu;
4261 goto done;
4262 }
4263 }
4264
567e4b79
ED
4265try_rps:
4266
0a9627f2 4267 if (map) {
8fc54f68 4268 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
0a9627f2
TH
4269 if (cpu_online(tcpu)) {
4270 cpu = tcpu;
4271 goto done;
4272 }
4273 }
4274
4275done:
0a9627f2
TH
4276 return cpu;
4277}
4278
c445477d
BH
4279#ifdef CONFIG_RFS_ACCEL
4280
4281/**
4282 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
4283 * @dev: Device on which the filter was set
4284 * @rxq_index: RX queue index
4285 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
4286 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
4287 *
4288 * Drivers that implement ndo_rx_flow_steer() should periodically call
4289 * this function for each installed filter and remove the filters for
4290 * which it returns %true.
4291 */
4292bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
4293 u32 flow_id, u16 filter_id)
4294{
4295 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
4296 struct rps_dev_flow_table *flow_table;
4297 struct rps_dev_flow *rflow;
4298 bool expire = true;
a31196b0 4299 unsigned int cpu;
c445477d
BH
4300
4301 rcu_read_lock();
4302 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4303 if (flow_table && flow_id <= flow_table->mask) {
4304 rflow = &flow_table->flows[flow_id];
6aa7de05 4305 cpu = READ_ONCE(rflow->cpu);
a31196b0 4306 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
c445477d
BH
4307 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
4308 rflow->last_qtail) <
4309 (int)(10 * flow_table->mask)))
4310 expire = false;
4311 }
4312 rcu_read_unlock();
4313 return expire;
4314}
4315EXPORT_SYMBOL(rps_may_expire_flow);
4316
4317#endif /* CONFIG_RFS_ACCEL */
4318
0a9627f2 4319/* Called from hardirq (IPI) context */
e36fa2f7 4320static void rps_trigger_softirq(void *data)
0a9627f2 4321{
e36fa2f7
ED
4322 struct softnet_data *sd = data;
4323
eecfd7c4 4324 ____napi_schedule(sd, &sd->backlog);
dee42870 4325 sd->received_rps++;
0a9627f2 4326}
e36fa2f7 4327
fec5e652 4328#endif /* CONFIG_RPS */
0a9627f2 4329
e36fa2f7
ED
4330/*
4331 * Check if this softnet_data structure is another cpu one
4332 * If yes, queue it to our IPI list and return 1
4333 * If no, return 0
4334 */
4335static int rps_ipi_queued(struct softnet_data *sd)
4336{
4337#ifdef CONFIG_RPS
903ceff7 4338 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
e36fa2f7
ED
4339
4340 if (sd != mysd) {
4341 sd->rps_ipi_next = mysd->rps_ipi_list;
4342 mysd->rps_ipi_list = sd;
4343
4344 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4345 return 1;
4346 }
4347#endif /* CONFIG_RPS */
4348 return 0;
4349}
4350
99bbc707
WB
4351#ifdef CONFIG_NET_FLOW_LIMIT
4352int netdev_flow_limit_table_len __read_mostly = (1 << 12);
4353#endif
4354
4355static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
4356{
4357#ifdef CONFIG_NET_FLOW_LIMIT
4358 struct sd_flow_limit *fl;
4359 struct softnet_data *sd;
4360 unsigned int old_flow, new_flow;
4361
4362 if (qlen < (netdev_max_backlog >> 1))
4363 return false;
4364
903ceff7 4365 sd = this_cpu_ptr(&softnet_data);
99bbc707
WB
4366
4367 rcu_read_lock();
4368 fl = rcu_dereference(sd->flow_limit);
4369 if (fl) {
3958afa1 4370 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
99bbc707
WB
4371 old_flow = fl->history[fl->history_head];
4372 fl->history[fl->history_head] = new_flow;
4373
4374 fl->history_head++;
4375 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
4376
4377 if (likely(fl->buckets[old_flow]))
4378 fl->buckets[old_flow]--;
4379
4380 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
4381 fl->count++;
4382 rcu_read_unlock();
4383 return true;
4384 }
4385 }
4386 rcu_read_unlock();
4387#endif
4388 return false;
4389}
4390
0a9627f2
TH
4391/*
4392 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
4393 * queue (may be a remote CPU queue).
4394 */
fec5e652
TH
4395static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
4396 unsigned int *qtail)
0a9627f2 4397{
e36fa2f7 4398 struct softnet_data *sd;
0a9627f2 4399 unsigned long flags;
99bbc707 4400 unsigned int qlen;
0a9627f2 4401
e36fa2f7 4402 sd = &per_cpu(softnet_data, cpu);
0a9627f2
TH
4403
4404 local_irq_save(flags);
0a9627f2 4405
e36fa2f7 4406 rps_lock(sd);
e9e4dd32
JA
4407 if (!netif_running(skb->dev))
4408 goto drop;
99bbc707
WB
4409 qlen = skb_queue_len(&sd->input_pkt_queue);
4410 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
e008f3f0 4411 if (qlen) {
0a9627f2 4412enqueue:
e36fa2f7 4413 __skb_queue_tail(&sd->input_pkt_queue, skb);
76cc8b13 4414 input_queue_tail_incr_save(sd, qtail);
e36fa2f7 4415 rps_unlock(sd);
152102c7 4416 local_irq_restore(flags);
0a9627f2
TH
4417 return NET_RX_SUCCESS;
4418 }
4419
ebda37c2
ED
4420 /* Schedule NAPI for backlog device
4421 * We can use non atomic operation since we own the queue lock
4422 */
4423 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
e36fa2f7 4424 if (!rps_ipi_queued(sd))
eecfd7c4 4425 ____napi_schedule(sd, &sd->backlog);
0a9627f2
TH
4426 }
4427 goto enqueue;
4428 }
4429
e9e4dd32 4430drop:
dee42870 4431 sd->dropped++;
e36fa2f7 4432 rps_unlock(sd);
0a9627f2 4433
0a9627f2
TH
4434 local_irq_restore(flags);
4435
caf586e5 4436 atomic_long_inc(&skb->dev->rx_dropped);
0a9627f2
TH
4437 kfree_skb(skb);
4438 return NET_RX_DROP;
4439}
1da177e4 4440
e817f856
JDB
4441static struct netdev_rx_queue *netif_get_rxqueue(struct sk_buff *skb)
4442{
4443 struct net_device *dev = skb->dev;
4444 struct netdev_rx_queue *rxqueue;
4445
4446 rxqueue = dev->_rx;
4447
4448 if (skb_rx_queue_recorded(skb)) {
4449 u16 index = skb_get_rx_queue(skb);
4450
4451 if (unlikely(index >= dev->real_num_rx_queues)) {
4452 WARN_ONCE(dev->real_num_rx_queues > 1,
4453 "%s received packet on queue %u, but number "
4454 "of RX queues is %u\n",
4455 dev->name, index, dev->real_num_rx_queues);
4456
4457 return rxqueue; /* Return first rxqueue */
4458 }
4459 rxqueue += index;
4460 }
4461 return rxqueue;
4462}
4463
d4455169 4464static u32 netif_receive_generic_xdp(struct sk_buff *skb,
02671e23 4465 struct xdp_buff *xdp,
d4455169
JF
4466 struct bpf_prog *xdp_prog)
4467{
e817f856 4468 struct netdev_rx_queue *rxqueue;
198d83bb 4469 void *orig_data, *orig_data_end;
de8f3a83 4470 u32 metalen, act = XDP_DROP;
29724956
JDB
4471 __be16 orig_eth_type;
4472 struct ethhdr *eth;
4473 bool orig_bcast;
d4455169
JF
4474 int hlen, off;
4475 u32 mac_len;
4476
4477 /* Reinjected packets coming from act_mirred or similar should
4478 * not get XDP generic processing.
4479 */
cd11b164 4480 if (skb_cloned(skb) || skb_is_tc_redirected(skb))
d4455169
JF
4481 return XDP_PASS;
4482
de8f3a83
DB
4483 /* XDP packets must be linear and must have sufficient headroom
4484 * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
4485 * native XDP provides, thus we need to do it here as well.
4486 */
4487 if (skb_is_nonlinear(skb) ||
4488 skb_headroom(skb) < XDP_PACKET_HEADROOM) {
4489 int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
4490 int troom = skb->tail + skb->data_len - skb->end;
4491
4492 /* In case we have to go down the path and also linearize,
4493 * then lets do the pskb_expand_head() work just once here.
4494 */
4495 if (pskb_expand_head(skb,
4496 hroom > 0 ? ALIGN(hroom, NET_SKB_PAD) : 0,
4497 troom > 0 ? troom + 128 : 0, GFP_ATOMIC))
4498 goto do_drop;
2d17d8d7 4499 if (skb_linearize(skb))
de8f3a83
DB
4500 goto do_drop;
4501 }
d4455169
JF
4502
4503 /* The XDP program wants to see the packet starting at the MAC
4504 * header.
4505 */
4506 mac_len = skb->data - skb_mac_header(skb);
4507 hlen = skb_headlen(skb) + mac_len;
02671e23
BT
4508 xdp->data = skb->data - mac_len;
4509 xdp->data_meta = xdp->data;
4510 xdp->data_end = xdp->data + hlen;
4511 xdp->data_hard_start = skb->data - skb_headroom(skb);
4512 orig_data_end = xdp->data_end;
4513 orig_data = xdp->data;
29724956
JDB
4514 eth = (struct ethhdr *)xdp->data;
4515 orig_bcast = is_multicast_ether_addr_64bits(eth->h_dest);
4516 orig_eth_type = eth->h_proto;
d4455169 4517
e817f856 4518 rxqueue = netif_get_rxqueue(skb);
02671e23 4519 xdp->rxq = &rxqueue->xdp_rxq;
e817f856 4520
02671e23 4521 act = bpf_prog_run_xdp(xdp_prog, xdp);
d4455169 4522
065af355 4523 /* check if bpf_xdp_adjust_head was used */
02671e23 4524 off = xdp->data - orig_data;
065af355
JDB
4525 if (off) {
4526 if (off > 0)
4527 __skb_pull(skb, off);
4528 else if (off < 0)
4529 __skb_push(skb, -off);
4530
4531 skb->mac_header += off;
4532 skb_reset_network_header(skb);
4533 }
d4455169 4534
198d83bb
NS
4535 /* check if bpf_xdp_adjust_tail was used. it can only "shrink"
4536 * pckt.
4537 */
02671e23 4538 off = orig_data_end - xdp->data_end;
f7613120 4539 if (off != 0) {
02671e23 4540 skb_set_tail_pointer(skb, xdp->data_end - xdp->data);
f7613120 4541 skb->len -= off;
02671e23 4542
f7613120 4543 }
198d83bb 4544
29724956
JDB
4545 /* check if XDP changed eth hdr such SKB needs update */
4546 eth = (struct ethhdr *)xdp->data;
4547 if ((orig_eth_type != eth->h_proto) ||
4548 (orig_bcast != is_multicast_ether_addr_64bits(eth->h_dest))) {
4549 __skb_push(skb, ETH_HLEN);
4550 skb->protocol = eth_type_trans(skb, skb->dev);
4551 }
4552
d4455169 4553 switch (act) {
6103aa96 4554 case XDP_REDIRECT:
d4455169
JF
4555 case XDP_TX:
4556 __skb_push(skb, mac_len);
de8f3a83 4557 break;
d4455169 4558 case XDP_PASS:
02671e23 4559 metalen = xdp->data - xdp->data_meta;
de8f3a83
DB
4560 if (metalen)
4561 skb_metadata_set(skb, metalen);
d4455169 4562 break;
d4455169
JF
4563 default:
4564 bpf_warn_invalid_xdp_action(act);
4565 /* fall through */
4566 case XDP_ABORTED:
4567 trace_xdp_exception(skb->dev, xdp_prog, act);
4568 /* fall through */
4569 case XDP_DROP:
4570 do_drop:
4571 kfree_skb(skb);
4572 break;
4573 }
4574
4575 return act;
4576}
4577
4578/* When doing generic XDP we have to bypass the qdisc layer and the
4579 * network taps in order to match in-driver-XDP behavior.
4580 */
7c497478 4581void generic_xdp_tx(struct sk_buff *skb, struct bpf_prog *xdp_prog)
d4455169
JF
4582{
4583 struct net_device *dev = skb->dev;
4584 struct netdev_queue *txq;
4585 bool free_skb = true;
4586 int cpu, rc;
4587
4bd97d51 4588 txq = netdev_core_pick_tx(dev, skb, NULL);
d4455169
JF
4589 cpu = smp_processor_id();
4590 HARD_TX_LOCK(dev, txq, cpu);
4591 if (!netif_xmit_stopped(txq)) {
4592 rc = netdev_start_xmit(skb, dev, txq, 0);
4593 if (dev_xmit_complete(rc))
4594 free_skb = false;
4595 }
4596 HARD_TX_UNLOCK(dev, txq);
4597 if (free_skb) {
4598 trace_xdp_exception(dev, xdp_prog, XDP_TX);
4599 kfree_skb(skb);
4600 }
4601}
7c497478 4602EXPORT_SYMBOL_GPL(generic_xdp_tx);
d4455169 4603
02786475 4604static DEFINE_STATIC_KEY_FALSE(generic_xdp_needed_key);
d4455169 4605
7c497478 4606int do_xdp_generic(struct bpf_prog *xdp_prog, struct sk_buff *skb)
d4455169 4607{
d4455169 4608 if (xdp_prog) {
02671e23
BT
4609 struct xdp_buff xdp;
4610 u32 act;
6103aa96 4611 int err;
d4455169 4612
02671e23 4613 act = netif_receive_generic_xdp(skb, &xdp, xdp_prog);
d4455169 4614 if (act != XDP_PASS) {
6103aa96
JF
4615 switch (act) {
4616 case XDP_REDIRECT:
2facaad6 4617 err = xdp_do_generic_redirect(skb->dev, skb,
02671e23 4618 &xdp, xdp_prog);
6103aa96
JF
4619 if (err)
4620 goto out_redir;
02671e23 4621 break;
6103aa96 4622 case XDP_TX:
d4455169 4623 generic_xdp_tx(skb, xdp_prog);
6103aa96
JF
4624 break;
4625 }
d4455169
JF
4626 return XDP_DROP;
4627 }
4628 }
4629 return XDP_PASS;
6103aa96 4630out_redir:
6103aa96
JF
4631 kfree_skb(skb);
4632 return XDP_DROP;
d4455169 4633}
7c497478 4634EXPORT_SYMBOL_GPL(do_xdp_generic);
d4455169 4635
ae78dbfa 4636static int netif_rx_internal(struct sk_buff *skb)
1da177e4 4637{
b0e28f1e 4638 int ret;
1da177e4 4639
588f0330 4640 net_timestamp_check(netdev_tstamp_prequeue, skb);
1da177e4 4641
cf66ba58 4642 trace_netif_rx(skb);
d4455169 4643
df334545 4644#ifdef CONFIG_RPS
dc05360f 4645 if (static_branch_unlikely(&rps_needed)) {
fec5e652 4646 struct rps_dev_flow voidflow, *rflow = &voidflow;
b0e28f1e
ED
4647 int cpu;
4648
cece1945 4649 preempt_disable();
b0e28f1e 4650 rcu_read_lock();
fec5e652
TH
4651
4652 cpu = get_rps_cpu(skb->dev, skb, &rflow);
b0e28f1e
ED
4653 if (cpu < 0)
4654 cpu = smp_processor_id();
fec5e652
TH
4655
4656 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4657
b0e28f1e 4658 rcu_read_unlock();
cece1945 4659 preempt_enable();
adc9300e
ED
4660 } else
4661#endif
fec5e652
TH
4662 {
4663 unsigned int qtail;
f4563a75 4664
fec5e652
TH
4665 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
4666 put_cpu();
4667 }
b0e28f1e 4668 return ret;
1da177e4 4669}
ae78dbfa
BH
4670
4671/**
4672 * netif_rx - post buffer to the network code
4673 * @skb: buffer to post
4674 *
4675 * This function receives a packet from a device driver and queues it for
4676 * the upper (protocol) levels to process. It always succeeds. The buffer
4677 * may be dropped during processing for congestion control or by the
4678 * protocol layers.
4679 *
4680 * return values:
4681 * NET_RX_SUCCESS (no congestion)
4682 * NET_RX_DROP (packet was dropped)
4683 *
4684 */
4685
4686int netif_rx(struct sk_buff *skb)
4687{
b0e3f1bd
GB
4688 int ret;
4689
ae78dbfa
BH
4690 trace_netif_rx_entry(skb);
4691
b0e3f1bd
GB
4692 ret = netif_rx_internal(skb);
4693 trace_netif_rx_exit(ret);
4694
4695 return ret;
ae78dbfa 4696}
d1b19dff 4697EXPORT_SYMBOL(netif_rx);
1da177e4
LT
4698
4699int netif_rx_ni(struct sk_buff *skb)
4700{
4701 int err;
4702
ae78dbfa
BH
4703 trace_netif_rx_ni_entry(skb);
4704
1da177e4 4705 preempt_disable();
ae78dbfa 4706 err = netif_rx_internal(skb);
1da177e4
LT
4707 if (local_softirq_pending())
4708 do_softirq();
4709 preempt_enable();
b0e3f1bd 4710 trace_netif_rx_ni_exit(err);
1da177e4
LT
4711
4712 return err;
4713}
1da177e4
LT
4714EXPORT_SYMBOL(netif_rx_ni);
4715
0766f788 4716static __latent_entropy void net_tx_action(struct softirq_action *h)
1da177e4 4717{
903ceff7 4718 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
1da177e4
LT
4719
4720 if (sd->completion_queue) {
4721 struct sk_buff *clist;
4722
4723 local_irq_disable();
4724 clist = sd->completion_queue;
4725 sd->completion_queue = NULL;
4726 local_irq_enable();
4727
4728 while (clist) {
4729 struct sk_buff *skb = clist;
f4563a75 4730
1da177e4
LT
4731 clist = clist->next;
4732
63354797 4733 WARN_ON(refcount_read(&skb->users));
e6247027
ED
4734 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
4735 trace_consume_skb(skb);
4736 else
4737 trace_kfree_skb(skb, net_tx_action);
15fad714
JDB
4738
4739 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
4740 __kfree_skb(skb);
4741 else
4742 __kfree_skb_defer(skb);
1da177e4 4743 }
15fad714
JDB
4744
4745 __kfree_skb_flush();
1da177e4
LT
4746 }
4747
4748 if (sd->output_queue) {
37437bb2 4749 struct Qdisc *head;
1da177e4
LT
4750
4751 local_irq_disable();
4752 head = sd->output_queue;
4753 sd->output_queue = NULL;
a9cbd588 4754 sd->output_queue_tailp = &sd->output_queue;
1da177e4
LT
4755 local_irq_enable();
4756
4757 while (head) {
37437bb2 4758 struct Qdisc *q = head;
6b3ba914 4759 spinlock_t *root_lock = NULL;
37437bb2 4760
1da177e4
LT
4761 head = head->next_sched;
4762
6b3ba914
JF
4763 if (!(q->flags & TCQ_F_NOLOCK)) {
4764 root_lock = qdisc_lock(q);
4765 spin_lock(root_lock);
4766 }
3bcb846c
ED
4767 /* We need to make sure head->next_sched is read
4768 * before clearing __QDISC_STATE_SCHED
4769 */
4770 smp_mb__before_atomic();
4771 clear_bit(__QDISC_STATE_SCHED, &q->state);
4772 qdisc_run(q);
6b3ba914
JF
4773 if (root_lock)
4774 spin_unlock(root_lock);
1da177e4
LT
4775 }
4776 }
f53c7239
SK
4777
4778 xfrm_dev_backlog(sd);
1da177e4
LT
4779}
4780
181402a5 4781#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
da678292
MM
4782/* This hook is defined here for ATM LANE */
4783int (*br_fdb_test_addr_hook)(struct net_device *dev,
4784 unsigned char *addr) __read_mostly;
4fb019a0 4785EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
da678292 4786#endif
1da177e4 4787
1f211a1b
DB
4788static inline struct sk_buff *
4789sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
4790 struct net_device *orig_dev)
f697c3e8 4791{
e7582bab 4792#ifdef CONFIG_NET_CLS_ACT
46209401 4793 struct mini_Qdisc *miniq = rcu_dereference_bh(skb->dev->miniq_ingress);
d2788d34 4794 struct tcf_result cl_res;
24824a09 4795
c9e99fd0
DB
4796 /* If there's at least one ingress present somewhere (so
4797 * we get here via enabled static key), remaining devices
4798 * that are not configured with an ingress qdisc will bail
d2788d34 4799 * out here.
c9e99fd0 4800 */
46209401 4801 if (!miniq)
4577139b 4802 return skb;
46209401 4803
f697c3e8
HX
4804 if (*pt_prev) {
4805 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4806 *pt_prev = NULL;
1da177e4
LT
4807 }
4808
3365495c 4809 qdisc_skb_cb(skb)->pkt_len = skb->len;
8dc07fdb 4810 skb->tc_at_ingress = 1;
46209401 4811 mini_qdisc_bstats_cpu_update(miniq, skb);
c9e99fd0 4812
46209401 4813 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
d2788d34
DB
4814 case TC_ACT_OK:
4815 case TC_ACT_RECLASSIFY:
4816 skb->tc_index = TC_H_MIN(cl_res.classid);
4817 break;
4818 case TC_ACT_SHOT:
46209401 4819 mini_qdisc_qstats_cpu_drop(miniq);
8a3a4c6e
ED
4820 kfree_skb(skb);
4821 return NULL;
d2788d34
DB
4822 case TC_ACT_STOLEN:
4823 case TC_ACT_QUEUED:
e25ea21f 4824 case TC_ACT_TRAP:
8a3a4c6e 4825 consume_skb(skb);
d2788d34 4826 return NULL;
27b29f63
AS
4827 case TC_ACT_REDIRECT:
4828 /* skb_mac_header check was done by cls/act_bpf, so
4829 * we can safely push the L2 header back before
4830 * redirecting to another netdev
4831 */
4832 __skb_push(skb, skb->mac_len);
4833 skb_do_redirect(skb);
4834 return NULL;
720f22fe 4835 case TC_ACT_CONSUMED:
cd11b164 4836 return NULL;
d2788d34
DB
4837 default:
4838 break;
f697c3e8 4839 }
e7582bab 4840#endif /* CONFIG_NET_CLS_ACT */
e687ad60
PN
4841 return skb;
4842}
1da177e4 4843
24b27fc4
MB
4844/**
4845 * netdev_is_rx_handler_busy - check if receive handler is registered
4846 * @dev: device to check
4847 *
4848 * Check if a receive handler is already registered for a given device.
4849 * Return true if there one.
4850 *
4851 * The caller must hold the rtnl_mutex.
4852 */
4853bool netdev_is_rx_handler_busy(struct net_device *dev)
4854{
4855 ASSERT_RTNL();
4856 return dev && rtnl_dereference(dev->rx_handler);
4857}
4858EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
4859
ab95bfe0
JP
4860/**
4861 * netdev_rx_handler_register - register receive handler
4862 * @dev: device to register a handler for
4863 * @rx_handler: receive handler to register
93e2c32b 4864 * @rx_handler_data: data pointer that is used by rx handler
ab95bfe0 4865 *
e227867f 4866 * Register a receive handler for a device. This handler will then be
ab95bfe0
JP
4867 * called from __netif_receive_skb. A negative errno code is returned
4868 * on a failure.
4869 *
4870 * The caller must hold the rtnl_mutex.
8a4eb573
JP
4871 *
4872 * For a general description of rx_handler, see enum rx_handler_result.
ab95bfe0
JP
4873 */
4874int netdev_rx_handler_register(struct net_device *dev,
93e2c32b
JP
4875 rx_handler_func_t *rx_handler,
4876 void *rx_handler_data)
ab95bfe0 4877{
1b7cd004 4878 if (netdev_is_rx_handler_busy(dev))
ab95bfe0
JP
4879 return -EBUSY;
4880
f5426250
PA
4881 if (dev->priv_flags & IFF_NO_RX_HANDLER)
4882 return -EINVAL;
4883
00cfec37 4884 /* Note: rx_handler_data must be set before rx_handler */
93e2c32b 4885 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
ab95bfe0
JP
4886 rcu_assign_pointer(dev->rx_handler, rx_handler);
4887
4888 return 0;
4889}
4890EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
4891
4892/**
4893 * netdev_rx_handler_unregister - unregister receive handler
4894 * @dev: device to unregister a handler from
4895 *
166ec369 4896 * Unregister a receive handler from a device.
ab95bfe0
JP
4897 *
4898 * The caller must hold the rtnl_mutex.
4899 */
4900void netdev_rx_handler_unregister(struct net_device *dev)
4901{
4902
4903 ASSERT_RTNL();
a9b3cd7f 4904 RCU_INIT_POINTER(dev->rx_handler, NULL);
00cfec37
ED
4905 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
4906 * section has a guarantee to see a non NULL rx_handler_data
4907 * as well.
4908 */
4909 synchronize_net();
a9b3cd7f 4910 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
ab95bfe0
JP
4911}
4912EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
4913
b4b9e355
MG
4914/*
4915 * Limit the use of PFMEMALLOC reserves to those protocols that implement
4916 * the special handling of PFMEMALLOC skbs.
4917 */
4918static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
4919{
4920 switch (skb->protocol) {
2b8837ae
JP
4921 case htons(ETH_P_ARP):
4922 case htons(ETH_P_IP):
4923 case htons(ETH_P_IPV6):
4924 case htons(ETH_P_8021Q):
4925 case htons(ETH_P_8021AD):
b4b9e355
MG
4926 return true;
4927 default:
4928 return false;
4929 }
4930}
4931
e687ad60
PN
4932static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
4933 int *ret, struct net_device *orig_dev)
4934{
e7582bab 4935#ifdef CONFIG_NETFILTER_INGRESS
e687ad60 4936 if (nf_hook_ingress_active(skb)) {
2c1e2703
AC
4937 int ingress_retval;
4938
e687ad60
PN
4939 if (*pt_prev) {
4940 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4941 *pt_prev = NULL;
4942 }
4943
2c1e2703
AC
4944 rcu_read_lock();
4945 ingress_retval = nf_hook_ingress(skb);
4946 rcu_read_unlock();
4947 return ingress_retval;
e687ad60 4948 }
e7582bab 4949#endif /* CONFIG_NETFILTER_INGRESS */
e687ad60
PN
4950 return 0;
4951}
e687ad60 4952
88eb1944
EC
4953static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc,
4954 struct packet_type **ppt_prev)
1da177e4
LT
4955{
4956 struct packet_type *ptype, *pt_prev;
ab95bfe0 4957 rx_handler_func_t *rx_handler;
f2ccd8fa 4958 struct net_device *orig_dev;
8a4eb573 4959 bool deliver_exact = false;
1da177e4 4960 int ret = NET_RX_DROP;
252e3346 4961 __be16 type;
1da177e4 4962
588f0330 4963 net_timestamp_check(!netdev_tstamp_prequeue, skb);
81bbb3d4 4964
cf66ba58 4965 trace_netif_receive_skb(skb);
9b22ea56 4966
cc9bd5ce 4967 orig_dev = skb->dev;
8f903c70 4968
c1d2bbe1 4969 skb_reset_network_header(skb);
fda55eca
ED
4970 if (!skb_transport_header_was_set(skb))
4971 skb_reset_transport_header(skb);
0b5c9db1 4972 skb_reset_mac_len(skb);
1da177e4
LT
4973
4974 pt_prev = NULL;
4975
63d8ea7f 4976another_round:
b6858177 4977 skb->skb_iif = skb->dev->ifindex;
63d8ea7f
DM
4978
4979 __this_cpu_inc(softnet_data.processed);
4980
458bf2f2
SH
4981 if (static_branch_unlikely(&generic_xdp_needed_key)) {
4982 int ret2;
4983
4984 preempt_disable();
4985 ret2 = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog), skb);
4986 preempt_enable();
4987
4988 if (ret2 != XDP_PASS)
4989 return NET_RX_DROP;
4990 skb_reset_mac_len(skb);
4991 }
4992
8ad227ff
PM
4993 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
4994 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
0d5501c1 4995 skb = skb_vlan_untag(skb);
bcc6d479 4996 if (unlikely(!skb))
2c17d27c 4997 goto out;
bcc6d479
JP
4998 }
4999
e7246e12
WB
5000 if (skb_skip_tc_classify(skb))
5001 goto skip_classify;
1da177e4 5002
9754e293 5003 if (pfmemalloc)
b4b9e355
MG
5004 goto skip_taps;
5005
1da177e4 5006 list_for_each_entry_rcu(ptype, &ptype_all, list) {
7866a621
SN
5007 if (pt_prev)
5008 ret = deliver_skb(skb, pt_prev, orig_dev);
5009 pt_prev = ptype;
5010 }
5011
5012 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
5013 if (pt_prev)
5014 ret = deliver_skb(skb, pt_prev, orig_dev);
5015 pt_prev = ptype;
1da177e4
LT
5016 }
5017
b4b9e355 5018skip_taps:
1cf51900 5019#ifdef CONFIG_NET_INGRESS
aabf6772 5020 if (static_branch_unlikely(&ingress_needed_key)) {
1f211a1b 5021 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev);
4577139b 5022 if (!skb)
2c17d27c 5023 goto out;
e687ad60
PN
5024
5025 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
2c17d27c 5026 goto out;
4577139b 5027 }
1cf51900 5028#endif
a5135bcf 5029 skb_reset_tc(skb);
e7246e12 5030skip_classify:
9754e293 5031 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
b4b9e355
MG
5032 goto drop;
5033
df8a39de 5034 if (skb_vlan_tag_present(skb)) {
2425717b
JF
5035 if (pt_prev) {
5036 ret = deliver_skb(skb, pt_prev, orig_dev);
5037 pt_prev = NULL;
5038 }
48cc32d3 5039 if (vlan_do_receive(&skb))
2425717b
JF
5040 goto another_round;
5041 else if (unlikely(!skb))
2c17d27c 5042 goto out;
2425717b
JF
5043 }
5044
48cc32d3 5045 rx_handler = rcu_dereference(skb->dev->rx_handler);
ab95bfe0
JP
5046 if (rx_handler) {
5047 if (pt_prev) {
5048 ret = deliver_skb(skb, pt_prev, orig_dev);
5049 pt_prev = NULL;
5050 }
8a4eb573
JP
5051 switch (rx_handler(&skb)) {
5052 case RX_HANDLER_CONSUMED:
3bc1b1ad 5053 ret = NET_RX_SUCCESS;
2c17d27c 5054 goto out;
8a4eb573 5055 case RX_HANDLER_ANOTHER:
63d8ea7f 5056 goto another_round;
8a4eb573
JP
5057 case RX_HANDLER_EXACT:
5058 deliver_exact = true;
5059 case RX_HANDLER_PASS:
5060 break;
5061 default:
5062 BUG();
5063 }
ab95bfe0 5064 }
1da177e4 5065
df8a39de 5066 if (unlikely(skb_vlan_tag_present(skb))) {
36b2f61a
GV
5067check_vlan_id:
5068 if (skb_vlan_tag_get_id(skb)) {
5069 /* Vlan id is non 0 and vlan_do_receive() above couldn't
5070 * find vlan device.
5071 */
d4b812de 5072 skb->pkt_type = PACKET_OTHERHOST;
36b2f61a
GV
5073 } else if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
5074 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
5075 /* Outer header is 802.1P with vlan 0, inner header is
5076 * 802.1Q or 802.1AD and vlan_do_receive() above could
5077 * not find vlan dev for vlan id 0.
5078 */
5079 __vlan_hwaccel_clear_tag(skb);
5080 skb = skb_vlan_untag(skb);
5081 if (unlikely(!skb))
5082 goto out;
5083 if (vlan_do_receive(&skb))
5084 /* After stripping off 802.1P header with vlan 0
5085 * vlan dev is found for inner header.
5086 */
5087 goto another_round;
5088 else if (unlikely(!skb))
5089 goto out;
5090 else
5091 /* We have stripped outer 802.1P vlan 0 header.
5092 * But could not find vlan dev.
5093 * check again for vlan id to set OTHERHOST.
5094 */
5095 goto check_vlan_id;
5096 }
d4b812de
ED
5097 /* Note: we might in the future use prio bits
5098 * and set skb->priority like in vlan_do_receive()
5099 * For the time being, just ignore Priority Code Point
5100 */
b1817524 5101 __vlan_hwaccel_clear_tag(skb);
d4b812de 5102 }
48cc32d3 5103
7866a621
SN
5104 type = skb->protocol;
5105
63d8ea7f 5106 /* deliver only exact match when indicated */
7866a621
SN
5107 if (likely(!deliver_exact)) {
5108 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5109 &ptype_base[ntohs(type) &
5110 PTYPE_HASH_MASK]);
5111 }
1f3c8804 5112
7866a621
SN
5113 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5114 &orig_dev->ptype_specific);
5115
5116 if (unlikely(skb->dev != orig_dev)) {
5117 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5118 &skb->dev->ptype_specific);
1da177e4
LT
5119 }
5120
5121 if (pt_prev) {
1f8b977a 5122 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
0e698bf6 5123 goto drop;
88eb1944 5124 *ppt_prev = pt_prev;
1da177e4 5125 } else {
b4b9e355 5126drop:
6e7333d3
JW
5127 if (!deliver_exact)
5128 atomic_long_inc(&skb->dev->rx_dropped);
5129 else
5130 atomic_long_inc(&skb->dev->rx_nohandler);
1da177e4
LT
5131 kfree_skb(skb);
5132 /* Jamal, now you will not able to escape explaining
5133 * me how you were going to use this. :-)
5134 */
5135 ret = NET_RX_DROP;
5136 }
5137
2c17d27c 5138out:
9754e293
DM
5139 return ret;
5140}
5141
88eb1944
EC
5142static int __netif_receive_skb_one_core(struct sk_buff *skb, bool pfmemalloc)
5143{
5144 struct net_device *orig_dev = skb->dev;
5145 struct packet_type *pt_prev = NULL;
5146 int ret;
5147
5148 ret = __netif_receive_skb_core(skb, pfmemalloc, &pt_prev);
5149 if (pt_prev)
f5737cba
PA
5150 ret = INDIRECT_CALL_INET(pt_prev->func, ipv6_rcv, ip_rcv, skb,
5151 skb->dev, pt_prev, orig_dev);
88eb1944
EC
5152 return ret;
5153}
5154
1c601d82
JDB
5155/**
5156 * netif_receive_skb_core - special purpose version of netif_receive_skb
5157 * @skb: buffer to process
5158 *
5159 * More direct receive version of netif_receive_skb(). It should
5160 * only be used by callers that have a need to skip RPS and Generic XDP.
5161 * Caller must also take care of handling if (page_is_)pfmemalloc.
5162 *
5163 * This function may only be called from softirq context and interrupts
5164 * should be enabled.
5165 *
5166 * Return values (usually ignored):
5167 * NET_RX_SUCCESS: no congestion
5168 * NET_RX_DROP: packet was dropped
5169 */
5170int netif_receive_skb_core(struct sk_buff *skb)
5171{
5172 int ret;
5173
5174 rcu_read_lock();
88eb1944 5175 ret = __netif_receive_skb_one_core(skb, false);
1c601d82
JDB
5176 rcu_read_unlock();
5177
5178 return ret;
5179}
5180EXPORT_SYMBOL(netif_receive_skb_core);
5181
88eb1944
EC
5182static inline void __netif_receive_skb_list_ptype(struct list_head *head,
5183 struct packet_type *pt_prev,
5184 struct net_device *orig_dev)
4ce0017a
EC
5185{
5186 struct sk_buff *skb, *next;
5187
88eb1944
EC
5188 if (!pt_prev)
5189 return;
5190 if (list_empty(head))
5191 return;
17266ee9 5192 if (pt_prev->list_func != NULL)
fdf71426
PA
5193 INDIRECT_CALL_INET(pt_prev->list_func, ipv6_list_rcv,
5194 ip_list_rcv, head, pt_prev, orig_dev);
17266ee9 5195 else
9a5a90d1
AL
5196 list_for_each_entry_safe(skb, next, head, list) {
5197 skb_list_del_init(skb);
fdf71426 5198 pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
9a5a90d1 5199 }
88eb1944
EC
5200}
5201
5202static void __netif_receive_skb_list_core(struct list_head *head, bool pfmemalloc)
5203{
5204 /* Fast-path assumptions:
5205 * - There is no RX handler.
5206 * - Only one packet_type matches.
5207 * If either of these fails, we will end up doing some per-packet
5208 * processing in-line, then handling the 'last ptype' for the whole
5209 * sublist. This can't cause out-of-order delivery to any single ptype,
5210 * because the 'last ptype' must be constant across the sublist, and all
5211 * other ptypes are handled per-packet.
5212 */
5213 /* Current (common) ptype of sublist */
5214 struct packet_type *pt_curr = NULL;
5215 /* Current (common) orig_dev of sublist */
5216 struct net_device *od_curr = NULL;
5217 struct list_head sublist;
5218 struct sk_buff *skb, *next;
5219
9af86f93 5220 INIT_LIST_HEAD(&sublist);
88eb1944
EC
5221 list_for_each_entry_safe(skb, next, head, list) {
5222 struct net_device *orig_dev = skb->dev;
5223 struct packet_type *pt_prev = NULL;
5224
22f6bbb7 5225 skb_list_del_init(skb);
88eb1944 5226 __netif_receive_skb_core(skb, pfmemalloc, &pt_prev);
9af86f93
EC
5227 if (!pt_prev)
5228 continue;
88eb1944
EC
5229 if (pt_curr != pt_prev || od_curr != orig_dev) {
5230 /* dispatch old sublist */
88eb1944
EC
5231 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
5232 /* start new sublist */
9af86f93 5233 INIT_LIST_HEAD(&sublist);
88eb1944
EC
5234 pt_curr = pt_prev;
5235 od_curr = orig_dev;
5236 }
9af86f93 5237 list_add_tail(&skb->list, &sublist);
88eb1944
EC
5238 }
5239
5240 /* dispatch final sublist */
9af86f93 5241 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
4ce0017a
EC
5242}
5243
9754e293
DM
5244static int __netif_receive_skb(struct sk_buff *skb)
5245{
5246 int ret;
5247
5248 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
f1083048 5249 unsigned int noreclaim_flag;
9754e293
DM
5250
5251 /*
5252 * PFMEMALLOC skbs are special, they should
5253 * - be delivered to SOCK_MEMALLOC sockets only
5254 * - stay away from userspace
5255 * - have bounded memory usage
5256 *
5257 * Use PF_MEMALLOC as this saves us from propagating the allocation
5258 * context down to all allocation sites.
5259 */
f1083048 5260 noreclaim_flag = memalloc_noreclaim_save();
88eb1944 5261 ret = __netif_receive_skb_one_core(skb, true);
f1083048 5262 memalloc_noreclaim_restore(noreclaim_flag);
9754e293 5263 } else
88eb1944 5264 ret = __netif_receive_skb_one_core(skb, false);
9754e293 5265
1da177e4
LT
5266 return ret;
5267}
0a9627f2 5268
4ce0017a
EC
5269static void __netif_receive_skb_list(struct list_head *head)
5270{
5271 unsigned long noreclaim_flag = 0;
5272 struct sk_buff *skb, *next;
5273 bool pfmemalloc = false; /* Is current sublist PF_MEMALLOC? */
5274
5275 list_for_each_entry_safe(skb, next, head, list) {
5276 if ((sk_memalloc_socks() && skb_pfmemalloc(skb)) != pfmemalloc) {
5277 struct list_head sublist;
5278
5279 /* Handle the previous sublist */
5280 list_cut_before(&sublist, head, &skb->list);
b9f463d6
EC
5281 if (!list_empty(&sublist))
5282 __netif_receive_skb_list_core(&sublist, pfmemalloc);
4ce0017a
EC
5283 pfmemalloc = !pfmemalloc;
5284 /* See comments in __netif_receive_skb */
5285 if (pfmemalloc)
5286 noreclaim_flag = memalloc_noreclaim_save();
5287 else
5288 memalloc_noreclaim_restore(noreclaim_flag);
5289 }
5290 }
5291 /* Handle the remaining sublist */
b9f463d6
EC
5292 if (!list_empty(head))
5293 __netif_receive_skb_list_core(head, pfmemalloc);
4ce0017a
EC
5294 /* Restore pflags */
5295 if (pfmemalloc)
5296 memalloc_noreclaim_restore(noreclaim_flag);
5297}
5298
f4e63525 5299static int generic_xdp_install(struct net_device *dev, struct netdev_bpf *xdp)
b5cdae32 5300{
58038695 5301 struct bpf_prog *old = rtnl_dereference(dev->xdp_prog);
b5cdae32
DM
5302 struct bpf_prog *new = xdp->prog;
5303 int ret = 0;
5304
5305 switch (xdp->command) {
58038695 5306 case XDP_SETUP_PROG:
b5cdae32
DM
5307 rcu_assign_pointer(dev->xdp_prog, new);
5308 if (old)
5309 bpf_prog_put(old);
5310
5311 if (old && !new) {
02786475 5312 static_branch_dec(&generic_xdp_needed_key);
b5cdae32 5313 } else if (new && !old) {
02786475 5314 static_branch_inc(&generic_xdp_needed_key);
b5cdae32 5315 dev_disable_lro(dev);
56f5aa77 5316 dev_disable_gro_hw(dev);
b5cdae32
DM
5317 }
5318 break;
b5cdae32
DM
5319
5320 case XDP_QUERY_PROG:
58038695 5321 xdp->prog_id = old ? old->aux->id : 0;
b5cdae32
DM
5322 break;
5323
5324 default:
5325 ret = -EINVAL;
5326 break;
5327 }
5328
5329 return ret;
5330}
5331
ae78dbfa 5332static int netif_receive_skb_internal(struct sk_buff *skb)
0a9627f2 5333{
2c17d27c
JA
5334 int ret;
5335
588f0330 5336 net_timestamp_check(netdev_tstamp_prequeue, skb);
3b098e2d 5337
c1f19b51
RC
5338 if (skb_defer_rx_timestamp(skb))
5339 return NET_RX_SUCCESS;
5340
bbbe211c 5341 rcu_read_lock();
df334545 5342#ifdef CONFIG_RPS
dc05360f 5343 if (static_branch_unlikely(&rps_needed)) {
3b098e2d 5344 struct rps_dev_flow voidflow, *rflow = &voidflow;
2c17d27c 5345 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
0a9627f2 5346
3b098e2d
ED
5347 if (cpu >= 0) {
5348 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
5349 rcu_read_unlock();
adc9300e 5350 return ret;
3b098e2d 5351 }
fec5e652 5352 }
1e94d72f 5353#endif
2c17d27c
JA
5354 ret = __netif_receive_skb(skb);
5355 rcu_read_unlock();
5356 return ret;
0a9627f2 5357}
ae78dbfa 5358
7da517a3
EC
5359static void netif_receive_skb_list_internal(struct list_head *head)
5360{
7da517a3 5361 struct sk_buff *skb, *next;
8c057efa 5362 struct list_head sublist;
7da517a3 5363
8c057efa 5364 INIT_LIST_HEAD(&sublist);
7da517a3
EC
5365 list_for_each_entry_safe(skb, next, head, list) {
5366 net_timestamp_check(netdev_tstamp_prequeue, skb);
22f6bbb7 5367 skb_list_del_init(skb);
8c057efa
EC
5368 if (!skb_defer_rx_timestamp(skb))
5369 list_add_tail(&skb->list, &sublist);
7da517a3 5370 }
8c057efa 5371 list_splice_init(&sublist, head);
7da517a3 5372
7da517a3
EC
5373 rcu_read_lock();
5374#ifdef CONFIG_RPS
dc05360f 5375 if (static_branch_unlikely(&rps_needed)) {
7da517a3
EC
5376 list_for_each_entry_safe(skb, next, head, list) {
5377 struct rps_dev_flow voidflow, *rflow = &voidflow;
5378 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
5379
5380 if (cpu >= 0) {
8c057efa 5381 /* Will be handled, remove from list */
22f6bbb7 5382 skb_list_del_init(skb);
8c057efa 5383 enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
7da517a3
EC
5384 }
5385 }
5386 }
5387#endif
5388 __netif_receive_skb_list(head);
5389 rcu_read_unlock();
5390}
5391
ae78dbfa
BH
5392/**
5393 * netif_receive_skb - process receive buffer from network
5394 * @skb: buffer to process
5395 *
5396 * netif_receive_skb() is the main receive data processing function.
5397 * It always succeeds. The buffer may be dropped during processing
5398 * for congestion control or by the protocol layers.
5399 *
5400 * This function may only be called from softirq context and interrupts
5401 * should be enabled.
5402 *
5403 * Return values (usually ignored):
5404 * NET_RX_SUCCESS: no congestion
5405 * NET_RX_DROP: packet was dropped
5406 */
04eb4489 5407int netif_receive_skb(struct sk_buff *skb)
ae78dbfa 5408{
b0e3f1bd
GB
5409 int ret;
5410
ae78dbfa
BH
5411 trace_netif_receive_skb_entry(skb);
5412
b0e3f1bd
GB
5413 ret = netif_receive_skb_internal(skb);
5414 trace_netif_receive_skb_exit(ret);
5415
5416 return ret;
ae78dbfa 5417}
04eb4489 5418EXPORT_SYMBOL(netif_receive_skb);
1da177e4 5419
f6ad8c1b
EC
5420/**
5421 * netif_receive_skb_list - process many receive buffers from network
5422 * @head: list of skbs to process.
5423 *
7da517a3
EC
5424 * Since return value of netif_receive_skb() is normally ignored, and
5425 * wouldn't be meaningful for a list, this function returns void.
f6ad8c1b
EC
5426 *
5427 * This function may only be called from softirq context and interrupts
5428 * should be enabled.
5429 */
5430void netif_receive_skb_list(struct list_head *head)
5431{
7da517a3 5432 struct sk_buff *skb;
f6ad8c1b 5433
b9f463d6
EC
5434 if (list_empty(head))
5435 return;
b0e3f1bd
GB
5436 if (trace_netif_receive_skb_list_entry_enabled()) {
5437 list_for_each_entry(skb, head, list)
5438 trace_netif_receive_skb_list_entry(skb);
5439 }
7da517a3 5440 netif_receive_skb_list_internal(head);
b0e3f1bd 5441 trace_netif_receive_skb_list_exit(0);
f6ad8c1b
EC
5442}
5443EXPORT_SYMBOL(netif_receive_skb_list);
5444
41852497 5445DEFINE_PER_CPU(struct work_struct, flush_works);
145dd5f9
PA
5446
5447/* Network device is going away, flush any packets still pending */
5448static void flush_backlog(struct work_struct *work)
6e583ce5 5449{
6e583ce5 5450 struct sk_buff *skb, *tmp;
145dd5f9
PA
5451 struct softnet_data *sd;
5452
5453 local_bh_disable();
5454 sd = this_cpu_ptr(&softnet_data);
6e583ce5 5455
145dd5f9 5456 local_irq_disable();
e36fa2f7 5457 rps_lock(sd);
6e7676c1 5458 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
41852497 5459 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
e36fa2f7 5460 __skb_unlink(skb, &sd->input_pkt_queue);
6e583ce5 5461 kfree_skb(skb);
76cc8b13 5462 input_queue_head_incr(sd);
6e583ce5 5463 }
6e7676c1 5464 }
e36fa2f7 5465 rps_unlock(sd);
145dd5f9 5466 local_irq_enable();
6e7676c1
CG
5467
5468 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
41852497 5469 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
6e7676c1
CG
5470 __skb_unlink(skb, &sd->process_queue);
5471 kfree_skb(skb);
76cc8b13 5472 input_queue_head_incr(sd);
6e7676c1
CG
5473 }
5474 }
145dd5f9
PA
5475 local_bh_enable();
5476}
5477
41852497 5478static void flush_all_backlogs(void)
145dd5f9
PA
5479{
5480 unsigned int cpu;
5481
5482 get_online_cpus();
5483
41852497
ED
5484 for_each_online_cpu(cpu)
5485 queue_work_on(cpu, system_highpri_wq,
5486 per_cpu_ptr(&flush_works, cpu));
145dd5f9
PA
5487
5488 for_each_online_cpu(cpu)
41852497 5489 flush_work(per_cpu_ptr(&flush_works, cpu));
145dd5f9
PA
5490
5491 put_online_cpus();
6e583ce5
SH
5492}
5493
c8079432
MM
5494/* Pass the currently batched GRO_NORMAL SKBs up to the stack. */
5495static void gro_normal_list(struct napi_struct *napi)
5496{
5497 if (!napi->rx_count)
5498 return;
5499 netif_receive_skb_list_internal(&napi->rx_list);
5500 INIT_LIST_HEAD(&napi->rx_list);
5501 napi->rx_count = 0;
5502}
5503
5504/* Queue one GRO_NORMAL SKB up for list processing. If batch size exceeded,
5505 * pass the whole batch up to the stack.
5506 */
5507static void gro_normal_one(struct napi_struct *napi, struct sk_buff *skb)
5508{
5509 list_add_tail(&skb->list, &napi->rx_list);
5510 if (++napi->rx_count >= gro_normal_batch)
5511 gro_normal_list(napi);
5512}
5513
aaa5d90b
PA
5514INDIRECT_CALLABLE_DECLARE(int inet_gro_complete(struct sk_buff *, int));
5515INDIRECT_CALLABLE_DECLARE(int ipv6_gro_complete(struct sk_buff *, int));
c8079432 5516static int napi_gro_complete(struct napi_struct *napi, struct sk_buff *skb)
d565b0a1 5517{
22061d80 5518 struct packet_offload *ptype;
d565b0a1 5519 __be16 type = skb->protocol;
22061d80 5520 struct list_head *head = &offload_base;
d565b0a1
HX
5521 int err = -ENOENT;
5522
c3c7c254
ED
5523 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
5524
fc59f9a3
HX
5525 if (NAPI_GRO_CB(skb)->count == 1) {
5526 skb_shinfo(skb)->gso_size = 0;
d565b0a1 5527 goto out;
fc59f9a3 5528 }
d565b0a1
HX
5529
5530 rcu_read_lock();
5531 list_for_each_entry_rcu(ptype, head, list) {
f191a1d1 5532 if (ptype->type != type || !ptype->callbacks.gro_complete)
d565b0a1
HX
5533 continue;
5534
aaa5d90b
PA
5535 err = INDIRECT_CALL_INET(ptype->callbacks.gro_complete,
5536 ipv6_gro_complete, inet_gro_complete,
5537 skb, 0);
d565b0a1
HX
5538 break;
5539 }
5540 rcu_read_unlock();
5541
5542 if (err) {
5543 WARN_ON(&ptype->list == head);
5544 kfree_skb(skb);
5545 return NET_RX_SUCCESS;
5546 }
5547
5548out:
c8079432
MM
5549 gro_normal_one(napi, skb);
5550 return NET_RX_SUCCESS;
d565b0a1
HX
5551}
5552
6312fe77 5553static void __napi_gro_flush_chain(struct napi_struct *napi, u32 index,
07d78363 5554 bool flush_old)
d565b0a1 5555{
6312fe77 5556 struct list_head *head = &napi->gro_hash[index].list;
d4546c25 5557 struct sk_buff *skb, *p;
2e71a6f8 5558
07d78363 5559 list_for_each_entry_safe_reverse(skb, p, head, list) {
2e71a6f8
ED
5560 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
5561 return;
992cba7e 5562 skb_list_del_init(skb);
c8079432 5563 napi_gro_complete(napi, skb);
6312fe77 5564 napi->gro_hash[index].count--;
d565b0a1 5565 }
d9f37d01
LR
5566
5567 if (!napi->gro_hash[index].count)
5568 __clear_bit(index, &napi->gro_bitmask);
d565b0a1 5569}
07d78363 5570
6312fe77 5571/* napi->gro_hash[].list contains packets ordered by age.
07d78363
DM
5572 * youngest packets at the head of it.
5573 * Complete skbs in reverse order to reduce latencies.
5574 */
5575void napi_gro_flush(struct napi_struct *napi, bool flush_old)
5576{
42519ede
ED
5577 unsigned long bitmask = napi->gro_bitmask;
5578 unsigned int i, base = ~0U;
07d78363 5579
42519ede
ED
5580 while ((i = ffs(bitmask)) != 0) {
5581 bitmask >>= i;
5582 base += i;
5583 __napi_gro_flush_chain(napi, base, flush_old);
d9f37d01 5584 }
07d78363 5585}
86cac58b 5586EXPORT_SYMBOL(napi_gro_flush);
d565b0a1 5587
07d78363
DM
5588static struct list_head *gro_list_prepare(struct napi_struct *napi,
5589 struct sk_buff *skb)
89c5fa33 5590{
89c5fa33 5591 unsigned int maclen = skb->dev->hard_header_len;
0b4cec8c 5592 u32 hash = skb_get_hash_raw(skb);
07d78363 5593 struct list_head *head;
d4546c25 5594 struct sk_buff *p;
89c5fa33 5595
6312fe77 5596 head = &napi->gro_hash[hash & (GRO_HASH_BUCKETS - 1)].list;
07d78363 5597 list_for_each_entry(p, head, list) {
89c5fa33
ED
5598 unsigned long diffs;
5599
0b4cec8c
TH
5600 NAPI_GRO_CB(p)->flush = 0;
5601
5602 if (hash != skb_get_hash_raw(p)) {
5603 NAPI_GRO_CB(p)->same_flow = 0;
5604 continue;
5605 }
5606
89c5fa33 5607 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
b1817524
MM
5608 diffs |= skb_vlan_tag_present(p) ^ skb_vlan_tag_present(skb);
5609 if (skb_vlan_tag_present(p))
fc5141cb 5610 diffs |= skb_vlan_tag_get(p) ^ skb_vlan_tag_get(skb);
ce87fc6c 5611 diffs |= skb_metadata_dst_cmp(p, skb);
de8f3a83 5612 diffs |= skb_metadata_differs(p, skb);
89c5fa33
ED
5613 if (maclen == ETH_HLEN)
5614 diffs |= compare_ether_header(skb_mac_header(p),
a50e233c 5615 skb_mac_header(skb));
89c5fa33
ED
5616 else if (!diffs)
5617 diffs = memcmp(skb_mac_header(p),
a50e233c 5618 skb_mac_header(skb),
89c5fa33
ED
5619 maclen);
5620 NAPI_GRO_CB(p)->same_flow = !diffs;
89c5fa33 5621 }
07d78363
DM
5622
5623 return head;
89c5fa33
ED
5624}
5625
299603e8
JC
5626static void skb_gro_reset_offset(struct sk_buff *skb)
5627{
5628 const struct skb_shared_info *pinfo = skb_shinfo(skb);
5629 const skb_frag_t *frag0 = &pinfo->frags[0];
5630
5631 NAPI_GRO_CB(skb)->data_offset = 0;
5632 NAPI_GRO_CB(skb)->frag0 = NULL;
5633 NAPI_GRO_CB(skb)->frag0_len = 0;
5634
8aef998d 5635 if (!skb_headlen(skb) && pinfo->nr_frags &&
299603e8
JC
5636 !PageHighMem(skb_frag_page(frag0))) {
5637 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
7cfd5fd5
ED
5638 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
5639 skb_frag_size(frag0),
5640 skb->end - skb->tail);
89c5fa33
ED
5641 }
5642}
5643
a50e233c
ED
5644static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
5645{
5646 struct skb_shared_info *pinfo = skb_shinfo(skb);
5647
5648 BUG_ON(skb->end - skb->tail < grow);
5649
5650 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
5651
5652 skb->data_len -= grow;
5653 skb->tail += grow;
5654
b54c9d5b 5655 skb_frag_off_add(&pinfo->frags[0], grow);
a50e233c
ED
5656 skb_frag_size_sub(&pinfo->frags[0], grow);
5657
5658 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
5659 skb_frag_unref(skb, 0);
5660 memmove(pinfo->frags, pinfo->frags + 1,
5661 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
5662 }
5663}
5664
c8079432 5665static void gro_flush_oldest(struct napi_struct *napi, struct list_head *head)
07d78363 5666{
6312fe77 5667 struct sk_buff *oldest;
07d78363 5668
6312fe77 5669 oldest = list_last_entry(head, struct sk_buff, list);
07d78363 5670
6312fe77 5671 /* We are called with head length >= MAX_GRO_SKBS, so this is
07d78363
DM
5672 * impossible.
5673 */
5674 if (WARN_ON_ONCE(!oldest))
5675 return;
5676
d9f37d01
LR
5677 /* Do not adjust napi->gro_hash[].count, caller is adding a new
5678 * SKB to the chain.
07d78363 5679 */
ece23711 5680 skb_list_del_init(oldest);
c8079432 5681 napi_gro_complete(napi, oldest);
07d78363
DM
5682}
5683
aaa5d90b
PA
5684INDIRECT_CALLABLE_DECLARE(struct sk_buff *inet_gro_receive(struct list_head *,
5685 struct sk_buff *));
5686INDIRECT_CALLABLE_DECLARE(struct sk_buff *ipv6_gro_receive(struct list_head *,
5687 struct sk_buff *));
bb728820 5688static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
d565b0a1 5689{
6312fe77 5690 u32 hash = skb_get_hash_raw(skb) & (GRO_HASH_BUCKETS - 1);
d4546c25 5691 struct list_head *head = &offload_base;
22061d80 5692 struct packet_offload *ptype;
d565b0a1 5693 __be16 type = skb->protocol;
07d78363 5694 struct list_head *gro_head;
d4546c25 5695 struct sk_buff *pp = NULL;
5b252f0c 5696 enum gro_result ret;
d4546c25 5697 int same_flow;
a50e233c 5698 int grow;
d565b0a1 5699
b5cdae32 5700 if (netif_elide_gro(skb->dev))
d565b0a1
HX
5701 goto normal;
5702
07d78363 5703 gro_head = gro_list_prepare(napi, skb);
89c5fa33 5704
d565b0a1
HX
5705 rcu_read_lock();
5706 list_for_each_entry_rcu(ptype, head, list) {
f191a1d1 5707 if (ptype->type != type || !ptype->callbacks.gro_receive)
d565b0a1
HX
5708 continue;
5709
86911732 5710 skb_set_network_header(skb, skb_gro_offset(skb));
efd9450e 5711 skb_reset_mac_len(skb);
d565b0a1 5712 NAPI_GRO_CB(skb)->same_flow = 0;
d61d072e 5713 NAPI_GRO_CB(skb)->flush = skb_is_gso(skb) || skb_has_frag_list(skb);
5d38a079 5714 NAPI_GRO_CB(skb)->free = 0;
fac8e0f5 5715 NAPI_GRO_CB(skb)->encap_mark = 0;
fcd91dd4 5716 NAPI_GRO_CB(skb)->recursion_counter = 0;
a0ca153f 5717 NAPI_GRO_CB(skb)->is_fou = 0;
1530545e 5718 NAPI_GRO_CB(skb)->is_atomic = 1;
15e2396d 5719 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
d565b0a1 5720
662880f4
TH
5721 /* Setup for GRO checksum validation */
5722 switch (skb->ip_summed) {
5723 case CHECKSUM_COMPLETE:
5724 NAPI_GRO_CB(skb)->csum = skb->csum;
5725 NAPI_GRO_CB(skb)->csum_valid = 1;
5726 NAPI_GRO_CB(skb)->csum_cnt = 0;
5727 break;
5728 case CHECKSUM_UNNECESSARY:
5729 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
5730 NAPI_GRO_CB(skb)->csum_valid = 0;
5731 break;
5732 default:
5733 NAPI_GRO_CB(skb)->csum_cnt = 0;
5734 NAPI_GRO_CB(skb)->csum_valid = 0;
5735 }
d565b0a1 5736
aaa5d90b
PA
5737 pp = INDIRECT_CALL_INET(ptype->callbacks.gro_receive,
5738 ipv6_gro_receive, inet_gro_receive,
5739 gro_head, skb);
d565b0a1
HX
5740 break;
5741 }
5742 rcu_read_unlock();
5743
5744 if (&ptype->list == head)
5745 goto normal;
5746
25393d3f
SK
5747 if (IS_ERR(pp) && PTR_ERR(pp) == -EINPROGRESS) {
5748 ret = GRO_CONSUMED;
5749 goto ok;
5750 }
5751
0da2afd5 5752 same_flow = NAPI_GRO_CB(skb)->same_flow;
5d0d9be8 5753 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
0da2afd5 5754
d565b0a1 5755 if (pp) {
992cba7e 5756 skb_list_del_init(pp);
c8079432 5757 napi_gro_complete(napi, pp);
6312fe77 5758 napi->gro_hash[hash].count--;
d565b0a1
HX
5759 }
5760
0da2afd5 5761 if (same_flow)
d565b0a1
HX
5762 goto ok;
5763
600adc18 5764 if (NAPI_GRO_CB(skb)->flush)
d565b0a1 5765 goto normal;
d565b0a1 5766
6312fe77 5767 if (unlikely(napi->gro_hash[hash].count >= MAX_GRO_SKBS)) {
c8079432 5768 gro_flush_oldest(napi, gro_head);
600adc18 5769 } else {
6312fe77 5770 napi->gro_hash[hash].count++;
600adc18 5771 }
d565b0a1 5772 NAPI_GRO_CB(skb)->count = 1;
2e71a6f8 5773 NAPI_GRO_CB(skb)->age = jiffies;
29e98242 5774 NAPI_GRO_CB(skb)->last = skb;
86911732 5775 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
07d78363 5776 list_add(&skb->list, gro_head);
5d0d9be8 5777 ret = GRO_HELD;
d565b0a1 5778
ad0f9904 5779pull:
a50e233c
ED
5780 grow = skb_gro_offset(skb) - skb_headlen(skb);
5781 if (grow > 0)
5782 gro_pull_from_frag0(skb, grow);
d565b0a1 5783ok:
d9f37d01
LR
5784 if (napi->gro_hash[hash].count) {
5785 if (!test_bit(hash, &napi->gro_bitmask))
5786 __set_bit(hash, &napi->gro_bitmask);
5787 } else if (test_bit(hash, &napi->gro_bitmask)) {
5788 __clear_bit(hash, &napi->gro_bitmask);
5789 }
5790
5d0d9be8 5791 return ret;
d565b0a1
HX
5792
5793normal:
ad0f9904
HX
5794 ret = GRO_NORMAL;
5795 goto pull;
5d38a079 5796}
96e93eab 5797
bf5a755f
JC
5798struct packet_offload *gro_find_receive_by_type(__be16 type)
5799{
5800 struct list_head *offload_head = &offload_base;
5801 struct packet_offload *ptype;
5802
5803 list_for_each_entry_rcu(ptype, offload_head, list) {
5804 if (ptype->type != type || !ptype->callbacks.gro_receive)
5805 continue;
5806 return ptype;
5807 }
5808 return NULL;
5809}
e27a2f83 5810EXPORT_SYMBOL(gro_find_receive_by_type);
bf5a755f
JC
5811
5812struct packet_offload *gro_find_complete_by_type(__be16 type)
5813{
5814 struct list_head *offload_head = &offload_base;
5815 struct packet_offload *ptype;
5816
5817 list_for_each_entry_rcu(ptype, offload_head, list) {
5818 if (ptype->type != type || !ptype->callbacks.gro_complete)
5819 continue;
5820 return ptype;
5821 }
5822 return NULL;
5823}
e27a2f83 5824EXPORT_SYMBOL(gro_find_complete_by_type);
5d38a079 5825
e44699d2
MK
5826static void napi_skb_free_stolen_head(struct sk_buff *skb)
5827{
5828 skb_dst_drop(skb);
174e2381 5829 skb_ext_put(skb);
e44699d2
MK
5830 kmem_cache_free(skbuff_head_cache, skb);
5831}
5832
6570bc79
AL
5833static gro_result_t napi_skb_finish(struct napi_struct *napi,
5834 struct sk_buff *skb,
5835 gro_result_t ret)
5d38a079 5836{
5d0d9be8
HX
5837 switch (ret) {
5838 case GRO_NORMAL:
6570bc79 5839 gro_normal_one(napi, skb);
c7c4b3b6 5840 break;
5d38a079 5841
5d0d9be8 5842 case GRO_DROP:
5d38a079
HX
5843 kfree_skb(skb);
5844 break;
5b252f0c 5845
daa86548 5846 case GRO_MERGED_FREE:
e44699d2
MK
5847 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
5848 napi_skb_free_stolen_head(skb);
5849 else
d7e8883c 5850 __kfree_skb(skb);
daa86548
ED
5851 break;
5852
5b252f0c
BH
5853 case GRO_HELD:
5854 case GRO_MERGED:
25393d3f 5855 case GRO_CONSUMED:
5b252f0c 5856 break;
5d38a079
HX
5857 }
5858
c7c4b3b6 5859 return ret;
5d0d9be8 5860}
5d0d9be8 5861
c7c4b3b6 5862gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
5d0d9be8 5863{
b0e3f1bd
GB
5864 gro_result_t ret;
5865
93f93a44 5866 skb_mark_napi_id(skb, napi);
ae78dbfa 5867 trace_napi_gro_receive_entry(skb);
86911732 5868
a50e233c
ED
5869 skb_gro_reset_offset(skb);
5870
6570bc79 5871 ret = napi_skb_finish(napi, skb, dev_gro_receive(napi, skb));
b0e3f1bd
GB
5872 trace_napi_gro_receive_exit(ret);
5873
5874 return ret;
d565b0a1
HX
5875}
5876EXPORT_SYMBOL(napi_gro_receive);
5877
d0c2b0d2 5878static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
96e93eab 5879{
93a35f59
ED
5880 if (unlikely(skb->pfmemalloc)) {
5881 consume_skb(skb);
5882 return;
5883 }
96e93eab 5884 __skb_pull(skb, skb_headlen(skb));
2a2a459e
ED
5885 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
5886 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
b1817524 5887 __vlan_hwaccel_clear_tag(skb);
66c46d74 5888 skb->dev = napi->dev;
6d152e23 5889 skb->skb_iif = 0;
33d9a2c7
ED
5890
5891 /* eth_type_trans() assumes pkt_type is PACKET_HOST */
5892 skb->pkt_type = PACKET_HOST;
5893
c3caf119
JC
5894 skb->encapsulation = 0;
5895 skb_shinfo(skb)->gso_type = 0;
e33d0ba8 5896 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
174e2381 5897 skb_ext_reset(skb);
96e93eab
HX
5898
5899 napi->skb = skb;
5900}
96e93eab 5901
76620aaf 5902struct sk_buff *napi_get_frags(struct napi_struct *napi)
5d38a079 5903{
5d38a079 5904 struct sk_buff *skb = napi->skb;
5d38a079
HX
5905
5906 if (!skb) {
fd11a83d 5907 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
e2f9dc3b
ED
5908 if (skb) {
5909 napi->skb = skb;
5910 skb_mark_napi_id(skb, napi);
5911 }
80595d59 5912 }
96e93eab
HX
5913 return skb;
5914}
76620aaf 5915EXPORT_SYMBOL(napi_get_frags);
96e93eab 5916
a50e233c
ED
5917static gro_result_t napi_frags_finish(struct napi_struct *napi,
5918 struct sk_buff *skb,
5919 gro_result_t ret)
96e93eab 5920{
5d0d9be8
HX
5921 switch (ret) {
5922 case GRO_NORMAL:
a50e233c
ED
5923 case GRO_HELD:
5924 __skb_push(skb, ETH_HLEN);
5925 skb->protocol = eth_type_trans(skb, skb->dev);
323ebb61
EC
5926 if (ret == GRO_NORMAL)
5927 gro_normal_one(napi, skb);
86911732 5928 break;
5d38a079 5929
5d0d9be8 5930 case GRO_DROP:
5d0d9be8
HX
5931 napi_reuse_skb(napi, skb);
5932 break;
5b252f0c 5933
e44699d2
MK
5934 case GRO_MERGED_FREE:
5935 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
5936 napi_skb_free_stolen_head(skb);
5937 else
5938 napi_reuse_skb(napi, skb);
5939 break;
5940
5b252f0c 5941 case GRO_MERGED:
25393d3f 5942 case GRO_CONSUMED:
5b252f0c 5943 break;
5d0d9be8 5944 }
5d38a079 5945
c7c4b3b6 5946 return ret;
5d38a079 5947}
5d0d9be8 5948
a50e233c
ED
5949/* Upper GRO stack assumes network header starts at gro_offset=0
5950 * Drivers could call both napi_gro_frags() and napi_gro_receive()
5951 * We copy ethernet header into skb->data to have a common layout.
5952 */
4adb9c4a 5953static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
76620aaf
HX
5954{
5955 struct sk_buff *skb = napi->skb;
a50e233c
ED
5956 const struct ethhdr *eth;
5957 unsigned int hlen = sizeof(*eth);
76620aaf
HX
5958
5959 napi->skb = NULL;
5960
a50e233c
ED
5961 skb_reset_mac_header(skb);
5962 skb_gro_reset_offset(skb);
5963
a50e233c
ED
5964 if (unlikely(skb_gro_header_hard(skb, hlen))) {
5965 eth = skb_gro_header_slow(skb, hlen, 0);
5966 if (unlikely(!eth)) {
4da46ceb
AC
5967 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
5968 __func__, napi->dev->name);
a50e233c
ED
5969 napi_reuse_skb(napi, skb);
5970 return NULL;
5971 }
5972 } else {
a4270d67 5973 eth = (const struct ethhdr *)skb->data;
a50e233c
ED
5974 gro_pull_from_frag0(skb, hlen);
5975 NAPI_GRO_CB(skb)->frag0 += hlen;
5976 NAPI_GRO_CB(skb)->frag0_len -= hlen;
76620aaf 5977 }
a50e233c
ED
5978 __skb_pull(skb, hlen);
5979
5980 /*
5981 * This works because the only protocols we care about don't require
5982 * special handling.
5983 * We'll fix it up properly in napi_frags_finish()
5984 */
5985 skb->protocol = eth->h_proto;
76620aaf 5986
76620aaf
HX
5987 return skb;
5988}
76620aaf 5989
c7c4b3b6 5990gro_result_t napi_gro_frags(struct napi_struct *napi)
5d0d9be8 5991{
b0e3f1bd 5992 gro_result_t ret;
76620aaf 5993 struct sk_buff *skb = napi_frags_skb(napi);
5d0d9be8
HX
5994
5995 if (!skb)
c7c4b3b6 5996 return GRO_DROP;
5d0d9be8 5997
ae78dbfa
BH
5998 trace_napi_gro_frags_entry(skb);
5999
b0e3f1bd
GB
6000 ret = napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
6001 trace_napi_gro_frags_exit(ret);
6002
6003 return ret;
5d0d9be8 6004}
5d38a079
HX
6005EXPORT_SYMBOL(napi_gro_frags);
6006
573e8fca
TH
6007/* Compute the checksum from gro_offset and return the folded value
6008 * after adding in any pseudo checksum.
6009 */
6010__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
6011{
6012 __wsum wsum;
6013 __sum16 sum;
6014
6015 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
6016
6017 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
6018 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
14641931 6019 /* See comments in __skb_checksum_complete(). */
573e8fca
TH
6020 if (likely(!sum)) {
6021 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
6022 !skb->csum_complete_sw)
7fe50ac8 6023 netdev_rx_csum_fault(skb->dev, skb);
573e8fca
TH
6024 }
6025
6026 NAPI_GRO_CB(skb)->csum = wsum;
6027 NAPI_GRO_CB(skb)->csum_valid = 1;
6028
6029 return sum;
6030}
6031EXPORT_SYMBOL(__skb_gro_checksum_complete);
6032
773fc8f6 6033static void net_rps_send_ipi(struct softnet_data *remsd)
6034{
6035#ifdef CONFIG_RPS
6036 while (remsd) {
6037 struct softnet_data *next = remsd->rps_ipi_next;
6038
6039 if (cpu_online(remsd->cpu))
6040 smp_call_function_single_async(remsd->cpu, &remsd->csd);
6041 remsd = next;
6042 }
6043#endif
6044}
6045
e326bed2 6046/*
855abcf0 6047 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
e326bed2
ED
6048 * Note: called with local irq disabled, but exits with local irq enabled.
6049 */
6050static void net_rps_action_and_irq_enable(struct softnet_data *sd)
6051{
6052#ifdef CONFIG_RPS
6053 struct softnet_data *remsd = sd->rps_ipi_list;
6054
6055 if (remsd) {
6056 sd->rps_ipi_list = NULL;
6057
6058 local_irq_enable();
6059
6060 /* Send pending IPI's to kick RPS processing on remote cpus. */
773fc8f6 6061 net_rps_send_ipi(remsd);
e326bed2
ED
6062 } else
6063#endif
6064 local_irq_enable();
6065}
6066
d75b1ade
ED
6067static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
6068{
6069#ifdef CONFIG_RPS
6070 return sd->rps_ipi_list != NULL;
6071#else
6072 return false;
6073#endif
6074}
6075
bea3348e 6076static int process_backlog(struct napi_struct *napi, int quota)
1da177e4 6077{
eecfd7c4 6078 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
145dd5f9
PA
6079 bool again = true;
6080 int work = 0;
1da177e4 6081
e326bed2
ED
6082 /* Check if we have pending ipi, its better to send them now,
6083 * not waiting net_rx_action() end.
6084 */
d75b1ade 6085 if (sd_has_rps_ipi_waiting(sd)) {
e326bed2
ED
6086 local_irq_disable();
6087 net_rps_action_and_irq_enable(sd);
6088 }
d75b1ade 6089
3d48b53f 6090 napi->weight = dev_rx_weight;
145dd5f9 6091 while (again) {
1da177e4 6092 struct sk_buff *skb;
6e7676c1
CG
6093
6094 while ((skb = __skb_dequeue(&sd->process_queue))) {
2c17d27c 6095 rcu_read_lock();
6e7676c1 6096 __netif_receive_skb(skb);
2c17d27c 6097 rcu_read_unlock();
76cc8b13 6098 input_queue_head_incr(sd);
145dd5f9 6099 if (++work >= quota)
76cc8b13 6100 return work;
145dd5f9 6101
6e7676c1 6102 }
1da177e4 6103
145dd5f9 6104 local_irq_disable();
e36fa2f7 6105 rps_lock(sd);
11ef7a89 6106 if (skb_queue_empty(&sd->input_pkt_queue)) {
eecfd7c4
ED
6107 /*
6108 * Inline a custom version of __napi_complete().
6109 * only current cpu owns and manipulates this napi,
11ef7a89
TH
6110 * and NAPI_STATE_SCHED is the only possible flag set
6111 * on backlog.
6112 * We can use a plain write instead of clear_bit(),
eecfd7c4
ED
6113 * and we dont need an smp_mb() memory barrier.
6114 */
eecfd7c4 6115 napi->state = 0;
145dd5f9
PA
6116 again = false;
6117 } else {
6118 skb_queue_splice_tail_init(&sd->input_pkt_queue,
6119 &sd->process_queue);
bea3348e 6120 }
e36fa2f7 6121 rps_unlock(sd);
145dd5f9 6122 local_irq_enable();
6e7676c1 6123 }
1da177e4 6124
bea3348e
SH
6125 return work;
6126}
1da177e4 6127
bea3348e
SH
6128/**
6129 * __napi_schedule - schedule for receive
c4ea43c5 6130 * @n: entry to schedule
bea3348e 6131 *
bc9ad166
ED
6132 * The entry's receive function will be scheduled to run.
6133 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
bea3348e 6134 */
b5606c2d 6135void __napi_schedule(struct napi_struct *n)
bea3348e
SH
6136{
6137 unsigned long flags;
1da177e4 6138
bea3348e 6139 local_irq_save(flags);
903ceff7 6140 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
bea3348e 6141 local_irq_restore(flags);
1da177e4 6142}
bea3348e
SH
6143EXPORT_SYMBOL(__napi_schedule);
6144
39e6c820
ED
6145/**
6146 * napi_schedule_prep - check if napi can be scheduled
6147 * @n: napi context
6148 *
6149 * Test if NAPI routine is already running, and if not mark
6150 * it as running. This is used as a condition variable
6151 * insure only one NAPI poll instance runs. We also make
6152 * sure there is no pending NAPI disable.
6153 */
6154bool napi_schedule_prep(struct napi_struct *n)
6155{
6156 unsigned long val, new;
6157
6158 do {
6159 val = READ_ONCE(n->state);
6160 if (unlikely(val & NAPIF_STATE_DISABLE))
6161 return false;
6162 new = val | NAPIF_STATE_SCHED;
6163
6164 /* Sets STATE_MISSED bit if STATE_SCHED was already set
6165 * This was suggested by Alexander Duyck, as compiler
6166 * emits better code than :
6167 * if (val & NAPIF_STATE_SCHED)
6168 * new |= NAPIF_STATE_MISSED;
6169 */
6170 new |= (val & NAPIF_STATE_SCHED) / NAPIF_STATE_SCHED *
6171 NAPIF_STATE_MISSED;
6172 } while (cmpxchg(&n->state, val, new) != val);
6173
6174 return !(val & NAPIF_STATE_SCHED);
6175}
6176EXPORT_SYMBOL(napi_schedule_prep);
6177
bc9ad166
ED
6178/**
6179 * __napi_schedule_irqoff - schedule for receive
6180 * @n: entry to schedule
6181 *
6182 * Variant of __napi_schedule() assuming hard irqs are masked
6183 */
6184void __napi_schedule_irqoff(struct napi_struct *n)
6185{
6186 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
6187}
6188EXPORT_SYMBOL(__napi_schedule_irqoff);
6189
364b6055 6190bool napi_complete_done(struct napi_struct *n, int work_done)
d565b0a1 6191{
39e6c820 6192 unsigned long flags, val, new;
d565b0a1
HX
6193
6194 /*
217f6974
ED
6195 * 1) Don't let napi dequeue from the cpu poll list
6196 * just in case its running on a different cpu.
6197 * 2) If we are busy polling, do nothing here, we have
6198 * the guarantee we will be called later.
d565b0a1 6199 */
217f6974
ED
6200 if (unlikely(n->state & (NAPIF_STATE_NPSVC |
6201 NAPIF_STATE_IN_BUSY_POLL)))
364b6055 6202 return false;
d565b0a1 6203
d9f37d01 6204 if (n->gro_bitmask) {
3b47d303 6205 unsigned long timeout = 0;
d75b1ade 6206
3b47d303
ED
6207 if (work_done)
6208 timeout = n->dev->gro_flush_timeout;
6209
605108ac
PA
6210 /* When the NAPI instance uses a timeout and keeps postponing
6211 * it, we need to bound somehow the time packets are kept in
6212 * the GRO layer
6213 */
6214 napi_gro_flush(n, !!timeout);
3b47d303
ED
6215 if (timeout)
6216 hrtimer_start(&n->timer, ns_to_ktime(timeout),
6217 HRTIMER_MODE_REL_PINNED);
3b47d303 6218 }
c8079432
MM
6219
6220 gro_normal_list(n);
6221
02c1602e 6222 if (unlikely(!list_empty(&n->poll_list))) {
d75b1ade
ED
6223 /* If n->poll_list is not empty, we need to mask irqs */
6224 local_irq_save(flags);
02c1602e 6225 list_del_init(&n->poll_list);
d75b1ade
ED
6226 local_irq_restore(flags);
6227 }
39e6c820
ED
6228
6229 do {
6230 val = READ_ONCE(n->state);
6231
6232 WARN_ON_ONCE(!(val & NAPIF_STATE_SCHED));
6233
6234 new = val & ~(NAPIF_STATE_MISSED | NAPIF_STATE_SCHED);
6235
6236 /* If STATE_MISSED was set, leave STATE_SCHED set,
6237 * because we will call napi->poll() one more time.
6238 * This C code was suggested by Alexander Duyck to help gcc.
6239 */
6240 new |= (val & NAPIF_STATE_MISSED) / NAPIF_STATE_MISSED *
6241 NAPIF_STATE_SCHED;
6242 } while (cmpxchg(&n->state, val, new) != val);
6243
6244 if (unlikely(val & NAPIF_STATE_MISSED)) {
6245 __napi_schedule(n);
6246 return false;
6247 }
6248
364b6055 6249 return true;
d565b0a1 6250}
3b47d303 6251EXPORT_SYMBOL(napi_complete_done);
d565b0a1 6252
af12fa6e 6253/* must be called under rcu_read_lock(), as we dont take a reference */
02d62e86 6254static struct napi_struct *napi_by_id(unsigned int napi_id)
af12fa6e
ET
6255{
6256 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
6257 struct napi_struct *napi;
6258
6259 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
6260 if (napi->napi_id == napi_id)
6261 return napi;
6262
6263 return NULL;
6264}
02d62e86
ED
6265
6266#if defined(CONFIG_NET_RX_BUSY_POLL)
217f6974 6267
ce6aea93 6268#define BUSY_POLL_BUDGET 8
217f6974
ED
6269
6270static void busy_poll_stop(struct napi_struct *napi, void *have_poll_lock)
6271{
6272 int rc;
6273
39e6c820
ED
6274 /* Busy polling means there is a high chance device driver hard irq
6275 * could not grab NAPI_STATE_SCHED, and that NAPI_STATE_MISSED was
6276 * set in napi_schedule_prep().
6277 * Since we are about to call napi->poll() once more, we can safely
6278 * clear NAPI_STATE_MISSED.
6279 *
6280 * Note: x86 could use a single "lock and ..." instruction
6281 * to perform these two clear_bit()
6282 */
6283 clear_bit(NAPI_STATE_MISSED, &napi->state);
217f6974
ED
6284 clear_bit(NAPI_STATE_IN_BUSY_POLL, &napi->state);
6285
6286 local_bh_disable();
6287
6288 /* All we really want here is to re-enable device interrupts.
6289 * Ideally, a new ndo_busy_poll_stop() could avoid another round.
6290 */
6291 rc = napi->poll(napi, BUSY_POLL_BUDGET);
323ebb61
EC
6292 /* We can't gro_normal_list() here, because napi->poll() might have
6293 * rearmed the napi (napi_complete_done()) in which case it could
6294 * already be running on another CPU.
6295 */
1e22391e 6296 trace_napi_poll(napi, rc, BUSY_POLL_BUDGET);
217f6974 6297 netpoll_poll_unlock(have_poll_lock);
323ebb61
EC
6298 if (rc == BUSY_POLL_BUDGET) {
6299 /* As the whole budget was spent, we still own the napi so can
6300 * safely handle the rx_list.
6301 */
6302 gro_normal_list(napi);
217f6974 6303 __napi_schedule(napi);
323ebb61 6304 }
217f6974 6305 local_bh_enable();
217f6974
ED
6306}
6307
7db6b048
SS
6308void napi_busy_loop(unsigned int napi_id,
6309 bool (*loop_end)(void *, unsigned long),
6310 void *loop_end_arg)
02d62e86 6311{
7db6b048 6312 unsigned long start_time = loop_end ? busy_loop_current_time() : 0;
217f6974 6313 int (*napi_poll)(struct napi_struct *napi, int budget);
217f6974 6314 void *have_poll_lock = NULL;
02d62e86 6315 struct napi_struct *napi;
217f6974
ED
6316
6317restart:
217f6974 6318 napi_poll = NULL;
02d62e86 6319
2a028ecb 6320 rcu_read_lock();
02d62e86 6321
545cd5e5 6322 napi = napi_by_id(napi_id);
02d62e86
ED
6323 if (!napi)
6324 goto out;
6325
217f6974
ED
6326 preempt_disable();
6327 for (;;) {
2b5cd0df
AD
6328 int work = 0;
6329
2a028ecb 6330 local_bh_disable();
217f6974
ED
6331 if (!napi_poll) {
6332 unsigned long val = READ_ONCE(napi->state);
6333
6334 /* If multiple threads are competing for this napi,
6335 * we avoid dirtying napi->state as much as we can.
6336 */
6337 if (val & (NAPIF_STATE_DISABLE | NAPIF_STATE_SCHED |
6338 NAPIF_STATE_IN_BUSY_POLL))
6339 goto count;
6340 if (cmpxchg(&napi->state, val,
6341 val | NAPIF_STATE_IN_BUSY_POLL |
6342 NAPIF_STATE_SCHED) != val)
6343 goto count;
6344 have_poll_lock = netpoll_poll_lock(napi);
6345 napi_poll = napi->poll;
6346 }
2b5cd0df
AD
6347 work = napi_poll(napi, BUSY_POLL_BUDGET);
6348 trace_napi_poll(napi, work, BUSY_POLL_BUDGET);
323ebb61 6349 gro_normal_list(napi);
217f6974 6350count:
2b5cd0df 6351 if (work > 0)
7db6b048 6352 __NET_ADD_STATS(dev_net(napi->dev),
2b5cd0df 6353 LINUX_MIB_BUSYPOLLRXPACKETS, work);
2a028ecb 6354 local_bh_enable();
02d62e86 6355
7db6b048 6356 if (!loop_end || loop_end(loop_end_arg, start_time))
217f6974 6357 break;
02d62e86 6358
217f6974
ED
6359 if (unlikely(need_resched())) {
6360 if (napi_poll)
6361 busy_poll_stop(napi, have_poll_lock);
6362 preempt_enable();
6363 rcu_read_unlock();
6364 cond_resched();
7db6b048 6365 if (loop_end(loop_end_arg, start_time))
2b5cd0df 6366 return;
217f6974
ED
6367 goto restart;
6368 }
6cdf89b1 6369 cpu_relax();
217f6974
ED
6370 }
6371 if (napi_poll)
6372 busy_poll_stop(napi, have_poll_lock);
6373 preempt_enable();
02d62e86 6374out:
2a028ecb 6375 rcu_read_unlock();
02d62e86 6376}
7db6b048 6377EXPORT_SYMBOL(napi_busy_loop);
02d62e86
ED
6378
6379#endif /* CONFIG_NET_RX_BUSY_POLL */
af12fa6e 6380
149d6ad8 6381static void napi_hash_add(struct napi_struct *napi)
af12fa6e 6382{
d64b5e85
ED
6383 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state) ||
6384 test_and_set_bit(NAPI_STATE_HASHED, &napi->state))
52bd2d62 6385 return;
af12fa6e 6386
52bd2d62 6387 spin_lock(&napi_hash_lock);
af12fa6e 6388
545cd5e5 6389 /* 0..NR_CPUS range is reserved for sender_cpu use */
52bd2d62 6390 do {
545cd5e5
AD
6391 if (unlikely(++napi_gen_id < MIN_NAPI_ID))
6392 napi_gen_id = MIN_NAPI_ID;
52bd2d62
ED
6393 } while (napi_by_id(napi_gen_id));
6394 napi->napi_id = napi_gen_id;
af12fa6e 6395
52bd2d62
ED
6396 hlist_add_head_rcu(&napi->napi_hash_node,
6397 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
af12fa6e 6398
52bd2d62 6399 spin_unlock(&napi_hash_lock);
af12fa6e 6400}
af12fa6e
ET
6401
6402/* Warning : caller is responsible to make sure rcu grace period
6403 * is respected before freeing memory containing @napi
6404 */
34cbe27e 6405bool napi_hash_del(struct napi_struct *napi)
af12fa6e 6406{
34cbe27e
ED
6407 bool rcu_sync_needed = false;
6408
af12fa6e
ET
6409 spin_lock(&napi_hash_lock);
6410
34cbe27e
ED
6411 if (test_and_clear_bit(NAPI_STATE_HASHED, &napi->state)) {
6412 rcu_sync_needed = true;
af12fa6e 6413 hlist_del_rcu(&napi->napi_hash_node);
34cbe27e 6414 }
af12fa6e 6415 spin_unlock(&napi_hash_lock);
34cbe27e 6416 return rcu_sync_needed;
af12fa6e
ET
6417}
6418EXPORT_SYMBOL_GPL(napi_hash_del);
6419
3b47d303
ED
6420static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
6421{
6422 struct napi_struct *napi;
6423
6424 napi = container_of(timer, struct napi_struct, timer);
39e6c820
ED
6425
6426 /* Note : we use a relaxed variant of napi_schedule_prep() not setting
6427 * NAPI_STATE_MISSED, since we do not react to a device IRQ.
6428 */
d9f37d01 6429 if (napi->gro_bitmask && !napi_disable_pending(napi) &&
39e6c820
ED
6430 !test_and_set_bit(NAPI_STATE_SCHED, &napi->state))
6431 __napi_schedule_irqoff(napi);
3b47d303
ED
6432
6433 return HRTIMER_NORESTART;
6434}
6435
7c4ec749 6436static void init_gro_hash(struct napi_struct *napi)
d565b0a1 6437{
07d78363
DM
6438 int i;
6439
6312fe77
LR
6440 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6441 INIT_LIST_HEAD(&napi->gro_hash[i].list);
6442 napi->gro_hash[i].count = 0;
6443 }
7c4ec749
DM
6444 napi->gro_bitmask = 0;
6445}
6446
6447void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
6448 int (*poll)(struct napi_struct *, int), int weight)
6449{
6450 INIT_LIST_HEAD(&napi->poll_list);
6451 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
6452 napi->timer.function = napi_watchdog;
6453 init_gro_hash(napi);
5d38a079 6454 napi->skb = NULL;
323ebb61
EC
6455 INIT_LIST_HEAD(&napi->rx_list);
6456 napi->rx_count = 0;
d565b0a1 6457 napi->poll = poll;
82dc3c63 6458 if (weight > NAPI_POLL_WEIGHT)
bf29e9e9
QC
6459 netdev_err_once(dev, "%s() called with weight %d\n", __func__,
6460 weight);
d565b0a1
HX
6461 napi->weight = weight;
6462 list_add(&napi->dev_list, &dev->napi_list);
d565b0a1 6463 napi->dev = dev;
5d38a079 6464#ifdef CONFIG_NETPOLL
d565b0a1
HX
6465 napi->poll_owner = -1;
6466#endif
6467 set_bit(NAPI_STATE_SCHED, &napi->state);
93d05d4a 6468 napi_hash_add(napi);
d565b0a1
HX
6469}
6470EXPORT_SYMBOL(netif_napi_add);
6471
3b47d303
ED
6472void napi_disable(struct napi_struct *n)
6473{
6474 might_sleep();
6475 set_bit(NAPI_STATE_DISABLE, &n->state);
6476
6477 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
6478 msleep(1);
2d8bff12
NH
6479 while (test_and_set_bit(NAPI_STATE_NPSVC, &n->state))
6480 msleep(1);
3b47d303
ED
6481
6482 hrtimer_cancel(&n->timer);
6483
6484 clear_bit(NAPI_STATE_DISABLE, &n->state);
6485}
6486EXPORT_SYMBOL(napi_disable);
6487
07d78363 6488static void flush_gro_hash(struct napi_struct *napi)
d4546c25 6489{
07d78363 6490 int i;
d4546c25 6491
07d78363
DM
6492 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6493 struct sk_buff *skb, *n;
6494
6312fe77 6495 list_for_each_entry_safe(skb, n, &napi->gro_hash[i].list, list)
07d78363 6496 kfree_skb(skb);
6312fe77 6497 napi->gro_hash[i].count = 0;
07d78363 6498 }
d4546c25
DM
6499}
6500
93d05d4a 6501/* Must be called in process context */
d565b0a1
HX
6502void netif_napi_del(struct napi_struct *napi)
6503{
93d05d4a
ED
6504 might_sleep();
6505 if (napi_hash_del(napi))
6506 synchronize_net();
d7b06636 6507 list_del_init(&napi->dev_list);
76620aaf 6508 napi_free_frags(napi);
d565b0a1 6509
07d78363 6510 flush_gro_hash(napi);
d9f37d01 6511 napi->gro_bitmask = 0;
d565b0a1
HX
6512}
6513EXPORT_SYMBOL(netif_napi_del);
6514
726ce70e
HX
6515static int napi_poll(struct napi_struct *n, struct list_head *repoll)
6516{
6517 void *have;
6518 int work, weight;
6519
6520 list_del_init(&n->poll_list);
6521
6522 have = netpoll_poll_lock(n);
6523
6524 weight = n->weight;
6525
6526 /* This NAPI_STATE_SCHED test is for avoiding a race
6527 * with netpoll's poll_napi(). Only the entity which
6528 * obtains the lock and sees NAPI_STATE_SCHED set will
6529 * actually make the ->poll() call. Therefore we avoid
6530 * accidentally calling ->poll() when NAPI is not scheduled.
6531 */
6532 work = 0;
6533 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
6534 work = n->poll(n, weight);
1db19db7 6535 trace_napi_poll(n, work, weight);
726ce70e
HX
6536 }
6537
6538 WARN_ON_ONCE(work > weight);
6539
6540 if (likely(work < weight))
6541 goto out_unlock;
6542
6543 /* Drivers must not modify the NAPI state if they
6544 * consume the entire weight. In such cases this code
6545 * still "owns" the NAPI instance and therefore can
6546 * move the instance around on the list at-will.
6547 */
6548 if (unlikely(napi_disable_pending(n))) {
6549 napi_complete(n);
6550 goto out_unlock;
6551 }
6552
d9f37d01 6553 if (n->gro_bitmask) {
726ce70e
HX
6554 /* flush too old packets
6555 * If HZ < 1000, flush all packets.
6556 */
6557 napi_gro_flush(n, HZ >= 1000);
6558 }
6559
c8079432
MM
6560 gro_normal_list(n);
6561
001ce546
HX
6562 /* Some drivers may have called napi_schedule
6563 * prior to exhausting their budget.
6564 */
6565 if (unlikely(!list_empty(&n->poll_list))) {
6566 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
6567 n->dev ? n->dev->name : "backlog");
6568 goto out_unlock;
6569 }
6570
726ce70e
HX
6571 list_add_tail(&n->poll_list, repoll);
6572
6573out_unlock:
6574 netpoll_poll_unlock(have);
6575
6576 return work;
6577}
6578
0766f788 6579static __latent_entropy void net_rx_action(struct softirq_action *h)
1da177e4 6580{
903ceff7 6581 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
7acf8a1e
MW
6582 unsigned long time_limit = jiffies +
6583 usecs_to_jiffies(netdev_budget_usecs);
51b0bded 6584 int budget = netdev_budget;
d75b1ade
ED
6585 LIST_HEAD(list);
6586 LIST_HEAD(repoll);
53fb95d3 6587
1da177e4 6588 local_irq_disable();
d75b1ade
ED
6589 list_splice_init(&sd->poll_list, &list);
6590 local_irq_enable();
1da177e4 6591
ceb8d5bf 6592 for (;;) {
bea3348e 6593 struct napi_struct *n;
1da177e4 6594
ceb8d5bf
HX
6595 if (list_empty(&list)) {
6596 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
f52dffe0 6597 goto out;
ceb8d5bf
HX
6598 break;
6599 }
6600
6bd373eb
HX
6601 n = list_first_entry(&list, struct napi_struct, poll_list);
6602 budget -= napi_poll(n, &repoll);
6603
d75b1ade 6604 /* If softirq window is exhausted then punt.
24f8b238
SH
6605 * Allow this to run for 2 jiffies since which will allow
6606 * an average latency of 1.5/HZ.
bea3348e 6607 */
ceb8d5bf
HX
6608 if (unlikely(budget <= 0 ||
6609 time_after_eq(jiffies, time_limit))) {
6610 sd->time_squeeze++;
6611 break;
6612 }
1da177e4 6613 }
d75b1ade 6614
d75b1ade
ED
6615 local_irq_disable();
6616
6617 list_splice_tail_init(&sd->poll_list, &list);
6618 list_splice_tail(&repoll, &list);
6619 list_splice(&list, &sd->poll_list);
6620 if (!list_empty(&sd->poll_list))
6621 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
6622
e326bed2 6623 net_rps_action_and_irq_enable(sd);
f52dffe0
ED
6624out:
6625 __kfree_skb_flush();
1da177e4
LT
6626}
6627
aa9d8560 6628struct netdev_adjacent {
9ff162a8 6629 struct net_device *dev;
5d261913
VF
6630
6631 /* upper master flag, there can only be one master device per list */
9ff162a8 6632 bool master;
5d261913 6633
32b6d34f
TY
6634 /* lookup ignore flag */
6635 bool ignore;
6636
5d261913
VF
6637 /* counter for the number of times this device was added to us */
6638 u16 ref_nr;
6639
402dae96
VF
6640 /* private field for the users */
6641 void *private;
6642
9ff162a8
JP
6643 struct list_head list;
6644 struct rcu_head rcu;
9ff162a8
JP
6645};
6646
6ea29da1 6647static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
2f268f12 6648 struct list_head *adj_list)
9ff162a8 6649{
5d261913 6650 struct netdev_adjacent *adj;
5d261913 6651
2f268f12 6652 list_for_each_entry(adj, adj_list, list) {
5d261913
VF
6653 if (adj->dev == adj_dev)
6654 return adj;
9ff162a8
JP
6655 }
6656 return NULL;
6657}
6658
32b6d34f 6659static int ____netdev_has_upper_dev(struct net_device *upper_dev, void *data)
f1170fd4
DA
6660{
6661 struct net_device *dev = data;
6662
6663 return upper_dev == dev;
6664}
6665
9ff162a8
JP
6666/**
6667 * netdev_has_upper_dev - Check if device is linked to an upper device
6668 * @dev: device
6669 * @upper_dev: upper device to check
6670 *
6671 * Find out if a device is linked to specified upper device and return true
6672 * in case it is. Note that this checks only immediate upper device,
6673 * not through a complete stack of devices. The caller must hold the RTNL lock.
6674 */
6675bool netdev_has_upper_dev(struct net_device *dev,
6676 struct net_device *upper_dev)
6677{
6678 ASSERT_RTNL();
6679
32b6d34f 6680 return netdev_walk_all_upper_dev_rcu(dev, ____netdev_has_upper_dev,
f1170fd4 6681 upper_dev);
9ff162a8
JP
6682}
6683EXPORT_SYMBOL(netdev_has_upper_dev);
6684
1a3f060c
DA
6685/**
6686 * netdev_has_upper_dev_all - Check if device is linked to an upper device
6687 * @dev: device
6688 * @upper_dev: upper device to check
6689 *
6690 * Find out if a device is linked to specified upper device and return true
6691 * in case it is. Note that this checks the entire upper device chain.
6692 * The caller must hold rcu lock.
6693 */
6694
1a3f060c
DA
6695bool netdev_has_upper_dev_all_rcu(struct net_device *dev,
6696 struct net_device *upper_dev)
6697{
32b6d34f 6698 return !!netdev_walk_all_upper_dev_rcu(dev, ____netdev_has_upper_dev,
1a3f060c
DA
6699 upper_dev);
6700}
6701EXPORT_SYMBOL(netdev_has_upper_dev_all_rcu);
6702
9ff162a8
JP
6703/**
6704 * netdev_has_any_upper_dev - Check if device is linked to some device
6705 * @dev: device
6706 *
6707 * Find out if a device is linked to an upper device and return true in case
6708 * it is. The caller must hold the RTNL lock.
6709 */
25cc72a3 6710bool netdev_has_any_upper_dev(struct net_device *dev)
9ff162a8
JP
6711{
6712 ASSERT_RTNL();
6713
f1170fd4 6714 return !list_empty(&dev->adj_list.upper);
9ff162a8 6715}
25cc72a3 6716EXPORT_SYMBOL(netdev_has_any_upper_dev);
9ff162a8
JP
6717
6718/**
6719 * netdev_master_upper_dev_get - Get master upper device
6720 * @dev: device
6721 *
6722 * Find a master upper device and return pointer to it or NULL in case
6723 * it's not there. The caller must hold the RTNL lock.
6724 */
6725struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
6726{
aa9d8560 6727 struct netdev_adjacent *upper;
9ff162a8
JP
6728
6729 ASSERT_RTNL();
6730
2f268f12 6731 if (list_empty(&dev->adj_list.upper))
9ff162a8
JP
6732 return NULL;
6733
2f268f12 6734 upper = list_first_entry(&dev->adj_list.upper,
aa9d8560 6735 struct netdev_adjacent, list);
9ff162a8
JP
6736 if (likely(upper->master))
6737 return upper->dev;
6738 return NULL;
6739}
6740EXPORT_SYMBOL(netdev_master_upper_dev_get);
6741
32b6d34f
TY
6742static struct net_device *__netdev_master_upper_dev_get(struct net_device *dev)
6743{
6744 struct netdev_adjacent *upper;
6745
6746 ASSERT_RTNL();
6747
6748 if (list_empty(&dev->adj_list.upper))
6749 return NULL;
6750
6751 upper = list_first_entry(&dev->adj_list.upper,
6752 struct netdev_adjacent, list);
6753 if (likely(upper->master) && !upper->ignore)
6754 return upper->dev;
6755 return NULL;
6756}
6757
0f524a80
DA
6758/**
6759 * netdev_has_any_lower_dev - Check if device is linked to some device
6760 * @dev: device
6761 *
6762 * Find out if a device is linked to a lower device and return true in case
6763 * it is. The caller must hold the RTNL lock.
6764 */
6765static bool netdev_has_any_lower_dev(struct net_device *dev)
6766{
6767 ASSERT_RTNL();
6768
6769 return !list_empty(&dev->adj_list.lower);
6770}
6771
b6ccba4c
VF
6772void *netdev_adjacent_get_private(struct list_head *adj_list)
6773{
6774 struct netdev_adjacent *adj;
6775
6776 adj = list_entry(adj_list, struct netdev_adjacent, list);
6777
6778 return adj->private;
6779}
6780EXPORT_SYMBOL(netdev_adjacent_get_private);
6781
44a40855
VY
6782/**
6783 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
6784 * @dev: device
6785 * @iter: list_head ** of the current position
6786 *
6787 * Gets the next device from the dev's upper list, starting from iter
6788 * position. The caller must hold RCU read lock.
6789 */
6790struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
6791 struct list_head **iter)
6792{
6793 struct netdev_adjacent *upper;
6794
6795 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
6796
6797 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6798
6799 if (&upper->list == &dev->adj_list.upper)
6800 return NULL;
6801
6802 *iter = &upper->list;
6803
6804 return upper->dev;
6805}
6806EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
6807
32b6d34f
TY
6808static struct net_device *__netdev_next_upper_dev(struct net_device *dev,
6809 struct list_head **iter,
6810 bool *ignore)
5343da4c
TY
6811{
6812 struct netdev_adjacent *upper;
6813
6814 upper = list_entry((*iter)->next, struct netdev_adjacent, list);
6815
6816 if (&upper->list == &dev->adj_list.upper)
6817 return NULL;
6818
6819 *iter = &upper->list;
32b6d34f 6820 *ignore = upper->ignore;
5343da4c
TY
6821
6822 return upper->dev;
6823}
6824
1a3f060c
DA
6825static struct net_device *netdev_next_upper_dev_rcu(struct net_device *dev,
6826 struct list_head **iter)
6827{
6828 struct netdev_adjacent *upper;
6829
6830 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
6831
6832 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6833
6834 if (&upper->list == &dev->adj_list.upper)
6835 return NULL;
6836
6837 *iter = &upper->list;
6838
6839 return upper->dev;
6840}
6841
32b6d34f
TY
6842static int __netdev_walk_all_upper_dev(struct net_device *dev,
6843 int (*fn)(struct net_device *dev,
6844 void *data),
6845 void *data)
5343da4c
TY
6846{
6847 struct net_device *udev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
6848 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
6849 int ret, cur = 0;
32b6d34f 6850 bool ignore;
5343da4c
TY
6851
6852 now = dev;
6853 iter = &dev->adj_list.upper;
6854
6855 while (1) {
6856 if (now != dev) {
6857 ret = fn(now, data);
6858 if (ret)
6859 return ret;
6860 }
6861
6862 next = NULL;
6863 while (1) {
32b6d34f 6864 udev = __netdev_next_upper_dev(now, &iter, &ignore);
5343da4c
TY
6865 if (!udev)
6866 break;
32b6d34f
TY
6867 if (ignore)
6868 continue;
5343da4c
TY
6869
6870 next = udev;
6871 niter = &udev->adj_list.upper;
6872 dev_stack[cur] = now;
6873 iter_stack[cur++] = iter;
6874 break;
6875 }
6876
6877 if (!next) {
6878 if (!cur)
6879 return 0;
6880 next = dev_stack[--cur];
6881 niter = iter_stack[cur];
6882 }
6883
6884 now = next;
6885 iter = niter;
6886 }
6887
6888 return 0;
6889}
6890
1a3f060c
DA
6891int netdev_walk_all_upper_dev_rcu(struct net_device *dev,
6892 int (*fn)(struct net_device *dev,
6893 void *data),
6894 void *data)
6895{
5343da4c
TY
6896 struct net_device *udev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
6897 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
6898 int ret, cur = 0;
1a3f060c 6899
5343da4c
TY
6900 now = dev;
6901 iter = &dev->adj_list.upper;
1a3f060c 6902
5343da4c
TY
6903 while (1) {
6904 if (now != dev) {
6905 ret = fn(now, data);
6906 if (ret)
6907 return ret;
6908 }
6909
6910 next = NULL;
6911 while (1) {
6912 udev = netdev_next_upper_dev_rcu(now, &iter);
6913 if (!udev)
6914 break;
6915
6916 next = udev;
6917 niter = &udev->adj_list.upper;
6918 dev_stack[cur] = now;
6919 iter_stack[cur++] = iter;
6920 break;
6921 }
6922
6923 if (!next) {
6924 if (!cur)
6925 return 0;
6926 next = dev_stack[--cur];
6927 niter = iter_stack[cur];
6928 }
6929
6930 now = next;
6931 iter = niter;
1a3f060c
DA
6932 }
6933
6934 return 0;
6935}
6936EXPORT_SYMBOL_GPL(netdev_walk_all_upper_dev_rcu);
6937
32b6d34f
TY
6938static bool __netdev_has_upper_dev(struct net_device *dev,
6939 struct net_device *upper_dev)
6940{
6941 ASSERT_RTNL();
6942
6943 return __netdev_walk_all_upper_dev(dev, ____netdev_has_upper_dev,
6944 upper_dev);
6945}
6946
31088a11
VF
6947/**
6948 * netdev_lower_get_next_private - Get the next ->private from the
6949 * lower neighbour list
6950 * @dev: device
6951 * @iter: list_head ** of the current position
6952 *
6953 * Gets the next netdev_adjacent->private from the dev's lower neighbour
6954 * list, starting from iter position. The caller must hold either hold the
6955 * RTNL lock or its own locking that guarantees that the neighbour lower
b469139e 6956 * list will remain unchanged.
31088a11
VF
6957 */
6958void *netdev_lower_get_next_private(struct net_device *dev,
6959 struct list_head **iter)
6960{
6961 struct netdev_adjacent *lower;
6962
6963 lower = list_entry(*iter, struct netdev_adjacent, list);
6964
6965 if (&lower->list == &dev->adj_list.lower)
6966 return NULL;
6967
6859e7df 6968 *iter = lower->list.next;
31088a11
VF
6969
6970 return lower->private;
6971}
6972EXPORT_SYMBOL(netdev_lower_get_next_private);
6973
6974/**
6975 * netdev_lower_get_next_private_rcu - Get the next ->private from the
6976 * lower neighbour list, RCU
6977 * variant
6978 * @dev: device
6979 * @iter: list_head ** of the current position
6980 *
6981 * Gets the next netdev_adjacent->private from the dev's lower neighbour
6982 * list, starting from iter position. The caller must hold RCU read lock.
6983 */
6984void *netdev_lower_get_next_private_rcu(struct net_device *dev,
6985 struct list_head **iter)
6986{
6987 struct netdev_adjacent *lower;
6988
6989 WARN_ON_ONCE(!rcu_read_lock_held());
6990
6991 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6992
6993 if (&lower->list == &dev->adj_list.lower)
6994 return NULL;
6995
6859e7df 6996 *iter = &lower->list;
31088a11
VF
6997
6998 return lower->private;
6999}
7000EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
7001
4085ebe8
VY
7002/**
7003 * netdev_lower_get_next - Get the next device from the lower neighbour
7004 * list
7005 * @dev: device
7006 * @iter: list_head ** of the current position
7007 *
7008 * Gets the next netdev_adjacent from the dev's lower neighbour
7009 * list, starting from iter position. The caller must hold RTNL lock or
7010 * its own locking that guarantees that the neighbour lower
b469139e 7011 * list will remain unchanged.
4085ebe8
VY
7012 */
7013void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
7014{
7015 struct netdev_adjacent *lower;
7016
cfdd28be 7017 lower = list_entry(*iter, struct netdev_adjacent, list);
4085ebe8
VY
7018
7019 if (&lower->list == &dev->adj_list.lower)
7020 return NULL;
7021
cfdd28be 7022 *iter = lower->list.next;
4085ebe8
VY
7023
7024 return lower->dev;
7025}
7026EXPORT_SYMBOL(netdev_lower_get_next);
7027
1a3f060c
DA
7028static struct net_device *netdev_next_lower_dev(struct net_device *dev,
7029 struct list_head **iter)
7030{
7031 struct netdev_adjacent *lower;
7032
46b5ab1a 7033 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
1a3f060c
DA
7034
7035 if (&lower->list == &dev->adj_list.lower)
7036 return NULL;
7037
46b5ab1a 7038 *iter = &lower->list;
1a3f060c
DA
7039
7040 return lower->dev;
7041}
7042
32b6d34f
TY
7043static struct net_device *__netdev_next_lower_dev(struct net_device *dev,
7044 struct list_head **iter,
7045 bool *ignore)
7046{
7047 struct netdev_adjacent *lower;
7048
7049 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
7050
7051 if (&lower->list == &dev->adj_list.lower)
7052 return NULL;
7053
7054 *iter = &lower->list;
7055 *ignore = lower->ignore;
7056
7057 return lower->dev;
7058}
7059
1a3f060c
DA
7060int netdev_walk_all_lower_dev(struct net_device *dev,
7061 int (*fn)(struct net_device *dev,
7062 void *data),
7063 void *data)
7064{
5343da4c
TY
7065 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7066 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7067 int ret, cur = 0;
1a3f060c 7068
5343da4c
TY
7069 now = dev;
7070 iter = &dev->adj_list.lower;
1a3f060c 7071
5343da4c
TY
7072 while (1) {
7073 if (now != dev) {
7074 ret = fn(now, data);
7075 if (ret)
7076 return ret;
7077 }
7078
7079 next = NULL;
7080 while (1) {
7081 ldev = netdev_next_lower_dev(now, &iter);
7082 if (!ldev)
7083 break;
7084
7085 next = ldev;
7086 niter = &ldev->adj_list.lower;
7087 dev_stack[cur] = now;
7088 iter_stack[cur++] = iter;
7089 break;
7090 }
7091
7092 if (!next) {
7093 if (!cur)
7094 return 0;
7095 next = dev_stack[--cur];
7096 niter = iter_stack[cur];
7097 }
7098
7099 now = next;
7100 iter = niter;
1a3f060c
DA
7101 }
7102
7103 return 0;
7104}
7105EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev);
7106
32b6d34f
TY
7107static int __netdev_walk_all_lower_dev(struct net_device *dev,
7108 int (*fn)(struct net_device *dev,
7109 void *data),
7110 void *data)
7111{
7112 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7113 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7114 int ret, cur = 0;
7115 bool ignore;
7116
7117 now = dev;
7118 iter = &dev->adj_list.lower;
7119
7120 while (1) {
7121 if (now != dev) {
7122 ret = fn(now, data);
7123 if (ret)
7124 return ret;
7125 }
7126
7127 next = NULL;
7128 while (1) {
7129 ldev = __netdev_next_lower_dev(now, &iter, &ignore);
7130 if (!ldev)
7131 break;
7132 if (ignore)
7133 continue;
7134
7135 next = ldev;
7136 niter = &ldev->adj_list.lower;
7137 dev_stack[cur] = now;
7138 iter_stack[cur++] = iter;
7139 break;
7140 }
7141
7142 if (!next) {
7143 if (!cur)
7144 return 0;
7145 next = dev_stack[--cur];
7146 niter = iter_stack[cur];
7147 }
7148
7149 now = next;
7150 iter = niter;
7151 }
7152
7153 return 0;
7154}
7155
1a3f060c
DA
7156static struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
7157 struct list_head **iter)
7158{
7159 struct netdev_adjacent *lower;
7160
7161 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7162 if (&lower->list == &dev->adj_list.lower)
7163 return NULL;
7164
7165 *iter = &lower->list;
7166
7167 return lower->dev;
7168}
7169
5343da4c
TY
7170static u8 __netdev_upper_depth(struct net_device *dev)
7171{
7172 struct net_device *udev;
7173 struct list_head *iter;
7174 u8 max_depth = 0;
32b6d34f 7175 bool ignore;
5343da4c
TY
7176
7177 for (iter = &dev->adj_list.upper,
32b6d34f 7178 udev = __netdev_next_upper_dev(dev, &iter, &ignore);
5343da4c 7179 udev;
32b6d34f
TY
7180 udev = __netdev_next_upper_dev(dev, &iter, &ignore)) {
7181 if (ignore)
7182 continue;
5343da4c
TY
7183 if (max_depth < udev->upper_level)
7184 max_depth = udev->upper_level;
7185 }
7186
7187 return max_depth;
7188}
7189
7190static u8 __netdev_lower_depth(struct net_device *dev)
1a3f060c
DA
7191{
7192 struct net_device *ldev;
7193 struct list_head *iter;
5343da4c 7194 u8 max_depth = 0;
32b6d34f 7195 bool ignore;
1a3f060c
DA
7196
7197 for (iter = &dev->adj_list.lower,
32b6d34f 7198 ldev = __netdev_next_lower_dev(dev, &iter, &ignore);
1a3f060c 7199 ldev;
32b6d34f
TY
7200 ldev = __netdev_next_lower_dev(dev, &iter, &ignore)) {
7201 if (ignore)
7202 continue;
5343da4c
TY
7203 if (max_depth < ldev->lower_level)
7204 max_depth = ldev->lower_level;
7205 }
1a3f060c 7206
5343da4c
TY
7207 return max_depth;
7208}
7209
7210static int __netdev_update_upper_level(struct net_device *dev, void *data)
7211{
7212 dev->upper_level = __netdev_upper_depth(dev) + 1;
7213 return 0;
7214}
7215
7216static int __netdev_update_lower_level(struct net_device *dev, void *data)
7217{
7218 dev->lower_level = __netdev_lower_depth(dev) + 1;
7219 return 0;
7220}
7221
7222int netdev_walk_all_lower_dev_rcu(struct net_device *dev,
7223 int (*fn)(struct net_device *dev,
7224 void *data),
7225 void *data)
7226{
7227 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7228 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7229 int ret, cur = 0;
7230
7231 now = dev;
7232 iter = &dev->adj_list.lower;
7233
7234 while (1) {
7235 if (now != dev) {
7236 ret = fn(now, data);
7237 if (ret)
7238 return ret;
7239 }
7240
7241 next = NULL;
7242 while (1) {
7243 ldev = netdev_next_lower_dev_rcu(now, &iter);
7244 if (!ldev)
7245 break;
7246
7247 next = ldev;
7248 niter = &ldev->adj_list.lower;
7249 dev_stack[cur] = now;
7250 iter_stack[cur++] = iter;
7251 break;
7252 }
7253
7254 if (!next) {
7255 if (!cur)
7256 return 0;
7257 next = dev_stack[--cur];
7258 niter = iter_stack[cur];
7259 }
7260
7261 now = next;
7262 iter = niter;
1a3f060c
DA
7263 }
7264
7265 return 0;
7266}
7267EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev_rcu);
7268
e001bfad 7269/**
7270 * netdev_lower_get_first_private_rcu - Get the first ->private from the
7271 * lower neighbour list, RCU
7272 * variant
7273 * @dev: device
7274 *
7275 * Gets the first netdev_adjacent->private from the dev's lower neighbour
7276 * list. The caller must hold RCU read lock.
7277 */
7278void *netdev_lower_get_first_private_rcu(struct net_device *dev)
7279{
7280 struct netdev_adjacent *lower;
7281
7282 lower = list_first_or_null_rcu(&dev->adj_list.lower,
7283 struct netdev_adjacent, list);
7284 if (lower)
7285 return lower->private;
7286 return NULL;
7287}
7288EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
7289
9ff162a8
JP
7290/**
7291 * netdev_master_upper_dev_get_rcu - Get master upper device
7292 * @dev: device
7293 *
7294 * Find a master upper device and return pointer to it or NULL in case
7295 * it's not there. The caller must hold the RCU read lock.
7296 */
7297struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
7298{
aa9d8560 7299 struct netdev_adjacent *upper;
9ff162a8 7300
2f268f12 7301 upper = list_first_or_null_rcu(&dev->adj_list.upper,
aa9d8560 7302 struct netdev_adjacent, list);
9ff162a8
JP
7303 if (upper && likely(upper->master))
7304 return upper->dev;
7305 return NULL;
7306}
7307EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
7308
0a59f3a9 7309static int netdev_adjacent_sysfs_add(struct net_device *dev,
3ee32707
VF
7310 struct net_device *adj_dev,
7311 struct list_head *dev_list)
7312{
7313 char linkname[IFNAMSIZ+7];
f4563a75 7314
3ee32707
VF
7315 sprintf(linkname, dev_list == &dev->adj_list.upper ?
7316 "upper_%s" : "lower_%s", adj_dev->name);
7317 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
7318 linkname);
7319}
0a59f3a9 7320static void netdev_adjacent_sysfs_del(struct net_device *dev,
3ee32707
VF
7321 char *name,
7322 struct list_head *dev_list)
7323{
7324 char linkname[IFNAMSIZ+7];
f4563a75 7325
3ee32707
VF
7326 sprintf(linkname, dev_list == &dev->adj_list.upper ?
7327 "upper_%s" : "lower_%s", name);
7328 sysfs_remove_link(&(dev->dev.kobj), linkname);
7329}
7330
7ce64c79
AF
7331static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
7332 struct net_device *adj_dev,
7333 struct list_head *dev_list)
7334{
7335 return (dev_list == &dev->adj_list.upper ||
7336 dev_list == &dev->adj_list.lower) &&
7337 net_eq(dev_net(dev), dev_net(adj_dev));
7338}
3ee32707 7339
5d261913
VF
7340static int __netdev_adjacent_dev_insert(struct net_device *dev,
7341 struct net_device *adj_dev,
7863c054 7342 struct list_head *dev_list,
402dae96 7343 void *private, bool master)
5d261913
VF
7344{
7345 struct netdev_adjacent *adj;
842d67a7 7346 int ret;
5d261913 7347
6ea29da1 7348 adj = __netdev_find_adj(adj_dev, dev_list);
5d261913
VF
7349
7350 if (adj) {
790510d9 7351 adj->ref_nr += 1;
67b62f98
DA
7352 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d\n",
7353 dev->name, adj_dev->name, adj->ref_nr);
7354
5d261913
VF
7355 return 0;
7356 }
7357
7358 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
7359 if (!adj)
7360 return -ENOMEM;
7361
7362 adj->dev = adj_dev;
7363 adj->master = master;
790510d9 7364 adj->ref_nr = 1;
402dae96 7365 adj->private = private;
32b6d34f 7366 adj->ignore = false;
5d261913 7367 dev_hold(adj_dev);
2f268f12 7368
67b62f98
DA
7369 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d; dev_hold on %s\n",
7370 dev->name, adj_dev->name, adj->ref_nr, adj_dev->name);
5d261913 7371
7ce64c79 7372 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
3ee32707 7373 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
5831d66e
VF
7374 if (ret)
7375 goto free_adj;
7376 }
7377
7863c054 7378 /* Ensure that master link is always the first item in list. */
842d67a7
VF
7379 if (master) {
7380 ret = sysfs_create_link(&(dev->dev.kobj),
7381 &(adj_dev->dev.kobj), "master");
7382 if (ret)
5831d66e 7383 goto remove_symlinks;
842d67a7 7384
7863c054 7385 list_add_rcu(&adj->list, dev_list);
842d67a7 7386 } else {
7863c054 7387 list_add_tail_rcu(&adj->list, dev_list);
842d67a7 7388 }
5d261913
VF
7389
7390 return 0;
842d67a7 7391
5831d66e 7392remove_symlinks:
7ce64c79 7393 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
3ee32707 7394 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
842d67a7
VF
7395free_adj:
7396 kfree(adj);
974daef7 7397 dev_put(adj_dev);
842d67a7
VF
7398
7399 return ret;
5d261913
VF
7400}
7401
1d143d9f 7402static void __netdev_adjacent_dev_remove(struct net_device *dev,
7403 struct net_device *adj_dev,
93409033 7404 u16 ref_nr,
1d143d9f 7405 struct list_head *dev_list)
5d261913
VF
7406{
7407 struct netdev_adjacent *adj;
7408
67b62f98
DA
7409 pr_debug("Remove adjacency: dev %s adj_dev %s ref_nr %d\n",
7410 dev->name, adj_dev->name, ref_nr);
7411
6ea29da1 7412 adj = __netdev_find_adj(adj_dev, dev_list);
5d261913 7413
2f268f12 7414 if (!adj) {
67b62f98 7415 pr_err("Adjacency does not exist for device %s from %s\n",
2f268f12 7416 dev->name, adj_dev->name);
67b62f98
DA
7417 WARN_ON(1);
7418 return;
2f268f12 7419 }
5d261913 7420
93409033 7421 if (adj->ref_nr > ref_nr) {
67b62f98
DA
7422 pr_debug("adjacency: %s to %s ref_nr - %d = %d\n",
7423 dev->name, adj_dev->name, ref_nr,
7424 adj->ref_nr - ref_nr);
93409033 7425 adj->ref_nr -= ref_nr;
5d261913
VF
7426 return;
7427 }
7428
842d67a7
VF
7429 if (adj->master)
7430 sysfs_remove_link(&(dev->dev.kobj), "master");
7431
7ce64c79 7432 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
3ee32707 7433 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
5831d66e 7434
5d261913 7435 list_del_rcu(&adj->list);
67b62f98 7436 pr_debug("adjacency: dev_put for %s, because link removed from %s to %s\n",
2f268f12 7437 adj_dev->name, dev->name, adj_dev->name);
5d261913
VF
7438 dev_put(adj_dev);
7439 kfree_rcu(adj, rcu);
7440}
7441
1d143d9f 7442static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
7443 struct net_device *upper_dev,
7444 struct list_head *up_list,
7445 struct list_head *down_list,
7446 void *private, bool master)
5d261913
VF
7447{
7448 int ret;
7449
790510d9 7450 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list,
93409033 7451 private, master);
5d261913
VF
7452 if (ret)
7453 return ret;
7454
790510d9 7455 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list,
93409033 7456 private, false);
5d261913 7457 if (ret) {
790510d9 7458 __netdev_adjacent_dev_remove(dev, upper_dev, 1, up_list);
5d261913
VF
7459 return ret;
7460 }
7461
7462 return 0;
7463}
7464
1d143d9f 7465static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
7466 struct net_device *upper_dev,
93409033 7467 u16 ref_nr,
1d143d9f 7468 struct list_head *up_list,
7469 struct list_head *down_list)
5d261913 7470{
93409033
AC
7471 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
7472 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
5d261913
VF
7473}
7474
1d143d9f 7475static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
7476 struct net_device *upper_dev,
7477 void *private, bool master)
2f268f12 7478{
f1170fd4
DA
7479 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
7480 &dev->adj_list.upper,
7481 &upper_dev->adj_list.lower,
7482 private, master);
5d261913
VF
7483}
7484
1d143d9f 7485static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
7486 struct net_device *upper_dev)
2f268f12 7487{
93409033 7488 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
2f268f12
VF
7489 &dev->adj_list.upper,
7490 &upper_dev->adj_list.lower);
7491}
5d261913 7492
9ff162a8 7493static int __netdev_upper_dev_link(struct net_device *dev,
402dae96 7494 struct net_device *upper_dev, bool master,
42ab19ee
DA
7495 void *upper_priv, void *upper_info,
7496 struct netlink_ext_ack *extack)
9ff162a8 7497{
51d0c047
DA
7498 struct netdev_notifier_changeupper_info changeupper_info = {
7499 .info = {
7500 .dev = dev,
42ab19ee 7501 .extack = extack,
51d0c047
DA
7502 },
7503 .upper_dev = upper_dev,
7504 .master = master,
7505 .linking = true,
7506 .upper_info = upper_info,
7507 };
50d629e7 7508 struct net_device *master_dev;
5d261913 7509 int ret = 0;
9ff162a8
JP
7510
7511 ASSERT_RTNL();
7512
7513 if (dev == upper_dev)
7514 return -EBUSY;
7515
7516 /* To prevent loops, check if dev is not upper device to upper_dev. */
32b6d34f 7517 if (__netdev_has_upper_dev(upper_dev, dev))
9ff162a8
JP
7518 return -EBUSY;
7519
5343da4c
TY
7520 if ((dev->lower_level + upper_dev->upper_level) > MAX_NEST_DEV)
7521 return -EMLINK;
7522
50d629e7 7523 if (!master) {
32b6d34f 7524 if (__netdev_has_upper_dev(dev, upper_dev))
50d629e7
MM
7525 return -EEXIST;
7526 } else {
32b6d34f 7527 master_dev = __netdev_master_upper_dev_get(dev);
50d629e7
MM
7528 if (master_dev)
7529 return master_dev == upper_dev ? -EEXIST : -EBUSY;
7530 }
9ff162a8 7531
51d0c047 7532 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
573c7ba0
JP
7533 &changeupper_info.info);
7534 ret = notifier_to_errno(ret);
7535 if (ret)
7536 return ret;
7537
6dffb044 7538 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
402dae96 7539 master);
5d261913
VF
7540 if (ret)
7541 return ret;
9ff162a8 7542
51d0c047 7543 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
b03804e7
IS
7544 &changeupper_info.info);
7545 ret = notifier_to_errno(ret);
7546 if (ret)
f1170fd4 7547 goto rollback;
b03804e7 7548
5343da4c 7549 __netdev_update_upper_level(dev, NULL);
32b6d34f 7550 __netdev_walk_all_lower_dev(dev, __netdev_update_upper_level, NULL);
5343da4c
TY
7551
7552 __netdev_update_lower_level(upper_dev, NULL);
32b6d34f
TY
7553 __netdev_walk_all_upper_dev(upper_dev, __netdev_update_lower_level,
7554 NULL);
5343da4c 7555
9ff162a8 7556 return 0;
5d261913 7557
f1170fd4 7558rollback:
2f268f12 7559 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
5d261913
VF
7560
7561 return ret;
9ff162a8
JP
7562}
7563
7564/**
7565 * netdev_upper_dev_link - Add a link to the upper device
7566 * @dev: device
7567 * @upper_dev: new upper device
7a006d59 7568 * @extack: netlink extended ack
9ff162a8
JP
7569 *
7570 * Adds a link to device which is upper to this one. The caller must hold
7571 * the RTNL lock. On a failure a negative errno code is returned.
7572 * On success the reference counts are adjusted and the function
7573 * returns zero.
7574 */
7575int netdev_upper_dev_link(struct net_device *dev,
42ab19ee
DA
7576 struct net_device *upper_dev,
7577 struct netlink_ext_ack *extack)
9ff162a8 7578{
42ab19ee
DA
7579 return __netdev_upper_dev_link(dev, upper_dev, false,
7580 NULL, NULL, extack);
9ff162a8
JP
7581}
7582EXPORT_SYMBOL(netdev_upper_dev_link);
7583
7584/**
7585 * netdev_master_upper_dev_link - Add a master link to the upper device
7586 * @dev: device
7587 * @upper_dev: new upper device
6dffb044 7588 * @upper_priv: upper device private
29bf24af 7589 * @upper_info: upper info to be passed down via notifier
7a006d59 7590 * @extack: netlink extended ack
9ff162a8
JP
7591 *
7592 * Adds a link to device which is upper to this one. In this case, only
7593 * one master upper device can be linked, although other non-master devices
7594 * might be linked as well. The caller must hold the RTNL lock.
7595 * On a failure a negative errno code is returned. On success the reference
7596 * counts are adjusted and the function returns zero.
7597 */
7598int netdev_master_upper_dev_link(struct net_device *dev,
6dffb044 7599 struct net_device *upper_dev,
42ab19ee
DA
7600 void *upper_priv, void *upper_info,
7601 struct netlink_ext_ack *extack)
9ff162a8 7602{
29bf24af 7603 return __netdev_upper_dev_link(dev, upper_dev, true,
42ab19ee 7604 upper_priv, upper_info, extack);
9ff162a8
JP
7605}
7606EXPORT_SYMBOL(netdev_master_upper_dev_link);
7607
7608/**
7609 * netdev_upper_dev_unlink - Removes a link to upper device
7610 * @dev: device
7611 * @upper_dev: new upper device
7612 *
7613 * Removes a link to device which is upper to this one. The caller must hold
7614 * the RTNL lock.
7615 */
7616void netdev_upper_dev_unlink(struct net_device *dev,
7617 struct net_device *upper_dev)
7618{
51d0c047
DA
7619 struct netdev_notifier_changeupper_info changeupper_info = {
7620 .info = {
7621 .dev = dev,
7622 },
7623 .upper_dev = upper_dev,
7624 .linking = false,
7625 };
f4563a75 7626
9ff162a8
JP
7627 ASSERT_RTNL();
7628
0e4ead9d 7629 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
0e4ead9d 7630
51d0c047 7631 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
573c7ba0
JP
7632 &changeupper_info.info);
7633
2f268f12 7634 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
5d261913 7635
51d0c047 7636 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
0e4ead9d 7637 &changeupper_info.info);
5343da4c
TY
7638
7639 __netdev_update_upper_level(dev, NULL);
32b6d34f 7640 __netdev_walk_all_lower_dev(dev, __netdev_update_upper_level, NULL);
5343da4c
TY
7641
7642 __netdev_update_lower_level(upper_dev, NULL);
32b6d34f
TY
7643 __netdev_walk_all_upper_dev(upper_dev, __netdev_update_lower_level,
7644 NULL);
9ff162a8
JP
7645}
7646EXPORT_SYMBOL(netdev_upper_dev_unlink);
7647
32b6d34f
TY
7648static void __netdev_adjacent_dev_set(struct net_device *upper_dev,
7649 struct net_device *lower_dev,
7650 bool val)
7651{
7652 struct netdev_adjacent *adj;
7653
7654 adj = __netdev_find_adj(lower_dev, &upper_dev->adj_list.lower);
7655 if (adj)
7656 adj->ignore = val;
7657
7658 adj = __netdev_find_adj(upper_dev, &lower_dev->adj_list.upper);
7659 if (adj)
7660 adj->ignore = val;
7661}
7662
7663static void netdev_adjacent_dev_disable(struct net_device *upper_dev,
7664 struct net_device *lower_dev)
7665{
7666 __netdev_adjacent_dev_set(upper_dev, lower_dev, true);
7667}
7668
7669static void netdev_adjacent_dev_enable(struct net_device *upper_dev,
7670 struct net_device *lower_dev)
7671{
7672 __netdev_adjacent_dev_set(upper_dev, lower_dev, false);
7673}
7674
7675int netdev_adjacent_change_prepare(struct net_device *old_dev,
7676 struct net_device *new_dev,
7677 struct net_device *dev,
7678 struct netlink_ext_ack *extack)
7679{
7680 int err;
7681
7682 if (!new_dev)
7683 return 0;
7684
7685 if (old_dev && new_dev != old_dev)
7686 netdev_adjacent_dev_disable(dev, old_dev);
7687
7688 err = netdev_upper_dev_link(new_dev, dev, extack);
7689 if (err) {
7690 if (old_dev && new_dev != old_dev)
7691 netdev_adjacent_dev_enable(dev, old_dev);
7692 return err;
7693 }
7694
7695 return 0;
7696}
7697EXPORT_SYMBOL(netdev_adjacent_change_prepare);
7698
7699void netdev_adjacent_change_commit(struct net_device *old_dev,
7700 struct net_device *new_dev,
7701 struct net_device *dev)
7702{
7703 if (!new_dev || !old_dev)
7704 return;
7705
7706 if (new_dev == old_dev)
7707 return;
7708
7709 netdev_adjacent_dev_enable(dev, old_dev);
7710 netdev_upper_dev_unlink(old_dev, dev);
7711}
7712EXPORT_SYMBOL(netdev_adjacent_change_commit);
7713
7714void netdev_adjacent_change_abort(struct net_device *old_dev,
7715 struct net_device *new_dev,
7716 struct net_device *dev)
7717{
7718 if (!new_dev)
7719 return;
7720
7721 if (old_dev && new_dev != old_dev)
7722 netdev_adjacent_dev_enable(dev, old_dev);
7723
7724 netdev_upper_dev_unlink(new_dev, dev);
7725}
7726EXPORT_SYMBOL(netdev_adjacent_change_abort);
7727
61bd3857
MS
7728/**
7729 * netdev_bonding_info_change - Dispatch event about slave change
7730 * @dev: device
4a26e453 7731 * @bonding_info: info to dispatch
61bd3857
MS
7732 *
7733 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
7734 * The caller must hold the RTNL lock.
7735 */
7736void netdev_bonding_info_change(struct net_device *dev,
7737 struct netdev_bonding_info *bonding_info)
7738{
51d0c047
DA
7739 struct netdev_notifier_bonding_info info = {
7740 .info.dev = dev,
7741 };
61bd3857
MS
7742
7743 memcpy(&info.bonding_info, bonding_info,
7744 sizeof(struct netdev_bonding_info));
51d0c047 7745 call_netdevice_notifiers_info(NETDEV_BONDING_INFO,
61bd3857
MS
7746 &info.info);
7747}
7748EXPORT_SYMBOL(netdev_bonding_info_change);
7749
2ce1ee17 7750static void netdev_adjacent_add_links(struct net_device *dev)
4c75431a
AF
7751{
7752 struct netdev_adjacent *iter;
7753
7754 struct net *net = dev_net(dev);
7755
7756 list_for_each_entry(iter, &dev->adj_list.upper, list) {
be4da0e3 7757 if (!net_eq(net, dev_net(iter->dev)))
4c75431a
AF
7758 continue;
7759 netdev_adjacent_sysfs_add(iter->dev, dev,
7760 &iter->dev->adj_list.lower);
7761 netdev_adjacent_sysfs_add(dev, iter->dev,
7762 &dev->adj_list.upper);
7763 }
7764
7765 list_for_each_entry(iter, &dev->adj_list.lower, list) {
be4da0e3 7766 if (!net_eq(net, dev_net(iter->dev)))
4c75431a
AF
7767 continue;
7768 netdev_adjacent_sysfs_add(iter->dev, dev,
7769 &iter->dev->adj_list.upper);
7770 netdev_adjacent_sysfs_add(dev, iter->dev,
7771 &dev->adj_list.lower);
7772 }
7773}
7774
2ce1ee17 7775static void netdev_adjacent_del_links(struct net_device *dev)
4c75431a
AF
7776{
7777 struct netdev_adjacent *iter;
7778
7779 struct net *net = dev_net(dev);
7780
7781 list_for_each_entry(iter, &dev->adj_list.upper, list) {
be4da0e3 7782 if (!net_eq(net, dev_net(iter->dev)))
4c75431a
AF
7783 continue;
7784 netdev_adjacent_sysfs_del(iter->dev, dev->name,
7785 &iter->dev->adj_list.lower);
7786 netdev_adjacent_sysfs_del(dev, iter->dev->name,
7787 &dev->adj_list.upper);
7788 }
7789
7790 list_for_each_entry(iter, &dev->adj_list.lower, list) {
be4da0e3 7791 if (!net_eq(net, dev_net(iter->dev)))
4c75431a
AF
7792 continue;
7793 netdev_adjacent_sysfs_del(iter->dev, dev->name,
7794 &iter->dev->adj_list.upper);
7795 netdev_adjacent_sysfs_del(dev, iter->dev->name,
7796 &dev->adj_list.lower);
7797 }
7798}
7799
5bb025fa 7800void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
402dae96 7801{
5bb025fa 7802 struct netdev_adjacent *iter;
402dae96 7803
4c75431a
AF
7804 struct net *net = dev_net(dev);
7805
5bb025fa 7806 list_for_each_entry(iter, &dev->adj_list.upper, list) {
be4da0e3 7807 if (!net_eq(net, dev_net(iter->dev)))
4c75431a 7808 continue;
5bb025fa
VF
7809 netdev_adjacent_sysfs_del(iter->dev, oldname,
7810 &iter->dev->adj_list.lower);
7811 netdev_adjacent_sysfs_add(iter->dev, dev,
7812 &iter->dev->adj_list.lower);
7813 }
402dae96 7814
5bb025fa 7815 list_for_each_entry(iter, &dev->adj_list.lower, list) {
be4da0e3 7816 if (!net_eq(net, dev_net(iter->dev)))
4c75431a 7817 continue;
5bb025fa
VF
7818 netdev_adjacent_sysfs_del(iter->dev, oldname,
7819 &iter->dev->adj_list.upper);
7820 netdev_adjacent_sysfs_add(iter->dev, dev,
7821 &iter->dev->adj_list.upper);
7822 }
402dae96 7823}
402dae96
VF
7824
7825void *netdev_lower_dev_get_private(struct net_device *dev,
7826 struct net_device *lower_dev)
7827{
7828 struct netdev_adjacent *lower;
7829
7830 if (!lower_dev)
7831 return NULL;
6ea29da1 7832 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
402dae96
VF
7833 if (!lower)
7834 return NULL;
7835
7836 return lower->private;
7837}
7838EXPORT_SYMBOL(netdev_lower_dev_get_private);
7839
4085ebe8 7840
04d48266
JP
7841/**
7842 * netdev_lower_change - Dispatch event about lower device state change
7843 * @lower_dev: device
7844 * @lower_state_info: state to dispatch
7845 *
7846 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
7847 * The caller must hold the RTNL lock.
7848 */
7849void netdev_lower_state_changed(struct net_device *lower_dev,
7850 void *lower_state_info)
7851{
51d0c047
DA
7852 struct netdev_notifier_changelowerstate_info changelowerstate_info = {
7853 .info.dev = lower_dev,
7854 };
04d48266
JP
7855
7856 ASSERT_RTNL();
7857 changelowerstate_info.lower_state_info = lower_state_info;
51d0c047 7858 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE,
04d48266
JP
7859 &changelowerstate_info.info);
7860}
7861EXPORT_SYMBOL(netdev_lower_state_changed);
7862
b6c40d68
PM
7863static void dev_change_rx_flags(struct net_device *dev, int flags)
7864{
d314774c
SH
7865 const struct net_device_ops *ops = dev->netdev_ops;
7866
d2615bf4 7867 if (ops->ndo_change_rx_flags)
d314774c 7868 ops->ndo_change_rx_flags(dev, flags);
b6c40d68
PM
7869}
7870
991fb3f7 7871static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
1da177e4 7872{
b536db93 7873 unsigned int old_flags = dev->flags;
d04a48b0
EB
7874 kuid_t uid;
7875 kgid_t gid;
1da177e4 7876
24023451
PM
7877 ASSERT_RTNL();
7878
dad9b335
WC
7879 dev->flags |= IFF_PROMISC;
7880 dev->promiscuity += inc;
7881 if (dev->promiscuity == 0) {
7882 /*
7883 * Avoid overflow.
7884 * If inc causes overflow, untouch promisc and return error.
7885 */
7886 if (inc < 0)
7887 dev->flags &= ~IFF_PROMISC;
7888 else {
7889 dev->promiscuity -= inc;
7b6cd1ce
JP
7890 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
7891 dev->name);
dad9b335
WC
7892 return -EOVERFLOW;
7893 }
7894 }
52609c0b 7895 if (dev->flags != old_flags) {
7b6cd1ce
JP
7896 pr_info("device %s %s promiscuous mode\n",
7897 dev->name,
7898 dev->flags & IFF_PROMISC ? "entered" : "left");
8192b0c4
DH
7899 if (audit_enabled) {
7900 current_uid_gid(&uid, &gid);
cdfb6b34
RGB
7901 audit_log(audit_context(), GFP_ATOMIC,
7902 AUDIT_ANOM_PROMISCUOUS,
7903 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
7904 dev->name, (dev->flags & IFF_PROMISC),
7905 (old_flags & IFF_PROMISC),
7906 from_kuid(&init_user_ns, audit_get_loginuid(current)),
7907 from_kuid(&init_user_ns, uid),
7908 from_kgid(&init_user_ns, gid),
7909 audit_get_sessionid(current));
8192b0c4 7910 }
24023451 7911
b6c40d68 7912 dev_change_rx_flags(dev, IFF_PROMISC);
1da177e4 7913 }
991fb3f7
ND
7914 if (notify)
7915 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
dad9b335 7916 return 0;
1da177e4
LT
7917}
7918
4417da66
PM
7919/**
7920 * dev_set_promiscuity - update promiscuity count on a device
7921 * @dev: device
7922 * @inc: modifier
7923 *
7924 * Add or remove promiscuity from a device. While the count in the device
7925 * remains above zero the interface remains promiscuous. Once it hits zero
7926 * the device reverts back to normal filtering operation. A negative inc
7927 * value is used to drop promiscuity on the device.
dad9b335 7928 * Return 0 if successful or a negative errno code on error.
4417da66 7929 */
dad9b335 7930int dev_set_promiscuity(struct net_device *dev, int inc)
4417da66 7931{
b536db93 7932 unsigned int old_flags = dev->flags;
dad9b335 7933 int err;
4417da66 7934
991fb3f7 7935 err = __dev_set_promiscuity(dev, inc, true);
4b5a698e 7936 if (err < 0)
dad9b335 7937 return err;
4417da66
PM
7938 if (dev->flags != old_flags)
7939 dev_set_rx_mode(dev);
dad9b335 7940 return err;
4417da66 7941}
d1b19dff 7942EXPORT_SYMBOL(dev_set_promiscuity);
4417da66 7943
991fb3f7 7944static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
1da177e4 7945{
991fb3f7 7946 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
1da177e4 7947
24023451
PM
7948 ASSERT_RTNL();
7949
1da177e4 7950 dev->flags |= IFF_ALLMULTI;
dad9b335
WC
7951 dev->allmulti += inc;
7952 if (dev->allmulti == 0) {
7953 /*
7954 * Avoid overflow.
7955 * If inc causes overflow, untouch allmulti and return error.
7956 */
7957 if (inc < 0)
7958 dev->flags &= ~IFF_ALLMULTI;
7959 else {
7960 dev->allmulti -= inc;
7b6cd1ce
JP
7961 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
7962 dev->name);
dad9b335
WC
7963 return -EOVERFLOW;
7964 }
7965 }
24023451 7966 if (dev->flags ^ old_flags) {
b6c40d68 7967 dev_change_rx_flags(dev, IFF_ALLMULTI);
4417da66 7968 dev_set_rx_mode(dev);
991fb3f7
ND
7969 if (notify)
7970 __dev_notify_flags(dev, old_flags,
7971 dev->gflags ^ old_gflags);
24023451 7972 }
dad9b335 7973 return 0;
4417da66 7974}
991fb3f7
ND
7975
7976/**
7977 * dev_set_allmulti - update allmulti count on a device
7978 * @dev: device
7979 * @inc: modifier
7980 *
7981 * Add or remove reception of all multicast frames to a device. While the
7982 * count in the device remains above zero the interface remains listening
7983 * to all interfaces. Once it hits zero the device reverts back to normal
7984 * filtering operation. A negative @inc value is used to drop the counter
7985 * when releasing a resource needing all multicasts.
7986 * Return 0 if successful or a negative errno code on error.
7987 */
7988
7989int dev_set_allmulti(struct net_device *dev, int inc)
7990{
7991 return __dev_set_allmulti(dev, inc, true);
7992}
d1b19dff 7993EXPORT_SYMBOL(dev_set_allmulti);
4417da66
PM
7994
7995/*
7996 * Upload unicast and multicast address lists to device and
7997 * configure RX filtering. When the device doesn't support unicast
53ccaae1 7998 * filtering it is put in promiscuous mode while unicast addresses
4417da66
PM
7999 * are present.
8000 */
8001void __dev_set_rx_mode(struct net_device *dev)
8002{
d314774c
SH
8003 const struct net_device_ops *ops = dev->netdev_ops;
8004
4417da66
PM
8005 /* dev_open will call this function so the list will stay sane. */
8006 if (!(dev->flags&IFF_UP))
8007 return;
8008
8009 if (!netif_device_present(dev))
40b77c94 8010 return;
4417da66 8011
01789349 8012 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
4417da66
PM
8013 /* Unicast addresses changes may only happen under the rtnl,
8014 * therefore calling __dev_set_promiscuity here is safe.
8015 */
32e7bfc4 8016 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
991fb3f7 8017 __dev_set_promiscuity(dev, 1, false);
2d348d1f 8018 dev->uc_promisc = true;
32e7bfc4 8019 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
991fb3f7 8020 __dev_set_promiscuity(dev, -1, false);
2d348d1f 8021 dev->uc_promisc = false;
4417da66 8022 }
4417da66 8023 }
01789349
JP
8024
8025 if (ops->ndo_set_rx_mode)
8026 ops->ndo_set_rx_mode(dev);
4417da66
PM
8027}
8028
8029void dev_set_rx_mode(struct net_device *dev)
8030{
b9e40857 8031 netif_addr_lock_bh(dev);
4417da66 8032 __dev_set_rx_mode(dev);
b9e40857 8033 netif_addr_unlock_bh(dev);
1da177e4
LT
8034}
8035
f0db275a
SH
8036/**
8037 * dev_get_flags - get flags reported to userspace
8038 * @dev: device
8039 *
8040 * Get the combination of flag bits exported through APIs to userspace.
8041 */
95c96174 8042unsigned int dev_get_flags(const struct net_device *dev)
1da177e4 8043{
95c96174 8044 unsigned int flags;
1da177e4
LT
8045
8046 flags = (dev->flags & ~(IFF_PROMISC |
8047 IFF_ALLMULTI |
b00055aa
SR
8048 IFF_RUNNING |
8049 IFF_LOWER_UP |
8050 IFF_DORMANT)) |
1da177e4
LT
8051 (dev->gflags & (IFF_PROMISC |
8052 IFF_ALLMULTI));
8053
b00055aa
SR
8054 if (netif_running(dev)) {
8055 if (netif_oper_up(dev))
8056 flags |= IFF_RUNNING;
8057 if (netif_carrier_ok(dev))
8058 flags |= IFF_LOWER_UP;
8059 if (netif_dormant(dev))
8060 flags |= IFF_DORMANT;
8061 }
1da177e4
LT
8062
8063 return flags;
8064}
d1b19dff 8065EXPORT_SYMBOL(dev_get_flags);
1da177e4 8066
6d040321
PM
8067int __dev_change_flags(struct net_device *dev, unsigned int flags,
8068 struct netlink_ext_ack *extack)
1da177e4 8069{
b536db93 8070 unsigned int old_flags = dev->flags;
bd380811 8071 int ret;
1da177e4 8072
24023451
PM
8073 ASSERT_RTNL();
8074
1da177e4
LT
8075 /*
8076 * Set the flags on our device.
8077 */
8078
8079 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
8080 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
8081 IFF_AUTOMEDIA)) |
8082 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
8083 IFF_ALLMULTI));
8084
8085 /*
8086 * Load in the correct multicast list now the flags have changed.
8087 */
8088
b6c40d68
PM
8089 if ((old_flags ^ flags) & IFF_MULTICAST)
8090 dev_change_rx_flags(dev, IFF_MULTICAST);
24023451 8091
4417da66 8092 dev_set_rx_mode(dev);
1da177e4
LT
8093
8094 /*
8095 * Have we downed the interface. We handle IFF_UP ourselves
8096 * according to user attempts to set it, rather than blindly
8097 * setting it.
8098 */
8099
8100 ret = 0;
7051b88a 8101 if ((old_flags ^ flags) & IFF_UP) {
8102 if (old_flags & IFF_UP)
8103 __dev_close(dev);
8104 else
40c900aa 8105 ret = __dev_open(dev, extack);
7051b88a 8106 }
1da177e4 8107
1da177e4 8108 if ((flags ^ dev->gflags) & IFF_PROMISC) {
d1b19dff 8109 int inc = (flags & IFF_PROMISC) ? 1 : -1;
991fb3f7 8110 unsigned int old_flags = dev->flags;
d1b19dff 8111
1da177e4 8112 dev->gflags ^= IFF_PROMISC;
991fb3f7
ND
8113
8114 if (__dev_set_promiscuity(dev, inc, false) >= 0)
8115 if (dev->flags != old_flags)
8116 dev_set_rx_mode(dev);
1da177e4
LT
8117 }
8118
8119 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
eb13da1a 8120 * is important. Some (broken) drivers set IFF_PROMISC, when
8121 * IFF_ALLMULTI is requested not asking us and not reporting.
1da177e4
LT
8122 */
8123 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
d1b19dff
ED
8124 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
8125
1da177e4 8126 dev->gflags ^= IFF_ALLMULTI;
991fb3f7 8127 __dev_set_allmulti(dev, inc, false);
1da177e4
LT
8128 }
8129
bd380811
PM
8130 return ret;
8131}
8132
a528c219
ND
8133void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
8134 unsigned int gchanges)
bd380811
PM
8135{
8136 unsigned int changes = dev->flags ^ old_flags;
8137
a528c219 8138 if (gchanges)
7f294054 8139 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
a528c219 8140
bd380811
PM
8141 if (changes & IFF_UP) {
8142 if (dev->flags & IFF_UP)
8143 call_netdevice_notifiers(NETDEV_UP, dev);
8144 else
8145 call_netdevice_notifiers(NETDEV_DOWN, dev);
8146 }
8147
8148 if (dev->flags & IFF_UP &&
be9efd36 8149 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
51d0c047
DA
8150 struct netdev_notifier_change_info change_info = {
8151 .info = {
8152 .dev = dev,
8153 },
8154 .flags_changed = changes,
8155 };
be9efd36 8156
51d0c047 8157 call_netdevice_notifiers_info(NETDEV_CHANGE, &change_info.info);
be9efd36 8158 }
bd380811
PM
8159}
8160
8161/**
8162 * dev_change_flags - change device settings
8163 * @dev: device
8164 * @flags: device state flags
567c5e13 8165 * @extack: netlink extended ack
bd380811
PM
8166 *
8167 * Change settings on device based state flags. The flags are
8168 * in the userspace exported format.
8169 */
567c5e13
PM
8170int dev_change_flags(struct net_device *dev, unsigned int flags,
8171 struct netlink_ext_ack *extack)
bd380811 8172{
b536db93 8173 int ret;
991fb3f7 8174 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
bd380811 8175
6d040321 8176 ret = __dev_change_flags(dev, flags, extack);
bd380811
PM
8177 if (ret < 0)
8178 return ret;
8179
991fb3f7 8180 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
a528c219 8181 __dev_notify_flags(dev, old_flags, changes);
1da177e4
LT
8182 return ret;
8183}
d1b19dff 8184EXPORT_SYMBOL(dev_change_flags);
1da177e4 8185
f51048c3 8186int __dev_set_mtu(struct net_device *dev, int new_mtu)
2315dc91
VF
8187{
8188 const struct net_device_ops *ops = dev->netdev_ops;
8189
8190 if (ops->ndo_change_mtu)
8191 return ops->ndo_change_mtu(dev, new_mtu);
8192
501a90c9
ED
8193 /* Pairs with all the lockless reads of dev->mtu in the stack */
8194 WRITE_ONCE(dev->mtu, new_mtu);
2315dc91
VF
8195 return 0;
8196}
f51048c3 8197EXPORT_SYMBOL(__dev_set_mtu);
2315dc91 8198
f0db275a 8199/**
7a4c53be 8200 * dev_set_mtu_ext - Change maximum transfer unit
f0db275a
SH
8201 * @dev: device
8202 * @new_mtu: new transfer unit
7a4c53be 8203 * @extack: netlink extended ack
f0db275a
SH
8204 *
8205 * Change the maximum transfer size of the network device.
8206 */
7a4c53be
SH
8207int dev_set_mtu_ext(struct net_device *dev, int new_mtu,
8208 struct netlink_ext_ack *extack)
1da177e4 8209{
2315dc91 8210 int err, orig_mtu;
1da177e4
LT
8211
8212 if (new_mtu == dev->mtu)
8213 return 0;
8214
61e84623
JW
8215 /* MTU must be positive, and in range */
8216 if (new_mtu < 0 || new_mtu < dev->min_mtu) {
7a4c53be 8217 NL_SET_ERR_MSG(extack, "mtu less than device minimum");
1da177e4 8218 return -EINVAL;
61e84623
JW
8219 }
8220
8221 if (dev->max_mtu > 0 && new_mtu > dev->max_mtu) {
7a4c53be 8222 NL_SET_ERR_MSG(extack, "mtu greater than device maximum");
61e84623
JW
8223 return -EINVAL;
8224 }
1da177e4
LT
8225
8226 if (!netif_device_present(dev))
8227 return -ENODEV;
8228
1d486bfb
VF
8229 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
8230 err = notifier_to_errno(err);
8231 if (err)
8232 return err;
d314774c 8233
2315dc91
VF
8234 orig_mtu = dev->mtu;
8235 err = __dev_set_mtu(dev, new_mtu);
d314774c 8236
2315dc91 8237 if (!err) {
af7d6cce
SD
8238 err = call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
8239 orig_mtu);
2315dc91
VF
8240 err = notifier_to_errno(err);
8241 if (err) {
8242 /* setting mtu back and notifying everyone again,
8243 * so that they have a chance to revert changes.
8244 */
8245 __dev_set_mtu(dev, orig_mtu);
af7d6cce
SD
8246 call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
8247 new_mtu);
2315dc91
VF
8248 }
8249 }
1da177e4
LT
8250 return err;
8251}
7a4c53be
SH
8252
8253int dev_set_mtu(struct net_device *dev, int new_mtu)
8254{
8255 struct netlink_ext_ack extack;
8256 int err;
8257
a6bcfc89 8258 memset(&extack, 0, sizeof(extack));
7a4c53be 8259 err = dev_set_mtu_ext(dev, new_mtu, &extack);
a6bcfc89 8260 if (err && extack._msg)
7a4c53be
SH
8261 net_err_ratelimited("%s: %s\n", dev->name, extack._msg);
8262 return err;
8263}
d1b19dff 8264EXPORT_SYMBOL(dev_set_mtu);
1da177e4 8265
6a643ddb
CW
8266/**
8267 * dev_change_tx_queue_len - Change TX queue length of a netdevice
8268 * @dev: device
8269 * @new_len: new tx queue length
8270 */
8271int dev_change_tx_queue_len(struct net_device *dev, unsigned long new_len)
8272{
8273 unsigned int orig_len = dev->tx_queue_len;
8274 int res;
8275
8276 if (new_len != (unsigned int)new_len)
8277 return -ERANGE;
8278
8279 if (new_len != orig_len) {
8280 dev->tx_queue_len = new_len;
8281 res = call_netdevice_notifiers(NETDEV_CHANGE_TX_QUEUE_LEN, dev);
8282 res = notifier_to_errno(res);
7effaf06
TT
8283 if (res)
8284 goto err_rollback;
8285 res = dev_qdisc_change_tx_queue_len(dev);
8286 if (res)
8287 goto err_rollback;
6a643ddb
CW
8288 }
8289
8290 return 0;
7effaf06
TT
8291
8292err_rollback:
8293 netdev_err(dev, "refused to change device tx_queue_len\n");
8294 dev->tx_queue_len = orig_len;
8295 return res;
6a643ddb
CW
8296}
8297
cbda10fa
VD
8298/**
8299 * dev_set_group - Change group this device belongs to
8300 * @dev: device
8301 * @new_group: group this device should belong to
8302 */
8303void dev_set_group(struct net_device *dev, int new_group)
8304{
8305 dev->group = new_group;
8306}
8307EXPORT_SYMBOL(dev_set_group);
8308
d59cdf94
PM
8309/**
8310 * dev_pre_changeaddr_notify - Call NETDEV_PRE_CHANGEADDR.
8311 * @dev: device
8312 * @addr: new address
8313 * @extack: netlink extended ack
8314 */
8315int dev_pre_changeaddr_notify(struct net_device *dev, const char *addr,
8316 struct netlink_ext_ack *extack)
8317{
8318 struct netdev_notifier_pre_changeaddr_info info = {
8319 .info.dev = dev,
8320 .info.extack = extack,
8321 .dev_addr = addr,
8322 };
8323 int rc;
8324
8325 rc = call_netdevice_notifiers_info(NETDEV_PRE_CHANGEADDR, &info.info);
8326 return notifier_to_errno(rc);
8327}
8328EXPORT_SYMBOL(dev_pre_changeaddr_notify);
8329
f0db275a
SH
8330/**
8331 * dev_set_mac_address - Change Media Access Control Address
8332 * @dev: device
8333 * @sa: new address
3a37a963 8334 * @extack: netlink extended ack
f0db275a
SH
8335 *
8336 * Change the hardware (MAC) address of the device
8337 */
3a37a963
PM
8338int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa,
8339 struct netlink_ext_ack *extack)
1da177e4 8340{
d314774c 8341 const struct net_device_ops *ops = dev->netdev_ops;
1da177e4
LT
8342 int err;
8343
d314774c 8344 if (!ops->ndo_set_mac_address)
1da177e4
LT
8345 return -EOPNOTSUPP;
8346 if (sa->sa_family != dev->type)
8347 return -EINVAL;
8348 if (!netif_device_present(dev))
8349 return -ENODEV;
d59cdf94
PM
8350 err = dev_pre_changeaddr_notify(dev, sa->sa_data, extack);
8351 if (err)
8352 return err;
d314774c 8353 err = ops->ndo_set_mac_address(dev, sa);
f6521516
JP
8354 if (err)
8355 return err;
fbdeca2d 8356 dev->addr_assign_type = NET_ADDR_SET;
f6521516 8357 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
7bf23575 8358 add_device_randomness(dev->dev_addr, dev->addr_len);
f6521516 8359 return 0;
1da177e4 8360}
d1b19dff 8361EXPORT_SYMBOL(dev_set_mac_address);
1da177e4 8362
4bf84c35
JP
8363/**
8364 * dev_change_carrier - Change device carrier
8365 * @dev: device
691b3b7e 8366 * @new_carrier: new value
4bf84c35
JP
8367 *
8368 * Change device carrier
8369 */
8370int dev_change_carrier(struct net_device *dev, bool new_carrier)
8371{
8372 const struct net_device_ops *ops = dev->netdev_ops;
8373
8374 if (!ops->ndo_change_carrier)
8375 return -EOPNOTSUPP;
8376 if (!netif_device_present(dev))
8377 return -ENODEV;
8378 return ops->ndo_change_carrier(dev, new_carrier);
8379}
8380EXPORT_SYMBOL(dev_change_carrier);
8381
66b52b0d
JP
8382/**
8383 * dev_get_phys_port_id - Get device physical port ID
8384 * @dev: device
8385 * @ppid: port ID
8386 *
8387 * Get device physical port ID
8388 */
8389int dev_get_phys_port_id(struct net_device *dev,
02637fce 8390 struct netdev_phys_item_id *ppid)
66b52b0d
JP
8391{
8392 const struct net_device_ops *ops = dev->netdev_ops;
8393
8394 if (!ops->ndo_get_phys_port_id)
8395 return -EOPNOTSUPP;
8396 return ops->ndo_get_phys_port_id(dev, ppid);
8397}
8398EXPORT_SYMBOL(dev_get_phys_port_id);
8399
db24a904
DA
8400/**
8401 * dev_get_phys_port_name - Get device physical port name
8402 * @dev: device
8403 * @name: port name
ed49e650 8404 * @len: limit of bytes to copy to name
db24a904
DA
8405 *
8406 * Get device physical port name
8407 */
8408int dev_get_phys_port_name(struct net_device *dev,
8409 char *name, size_t len)
8410{
8411 const struct net_device_ops *ops = dev->netdev_ops;
af3836df 8412 int err;
db24a904 8413
af3836df
JP
8414 if (ops->ndo_get_phys_port_name) {
8415 err = ops->ndo_get_phys_port_name(dev, name, len);
8416 if (err != -EOPNOTSUPP)
8417 return err;
8418 }
8419 return devlink_compat_phys_port_name_get(dev, name, len);
db24a904
DA
8420}
8421EXPORT_SYMBOL(dev_get_phys_port_name);
8422
d6abc596
FF
8423/**
8424 * dev_get_port_parent_id - Get the device's port parent identifier
8425 * @dev: network device
8426 * @ppid: pointer to a storage for the port's parent identifier
8427 * @recurse: allow/disallow recursion to lower devices
8428 *
8429 * Get the devices's port parent identifier
8430 */
8431int dev_get_port_parent_id(struct net_device *dev,
8432 struct netdev_phys_item_id *ppid,
8433 bool recurse)
8434{
8435 const struct net_device_ops *ops = dev->netdev_ops;
8436 struct netdev_phys_item_id first = { };
8437 struct net_device *lower_dev;
8438 struct list_head *iter;
7e1146e8
JP
8439 int err;
8440
8441 if (ops->ndo_get_port_parent_id) {
8442 err = ops->ndo_get_port_parent_id(dev, ppid);
8443 if (err != -EOPNOTSUPP)
8444 return err;
8445 }
d6abc596 8446
7e1146e8
JP
8447 err = devlink_compat_switch_id_get(dev, ppid);
8448 if (!err || err != -EOPNOTSUPP)
8449 return err;
d6abc596
FF
8450
8451 if (!recurse)
7e1146e8 8452 return -EOPNOTSUPP;
d6abc596
FF
8453
8454 netdev_for_each_lower_dev(dev, lower_dev, iter) {
8455 err = dev_get_port_parent_id(lower_dev, ppid, recurse);
8456 if (err)
8457 break;
8458 if (!first.id_len)
8459 first = *ppid;
8460 else if (memcmp(&first, ppid, sizeof(*ppid)))
8461 return -ENODATA;
8462 }
8463
8464 return err;
8465}
8466EXPORT_SYMBOL(dev_get_port_parent_id);
8467
8468/**
8469 * netdev_port_same_parent_id - Indicate if two network devices have
8470 * the same port parent identifier
8471 * @a: first network device
8472 * @b: second network device
8473 */
8474bool netdev_port_same_parent_id(struct net_device *a, struct net_device *b)
8475{
8476 struct netdev_phys_item_id a_id = { };
8477 struct netdev_phys_item_id b_id = { };
8478
8479 if (dev_get_port_parent_id(a, &a_id, true) ||
8480 dev_get_port_parent_id(b, &b_id, true))
8481 return false;
8482
8483 return netdev_phys_item_id_same(&a_id, &b_id);
8484}
8485EXPORT_SYMBOL(netdev_port_same_parent_id);
8486
d746d707
AK
8487/**
8488 * dev_change_proto_down - update protocol port state information
8489 * @dev: device
8490 * @proto_down: new value
8491 *
8492 * This info can be used by switch drivers to set the phys state of the
8493 * port.
8494 */
8495int dev_change_proto_down(struct net_device *dev, bool proto_down)
8496{
8497 const struct net_device_ops *ops = dev->netdev_ops;
8498
8499 if (!ops->ndo_change_proto_down)
8500 return -EOPNOTSUPP;
8501 if (!netif_device_present(dev))
8502 return -ENODEV;
8503 return ops->ndo_change_proto_down(dev, proto_down);
8504}
8505EXPORT_SYMBOL(dev_change_proto_down);
8506
b5899679
AR
8507/**
8508 * dev_change_proto_down_generic - generic implementation for
8509 * ndo_change_proto_down that sets carrier according to
8510 * proto_down.
8511 *
8512 * @dev: device
8513 * @proto_down: new value
8514 */
8515int dev_change_proto_down_generic(struct net_device *dev, bool proto_down)
8516{
8517 if (proto_down)
8518 netif_carrier_off(dev);
8519 else
8520 netif_carrier_on(dev);
8521 dev->proto_down = proto_down;
8522 return 0;
8523}
8524EXPORT_SYMBOL(dev_change_proto_down_generic);
8525
a25717d2
JK
8526u32 __dev_xdp_query(struct net_device *dev, bpf_op_t bpf_op,
8527 enum bpf_netdev_command cmd)
d67b9cd2 8528{
a25717d2 8529 struct netdev_bpf xdp;
d67b9cd2 8530
a25717d2
JK
8531 if (!bpf_op)
8532 return 0;
118b4aa2 8533
a25717d2
JK
8534 memset(&xdp, 0, sizeof(xdp));
8535 xdp.command = cmd;
118b4aa2 8536
a25717d2
JK
8537 /* Query must always succeed. */
8538 WARN_ON(bpf_op(dev, &xdp) < 0 && cmd == XDP_QUERY_PROG);
58038695 8539
6b867589 8540 return xdp.prog_id;
d67b9cd2
DB
8541}
8542
f4e63525 8543static int dev_xdp_install(struct net_device *dev, bpf_op_t bpf_op,
32d60277 8544 struct netlink_ext_ack *extack, u32 flags,
d67b9cd2
DB
8545 struct bpf_prog *prog)
8546{
f4e63525 8547 struct netdev_bpf xdp;
d67b9cd2
DB
8548
8549 memset(&xdp, 0, sizeof(xdp));
ee5d032f
JK
8550 if (flags & XDP_FLAGS_HW_MODE)
8551 xdp.command = XDP_SETUP_PROG_HW;
8552 else
8553 xdp.command = XDP_SETUP_PROG;
d67b9cd2 8554 xdp.extack = extack;
32d60277 8555 xdp.flags = flags;
d67b9cd2
DB
8556 xdp.prog = prog;
8557
f4e63525 8558 return bpf_op(dev, &xdp);
d67b9cd2
DB
8559}
8560
bd0b2e7f
JK
8561static void dev_xdp_uninstall(struct net_device *dev)
8562{
8563 struct netdev_bpf xdp;
8564 bpf_op_t ndo_bpf;
8565
8566 /* Remove generic XDP */
8567 WARN_ON(dev_xdp_install(dev, generic_xdp_install, NULL, 0, NULL));
8568
8569 /* Remove from the driver */
8570 ndo_bpf = dev->netdev_ops->ndo_bpf;
8571 if (!ndo_bpf)
8572 return;
8573
a25717d2
JK
8574 memset(&xdp, 0, sizeof(xdp));
8575 xdp.command = XDP_QUERY_PROG;
8576 WARN_ON(ndo_bpf(dev, &xdp));
8577 if (xdp.prog_id)
8578 WARN_ON(dev_xdp_install(dev, ndo_bpf, NULL, xdp.prog_flags,
8579 NULL));
bd0b2e7f 8580
a25717d2
JK
8581 /* Remove HW offload */
8582 memset(&xdp, 0, sizeof(xdp));
8583 xdp.command = XDP_QUERY_PROG_HW;
8584 if (!ndo_bpf(dev, &xdp) && xdp.prog_id)
8585 WARN_ON(dev_xdp_install(dev, ndo_bpf, NULL, xdp.prog_flags,
8586 NULL));
bd0b2e7f
JK
8587}
8588
a7862b45
BB
8589/**
8590 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
8591 * @dev: device
b5d60989 8592 * @extack: netlink extended ack
a7862b45 8593 * @fd: new program fd or negative value to clear
85de8576 8594 * @flags: xdp-related flags
a7862b45
BB
8595 *
8596 * Set or clear a bpf program for a device
8597 */
ddf9f970
JK
8598int dev_change_xdp_fd(struct net_device *dev, struct netlink_ext_ack *extack,
8599 int fd, u32 flags)
a7862b45
BB
8600{
8601 const struct net_device_ops *ops = dev->netdev_ops;
a25717d2 8602 enum bpf_netdev_command query;
a7862b45 8603 struct bpf_prog *prog = NULL;
f4e63525 8604 bpf_op_t bpf_op, bpf_chk;
9ee963d6 8605 bool offload;
a7862b45
BB
8606 int err;
8607
85de8576
DB
8608 ASSERT_RTNL();
8609
9ee963d6
JK
8610 offload = flags & XDP_FLAGS_HW_MODE;
8611 query = offload ? XDP_QUERY_PROG_HW : XDP_QUERY_PROG;
a25717d2 8612
f4e63525 8613 bpf_op = bpf_chk = ops->ndo_bpf;
01dde20c
MF
8614 if (!bpf_op && (flags & (XDP_FLAGS_DRV_MODE | XDP_FLAGS_HW_MODE))) {
8615 NL_SET_ERR_MSG(extack, "underlying driver does not support XDP in native mode");
0489df9a 8616 return -EOPNOTSUPP;
01dde20c 8617 }
f4e63525
JK
8618 if (!bpf_op || (flags & XDP_FLAGS_SKB_MODE))
8619 bpf_op = generic_xdp_install;
8620 if (bpf_op == bpf_chk)
8621 bpf_chk = generic_xdp_install;
b5cdae32 8622
a7862b45 8623 if (fd >= 0) {
c14a9f63
MM
8624 u32 prog_id;
8625
9ee963d6 8626 if (!offload && __dev_xdp_query(dev, bpf_chk, XDP_QUERY_PROG)) {
01dde20c 8627 NL_SET_ERR_MSG(extack, "native and generic XDP can't be active at the same time");
d67b9cd2 8628 return -EEXIST;
01dde20c 8629 }
c14a9f63
MM
8630
8631 prog_id = __dev_xdp_query(dev, bpf_op, query);
8632 if ((flags & XDP_FLAGS_UPDATE_IF_NOEXIST) && prog_id) {
01dde20c 8633 NL_SET_ERR_MSG(extack, "XDP program already attached");
d67b9cd2 8634 return -EBUSY;
01dde20c 8635 }
85de8576 8636
288b3de5
JK
8637 prog = bpf_prog_get_type_dev(fd, BPF_PROG_TYPE_XDP,
8638 bpf_op == ops->ndo_bpf);
a7862b45
BB
8639 if (IS_ERR(prog))
8640 return PTR_ERR(prog);
441a3303 8641
9ee963d6 8642 if (!offload && bpf_prog_is_dev_bound(prog->aux)) {
441a3303
JK
8643 NL_SET_ERR_MSG(extack, "using device-bound program without HW_MODE flag is not supported");
8644 bpf_prog_put(prog);
8645 return -EINVAL;
8646 }
c14a9f63 8647
aefc3e72
JK
8648 /* prog->aux->id may be 0 for orphaned device-bound progs */
8649 if (prog->aux->id && prog->aux->id == prog_id) {
c14a9f63
MM
8650 bpf_prog_put(prog);
8651 return 0;
8652 }
8653 } else {
8654 if (!__dev_xdp_query(dev, bpf_op, query))
8655 return 0;
a7862b45
BB
8656 }
8657
f4e63525 8658 err = dev_xdp_install(dev, bpf_op, extack, flags, prog);
a7862b45
BB
8659 if (err < 0 && prog)
8660 bpf_prog_put(prog);
8661
8662 return err;
8663}
a7862b45 8664
1da177e4
LT
8665/**
8666 * dev_new_index - allocate an ifindex
c4ea43c5 8667 * @net: the applicable net namespace
1da177e4
LT
8668 *
8669 * Returns a suitable unique value for a new device interface
8670 * number. The caller must hold the rtnl semaphore or the
8671 * dev_base_lock to be sure it remains unique.
8672 */
881d966b 8673static int dev_new_index(struct net *net)
1da177e4 8674{
aa79e66e 8675 int ifindex = net->ifindex;
f4563a75 8676
1da177e4
LT
8677 for (;;) {
8678 if (++ifindex <= 0)
8679 ifindex = 1;
881d966b 8680 if (!__dev_get_by_index(net, ifindex))
aa79e66e 8681 return net->ifindex = ifindex;
1da177e4
LT
8682 }
8683}
8684
1da177e4 8685/* Delayed registration/unregisteration */
3b5b34fd 8686static LIST_HEAD(net_todo_list);
200b916f 8687DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
1da177e4 8688
6f05f629 8689static void net_set_todo(struct net_device *dev)
1da177e4 8690{
1da177e4 8691 list_add_tail(&dev->todo_list, &net_todo_list);
50624c93 8692 dev_net(dev)->dev_unreg_count++;
1da177e4
LT
8693}
8694
9b5e383c 8695static void rollback_registered_many(struct list_head *head)
93ee31f1 8696{
e93737b0 8697 struct net_device *dev, *tmp;
5cde2829 8698 LIST_HEAD(close_head);
9b5e383c 8699
93ee31f1
DL
8700 BUG_ON(dev_boot_phase);
8701 ASSERT_RTNL();
8702
e93737b0 8703 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
9b5e383c 8704 /* Some devices call without registering
e93737b0
KK
8705 * for initialization unwind. Remove those
8706 * devices and proceed with the remaining.
9b5e383c
ED
8707 */
8708 if (dev->reg_state == NETREG_UNINITIALIZED) {
7b6cd1ce
JP
8709 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
8710 dev->name, dev);
93ee31f1 8711
9b5e383c 8712 WARN_ON(1);
e93737b0
KK
8713 list_del(&dev->unreg_list);
8714 continue;
9b5e383c 8715 }
449f4544 8716 dev->dismantle = true;
9b5e383c 8717 BUG_ON(dev->reg_state != NETREG_REGISTERED);
44345724 8718 }
93ee31f1 8719
44345724 8720 /* If device is running, close it first. */
5cde2829
EB
8721 list_for_each_entry(dev, head, unreg_list)
8722 list_add_tail(&dev->close_list, &close_head);
99c4a26a 8723 dev_close_many(&close_head, true);
93ee31f1 8724
44345724 8725 list_for_each_entry(dev, head, unreg_list) {
9b5e383c
ED
8726 /* And unlink it from device chain. */
8727 unlist_netdevice(dev);
93ee31f1 8728
9b5e383c
ED
8729 dev->reg_state = NETREG_UNREGISTERING;
8730 }
41852497 8731 flush_all_backlogs();
93ee31f1
DL
8732
8733 synchronize_net();
8734
9b5e383c 8735 list_for_each_entry(dev, head, unreg_list) {
395eea6c
MB
8736 struct sk_buff *skb = NULL;
8737
9b5e383c
ED
8738 /* Shutdown queueing discipline. */
8739 dev_shutdown(dev);
93ee31f1 8740
bd0b2e7f 8741 dev_xdp_uninstall(dev);
93ee31f1 8742
9b5e383c 8743 /* Notify protocols, that we are about to destroy
eb13da1a 8744 * this device. They should clean all the things.
8745 */
9b5e383c 8746 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
93ee31f1 8747
395eea6c
MB
8748 if (!dev->rtnl_link_ops ||
8749 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
3d3ea5af 8750 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U, 0,
38e01b30 8751 GFP_KERNEL, NULL, 0);
395eea6c 8752
9b5e383c
ED
8753 /*
8754 * Flush the unicast and multicast chains
8755 */
a748ee24 8756 dev_uc_flush(dev);
22bedad3 8757 dev_mc_flush(dev);
93ee31f1 8758
36fbf1e5 8759 netdev_name_node_alt_flush(dev);
ff927412
JP
8760 netdev_name_node_free(dev->name_node);
8761
9b5e383c
ED
8762 if (dev->netdev_ops->ndo_uninit)
8763 dev->netdev_ops->ndo_uninit(dev);
93ee31f1 8764
395eea6c
MB
8765 if (skb)
8766 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
56bfa7ee 8767
9ff162a8
JP
8768 /* Notifier chain MUST detach us all upper devices. */
8769 WARN_ON(netdev_has_any_upper_dev(dev));
0f524a80 8770 WARN_ON(netdev_has_any_lower_dev(dev));
93ee31f1 8771
9b5e383c
ED
8772 /* Remove entries from kobject tree */
8773 netdev_unregister_kobject(dev);
024e9679
AD
8774#ifdef CONFIG_XPS
8775 /* Remove XPS queueing entries */
8776 netif_reset_xps_queues_gt(dev, 0);
8777#endif
9b5e383c 8778 }
93ee31f1 8779
850a545b 8780 synchronize_net();
395264d5 8781
a5ee1551 8782 list_for_each_entry(dev, head, unreg_list)
9b5e383c
ED
8783 dev_put(dev);
8784}
8785
8786static void rollback_registered(struct net_device *dev)
8787{
8788 LIST_HEAD(single);
8789
8790 list_add(&dev->unreg_list, &single);
8791 rollback_registered_many(&single);
ceaaec98 8792 list_del(&single);
93ee31f1
DL
8793}
8794
fd867d51
JW
8795static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
8796 struct net_device *upper, netdev_features_t features)
8797{
8798 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
8799 netdev_features_t feature;
5ba3f7d6 8800 int feature_bit;
fd867d51 8801
3b89ea9c 8802 for_each_netdev_feature(upper_disables, feature_bit) {
5ba3f7d6 8803 feature = __NETIF_F_BIT(feature_bit);
fd867d51
JW
8804 if (!(upper->wanted_features & feature)
8805 && (features & feature)) {
8806 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
8807 &feature, upper->name);
8808 features &= ~feature;
8809 }
8810 }
8811
8812 return features;
8813}
8814
8815static void netdev_sync_lower_features(struct net_device *upper,
8816 struct net_device *lower, netdev_features_t features)
8817{
8818 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
8819 netdev_features_t feature;
5ba3f7d6 8820 int feature_bit;
fd867d51 8821
3b89ea9c 8822 for_each_netdev_feature(upper_disables, feature_bit) {
5ba3f7d6 8823 feature = __NETIF_F_BIT(feature_bit);
fd867d51
JW
8824 if (!(features & feature) && (lower->features & feature)) {
8825 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
8826 &feature, lower->name);
8827 lower->wanted_features &= ~feature;
8828 netdev_update_features(lower);
8829
8830 if (unlikely(lower->features & feature))
8831 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
8832 &feature, lower->name);
8833 }
8834 }
8835}
8836
c8f44aff
MM
8837static netdev_features_t netdev_fix_features(struct net_device *dev,
8838 netdev_features_t features)
b63365a2 8839{
57422dc5
MM
8840 /* Fix illegal checksum combinations */
8841 if ((features & NETIF_F_HW_CSUM) &&
8842 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
6f404e44 8843 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
57422dc5
MM
8844 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
8845 }
8846
b63365a2 8847 /* TSO requires that SG is present as well. */
ea2d3688 8848 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
6f404e44 8849 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
ea2d3688 8850 features &= ~NETIF_F_ALL_TSO;
b63365a2
HX
8851 }
8852
ec5f0615
PS
8853 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
8854 !(features & NETIF_F_IP_CSUM)) {
8855 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
8856 features &= ~NETIF_F_TSO;
8857 features &= ~NETIF_F_TSO_ECN;
8858 }
8859
8860 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
8861 !(features & NETIF_F_IPV6_CSUM)) {
8862 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
8863 features &= ~NETIF_F_TSO6;
8864 }
8865
b1dc497b
AD
8866 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
8867 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
8868 features &= ~NETIF_F_TSO_MANGLEID;
8869
31d8b9e0
BH
8870 /* TSO ECN requires that TSO is present as well. */
8871 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
8872 features &= ~NETIF_F_TSO_ECN;
8873
212b573f
MM
8874 /* Software GSO depends on SG. */
8875 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
6f404e44 8876 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
212b573f
MM
8877 features &= ~NETIF_F_GSO;
8878 }
8879
802ab55a
AD
8880 /* GSO partial features require GSO partial be set */
8881 if ((features & dev->gso_partial_features) &&
8882 !(features & NETIF_F_GSO_PARTIAL)) {
8883 netdev_dbg(dev,
8884 "Dropping partially supported GSO features since no GSO partial.\n");
8885 features &= ~dev->gso_partial_features;
8886 }
8887
fb1f5f79
MC
8888 if (!(features & NETIF_F_RXCSUM)) {
8889 /* NETIF_F_GRO_HW implies doing RXCSUM since every packet
8890 * successfully merged by hardware must also have the
8891 * checksum verified by hardware. If the user does not
8892 * want to enable RXCSUM, logically, we should disable GRO_HW.
8893 */
8894 if (features & NETIF_F_GRO_HW) {
8895 netdev_dbg(dev, "Dropping NETIF_F_GRO_HW since no RXCSUM feature.\n");
8896 features &= ~NETIF_F_GRO_HW;
8897 }
8898 }
8899
de8d5ab2
GP
8900 /* LRO/HW-GRO features cannot be combined with RX-FCS */
8901 if (features & NETIF_F_RXFCS) {
8902 if (features & NETIF_F_LRO) {
8903 netdev_dbg(dev, "Dropping LRO feature since RX-FCS is requested.\n");
8904 features &= ~NETIF_F_LRO;
8905 }
8906
8907 if (features & NETIF_F_GRO_HW) {
8908 netdev_dbg(dev, "Dropping HW-GRO feature since RX-FCS is requested.\n");
8909 features &= ~NETIF_F_GRO_HW;
8910 }
e6c6a929
GP
8911 }
8912
b63365a2
HX
8913 return features;
8914}
b63365a2 8915
6cb6a27c 8916int __netdev_update_features(struct net_device *dev)
5455c699 8917{
fd867d51 8918 struct net_device *upper, *lower;
c8f44aff 8919 netdev_features_t features;
fd867d51 8920 struct list_head *iter;
e7868a85 8921 int err = -1;
5455c699 8922
87267485
MM
8923 ASSERT_RTNL();
8924
5455c699
MM
8925 features = netdev_get_wanted_features(dev);
8926
8927 if (dev->netdev_ops->ndo_fix_features)
8928 features = dev->netdev_ops->ndo_fix_features(dev, features);
8929
8930 /* driver might be less strict about feature dependencies */
8931 features = netdev_fix_features(dev, features);
8932
fd867d51
JW
8933 /* some features can't be enabled if they're off an an upper device */
8934 netdev_for_each_upper_dev_rcu(dev, upper, iter)
8935 features = netdev_sync_upper_features(dev, upper, features);
8936
5455c699 8937 if (dev->features == features)
e7868a85 8938 goto sync_lower;
5455c699 8939
c8f44aff
MM
8940 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
8941 &dev->features, &features);
5455c699
MM
8942
8943 if (dev->netdev_ops->ndo_set_features)
8944 err = dev->netdev_ops->ndo_set_features(dev, features);
5f8dc33e
NA
8945 else
8946 err = 0;
5455c699 8947
6cb6a27c 8948 if (unlikely(err < 0)) {
5455c699 8949 netdev_err(dev,
c8f44aff
MM
8950 "set_features() failed (%d); wanted %pNF, left %pNF\n",
8951 err, &features, &dev->features);
17b85d29
NA
8952 /* return non-0 since some features might have changed and
8953 * it's better to fire a spurious notification than miss it
8954 */
8955 return -1;
6cb6a27c
MM
8956 }
8957
e7868a85 8958sync_lower:
fd867d51
JW
8959 /* some features must be disabled on lower devices when disabled
8960 * on an upper device (think: bonding master or bridge)
8961 */
8962 netdev_for_each_lower_dev(dev, lower, iter)
8963 netdev_sync_lower_features(dev, lower, features);
8964
ae847f40
SD
8965 if (!err) {
8966 netdev_features_t diff = features ^ dev->features;
8967
8968 if (diff & NETIF_F_RX_UDP_TUNNEL_PORT) {
8969 /* udp_tunnel_{get,drop}_rx_info both need
8970 * NETIF_F_RX_UDP_TUNNEL_PORT enabled on the
8971 * device, or they won't do anything.
8972 * Thus we need to update dev->features
8973 * *before* calling udp_tunnel_get_rx_info,
8974 * but *after* calling udp_tunnel_drop_rx_info.
8975 */
8976 if (features & NETIF_F_RX_UDP_TUNNEL_PORT) {
8977 dev->features = features;
8978 udp_tunnel_get_rx_info(dev);
8979 } else {
8980 udp_tunnel_drop_rx_info(dev);
8981 }
8982 }
8983
9daae9bd
GP
8984 if (diff & NETIF_F_HW_VLAN_CTAG_FILTER) {
8985 if (features & NETIF_F_HW_VLAN_CTAG_FILTER) {
8986 dev->features = features;
8987 err |= vlan_get_rx_ctag_filter_info(dev);
8988 } else {
8989 vlan_drop_rx_ctag_filter_info(dev);
8990 }
8991 }
8992
8993 if (diff & NETIF_F_HW_VLAN_STAG_FILTER) {
8994 if (features & NETIF_F_HW_VLAN_STAG_FILTER) {
8995 dev->features = features;
8996 err |= vlan_get_rx_stag_filter_info(dev);
8997 } else {
8998 vlan_drop_rx_stag_filter_info(dev);
8999 }
9000 }
9001
6cb6a27c 9002 dev->features = features;
ae847f40 9003 }
6cb6a27c 9004
e7868a85 9005 return err < 0 ? 0 : 1;
6cb6a27c
MM
9006}
9007
afe12cc8
MM
9008/**
9009 * netdev_update_features - recalculate device features
9010 * @dev: the device to check
9011 *
9012 * Recalculate dev->features set and send notifications if it
9013 * has changed. Should be called after driver or hardware dependent
9014 * conditions might have changed that influence the features.
9015 */
6cb6a27c
MM
9016void netdev_update_features(struct net_device *dev)
9017{
9018 if (__netdev_update_features(dev))
9019 netdev_features_change(dev);
5455c699
MM
9020}
9021EXPORT_SYMBOL(netdev_update_features);
9022
afe12cc8
MM
9023/**
9024 * netdev_change_features - recalculate device features
9025 * @dev: the device to check
9026 *
9027 * Recalculate dev->features set and send notifications even
9028 * if they have not changed. Should be called instead of
9029 * netdev_update_features() if also dev->vlan_features might
9030 * have changed to allow the changes to be propagated to stacked
9031 * VLAN devices.
9032 */
9033void netdev_change_features(struct net_device *dev)
9034{
9035 __netdev_update_features(dev);
9036 netdev_features_change(dev);
9037}
9038EXPORT_SYMBOL(netdev_change_features);
9039
fc4a7489
PM
9040/**
9041 * netif_stacked_transfer_operstate - transfer operstate
9042 * @rootdev: the root or lower level device to transfer state from
9043 * @dev: the device to transfer operstate to
9044 *
9045 * Transfer operational state from root to device. This is normally
9046 * called when a stacking relationship exists between the root
9047 * device and the device(a leaf device).
9048 */
9049void netif_stacked_transfer_operstate(const struct net_device *rootdev,
9050 struct net_device *dev)
9051{
9052 if (rootdev->operstate == IF_OPER_DORMANT)
9053 netif_dormant_on(dev);
9054 else
9055 netif_dormant_off(dev);
9056
0575c86b
ZS
9057 if (netif_carrier_ok(rootdev))
9058 netif_carrier_on(dev);
9059 else
9060 netif_carrier_off(dev);
fc4a7489
PM
9061}
9062EXPORT_SYMBOL(netif_stacked_transfer_operstate);
9063
1b4bf461
ED
9064static int netif_alloc_rx_queues(struct net_device *dev)
9065{
1b4bf461 9066 unsigned int i, count = dev->num_rx_queues;
bd25fa7b 9067 struct netdev_rx_queue *rx;
10595902 9068 size_t sz = count * sizeof(*rx);
e817f856 9069 int err = 0;
1b4bf461 9070
bd25fa7b 9071 BUG_ON(count < 1);
1b4bf461 9072
dcda9b04 9073 rx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
da6bc57a
MH
9074 if (!rx)
9075 return -ENOMEM;
9076
bd25fa7b
TH
9077 dev->_rx = rx;
9078
e817f856 9079 for (i = 0; i < count; i++) {
fe822240 9080 rx[i].dev = dev;
e817f856
JDB
9081
9082 /* XDP RX-queue setup */
9083 err = xdp_rxq_info_reg(&rx[i].xdp_rxq, dev, i);
9084 if (err < 0)
9085 goto err_rxq_info;
9086 }
1b4bf461 9087 return 0;
e817f856
JDB
9088
9089err_rxq_info:
9090 /* Rollback successful reg's and free other resources */
9091 while (i--)
9092 xdp_rxq_info_unreg(&rx[i].xdp_rxq);
141b52a9 9093 kvfree(dev->_rx);
e817f856
JDB
9094 dev->_rx = NULL;
9095 return err;
9096}
9097
9098static void netif_free_rx_queues(struct net_device *dev)
9099{
9100 unsigned int i, count = dev->num_rx_queues;
e817f856
JDB
9101
9102 /* netif_alloc_rx_queues alloc failed, resources have been unreg'ed */
9103 if (!dev->_rx)
9104 return;
9105
e817f856 9106 for (i = 0; i < count; i++)
82aaff2f
JK
9107 xdp_rxq_info_unreg(&dev->_rx[i].xdp_rxq);
9108
9109 kvfree(dev->_rx);
1b4bf461
ED
9110}
9111
aa942104
CG
9112static void netdev_init_one_queue(struct net_device *dev,
9113 struct netdev_queue *queue, void *_unused)
9114{
9115 /* Initialize queue lock */
9116 spin_lock_init(&queue->_xmit_lock);
ab92d68f 9117 lockdep_set_class(&queue->_xmit_lock, &dev->qdisc_xmit_lock_key);
aa942104 9118 queue->xmit_lock_owner = -1;
b236da69 9119 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
aa942104 9120 queue->dev = dev;
114cf580
TH
9121#ifdef CONFIG_BQL
9122 dql_init(&queue->dql, HZ);
9123#endif
aa942104
CG
9124}
9125
60877a32
ED
9126static void netif_free_tx_queues(struct net_device *dev)
9127{
4cb28970 9128 kvfree(dev->_tx);
60877a32
ED
9129}
9130
e6484930
TH
9131static int netif_alloc_netdev_queues(struct net_device *dev)
9132{
9133 unsigned int count = dev->num_tx_queues;
9134 struct netdev_queue *tx;
60877a32 9135 size_t sz = count * sizeof(*tx);
e6484930 9136
d339727c
ED
9137 if (count < 1 || count > 0xffff)
9138 return -EINVAL;
62b5942a 9139
dcda9b04 9140 tx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
da6bc57a
MH
9141 if (!tx)
9142 return -ENOMEM;
9143
e6484930 9144 dev->_tx = tx;
1d24eb48 9145
e6484930
TH
9146 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
9147 spin_lock_init(&dev->tx_global_lock);
aa942104
CG
9148
9149 return 0;
e6484930
TH
9150}
9151
a2029240
DV
9152void netif_tx_stop_all_queues(struct net_device *dev)
9153{
9154 unsigned int i;
9155
9156 for (i = 0; i < dev->num_tx_queues; i++) {
9157 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
f4563a75 9158
a2029240
DV
9159 netif_tx_stop_queue(txq);
9160 }
9161}
9162EXPORT_SYMBOL(netif_tx_stop_all_queues);
9163
ab92d68f
TY
9164static void netdev_register_lockdep_key(struct net_device *dev)
9165{
9166 lockdep_register_key(&dev->qdisc_tx_busylock_key);
9167 lockdep_register_key(&dev->qdisc_running_key);
9168 lockdep_register_key(&dev->qdisc_xmit_lock_key);
9169 lockdep_register_key(&dev->addr_list_lock_key);
9170}
9171
9172static void netdev_unregister_lockdep_key(struct net_device *dev)
9173{
9174 lockdep_unregister_key(&dev->qdisc_tx_busylock_key);
9175 lockdep_unregister_key(&dev->qdisc_running_key);
9176 lockdep_unregister_key(&dev->qdisc_xmit_lock_key);
9177 lockdep_unregister_key(&dev->addr_list_lock_key);
9178}
9179
9180void netdev_update_lockdep_key(struct net_device *dev)
9181{
ab92d68f 9182 lockdep_unregister_key(&dev->addr_list_lock_key);
ab92d68f
TY
9183 lockdep_register_key(&dev->addr_list_lock_key);
9184
9185 lockdep_set_class(&dev->addr_list_lock, &dev->addr_list_lock_key);
ab92d68f
TY
9186}
9187EXPORT_SYMBOL(netdev_update_lockdep_key);
9188
1da177e4
LT
9189/**
9190 * register_netdevice - register a network device
9191 * @dev: device to register
9192 *
9193 * Take a completed network device structure and add it to the kernel
9194 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
9195 * chain. 0 is returned on success. A negative errno code is returned
9196 * on a failure to set up the device, or if the name is a duplicate.
9197 *
9198 * Callers must hold the rtnl semaphore. You may want
9199 * register_netdev() instead of this.
9200 *
9201 * BUGS:
9202 * The locking appears insufficient to guarantee two parallel registers
9203 * will not get the same name.
9204 */
9205
9206int register_netdevice(struct net_device *dev)
9207{
1da177e4 9208 int ret;
d314774c 9209 struct net *net = dev_net(dev);
1da177e4 9210
e283de3a
FF
9211 BUILD_BUG_ON(sizeof(netdev_features_t) * BITS_PER_BYTE <
9212 NETDEV_FEATURE_COUNT);
1da177e4
LT
9213 BUG_ON(dev_boot_phase);
9214 ASSERT_RTNL();
9215
b17a7c17
SH
9216 might_sleep();
9217
1da177e4
LT
9218 /* When net_device's are persistent, this will be fatal. */
9219 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
d314774c 9220 BUG_ON(!net);
1da177e4 9221
f1f28aa3 9222 spin_lock_init(&dev->addr_list_lock);
ab92d68f 9223 lockdep_set_class(&dev->addr_list_lock, &dev->addr_list_lock_key);
1da177e4 9224
828de4f6 9225 ret = dev_get_valid_name(net, dev, dev->name);
0696c3a8
PP
9226 if (ret < 0)
9227 goto out;
9228
9077f052 9229 ret = -ENOMEM;
ff927412
JP
9230 dev->name_node = netdev_name_node_head_alloc(dev);
9231 if (!dev->name_node)
9232 goto out;
9233
1da177e4 9234 /* Init, if this function is available */
d314774c
SH
9235 if (dev->netdev_ops->ndo_init) {
9236 ret = dev->netdev_ops->ndo_init(dev);
1da177e4
LT
9237 if (ret) {
9238 if (ret > 0)
9239 ret = -EIO;
42c17fa6 9240 goto err_free_name;
1da177e4
LT
9241 }
9242 }
4ec93edb 9243
f646968f
PM
9244 if (((dev->hw_features | dev->features) &
9245 NETIF_F_HW_VLAN_CTAG_FILTER) &&
d2ed273d
MM
9246 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
9247 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
9248 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
9249 ret = -EINVAL;
9250 goto err_uninit;
9251 }
9252
9c7dafbf
PE
9253 ret = -EBUSY;
9254 if (!dev->ifindex)
9255 dev->ifindex = dev_new_index(net);
9256 else if (__dev_get_by_index(net, dev->ifindex))
9257 goto err_uninit;
9258
5455c699
MM
9259 /* Transfer changeable features to wanted_features and enable
9260 * software offloads (GSO and GRO).
9261 */
9262 dev->hw_features |= NETIF_F_SOFT_FEATURES;
14d1232f 9263 dev->features |= NETIF_F_SOFT_FEATURES;
d764a122
SD
9264
9265 if (dev->netdev_ops->ndo_udp_tunnel_add) {
9266 dev->features |= NETIF_F_RX_UDP_TUNNEL_PORT;
9267 dev->hw_features |= NETIF_F_RX_UDP_TUNNEL_PORT;
9268 }
9269
14d1232f 9270 dev->wanted_features = dev->features & dev->hw_features;
1da177e4 9271
cbc53e08 9272 if (!(dev->flags & IFF_LOOPBACK))
34324dc2 9273 dev->hw_features |= NETIF_F_NOCACHE_COPY;
cbc53e08 9274
7f348a60
AD
9275 /* If IPv4 TCP segmentation offload is supported we should also
9276 * allow the device to enable segmenting the frame with the option
9277 * of ignoring a static IP ID value. This doesn't enable the
9278 * feature itself but allows the user to enable it later.
9279 */
cbc53e08
AD
9280 if (dev->hw_features & NETIF_F_TSO)
9281 dev->hw_features |= NETIF_F_TSO_MANGLEID;
7f348a60
AD
9282 if (dev->vlan_features & NETIF_F_TSO)
9283 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
9284 if (dev->mpls_features & NETIF_F_TSO)
9285 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
9286 if (dev->hw_enc_features & NETIF_F_TSO)
9287 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
c6e1a0d1 9288
1180e7d6 9289 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
16c3ea78 9290 */
1180e7d6 9291 dev->vlan_features |= NETIF_F_HIGHDMA;
16c3ea78 9292
ee579677
PS
9293 /* Make NETIF_F_SG inheritable to tunnel devices.
9294 */
802ab55a 9295 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
ee579677 9296
0d89d203
SH
9297 /* Make NETIF_F_SG inheritable to MPLS.
9298 */
9299 dev->mpls_features |= NETIF_F_SG;
9300
7ffbe3fd
JB
9301 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
9302 ret = notifier_to_errno(ret);
9303 if (ret)
9304 goto err_uninit;
9305
8b41d188 9306 ret = netdev_register_kobject(dev);
cb626bf5
JH
9307 if (ret) {
9308 dev->reg_state = NETREG_UNREGISTERED;
7ce1b0ed 9309 goto err_uninit;
cb626bf5 9310 }
b17a7c17
SH
9311 dev->reg_state = NETREG_REGISTERED;
9312
6cb6a27c 9313 __netdev_update_features(dev);
8e9b59b2 9314
1da177e4
LT
9315 /*
9316 * Default initial state at registry is that the
9317 * device is present.
9318 */
9319
9320 set_bit(__LINK_STATE_PRESENT, &dev->state);
9321
8f4cccbb
BH
9322 linkwatch_init_dev(dev);
9323
1da177e4 9324 dev_init_scheduler(dev);
1da177e4 9325 dev_hold(dev);
ce286d32 9326 list_netdevice(dev);
7bf23575 9327 add_device_randomness(dev->dev_addr, dev->addr_len);
1da177e4 9328
948b337e
JP
9329 /* If the device has permanent device address, driver should
9330 * set dev_addr and also addr_assign_type should be set to
9331 * NET_ADDR_PERM (default value).
9332 */
9333 if (dev->addr_assign_type == NET_ADDR_PERM)
9334 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
9335
1da177e4 9336 /* Notify protocols, that a new device appeared. */
056925ab 9337 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
fcc5a03a 9338 ret = notifier_to_errno(ret);
93ee31f1
DL
9339 if (ret) {
9340 rollback_registered(dev);
10cc514f
SAK
9341 rcu_barrier();
9342
93ee31f1
DL
9343 dev->reg_state = NETREG_UNREGISTERED;
9344 }
d90a909e
EB
9345 /*
9346 * Prevent userspace races by waiting until the network
9347 * device is fully setup before sending notifications.
9348 */
a2835763
PM
9349 if (!dev->rtnl_link_ops ||
9350 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
7f294054 9351 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
1da177e4
LT
9352
9353out:
9354 return ret;
7ce1b0ed
HX
9355
9356err_uninit:
d314774c
SH
9357 if (dev->netdev_ops->ndo_uninit)
9358 dev->netdev_ops->ndo_uninit(dev);
cf124db5
DM
9359 if (dev->priv_destructor)
9360 dev->priv_destructor(dev);
42c17fa6
DC
9361err_free_name:
9362 netdev_name_node_free(dev->name_node);
7ce1b0ed 9363 goto out;
1da177e4 9364}
d1b19dff 9365EXPORT_SYMBOL(register_netdevice);
1da177e4 9366
937f1ba5
BH
9367/**
9368 * init_dummy_netdev - init a dummy network device for NAPI
9369 * @dev: device to init
9370 *
9371 * This takes a network device structure and initialize the minimum
9372 * amount of fields so it can be used to schedule NAPI polls without
9373 * registering a full blown interface. This is to be used by drivers
9374 * that need to tie several hardware interfaces to a single NAPI
9375 * poll scheduler due to HW limitations.
9376 */
9377int init_dummy_netdev(struct net_device *dev)
9378{
9379 /* Clear everything. Note we don't initialize spinlocks
9380 * are they aren't supposed to be taken by any of the
9381 * NAPI code and this dummy netdev is supposed to be
9382 * only ever used for NAPI polls
9383 */
9384 memset(dev, 0, sizeof(struct net_device));
9385
9386 /* make sure we BUG if trying to hit standard
9387 * register/unregister code path
9388 */
9389 dev->reg_state = NETREG_DUMMY;
9390
937f1ba5
BH
9391 /* NAPI wants this */
9392 INIT_LIST_HEAD(&dev->napi_list);
9393
9394 /* a dummy interface is started by default */
9395 set_bit(__LINK_STATE_PRESENT, &dev->state);
9396 set_bit(__LINK_STATE_START, &dev->state);
9397
35edfdc7
JE
9398 /* napi_busy_loop stats accounting wants this */
9399 dev_net_set(dev, &init_net);
9400
29b4433d
ED
9401 /* Note : We dont allocate pcpu_refcnt for dummy devices,
9402 * because users of this 'device' dont need to change
9403 * its refcount.
9404 */
9405
937f1ba5
BH
9406 return 0;
9407}
9408EXPORT_SYMBOL_GPL(init_dummy_netdev);
9409
9410
1da177e4
LT
9411/**
9412 * register_netdev - register a network device
9413 * @dev: device to register
9414 *
9415 * Take a completed network device structure and add it to the kernel
9416 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
9417 * chain. 0 is returned on success. A negative errno code is returned
9418 * on a failure to set up the device, or if the name is a duplicate.
9419 *
38b4da38 9420 * This is a wrapper around register_netdevice that takes the rtnl semaphore
1da177e4
LT
9421 * and expands the device name if you passed a format string to
9422 * alloc_netdev.
9423 */
9424int register_netdev(struct net_device *dev)
9425{
9426 int err;
9427
b0f3debc
KT
9428 if (rtnl_lock_killable())
9429 return -EINTR;
1da177e4 9430 err = register_netdevice(dev);
1da177e4
LT
9431 rtnl_unlock();
9432 return err;
9433}
9434EXPORT_SYMBOL(register_netdev);
9435
29b4433d
ED
9436int netdev_refcnt_read(const struct net_device *dev)
9437{
9438 int i, refcnt = 0;
9439
9440 for_each_possible_cpu(i)
9441 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
9442 return refcnt;
9443}
9444EXPORT_SYMBOL(netdev_refcnt_read);
9445
2c53040f 9446/**
1da177e4 9447 * netdev_wait_allrefs - wait until all references are gone.
3de7a37b 9448 * @dev: target net_device
1da177e4
LT
9449 *
9450 * This is called when unregistering network devices.
9451 *
9452 * Any protocol or device that holds a reference should register
9453 * for netdevice notification, and cleanup and put back the
9454 * reference if they receive an UNREGISTER event.
9455 * We can get stuck here if buggy protocols don't correctly
4ec93edb 9456 * call dev_put.
1da177e4
LT
9457 */
9458static void netdev_wait_allrefs(struct net_device *dev)
9459{
9460 unsigned long rebroadcast_time, warning_time;
29b4433d 9461 int refcnt;
1da177e4 9462
e014debe
ED
9463 linkwatch_forget_dev(dev);
9464
1da177e4 9465 rebroadcast_time = warning_time = jiffies;
29b4433d
ED
9466 refcnt = netdev_refcnt_read(dev);
9467
9468 while (refcnt != 0) {
1da177e4 9469 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
6756ae4b 9470 rtnl_lock();
1da177e4
LT
9471
9472 /* Rebroadcast unregister notification */
056925ab 9473 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
1da177e4 9474
748e2d93 9475 __rtnl_unlock();
0115e8e3 9476 rcu_barrier();
748e2d93
ED
9477 rtnl_lock();
9478
1da177e4
LT
9479 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
9480 &dev->state)) {
9481 /* We must not have linkwatch events
9482 * pending on unregister. If this
9483 * happens, we simply run the queue
9484 * unscheduled, resulting in a noop
9485 * for this device.
9486 */
9487 linkwatch_run_queue();
9488 }
9489
6756ae4b 9490 __rtnl_unlock();
1da177e4
LT
9491
9492 rebroadcast_time = jiffies;
9493 }
9494
9495 msleep(250);
9496
29b4433d
ED
9497 refcnt = netdev_refcnt_read(dev);
9498
d7c04b05 9499 if (refcnt && time_after(jiffies, warning_time + 10 * HZ)) {
7b6cd1ce
JP
9500 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
9501 dev->name, refcnt);
1da177e4
LT
9502 warning_time = jiffies;
9503 }
9504 }
9505}
9506
9507/* The sequence is:
9508 *
9509 * rtnl_lock();
9510 * ...
9511 * register_netdevice(x1);
9512 * register_netdevice(x2);
9513 * ...
9514 * unregister_netdevice(y1);
9515 * unregister_netdevice(y2);
9516 * ...
9517 * rtnl_unlock();
9518 * free_netdev(y1);
9519 * free_netdev(y2);
9520 *
58ec3b4d 9521 * We are invoked by rtnl_unlock().
1da177e4 9522 * This allows us to deal with problems:
b17a7c17 9523 * 1) We can delete sysfs objects which invoke hotplug
1da177e4
LT
9524 * without deadlocking with linkwatch via keventd.
9525 * 2) Since we run with the RTNL semaphore not held, we can sleep
9526 * safely in order to wait for the netdev refcnt to drop to zero.
58ec3b4d
HX
9527 *
9528 * We must not return until all unregister events added during
9529 * the interval the lock was held have been completed.
1da177e4 9530 */
1da177e4
LT
9531void netdev_run_todo(void)
9532{
626ab0e6 9533 struct list_head list;
1da177e4 9534
1da177e4 9535 /* Snapshot list, allow later requests */
626ab0e6 9536 list_replace_init(&net_todo_list, &list);
58ec3b4d
HX
9537
9538 __rtnl_unlock();
626ab0e6 9539
0115e8e3
ED
9540
9541 /* Wait for rcu callbacks to finish before next phase */
850a545b
EB
9542 if (!list_empty(&list))
9543 rcu_barrier();
9544
1da177e4
LT
9545 while (!list_empty(&list)) {
9546 struct net_device *dev
e5e26d75 9547 = list_first_entry(&list, struct net_device, todo_list);
1da177e4
LT
9548 list_del(&dev->todo_list);
9549
b17a7c17 9550 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
7b6cd1ce 9551 pr_err("network todo '%s' but state %d\n",
b17a7c17
SH
9552 dev->name, dev->reg_state);
9553 dump_stack();
9554 continue;
9555 }
1da177e4 9556
b17a7c17 9557 dev->reg_state = NETREG_UNREGISTERED;
1da177e4 9558
b17a7c17 9559 netdev_wait_allrefs(dev);
1da177e4 9560
b17a7c17 9561 /* paranoia */
29b4433d 9562 BUG_ON(netdev_refcnt_read(dev));
7866a621
SN
9563 BUG_ON(!list_empty(&dev->ptype_all));
9564 BUG_ON(!list_empty(&dev->ptype_specific));
33d480ce
ED
9565 WARN_ON(rcu_access_pointer(dev->ip_ptr));
9566 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
330c7272 9567#if IS_ENABLED(CONFIG_DECNET)
547b792c 9568 WARN_ON(dev->dn_ptr);
330c7272 9569#endif
cf124db5
DM
9570 if (dev->priv_destructor)
9571 dev->priv_destructor(dev);
9572 if (dev->needs_free_netdev)
9573 free_netdev(dev);
9093bbb2 9574
50624c93
EB
9575 /* Report a network device has been unregistered */
9576 rtnl_lock();
9577 dev_net(dev)->dev_unreg_count--;
9578 __rtnl_unlock();
9579 wake_up(&netdev_unregistering_wq);
9580
9093bbb2
SH
9581 /* Free network device */
9582 kobject_put(&dev->dev.kobj);
1da177e4 9583 }
1da177e4
LT
9584}
9585
9256645a
JW
9586/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
9587 * all the same fields in the same order as net_device_stats, with only
9588 * the type differing, but rtnl_link_stats64 may have additional fields
9589 * at the end for newer counters.
3cfde79c 9590 */
77a1abf5
ED
9591void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
9592 const struct net_device_stats *netdev_stats)
3cfde79c
BH
9593{
9594#if BITS_PER_LONG == 64
9256645a 9595 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
9af9959e 9596 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
9256645a
JW
9597 /* zero out counters that only exist in rtnl_link_stats64 */
9598 memset((char *)stats64 + sizeof(*netdev_stats), 0,
9599 sizeof(*stats64) - sizeof(*netdev_stats));
3cfde79c 9600#else
9256645a 9601 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
3cfde79c
BH
9602 const unsigned long *src = (const unsigned long *)netdev_stats;
9603 u64 *dst = (u64 *)stats64;
9604
9256645a 9605 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
3cfde79c
BH
9606 for (i = 0; i < n; i++)
9607 dst[i] = src[i];
9256645a
JW
9608 /* zero out counters that only exist in rtnl_link_stats64 */
9609 memset((char *)stats64 + n * sizeof(u64), 0,
9610 sizeof(*stats64) - n * sizeof(u64));
3cfde79c
BH
9611#endif
9612}
77a1abf5 9613EXPORT_SYMBOL(netdev_stats_to_stats64);
3cfde79c 9614
eeda3fd6
SH
9615/**
9616 * dev_get_stats - get network device statistics
9617 * @dev: device to get statistics from
28172739 9618 * @storage: place to store stats
eeda3fd6 9619 *
d7753516
BH
9620 * Get network statistics from device. Return @storage.
9621 * The device driver may provide its own method by setting
9622 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
9623 * otherwise the internal statistics structure is used.
eeda3fd6 9624 */
d7753516
BH
9625struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
9626 struct rtnl_link_stats64 *storage)
7004bf25 9627{
eeda3fd6
SH
9628 const struct net_device_ops *ops = dev->netdev_ops;
9629
28172739
ED
9630 if (ops->ndo_get_stats64) {
9631 memset(storage, 0, sizeof(*storage));
caf586e5
ED
9632 ops->ndo_get_stats64(dev, storage);
9633 } else if (ops->ndo_get_stats) {
3cfde79c 9634 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
caf586e5
ED
9635 } else {
9636 netdev_stats_to_stats64(storage, &dev->stats);
28172739 9637 }
6f64ec74
ED
9638 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
9639 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
9640 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
28172739 9641 return storage;
c45d286e 9642}
eeda3fd6 9643EXPORT_SYMBOL(dev_get_stats);
c45d286e 9644
24824a09 9645struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
dc2b4847 9646{
24824a09 9647 struct netdev_queue *queue = dev_ingress_queue(dev);
dc2b4847 9648
24824a09
ED
9649#ifdef CONFIG_NET_CLS_ACT
9650 if (queue)
9651 return queue;
9652 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
9653 if (!queue)
9654 return NULL;
9655 netdev_init_one_queue(dev, queue, NULL);
2ce1ee17 9656 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
24824a09
ED
9657 queue->qdisc_sleeping = &noop_qdisc;
9658 rcu_assign_pointer(dev->ingress_queue, queue);
9659#endif
9660 return queue;
bb949fbd
DM
9661}
9662
2c60db03
ED
9663static const struct ethtool_ops default_ethtool_ops;
9664
d07d7507
SG
9665void netdev_set_default_ethtool_ops(struct net_device *dev,
9666 const struct ethtool_ops *ops)
9667{
9668 if (dev->ethtool_ops == &default_ethtool_ops)
9669 dev->ethtool_ops = ops;
9670}
9671EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
9672
74d332c1
ED
9673void netdev_freemem(struct net_device *dev)
9674{
9675 char *addr = (char *)dev - dev->padded;
9676
4cb28970 9677 kvfree(addr);
74d332c1
ED
9678}
9679
1da177e4 9680/**
722c9a0c 9681 * alloc_netdev_mqs - allocate network device
9682 * @sizeof_priv: size of private data to allocate space for
9683 * @name: device name format string
9684 * @name_assign_type: origin of device name
9685 * @setup: callback to initialize device
9686 * @txqs: the number of TX subqueues to allocate
9687 * @rxqs: the number of RX subqueues to allocate
9688 *
9689 * Allocates a struct net_device with private data area for driver use
9690 * and performs basic initialization. Also allocates subqueue structs
9691 * for each queue on the device.
1da177e4 9692 */
36909ea4 9693struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
c835a677 9694 unsigned char name_assign_type,
36909ea4
TH
9695 void (*setup)(struct net_device *),
9696 unsigned int txqs, unsigned int rxqs)
1da177e4 9697{
1da177e4 9698 struct net_device *dev;
52a59bd5 9699 unsigned int alloc_size;
1ce8e7b5 9700 struct net_device *p;
1da177e4 9701
b6fe17d6
SH
9702 BUG_ON(strlen(name) >= sizeof(dev->name));
9703
36909ea4 9704 if (txqs < 1) {
7b6cd1ce 9705 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
55513fb4
TH
9706 return NULL;
9707 }
9708
36909ea4 9709 if (rxqs < 1) {
7b6cd1ce 9710 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
36909ea4
TH
9711 return NULL;
9712 }
36909ea4 9713
fd2ea0a7 9714 alloc_size = sizeof(struct net_device);
d1643d24
AD
9715 if (sizeof_priv) {
9716 /* ensure 32-byte alignment of private area */
1ce8e7b5 9717 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
d1643d24
AD
9718 alloc_size += sizeof_priv;
9719 }
9720 /* ensure 32-byte alignment of whole construct */
1ce8e7b5 9721 alloc_size += NETDEV_ALIGN - 1;
1da177e4 9722
dcda9b04 9723 p = kvzalloc(alloc_size, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
62b5942a 9724 if (!p)
1da177e4 9725 return NULL;
1da177e4 9726
1ce8e7b5 9727 dev = PTR_ALIGN(p, NETDEV_ALIGN);
1da177e4 9728 dev->padded = (char *)dev - (char *)p;
ab9c73cc 9729
29b4433d
ED
9730 dev->pcpu_refcnt = alloc_percpu(int);
9731 if (!dev->pcpu_refcnt)
74d332c1 9732 goto free_dev;
ab9c73cc 9733
ab9c73cc 9734 if (dev_addr_init(dev))
29b4433d 9735 goto free_pcpu;
ab9c73cc 9736
22bedad3 9737 dev_mc_init(dev);
a748ee24 9738 dev_uc_init(dev);
ccffad25 9739
c346dca1 9740 dev_net_set(dev, &init_net);
1da177e4 9741
ab92d68f
TY
9742 netdev_register_lockdep_key(dev);
9743
8d3bdbd5 9744 dev->gso_max_size = GSO_MAX_SIZE;
30b678d8 9745 dev->gso_max_segs = GSO_MAX_SEGS;
5343da4c
TY
9746 dev->upper_level = 1;
9747 dev->lower_level = 1;
8d3bdbd5 9748
8d3bdbd5
DM
9749 INIT_LIST_HEAD(&dev->napi_list);
9750 INIT_LIST_HEAD(&dev->unreg_list);
5cde2829 9751 INIT_LIST_HEAD(&dev->close_list);
8d3bdbd5 9752 INIT_LIST_HEAD(&dev->link_watch_list);
2f268f12
VF
9753 INIT_LIST_HEAD(&dev->adj_list.upper);
9754 INIT_LIST_HEAD(&dev->adj_list.lower);
7866a621
SN
9755 INIT_LIST_HEAD(&dev->ptype_all);
9756 INIT_LIST_HEAD(&dev->ptype_specific);
59cc1f61
JK
9757#ifdef CONFIG_NET_SCHED
9758 hash_init(dev->qdisc_hash);
9759#endif
02875878 9760 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
8d3bdbd5
DM
9761 setup(dev);
9762
a813104d 9763 if (!dev->tx_queue_len) {
f84bb1ea 9764 dev->priv_flags |= IFF_NO_QUEUE;
11597084 9765 dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
a813104d 9766 }
906470c1 9767
36909ea4
TH
9768 dev->num_tx_queues = txqs;
9769 dev->real_num_tx_queues = txqs;
ed9af2e8 9770 if (netif_alloc_netdev_queues(dev))
8d3bdbd5 9771 goto free_all;
e8a0464c 9772
36909ea4
TH
9773 dev->num_rx_queues = rxqs;
9774 dev->real_num_rx_queues = rxqs;
fe822240 9775 if (netif_alloc_rx_queues(dev))
8d3bdbd5 9776 goto free_all;
0a9627f2 9777
1da177e4 9778 strcpy(dev->name, name);
c835a677 9779 dev->name_assign_type = name_assign_type;
cbda10fa 9780 dev->group = INIT_NETDEV_GROUP;
2c60db03
ED
9781 if (!dev->ethtool_ops)
9782 dev->ethtool_ops = &default_ethtool_ops;
e687ad60
PN
9783
9784 nf_hook_ingress_init(dev);
9785
1da177e4 9786 return dev;
ab9c73cc 9787
8d3bdbd5
DM
9788free_all:
9789 free_netdev(dev);
9790 return NULL;
9791
29b4433d
ED
9792free_pcpu:
9793 free_percpu(dev->pcpu_refcnt);
74d332c1
ED
9794free_dev:
9795 netdev_freemem(dev);
ab9c73cc 9796 return NULL;
1da177e4 9797}
36909ea4 9798EXPORT_SYMBOL(alloc_netdev_mqs);
1da177e4
LT
9799
9800/**
722c9a0c 9801 * free_netdev - free network device
9802 * @dev: device
1da177e4 9803 *
722c9a0c 9804 * This function does the last stage of destroying an allocated device
9805 * interface. The reference to the device object is released. If this
9806 * is the last reference then it will be freed.Must be called in process
9807 * context.
1da177e4
LT
9808 */
9809void free_netdev(struct net_device *dev)
9810{
d565b0a1
HX
9811 struct napi_struct *p, *n;
9812
93d05d4a 9813 might_sleep();
60877a32 9814 netif_free_tx_queues(dev);
e817f856 9815 netif_free_rx_queues(dev);
e8a0464c 9816
33d480ce 9817 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
24824a09 9818
f001fde5
JP
9819 /* Flush device addresses */
9820 dev_addr_flush(dev);
9821
d565b0a1
HX
9822 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
9823 netif_napi_del(p);
9824
29b4433d
ED
9825 free_percpu(dev->pcpu_refcnt);
9826 dev->pcpu_refcnt = NULL;
9827
ab92d68f
TY
9828 netdev_unregister_lockdep_key(dev);
9829
3041a069 9830 /* Compatibility with error handling in drivers */
1da177e4 9831 if (dev->reg_state == NETREG_UNINITIALIZED) {
74d332c1 9832 netdev_freemem(dev);
1da177e4
LT
9833 return;
9834 }
9835
9836 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
9837 dev->reg_state = NETREG_RELEASED;
9838
43cb76d9
GKH
9839 /* will free via device release */
9840 put_device(&dev->dev);
1da177e4 9841}
d1b19dff 9842EXPORT_SYMBOL(free_netdev);
4ec93edb 9843
f0db275a
SH
9844/**
9845 * synchronize_net - Synchronize with packet receive processing
9846 *
9847 * Wait for packets currently being received to be done.
9848 * Does not block later packets from starting.
9849 */
4ec93edb 9850void synchronize_net(void)
1da177e4
LT
9851{
9852 might_sleep();
be3fc413
ED
9853 if (rtnl_is_locked())
9854 synchronize_rcu_expedited();
9855 else
9856 synchronize_rcu();
1da177e4 9857}
d1b19dff 9858EXPORT_SYMBOL(synchronize_net);
1da177e4
LT
9859
9860/**
44a0873d 9861 * unregister_netdevice_queue - remove device from the kernel
1da177e4 9862 * @dev: device
44a0873d 9863 * @head: list
6ebfbc06 9864 *
1da177e4 9865 * This function shuts down a device interface and removes it
d59b54b1 9866 * from the kernel tables.
44a0873d 9867 * If head not NULL, device is queued to be unregistered later.
1da177e4
LT
9868 *
9869 * Callers must hold the rtnl semaphore. You may want
9870 * unregister_netdev() instead of this.
9871 */
9872
44a0873d 9873void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
1da177e4 9874{
a6620712
HX
9875 ASSERT_RTNL();
9876
44a0873d 9877 if (head) {
9fdce099 9878 list_move_tail(&dev->unreg_list, head);
44a0873d
ED
9879 } else {
9880 rollback_registered(dev);
9881 /* Finish processing unregister after unlock */
9882 net_set_todo(dev);
9883 }
1da177e4 9884}
44a0873d 9885EXPORT_SYMBOL(unregister_netdevice_queue);
1da177e4 9886
9b5e383c
ED
9887/**
9888 * unregister_netdevice_many - unregister many devices
9889 * @head: list of devices
87757a91
ED
9890 *
9891 * Note: As most callers use a stack allocated list_head,
9892 * we force a list_del() to make sure stack wont be corrupted later.
9b5e383c
ED
9893 */
9894void unregister_netdevice_many(struct list_head *head)
9895{
9896 struct net_device *dev;
9897
9898 if (!list_empty(head)) {
9899 rollback_registered_many(head);
9900 list_for_each_entry(dev, head, unreg_list)
9901 net_set_todo(dev);
87757a91 9902 list_del(head);
9b5e383c
ED
9903 }
9904}
63c8099d 9905EXPORT_SYMBOL(unregister_netdevice_many);
9b5e383c 9906
1da177e4
LT
9907/**
9908 * unregister_netdev - remove device from the kernel
9909 * @dev: device
9910 *
9911 * This function shuts down a device interface and removes it
d59b54b1 9912 * from the kernel tables.
1da177e4
LT
9913 *
9914 * This is just a wrapper for unregister_netdevice that takes
9915 * the rtnl semaphore. In general you want to use this and not
9916 * unregister_netdevice.
9917 */
9918void unregister_netdev(struct net_device *dev)
9919{
9920 rtnl_lock();
9921 unregister_netdevice(dev);
9922 rtnl_unlock();
9923}
1da177e4
LT
9924EXPORT_SYMBOL(unregister_netdev);
9925
ce286d32
EB
9926/**
9927 * dev_change_net_namespace - move device to different nethost namespace
9928 * @dev: device
9929 * @net: network namespace
9930 * @pat: If not NULL name pattern to try if the current device name
9931 * is already taken in the destination network namespace.
9932 *
9933 * This function shuts down a device interface and moves it
9934 * to a new network namespace. On success 0 is returned, on
9935 * a failure a netagive errno code is returned.
9936 *
9937 * Callers must hold the rtnl semaphore.
9938 */
9939
9940int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
9941{
38e01b30 9942 int err, new_nsid, new_ifindex;
ce286d32
EB
9943
9944 ASSERT_RTNL();
9945
9946 /* Don't allow namespace local devices to be moved. */
9947 err = -EINVAL;
9948 if (dev->features & NETIF_F_NETNS_LOCAL)
9949 goto out;
9950
9951 /* Ensure the device has been registrered */
ce286d32
EB
9952 if (dev->reg_state != NETREG_REGISTERED)
9953 goto out;
9954
9955 /* Get out if there is nothing todo */
9956 err = 0;
878628fb 9957 if (net_eq(dev_net(dev), net))
ce286d32
EB
9958 goto out;
9959
9960 /* Pick the destination device name, and ensure
9961 * we can use it in the destination network namespace.
9962 */
9963 err = -EEXIST;
d9031024 9964 if (__dev_get_by_name(net, dev->name)) {
ce286d32
EB
9965 /* We get here if we can't use the current device name */
9966 if (!pat)
9967 goto out;
7892bd08
LR
9968 err = dev_get_valid_name(net, dev, pat);
9969 if (err < 0)
ce286d32
EB
9970 goto out;
9971 }
9972
9973 /*
9974 * And now a mini version of register_netdevice unregister_netdevice.
9975 */
9976
9977 /* If device is running close it first. */
9b772652 9978 dev_close(dev);
ce286d32
EB
9979
9980 /* And unlink it from device chain */
ce286d32
EB
9981 unlist_netdevice(dev);
9982
9983 synchronize_net();
9984
9985 /* Shutdown queueing discipline. */
9986 dev_shutdown(dev);
9987
9988 /* Notify protocols, that we are about to destroy
eb13da1a 9989 * this device. They should clean all the things.
9990 *
9991 * Note that dev->reg_state stays at NETREG_REGISTERED.
9992 * This is wanted because this way 8021q and macvlan know
9993 * the device is just moving and can keep their slaves up.
9994 */
ce286d32 9995 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
6549dd43 9996 rcu_barrier();
38e01b30 9997
d4e4fdf9 9998 new_nsid = peernet2id_alloc(dev_net(dev), net, GFP_KERNEL);
38e01b30
ND
9999 /* If there is an ifindex conflict assign a new one */
10000 if (__dev_get_by_index(net, dev->ifindex))
10001 new_ifindex = dev_new_index(net);
10002 else
10003 new_ifindex = dev->ifindex;
10004
10005 rtmsg_ifinfo_newnet(RTM_DELLINK, dev, ~0U, GFP_KERNEL, &new_nsid,
10006 new_ifindex);
ce286d32
EB
10007
10008 /*
10009 * Flush the unicast and multicast chains
10010 */
a748ee24 10011 dev_uc_flush(dev);
22bedad3 10012 dev_mc_flush(dev);
ce286d32 10013
4e66ae2e
SH
10014 /* Send a netdev-removed uevent to the old namespace */
10015 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
4c75431a 10016 netdev_adjacent_del_links(dev);
4e66ae2e 10017
ce286d32 10018 /* Actually switch the network namespace */
c346dca1 10019 dev_net_set(dev, net);
38e01b30 10020 dev->ifindex = new_ifindex;
ce286d32 10021
4e66ae2e
SH
10022 /* Send a netdev-add uevent to the new namespace */
10023 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
4c75431a 10024 netdev_adjacent_add_links(dev);
4e66ae2e 10025
8b41d188 10026 /* Fixup kobjects */
a1b3f594 10027 err = device_rename(&dev->dev, dev->name);
8b41d188 10028 WARN_ON(err);
ce286d32
EB
10029
10030 /* Add the device back in the hashes */
10031 list_netdevice(dev);
10032
10033 /* Notify protocols, that a new device appeared. */
10034 call_netdevice_notifiers(NETDEV_REGISTER, dev);
10035
d90a909e
EB
10036 /*
10037 * Prevent userspace races by waiting until the network
10038 * device is fully setup before sending notifications.
10039 */
7f294054 10040 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
d90a909e 10041
ce286d32
EB
10042 synchronize_net();
10043 err = 0;
10044out:
10045 return err;
10046}
463d0183 10047EXPORT_SYMBOL_GPL(dev_change_net_namespace);
ce286d32 10048
f0bf90de 10049static int dev_cpu_dead(unsigned int oldcpu)
1da177e4
LT
10050{
10051 struct sk_buff **list_skb;
1da177e4 10052 struct sk_buff *skb;
f0bf90de 10053 unsigned int cpu;
97d8b6e3 10054 struct softnet_data *sd, *oldsd, *remsd = NULL;
1da177e4 10055
1da177e4
LT
10056 local_irq_disable();
10057 cpu = smp_processor_id();
10058 sd = &per_cpu(softnet_data, cpu);
10059 oldsd = &per_cpu(softnet_data, oldcpu);
10060
10061 /* Find end of our completion_queue. */
10062 list_skb = &sd->completion_queue;
10063 while (*list_skb)
10064 list_skb = &(*list_skb)->next;
10065 /* Append completion queue from offline CPU. */
10066 *list_skb = oldsd->completion_queue;
10067 oldsd->completion_queue = NULL;
10068
1da177e4 10069 /* Append output queue from offline CPU. */
a9cbd588
CG
10070 if (oldsd->output_queue) {
10071 *sd->output_queue_tailp = oldsd->output_queue;
10072 sd->output_queue_tailp = oldsd->output_queue_tailp;
10073 oldsd->output_queue = NULL;
10074 oldsd->output_queue_tailp = &oldsd->output_queue;
10075 }
ac64da0b
ED
10076 /* Append NAPI poll list from offline CPU, with one exception :
10077 * process_backlog() must be called by cpu owning percpu backlog.
10078 * We properly handle process_queue & input_pkt_queue later.
10079 */
10080 while (!list_empty(&oldsd->poll_list)) {
10081 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
10082 struct napi_struct,
10083 poll_list);
10084
10085 list_del_init(&napi->poll_list);
10086 if (napi->poll == process_backlog)
10087 napi->state = 0;
10088 else
10089 ____napi_schedule(sd, napi);
264524d5 10090 }
1da177e4
LT
10091
10092 raise_softirq_irqoff(NET_TX_SOFTIRQ);
10093 local_irq_enable();
10094
773fc8f6 10095#ifdef CONFIG_RPS
10096 remsd = oldsd->rps_ipi_list;
10097 oldsd->rps_ipi_list = NULL;
10098#endif
10099 /* send out pending IPI's on offline CPU */
10100 net_rps_send_ipi(remsd);
10101
1da177e4 10102 /* Process offline CPU's input_pkt_queue */
76cc8b13 10103 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
91e83133 10104 netif_rx_ni(skb);
76cc8b13 10105 input_queue_head_incr(oldsd);
fec5e652 10106 }
ac64da0b 10107 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
91e83133 10108 netif_rx_ni(skb);
76cc8b13
TH
10109 input_queue_head_incr(oldsd);
10110 }
1da177e4 10111
f0bf90de 10112 return 0;
1da177e4 10113}
1da177e4 10114
7f353bf2 10115/**
b63365a2
HX
10116 * netdev_increment_features - increment feature set by one
10117 * @all: current feature set
10118 * @one: new feature set
10119 * @mask: mask feature set
7f353bf2
HX
10120 *
10121 * Computes a new feature set after adding a device with feature set
b63365a2
HX
10122 * @one to the master device with current feature set @all. Will not
10123 * enable anything that is off in @mask. Returns the new feature set.
7f353bf2 10124 */
c8f44aff
MM
10125netdev_features_t netdev_increment_features(netdev_features_t all,
10126 netdev_features_t one, netdev_features_t mask)
b63365a2 10127{
c8cd0989 10128 if (mask & NETIF_F_HW_CSUM)
a188222b 10129 mask |= NETIF_F_CSUM_MASK;
1742f183 10130 mask |= NETIF_F_VLAN_CHALLENGED;
7f353bf2 10131
a188222b 10132 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
1742f183 10133 all &= one | ~NETIF_F_ALL_FOR_ALL;
c6e1a0d1 10134
1742f183 10135 /* If one device supports hw checksumming, set for all. */
c8cd0989
TH
10136 if (all & NETIF_F_HW_CSUM)
10137 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
7f353bf2
HX
10138
10139 return all;
10140}
b63365a2 10141EXPORT_SYMBOL(netdev_increment_features);
7f353bf2 10142
430f03cd 10143static struct hlist_head * __net_init netdev_create_hash(void)
30d97d35
PE
10144{
10145 int i;
10146 struct hlist_head *hash;
10147
6da2ec56 10148 hash = kmalloc_array(NETDEV_HASHENTRIES, sizeof(*hash), GFP_KERNEL);
30d97d35
PE
10149 if (hash != NULL)
10150 for (i = 0; i < NETDEV_HASHENTRIES; i++)
10151 INIT_HLIST_HEAD(&hash[i]);
10152
10153 return hash;
10154}
10155
881d966b 10156/* Initialize per network namespace state */
4665079c 10157static int __net_init netdev_init(struct net *net)
881d966b 10158{
d9f37d01 10159 BUILD_BUG_ON(GRO_HASH_BUCKETS >
c593642c 10160 8 * sizeof_field(struct napi_struct, gro_bitmask));
d9f37d01 10161
734b6541
RM
10162 if (net != &init_net)
10163 INIT_LIST_HEAD(&net->dev_base_head);
881d966b 10164
30d97d35
PE
10165 net->dev_name_head = netdev_create_hash();
10166 if (net->dev_name_head == NULL)
10167 goto err_name;
881d966b 10168
30d97d35
PE
10169 net->dev_index_head = netdev_create_hash();
10170 if (net->dev_index_head == NULL)
10171 goto err_idx;
881d966b 10172
a30c7b42
JP
10173 RAW_INIT_NOTIFIER_HEAD(&net->netdev_chain);
10174
881d966b 10175 return 0;
30d97d35
PE
10176
10177err_idx:
10178 kfree(net->dev_name_head);
10179err_name:
10180 return -ENOMEM;
881d966b
EB
10181}
10182
f0db275a
SH
10183/**
10184 * netdev_drivername - network driver for the device
10185 * @dev: network device
f0db275a
SH
10186 *
10187 * Determine network driver for device.
10188 */
3019de12 10189const char *netdev_drivername(const struct net_device *dev)
6579e57b 10190{
cf04a4c7
SH
10191 const struct device_driver *driver;
10192 const struct device *parent;
3019de12 10193 const char *empty = "";
6579e57b
AV
10194
10195 parent = dev->dev.parent;
6579e57b 10196 if (!parent)
3019de12 10197 return empty;
6579e57b
AV
10198
10199 driver = parent->driver;
10200 if (driver && driver->name)
3019de12
DM
10201 return driver->name;
10202 return empty;
6579e57b
AV
10203}
10204
6ea754eb
JP
10205static void __netdev_printk(const char *level, const struct net_device *dev,
10206 struct va_format *vaf)
256df2f3 10207{
b004ff49 10208 if (dev && dev->dev.parent) {
6ea754eb
JP
10209 dev_printk_emit(level[1] - '0',
10210 dev->dev.parent,
10211 "%s %s %s%s: %pV",
10212 dev_driver_string(dev->dev.parent),
10213 dev_name(dev->dev.parent),
10214 netdev_name(dev), netdev_reg_state(dev),
10215 vaf);
b004ff49 10216 } else if (dev) {
6ea754eb
JP
10217 printk("%s%s%s: %pV",
10218 level, netdev_name(dev), netdev_reg_state(dev), vaf);
b004ff49 10219 } else {
6ea754eb 10220 printk("%s(NULL net_device): %pV", level, vaf);
b004ff49 10221 }
256df2f3
JP
10222}
10223
6ea754eb
JP
10224void netdev_printk(const char *level, const struct net_device *dev,
10225 const char *format, ...)
256df2f3
JP
10226{
10227 struct va_format vaf;
10228 va_list args;
256df2f3
JP
10229
10230 va_start(args, format);
10231
10232 vaf.fmt = format;
10233 vaf.va = &args;
10234
6ea754eb 10235 __netdev_printk(level, dev, &vaf);
b004ff49 10236
256df2f3 10237 va_end(args);
256df2f3
JP
10238}
10239EXPORT_SYMBOL(netdev_printk);
10240
10241#define define_netdev_printk_level(func, level) \
6ea754eb 10242void func(const struct net_device *dev, const char *fmt, ...) \
256df2f3 10243{ \
256df2f3
JP
10244 struct va_format vaf; \
10245 va_list args; \
10246 \
10247 va_start(args, fmt); \
10248 \
10249 vaf.fmt = fmt; \
10250 vaf.va = &args; \
10251 \
6ea754eb 10252 __netdev_printk(level, dev, &vaf); \
b004ff49 10253 \
256df2f3 10254 va_end(args); \
256df2f3
JP
10255} \
10256EXPORT_SYMBOL(func);
10257
10258define_netdev_printk_level(netdev_emerg, KERN_EMERG);
10259define_netdev_printk_level(netdev_alert, KERN_ALERT);
10260define_netdev_printk_level(netdev_crit, KERN_CRIT);
10261define_netdev_printk_level(netdev_err, KERN_ERR);
10262define_netdev_printk_level(netdev_warn, KERN_WARNING);
10263define_netdev_printk_level(netdev_notice, KERN_NOTICE);
10264define_netdev_printk_level(netdev_info, KERN_INFO);
10265
4665079c 10266static void __net_exit netdev_exit(struct net *net)
881d966b
EB
10267{
10268 kfree(net->dev_name_head);
10269 kfree(net->dev_index_head);
ee21b18b
VA
10270 if (net != &init_net)
10271 WARN_ON_ONCE(!list_empty(&net->dev_base_head));
881d966b
EB
10272}
10273
022cbae6 10274static struct pernet_operations __net_initdata netdev_net_ops = {
881d966b
EB
10275 .init = netdev_init,
10276 .exit = netdev_exit,
10277};
10278
4665079c 10279static void __net_exit default_device_exit(struct net *net)
ce286d32 10280{
e008b5fc 10281 struct net_device *dev, *aux;
ce286d32 10282 /*
e008b5fc 10283 * Push all migratable network devices back to the
ce286d32
EB
10284 * initial network namespace
10285 */
10286 rtnl_lock();
e008b5fc 10287 for_each_netdev_safe(net, dev, aux) {
ce286d32 10288 int err;
aca51397 10289 char fb_name[IFNAMSIZ];
ce286d32
EB
10290
10291 /* Ignore unmoveable devices (i.e. loopback) */
10292 if (dev->features & NETIF_F_NETNS_LOCAL)
10293 continue;
10294
e008b5fc
EB
10295 /* Leave virtual devices for the generic cleanup */
10296 if (dev->rtnl_link_ops)
10297 continue;
d0c082ce 10298
25985edc 10299 /* Push remaining network devices to init_net */
aca51397 10300 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
55b40dbf
JP
10301 if (__dev_get_by_name(&init_net, fb_name))
10302 snprintf(fb_name, IFNAMSIZ, "dev%%d");
aca51397 10303 err = dev_change_net_namespace(dev, &init_net, fb_name);
ce286d32 10304 if (err) {
7b6cd1ce
JP
10305 pr_emerg("%s: failed to move %s to init_net: %d\n",
10306 __func__, dev->name, err);
aca51397 10307 BUG();
ce286d32
EB
10308 }
10309 }
10310 rtnl_unlock();
10311}
10312
50624c93
EB
10313static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
10314{
10315 /* Return with the rtnl_lock held when there are no network
10316 * devices unregistering in any network namespace in net_list.
10317 */
10318 struct net *net;
10319 bool unregistering;
ff960a73 10320 DEFINE_WAIT_FUNC(wait, woken_wake_function);
50624c93 10321
ff960a73 10322 add_wait_queue(&netdev_unregistering_wq, &wait);
50624c93 10323 for (;;) {
50624c93
EB
10324 unregistering = false;
10325 rtnl_lock();
10326 list_for_each_entry(net, net_list, exit_list) {
10327 if (net->dev_unreg_count > 0) {
10328 unregistering = true;
10329 break;
10330 }
10331 }
10332 if (!unregistering)
10333 break;
10334 __rtnl_unlock();
ff960a73
PZ
10335
10336 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
50624c93 10337 }
ff960a73 10338 remove_wait_queue(&netdev_unregistering_wq, &wait);
50624c93
EB
10339}
10340
04dc7f6b
EB
10341static void __net_exit default_device_exit_batch(struct list_head *net_list)
10342{
10343 /* At exit all network devices most be removed from a network
b595076a 10344 * namespace. Do this in the reverse order of registration.
04dc7f6b
EB
10345 * Do this across as many network namespaces as possible to
10346 * improve batching efficiency.
10347 */
10348 struct net_device *dev;
10349 struct net *net;
10350 LIST_HEAD(dev_kill_list);
10351
50624c93
EB
10352 /* To prevent network device cleanup code from dereferencing
10353 * loopback devices or network devices that have been freed
10354 * wait here for all pending unregistrations to complete,
10355 * before unregistring the loopback device and allowing the
10356 * network namespace be freed.
10357 *
10358 * The netdev todo list containing all network devices
10359 * unregistrations that happen in default_device_exit_batch
10360 * will run in the rtnl_unlock() at the end of
10361 * default_device_exit_batch.
10362 */
10363 rtnl_lock_unregistering(net_list);
04dc7f6b
EB
10364 list_for_each_entry(net, net_list, exit_list) {
10365 for_each_netdev_reverse(net, dev) {
b0ab2fab 10366 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
04dc7f6b
EB
10367 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
10368 else
10369 unregister_netdevice_queue(dev, &dev_kill_list);
10370 }
10371 }
10372 unregister_netdevice_many(&dev_kill_list);
10373 rtnl_unlock();
10374}
10375
022cbae6 10376static struct pernet_operations __net_initdata default_device_ops = {
ce286d32 10377 .exit = default_device_exit,
04dc7f6b 10378 .exit_batch = default_device_exit_batch,
ce286d32
EB
10379};
10380
1da177e4
LT
10381/*
10382 * Initialize the DEV module. At boot time this walks the device list and
10383 * unhooks any devices that fail to initialise (normally hardware not
10384 * present) and leaves us with a valid list of present and active devices.
10385 *
10386 */
10387
10388/*
10389 * This is called single threaded during boot, so no need
10390 * to take the rtnl semaphore.
10391 */
10392static int __init net_dev_init(void)
10393{
10394 int i, rc = -ENOMEM;
10395
10396 BUG_ON(!dev_boot_phase);
10397
1da177e4
LT
10398 if (dev_proc_init())
10399 goto out;
10400
8b41d188 10401 if (netdev_kobject_init())
1da177e4
LT
10402 goto out;
10403
10404 INIT_LIST_HEAD(&ptype_all);
82d8a867 10405 for (i = 0; i < PTYPE_HASH_SIZE; i++)
1da177e4
LT
10406 INIT_LIST_HEAD(&ptype_base[i]);
10407
62532da9
VY
10408 INIT_LIST_HEAD(&offload_base);
10409
881d966b
EB
10410 if (register_pernet_subsys(&netdev_net_ops))
10411 goto out;
1da177e4
LT
10412
10413 /*
10414 * Initialise the packet receive queues.
10415 */
10416
6f912042 10417 for_each_possible_cpu(i) {
41852497 10418 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
e36fa2f7 10419 struct softnet_data *sd = &per_cpu(softnet_data, i);
1da177e4 10420
41852497
ED
10421 INIT_WORK(flush, flush_backlog);
10422
e36fa2f7 10423 skb_queue_head_init(&sd->input_pkt_queue);
6e7676c1 10424 skb_queue_head_init(&sd->process_queue);
f53c7239
SK
10425#ifdef CONFIG_XFRM_OFFLOAD
10426 skb_queue_head_init(&sd->xfrm_backlog);
10427#endif
e36fa2f7 10428 INIT_LIST_HEAD(&sd->poll_list);
a9cbd588 10429 sd->output_queue_tailp = &sd->output_queue;
df334545 10430#ifdef CONFIG_RPS
e36fa2f7
ED
10431 sd->csd.func = rps_trigger_softirq;
10432 sd->csd.info = sd;
e36fa2f7 10433 sd->cpu = i;
1e94d72f 10434#endif
0a9627f2 10435
7c4ec749 10436 init_gro_hash(&sd->backlog);
e36fa2f7
ED
10437 sd->backlog.poll = process_backlog;
10438 sd->backlog.weight = weight_p;
1da177e4
LT
10439 }
10440
1da177e4
LT
10441 dev_boot_phase = 0;
10442
505d4f73
EB
10443 /* The loopback device is special if any other network devices
10444 * is present in a network namespace the loopback device must
10445 * be present. Since we now dynamically allocate and free the
10446 * loopback device ensure this invariant is maintained by
10447 * keeping the loopback device as the first device on the
10448 * list of network devices. Ensuring the loopback devices
10449 * is the first device that appears and the last network device
10450 * that disappears.
10451 */
10452 if (register_pernet_device(&loopback_net_ops))
10453 goto out;
10454
10455 if (register_pernet_device(&default_device_ops))
10456 goto out;
10457
962cf36c
CM
10458 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
10459 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
1da177e4 10460
f0bf90de
SAS
10461 rc = cpuhp_setup_state_nocalls(CPUHP_NET_DEV_DEAD, "net/dev:dead",
10462 NULL, dev_cpu_dead);
10463 WARN_ON(rc < 0);
1da177e4
LT
10464 rc = 0;
10465out:
10466 return rc;
10467}
10468
10469subsys_initcall(net_dev_init);