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