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