bcm63xx_enet: add support for Broadcom BCM63xx integrated gigabit switch
[deliverable/linux.git] / net / core / dev.c
CommitLineData
1da177e4
LT
1/*
2 * NET3 Protocol independent device support routines.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Derived from the non IP parts of dev.c 1.0.19
02c30a84 10 * Authors: Ross Biro
1da177e4
LT
11 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Mark Evans, <evansmp@uhura.aston.ac.uk>
13 *
14 * Additional Authors:
15 * Florian la Roche <rzsfl@rz.uni-sb.de>
16 * Alan Cox <gw4pts@gw4pts.ampr.org>
17 * David Hinds <dahinds@users.sourceforge.net>
18 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
19 * Adam Sulmicki <adam@cfar.umd.edu>
20 * Pekka Riikonen <priikone@poesidon.pspt.fi>
21 *
22 * Changes:
23 * D.J. Barrow : Fixed bug where dev->refcnt gets set
24 * to 2 if register_netdev gets called
25 * before net_dev_init & also removed a
26 * few lines of code in the process.
27 * Alan Cox : device private ioctl copies fields back.
28 * Alan Cox : Transmit queue code does relevant
29 * stunts to keep the queue safe.
30 * Alan Cox : Fixed double lock.
31 * Alan Cox : Fixed promisc NULL pointer trap
32 * ???????? : Support the full private ioctl range
33 * Alan Cox : Moved ioctl permission check into
34 * drivers
35 * Tim Kordas : SIOCADDMULTI/SIOCDELMULTI
36 * Alan Cox : 100 backlog just doesn't cut it when
37 * you start doing multicast video 8)
38 * Alan Cox : Rewrote net_bh and list manager.
39 * Alan Cox : Fix ETH_P_ALL echoback lengths.
40 * Alan Cox : Took out transmit every packet pass
41 * Saved a few bytes in the ioctl handler
42 * Alan Cox : Network driver sets packet type before
43 * calling netif_rx. Saves a function
44 * call a packet.
45 * Alan Cox : Hashed net_bh()
46 * Richard Kooijman: Timestamp fixes.
47 * Alan Cox : Wrong field in SIOCGIFDSTADDR
48 * Alan Cox : Device lock protection.
49 * Alan Cox : Fixed nasty side effect of device close
50 * changes.
51 * Rudi Cilibrasi : Pass the right thing to
52 * set_mac_address()
53 * Dave Miller : 32bit quantity for the device lock to
54 * make it work out on a Sparc.
55 * Bjorn Ekwall : Added KERNELD hack.
56 * Alan Cox : Cleaned up the backlog initialise.
57 * Craig Metz : SIOCGIFCONF fix if space for under
58 * 1 device.
59 * Thomas Bogendoerfer : Return ENODEV for dev_open, if there
60 * is no device open function.
61 * Andi Kleen : Fix error reporting for SIOCGIFCONF
62 * Michael Chastain : Fix signed/unsigned for SIOCGIFCONF
63 * Cyrus Durgin : Cleaned for KMOD
64 * Adam Sulmicki : Bug Fix : Network Device Unload
65 * A network device unload needs to purge
66 * the backlog queue.
67 * Paul Rusty Russell : SIOCSIFNAME
68 * Pekka Riikonen : Netdev boot-time settings code
69 * Andrew Morton : Make unregister_netdevice wait
70 * indefinitely on dev->refcnt
71 * J Hadi Salim : - Backlog queue sampling
72 * - netif_rx() feedback
73 */
74
75#include <asm/uaccess.h>
1da177e4 76#include <linux/bitops.h>
4fc268d2 77#include <linux/capability.h>
1da177e4
LT
78#include <linux/cpu.h>
79#include <linux/types.h>
80#include <linux/kernel.h>
08e9897d 81#include <linux/hash.h>
5a0e3ad6 82#include <linux/slab.h>
1da177e4 83#include <linux/sched.h>
4a3e2f71 84#include <linux/mutex.h>
1da177e4
LT
85#include <linux/string.h>
86#include <linux/mm.h>
87#include <linux/socket.h>
88#include <linux/sockios.h>
89#include <linux/errno.h>
90#include <linux/interrupt.h>
91#include <linux/if_ether.h>
92#include <linux/netdevice.h>
93#include <linux/etherdevice.h>
0187bdfb 94#include <linux/ethtool.h>
1da177e4
LT
95#include <linux/notifier.h>
96#include <linux/skbuff.h>
457c4cbc 97#include <net/net_namespace.h>
1da177e4
LT
98#include <net/sock.h>
99#include <linux/rtnetlink.h>
1da177e4 100#include <linux/stat.h>
1da177e4
LT
101#include <net/dst.h>
102#include <net/pkt_sched.h>
103#include <net/checksum.h>
44540960 104#include <net/xfrm.h>
1da177e4
LT
105#include <linux/highmem.h>
106#include <linux/init.h>
1da177e4 107#include <linux/module.h>
1da177e4
LT
108#include <linux/netpoll.h>
109#include <linux/rcupdate.h>
110#include <linux/delay.h>
1da177e4 111#include <net/iw_handler.h>
1da177e4 112#include <asm/current.h>
5bdb9886 113#include <linux/audit.h>
db217334 114#include <linux/dmaengine.h>
f6a78bfc 115#include <linux/err.h>
c7fa9d18 116#include <linux/ctype.h>
723e98b7 117#include <linux/if_arp.h>
6de329e2 118#include <linux/if_vlan.h>
8f0f2223 119#include <linux/ip.h>
ad55dcaf 120#include <net/ip.h>
8f0f2223
DM
121#include <linux/ipv6.h>
122#include <linux/in.h>
b6b2fed1
DM
123#include <linux/jhash.h>
124#include <linux/random.h>
9cbc1cb8 125#include <trace/events/napi.h>
cf66ba58 126#include <trace/events/net.h>
07dc22e7 127#include <trace/events/skb.h>
5acbbd42 128#include <linux/pci.h>
caeda9b9 129#include <linux/inetdevice.h>
c445477d 130#include <linux/cpu_rmap.h>
c5905afb 131#include <linux/static_key.h>
1da177e4 132
342709ef
PE
133#include "net-sysfs.h"
134
d565b0a1
HX
135/* Instead of increasing this, you should create a hash table. */
136#define MAX_GRO_SKBS 8
137
5d38a079
HX
138/* This should be increased if a protocol with a bigger head is added. */
139#define GRO_MAX_HEAD (MAX_HEADER + 128)
140
1da177e4 141static DEFINE_SPINLOCK(ptype_lock);
62532da9 142static DEFINE_SPINLOCK(offload_lock);
900ff8c6
CW
143struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
144struct list_head ptype_all __read_mostly; /* Taps */
62532da9 145static struct list_head offload_base __read_mostly;
1da177e4 146
1da177e4 147/*
7562f876 148 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
1da177e4
LT
149 * semaphore.
150 *
c6d14c84 151 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
1da177e4
LT
152 *
153 * Writers must hold the rtnl semaphore while they loop through the
7562f876 154 * dev_base_head list, and hold dev_base_lock for writing when they do the
1da177e4
LT
155 * actual updates. This allows pure readers to access the list even
156 * while a writer is preparing to update it.
157 *
158 * To put it another way, dev_base_lock is held for writing only to
159 * protect against pure readers; the rtnl semaphore provides the
160 * protection against other writers.
161 *
162 * See, for example usages, register_netdevice() and
163 * unregister_netdevice(), which must be called with the rtnl
164 * semaphore held.
165 */
1da177e4 166DEFINE_RWLOCK(dev_base_lock);
1da177e4
LT
167EXPORT_SYMBOL(dev_base_lock);
168
30e6c9fa 169seqcount_t devnet_rename_seq;
c91f6df2 170
4e985ada
TG
171static inline void dev_base_seq_inc(struct net *net)
172{
173 while (++net->dev_base_seq == 0);
174}
175
881d966b 176static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
1da177e4 177{
95c96174
ED
178 unsigned int hash = full_name_hash(name, strnlen(name, IFNAMSIZ));
179
08e9897d 180 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
1da177e4
LT
181}
182
881d966b 183static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
1da177e4 184{
7c28bd0b 185 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
1da177e4
LT
186}
187
e36fa2f7 188static inline void rps_lock(struct softnet_data *sd)
152102c7
CG
189{
190#ifdef CONFIG_RPS
e36fa2f7 191 spin_lock(&sd->input_pkt_queue.lock);
152102c7
CG
192#endif
193}
194
e36fa2f7 195static inline void rps_unlock(struct softnet_data *sd)
152102c7
CG
196{
197#ifdef CONFIG_RPS
e36fa2f7 198 spin_unlock(&sd->input_pkt_queue.lock);
152102c7
CG
199#endif
200}
201
ce286d32 202/* Device list insertion */
53759be9 203static void list_netdevice(struct net_device *dev)
ce286d32 204{
c346dca1 205 struct net *net = dev_net(dev);
ce286d32
EB
206
207 ASSERT_RTNL();
208
209 write_lock_bh(&dev_base_lock);
c6d14c84 210 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
72c9528b 211 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
fb699dfd
ED
212 hlist_add_head_rcu(&dev->index_hlist,
213 dev_index_hash(net, dev->ifindex));
ce286d32 214 write_unlock_bh(&dev_base_lock);
4e985ada
TG
215
216 dev_base_seq_inc(net);
ce286d32
EB
217}
218
fb699dfd
ED
219/* Device list removal
220 * caller must respect a RCU grace period before freeing/reusing dev
221 */
ce286d32
EB
222static void unlist_netdevice(struct net_device *dev)
223{
224 ASSERT_RTNL();
225
226 /* Unlink dev from the device chain */
227 write_lock_bh(&dev_base_lock);
c6d14c84 228 list_del_rcu(&dev->dev_list);
72c9528b 229 hlist_del_rcu(&dev->name_hlist);
fb699dfd 230 hlist_del_rcu(&dev->index_hlist);
ce286d32 231 write_unlock_bh(&dev_base_lock);
4e985ada
TG
232
233 dev_base_seq_inc(dev_net(dev));
ce286d32
EB
234}
235
1da177e4
LT
236/*
237 * Our notifier list
238 */
239
f07d5b94 240static RAW_NOTIFIER_HEAD(netdev_chain);
1da177e4
LT
241
242/*
243 * Device drivers call our routines to queue packets here. We empty the
244 * queue in the local softnet handler.
245 */
bea3348e 246
9958da05 247DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
d1b19dff 248EXPORT_PER_CPU_SYMBOL(softnet_data);
1da177e4 249
cf508b12 250#ifdef CONFIG_LOCKDEP
723e98b7 251/*
c773e847 252 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
723e98b7
JP
253 * according to dev->type
254 */
255static const unsigned short netdev_lock_type[] =
256 {ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
257 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
258 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
259 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
260 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
261 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
262 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
263 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
264 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
265 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
266 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
267 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
211ed865
PG
268 ARPHRD_FCFABRIC, ARPHRD_IEEE80211, ARPHRD_IEEE80211_PRISM,
269 ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET, ARPHRD_PHONET_PIPE,
270 ARPHRD_IEEE802154, ARPHRD_VOID, ARPHRD_NONE};
723e98b7 271
36cbd3dc 272static const char *const netdev_lock_name[] =
723e98b7
JP
273 {"_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
274 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
275 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
276 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
277 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
278 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
279 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
280 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
281 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
282 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
283 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
284 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
211ed865
PG
285 "_xmit_FCFABRIC", "_xmit_IEEE80211", "_xmit_IEEE80211_PRISM",
286 "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET", "_xmit_PHONET_PIPE",
287 "_xmit_IEEE802154", "_xmit_VOID", "_xmit_NONE"};
723e98b7
JP
288
289static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
cf508b12 290static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
723e98b7
JP
291
292static inline unsigned short netdev_lock_pos(unsigned short dev_type)
293{
294 int i;
295
296 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
297 if (netdev_lock_type[i] == dev_type)
298 return i;
299 /* the last key is used by default */
300 return ARRAY_SIZE(netdev_lock_type) - 1;
301}
302
cf508b12
DM
303static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
304 unsigned short dev_type)
723e98b7
JP
305{
306 int i;
307
308 i = netdev_lock_pos(dev_type);
309 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
310 netdev_lock_name[i]);
311}
cf508b12
DM
312
313static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
314{
315 int i;
316
317 i = netdev_lock_pos(dev->type);
318 lockdep_set_class_and_name(&dev->addr_list_lock,
319 &netdev_addr_lock_key[i],
320 netdev_lock_name[i]);
321}
723e98b7 322#else
cf508b12
DM
323static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
324 unsigned short dev_type)
325{
326}
327static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
723e98b7
JP
328{
329}
330#endif
1da177e4
LT
331
332/*******************************************************************************
333
334 Protocol management and registration routines
335
336*******************************************************************************/
337
1da177e4
LT
338/*
339 * Add a protocol ID to the list. Now that the input handler is
340 * smarter we can dispense with all the messy stuff that used to be
341 * here.
342 *
343 * BEWARE!!! Protocol handlers, mangling input packets,
344 * MUST BE last in hash buckets and checking protocol handlers
345 * MUST start from promiscuous ptype_all chain in net_bh.
346 * It is true now, do not change it.
347 * Explanation follows: if protocol handler, mangling packet, will
348 * be the first on list, it is not able to sense, that packet
349 * is cloned and should be copied-on-write, so that it will
350 * change it and subsequent readers will get broken packet.
351 * --ANK (980803)
352 */
353
c07b68e8
ED
354static inline struct list_head *ptype_head(const struct packet_type *pt)
355{
356 if (pt->type == htons(ETH_P_ALL))
357 return &ptype_all;
358 else
359 return &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
360}
361
1da177e4
LT
362/**
363 * dev_add_pack - add packet handler
364 * @pt: packet type declaration
365 *
366 * Add a protocol handler to the networking stack. The passed &packet_type
367 * is linked into kernel lists and may not be freed until it has been
368 * removed from the kernel lists.
369 *
4ec93edb 370 * This call does not sleep therefore it can not
1da177e4
LT
371 * guarantee all CPU's that are in middle of receiving packets
372 * will see the new packet type (until the next received packet).
373 */
374
375void dev_add_pack(struct packet_type *pt)
376{
c07b68e8 377 struct list_head *head = ptype_head(pt);
1da177e4 378
c07b68e8
ED
379 spin_lock(&ptype_lock);
380 list_add_rcu(&pt->list, head);
381 spin_unlock(&ptype_lock);
1da177e4 382}
d1b19dff 383EXPORT_SYMBOL(dev_add_pack);
1da177e4 384
1da177e4
LT
385/**
386 * __dev_remove_pack - remove packet handler
387 * @pt: packet type declaration
388 *
389 * Remove a protocol handler that was previously added to the kernel
390 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
391 * from the kernel lists and can be freed or reused once this function
4ec93edb 392 * returns.
1da177e4
LT
393 *
394 * The packet type might still be in use by receivers
395 * and must not be freed until after all the CPU's have gone
396 * through a quiescent state.
397 */
398void __dev_remove_pack(struct packet_type *pt)
399{
c07b68e8 400 struct list_head *head = ptype_head(pt);
1da177e4
LT
401 struct packet_type *pt1;
402
c07b68e8 403 spin_lock(&ptype_lock);
1da177e4
LT
404
405 list_for_each_entry(pt1, head, list) {
406 if (pt == pt1) {
407 list_del_rcu(&pt->list);
408 goto out;
409 }
410 }
411
7b6cd1ce 412 pr_warn("dev_remove_pack: %p not found\n", pt);
1da177e4 413out:
c07b68e8 414 spin_unlock(&ptype_lock);
1da177e4 415}
d1b19dff
ED
416EXPORT_SYMBOL(__dev_remove_pack);
417
1da177e4
LT
418/**
419 * dev_remove_pack - remove packet handler
420 * @pt: packet type declaration
421 *
422 * Remove a protocol handler that was previously added to the kernel
423 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
424 * from the kernel lists and can be freed or reused once this function
425 * returns.
426 *
427 * This call sleeps to guarantee that no CPU is looking at the packet
428 * type after return.
429 */
430void dev_remove_pack(struct packet_type *pt)
431{
432 __dev_remove_pack(pt);
4ec93edb 433
1da177e4
LT
434 synchronize_net();
435}
d1b19dff 436EXPORT_SYMBOL(dev_remove_pack);
1da177e4 437
62532da9
VY
438
439/**
440 * dev_add_offload - register offload handlers
441 * @po: protocol offload declaration
442 *
443 * Add protocol offload handlers to the networking stack. The passed
444 * &proto_offload is linked into kernel lists and may not be freed until
445 * it has been removed from the kernel lists.
446 *
447 * This call does not sleep therefore it can not
448 * guarantee all CPU's that are in middle of receiving packets
449 * will see the new offload handlers (until the next received packet).
450 */
451void dev_add_offload(struct packet_offload *po)
452{
453 struct list_head *head = &offload_base;
454
455 spin_lock(&offload_lock);
456 list_add_rcu(&po->list, head);
457 spin_unlock(&offload_lock);
458}
459EXPORT_SYMBOL(dev_add_offload);
460
461/**
462 * __dev_remove_offload - remove offload handler
463 * @po: packet offload declaration
464 *
465 * Remove a protocol offload handler that was previously added to the
466 * kernel offload handlers by dev_add_offload(). The passed &offload_type
467 * is removed from the kernel lists and can be freed or reused once this
468 * function returns.
469 *
470 * The packet type might still be in use by receivers
471 * and must not be freed until after all the CPU's have gone
472 * through a quiescent state.
473 */
474void __dev_remove_offload(struct packet_offload *po)
475{
476 struct list_head *head = &offload_base;
477 struct packet_offload *po1;
478
c53aa505 479 spin_lock(&offload_lock);
62532da9
VY
480
481 list_for_each_entry(po1, head, list) {
482 if (po == po1) {
483 list_del_rcu(&po->list);
484 goto out;
485 }
486 }
487
488 pr_warn("dev_remove_offload: %p not found\n", po);
489out:
c53aa505 490 spin_unlock(&offload_lock);
62532da9
VY
491}
492EXPORT_SYMBOL(__dev_remove_offload);
493
494/**
495 * dev_remove_offload - remove packet offload handler
496 * @po: packet offload declaration
497 *
498 * Remove a packet offload handler that was previously added to the kernel
499 * offload handlers by dev_add_offload(). The passed &offload_type is
500 * removed from the kernel lists and can be freed or reused once this
501 * function returns.
502 *
503 * This call sleeps to guarantee that no CPU is looking at the packet
504 * type after return.
505 */
506void dev_remove_offload(struct packet_offload *po)
507{
508 __dev_remove_offload(po);
509
510 synchronize_net();
511}
512EXPORT_SYMBOL(dev_remove_offload);
513
1da177e4
LT
514/******************************************************************************
515
516 Device Boot-time Settings Routines
517
518*******************************************************************************/
519
520/* Boot time configuration table */
521static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
522
523/**
524 * netdev_boot_setup_add - add new setup entry
525 * @name: name of the device
526 * @map: configured settings for the device
527 *
528 * Adds new setup entry to the dev_boot_setup list. The function
529 * returns 0 on error and 1 on success. This is a generic routine to
530 * all netdevices.
531 */
532static int netdev_boot_setup_add(char *name, struct ifmap *map)
533{
534 struct netdev_boot_setup *s;
535 int i;
536
537 s = dev_boot_setup;
538 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
539 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
540 memset(s[i].name, 0, sizeof(s[i].name));
93b3cff9 541 strlcpy(s[i].name, name, IFNAMSIZ);
1da177e4
LT
542 memcpy(&s[i].map, map, sizeof(s[i].map));
543 break;
544 }
545 }
546
547 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
548}
549
550/**
551 * netdev_boot_setup_check - check boot time settings
552 * @dev: the netdevice
553 *
554 * Check boot time settings for the device.
555 * The found settings are set for the device to be used
556 * later in the device probing.
557 * Returns 0 if no settings found, 1 if they are.
558 */
559int netdev_boot_setup_check(struct net_device *dev)
560{
561 struct netdev_boot_setup *s = dev_boot_setup;
562 int i;
563
564 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
565 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
93b3cff9 566 !strcmp(dev->name, s[i].name)) {
1da177e4
LT
567 dev->irq = s[i].map.irq;
568 dev->base_addr = s[i].map.base_addr;
569 dev->mem_start = s[i].map.mem_start;
570 dev->mem_end = s[i].map.mem_end;
571 return 1;
572 }
573 }
574 return 0;
575}
d1b19dff 576EXPORT_SYMBOL(netdev_boot_setup_check);
1da177e4
LT
577
578
579/**
580 * netdev_boot_base - get address from boot time settings
581 * @prefix: prefix for network device
582 * @unit: id for network device
583 *
584 * Check boot time settings for the base address of device.
585 * The found settings are set for the device to be used
586 * later in the device probing.
587 * Returns 0 if no settings found.
588 */
589unsigned long netdev_boot_base(const char *prefix, int unit)
590{
591 const struct netdev_boot_setup *s = dev_boot_setup;
592 char name[IFNAMSIZ];
593 int i;
594
595 sprintf(name, "%s%d", prefix, unit);
596
597 /*
598 * If device already registered then return base of 1
599 * to indicate not to probe for this interface
600 */
881d966b 601 if (__dev_get_by_name(&init_net, name))
1da177e4
LT
602 return 1;
603
604 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
605 if (!strcmp(name, s[i].name))
606 return s[i].map.base_addr;
607 return 0;
608}
609
610/*
611 * Saves at boot time configured settings for any netdevice.
612 */
613int __init netdev_boot_setup(char *str)
614{
615 int ints[5];
616 struct ifmap map;
617
618 str = get_options(str, ARRAY_SIZE(ints), ints);
619 if (!str || !*str)
620 return 0;
621
622 /* Save settings */
623 memset(&map, 0, sizeof(map));
624 if (ints[0] > 0)
625 map.irq = ints[1];
626 if (ints[0] > 1)
627 map.base_addr = ints[2];
628 if (ints[0] > 2)
629 map.mem_start = ints[3];
630 if (ints[0] > 3)
631 map.mem_end = ints[4];
632
633 /* Add new entry to the list */
634 return netdev_boot_setup_add(str, &map);
635}
636
637__setup("netdev=", netdev_boot_setup);
638
639/*******************************************************************************
640
641 Device Interface Subroutines
642
643*******************************************************************************/
644
645/**
646 * __dev_get_by_name - find a device by its name
c4ea43c5 647 * @net: the applicable net namespace
1da177e4
LT
648 * @name: name to find
649 *
650 * Find an interface by name. Must be called under RTNL semaphore
651 * or @dev_base_lock. If the name is found a pointer to the device
652 * is returned. If the name is not found then %NULL is returned. The
653 * reference counters are not incremented so the caller must be
654 * careful with locks.
655 */
656
881d966b 657struct net_device *__dev_get_by_name(struct net *net, const char *name)
1da177e4 658{
0bd8d536
ED
659 struct net_device *dev;
660 struct hlist_head *head = dev_name_hash(net, name);
1da177e4 661
b67bfe0d 662 hlist_for_each_entry(dev, head, name_hlist)
1da177e4
LT
663 if (!strncmp(dev->name, name, IFNAMSIZ))
664 return dev;
0bd8d536 665
1da177e4
LT
666 return NULL;
667}
d1b19dff 668EXPORT_SYMBOL(__dev_get_by_name);
1da177e4 669
72c9528b
ED
670/**
671 * dev_get_by_name_rcu - find a device by its name
672 * @net: the applicable net namespace
673 * @name: name to find
674 *
675 * Find an interface by name.
676 * If the name is found a pointer to the device is returned.
677 * If the name is not found then %NULL is returned.
678 * The reference counters are not incremented so the caller must be
679 * careful with locks. The caller must hold RCU lock.
680 */
681
682struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
683{
72c9528b
ED
684 struct net_device *dev;
685 struct hlist_head *head = dev_name_hash(net, name);
686
b67bfe0d 687 hlist_for_each_entry_rcu(dev, head, name_hlist)
72c9528b
ED
688 if (!strncmp(dev->name, name, IFNAMSIZ))
689 return dev;
690
691 return NULL;
692}
693EXPORT_SYMBOL(dev_get_by_name_rcu);
694
1da177e4
LT
695/**
696 * dev_get_by_name - find a device by its name
c4ea43c5 697 * @net: the applicable net namespace
1da177e4
LT
698 * @name: name to find
699 *
700 * Find an interface by name. This can be called from any
701 * context and does its own locking. The returned handle has
702 * the usage count incremented and the caller must use dev_put() to
703 * release it when it is no longer needed. %NULL is returned if no
704 * matching device is found.
705 */
706
881d966b 707struct net_device *dev_get_by_name(struct net *net, const char *name)
1da177e4
LT
708{
709 struct net_device *dev;
710
72c9528b
ED
711 rcu_read_lock();
712 dev = dev_get_by_name_rcu(net, name);
1da177e4
LT
713 if (dev)
714 dev_hold(dev);
72c9528b 715 rcu_read_unlock();
1da177e4
LT
716 return dev;
717}
d1b19dff 718EXPORT_SYMBOL(dev_get_by_name);
1da177e4
LT
719
720/**
721 * __dev_get_by_index - find a device by its ifindex
c4ea43c5 722 * @net: the applicable net namespace
1da177e4
LT
723 * @ifindex: index of device
724 *
725 * Search for an interface by index. Returns %NULL if the device
726 * is not found or a pointer to the device. The device has not
727 * had its reference counter increased so the caller must be careful
728 * about locking. The caller must hold either the RTNL semaphore
729 * or @dev_base_lock.
730 */
731
881d966b 732struct net_device *__dev_get_by_index(struct net *net, int ifindex)
1da177e4 733{
0bd8d536
ED
734 struct net_device *dev;
735 struct hlist_head *head = dev_index_hash(net, ifindex);
1da177e4 736
b67bfe0d 737 hlist_for_each_entry(dev, head, index_hlist)
1da177e4
LT
738 if (dev->ifindex == ifindex)
739 return dev;
0bd8d536 740
1da177e4
LT
741 return NULL;
742}
d1b19dff 743EXPORT_SYMBOL(__dev_get_by_index);
1da177e4 744
fb699dfd
ED
745/**
746 * dev_get_by_index_rcu - find a device by its ifindex
747 * @net: the applicable net namespace
748 * @ifindex: index of device
749 *
750 * Search for an interface by index. Returns %NULL if the device
751 * is not found or a pointer to the device. The device has not
752 * had its reference counter increased so the caller must be careful
753 * about locking. The caller must hold RCU lock.
754 */
755
756struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
757{
fb699dfd
ED
758 struct net_device *dev;
759 struct hlist_head *head = dev_index_hash(net, ifindex);
760
b67bfe0d 761 hlist_for_each_entry_rcu(dev, head, index_hlist)
fb699dfd
ED
762 if (dev->ifindex == ifindex)
763 return dev;
764
765 return NULL;
766}
767EXPORT_SYMBOL(dev_get_by_index_rcu);
768
1da177e4
LT
769
770/**
771 * dev_get_by_index - find a device by its ifindex
c4ea43c5 772 * @net: the applicable net namespace
1da177e4
LT
773 * @ifindex: index of device
774 *
775 * Search for an interface by index. Returns NULL if the device
776 * is not found or a pointer to the device. The device returned has
777 * had a reference added and the pointer is safe until the user calls
778 * dev_put to indicate they have finished with it.
779 */
780
881d966b 781struct net_device *dev_get_by_index(struct net *net, int ifindex)
1da177e4
LT
782{
783 struct net_device *dev;
784
fb699dfd
ED
785 rcu_read_lock();
786 dev = dev_get_by_index_rcu(net, ifindex);
1da177e4
LT
787 if (dev)
788 dev_hold(dev);
fb699dfd 789 rcu_read_unlock();
1da177e4
LT
790 return dev;
791}
d1b19dff 792EXPORT_SYMBOL(dev_get_by_index);
1da177e4
LT
793
794/**
941666c2 795 * dev_getbyhwaddr_rcu - find a device by its hardware address
c4ea43c5 796 * @net: the applicable net namespace
1da177e4
LT
797 * @type: media type of device
798 * @ha: hardware address
799 *
800 * Search for an interface by MAC address. Returns NULL if the device
c506653d
ED
801 * is not found or a pointer to the device.
802 * The caller must hold RCU or RTNL.
941666c2 803 * The returned device has not had its ref count increased
1da177e4
LT
804 * and the caller must therefore be careful about locking
805 *
1da177e4
LT
806 */
807
941666c2
ED
808struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
809 const char *ha)
1da177e4
LT
810{
811 struct net_device *dev;
812
941666c2 813 for_each_netdev_rcu(net, dev)
1da177e4
LT
814 if (dev->type == type &&
815 !memcmp(dev->dev_addr, ha, dev->addr_len))
7562f876
PE
816 return dev;
817
818 return NULL;
1da177e4 819}
941666c2 820EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
cf309e3f 821
881d966b 822struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
1da177e4
LT
823{
824 struct net_device *dev;
825
4e9cac2b 826 ASSERT_RTNL();
881d966b 827 for_each_netdev(net, dev)
4e9cac2b 828 if (dev->type == type)
7562f876
PE
829 return dev;
830
831 return NULL;
4e9cac2b 832}
4e9cac2b
PM
833EXPORT_SYMBOL(__dev_getfirstbyhwtype);
834
881d966b 835struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
4e9cac2b 836{
99fe3c39 837 struct net_device *dev, *ret = NULL;
4e9cac2b 838
99fe3c39
ED
839 rcu_read_lock();
840 for_each_netdev_rcu(net, dev)
841 if (dev->type == type) {
842 dev_hold(dev);
843 ret = dev;
844 break;
845 }
846 rcu_read_unlock();
847 return ret;
1da177e4 848}
1da177e4
LT
849EXPORT_SYMBOL(dev_getfirstbyhwtype);
850
851/**
bb69ae04 852 * dev_get_by_flags_rcu - find any device with given flags
c4ea43c5 853 * @net: the applicable net namespace
1da177e4
LT
854 * @if_flags: IFF_* values
855 * @mask: bitmask of bits in if_flags to check
856 *
857 * Search for any interface with the given flags. Returns NULL if a device
bb69ae04
ED
858 * is not found or a pointer to the device. Must be called inside
859 * rcu_read_lock(), and result refcount is unchanged.
1da177e4
LT
860 */
861
bb69ae04 862struct net_device *dev_get_by_flags_rcu(struct net *net, unsigned short if_flags,
d1b19dff 863 unsigned short mask)
1da177e4 864{
7562f876 865 struct net_device *dev, *ret;
1da177e4 866
7562f876 867 ret = NULL;
c6d14c84 868 for_each_netdev_rcu(net, dev) {
1da177e4 869 if (((dev->flags ^ if_flags) & mask) == 0) {
7562f876 870 ret = dev;
1da177e4
LT
871 break;
872 }
873 }
7562f876 874 return ret;
1da177e4 875}
bb69ae04 876EXPORT_SYMBOL(dev_get_by_flags_rcu);
1da177e4
LT
877
878/**
879 * dev_valid_name - check if name is okay for network device
880 * @name: name string
881 *
882 * Network device names need to be valid file names to
c7fa9d18
DM
883 * to allow sysfs to work. We also disallow any kind of
884 * whitespace.
1da177e4 885 */
95f050bf 886bool dev_valid_name(const char *name)
1da177e4 887{
c7fa9d18 888 if (*name == '\0')
95f050bf 889 return false;
b6fe17d6 890 if (strlen(name) >= IFNAMSIZ)
95f050bf 891 return false;
c7fa9d18 892 if (!strcmp(name, ".") || !strcmp(name, ".."))
95f050bf 893 return false;
c7fa9d18
DM
894
895 while (*name) {
896 if (*name == '/' || isspace(*name))
95f050bf 897 return false;
c7fa9d18
DM
898 name++;
899 }
95f050bf 900 return true;
1da177e4 901}
d1b19dff 902EXPORT_SYMBOL(dev_valid_name);
1da177e4
LT
903
904/**
b267b179
EB
905 * __dev_alloc_name - allocate a name for a device
906 * @net: network namespace to allocate the device name in
1da177e4 907 * @name: name format string
b267b179 908 * @buf: scratch buffer and result name string
1da177e4
LT
909 *
910 * Passed a format string - eg "lt%d" it will try and find a suitable
3041a069
SH
911 * id. It scans list of devices to build up a free map, then chooses
912 * the first empty slot. The caller must hold the dev_base or rtnl lock
913 * while allocating the name and adding the device in order to avoid
914 * duplicates.
915 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
916 * Returns the number of the unit assigned or a negative errno code.
1da177e4
LT
917 */
918
b267b179 919static int __dev_alloc_name(struct net *net, const char *name, char *buf)
1da177e4
LT
920{
921 int i = 0;
1da177e4
LT
922 const char *p;
923 const int max_netdevices = 8*PAGE_SIZE;
cfcabdcc 924 unsigned long *inuse;
1da177e4
LT
925 struct net_device *d;
926
927 p = strnchr(name, IFNAMSIZ-1, '%');
928 if (p) {
929 /*
930 * Verify the string as this thing may have come from
931 * the user. There must be either one "%d" and no other "%"
932 * characters.
933 */
934 if (p[1] != 'd' || strchr(p + 2, '%'))
935 return -EINVAL;
936
937 /* Use one page as a bit array of possible slots */
cfcabdcc 938 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
1da177e4
LT
939 if (!inuse)
940 return -ENOMEM;
941
881d966b 942 for_each_netdev(net, d) {
1da177e4
LT
943 if (!sscanf(d->name, name, &i))
944 continue;
945 if (i < 0 || i >= max_netdevices)
946 continue;
947
948 /* avoid cases where sscanf is not exact inverse of printf */
b267b179 949 snprintf(buf, IFNAMSIZ, name, i);
1da177e4
LT
950 if (!strncmp(buf, d->name, IFNAMSIZ))
951 set_bit(i, inuse);
952 }
953
954 i = find_first_zero_bit(inuse, max_netdevices);
955 free_page((unsigned long) inuse);
956 }
957
d9031024
OP
958 if (buf != name)
959 snprintf(buf, IFNAMSIZ, name, i);
b267b179 960 if (!__dev_get_by_name(net, buf))
1da177e4 961 return i;
1da177e4
LT
962
963 /* It is possible to run out of possible slots
964 * when the name is long and there isn't enough space left
965 * for the digits, or if all bits are used.
966 */
967 return -ENFILE;
968}
969
b267b179
EB
970/**
971 * dev_alloc_name - allocate a name for a device
972 * @dev: device
973 * @name: name format string
974 *
975 * Passed a format string - eg "lt%d" it will try and find a suitable
976 * id. It scans list of devices to build up a free map, then chooses
977 * the first empty slot. The caller must hold the dev_base or rtnl lock
978 * while allocating the name and adding the device in order to avoid
979 * duplicates.
980 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
981 * Returns the number of the unit assigned or a negative errno code.
982 */
983
984int dev_alloc_name(struct net_device *dev, const char *name)
985{
986 char buf[IFNAMSIZ];
987 struct net *net;
988 int ret;
989
c346dca1
YH
990 BUG_ON(!dev_net(dev));
991 net = dev_net(dev);
b267b179
EB
992 ret = __dev_alloc_name(net, name, buf);
993 if (ret >= 0)
994 strlcpy(dev->name, buf, IFNAMSIZ);
995 return ret;
996}
d1b19dff 997EXPORT_SYMBOL(dev_alloc_name);
b267b179 998
828de4f6
G
999static int dev_alloc_name_ns(struct net *net,
1000 struct net_device *dev,
1001 const char *name)
d9031024 1002{
828de4f6
G
1003 char buf[IFNAMSIZ];
1004 int ret;
8ce6cebc 1005
828de4f6
G
1006 ret = __dev_alloc_name(net, name, buf);
1007 if (ret >= 0)
1008 strlcpy(dev->name, buf, IFNAMSIZ);
1009 return ret;
1010}
1011
1012static int dev_get_valid_name(struct net *net,
1013 struct net_device *dev,
1014 const char *name)
1015{
1016 BUG_ON(!net);
8ce6cebc 1017
d9031024
OP
1018 if (!dev_valid_name(name))
1019 return -EINVAL;
1020
1c5cae81 1021 if (strchr(name, '%'))
828de4f6 1022 return dev_alloc_name_ns(net, dev, name);
d9031024
OP
1023 else if (__dev_get_by_name(net, name))
1024 return -EEXIST;
8ce6cebc
DL
1025 else if (dev->name != name)
1026 strlcpy(dev->name, name, IFNAMSIZ);
d9031024
OP
1027
1028 return 0;
1029}
1da177e4
LT
1030
1031/**
1032 * dev_change_name - change name of a device
1033 * @dev: device
1034 * @newname: name (or format string) must be at least IFNAMSIZ
1035 *
1036 * Change name of a device, can pass format strings "eth%d".
1037 * for wildcarding.
1038 */
cf04a4c7 1039int dev_change_name(struct net_device *dev, const char *newname)
1da177e4 1040{
fcc5a03a 1041 char oldname[IFNAMSIZ];
1da177e4 1042 int err = 0;
fcc5a03a 1043 int ret;
881d966b 1044 struct net *net;
1da177e4
LT
1045
1046 ASSERT_RTNL();
c346dca1 1047 BUG_ON(!dev_net(dev));
1da177e4 1048
c346dca1 1049 net = dev_net(dev);
1da177e4
LT
1050 if (dev->flags & IFF_UP)
1051 return -EBUSY;
1052
30e6c9fa 1053 write_seqcount_begin(&devnet_rename_seq);
c91f6df2
BH
1054
1055 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
30e6c9fa 1056 write_seqcount_end(&devnet_rename_seq);
c8d90dca 1057 return 0;
c91f6df2 1058 }
c8d90dca 1059
fcc5a03a
HX
1060 memcpy(oldname, dev->name, IFNAMSIZ);
1061
828de4f6 1062 err = dev_get_valid_name(net, dev, newname);
c91f6df2 1063 if (err < 0) {
30e6c9fa 1064 write_seqcount_end(&devnet_rename_seq);
d9031024 1065 return err;
c91f6df2 1066 }
1da177e4 1067
fcc5a03a 1068rollback:
a1b3f594
EB
1069 ret = device_rename(&dev->dev, dev->name);
1070 if (ret) {
1071 memcpy(dev->name, oldname, IFNAMSIZ);
30e6c9fa 1072 write_seqcount_end(&devnet_rename_seq);
a1b3f594 1073 return ret;
dcc99773 1074 }
7f988eab 1075
30e6c9fa 1076 write_seqcount_end(&devnet_rename_seq);
c91f6df2 1077
7f988eab 1078 write_lock_bh(&dev_base_lock);
372b2312 1079 hlist_del_rcu(&dev->name_hlist);
72c9528b
ED
1080 write_unlock_bh(&dev_base_lock);
1081
1082 synchronize_rcu();
1083
1084 write_lock_bh(&dev_base_lock);
1085 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
7f988eab
HX
1086 write_unlock_bh(&dev_base_lock);
1087
056925ab 1088 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
fcc5a03a
HX
1089 ret = notifier_to_errno(ret);
1090
1091 if (ret) {
91e9c07b
ED
1092 /* err >= 0 after dev_alloc_name() or stores the first errno */
1093 if (err >= 0) {
fcc5a03a 1094 err = ret;
30e6c9fa 1095 write_seqcount_begin(&devnet_rename_seq);
fcc5a03a
HX
1096 memcpy(dev->name, oldname, IFNAMSIZ);
1097 goto rollback;
91e9c07b 1098 } else {
7b6cd1ce 1099 pr_err("%s: name change rollback failed: %d\n",
91e9c07b 1100 dev->name, ret);
fcc5a03a
HX
1101 }
1102 }
1da177e4
LT
1103
1104 return err;
1105}
1106
0b815a1a
SH
1107/**
1108 * dev_set_alias - change ifalias of a device
1109 * @dev: device
1110 * @alias: name up to IFALIASZ
f0db275a 1111 * @len: limit of bytes to copy from info
0b815a1a
SH
1112 *
1113 * Set ifalias for a device,
1114 */
1115int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1116{
7364e445
AK
1117 char *new_ifalias;
1118
0b815a1a
SH
1119 ASSERT_RTNL();
1120
1121 if (len >= IFALIASZ)
1122 return -EINVAL;
1123
96ca4a2c 1124 if (!len) {
388dfc2d
SK
1125 kfree(dev->ifalias);
1126 dev->ifalias = NULL;
96ca4a2c
OH
1127 return 0;
1128 }
1129
7364e445
AK
1130 new_ifalias = krealloc(dev->ifalias, len + 1, GFP_KERNEL);
1131 if (!new_ifalias)
0b815a1a 1132 return -ENOMEM;
7364e445 1133 dev->ifalias = new_ifalias;
0b815a1a
SH
1134
1135 strlcpy(dev->ifalias, alias, len+1);
1136 return len;
1137}
1138
1139
d8a33ac4 1140/**
3041a069 1141 * netdev_features_change - device changes features
d8a33ac4
SH
1142 * @dev: device to cause notification
1143 *
1144 * Called to indicate a device has changed features.
1145 */
1146void netdev_features_change(struct net_device *dev)
1147{
056925ab 1148 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
d8a33ac4
SH
1149}
1150EXPORT_SYMBOL(netdev_features_change);
1151
1da177e4
LT
1152/**
1153 * netdev_state_change - device changes state
1154 * @dev: device to cause notification
1155 *
1156 * Called to indicate a device has changed state. This function calls
1157 * the notifier chains for netdev_chain and sends a NEWLINK message
1158 * to the routing socket.
1159 */
1160void netdev_state_change(struct net_device *dev)
1161{
1162 if (dev->flags & IFF_UP) {
056925ab 1163 call_netdevice_notifiers(NETDEV_CHANGE, dev);
1da177e4
LT
1164 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
1165 }
1166}
d1b19dff 1167EXPORT_SYMBOL(netdev_state_change);
1da177e4 1168
ee89bab1
AW
1169/**
1170 * netdev_notify_peers - notify network peers about existence of @dev
1171 * @dev: network device
1172 *
1173 * Generate traffic such that interested network peers are aware of
1174 * @dev, such as by generating a gratuitous ARP. This may be used when
1175 * a device wants to inform the rest of the network about some sort of
1176 * reconfiguration such as a failover event or virtual machine
1177 * migration.
1178 */
1179void netdev_notify_peers(struct net_device *dev)
c1da4ac7 1180{
ee89bab1
AW
1181 rtnl_lock();
1182 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
1183 rtnl_unlock();
c1da4ac7 1184}
ee89bab1 1185EXPORT_SYMBOL(netdev_notify_peers);
c1da4ac7 1186
bd380811 1187static int __dev_open(struct net_device *dev)
1da177e4 1188{
d314774c 1189 const struct net_device_ops *ops = dev->netdev_ops;
3b8bcfd5 1190 int ret;
1da177e4 1191
e46b66bc
BH
1192 ASSERT_RTNL();
1193
1da177e4
LT
1194 if (!netif_device_present(dev))
1195 return -ENODEV;
1196
ca99ca14
NH
1197 /* Block netpoll from trying to do any rx path servicing.
1198 * If we don't do this there is a chance ndo_poll_controller
1199 * or ndo_poll may be running while we open the device
1200 */
da6e378b 1201 netpoll_rx_disable(dev);
ca99ca14 1202
3b8bcfd5
JB
1203 ret = call_netdevice_notifiers(NETDEV_PRE_UP, dev);
1204 ret = notifier_to_errno(ret);
1205 if (ret)
1206 return ret;
1207
1da177e4 1208 set_bit(__LINK_STATE_START, &dev->state);
bada339b 1209
d314774c
SH
1210 if (ops->ndo_validate_addr)
1211 ret = ops->ndo_validate_addr(dev);
bada339b 1212
d314774c
SH
1213 if (!ret && ops->ndo_open)
1214 ret = ops->ndo_open(dev);
1da177e4 1215
ca99ca14
NH
1216 netpoll_rx_enable(dev);
1217
bada339b
JG
1218 if (ret)
1219 clear_bit(__LINK_STATE_START, &dev->state);
1220 else {
1da177e4 1221 dev->flags |= IFF_UP;
b4bd07c2 1222 net_dmaengine_get();
4417da66 1223 dev_set_rx_mode(dev);
1da177e4 1224 dev_activate(dev);
7bf23575 1225 add_device_randomness(dev->dev_addr, dev->addr_len);
1da177e4 1226 }
bada339b 1227
1da177e4
LT
1228 return ret;
1229}
1230
1231/**
bd380811
PM
1232 * dev_open - prepare an interface for use.
1233 * @dev: device to open
1da177e4 1234 *
bd380811
PM
1235 * Takes a device from down to up state. The device's private open
1236 * function is invoked and then the multicast lists are loaded. Finally
1237 * the device is moved into the up state and a %NETDEV_UP message is
1238 * sent to the netdev notifier chain.
1239 *
1240 * Calling this function on an active interface is a nop. On a failure
1241 * a negative errno code is returned.
1da177e4 1242 */
bd380811
PM
1243int dev_open(struct net_device *dev)
1244{
1245 int ret;
1246
bd380811
PM
1247 if (dev->flags & IFF_UP)
1248 return 0;
1249
bd380811
PM
1250 ret = __dev_open(dev);
1251 if (ret < 0)
1252 return ret;
1253
bd380811
PM
1254 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
1255 call_netdevice_notifiers(NETDEV_UP, dev);
1256
1257 return ret;
1258}
1259EXPORT_SYMBOL(dev_open);
1260
44345724 1261static int __dev_close_many(struct list_head *head)
1da177e4 1262{
44345724 1263 struct net_device *dev;
e46b66bc 1264
bd380811 1265 ASSERT_RTNL();
9d5010db
DM
1266 might_sleep();
1267
44345724 1268 list_for_each_entry(dev, head, unreg_list) {
44345724 1269 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
1da177e4 1270
44345724 1271 clear_bit(__LINK_STATE_START, &dev->state);
1da177e4 1272
44345724
OP
1273 /* Synchronize to scheduled poll. We cannot touch poll list, it
1274 * can be even on different cpu. So just clear netif_running().
1275 *
1276 * dev->stop() will invoke napi_disable() on all of it's
1277 * napi_struct instances on this device.
1278 */
1279 smp_mb__after_clear_bit(); /* Commit netif_running(). */
1280 }
1da177e4 1281
44345724 1282 dev_deactivate_many(head);
d8b2a4d2 1283
44345724
OP
1284 list_for_each_entry(dev, head, unreg_list) {
1285 const struct net_device_ops *ops = dev->netdev_ops;
1da177e4 1286
44345724
OP
1287 /*
1288 * Call the device specific close. This cannot fail.
1289 * Only if device is UP
1290 *
1291 * We allow it to be called even after a DETACH hot-plug
1292 * event.
1293 */
1294 if (ops->ndo_stop)
1295 ops->ndo_stop(dev);
1296
44345724 1297 dev->flags &= ~IFF_UP;
44345724
OP
1298 net_dmaengine_put();
1299 }
1300
1301 return 0;
1302}
1303
1304static int __dev_close(struct net_device *dev)
1305{
f87e6f47 1306 int retval;
44345724
OP
1307 LIST_HEAD(single);
1308
ca99ca14 1309 /* Temporarily disable netpoll until the interface is down */
da6e378b 1310 netpoll_rx_disable(dev);
ca99ca14 1311
44345724 1312 list_add(&dev->unreg_list, &single);
f87e6f47
LT
1313 retval = __dev_close_many(&single);
1314 list_del(&single);
ca99ca14
NH
1315
1316 netpoll_rx_enable(dev);
f87e6f47 1317 return retval;
44345724
OP
1318}
1319
3fbd8758 1320static int dev_close_many(struct list_head *head)
44345724
OP
1321{
1322 struct net_device *dev, *tmp;
1323 LIST_HEAD(tmp_list);
1da177e4 1324
44345724
OP
1325 list_for_each_entry_safe(dev, tmp, head, unreg_list)
1326 if (!(dev->flags & IFF_UP))
1327 list_move(&dev->unreg_list, &tmp_list);
1328
1329 __dev_close_many(head);
1da177e4 1330
44345724
OP
1331 list_for_each_entry(dev, head, unreg_list) {
1332 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
1333 call_netdevice_notifiers(NETDEV_DOWN, dev);
1334 }
bd380811 1335
44345724
OP
1336 /* rollback_registered_many needs the complete original list */
1337 list_splice(&tmp_list, head);
bd380811
PM
1338 return 0;
1339}
1340
1341/**
1342 * dev_close - shutdown an interface.
1343 * @dev: device to shutdown
1344 *
1345 * This function moves an active device into down state. A
1346 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1347 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1348 * chain.
1349 */
1350int dev_close(struct net_device *dev)
1351{
e14a5993
ED
1352 if (dev->flags & IFF_UP) {
1353 LIST_HEAD(single);
1da177e4 1354
ca99ca14 1355 /* Block netpoll rx while the interface is going down */
da6e378b 1356 netpoll_rx_disable(dev);
ca99ca14 1357
e14a5993
ED
1358 list_add(&dev->unreg_list, &single);
1359 dev_close_many(&single);
1360 list_del(&single);
ca99ca14
NH
1361
1362 netpoll_rx_enable(dev);
e14a5993 1363 }
da6e378b 1364 return 0;
1da177e4 1365}
d1b19dff 1366EXPORT_SYMBOL(dev_close);
1da177e4
LT
1367
1368
0187bdfb
BH
1369/**
1370 * dev_disable_lro - disable Large Receive Offload on a device
1371 * @dev: device
1372 *
1373 * Disable Large Receive Offload (LRO) on a net device. Must be
1374 * called under RTNL. This is needed if received packets may be
1375 * forwarded to another interface.
1376 */
1377void dev_disable_lro(struct net_device *dev)
1378{
f11970e3
NH
1379 /*
1380 * If we're trying to disable lro on a vlan device
1381 * use the underlying physical device instead
1382 */
1383 if (is_vlan_dev(dev))
1384 dev = vlan_dev_real_dev(dev);
1385
bc5787c6
MM
1386 dev->wanted_features &= ~NETIF_F_LRO;
1387 netdev_update_features(dev);
27660515 1388
22d5969f
MM
1389 if (unlikely(dev->features & NETIF_F_LRO))
1390 netdev_WARN(dev, "failed to disable LRO!\n");
0187bdfb
BH
1391}
1392EXPORT_SYMBOL(dev_disable_lro);
1393
351638e7
JP
1394static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1395 struct net_device *dev)
1396{
1397 struct netdev_notifier_info info;
1398
1399 netdev_notifier_info_init(&info, dev);
1400 return nb->notifier_call(nb, val, &info);
1401}
0187bdfb 1402
881d966b
EB
1403static int dev_boot_phase = 1;
1404
1da177e4
LT
1405/**
1406 * register_netdevice_notifier - register a network notifier block
1407 * @nb: notifier
1408 *
1409 * Register a notifier to be called when network device events occur.
1410 * The notifier passed is linked into the kernel structures and must
1411 * not be reused until it has been unregistered. A negative errno code
1412 * is returned on a failure.
1413 *
1414 * When registered all registration and up events are replayed
4ec93edb 1415 * to the new notifier to allow device to have a race free
1da177e4
LT
1416 * view of the network device list.
1417 */
1418
1419int register_netdevice_notifier(struct notifier_block *nb)
1420{
1421 struct net_device *dev;
fcc5a03a 1422 struct net_device *last;
881d966b 1423 struct net *net;
1da177e4
LT
1424 int err;
1425
1426 rtnl_lock();
f07d5b94 1427 err = raw_notifier_chain_register(&netdev_chain, nb);
fcc5a03a
HX
1428 if (err)
1429 goto unlock;
881d966b
EB
1430 if (dev_boot_phase)
1431 goto unlock;
1432 for_each_net(net) {
1433 for_each_netdev(net, dev) {
351638e7 1434 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
881d966b
EB
1435 err = notifier_to_errno(err);
1436 if (err)
1437 goto rollback;
1438
1439 if (!(dev->flags & IFF_UP))
1440 continue;
1da177e4 1441
351638e7 1442 call_netdevice_notifier(nb, NETDEV_UP, dev);
881d966b 1443 }
1da177e4 1444 }
fcc5a03a
HX
1445
1446unlock:
1da177e4
LT
1447 rtnl_unlock();
1448 return err;
fcc5a03a
HX
1449
1450rollback:
1451 last = dev;
881d966b
EB
1452 for_each_net(net) {
1453 for_each_netdev(net, dev) {
1454 if (dev == last)
8f891489 1455 goto outroll;
fcc5a03a 1456
881d966b 1457 if (dev->flags & IFF_UP) {
351638e7
JP
1458 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1459 dev);
1460 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
881d966b 1461 }
351638e7 1462 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
fcc5a03a 1463 }
fcc5a03a 1464 }
c67625a1 1465
8f891489 1466outroll:
c67625a1 1467 raw_notifier_chain_unregister(&netdev_chain, nb);
fcc5a03a 1468 goto unlock;
1da177e4 1469}
d1b19dff 1470EXPORT_SYMBOL(register_netdevice_notifier);
1da177e4
LT
1471
1472/**
1473 * unregister_netdevice_notifier - unregister a network notifier block
1474 * @nb: notifier
1475 *
1476 * Unregister a notifier previously registered by
1477 * register_netdevice_notifier(). The notifier is unlinked into the
1478 * kernel structures and may then be reused. A negative errno code
1479 * is returned on a failure.
7d3d43da
EB
1480 *
1481 * After unregistering unregister and down device events are synthesized
1482 * for all devices on the device list to the removed notifier to remove
1483 * the need for special case cleanup code.
1da177e4
LT
1484 */
1485
1486int unregister_netdevice_notifier(struct notifier_block *nb)
1487{
7d3d43da
EB
1488 struct net_device *dev;
1489 struct net *net;
9f514950
HX
1490 int err;
1491
1492 rtnl_lock();
f07d5b94 1493 err = raw_notifier_chain_unregister(&netdev_chain, nb);
7d3d43da
EB
1494 if (err)
1495 goto unlock;
1496
1497 for_each_net(net) {
1498 for_each_netdev(net, dev) {
1499 if (dev->flags & IFF_UP) {
351638e7
JP
1500 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1501 dev);
1502 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
7d3d43da 1503 }
351638e7 1504 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
7d3d43da
EB
1505 }
1506 }
1507unlock:
9f514950
HX
1508 rtnl_unlock();
1509 return err;
1da177e4 1510}
d1b19dff 1511EXPORT_SYMBOL(unregister_netdevice_notifier);
1da177e4 1512
351638e7
JP
1513/**
1514 * call_netdevice_notifiers_info - call all network notifier blocks
1515 * @val: value passed unmodified to notifier function
1516 * @dev: net_device pointer passed unmodified to notifier function
1517 * @info: notifier information data
1518 *
1519 * Call all network notifier blocks. Parameters and return value
1520 * are as for raw_notifier_call_chain().
1521 */
1522
1523int call_netdevice_notifiers_info(unsigned long val, struct net_device *dev,
1524 struct netdev_notifier_info *info)
1525{
1526 ASSERT_RTNL();
1527 netdev_notifier_info_init(info, dev);
1528 return raw_notifier_call_chain(&netdev_chain, val, info);
1529}
1530EXPORT_SYMBOL(call_netdevice_notifiers_info);
1531
1da177e4
LT
1532/**
1533 * call_netdevice_notifiers - call all network notifier blocks
1534 * @val: value passed unmodified to notifier function
c4ea43c5 1535 * @dev: net_device pointer passed unmodified to notifier function
1da177e4
LT
1536 *
1537 * Call all network notifier blocks. Parameters and return value
f07d5b94 1538 * are as for raw_notifier_call_chain().
1da177e4
LT
1539 */
1540
ad7379d4 1541int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
1da177e4 1542{
351638e7
JP
1543 struct netdev_notifier_info info;
1544
1545 return call_netdevice_notifiers_info(val, dev, &info);
1da177e4 1546}
edf947f1 1547EXPORT_SYMBOL(call_netdevice_notifiers);
1da177e4 1548
c5905afb 1549static struct static_key netstamp_needed __read_mostly;
b90e5794 1550#ifdef HAVE_JUMP_LABEL
c5905afb 1551/* We are not allowed to call static_key_slow_dec() from irq context
b90e5794 1552 * If net_disable_timestamp() is called from irq context, defer the
c5905afb 1553 * static_key_slow_dec() calls.
b90e5794
ED
1554 */
1555static atomic_t netstamp_needed_deferred;
1556#endif
1da177e4
LT
1557
1558void net_enable_timestamp(void)
1559{
b90e5794
ED
1560#ifdef HAVE_JUMP_LABEL
1561 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
1562
1563 if (deferred) {
1564 while (--deferred)
c5905afb 1565 static_key_slow_dec(&netstamp_needed);
b90e5794
ED
1566 return;
1567 }
1568#endif
c5905afb 1569 static_key_slow_inc(&netstamp_needed);
1da177e4 1570}
d1b19dff 1571EXPORT_SYMBOL(net_enable_timestamp);
1da177e4
LT
1572
1573void net_disable_timestamp(void)
1574{
b90e5794
ED
1575#ifdef HAVE_JUMP_LABEL
1576 if (in_interrupt()) {
1577 atomic_inc(&netstamp_needed_deferred);
1578 return;
1579 }
1580#endif
c5905afb 1581 static_key_slow_dec(&netstamp_needed);
1da177e4 1582}
d1b19dff 1583EXPORT_SYMBOL(net_disable_timestamp);
1da177e4 1584
3b098e2d 1585static inline void net_timestamp_set(struct sk_buff *skb)
1da177e4 1586{
588f0330 1587 skb->tstamp.tv64 = 0;
c5905afb 1588 if (static_key_false(&netstamp_needed))
a61bbcf2 1589 __net_timestamp(skb);
1da177e4
LT
1590}
1591
588f0330 1592#define net_timestamp_check(COND, SKB) \
c5905afb 1593 if (static_key_false(&netstamp_needed)) { \
588f0330
ED
1594 if ((COND) && !(SKB)->tstamp.tv64) \
1595 __net_timestamp(SKB); \
1596 } \
3b098e2d 1597
79b569f0
DL
1598static inline bool is_skb_forwardable(struct net_device *dev,
1599 struct sk_buff *skb)
1600{
1601 unsigned int len;
1602
1603 if (!(dev->flags & IFF_UP))
1604 return false;
1605
1606 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
1607 if (skb->len <= len)
1608 return true;
1609
1610 /* if TSO is enabled, we don't care about the length as the packet
1611 * could be forwarded without being segmented before
1612 */
1613 if (skb_is_gso(skb))
1614 return true;
1615
1616 return false;
1617}
1618
44540960
AB
1619/**
1620 * dev_forward_skb - loopback an skb to another netif
1621 *
1622 * @dev: destination network device
1623 * @skb: buffer to forward
1624 *
1625 * return values:
1626 * NET_RX_SUCCESS (no congestion)
6ec82562 1627 * NET_RX_DROP (packet was dropped, but freed)
44540960
AB
1628 *
1629 * dev_forward_skb can be used for injecting an skb from the
1630 * start_xmit function of one device into the receive queue
1631 * of another device.
1632 *
1633 * The receiving device may be in another namespace, so
1634 * we have to clear all information in the skb that could
1635 * impact namespace isolation.
1636 */
1637int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1638{
48c83012
MT
1639 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
1640 if (skb_copy_ubufs(skb, GFP_ATOMIC)) {
1641 atomic_long_inc(&dev->rx_dropped);
1642 kfree_skb(skb);
1643 return NET_RX_DROP;
1644 }
1645 }
1646
44540960
AB
1647 skb_orphan(skb);
1648
79b569f0 1649 if (unlikely(!is_skb_forwardable(dev, skb))) {
caf586e5 1650 atomic_long_inc(&dev->rx_dropped);
6ec82562 1651 kfree_skb(skb);
44540960 1652 return NET_RX_DROP;
6ec82562 1653 }
3b9785c6 1654 skb->skb_iif = 0;
59b9997b 1655 skb_dst_drop(skb);
44540960
AB
1656 skb->tstamp.tv64 = 0;
1657 skb->pkt_type = PACKET_HOST;
1658 skb->protocol = eth_type_trans(skb, dev);
59b9997b
DM
1659 skb->mark = 0;
1660 secpath_reset(skb);
1661 nf_reset(skb);
124dff01 1662 nf_reset_trace(skb);
44540960
AB
1663 return netif_rx(skb);
1664}
1665EXPORT_SYMBOL_GPL(dev_forward_skb);
1666
71d9dec2
CG
1667static inline int deliver_skb(struct sk_buff *skb,
1668 struct packet_type *pt_prev,
1669 struct net_device *orig_dev)
1670{
1080e512
MT
1671 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
1672 return -ENOMEM;
71d9dec2
CG
1673 atomic_inc(&skb->users);
1674 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1675}
1676
c0de08d0
EL
1677static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
1678{
a3d744e9 1679 if (!ptype->af_packet_priv || !skb->sk)
c0de08d0
EL
1680 return false;
1681
1682 if (ptype->id_match)
1683 return ptype->id_match(ptype, skb->sk);
1684 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
1685 return true;
1686
1687 return false;
1688}
1689
1da177e4
LT
1690/*
1691 * Support routine. Sends outgoing frames to any network
1692 * taps currently in use.
1693 */
1694
f6a78bfc 1695static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
1da177e4
LT
1696{
1697 struct packet_type *ptype;
71d9dec2
CG
1698 struct sk_buff *skb2 = NULL;
1699 struct packet_type *pt_prev = NULL;
a61bbcf2 1700
1da177e4
LT
1701 rcu_read_lock();
1702 list_for_each_entry_rcu(ptype, &ptype_all, list) {
1703 /* Never send packets back to the socket
1704 * they originated from - MvS (miquels@drinkel.ow.org)
1705 */
1706 if ((ptype->dev == dev || !ptype->dev) &&
c0de08d0 1707 (!skb_loop_sk(ptype, skb))) {
71d9dec2
CG
1708 if (pt_prev) {
1709 deliver_skb(skb2, pt_prev, skb->dev);
1710 pt_prev = ptype;
1711 continue;
1712 }
1713
1714 skb2 = skb_clone(skb, GFP_ATOMIC);
1da177e4
LT
1715 if (!skb2)
1716 break;
1717
70978182
ED
1718 net_timestamp_set(skb2);
1719
1da177e4
LT
1720 /* skb->nh should be correctly
1721 set by sender, so that the second statement is
1722 just protection against buggy protocols.
1723 */
459a98ed 1724 skb_reset_mac_header(skb2);
1da177e4 1725
d56f90a7 1726 if (skb_network_header(skb2) < skb2->data ||
ced14f68 1727 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
e87cc472
JP
1728 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
1729 ntohs(skb2->protocol),
1730 dev->name);
c1d2bbe1 1731 skb_reset_network_header(skb2);
1da177e4
LT
1732 }
1733
b0e380b1 1734 skb2->transport_header = skb2->network_header;
1da177e4 1735 skb2->pkt_type = PACKET_OUTGOING;
71d9dec2 1736 pt_prev = ptype;
1da177e4
LT
1737 }
1738 }
71d9dec2
CG
1739 if (pt_prev)
1740 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
1da177e4
LT
1741 rcu_read_unlock();
1742}
1743
2c53040f
BH
1744/**
1745 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
4f57c087
JF
1746 * @dev: Network device
1747 * @txq: number of queues available
1748 *
1749 * If real_num_tx_queues is changed the tc mappings may no longer be
1750 * valid. To resolve this verify the tc mapping remains valid and if
1751 * not NULL the mapping. With no priorities mapping to this
1752 * offset/count pair it will no longer be used. In the worst case TC0
1753 * is invalid nothing can be done so disable priority mappings. If is
1754 * expected that drivers will fix this mapping if they can before
1755 * calling netif_set_real_num_tx_queues.
1756 */
bb134d22 1757static void netif_setup_tc(struct net_device *dev, unsigned int txq)
4f57c087
JF
1758{
1759 int i;
1760 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
1761
1762 /* If TC0 is invalidated disable TC mapping */
1763 if (tc->offset + tc->count > txq) {
7b6cd1ce 1764 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
4f57c087
JF
1765 dev->num_tc = 0;
1766 return;
1767 }
1768
1769 /* Invalidated prio to tc mappings set to TC0 */
1770 for (i = 1; i < TC_BITMASK + 1; i++) {
1771 int q = netdev_get_prio_tc_map(dev, i);
1772
1773 tc = &dev->tc_to_txq[q];
1774 if (tc->offset + tc->count > txq) {
7b6cd1ce
JP
1775 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
1776 i, q);
4f57c087
JF
1777 netdev_set_prio_tc_map(dev, i, 0);
1778 }
1779 }
1780}
1781
537c00de
AD
1782#ifdef CONFIG_XPS
1783static DEFINE_MUTEX(xps_map_mutex);
1784#define xmap_dereference(P) \
1785 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
1786
10cdc3f3
AD
1787static struct xps_map *remove_xps_queue(struct xps_dev_maps *dev_maps,
1788 int cpu, u16 index)
537c00de 1789{
10cdc3f3
AD
1790 struct xps_map *map = NULL;
1791 int pos;
537c00de 1792
10cdc3f3
AD
1793 if (dev_maps)
1794 map = xmap_dereference(dev_maps->cpu_map[cpu]);
537c00de 1795
10cdc3f3
AD
1796 for (pos = 0; map && pos < map->len; pos++) {
1797 if (map->queues[pos] == index) {
537c00de
AD
1798 if (map->len > 1) {
1799 map->queues[pos] = map->queues[--map->len];
1800 } else {
10cdc3f3 1801 RCU_INIT_POINTER(dev_maps->cpu_map[cpu], NULL);
537c00de
AD
1802 kfree_rcu(map, rcu);
1803 map = NULL;
1804 }
10cdc3f3 1805 break;
537c00de 1806 }
537c00de
AD
1807 }
1808
10cdc3f3
AD
1809 return map;
1810}
1811
024e9679 1812static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
10cdc3f3
AD
1813{
1814 struct xps_dev_maps *dev_maps;
024e9679 1815 int cpu, i;
10cdc3f3
AD
1816 bool active = false;
1817
1818 mutex_lock(&xps_map_mutex);
1819 dev_maps = xmap_dereference(dev->xps_maps);
1820
1821 if (!dev_maps)
1822 goto out_no_maps;
1823
1824 for_each_possible_cpu(cpu) {
024e9679
AD
1825 for (i = index; i < dev->num_tx_queues; i++) {
1826 if (!remove_xps_queue(dev_maps, cpu, i))
1827 break;
1828 }
1829 if (i == dev->num_tx_queues)
10cdc3f3
AD
1830 active = true;
1831 }
1832
1833 if (!active) {
537c00de
AD
1834 RCU_INIT_POINTER(dev->xps_maps, NULL);
1835 kfree_rcu(dev_maps, rcu);
1836 }
1837
024e9679
AD
1838 for (i = index; i < dev->num_tx_queues; i++)
1839 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, i),
1840 NUMA_NO_NODE);
1841
537c00de
AD
1842out_no_maps:
1843 mutex_unlock(&xps_map_mutex);
1844}
1845
01c5f864
AD
1846static struct xps_map *expand_xps_map(struct xps_map *map,
1847 int cpu, u16 index)
1848{
1849 struct xps_map *new_map;
1850 int alloc_len = XPS_MIN_MAP_ALLOC;
1851 int i, pos;
1852
1853 for (pos = 0; map && pos < map->len; pos++) {
1854 if (map->queues[pos] != index)
1855 continue;
1856 return map;
1857 }
1858
1859 /* Need to add queue to this CPU's existing map */
1860 if (map) {
1861 if (pos < map->alloc_len)
1862 return map;
1863
1864 alloc_len = map->alloc_len * 2;
1865 }
1866
1867 /* Need to allocate new map to store queue on this CPU's map */
1868 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
1869 cpu_to_node(cpu));
1870 if (!new_map)
1871 return NULL;
1872
1873 for (i = 0; i < pos; i++)
1874 new_map->queues[i] = map->queues[i];
1875 new_map->alloc_len = alloc_len;
1876 new_map->len = pos;
1877
1878 return new_map;
1879}
1880
537c00de
AD
1881int netif_set_xps_queue(struct net_device *dev, struct cpumask *mask, u16 index)
1882{
01c5f864 1883 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
537c00de 1884 struct xps_map *map, *new_map;
537c00de 1885 int maps_sz = max_t(unsigned int, XPS_DEV_MAPS_SIZE, L1_CACHE_BYTES);
01c5f864
AD
1886 int cpu, numa_node_id = -2;
1887 bool active = false;
537c00de
AD
1888
1889 mutex_lock(&xps_map_mutex);
1890
1891 dev_maps = xmap_dereference(dev->xps_maps);
1892
01c5f864
AD
1893 /* allocate memory for queue storage */
1894 for_each_online_cpu(cpu) {
1895 if (!cpumask_test_cpu(cpu, mask))
1896 continue;
1897
1898 if (!new_dev_maps)
1899 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
2bb60cb9
AD
1900 if (!new_dev_maps) {
1901 mutex_unlock(&xps_map_mutex);
01c5f864 1902 return -ENOMEM;
2bb60cb9 1903 }
01c5f864
AD
1904
1905 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
1906 NULL;
1907
1908 map = expand_xps_map(map, cpu, index);
1909 if (!map)
1910 goto error;
1911
1912 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
1913 }
1914
1915 if (!new_dev_maps)
1916 goto out_no_new_maps;
1917
537c00de 1918 for_each_possible_cpu(cpu) {
01c5f864
AD
1919 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu)) {
1920 /* add queue to CPU maps */
1921 int pos = 0;
1922
1923 map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
1924 while ((pos < map->len) && (map->queues[pos] != index))
1925 pos++;
1926
1927 if (pos == map->len)
1928 map->queues[map->len++] = index;
537c00de 1929#ifdef CONFIG_NUMA
537c00de
AD
1930 if (numa_node_id == -2)
1931 numa_node_id = cpu_to_node(cpu);
1932 else if (numa_node_id != cpu_to_node(cpu))
1933 numa_node_id = -1;
537c00de 1934#endif
01c5f864
AD
1935 } else if (dev_maps) {
1936 /* fill in the new device map from the old device map */
1937 map = xmap_dereference(dev_maps->cpu_map[cpu]);
1938 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
537c00de 1939 }
01c5f864 1940
537c00de
AD
1941 }
1942
01c5f864
AD
1943 rcu_assign_pointer(dev->xps_maps, new_dev_maps);
1944
537c00de 1945 /* Cleanup old maps */
01c5f864
AD
1946 if (dev_maps) {
1947 for_each_possible_cpu(cpu) {
1948 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
1949 map = xmap_dereference(dev_maps->cpu_map[cpu]);
1950 if (map && map != new_map)
1951 kfree_rcu(map, rcu);
1952 }
537c00de 1953
01c5f864 1954 kfree_rcu(dev_maps, rcu);
537c00de
AD
1955 }
1956
01c5f864
AD
1957 dev_maps = new_dev_maps;
1958 active = true;
537c00de 1959
01c5f864
AD
1960out_no_new_maps:
1961 /* update Tx queue numa node */
537c00de
AD
1962 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
1963 (numa_node_id >= 0) ? numa_node_id :
1964 NUMA_NO_NODE);
1965
01c5f864
AD
1966 if (!dev_maps)
1967 goto out_no_maps;
1968
1969 /* removes queue from unused CPUs */
1970 for_each_possible_cpu(cpu) {
1971 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu))
1972 continue;
1973
1974 if (remove_xps_queue(dev_maps, cpu, index))
1975 active = true;
1976 }
1977
1978 /* free map if not active */
1979 if (!active) {
1980 RCU_INIT_POINTER(dev->xps_maps, NULL);
1981 kfree_rcu(dev_maps, rcu);
1982 }
1983
1984out_no_maps:
537c00de
AD
1985 mutex_unlock(&xps_map_mutex);
1986
1987 return 0;
1988error:
01c5f864
AD
1989 /* remove any maps that we added */
1990 for_each_possible_cpu(cpu) {
1991 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
1992 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
1993 NULL;
1994 if (new_map && new_map != map)
1995 kfree(new_map);
1996 }
1997
537c00de
AD
1998 mutex_unlock(&xps_map_mutex);
1999
537c00de
AD
2000 kfree(new_dev_maps);
2001 return -ENOMEM;
2002}
2003EXPORT_SYMBOL(netif_set_xps_queue);
2004
2005#endif
f0796d5c
JF
2006/*
2007 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
2008 * greater then real_num_tx_queues stale skbs on the qdisc must be flushed.
2009 */
e6484930 2010int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
f0796d5c 2011{
1d24eb48
TH
2012 int rc;
2013
e6484930
TH
2014 if (txq < 1 || txq > dev->num_tx_queues)
2015 return -EINVAL;
f0796d5c 2016
5c56580b
BH
2017 if (dev->reg_state == NETREG_REGISTERED ||
2018 dev->reg_state == NETREG_UNREGISTERING) {
e6484930
TH
2019 ASSERT_RTNL();
2020
1d24eb48
TH
2021 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2022 txq);
bf264145
TH
2023 if (rc)
2024 return rc;
2025
4f57c087
JF
2026 if (dev->num_tc)
2027 netif_setup_tc(dev, txq);
2028
024e9679 2029 if (txq < dev->real_num_tx_queues) {
e6484930 2030 qdisc_reset_all_tx_gt(dev, txq);
024e9679
AD
2031#ifdef CONFIG_XPS
2032 netif_reset_xps_queues_gt(dev, txq);
2033#endif
2034 }
f0796d5c 2035 }
e6484930
TH
2036
2037 dev->real_num_tx_queues = txq;
2038 return 0;
f0796d5c
JF
2039}
2040EXPORT_SYMBOL(netif_set_real_num_tx_queues);
56079431 2041
62fe0b40
BH
2042#ifdef CONFIG_RPS
2043/**
2044 * netif_set_real_num_rx_queues - set actual number of RX queues used
2045 * @dev: Network device
2046 * @rxq: Actual number of RX queues
2047 *
2048 * This must be called either with the rtnl_lock held or before
2049 * registration of the net device. Returns 0 on success, or a
4e7f7951
BH
2050 * negative error code. If called before registration, it always
2051 * succeeds.
62fe0b40
BH
2052 */
2053int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2054{
2055 int rc;
2056
bd25fa7b
TH
2057 if (rxq < 1 || rxq > dev->num_rx_queues)
2058 return -EINVAL;
2059
62fe0b40
BH
2060 if (dev->reg_state == NETREG_REGISTERED) {
2061 ASSERT_RTNL();
2062
62fe0b40
BH
2063 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2064 rxq);
2065 if (rc)
2066 return rc;
62fe0b40
BH
2067 }
2068
2069 dev->real_num_rx_queues = rxq;
2070 return 0;
2071}
2072EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2073#endif
2074
2c53040f
BH
2075/**
2076 * netif_get_num_default_rss_queues - default number of RSS queues
16917b87
YM
2077 *
2078 * This routine should set an upper limit on the number of RSS queues
2079 * used by default by multiqueue devices.
2080 */
a55b138b 2081int netif_get_num_default_rss_queues(void)
16917b87
YM
2082{
2083 return min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
2084}
2085EXPORT_SYMBOL(netif_get_num_default_rss_queues);
2086
def82a1d 2087static inline void __netif_reschedule(struct Qdisc *q)
56079431 2088{
def82a1d
JP
2089 struct softnet_data *sd;
2090 unsigned long flags;
56079431 2091
def82a1d
JP
2092 local_irq_save(flags);
2093 sd = &__get_cpu_var(softnet_data);
a9cbd588
CG
2094 q->next_sched = NULL;
2095 *sd->output_queue_tailp = q;
2096 sd->output_queue_tailp = &q->next_sched;
def82a1d
JP
2097 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2098 local_irq_restore(flags);
2099}
2100
2101void __netif_schedule(struct Qdisc *q)
2102{
2103 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
2104 __netif_reschedule(q);
56079431
DV
2105}
2106EXPORT_SYMBOL(__netif_schedule);
2107
bea3348e 2108void dev_kfree_skb_irq(struct sk_buff *skb)
56079431 2109{
3578b0c8 2110 if (atomic_dec_and_test(&skb->users)) {
bea3348e
SH
2111 struct softnet_data *sd;
2112 unsigned long flags;
56079431 2113
bea3348e
SH
2114 local_irq_save(flags);
2115 sd = &__get_cpu_var(softnet_data);
2116 skb->next = sd->completion_queue;
2117 sd->completion_queue = skb;
2118 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2119 local_irq_restore(flags);
2120 }
56079431 2121}
bea3348e 2122EXPORT_SYMBOL(dev_kfree_skb_irq);
56079431
DV
2123
2124void dev_kfree_skb_any(struct sk_buff *skb)
2125{
2126 if (in_irq() || irqs_disabled())
2127 dev_kfree_skb_irq(skb);
2128 else
2129 dev_kfree_skb(skb);
2130}
2131EXPORT_SYMBOL(dev_kfree_skb_any);
2132
2133
bea3348e
SH
2134/**
2135 * netif_device_detach - mark device as removed
2136 * @dev: network device
2137 *
2138 * Mark device as removed from system and therefore no longer available.
2139 */
56079431
DV
2140void netif_device_detach(struct net_device *dev)
2141{
2142 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
2143 netif_running(dev)) {
d543103a 2144 netif_tx_stop_all_queues(dev);
56079431
DV
2145 }
2146}
2147EXPORT_SYMBOL(netif_device_detach);
2148
bea3348e
SH
2149/**
2150 * netif_device_attach - mark device as attached
2151 * @dev: network device
2152 *
2153 * Mark device as attached from system and restart if needed.
2154 */
56079431
DV
2155void netif_device_attach(struct net_device *dev)
2156{
2157 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
2158 netif_running(dev)) {
d543103a 2159 netif_tx_wake_all_queues(dev);
4ec93edb 2160 __netdev_watchdog_up(dev);
56079431
DV
2161 }
2162}
2163EXPORT_SYMBOL(netif_device_attach);
2164
36c92474
BH
2165static void skb_warn_bad_offload(const struct sk_buff *skb)
2166{
65e9d2fa 2167 static const netdev_features_t null_features = 0;
36c92474
BH
2168 struct net_device *dev = skb->dev;
2169 const char *driver = "";
2170
c846ad9b
BG
2171 if (!net_ratelimit())
2172 return;
2173
36c92474
BH
2174 if (dev && dev->dev.parent)
2175 driver = dev_driver_string(dev->dev.parent);
2176
2177 WARN(1, "%s: caps=(%pNF, %pNF) len=%d data_len=%d gso_size=%d "
2178 "gso_type=%d ip_summed=%d\n",
65e9d2fa
MM
2179 driver, dev ? &dev->features : &null_features,
2180 skb->sk ? &skb->sk->sk_route_caps : &null_features,
36c92474
BH
2181 skb->len, skb->data_len, skb_shinfo(skb)->gso_size,
2182 skb_shinfo(skb)->gso_type, skb->ip_summed);
2183}
2184
1da177e4
LT
2185/*
2186 * Invalidate hardware checksum when packet is to be mangled, and
2187 * complete checksum manually on outgoing path.
2188 */
84fa7933 2189int skb_checksum_help(struct sk_buff *skb)
1da177e4 2190{
d3bc23e7 2191 __wsum csum;
663ead3b 2192 int ret = 0, offset;
1da177e4 2193
84fa7933 2194 if (skb->ip_summed == CHECKSUM_COMPLETE)
a430a43d
HX
2195 goto out_set_summed;
2196
2197 if (unlikely(skb_shinfo(skb)->gso_size)) {
36c92474
BH
2198 skb_warn_bad_offload(skb);
2199 return -EINVAL;
1da177e4
LT
2200 }
2201
cef401de
ED
2202 /* Before computing a checksum, we should make sure no frag could
2203 * be modified by an external entity : checksum could be wrong.
2204 */
2205 if (skb_has_shared_frag(skb)) {
2206 ret = __skb_linearize(skb);
2207 if (ret)
2208 goto out;
2209 }
2210
55508d60 2211 offset = skb_checksum_start_offset(skb);
a030847e
HX
2212 BUG_ON(offset >= skb_headlen(skb));
2213 csum = skb_checksum(skb, offset, skb->len - offset, 0);
2214
2215 offset += skb->csum_offset;
2216 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
2217
2218 if (skb_cloned(skb) &&
2219 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
1da177e4
LT
2220 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2221 if (ret)
2222 goto out;
2223 }
2224
a030847e 2225 *(__sum16 *)(skb->data + offset) = csum_fold(csum);
a430a43d 2226out_set_summed:
1da177e4 2227 skb->ip_summed = CHECKSUM_NONE;
4ec93edb 2228out:
1da177e4
LT
2229 return ret;
2230}
d1b19dff 2231EXPORT_SYMBOL(skb_checksum_help);
1da177e4 2232
ec5f0615 2233__be16 skb_network_protocol(struct sk_buff *skb)
f6a78bfc 2234{
252e3346 2235 __be16 type = skb->protocol;
c80a8512 2236 int vlan_depth = ETH_HLEN;
f6a78bfc 2237
19acc327
PS
2238 /* Tunnel gso handlers can set protocol to ethernet. */
2239 if (type == htons(ETH_P_TEB)) {
2240 struct ethhdr *eth;
2241
2242 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
2243 return 0;
2244
2245 eth = (struct ethhdr *)skb_mac_header(skb);
2246 type = eth->h_proto;
2247 }
2248
8ad227ff 2249 while (type == htons(ETH_P_8021Q) || type == htons(ETH_P_8021AD)) {
c8d5bcd1 2250 struct vlan_hdr *vh;
7b9c6090 2251
c8d5bcd1 2252 if (unlikely(!pskb_may_pull(skb, vlan_depth + VLAN_HLEN)))
ec5f0615 2253 return 0;
7b9c6090 2254
c8d5bcd1
JG
2255 vh = (struct vlan_hdr *)(skb->data + vlan_depth);
2256 type = vh->h_vlan_encapsulated_proto;
2257 vlan_depth += VLAN_HLEN;
7b9c6090
JG
2258 }
2259
ec5f0615
PS
2260 return type;
2261}
2262
2263/**
2264 * skb_mac_gso_segment - mac layer segmentation handler.
2265 * @skb: buffer to segment
2266 * @features: features for the output path (see dev->features)
2267 */
2268struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
2269 netdev_features_t features)
2270{
2271 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
2272 struct packet_offload *ptype;
2273 __be16 type = skb_network_protocol(skb);
2274
2275 if (unlikely(!type))
2276 return ERR_PTR(-EINVAL);
2277
f6a78bfc
HX
2278 __skb_pull(skb, skb->mac_len);
2279
2280 rcu_read_lock();
22061d80 2281 list_for_each_entry_rcu(ptype, &offload_base, list) {
f191a1d1 2282 if (ptype->type == type && ptype->callbacks.gso_segment) {
84fa7933 2283 if (unlikely(skb->ip_summed != CHECKSUM_PARTIAL)) {
05e8ef4a
PS
2284 int err;
2285
f191a1d1 2286 err = ptype->callbacks.gso_send_check(skb);
a430a43d
HX
2287 segs = ERR_PTR(err);
2288 if (err || skb_gso_ok(skb, features))
2289 break;
d56f90a7
ACM
2290 __skb_push(skb, (skb->data -
2291 skb_network_header(skb)));
a430a43d 2292 }
f191a1d1 2293 segs = ptype->callbacks.gso_segment(skb, features);
f6a78bfc
HX
2294 break;
2295 }
2296 }
2297 rcu_read_unlock();
2298
98e399f8 2299 __skb_push(skb, skb->data - skb_mac_header(skb));
576a30eb 2300
f6a78bfc
HX
2301 return segs;
2302}
05e8ef4a
PS
2303EXPORT_SYMBOL(skb_mac_gso_segment);
2304
2305
2306/* openvswitch calls this on rx path, so we need a different check.
2307 */
2308static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
2309{
2310 if (tx_path)
2311 return skb->ip_summed != CHECKSUM_PARTIAL;
2312 else
2313 return skb->ip_summed == CHECKSUM_NONE;
2314}
2315
2316/**
2317 * __skb_gso_segment - Perform segmentation on skb.
2318 * @skb: buffer to segment
2319 * @features: features for the output path (see dev->features)
2320 * @tx_path: whether it is called in TX path
2321 *
2322 * This function segments the given skb and returns a list of segments.
2323 *
2324 * It may return NULL if the skb requires no segmentation. This is
2325 * only possible when GSO is used for verifying header integrity.
2326 */
2327struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
2328 netdev_features_t features, bool tx_path)
2329{
2330 if (unlikely(skb_needs_check(skb, tx_path))) {
2331 int err;
2332
2333 skb_warn_bad_offload(skb);
2334
2335 if (skb_header_cloned(skb) &&
2336 (err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
2337 return ERR_PTR(err);
2338 }
2339
68c33163 2340 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
05e8ef4a
PS
2341 skb_reset_mac_header(skb);
2342 skb_reset_mac_len(skb);
2343
2344 return skb_mac_gso_segment(skb, features);
2345}
12b0004d 2346EXPORT_SYMBOL(__skb_gso_segment);
f6a78bfc 2347
fb286bb2
HX
2348/* Take action when hardware reception checksum errors are detected. */
2349#ifdef CONFIG_BUG
2350void netdev_rx_csum_fault(struct net_device *dev)
2351{
2352 if (net_ratelimit()) {
7b6cd1ce 2353 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
fb286bb2
HX
2354 dump_stack();
2355 }
2356}
2357EXPORT_SYMBOL(netdev_rx_csum_fault);
2358#endif
2359
1da177e4
LT
2360/* Actually, we should eliminate this check as soon as we know, that:
2361 * 1. IOMMU is present and allows to map all the memory.
2362 * 2. No high memory really exists on this machine.
2363 */
2364
9092c658 2365static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
1da177e4 2366{
3d3a8533 2367#ifdef CONFIG_HIGHMEM
1da177e4 2368 int i;
5acbbd42 2369 if (!(dev->features & NETIF_F_HIGHDMA)) {
ea2ab693
IC
2370 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2371 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2372 if (PageHighMem(skb_frag_page(frag)))
5acbbd42 2373 return 1;
ea2ab693 2374 }
5acbbd42 2375 }
1da177e4 2376
5acbbd42
FT
2377 if (PCI_DMA_BUS_IS_PHYS) {
2378 struct device *pdev = dev->dev.parent;
1da177e4 2379
9092c658
ED
2380 if (!pdev)
2381 return 0;
5acbbd42 2382 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
ea2ab693
IC
2383 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2384 dma_addr_t addr = page_to_phys(skb_frag_page(frag));
5acbbd42
FT
2385 if (!pdev->dma_mask || addr + PAGE_SIZE - 1 > *pdev->dma_mask)
2386 return 1;
2387 }
2388 }
3d3a8533 2389#endif
1da177e4
LT
2390 return 0;
2391}
1da177e4 2392
f6a78bfc
HX
2393struct dev_gso_cb {
2394 void (*destructor)(struct sk_buff *skb);
2395};
2396
2397#define DEV_GSO_CB(skb) ((struct dev_gso_cb *)(skb)->cb)
2398
2399static void dev_gso_skb_destructor(struct sk_buff *skb)
2400{
2401 struct dev_gso_cb *cb;
2402
2403 do {
2404 struct sk_buff *nskb = skb->next;
2405
2406 skb->next = nskb->next;
2407 nskb->next = NULL;
2408 kfree_skb(nskb);
2409 } while (skb->next);
2410
2411 cb = DEV_GSO_CB(skb);
2412 if (cb->destructor)
2413 cb->destructor(skb);
2414}
2415
2416/**
2417 * dev_gso_segment - Perform emulated hardware segmentation on skb.
2418 * @skb: buffer to segment
91ecb63c 2419 * @features: device features as applicable to this skb
f6a78bfc
HX
2420 *
2421 * This function segments the given skb and stores the list of segments
2422 * in skb->next.
2423 */
c8f44aff 2424static int dev_gso_segment(struct sk_buff *skb, netdev_features_t features)
f6a78bfc 2425{
f6a78bfc 2426 struct sk_buff *segs;
576a30eb
HX
2427
2428 segs = skb_gso_segment(skb, features);
2429
2430 /* Verifying header integrity only. */
2431 if (!segs)
2432 return 0;
f6a78bfc 2433
801678c5 2434 if (IS_ERR(segs))
f6a78bfc
HX
2435 return PTR_ERR(segs);
2436
2437 skb->next = segs;
2438 DEV_GSO_CB(skb)->destructor = skb->destructor;
2439 skb->destructor = dev_gso_skb_destructor;
2440
2441 return 0;
2442}
2443
c8f44aff
MM
2444static netdev_features_t harmonize_features(struct sk_buff *skb,
2445 __be16 protocol, netdev_features_t features)
f01a5236 2446{
c0d680e5
EC
2447 if (skb->ip_summed != CHECKSUM_NONE &&
2448 !can_checksum_protocol(features, protocol)) {
f01a5236 2449 features &= ~NETIF_F_ALL_CSUM;
f01a5236
JG
2450 } else if (illegal_highdma(skb->dev, skb)) {
2451 features &= ~NETIF_F_SG;
2452 }
2453
2454 return features;
2455}
2456
c8f44aff 2457netdev_features_t netif_skb_features(struct sk_buff *skb)
58e998c6
JG
2458{
2459 __be16 protocol = skb->protocol;
c8f44aff 2460 netdev_features_t features = skb->dev->features;
58e998c6 2461
30b678d8
BH
2462 if (skb_shinfo(skb)->gso_segs > skb->dev->gso_max_segs)
2463 features &= ~NETIF_F_GSO_MASK;
2464
8ad227ff 2465 if (protocol == htons(ETH_P_8021Q) || protocol == htons(ETH_P_8021AD)) {
58e998c6
JG
2466 struct vlan_ethhdr *veh = (struct vlan_ethhdr *)skb->data;
2467 protocol = veh->h_vlan_encapsulated_proto;
f01a5236
JG
2468 } else if (!vlan_tx_tag_present(skb)) {
2469 return harmonize_features(skb, protocol, features);
2470 }
58e998c6 2471
8ad227ff
PM
2472 features &= (skb->dev->vlan_features | NETIF_F_HW_VLAN_CTAG_TX |
2473 NETIF_F_HW_VLAN_STAG_TX);
f01a5236 2474
8ad227ff 2475 if (protocol != htons(ETH_P_8021Q) && protocol != htons(ETH_P_8021AD)) {
f01a5236
JG
2476 return harmonize_features(skb, protocol, features);
2477 } else {
2478 features &= NETIF_F_SG | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST |
8ad227ff
PM
2479 NETIF_F_GEN_CSUM | NETIF_F_HW_VLAN_CTAG_TX |
2480 NETIF_F_HW_VLAN_STAG_TX;
f01a5236
JG
2481 return harmonize_features(skb, protocol, features);
2482 }
58e998c6 2483}
f01a5236 2484EXPORT_SYMBOL(netif_skb_features);
58e998c6 2485
6afff0ca
JF
2486/*
2487 * Returns true if either:
2488 * 1. skb has frag_list and the device doesn't support FRAGLIST, or
d1a53dfd 2489 * 2. skb is fragmented and the device does not support SG.
6afff0ca
JF
2490 */
2491static inline int skb_needs_linearize(struct sk_buff *skb,
6708c9e5 2492 netdev_features_t features)
6afff0ca 2493{
02932ce9
JG
2494 return skb_is_nonlinear(skb) &&
2495 ((skb_has_frag_list(skb) &&
2496 !(features & NETIF_F_FRAGLIST)) ||
e1e78db6 2497 (skb_shinfo(skb)->nr_frags &&
02932ce9 2498 !(features & NETIF_F_SG)));
6afff0ca
JF
2499}
2500
fd2ea0a7
DM
2501int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
2502 struct netdev_queue *txq)
f6a78bfc 2503{
00829823 2504 const struct net_device_ops *ops = dev->netdev_ops;
572a9d7b 2505 int rc = NETDEV_TX_OK;
ec764bf0 2506 unsigned int skb_len;
00829823 2507
f6a78bfc 2508 if (likely(!skb->next)) {
c8f44aff 2509 netdev_features_t features;
fc741216 2510
93f154b5 2511 /*
25985edc 2512 * If device doesn't need skb->dst, release it right now while
93f154b5
ED
2513 * its hot in this cpu cache
2514 */
adf30907
ED
2515 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
2516 skb_dst_drop(skb);
2517
fc741216
JG
2518 features = netif_skb_features(skb);
2519
7b9c6090 2520 if (vlan_tx_tag_present(skb) &&
86a9bad3
PM
2521 !vlan_hw_offload_capable(features, skb->vlan_proto)) {
2522 skb = __vlan_put_tag(skb, skb->vlan_proto,
2523 vlan_tx_tag_get(skb));
7b9c6090
JG
2524 if (unlikely(!skb))
2525 goto out;
2526
2527 skb->vlan_tci = 0;
2528 }
2529
fc70fb64
AD
2530 /* If encapsulation offload request, verify we are testing
2531 * hardware encapsulation features instead of standard
2532 * features for the netdev
2533 */
2534 if (skb->encapsulation)
2535 features &= dev->hw_enc_features;
2536
fc741216 2537 if (netif_needs_gso(skb, features)) {
91ecb63c 2538 if (unlikely(dev_gso_segment(skb, features)))
9ccb8975
DM
2539 goto out_kfree_skb;
2540 if (skb->next)
2541 goto gso;
6afff0ca 2542 } else {
02932ce9 2543 if (skb_needs_linearize(skb, features) &&
6afff0ca
JF
2544 __skb_linearize(skb))
2545 goto out_kfree_skb;
2546
2547 /* If packet is not checksummed and device does not
2548 * support checksumming for this protocol, complete
2549 * checksumming here.
2550 */
2551 if (skb->ip_summed == CHECKSUM_PARTIAL) {
fc70fb64
AD
2552 if (skb->encapsulation)
2553 skb_set_inner_transport_header(skb,
2554 skb_checksum_start_offset(skb));
2555 else
2556 skb_set_transport_header(skb,
2557 skb_checksum_start_offset(skb));
03634668 2558 if (!(features & NETIF_F_ALL_CSUM) &&
6afff0ca
JF
2559 skb_checksum_help(skb))
2560 goto out_kfree_skb;
2561 }
9ccb8975
DM
2562 }
2563
b40863c6
ED
2564 if (!list_empty(&ptype_all))
2565 dev_queue_xmit_nit(skb, dev);
2566
ec764bf0 2567 skb_len = skb->len;
ac45f602 2568 rc = ops->ndo_start_xmit(skb, dev);
ec764bf0 2569 trace_net_dev_xmit(skb, rc, dev, skb_len);
ec634fe3 2570 if (rc == NETDEV_TX_OK)
08baf561 2571 txq_trans_update(txq);
ac45f602 2572 return rc;
f6a78bfc
HX
2573 }
2574
576a30eb 2575gso:
f6a78bfc
HX
2576 do {
2577 struct sk_buff *nskb = skb->next;
f6a78bfc
HX
2578
2579 skb->next = nskb->next;
2580 nskb->next = NULL;
068a2de5 2581
b40863c6
ED
2582 if (!list_empty(&ptype_all))
2583 dev_queue_xmit_nit(nskb, dev);
2584
ec764bf0 2585 skb_len = nskb->len;
00829823 2586 rc = ops->ndo_start_xmit(nskb, dev);
ec764bf0 2587 trace_net_dev_xmit(nskb, rc, dev, skb_len);
ec634fe3 2588 if (unlikely(rc != NETDEV_TX_OK)) {
572a9d7b
PM
2589 if (rc & ~NETDEV_TX_MASK)
2590 goto out_kfree_gso_skb;
f54d9e8d 2591 nskb->next = skb->next;
f6a78bfc
HX
2592 skb->next = nskb;
2593 return rc;
2594 }
08baf561 2595 txq_trans_update(txq);
73466498 2596 if (unlikely(netif_xmit_stopped(txq) && skb->next))
f54d9e8d 2597 return NETDEV_TX_BUSY;
f6a78bfc 2598 } while (skb->next);
4ec93edb 2599
572a9d7b 2600out_kfree_gso_skb:
0c772159 2601 if (likely(skb->next == NULL)) {
572a9d7b 2602 skb->destructor = DEV_GSO_CB(skb)->destructor;
0c772159
SS
2603 consume_skb(skb);
2604 return rc;
2605 }
f6a78bfc
HX
2606out_kfree_skb:
2607 kfree_skb(skb);
7b9c6090 2608out:
572a9d7b 2609 return rc;
f6a78bfc
HX
2610}
2611
1def9238
ED
2612static void qdisc_pkt_len_init(struct sk_buff *skb)
2613{
2614 const struct skb_shared_info *shinfo = skb_shinfo(skb);
2615
2616 qdisc_skb_cb(skb)->pkt_len = skb->len;
2617
2618 /* To get more precise estimation of bytes sent on wire,
2619 * we add to pkt_len the headers size of all segments
2620 */
2621 if (shinfo->gso_size) {
757b8b1d 2622 unsigned int hdr_len;
15e5a030 2623 u16 gso_segs = shinfo->gso_segs;
1def9238 2624
757b8b1d
ED
2625 /* mac layer + network layer */
2626 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
2627
2628 /* + transport layer */
1def9238
ED
2629 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
2630 hdr_len += tcp_hdrlen(skb);
2631 else
2632 hdr_len += sizeof(struct udphdr);
15e5a030
JW
2633
2634 if (shinfo->gso_type & SKB_GSO_DODGY)
2635 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
2636 shinfo->gso_size);
2637
2638 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
1def9238
ED
2639 }
2640}
2641
bbd8a0d3
KK
2642static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
2643 struct net_device *dev,
2644 struct netdev_queue *txq)
2645{
2646 spinlock_t *root_lock = qdisc_lock(q);
a2da570d 2647 bool contended;
bbd8a0d3
KK
2648 int rc;
2649
1def9238 2650 qdisc_pkt_len_init(skb);
a2da570d 2651 qdisc_calculate_pkt_len(skb, q);
79640a4c
ED
2652 /*
2653 * Heuristic to force contended enqueues to serialize on a
2654 * separate lock before trying to get qdisc main lock.
2655 * This permits __QDISC_STATE_RUNNING owner to get the lock more often
2656 * and dequeue packets faster.
2657 */
a2da570d 2658 contended = qdisc_is_running(q);
79640a4c
ED
2659 if (unlikely(contended))
2660 spin_lock(&q->busylock);
2661
bbd8a0d3
KK
2662 spin_lock(root_lock);
2663 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
2664 kfree_skb(skb);
2665 rc = NET_XMIT_DROP;
2666 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
bc135b23 2667 qdisc_run_begin(q)) {
bbd8a0d3
KK
2668 /*
2669 * This is a work-conserving queue; there are no old skbs
2670 * waiting to be sent out; and the qdisc is not running -
2671 * xmit the skb directly.
2672 */
7fee226a
ED
2673 if (!(dev->priv_flags & IFF_XMIT_DST_RELEASE))
2674 skb_dst_force(skb);
bfe0d029 2675
bfe0d029
ED
2676 qdisc_bstats_update(q, skb);
2677
79640a4c
ED
2678 if (sch_direct_xmit(skb, q, dev, txq, root_lock)) {
2679 if (unlikely(contended)) {
2680 spin_unlock(&q->busylock);
2681 contended = false;
2682 }
bbd8a0d3 2683 __qdisc_run(q);
79640a4c 2684 } else
bc135b23 2685 qdisc_run_end(q);
bbd8a0d3
KK
2686
2687 rc = NET_XMIT_SUCCESS;
2688 } else {
7fee226a 2689 skb_dst_force(skb);
a2da570d 2690 rc = q->enqueue(skb, q) & NET_XMIT_MASK;
79640a4c
ED
2691 if (qdisc_run_begin(q)) {
2692 if (unlikely(contended)) {
2693 spin_unlock(&q->busylock);
2694 contended = false;
2695 }
2696 __qdisc_run(q);
2697 }
bbd8a0d3
KK
2698 }
2699 spin_unlock(root_lock);
79640a4c
ED
2700 if (unlikely(contended))
2701 spin_unlock(&q->busylock);
bbd8a0d3
KK
2702 return rc;
2703}
2704
5bc1421e
NH
2705#if IS_ENABLED(CONFIG_NETPRIO_CGROUP)
2706static void skb_update_prio(struct sk_buff *skb)
2707{
6977a79d 2708 struct netprio_map *map = rcu_dereference_bh(skb->dev->priomap);
5bc1421e 2709
91c68ce2
ED
2710 if (!skb->priority && skb->sk && map) {
2711 unsigned int prioidx = skb->sk->sk_cgrp_prioidx;
2712
2713 if (prioidx < map->priomap_len)
2714 skb->priority = map->priomap[prioidx];
2715 }
5bc1421e
NH
2716}
2717#else
2718#define skb_update_prio(skb)
2719#endif
2720
745e20f1 2721static DEFINE_PER_CPU(int, xmit_recursion);
11a766ce 2722#define RECURSION_LIMIT 10
745e20f1 2723
95603e22
MM
2724/**
2725 * dev_loopback_xmit - loop back @skb
2726 * @skb: buffer to transmit
2727 */
2728int dev_loopback_xmit(struct sk_buff *skb)
2729{
2730 skb_reset_mac_header(skb);
2731 __skb_pull(skb, skb_network_offset(skb));
2732 skb->pkt_type = PACKET_LOOPBACK;
2733 skb->ip_summed = CHECKSUM_UNNECESSARY;
2734 WARN_ON(!skb_dst(skb));
2735 skb_dst_force(skb);
2736 netif_rx_ni(skb);
2737 return 0;
2738}
2739EXPORT_SYMBOL(dev_loopback_xmit);
2740
d29f749e
DJ
2741/**
2742 * dev_queue_xmit - transmit a buffer
2743 * @skb: buffer to transmit
2744 *
2745 * Queue a buffer for transmission to a network device. The caller must
2746 * have set the device and priority and built the buffer before calling
2747 * this function. The function can be called from an interrupt.
2748 *
2749 * A negative errno code is returned on a failure. A success does not
2750 * guarantee the frame will be transmitted as it may be dropped due
2751 * to congestion or traffic shaping.
2752 *
2753 * -----------------------------------------------------------------------------------
2754 * I notice this method can also return errors from the queue disciplines,
2755 * including NET_XMIT_DROP, which is a positive value. So, errors can also
2756 * be positive.
2757 *
2758 * Regardless of the return value, the skb is consumed, so it is currently
2759 * difficult to retry a send to this method. (You can bump the ref count
2760 * before sending to hold a reference for retry if you are careful.)
2761 *
2762 * When calling this method, interrupts MUST be enabled. This is because
2763 * the BH enable code must have IRQs enabled so that it will not deadlock.
2764 * --BLG
2765 */
1da177e4
LT
2766int dev_queue_xmit(struct sk_buff *skb)
2767{
2768 struct net_device *dev = skb->dev;
dc2b4847 2769 struct netdev_queue *txq;
1da177e4
LT
2770 struct Qdisc *q;
2771 int rc = -ENOMEM;
2772
6d1ccff6
ED
2773 skb_reset_mac_header(skb);
2774
4ec93edb
YH
2775 /* Disable soft irqs for various locks below. Also
2776 * stops preemption for RCU.
1da177e4 2777 */
4ec93edb 2778 rcu_read_lock_bh();
1da177e4 2779
5bc1421e
NH
2780 skb_update_prio(skb);
2781
8c4c49df 2782 txq = netdev_pick_tx(dev, skb);
a898def2 2783 q = rcu_dereference_bh(txq->qdisc);
37437bb2 2784
1da177e4 2785#ifdef CONFIG_NET_CLS_ACT
d1b19dff 2786 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_EGRESS);
1da177e4 2787#endif
cf66ba58 2788 trace_net_dev_queue(skb);
1da177e4 2789 if (q->enqueue) {
bbd8a0d3 2790 rc = __dev_xmit_skb(skb, q, dev, txq);
37437bb2 2791 goto out;
1da177e4
LT
2792 }
2793
2794 /* The device has no queue. Common case for software devices:
2795 loopback, all the sorts of tunnels...
2796
932ff279
HX
2797 Really, it is unlikely that netif_tx_lock protection is necessary
2798 here. (f.e. loopback and IP tunnels are clean ignoring statistics
1da177e4
LT
2799 counters.)
2800 However, it is possible, that they rely on protection
2801 made by us here.
2802
2803 Check this and shot the lock. It is not prone from deadlocks.
2804 Either shot noqueue qdisc, it is even simpler 8)
2805 */
2806 if (dev->flags & IFF_UP) {
2807 int cpu = smp_processor_id(); /* ok because BHs are off */
2808
c773e847 2809 if (txq->xmit_lock_owner != cpu) {
1da177e4 2810
745e20f1
ED
2811 if (__this_cpu_read(xmit_recursion) > RECURSION_LIMIT)
2812 goto recursion_alert;
2813
c773e847 2814 HARD_TX_LOCK(dev, txq, cpu);
1da177e4 2815
73466498 2816 if (!netif_xmit_stopped(txq)) {
745e20f1 2817 __this_cpu_inc(xmit_recursion);
572a9d7b 2818 rc = dev_hard_start_xmit(skb, dev, txq);
745e20f1 2819 __this_cpu_dec(xmit_recursion);
572a9d7b 2820 if (dev_xmit_complete(rc)) {
c773e847 2821 HARD_TX_UNLOCK(dev, txq);
1da177e4
LT
2822 goto out;
2823 }
2824 }
c773e847 2825 HARD_TX_UNLOCK(dev, txq);
e87cc472
JP
2826 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
2827 dev->name);
1da177e4
LT
2828 } else {
2829 /* Recursion is detected! It is possible,
745e20f1
ED
2830 * unfortunately
2831 */
2832recursion_alert:
e87cc472
JP
2833 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
2834 dev->name);
1da177e4
LT
2835 }
2836 }
2837
2838 rc = -ENETDOWN;
d4828d85 2839 rcu_read_unlock_bh();
1da177e4 2840
1da177e4
LT
2841 kfree_skb(skb);
2842 return rc;
2843out:
d4828d85 2844 rcu_read_unlock_bh();
1da177e4
LT
2845 return rc;
2846}
d1b19dff 2847EXPORT_SYMBOL(dev_queue_xmit);
1da177e4
LT
2848
2849
2850/*=======================================================================
2851 Receiver routines
2852 =======================================================================*/
2853
6b2bedc3 2854int netdev_max_backlog __read_mostly = 1000;
c9e6bc64
ED
2855EXPORT_SYMBOL(netdev_max_backlog);
2856
3b098e2d 2857int netdev_tstamp_prequeue __read_mostly = 1;
6b2bedc3
SH
2858int netdev_budget __read_mostly = 300;
2859int weight_p __read_mostly = 64; /* old backlog weight */
1da177e4 2860
eecfd7c4
ED
2861/* Called with irq disabled */
2862static inline void ____napi_schedule(struct softnet_data *sd,
2863 struct napi_struct *napi)
2864{
2865 list_add_tail(&napi->poll_list, &sd->poll_list);
2866 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
2867}
2868
bfb564e7
KK
2869#ifdef CONFIG_RPS
2870
2871/* One global table that all flow-based protocols share. */
6e3f7faf 2872struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
bfb564e7
KK
2873EXPORT_SYMBOL(rps_sock_flow_table);
2874
c5905afb 2875struct static_key rps_needed __read_mostly;
adc9300e 2876
c445477d
BH
2877static struct rps_dev_flow *
2878set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
2879 struct rps_dev_flow *rflow, u16 next_cpu)
2880{
09994d1b 2881 if (next_cpu != RPS_NO_CPU) {
c445477d
BH
2882#ifdef CONFIG_RFS_ACCEL
2883 struct netdev_rx_queue *rxqueue;
2884 struct rps_dev_flow_table *flow_table;
2885 struct rps_dev_flow *old_rflow;
2886 u32 flow_id;
2887 u16 rxq_index;
2888 int rc;
2889
2890 /* Should we steer this flow to a different hardware queue? */
69a19ee6
BH
2891 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
2892 !(dev->features & NETIF_F_NTUPLE))
c445477d
BH
2893 goto out;
2894 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
2895 if (rxq_index == skb_get_rx_queue(skb))
2896 goto out;
2897
2898 rxqueue = dev->_rx + rxq_index;
2899 flow_table = rcu_dereference(rxqueue->rps_flow_table);
2900 if (!flow_table)
2901 goto out;
2902 flow_id = skb->rxhash & flow_table->mask;
2903 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
2904 rxq_index, flow_id);
2905 if (rc < 0)
2906 goto out;
2907 old_rflow = rflow;
2908 rflow = &flow_table->flows[flow_id];
c445477d
BH
2909 rflow->filter = rc;
2910 if (old_rflow->filter == rflow->filter)
2911 old_rflow->filter = RPS_NO_FILTER;
2912 out:
2913#endif
2914 rflow->last_qtail =
09994d1b 2915 per_cpu(softnet_data, next_cpu).input_queue_head;
c445477d
BH
2916 }
2917
09994d1b 2918 rflow->cpu = next_cpu;
c445477d
BH
2919 return rflow;
2920}
2921
bfb564e7
KK
2922/*
2923 * get_rps_cpu is called from netif_receive_skb and returns the target
2924 * CPU from the RPS map of the receiving queue for a given skb.
2925 * rcu_read_lock must be held on entry.
2926 */
2927static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
2928 struct rps_dev_flow **rflowp)
2929{
2930 struct netdev_rx_queue *rxqueue;
6e3f7faf 2931 struct rps_map *map;
bfb564e7
KK
2932 struct rps_dev_flow_table *flow_table;
2933 struct rps_sock_flow_table *sock_flow_table;
2934 int cpu = -1;
2935 u16 tcpu;
2936
2937 if (skb_rx_queue_recorded(skb)) {
2938 u16 index = skb_get_rx_queue(skb);
62fe0b40
BH
2939 if (unlikely(index >= dev->real_num_rx_queues)) {
2940 WARN_ONCE(dev->real_num_rx_queues > 1,
2941 "%s received packet on queue %u, but number "
2942 "of RX queues is %u\n",
2943 dev->name, index, dev->real_num_rx_queues);
bfb564e7
KK
2944 goto done;
2945 }
2946 rxqueue = dev->_rx + index;
2947 } else
2948 rxqueue = dev->_rx;
2949
6e3f7faf
ED
2950 map = rcu_dereference(rxqueue->rps_map);
2951 if (map) {
85875236 2952 if (map->len == 1 &&
33d480ce 2953 !rcu_access_pointer(rxqueue->rps_flow_table)) {
6febfca9
CG
2954 tcpu = map->cpus[0];
2955 if (cpu_online(tcpu))
2956 cpu = tcpu;
2957 goto done;
2958 }
33d480ce 2959 } else if (!rcu_access_pointer(rxqueue->rps_flow_table)) {
bfb564e7 2960 goto done;
6febfca9 2961 }
bfb564e7 2962
2d47b459 2963 skb_reset_network_header(skb);
bfb564e7
KK
2964 if (!skb_get_rxhash(skb))
2965 goto done;
2966
fec5e652
TH
2967 flow_table = rcu_dereference(rxqueue->rps_flow_table);
2968 sock_flow_table = rcu_dereference(rps_sock_flow_table);
2969 if (flow_table && sock_flow_table) {
2970 u16 next_cpu;
2971 struct rps_dev_flow *rflow;
2972
2973 rflow = &flow_table->flows[skb->rxhash & flow_table->mask];
2974 tcpu = rflow->cpu;
2975
2976 next_cpu = sock_flow_table->ents[skb->rxhash &
2977 sock_flow_table->mask];
2978
2979 /*
2980 * If the desired CPU (where last recvmsg was done) is
2981 * different from current CPU (one in the rx-queue flow
2982 * table entry), switch if one of the following holds:
2983 * - Current CPU is unset (equal to RPS_NO_CPU).
2984 * - Current CPU is offline.
2985 * - The current CPU's queue tail has advanced beyond the
2986 * last packet that was enqueued using this table entry.
2987 * This guarantees that all previous packets for the flow
2988 * have been dequeued, thus preserving in order delivery.
2989 */
2990 if (unlikely(tcpu != next_cpu) &&
2991 (tcpu == RPS_NO_CPU || !cpu_online(tcpu) ||
2992 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
baefa31d
TH
2993 rflow->last_qtail)) >= 0)) {
2994 tcpu = next_cpu;
c445477d 2995 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
baefa31d 2996 }
c445477d 2997
fec5e652
TH
2998 if (tcpu != RPS_NO_CPU && cpu_online(tcpu)) {
2999 *rflowp = rflow;
3000 cpu = tcpu;
3001 goto done;
3002 }
3003 }
3004
0a9627f2 3005 if (map) {
fec5e652 3006 tcpu = map->cpus[((u64) skb->rxhash * map->len) >> 32];
0a9627f2
TH
3007
3008 if (cpu_online(tcpu)) {
3009 cpu = tcpu;
3010 goto done;
3011 }
3012 }
3013
3014done:
0a9627f2
TH
3015 return cpu;
3016}
3017
c445477d
BH
3018#ifdef CONFIG_RFS_ACCEL
3019
3020/**
3021 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
3022 * @dev: Device on which the filter was set
3023 * @rxq_index: RX queue index
3024 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
3025 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
3026 *
3027 * Drivers that implement ndo_rx_flow_steer() should periodically call
3028 * this function for each installed filter and remove the filters for
3029 * which it returns %true.
3030 */
3031bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
3032 u32 flow_id, u16 filter_id)
3033{
3034 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
3035 struct rps_dev_flow_table *flow_table;
3036 struct rps_dev_flow *rflow;
3037 bool expire = true;
3038 int cpu;
3039
3040 rcu_read_lock();
3041 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3042 if (flow_table && flow_id <= flow_table->mask) {
3043 rflow = &flow_table->flows[flow_id];
3044 cpu = ACCESS_ONCE(rflow->cpu);
3045 if (rflow->filter == filter_id && cpu != RPS_NO_CPU &&
3046 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
3047 rflow->last_qtail) <
3048 (int)(10 * flow_table->mask)))
3049 expire = false;
3050 }
3051 rcu_read_unlock();
3052 return expire;
3053}
3054EXPORT_SYMBOL(rps_may_expire_flow);
3055
3056#endif /* CONFIG_RFS_ACCEL */
3057
0a9627f2 3058/* Called from hardirq (IPI) context */
e36fa2f7 3059static void rps_trigger_softirq(void *data)
0a9627f2 3060{
e36fa2f7
ED
3061 struct softnet_data *sd = data;
3062
eecfd7c4 3063 ____napi_schedule(sd, &sd->backlog);
dee42870 3064 sd->received_rps++;
0a9627f2 3065}
e36fa2f7 3066
fec5e652 3067#endif /* CONFIG_RPS */
0a9627f2 3068
e36fa2f7
ED
3069/*
3070 * Check if this softnet_data structure is another cpu one
3071 * If yes, queue it to our IPI list and return 1
3072 * If no, return 0
3073 */
3074static int rps_ipi_queued(struct softnet_data *sd)
3075{
3076#ifdef CONFIG_RPS
3077 struct softnet_data *mysd = &__get_cpu_var(softnet_data);
3078
3079 if (sd != mysd) {
3080 sd->rps_ipi_next = mysd->rps_ipi_list;
3081 mysd->rps_ipi_list = sd;
3082
3083 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3084 return 1;
3085 }
3086#endif /* CONFIG_RPS */
3087 return 0;
3088}
3089
99bbc707
WB
3090#ifdef CONFIG_NET_FLOW_LIMIT
3091int netdev_flow_limit_table_len __read_mostly = (1 << 12);
3092#endif
3093
3094static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
3095{
3096#ifdef CONFIG_NET_FLOW_LIMIT
3097 struct sd_flow_limit *fl;
3098 struct softnet_data *sd;
3099 unsigned int old_flow, new_flow;
3100
3101 if (qlen < (netdev_max_backlog >> 1))
3102 return false;
3103
3104 sd = &__get_cpu_var(softnet_data);
3105
3106 rcu_read_lock();
3107 fl = rcu_dereference(sd->flow_limit);
3108 if (fl) {
3109 new_flow = skb_get_rxhash(skb) & (fl->num_buckets - 1);
3110 old_flow = fl->history[fl->history_head];
3111 fl->history[fl->history_head] = new_flow;
3112
3113 fl->history_head++;
3114 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
3115
3116 if (likely(fl->buckets[old_flow]))
3117 fl->buckets[old_flow]--;
3118
3119 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
3120 fl->count++;
3121 rcu_read_unlock();
3122 return true;
3123 }
3124 }
3125 rcu_read_unlock();
3126#endif
3127 return false;
3128}
3129
0a9627f2
TH
3130/*
3131 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
3132 * queue (may be a remote CPU queue).
3133 */
fec5e652
TH
3134static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
3135 unsigned int *qtail)
0a9627f2 3136{
e36fa2f7 3137 struct softnet_data *sd;
0a9627f2 3138 unsigned long flags;
99bbc707 3139 unsigned int qlen;
0a9627f2 3140
e36fa2f7 3141 sd = &per_cpu(softnet_data, cpu);
0a9627f2
TH
3142
3143 local_irq_save(flags);
0a9627f2 3144
e36fa2f7 3145 rps_lock(sd);
99bbc707
WB
3146 qlen = skb_queue_len(&sd->input_pkt_queue);
3147 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
6e7676c1 3148 if (skb_queue_len(&sd->input_pkt_queue)) {
0a9627f2 3149enqueue:
e36fa2f7 3150 __skb_queue_tail(&sd->input_pkt_queue, skb);
76cc8b13 3151 input_queue_tail_incr_save(sd, qtail);
e36fa2f7 3152 rps_unlock(sd);
152102c7 3153 local_irq_restore(flags);
0a9627f2
TH
3154 return NET_RX_SUCCESS;
3155 }
3156
ebda37c2
ED
3157 /* Schedule NAPI for backlog device
3158 * We can use non atomic operation since we own the queue lock
3159 */
3160 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
e36fa2f7 3161 if (!rps_ipi_queued(sd))
eecfd7c4 3162 ____napi_schedule(sd, &sd->backlog);
0a9627f2
TH
3163 }
3164 goto enqueue;
3165 }
3166
dee42870 3167 sd->dropped++;
e36fa2f7 3168 rps_unlock(sd);
0a9627f2 3169
0a9627f2
TH
3170 local_irq_restore(flags);
3171
caf586e5 3172 atomic_long_inc(&skb->dev->rx_dropped);
0a9627f2
TH
3173 kfree_skb(skb);
3174 return NET_RX_DROP;
3175}
1da177e4 3176
1da177e4
LT
3177/**
3178 * netif_rx - post buffer to the network code
3179 * @skb: buffer to post
3180 *
3181 * This function receives a packet from a device driver and queues it for
3182 * the upper (protocol) levels to process. It always succeeds. The buffer
3183 * may be dropped during processing for congestion control or by the
3184 * protocol layers.
3185 *
3186 * return values:
3187 * NET_RX_SUCCESS (no congestion)
1da177e4
LT
3188 * NET_RX_DROP (packet was dropped)
3189 *
3190 */
3191
3192int netif_rx(struct sk_buff *skb)
3193{
b0e28f1e 3194 int ret;
1da177e4
LT
3195
3196 /* if netpoll wants it, pretend we never saw it */
3197 if (netpoll_rx(skb))
3198 return NET_RX_DROP;
3199
588f0330 3200 net_timestamp_check(netdev_tstamp_prequeue, skb);
1da177e4 3201
cf66ba58 3202 trace_netif_rx(skb);
df334545 3203#ifdef CONFIG_RPS
c5905afb 3204 if (static_key_false(&rps_needed)) {
fec5e652 3205 struct rps_dev_flow voidflow, *rflow = &voidflow;
b0e28f1e
ED
3206 int cpu;
3207
cece1945 3208 preempt_disable();
b0e28f1e 3209 rcu_read_lock();
fec5e652
TH
3210
3211 cpu = get_rps_cpu(skb->dev, skb, &rflow);
b0e28f1e
ED
3212 if (cpu < 0)
3213 cpu = smp_processor_id();
fec5e652
TH
3214
3215 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3216
b0e28f1e 3217 rcu_read_unlock();
cece1945 3218 preempt_enable();
adc9300e
ED
3219 } else
3220#endif
fec5e652
TH
3221 {
3222 unsigned int qtail;
3223 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
3224 put_cpu();
3225 }
b0e28f1e 3226 return ret;
1da177e4 3227}
d1b19dff 3228EXPORT_SYMBOL(netif_rx);
1da177e4
LT
3229
3230int netif_rx_ni(struct sk_buff *skb)
3231{
3232 int err;
3233
3234 preempt_disable();
3235 err = netif_rx(skb);
3236 if (local_softirq_pending())
3237 do_softirq();
3238 preempt_enable();
3239
3240 return err;
3241}
1da177e4
LT
3242EXPORT_SYMBOL(netif_rx_ni);
3243
1da177e4
LT
3244static void net_tx_action(struct softirq_action *h)
3245{
3246 struct softnet_data *sd = &__get_cpu_var(softnet_data);
3247
3248 if (sd->completion_queue) {
3249 struct sk_buff *clist;
3250
3251 local_irq_disable();
3252 clist = sd->completion_queue;
3253 sd->completion_queue = NULL;
3254 local_irq_enable();
3255
3256 while (clist) {
3257 struct sk_buff *skb = clist;
3258 clist = clist->next;
3259
547b792c 3260 WARN_ON(atomic_read(&skb->users));
07dc22e7 3261 trace_kfree_skb(skb, net_tx_action);
1da177e4
LT
3262 __kfree_skb(skb);
3263 }
3264 }
3265
3266 if (sd->output_queue) {
37437bb2 3267 struct Qdisc *head;
1da177e4
LT
3268
3269 local_irq_disable();
3270 head = sd->output_queue;
3271 sd->output_queue = NULL;
a9cbd588 3272 sd->output_queue_tailp = &sd->output_queue;
1da177e4
LT
3273 local_irq_enable();
3274
3275 while (head) {
37437bb2
DM
3276 struct Qdisc *q = head;
3277 spinlock_t *root_lock;
3278
1da177e4
LT
3279 head = head->next_sched;
3280
5fb66229 3281 root_lock = qdisc_lock(q);
37437bb2 3282 if (spin_trylock(root_lock)) {
def82a1d
JP
3283 smp_mb__before_clear_bit();
3284 clear_bit(__QDISC_STATE_SCHED,
3285 &q->state);
37437bb2
DM
3286 qdisc_run(q);
3287 spin_unlock(root_lock);
1da177e4 3288 } else {
195648bb 3289 if (!test_bit(__QDISC_STATE_DEACTIVATED,
e8a83e10 3290 &q->state)) {
195648bb 3291 __netif_reschedule(q);
e8a83e10
JP
3292 } else {
3293 smp_mb__before_clear_bit();
3294 clear_bit(__QDISC_STATE_SCHED,
3295 &q->state);
3296 }
1da177e4
LT
3297 }
3298 }
3299 }
3300}
3301
ab95bfe0
JP
3302#if (defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)) && \
3303 (defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE))
da678292
MM
3304/* This hook is defined here for ATM LANE */
3305int (*br_fdb_test_addr_hook)(struct net_device *dev,
3306 unsigned char *addr) __read_mostly;
4fb019a0 3307EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
da678292 3308#endif
1da177e4 3309
1da177e4
LT
3310#ifdef CONFIG_NET_CLS_ACT
3311/* TODO: Maybe we should just force sch_ingress to be compiled in
3312 * when CONFIG_NET_CLS_ACT is? otherwise some useless instructions
3313 * a compare and 2 stores extra right now if we dont have it on
3314 * but have CONFIG_NET_CLS_ACT
25985edc
LDM
3315 * NOTE: This doesn't stop any functionality; if you dont have
3316 * the ingress scheduler, you just can't add policies on ingress.
1da177e4
LT
3317 *
3318 */
24824a09 3319static int ing_filter(struct sk_buff *skb, struct netdev_queue *rxq)
1da177e4 3320{
1da177e4 3321 struct net_device *dev = skb->dev;
f697c3e8 3322 u32 ttl = G_TC_RTTL(skb->tc_verd);
555353cf
DM
3323 int result = TC_ACT_OK;
3324 struct Qdisc *q;
4ec93edb 3325
de384830 3326 if (unlikely(MAX_RED_LOOP < ttl++)) {
e87cc472
JP
3327 net_warn_ratelimited("Redir loop detected Dropping packet (%d->%d)\n",
3328 skb->skb_iif, dev->ifindex);
f697c3e8
HX
3329 return TC_ACT_SHOT;
3330 }
1da177e4 3331
f697c3e8
HX
3332 skb->tc_verd = SET_TC_RTTL(skb->tc_verd, ttl);
3333 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_INGRESS);
1da177e4 3334
83874000 3335 q = rxq->qdisc;
8d50b53d 3336 if (q != &noop_qdisc) {
83874000 3337 spin_lock(qdisc_lock(q));
a9312ae8
DM
3338 if (likely(!test_bit(__QDISC_STATE_DEACTIVATED, &q->state)))
3339 result = qdisc_enqueue_root(skb, q);
83874000
DM
3340 spin_unlock(qdisc_lock(q));
3341 }
f697c3e8
HX
3342
3343 return result;
3344}
86e65da9 3345
f697c3e8
HX
3346static inline struct sk_buff *handle_ing(struct sk_buff *skb,
3347 struct packet_type **pt_prev,
3348 int *ret, struct net_device *orig_dev)
3349{
24824a09
ED
3350 struct netdev_queue *rxq = rcu_dereference(skb->dev->ingress_queue);
3351
3352 if (!rxq || rxq->qdisc == &noop_qdisc)
f697c3e8 3353 goto out;
1da177e4 3354
f697c3e8
HX
3355 if (*pt_prev) {
3356 *ret = deliver_skb(skb, *pt_prev, orig_dev);
3357 *pt_prev = NULL;
1da177e4
LT
3358 }
3359
24824a09 3360 switch (ing_filter(skb, rxq)) {
f697c3e8
HX
3361 case TC_ACT_SHOT:
3362 case TC_ACT_STOLEN:
3363 kfree_skb(skb);
3364 return NULL;
3365 }
3366
3367out:
3368 skb->tc_verd = 0;
3369 return skb;
1da177e4
LT
3370}
3371#endif
3372
ab95bfe0
JP
3373/**
3374 * netdev_rx_handler_register - register receive handler
3375 * @dev: device to register a handler for
3376 * @rx_handler: receive handler to register
93e2c32b 3377 * @rx_handler_data: data pointer that is used by rx handler
ab95bfe0
JP
3378 *
3379 * Register a receive hander for a device. This handler will then be
3380 * called from __netif_receive_skb. A negative errno code is returned
3381 * on a failure.
3382 *
3383 * The caller must hold the rtnl_mutex.
8a4eb573
JP
3384 *
3385 * For a general description of rx_handler, see enum rx_handler_result.
ab95bfe0
JP
3386 */
3387int netdev_rx_handler_register(struct net_device *dev,
93e2c32b
JP
3388 rx_handler_func_t *rx_handler,
3389 void *rx_handler_data)
ab95bfe0
JP
3390{
3391 ASSERT_RTNL();
3392
3393 if (dev->rx_handler)
3394 return -EBUSY;
3395
00cfec37 3396 /* Note: rx_handler_data must be set before rx_handler */
93e2c32b 3397 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
ab95bfe0
JP
3398 rcu_assign_pointer(dev->rx_handler, rx_handler);
3399
3400 return 0;
3401}
3402EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
3403
3404/**
3405 * netdev_rx_handler_unregister - unregister receive handler
3406 * @dev: device to unregister a handler from
3407 *
166ec369 3408 * Unregister a receive handler from a device.
ab95bfe0
JP
3409 *
3410 * The caller must hold the rtnl_mutex.
3411 */
3412void netdev_rx_handler_unregister(struct net_device *dev)
3413{
3414
3415 ASSERT_RTNL();
a9b3cd7f 3416 RCU_INIT_POINTER(dev->rx_handler, NULL);
00cfec37
ED
3417 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
3418 * section has a guarantee to see a non NULL rx_handler_data
3419 * as well.
3420 */
3421 synchronize_net();
a9b3cd7f 3422 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
ab95bfe0
JP
3423}
3424EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
3425
b4b9e355
MG
3426/*
3427 * Limit the use of PFMEMALLOC reserves to those protocols that implement
3428 * the special handling of PFMEMALLOC skbs.
3429 */
3430static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
3431{
3432 switch (skb->protocol) {
3433 case __constant_htons(ETH_P_ARP):
3434 case __constant_htons(ETH_P_IP):
3435 case __constant_htons(ETH_P_IPV6):
3436 case __constant_htons(ETH_P_8021Q):
8ad227ff 3437 case __constant_htons(ETH_P_8021AD):
b4b9e355
MG
3438 return true;
3439 default:
3440 return false;
3441 }
3442}
3443
9754e293 3444static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc)
1da177e4
LT
3445{
3446 struct packet_type *ptype, *pt_prev;
ab95bfe0 3447 rx_handler_func_t *rx_handler;
f2ccd8fa 3448 struct net_device *orig_dev;
63d8ea7f 3449 struct net_device *null_or_dev;
8a4eb573 3450 bool deliver_exact = false;
1da177e4 3451 int ret = NET_RX_DROP;
252e3346 3452 __be16 type;
1da177e4 3453
588f0330 3454 net_timestamp_check(!netdev_tstamp_prequeue, skb);
81bbb3d4 3455
cf66ba58 3456 trace_netif_receive_skb(skb);
9b22ea56 3457
1da177e4 3458 /* if we've gotten here through NAPI, check netpoll */
bea3348e 3459 if (netpoll_receive_skb(skb))
b4b9e355 3460 goto out;
1da177e4 3461
cc9bd5ce 3462 orig_dev = skb->dev;
8f903c70 3463
c1d2bbe1 3464 skb_reset_network_header(skb);
fda55eca
ED
3465 if (!skb_transport_header_was_set(skb))
3466 skb_reset_transport_header(skb);
0b5c9db1 3467 skb_reset_mac_len(skb);
1da177e4
LT
3468
3469 pt_prev = NULL;
3470
3471 rcu_read_lock();
3472
63d8ea7f 3473another_round:
b6858177 3474 skb->skb_iif = skb->dev->ifindex;
63d8ea7f
DM
3475
3476 __this_cpu_inc(softnet_data.processed);
3477
8ad227ff
PM
3478 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
3479 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
bcc6d479
JP
3480 skb = vlan_untag(skb);
3481 if (unlikely(!skb))
b4b9e355 3482 goto unlock;
bcc6d479
JP
3483 }
3484
1da177e4
LT
3485#ifdef CONFIG_NET_CLS_ACT
3486 if (skb->tc_verd & TC_NCLS) {
3487 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
3488 goto ncls;
3489 }
3490#endif
3491
9754e293 3492 if (pfmemalloc)
b4b9e355
MG
3493 goto skip_taps;
3494
1da177e4 3495 list_for_each_entry_rcu(ptype, &ptype_all, list) {
63d8ea7f 3496 if (!ptype->dev || ptype->dev == skb->dev) {
4ec93edb 3497 if (pt_prev)
f2ccd8fa 3498 ret = deliver_skb(skb, pt_prev, orig_dev);
1da177e4
LT
3499 pt_prev = ptype;
3500 }
3501 }
3502
b4b9e355 3503skip_taps:
1da177e4 3504#ifdef CONFIG_NET_CLS_ACT
f697c3e8
HX
3505 skb = handle_ing(skb, &pt_prev, &ret, orig_dev);
3506 if (!skb)
b4b9e355 3507 goto unlock;
1da177e4
LT
3508ncls:
3509#endif
3510
9754e293 3511 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
b4b9e355
MG
3512 goto drop;
3513
2425717b
JF
3514 if (vlan_tx_tag_present(skb)) {
3515 if (pt_prev) {
3516 ret = deliver_skb(skb, pt_prev, orig_dev);
3517 pt_prev = NULL;
3518 }
48cc32d3 3519 if (vlan_do_receive(&skb))
2425717b
JF
3520 goto another_round;
3521 else if (unlikely(!skb))
b4b9e355 3522 goto unlock;
2425717b
JF
3523 }
3524
48cc32d3 3525 rx_handler = rcu_dereference(skb->dev->rx_handler);
ab95bfe0
JP
3526 if (rx_handler) {
3527 if (pt_prev) {
3528 ret = deliver_skb(skb, pt_prev, orig_dev);
3529 pt_prev = NULL;
3530 }
8a4eb573
JP
3531 switch (rx_handler(&skb)) {
3532 case RX_HANDLER_CONSUMED:
3bc1b1ad 3533 ret = NET_RX_SUCCESS;
b4b9e355 3534 goto unlock;
8a4eb573 3535 case RX_HANDLER_ANOTHER:
63d8ea7f 3536 goto another_round;
8a4eb573
JP
3537 case RX_HANDLER_EXACT:
3538 deliver_exact = true;
3539 case RX_HANDLER_PASS:
3540 break;
3541 default:
3542 BUG();
3543 }
ab95bfe0 3544 }
1da177e4 3545
48cc32d3
FZ
3546 if (vlan_tx_nonzero_tag_present(skb))
3547 skb->pkt_type = PACKET_OTHERHOST;
3548
63d8ea7f 3549 /* deliver only exact match when indicated */
8a4eb573 3550 null_or_dev = deliver_exact ? skb->dev : NULL;
1f3c8804 3551
1da177e4 3552 type = skb->protocol;
82d8a867
PE
3553 list_for_each_entry_rcu(ptype,
3554 &ptype_base[ntohs(type) & PTYPE_HASH_MASK], list) {
63d8ea7f 3555 if (ptype->type == type &&
e3f48d37
JP
3556 (ptype->dev == null_or_dev || ptype->dev == skb->dev ||
3557 ptype->dev == orig_dev)) {
4ec93edb 3558 if (pt_prev)
f2ccd8fa 3559 ret = deliver_skb(skb, pt_prev, orig_dev);
1da177e4
LT
3560 pt_prev = ptype;
3561 }
3562 }
3563
3564 if (pt_prev) {
1080e512 3565 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
0e698bf6 3566 goto drop;
1080e512
MT
3567 else
3568 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1da177e4 3569 } else {
b4b9e355 3570drop:
caf586e5 3571 atomic_long_inc(&skb->dev->rx_dropped);
1da177e4
LT
3572 kfree_skb(skb);
3573 /* Jamal, now you will not able to escape explaining
3574 * me how you were going to use this. :-)
3575 */
3576 ret = NET_RX_DROP;
3577 }
3578
b4b9e355 3579unlock:
1da177e4 3580 rcu_read_unlock();
b4b9e355 3581out:
9754e293
DM
3582 return ret;
3583}
3584
3585static int __netif_receive_skb(struct sk_buff *skb)
3586{
3587 int ret;
3588
3589 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
3590 unsigned long pflags = current->flags;
3591
3592 /*
3593 * PFMEMALLOC skbs are special, they should
3594 * - be delivered to SOCK_MEMALLOC sockets only
3595 * - stay away from userspace
3596 * - have bounded memory usage
3597 *
3598 * Use PF_MEMALLOC as this saves us from propagating the allocation
3599 * context down to all allocation sites.
3600 */
3601 current->flags |= PF_MEMALLOC;
3602 ret = __netif_receive_skb_core(skb, true);
3603 tsk_restore_flags(current, pflags, PF_MEMALLOC);
3604 } else
3605 ret = __netif_receive_skb_core(skb, false);
3606
1da177e4
LT
3607 return ret;
3608}
0a9627f2
TH
3609
3610/**
3611 * netif_receive_skb - process receive buffer from network
3612 * @skb: buffer to process
3613 *
3614 * netif_receive_skb() is the main receive data processing function.
3615 * It always succeeds. The buffer may be dropped during processing
3616 * for congestion control or by the protocol layers.
3617 *
3618 * This function may only be called from softirq context and interrupts
3619 * should be enabled.
3620 *
3621 * Return values (usually ignored):
3622 * NET_RX_SUCCESS: no congestion
3623 * NET_RX_DROP: packet was dropped
3624 */
3625int netif_receive_skb(struct sk_buff *skb)
3626{
588f0330 3627 net_timestamp_check(netdev_tstamp_prequeue, skb);
3b098e2d 3628
c1f19b51
RC
3629 if (skb_defer_rx_timestamp(skb))
3630 return NET_RX_SUCCESS;
3631
df334545 3632#ifdef CONFIG_RPS
c5905afb 3633 if (static_key_false(&rps_needed)) {
3b098e2d
ED
3634 struct rps_dev_flow voidflow, *rflow = &voidflow;
3635 int cpu, ret;
fec5e652 3636
3b098e2d
ED
3637 rcu_read_lock();
3638
3639 cpu = get_rps_cpu(skb->dev, skb, &rflow);
0a9627f2 3640
3b098e2d
ED
3641 if (cpu >= 0) {
3642 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3643 rcu_read_unlock();
adc9300e 3644 return ret;
3b098e2d 3645 }
adc9300e 3646 rcu_read_unlock();
fec5e652 3647 }
1e94d72f 3648#endif
adc9300e 3649 return __netif_receive_skb(skb);
0a9627f2 3650}
d1b19dff 3651EXPORT_SYMBOL(netif_receive_skb);
1da177e4 3652
88751275
ED
3653/* Network device is going away, flush any packets still pending
3654 * Called with irqs disabled.
3655 */
152102c7 3656static void flush_backlog(void *arg)
6e583ce5 3657{
152102c7 3658 struct net_device *dev = arg;
e36fa2f7 3659 struct softnet_data *sd = &__get_cpu_var(softnet_data);
6e583ce5
SH
3660 struct sk_buff *skb, *tmp;
3661
e36fa2f7 3662 rps_lock(sd);
6e7676c1 3663 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
6e583ce5 3664 if (skb->dev == dev) {
e36fa2f7 3665 __skb_unlink(skb, &sd->input_pkt_queue);
6e583ce5 3666 kfree_skb(skb);
76cc8b13 3667 input_queue_head_incr(sd);
6e583ce5 3668 }
6e7676c1 3669 }
e36fa2f7 3670 rps_unlock(sd);
6e7676c1
CG
3671
3672 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
3673 if (skb->dev == dev) {
3674 __skb_unlink(skb, &sd->process_queue);
3675 kfree_skb(skb);
76cc8b13 3676 input_queue_head_incr(sd);
6e7676c1
CG
3677 }
3678 }
6e583ce5
SH
3679}
3680
d565b0a1
HX
3681static int napi_gro_complete(struct sk_buff *skb)
3682{
22061d80 3683 struct packet_offload *ptype;
d565b0a1 3684 __be16 type = skb->protocol;
22061d80 3685 struct list_head *head = &offload_base;
d565b0a1
HX
3686 int err = -ENOENT;
3687
c3c7c254
ED
3688 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
3689
fc59f9a3
HX
3690 if (NAPI_GRO_CB(skb)->count == 1) {
3691 skb_shinfo(skb)->gso_size = 0;
d565b0a1 3692 goto out;
fc59f9a3 3693 }
d565b0a1
HX
3694
3695 rcu_read_lock();
3696 list_for_each_entry_rcu(ptype, head, list) {
f191a1d1 3697 if (ptype->type != type || !ptype->callbacks.gro_complete)
d565b0a1
HX
3698 continue;
3699
f191a1d1 3700 err = ptype->callbacks.gro_complete(skb);
d565b0a1
HX
3701 break;
3702 }
3703 rcu_read_unlock();
3704
3705 if (err) {
3706 WARN_ON(&ptype->list == head);
3707 kfree_skb(skb);
3708 return NET_RX_SUCCESS;
3709 }
3710
3711out:
d565b0a1
HX
3712 return netif_receive_skb(skb);
3713}
3714
2e71a6f8
ED
3715/* napi->gro_list contains packets ordered by age.
3716 * youngest packets at the head of it.
3717 * Complete skbs in reverse order to reduce latencies.
3718 */
3719void napi_gro_flush(struct napi_struct *napi, bool flush_old)
d565b0a1 3720{
2e71a6f8 3721 struct sk_buff *skb, *prev = NULL;
d565b0a1 3722
2e71a6f8
ED
3723 /* scan list and build reverse chain */
3724 for (skb = napi->gro_list; skb != NULL; skb = skb->next) {
3725 skb->prev = prev;
3726 prev = skb;
3727 }
3728
3729 for (skb = prev; skb; skb = prev) {
d565b0a1 3730 skb->next = NULL;
2e71a6f8
ED
3731
3732 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
3733 return;
3734
3735 prev = skb->prev;
d565b0a1 3736 napi_gro_complete(skb);
2e71a6f8 3737 napi->gro_count--;
d565b0a1
HX
3738 }
3739
3740 napi->gro_list = NULL;
3741}
86cac58b 3742EXPORT_SYMBOL(napi_gro_flush);
d565b0a1 3743
89c5fa33
ED
3744static void gro_list_prepare(struct napi_struct *napi, struct sk_buff *skb)
3745{
3746 struct sk_buff *p;
3747 unsigned int maclen = skb->dev->hard_header_len;
3748
3749 for (p = napi->gro_list; p; p = p->next) {
3750 unsigned long diffs;
3751
3752 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
3753 diffs |= p->vlan_tci ^ skb->vlan_tci;
3754 if (maclen == ETH_HLEN)
3755 diffs |= compare_ether_header(skb_mac_header(p),
3756 skb_gro_mac_header(skb));
3757 else if (!diffs)
3758 diffs = memcmp(skb_mac_header(p),
3759 skb_gro_mac_header(skb),
3760 maclen);
3761 NAPI_GRO_CB(p)->same_flow = !diffs;
3762 NAPI_GRO_CB(p)->flush = 0;
3763 }
3764}
3765
bb728820 3766static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
d565b0a1
HX
3767{
3768 struct sk_buff **pp = NULL;
22061d80 3769 struct packet_offload *ptype;
d565b0a1 3770 __be16 type = skb->protocol;
22061d80 3771 struct list_head *head = &offload_base;
0da2afd5 3772 int same_flow;
5b252f0c 3773 enum gro_result ret;
d565b0a1 3774
ce9e76c8 3775 if (!(skb->dev->features & NETIF_F_GRO) || netpoll_rx_on(skb))
d565b0a1
HX
3776 goto normal;
3777
21dc3301 3778 if (skb_is_gso(skb) || skb_has_frag_list(skb))
f17f5c91
HX
3779 goto normal;
3780
89c5fa33
ED
3781 gro_list_prepare(napi, skb);
3782
d565b0a1
HX
3783 rcu_read_lock();
3784 list_for_each_entry_rcu(ptype, head, list) {
f191a1d1 3785 if (ptype->type != type || !ptype->callbacks.gro_receive)
d565b0a1
HX
3786 continue;
3787
86911732 3788 skb_set_network_header(skb, skb_gro_offset(skb));
efd9450e 3789 skb_reset_mac_len(skb);
d565b0a1
HX
3790 NAPI_GRO_CB(skb)->same_flow = 0;
3791 NAPI_GRO_CB(skb)->flush = 0;
5d38a079 3792 NAPI_GRO_CB(skb)->free = 0;
d565b0a1 3793
f191a1d1 3794 pp = ptype->callbacks.gro_receive(&napi->gro_list, skb);
d565b0a1
HX
3795 break;
3796 }
3797 rcu_read_unlock();
3798
3799 if (&ptype->list == head)
3800 goto normal;
3801
0da2afd5 3802 same_flow = NAPI_GRO_CB(skb)->same_flow;
5d0d9be8 3803 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
0da2afd5 3804
d565b0a1
HX
3805 if (pp) {
3806 struct sk_buff *nskb = *pp;
3807
3808 *pp = nskb->next;
3809 nskb->next = NULL;
3810 napi_gro_complete(nskb);
4ae5544f 3811 napi->gro_count--;
d565b0a1
HX
3812 }
3813
0da2afd5 3814 if (same_flow)
d565b0a1
HX
3815 goto ok;
3816
4ae5544f 3817 if (NAPI_GRO_CB(skb)->flush || napi->gro_count >= MAX_GRO_SKBS)
d565b0a1 3818 goto normal;
d565b0a1 3819
4ae5544f 3820 napi->gro_count++;
d565b0a1 3821 NAPI_GRO_CB(skb)->count = 1;
2e71a6f8 3822 NAPI_GRO_CB(skb)->age = jiffies;
86911732 3823 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
d565b0a1
HX
3824 skb->next = napi->gro_list;
3825 napi->gro_list = skb;
5d0d9be8 3826 ret = GRO_HELD;
d565b0a1 3827
ad0f9904 3828pull:
cb18978c
HX
3829 if (skb_headlen(skb) < skb_gro_offset(skb)) {
3830 int grow = skb_gro_offset(skb) - skb_headlen(skb);
3831
3832 BUG_ON(skb->end - skb->tail < grow);
3833
3834 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
3835
3836 skb->tail += grow;
3837 skb->data_len -= grow;
3838
3839 skb_shinfo(skb)->frags[0].page_offset += grow;
9e903e08 3840 skb_frag_size_sub(&skb_shinfo(skb)->frags[0], grow);
cb18978c 3841
9e903e08 3842 if (unlikely(!skb_frag_size(&skb_shinfo(skb)->frags[0]))) {
ea2ab693 3843 skb_frag_unref(skb, 0);
cb18978c
HX
3844 memmove(skb_shinfo(skb)->frags,
3845 skb_shinfo(skb)->frags + 1,
e5093aec 3846 --skb_shinfo(skb)->nr_frags * sizeof(skb_frag_t));
cb18978c 3847 }
ad0f9904
HX
3848 }
3849
d565b0a1 3850ok:
5d0d9be8 3851 return ret;
d565b0a1
HX
3852
3853normal:
ad0f9904
HX
3854 ret = GRO_NORMAL;
3855 goto pull;
5d38a079 3856}
96e93eab 3857
5d38a079 3858
bb728820 3859static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
5d38a079 3860{
5d0d9be8
HX
3861 switch (ret) {
3862 case GRO_NORMAL:
c7c4b3b6
BH
3863 if (netif_receive_skb(skb))
3864 ret = GRO_DROP;
3865 break;
5d38a079 3866
5d0d9be8 3867 case GRO_DROP:
5d38a079
HX
3868 kfree_skb(skb);
3869 break;
5b252f0c 3870
daa86548 3871 case GRO_MERGED_FREE:
d7e8883c
ED
3872 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
3873 kmem_cache_free(skbuff_head_cache, skb);
3874 else
3875 __kfree_skb(skb);
daa86548
ED
3876 break;
3877
5b252f0c
BH
3878 case GRO_HELD:
3879 case GRO_MERGED:
3880 break;
5d38a079
HX
3881 }
3882
c7c4b3b6 3883 return ret;
5d0d9be8 3884}
5d0d9be8 3885
ca07e43e 3886static void skb_gro_reset_offset(struct sk_buff *skb)
78a478d0 3887{
ca07e43e
ED
3888 const struct skb_shared_info *pinfo = skb_shinfo(skb);
3889 const skb_frag_t *frag0 = &pinfo->frags[0];
3890
78a478d0
HX
3891 NAPI_GRO_CB(skb)->data_offset = 0;
3892 NAPI_GRO_CB(skb)->frag0 = NULL;
7489594c 3893 NAPI_GRO_CB(skb)->frag0_len = 0;
78a478d0 3894
ced14f68 3895 if (skb_mac_header(skb) == skb_tail_pointer(skb) &&
ca07e43e
ED
3896 pinfo->nr_frags &&
3897 !PageHighMem(skb_frag_page(frag0))) {
3898 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
3899 NAPI_GRO_CB(skb)->frag0_len = skb_frag_size(frag0);
7489594c 3900 }
78a478d0 3901}
78a478d0 3902
c7c4b3b6 3903gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
5d0d9be8 3904{
86911732
HX
3905 skb_gro_reset_offset(skb);
3906
89c5fa33 3907 return napi_skb_finish(dev_gro_receive(napi, skb), skb);
d565b0a1
HX
3908}
3909EXPORT_SYMBOL(napi_gro_receive);
3910
d0c2b0d2 3911static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
96e93eab 3912{
96e93eab 3913 __skb_pull(skb, skb_headlen(skb));
2a2a459e
ED
3914 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
3915 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
3701e513 3916 skb->vlan_tci = 0;
66c46d74 3917 skb->dev = napi->dev;
6d152e23 3918 skb->skb_iif = 0;
96e93eab
HX
3919
3920 napi->skb = skb;
3921}
96e93eab 3922
76620aaf 3923struct sk_buff *napi_get_frags(struct napi_struct *napi)
5d38a079 3924{
5d38a079 3925 struct sk_buff *skb = napi->skb;
5d38a079
HX
3926
3927 if (!skb) {
89d71a66
ED
3928 skb = netdev_alloc_skb_ip_align(napi->dev, GRO_MAX_HEAD);
3929 if (skb)
3930 napi->skb = skb;
80595d59 3931 }
96e93eab
HX
3932 return skb;
3933}
76620aaf 3934EXPORT_SYMBOL(napi_get_frags);
96e93eab 3935
bb728820 3936static gro_result_t napi_frags_finish(struct napi_struct *napi, struct sk_buff *skb,
c7c4b3b6 3937 gro_result_t ret)
96e93eab 3938{
5d0d9be8
HX
3939 switch (ret) {
3940 case GRO_NORMAL:
86911732 3941 case GRO_HELD:
e76b69cc 3942 skb->protocol = eth_type_trans(skb, skb->dev);
86911732 3943
c7c4b3b6
BH
3944 if (ret == GRO_HELD)
3945 skb_gro_pull(skb, -ETH_HLEN);
3946 else if (netif_receive_skb(skb))
3947 ret = GRO_DROP;
86911732 3948 break;
5d38a079 3949
5d0d9be8 3950 case GRO_DROP:
5d0d9be8
HX
3951 case GRO_MERGED_FREE:
3952 napi_reuse_skb(napi, skb);
3953 break;
5b252f0c
BH
3954
3955 case GRO_MERGED:
3956 break;
5d0d9be8 3957 }
5d38a079 3958
c7c4b3b6 3959 return ret;
5d38a079 3960}
5d0d9be8 3961
4adb9c4a 3962static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
76620aaf
HX
3963{
3964 struct sk_buff *skb = napi->skb;
3965 struct ethhdr *eth;
a5b1cf28
HX
3966 unsigned int hlen;
3967 unsigned int off;
76620aaf
HX
3968
3969 napi->skb = NULL;
3970
3971 skb_reset_mac_header(skb);
3972 skb_gro_reset_offset(skb);
3973
a5b1cf28
HX
3974 off = skb_gro_offset(skb);
3975 hlen = off + sizeof(*eth);
3976 eth = skb_gro_header_fast(skb, off);
3977 if (skb_gro_header_hard(skb, hlen)) {
3978 eth = skb_gro_header_slow(skb, hlen, off);
3979 if (unlikely(!eth)) {
3980 napi_reuse_skb(napi, skb);
3981 skb = NULL;
3982 goto out;
3983 }
76620aaf
HX
3984 }
3985
3986 skb_gro_pull(skb, sizeof(*eth));
3987
3988 /*
3989 * This works because the only protocols we care about don't require
3990 * special handling. We'll fix it up properly at the end.
3991 */
3992 skb->protocol = eth->h_proto;
3993
3994out:
3995 return skb;
3996}
76620aaf 3997
c7c4b3b6 3998gro_result_t napi_gro_frags(struct napi_struct *napi)
5d0d9be8 3999{
76620aaf 4000 struct sk_buff *skb = napi_frags_skb(napi);
5d0d9be8
HX
4001
4002 if (!skb)
c7c4b3b6 4003 return GRO_DROP;
5d0d9be8 4004
89c5fa33 4005 return napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
5d0d9be8 4006}
5d38a079
HX
4007EXPORT_SYMBOL(napi_gro_frags);
4008
e326bed2
ED
4009/*
4010 * net_rps_action sends any pending IPI's for rps.
4011 * Note: called with local irq disabled, but exits with local irq enabled.
4012 */
4013static void net_rps_action_and_irq_enable(struct softnet_data *sd)
4014{
4015#ifdef CONFIG_RPS
4016 struct softnet_data *remsd = sd->rps_ipi_list;
4017
4018 if (remsd) {
4019 sd->rps_ipi_list = NULL;
4020
4021 local_irq_enable();
4022
4023 /* Send pending IPI's to kick RPS processing on remote cpus. */
4024 while (remsd) {
4025 struct softnet_data *next = remsd->rps_ipi_next;
4026
4027 if (cpu_online(remsd->cpu))
4028 __smp_call_function_single(remsd->cpu,
4029 &remsd->csd, 0);
4030 remsd = next;
4031 }
4032 } else
4033#endif
4034 local_irq_enable();
4035}
4036
bea3348e 4037static int process_backlog(struct napi_struct *napi, int quota)
1da177e4
LT
4038{
4039 int work = 0;
eecfd7c4 4040 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
1da177e4 4041
e326bed2
ED
4042#ifdef CONFIG_RPS
4043 /* Check if we have pending ipi, its better to send them now,
4044 * not waiting net_rx_action() end.
4045 */
4046 if (sd->rps_ipi_list) {
4047 local_irq_disable();
4048 net_rps_action_and_irq_enable(sd);
4049 }
4050#endif
bea3348e 4051 napi->weight = weight_p;
6e7676c1
CG
4052 local_irq_disable();
4053 while (work < quota) {
1da177e4 4054 struct sk_buff *skb;
6e7676c1
CG
4055 unsigned int qlen;
4056
4057 while ((skb = __skb_dequeue(&sd->process_queue))) {
4058 local_irq_enable();
4059 __netif_receive_skb(skb);
6e7676c1 4060 local_irq_disable();
76cc8b13
TH
4061 input_queue_head_incr(sd);
4062 if (++work >= quota) {
4063 local_irq_enable();
4064 return work;
4065 }
6e7676c1 4066 }
1da177e4 4067
e36fa2f7 4068 rps_lock(sd);
6e7676c1 4069 qlen = skb_queue_len(&sd->input_pkt_queue);
76cc8b13 4070 if (qlen)
6e7676c1
CG
4071 skb_queue_splice_tail_init(&sd->input_pkt_queue,
4072 &sd->process_queue);
76cc8b13 4073
6e7676c1 4074 if (qlen < quota - work) {
eecfd7c4
ED
4075 /*
4076 * Inline a custom version of __napi_complete().
4077 * only current cpu owns and manipulates this napi,
4078 * and NAPI_STATE_SCHED is the only possible flag set on backlog.
4079 * we can use a plain write instead of clear_bit(),
4080 * and we dont need an smp_mb() memory barrier.
4081 */
4082 list_del(&napi->poll_list);
4083 napi->state = 0;
4084
6e7676c1 4085 quota = work + qlen;
bea3348e 4086 }
e36fa2f7 4087 rps_unlock(sd);
6e7676c1
CG
4088 }
4089 local_irq_enable();
1da177e4 4090
bea3348e
SH
4091 return work;
4092}
1da177e4 4093
bea3348e
SH
4094/**
4095 * __napi_schedule - schedule for receive
c4ea43c5 4096 * @n: entry to schedule
bea3348e
SH
4097 *
4098 * The entry's receive function will be scheduled to run
4099 */
b5606c2d 4100void __napi_schedule(struct napi_struct *n)
bea3348e
SH
4101{
4102 unsigned long flags;
1da177e4 4103
bea3348e 4104 local_irq_save(flags);
eecfd7c4 4105 ____napi_schedule(&__get_cpu_var(softnet_data), n);
bea3348e 4106 local_irq_restore(flags);
1da177e4 4107}
bea3348e
SH
4108EXPORT_SYMBOL(__napi_schedule);
4109
d565b0a1
HX
4110void __napi_complete(struct napi_struct *n)
4111{
4112 BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
4113 BUG_ON(n->gro_list);
4114
4115 list_del(&n->poll_list);
4116 smp_mb__before_clear_bit();
4117 clear_bit(NAPI_STATE_SCHED, &n->state);
4118}
4119EXPORT_SYMBOL(__napi_complete);
4120
4121void napi_complete(struct napi_struct *n)
4122{
4123 unsigned long flags;
4124
4125 /*
4126 * don't let napi dequeue from the cpu poll list
4127 * just in case its running on a different cpu
4128 */
4129 if (unlikely(test_bit(NAPI_STATE_NPSVC, &n->state)))
4130 return;
4131
2e71a6f8 4132 napi_gro_flush(n, false);
d565b0a1
HX
4133 local_irq_save(flags);
4134 __napi_complete(n);
4135 local_irq_restore(flags);
4136}
4137EXPORT_SYMBOL(napi_complete);
4138
4139void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
4140 int (*poll)(struct napi_struct *, int), int weight)
4141{
4142 INIT_LIST_HEAD(&napi->poll_list);
4ae5544f 4143 napi->gro_count = 0;
d565b0a1 4144 napi->gro_list = NULL;
5d38a079 4145 napi->skb = NULL;
d565b0a1 4146 napi->poll = poll;
82dc3c63
ED
4147 if (weight > NAPI_POLL_WEIGHT)
4148 pr_err_once("netif_napi_add() called with weight %d on device %s\n",
4149 weight, dev->name);
d565b0a1
HX
4150 napi->weight = weight;
4151 list_add(&napi->dev_list, &dev->napi_list);
d565b0a1 4152 napi->dev = dev;
5d38a079 4153#ifdef CONFIG_NETPOLL
d565b0a1
HX
4154 spin_lock_init(&napi->poll_lock);
4155 napi->poll_owner = -1;
4156#endif
4157 set_bit(NAPI_STATE_SCHED, &napi->state);
4158}
4159EXPORT_SYMBOL(netif_napi_add);
4160
4161void netif_napi_del(struct napi_struct *napi)
4162{
4163 struct sk_buff *skb, *next;
4164
d7b06636 4165 list_del_init(&napi->dev_list);
76620aaf 4166 napi_free_frags(napi);
d565b0a1
HX
4167
4168 for (skb = napi->gro_list; skb; skb = next) {
4169 next = skb->next;
4170 skb->next = NULL;
4171 kfree_skb(skb);
4172 }
4173
4174 napi->gro_list = NULL;
4ae5544f 4175 napi->gro_count = 0;
d565b0a1
HX
4176}
4177EXPORT_SYMBOL(netif_napi_del);
4178
1da177e4
LT
4179static void net_rx_action(struct softirq_action *h)
4180{
e326bed2 4181 struct softnet_data *sd = &__get_cpu_var(softnet_data);
24f8b238 4182 unsigned long time_limit = jiffies + 2;
51b0bded 4183 int budget = netdev_budget;
53fb95d3
MM
4184 void *have;
4185
1da177e4
LT
4186 local_irq_disable();
4187
e326bed2 4188 while (!list_empty(&sd->poll_list)) {
bea3348e
SH
4189 struct napi_struct *n;
4190 int work, weight;
1da177e4 4191
bea3348e 4192 /* If softirq window is exhuasted then punt.
24f8b238
SH
4193 * Allow this to run for 2 jiffies since which will allow
4194 * an average latency of 1.5/HZ.
bea3348e 4195 */
d1f41b67 4196 if (unlikely(budget <= 0 || time_after_eq(jiffies, time_limit)))
1da177e4
LT
4197 goto softnet_break;
4198
4199 local_irq_enable();
4200
bea3348e
SH
4201 /* Even though interrupts have been re-enabled, this
4202 * access is safe because interrupts can only add new
4203 * entries to the tail of this list, and only ->poll()
4204 * calls can remove this head entry from the list.
4205 */
e326bed2 4206 n = list_first_entry(&sd->poll_list, struct napi_struct, poll_list);
1da177e4 4207
bea3348e
SH
4208 have = netpoll_poll_lock(n);
4209
4210 weight = n->weight;
4211
0a7606c1
DM
4212 /* This NAPI_STATE_SCHED test is for avoiding a race
4213 * with netpoll's poll_napi(). Only the entity which
4214 * obtains the lock and sees NAPI_STATE_SCHED set will
4215 * actually make the ->poll() call. Therefore we avoid
25985edc 4216 * accidentally calling ->poll() when NAPI is not scheduled.
0a7606c1
DM
4217 */
4218 work = 0;
4ea7e386 4219 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
0a7606c1 4220 work = n->poll(n, weight);
4ea7e386
NH
4221 trace_napi_poll(n);
4222 }
bea3348e
SH
4223
4224 WARN_ON_ONCE(work > weight);
4225
4226 budget -= work;
4227
4228 local_irq_disable();
4229
4230 /* Drivers must not modify the NAPI state if they
4231 * consume the entire weight. In such cases this code
4232 * still "owns" the NAPI instance and therefore can
4233 * move the instance around on the list at-will.
4234 */
fed17f30 4235 if (unlikely(work == weight)) {
ff780cd8
HX
4236 if (unlikely(napi_disable_pending(n))) {
4237 local_irq_enable();
4238 napi_complete(n);
4239 local_irq_disable();
2e71a6f8
ED
4240 } else {
4241 if (n->gro_list) {
4242 /* flush too old packets
4243 * If HZ < 1000, flush all packets.
4244 */
4245 local_irq_enable();
4246 napi_gro_flush(n, HZ >= 1000);
4247 local_irq_disable();
4248 }
e326bed2 4249 list_move_tail(&n->poll_list, &sd->poll_list);
2e71a6f8 4250 }
fed17f30 4251 }
bea3348e
SH
4252
4253 netpoll_poll_unlock(have);
1da177e4
LT
4254 }
4255out:
e326bed2 4256 net_rps_action_and_irq_enable(sd);
0a9627f2 4257
db217334
CL
4258#ifdef CONFIG_NET_DMA
4259 /*
4260 * There may not be any more sk_buffs coming right now, so push
4261 * any pending DMA copies to hardware
4262 */
2ba05622 4263 dma_issue_pending_all();
db217334 4264#endif
bea3348e 4265
1da177e4
LT
4266 return;
4267
4268softnet_break:
dee42870 4269 sd->time_squeeze++;
1da177e4
LT
4270 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4271 goto out;
4272}
4273
9ff162a8
JP
4274struct netdev_upper {
4275 struct net_device *dev;
4276 bool master;
4277 struct list_head list;
4278 struct rcu_head rcu;
4279 struct list_head search_list;
4280};
4281
4282static void __append_search_uppers(struct list_head *search_list,
4283 struct net_device *dev)
4284{
4285 struct netdev_upper *upper;
4286
4287 list_for_each_entry(upper, &dev->upper_dev_list, list) {
4288 /* check if this upper is not already in search list */
4289 if (list_empty(&upper->search_list))
4290 list_add_tail(&upper->search_list, search_list);
4291 }
4292}
4293
4294static bool __netdev_search_upper_dev(struct net_device *dev,
4295 struct net_device *upper_dev)
4296{
4297 LIST_HEAD(search_list);
4298 struct netdev_upper *upper;
4299 struct netdev_upper *tmp;
4300 bool ret = false;
4301
4302 __append_search_uppers(&search_list, dev);
4303 list_for_each_entry(upper, &search_list, search_list) {
4304 if (upper->dev == upper_dev) {
4305 ret = true;
4306 break;
4307 }
4308 __append_search_uppers(&search_list, upper->dev);
4309 }
4310 list_for_each_entry_safe(upper, tmp, &search_list, search_list)
4311 INIT_LIST_HEAD(&upper->search_list);
4312 return ret;
4313}
4314
4315static struct netdev_upper *__netdev_find_upper(struct net_device *dev,
4316 struct net_device *upper_dev)
4317{
4318 struct netdev_upper *upper;
4319
4320 list_for_each_entry(upper, &dev->upper_dev_list, list) {
4321 if (upper->dev == upper_dev)
4322 return upper;
4323 }
4324 return NULL;
4325}
4326
4327/**
4328 * netdev_has_upper_dev - Check if device is linked to an upper device
4329 * @dev: device
4330 * @upper_dev: upper device to check
4331 *
4332 * Find out if a device is linked to specified upper device and return true
4333 * in case it is. Note that this checks only immediate upper device,
4334 * not through a complete stack of devices. The caller must hold the RTNL lock.
4335 */
4336bool netdev_has_upper_dev(struct net_device *dev,
4337 struct net_device *upper_dev)
4338{
4339 ASSERT_RTNL();
4340
4341 return __netdev_find_upper(dev, upper_dev);
4342}
4343EXPORT_SYMBOL(netdev_has_upper_dev);
4344
4345/**
4346 * netdev_has_any_upper_dev - Check if device is linked to some device
4347 * @dev: device
4348 *
4349 * Find out if a device is linked to an upper device and return true in case
4350 * it is. The caller must hold the RTNL lock.
4351 */
4352bool netdev_has_any_upper_dev(struct net_device *dev)
4353{
4354 ASSERT_RTNL();
4355
4356 return !list_empty(&dev->upper_dev_list);
4357}
4358EXPORT_SYMBOL(netdev_has_any_upper_dev);
4359
4360/**
4361 * netdev_master_upper_dev_get - Get master upper device
4362 * @dev: device
4363 *
4364 * Find a master upper device and return pointer to it or NULL in case
4365 * it's not there. The caller must hold the RTNL lock.
4366 */
4367struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
4368{
4369 struct netdev_upper *upper;
4370
4371 ASSERT_RTNL();
4372
4373 if (list_empty(&dev->upper_dev_list))
4374 return NULL;
4375
4376 upper = list_first_entry(&dev->upper_dev_list,
4377 struct netdev_upper, list);
4378 if (likely(upper->master))
4379 return upper->dev;
4380 return NULL;
4381}
4382EXPORT_SYMBOL(netdev_master_upper_dev_get);
4383
4384/**
4385 * netdev_master_upper_dev_get_rcu - Get master upper device
4386 * @dev: device
4387 *
4388 * Find a master upper device and return pointer to it or NULL in case
4389 * it's not there. The caller must hold the RCU read lock.
4390 */
4391struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
4392{
4393 struct netdev_upper *upper;
4394
4395 upper = list_first_or_null_rcu(&dev->upper_dev_list,
4396 struct netdev_upper, list);
4397 if (upper && likely(upper->master))
4398 return upper->dev;
4399 return NULL;
4400}
4401EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
4402
4403static int __netdev_upper_dev_link(struct net_device *dev,
4404 struct net_device *upper_dev, bool master)
4405{
4406 struct netdev_upper *upper;
4407
4408 ASSERT_RTNL();
4409
4410 if (dev == upper_dev)
4411 return -EBUSY;
4412
4413 /* To prevent loops, check if dev is not upper device to upper_dev. */
4414 if (__netdev_search_upper_dev(upper_dev, dev))
4415 return -EBUSY;
4416
4417 if (__netdev_find_upper(dev, upper_dev))
4418 return -EEXIST;
4419
4420 if (master && netdev_master_upper_dev_get(dev))
4421 return -EBUSY;
4422
4423 upper = kmalloc(sizeof(*upper), GFP_KERNEL);
4424 if (!upper)
4425 return -ENOMEM;
4426
4427 upper->dev = upper_dev;
4428 upper->master = master;
4429 INIT_LIST_HEAD(&upper->search_list);
4430
4431 /* Ensure that master upper link is always the first item in list. */
4432 if (master)
4433 list_add_rcu(&upper->list, &dev->upper_dev_list);
4434 else
4435 list_add_tail_rcu(&upper->list, &dev->upper_dev_list);
4436 dev_hold(upper_dev);
42e52bf9 4437 call_netdevice_notifiers(NETDEV_CHANGEUPPER, dev);
9ff162a8
JP
4438 return 0;
4439}
4440
4441/**
4442 * netdev_upper_dev_link - Add a link to the upper device
4443 * @dev: device
4444 * @upper_dev: new upper device
4445 *
4446 * Adds a link to device which is upper to this one. The caller must hold
4447 * the RTNL lock. On a failure a negative errno code is returned.
4448 * On success the reference counts are adjusted and the function
4449 * returns zero.
4450 */
4451int netdev_upper_dev_link(struct net_device *dev,
4452 struct net_device *upper_dev)
4453{
4454 return __netdev_upper_dev_link(dev, upper_dev, false);
4455}
4456EXPORT_SYMBOL(netdev_upper_dev_link);
4457
4458/**
4459 * netdev_master_upper_dev_link - Add a master link to the upper device
4460 * @dev: device
4461 * @upper_dev: new upper device
4462 *
4463 * Adds a link to device which is upper to this one. In this case, only
4464 * one master upper device can be linked, although other non-master devices
4465 * might be linked as well. The caller must hold the RTNL lock.
4466 * On a failure a negative errno code is returned. On success the reference
4467 * counts are adjusted and the function returns zero.
4468 */
4469int netdev_master_upper_dev_link(struct net_device *dev,
4470 struct net_device *upper_dev)
4471{
4472 return __netdev_upper_dev_link(dev, upper_dev, true);
4473}
4474EXPORT_SYMBOL(netdev_master_upper_dev_link);
4475
4476/**
4477 * netdev_upper_dev_unlink - Removes a link to upper device
4478 * @dev: device
4479 * @upper_dev: new upper device
4480 *
4481 * Removes a link to device which is upper to this one. The caller must hold
4482 * the RTNL lock.
4483 */
4484void netdev_upper_dev_unlink(struct net_device *dev,
4485 struct net_device *upper_dev)
4486{
4487 struct netdev_upper *upper;
4488
4489 ASSERT_RTNL();
4490
4491 upper = __netdev_find_upper(dev, upper_dev);
4492 if (!upper)
4493 return;
4494 list_del_rcu(&upper->list);
4495 dev_put(upper_dev);
4496 kfree_rcu(upper, rcu);
42e52bf9 4497 call_netdevice_notifiers(NETDEV_CHANGEUPPER, dev);
9ff162a8
JP
4498}
4499EXPORT_SYMBOL(netdev_upper_dev_unlink);
4500
b6c40d68
PM
4501static void dev_change_rx_flags(struct net_device *dev, int flags)
4502{
d314774c
SH
4503 const struct net_device_ops *ops = dev->netdev_ops;
4504
4505 if ((dev->flags & IFF_UP) && ops->ndo_change_rx_flags)
4506 ops->ndo_change_rx_flags(dev, flags);
b6c40d68
PM
4507}
4508
dad9b335 4509static int __dev_set_promiscuity(struct net_device *dev, int inc)
1da177e4 4510{
b536db93 4511 unsigned int old_flags = dev->flags;
d04a48b0
EB
4512 kuid_t uid;
4513 kgid_t gid;
1da177e4 4514
24023451
PM
4515 ASSERT_RTNL();
4516
dad9b335
WC
4517 dev->flags |= IFF_PROMISC;
4518 dev->promiscuity += inc;
4519 if (dev->promiscuity == 0) {
4520 /*
4521 * Avoid overflow.
4522 * If inc causes overflow, untouch promisc and return error.
4523 */
4524 if (inc < 0)
4525 dev->flags &= ~IFF_PROMISC;
4526 else {
4527 dev->promiscuity -= inc;
7b6cd1ce
JP
4528 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
4529 dev->name);
dad9b335
WC
4530 return -EOVERFLOW;
4531 }
4532 }
52609c0b 4533 if (dev->flags != old_flags) {
7b6cd1ce
JP
4534 pr_info("device %s %s promiscuous mode\n",
4535 dev->name,
4536 dev->flags & IFF_PROMISC ? "entered" : "left");
8192b0c4
DH
4537 if (audit_enabled) {
4538 current_uid_gid(&uid, &gid);
7759db82
KHK
4539 audit_log(current->audit_context, GFP_ATOMIC,
4540 AUDIT_ANOM_PROMISCUOUS,
4541 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
4542 dev->name, (dev->flags & IFF_PROMISC),
4543 (old_flags & IFF_PROMISC),
e1760bd5 4544 from_kuid(&init_user_ns, audit_get_loginuid(current)),
d04a48b0
EB
4545 from_kuid(&init_user_ns, uid),
4546 from_kgid(&init_user_ns, gid),
7759db82 4547 audit_get_sessionid(current));
8192b0c4 4548 }
24023451 4549
b6c40d68 4550 dev_change_rx_flags(dev, IFF_PROMISC);
1da177e4 4551 }
dad9b335 4552 return 0;
1da177e4
LT
4553}
4554
4417da66
PM
4555/**
4556 * dev_set_promiscuity - update promiscuity count on a device
4557 * @dev: device
4558 * @inc: modifier
4559 *
4560 * Add or remove promiscuity from a device. While the count in the device
4561 * remains above zero the interface remains promiscuous. Once it hits zero
4562 * the device reverts back to normal filtering operation. A negative inc
4563 * value is used to drop promiscuity on the device.
dad9b335 4564 * Return 0 if successful or a negative errno code on error.
4417da66 4565 */
dad9b335 4566int dev_set_promiscuity(struct net_device *dev, int inc)
4417da66 4567{
b536db93 4568 unsigned int old_flags = dev->flags;
dad9b335 4569 int err;
4417da66 4570
dad9b335 4571 err = __dev_set_promiscuity(dev, inc);
4b5a698e 4572 if (err < 0)
dad9b335 4573 return err;
4417da66
PM
4574 if (dev->flags != old_flags)
4575 dev_set_rx_mode(dev);
dad9b335 4576 return err;
4417da66 4577}
d1b19dff 4578EXPORT_SYMBOL(dev_set_promiscuity);
4417da66 4579
1da177e4
LT
4580/**
4581 * dev_set_allmulti - update allmulti count on a device
4582 * @dev: device
4583 * @inc: modifier
4584 *
4585 * Add or remove reception of all multicast frames to a device. While the
4586 * count in the device remains above zero the interface remains listening
4587 * to all interfaces. Once it hits zero the device reverts back to normal
4588 * filtering operation. A negative @inc value is used to drop the counter
4589 * when releasing a resource needing all multicasts.
dad9b335 4590 * Return 0 if successful or a negative errno code on error.
1da177e4
LT
4591 */
4592
dad9b335 4593int dev_set_allmulti(struct net_device *dev, int inc)
1da177e4 4594{
b536db93 4595 unsigned int old_flags = dev->flags;
1da177e4 4596
24023451
PM
4597 ASSERT_RTNL();
4598
1da177e4 4599 dev->flags |= IFF_ALLMULTI;
dad9b335
WC
4600 dev->allmulti += inc;
4601 if (dev->allmulti == 0) {
4602 /*
4603 * Avoid overflow.
4604 * If inc causes overflow, untouch allmulti and return error.
4605 */
4606 if (inc < 0)
4607 dev->flags &= ~IFF_ALLMULTI;
4608 else {
4609 dev->allmulti -= inc;
7b6cd1ce
JP
4610 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
4611 dev->name);
dad9b335
WC
4612 return -EOVERFLOW;
4613 }
4614 }
24023451 4615 if (dev->flags ^ old_flags) {
b6c40d68 4616 dev_change_rx_flags(dev, IFF_ALLMULTI);
4417da66 4617 dev_set_rx_mode(dev);
24023451 4618 }
dad9b335 4619 return 0;
4417da66 4620}
d1b19dff 4621EXPORT_SYMBOL(dev_set_allmulti);
4417da66
PM
4622
4623/*
4624 * Upload unicast and multicast address lists to device and
4625 * configure RX filtering. When the device doesn't support unicast
53ccaae1 4626 * filtering it is put in promiscuous mode while unicast addresses
4417da66
PM
4627 * are present.
4628 */
4629void __dev_set_rx_mode(struct net_device *dev)
4630{
d314774c
SH
4631 const struct net_device_ops *ops = dev->netdev_ops;
4632
4417da66
PM
4633 /* dev_open will call this function so the list will stay sane. */
4634 if (!(dev->flags&IFF_UP))
4635 return;
4636
4637 if (!netif_device_present(dev))
40b77c94 4638 return;
4417da66 4639
01789349 4640 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
4417da66
PM
4641 /* Unicast addresses changes may only happen under the rtnl,
4642 * therefore calling __dev_set_promiscuity here is safe.
4643 */
32e7bfc4 4644 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
4417da66 4645 __dev_set_promiscuity(dev, 1);
2d348d1f 4646 dev->uc_promisc = true;
32e7bfc4 4647 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
4417da66 4648 __dev_set_promiscuity(dev, -1);
2d348d1f 4649 dev->uc_promisc = false;
4417da66 4650 }
4417da66 4651 }
01789349
JP
4652
4653 if (ops->ndo_set_rx_mode)
4654 ops->ndo_set_rx_mode(dev);
4417da66
PM
4655}
4656
4657void dev_set_rx_mode(struct net_device *dev)
4658{
b9e40857 4659 netif_addr_lock_bh(dev);
4417da66 4660 __dev_set_rx_mode(dev);
b9e40857 4661 netif_addr_unlock_bh(dev);
1da177e4
LT
4662}
4663
f0db275a
SH
4664/**
4665 * dev_get_flags - get flags reported to userspace
4666 * @dev: device
4667 *
4668 * Get the combination of flag bits exported through APIs to userspace.
4669 */
95c96174 4670unsigned int dev_get_flags(const struct net_device *dev)
1da177e4 4671{
95c96174 4672 unsigned int flags;
1da177e4
LT
4673
4674 flags = (dev->flags & ~(IFF_PROMISC |
4675 IFF_ALLMULTI |
b00055aa
SR
4676 IFF_RUNNING |
4677 IFF_LOWER_UP |
4678 IFF_DORMANT)) |
1da177e4
LT
4679 (dev->gflags & (IFF_PROMISC |
4680 IFF_ALLMULTI));
4681
b00055aa
SR
4682 if (netif_running(dev)) {
4683 if (netif_oper_up(dev))
4684 flags |= IFF_RUNNING;
4685 if (netif_carrier_ok(dev))
4686 flags |= IFF_LOWER_UP;
4687 if (netif_dormant(dev))
4688 flags |= IFF_DORMANT;
4689 }
1da177e4
LT
4690
4691 return flags;
4692}
d1b19dff 4693EXPORT_SYMBOL(dev_get_flags);
1da177e4 4694
bd380811 4695int __dev_change_flags(struct net_device *dev, unsigned int flags)
1da177e4 4696{
b536db93 4697 unsigned int old_flags = dev->flags;
bd380811 4698 int ret;
1da177e4 4699
24023451
PM
4700 ASSERT_RTNL();
4701
1da177e4
LT
4702 /*
4703 * Set the flags on our device.
4704 */
4705
4706 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
4707 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
4708 IFF_AUTOMEDIA)) |
4709 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
4710 IFF_ALLMULTI));
4711
4712 /*
4713 * Load in the correct multicast list now the flags have changed.
4714 */
4715
b6c40d68
PM
4716 if ((old_flags ^ flags) & IFF_MULTICAST)
4717 dev_change_rx_flags(dev, IFF_MULTICAST);
24023451 4718
4417da66 4719 dev_set_rx_mode(dev);
1da177e4
LT
4720
4721 /*
4722 * Have we downed the interface. We handle IFF_UP ourselves
4723 * according to user attempts to set it, rather than blindly
4724 * setting it.
4725 */
4726
4727 ret = 0;
4728 if ((old_flags ^ flags) & IFF_UP) { /* Bit is different ? */
bd380811 4729 ret = ((old_flags & IFF_UP) ? __dev_close : __dev_open)(dev);
1da177e4
LT
4730
4731 if (!ret)
4417da66 4732 dev_set_rx_mode(dev);
1da177e4
LT
4733 }
4734
1da177e4 4735 if ((flags ^ dev->gflags) & IFF_PROMISC) {
d1b19dff
ED
4736 int inc = (flags & IFF_PROMISC) ? 1 : -1;
4737
1da177e4
LT
4738 dev->gflags ^= IFF_PROMISC;
4739 dev_set_promiscuity(dev, inc);
4740 }
4741
4742 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
4743 is important. Some (broken) drivers set IFF_PROMISC, when
4744 IFF_ALLMULTI is requested not asking us and not reporting.
4745 */
4746 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
d1b19dff
ED
4747 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
4748
1da177e4
LT
4749 dev->gflags ^= IFF_ALLMULTI;
4750 dev_set_allmulti(dev, inc);
4751 }
4752
bd380811
PM
4753 return ret;
4754}
4755
4756void __dev_notify_flags(struct net_device *dev, unsigned int old_flags)
4757{
4758 unsigned int changes = dev->flags ^ old_flags;
4759
4760 if (changes & IFF_UP) {
4761 if (dev->flags & IFF_UP)
4762 call_netdevice_notifiers(NETDEV_UP, dev);
4763 else
4764 call_netdevice_notifiers(NETDEV_DOWN, dev);
4765 }
4766
4767 if (dev->flags & IFF_UP &&
be9efd36
JP
4768 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
4769 struct netdev_notifier_change_info change_info;
4770
4771 change_info.flags_changed = changes;
4772 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
4773 &change_info.info);
4774 }
bd380811
PM
4775}
4776
4777/**
4778 * dev_change_flags - change device settings
4779 * @dev: device
4780 * @flags: device state flags
4781 *
4782 * Change settings on device based state flags. The flags are
4783 * in the userspace exported format.
4784 */
b536db93 4785int dev_change_flags(struct net_device *dev, unsigned int flags)
bd380811 4786{
b536db93
ED
4787 int ret;
4788 unsigned int changes, old_flags = dev->flags;
bd380811
PM
4789
4790 ret = __dev_change_flags(dev, flags);
4791 if (ret < 0)
4792 return ret;
4793
4794 changes = old_flags ^ dev->flags;
7c355f53
TG
4795 if (changes)
4796 rtmsg_ifinfo(RTM_NEWLINK, dev, changes);
1da177e4 4797
bd380811 4798 __dev_notify_flags(dev, old_flags);
1da177e4
LT
4799 return ret;
4800}
d1b19dff 4801EXPORT_SYMBOL(dev_change_flags);
1da177e4 4802
f0db275a
SH
4803/**
4804 * dev_set_mtu - Change maximum transfer unit
4805 * @dev: device
4806 * @new_mtu: new transfer unit
4807 *
4808 * Change the maximum transfer size of the network device.
4809 */
1da177e4
LT
4810int dev_set_mtu(struct net_device *dev, int new_mtu)
4811{
d314774c 4812 const struct net_device_ops *ops = dev->netdev_ops;
1da177e4
LT
4813 int err;
4814
4815 if (new_mtu == dev->mtu)
4816 return 0;
4817
4818 /* MTU must be positive. */
4819 if (new_mtu < 0)
4820 return -EINVAL;
4821
4822 if (!netif_device_present(dev))
4823 return -ENODEV;
4824
4825 err = 0;
d314774c
SH
4826 if (ops->ndo_change_mtu)
4827 err = ops->ndo_change_mtu(dev, new_mtu);
1da177e4
LT
4828 else
4829 dev->mtu = new_mtu;
d314774c 4830
e3d8fabe 4831 if (!err)
056925ab 4832 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
1da177e4
LT
4833 return err;
4834}
d1b19dff 4835EXPORT_SYMBOL(dev_set_mtu);
1da177e4 4836
cbda10fa
VD
4837/**
4838 * dev_set_group - Change group this device belongs to
4839 * @dev: device
4840 * @new_group: group this device should belong to
4841 */
4842void dev_set_group(struct net_device *dev, int new_group)
4843{
4844 dev->group = new_group;
4845}
4846EXPORT_SYMBOL(dev_set_group);
4847
f0db275a
SH
4848/**
4849 * dev_set_mac_address - Change Media Access Control Address
4850 * @dev: device
4851 * @sa: new address
4852 *
4853 * Change the hardware (MAC) address of the device
4854 */
1da177e4
LT
4855int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
4856{
d314774c 4857 const struct net_device_ops *ops = dev->netdev_ops;
1da177e4
LT
4858 int err;
4859
d314774c 4860 if (!ops->ndo_set_mac_address)
1da177e4
LT
4861 return -EOPNOTSUPP;
4862 if (sa->sa_family != dev->type)
4863 return -EINVAL;
4864 if (!netif_device_present(dev))
4865 return -ENODEV;
d314774c 4866 err = ops->ndo_set_mac_address(dev, sa);
f6521516
JP
4867 if (err)
4868 return err;
fbdeca2d 4869 dev->addr_assign_type = NET_ADDR_SET;
f6521516 4870 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
7bf23575 4871 add_device_randomness(dev->dev_addr, dev->addr_len);
f6521516 4872 return 0;
1da177e4 4873}
d1b19dff 4874EXPORT_SYMBOL(dev_set_mac_address);
1da177e4 4875
4bf84c35
JP
4876/**
4877 * dev_change_carrier - Change device carrier
4878 * @dev: device
691b3b7e 4879 * @new_carrier: new value
4bf84c35
JP
4880 *
4881 * Change device carrier
4882 */
4883int dev_change_carrier(struct net_device *dev, bool new_carrier)
4884{
4885 const struct net_device_ops *ops = dev->netdev_ops;
4886
4887 if (!ops->ndo_change_carrier)
4888 return -EOPNOTSUPP;
4889 if (!netif_device_present(dev))
4890 return -ENODEV;
4891 return ops->ndo_change_carrier(dev, new_carrier);
4892}
4893EXPORT_SYMBOL(dev_change_carrier);
4894
1da177e4
LT
4895/**
4896 * dev_new_index - allocate an ifindex
c4ea43c5 4897 * @net: the applicable net namespace
1da177e4
LT
4898 *
4899 * Returns a suitable unique value for a new device interface
4900 * number. The caller must hold the rtnl semaphore or the
4901 * dev_base_lock to be sure it remains unique.
4902 */
881d966b 4903static int dev_new_index(struct net *net)
1da177e4 4904{
aa79e66e 4905 int ifindex = net->ifindex;
1da177e4
LT
4906 for (;;) {
4907 if (++ifindex <= 0)
4908 ifindex = 1;
881d966b 4909 if (!__dev_get_by_index(net, ifindex))
aa79e66e 4910 return net->ifindex = ifindex;
1da177e4
LT
4911 }
4912}
4913
1da177e4 4914/* Delayed registration/unregisteration */
3b5b34fd 4915static LIST_HEAD(net_todo_list);
1da177e4 4916
6f05f629 4917static void net_set_todo(struct net_device *dev)
1da177e4 4918{
1da177e4 4919 list_add_tail(&dev->todo_list, &net_todo_list);
1da177e4
LT
4920}
4921
9b5e383c 4922static void rollback_registered_many(struct list_head *head)
93ee31f1 4923{
e93737b0 4924 struct net_device *dev, *tmp;
9b5e383c 4925
93ee31f1
DL
4926 BUG_ON(dev_boot_phase);
4927 ASSERT_RTNL();
4928
e93737b0 4929 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
9b5e383c 4930 /* Some devices call without registering
e93737b0
KK
4931 * for initialization unwind. Remove those
4932 * devices and proceed with the remaining.
9b5e383c
ED
4933 */
4934 if (dev->reg_state == NETREG_UNINITIALIZED) {
7b6cd1ce
JP
4935 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
4936 dev->name, dev);
93ee31f1 4937
9b5e383c 4938 WARN_ON(1);
e93737b0
KK
4939 list_del(&dev->unreg_list);
4940 continue;
9b5e383c 4941 }
449f4544 4942 dev->dismantle = true;
9b5e383c 4943 BUG_ON(dev->reg_state != NETREG_REGISTERED);
44345724 4944 }
93ee31f1 4945
44345724
OP
4946 /* If device is running, close it first. */
4947 dev_close_many(head);
93ee31f1 4948
44345724 4949 list_for_each_entry(dev, head, unreg_list) {
9b5e383c
ED
4950 /* And unlink it from device chain. */
4951 unlist_netdevice(dev);
93ee31f1 4952
9b5e383c
ED
4953 dev->reg_state = NETREG_UNREGISTERING;
4954 }
93ee31f1
DL
4955
4956 synchronize_net();
4957
9b5e383c
ED
4958 list_for_each_entry(dev, head, unreg_list) {
4959 /* Shutdown queueing discipline. */
4960 dev_shutdown(dev);
93ee31f1
DL
4961
4962
9b5e383c
ED
4963 /* Notify protocols, that we are about to destroy
4964 this device. They should clean all the things.
4965 */
4966 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
93ee31f1 4967
a2835763
PM
4968 if (!dev->rtnl_link_ops ||
4969 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
4970 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
4971
9b5e383c
ED
4972 /*
4973 * Flush the unicast and multicast chains
4974 */
a748ee24 4975 dev_uc_flush(dev);
22bedad3 4976 dev_mc_flush(dev);
93ee31f1 4977
9b5e383c
ED
4978 if (dev->netdev_ops->ndo_uninit)
4979 dev->netdev_ops->ndo_uninit(dev);
93ee31f1 4980
9ff162a8
JP
4981 /* Notifier chain MUST detach us all upper devices. */
4982 WARN_ON(netdev_has_any_upper_dev(dev));
93ee31f1 4983
9b5e383c
ED
4984 /* Remove entries from kobject tree */
4985 netdev_unregister_kobject(dev);
024e9679
AD
4986#ifdef CONFIG_XPS
4987 /* Remove XPS queueing entries */
4988 netif_reset_xps_queues_gt(dev, 0);
4989#endif
9b5e383c 4990 }
93ee31f1 4991
850a545b 4992 synchronize_net();
395264d5 4993
a5ee1551 4994 list_for_each_entry(dev, head, unreg_list)
9b5e383c
ED
4995 dev_put(dev);
4996}
4997
4998static void rollback_registered(struct net_device *dev)
4999{
5000 LIST_HEAD(single);
5001
5002 list_add(&dev->unreg_list, &single);
5003 rollback_registered_many(&single);
ceaaec98 5004 list_del(&single);
93ee31f1
DL
5005}
5006
c8f44aff
MM
5007static netdev_features_t netdev_fix_features(struct net_device *dev,
5008 netdev_features_t features)
b63365a2 5009{
57422dc5
MM
5010 /* Fix illegal checksum combinations */
5011 if ((features & NETIF_F_HW_CSUM) &&
5012 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
6f404e44 5013 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
57422dc5
MM
5014 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
5015 }
5016
b63365a2 5017 /* TSO requires that SG is present as well. */
ea2d3688 5018 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
6f404e44 5019 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
ea2d3688 5020 features &= ~NETIF_F_ALL_TSO;
b63365a2
HX
5021 }
5022
ec5f0615
PS
5023 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
5024 !(features & NETIF_F_IP_CSUM)) {
5025 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
5026 features &= ~NETIF_F_TSO;
5027 features &= ~NETIF_F_TSO_ECN;
5028 }
5029
5030 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
5031 !(features & NETIF_F_IPV6_CSUM)) {
5032 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
5033 features &= ~NETIF_F_TSO6;
5034 }
5035
31d8b9e0
BH
5036 /* TSO ECN requires that TSO is present as well. */
5037 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
5038 features &= ~NETIF_F_TSO_ECN;
5039
212b573f
MM
5040 /* Software GSO depends on SG. */
5041 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
6f404e44 5042 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
212b573f
MM
5043 features &= ~NETIF_F_GSO;
5044 }
5045
acd1130e 5046 /* UFO needs SG and checksumming */
b63365a2 5047 if (features & NETIF_F_UFO) {
79032644
MM
5048 /* maybe split UFO into V4 and V6? */
5049 if (!((features & NETIF_F_GEN_CSUM) ||
5050 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))
5051 == (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
6f404e44 5052 netdev_dbg(dev,
acd1130e 5053 "Dropping NETIF_F_UFO since no checksum offload features.\n");
b63365a2
HX
5054 features &= ~NETIF_F_UFO;
5055 }
5056
5057 if (!(features & NETIF_F_SG)) {
6f404e44 5058 netdev_dbg(dev,
acd1130e 5059 "Dropping NETIF_F_UFO since no NETIF_F_SG feature.\n");
b63365a2
HX
5060 features &= ~NETIF_F_UFO;
5061 }
5062 }
5063
5064 return features;
5065}
b63365a2 5066
6cb6a27c 5067int __netdev_update_features(struct net_device *dev)
5455c699 5068{
c8f44aff 5069 netdev_features_t features;
5455c699
MM
5070 int err = 0;
5071
87267485
MM
5072 ASSERT_RTNL();
5073
5455c699
MM
5074 features = netdev_get_wanted_features(dev);
5075
5076 if (dev->netdev_ops->ndo_fix_features)
5077 features = dev->netdev_ops->ndo_fix_features(dev, features);
5078
5079 /* driver might be less strict about feature dependencies */
5080 features = netdev_fix_features(dev, features);
5081
5082 if (dev->features == features)
6cb6a27c 5083 return 0;
5455c699 5084
c8f44aff
MM
5085 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
5086 &dev->features, &features);
5455c699
MM
5087
5088 if (dev->netdev_ops->ndo_set_features)
5089 err = dev->netdev_ops->ndo_set_features(dev, features);
5090
6cb6a27c 5091 if (unlikely(err < 0)) {
5455c699 5092 netdev_err(dev,
c8f44aff
MM
5093 "set_features() failed (%d); wanted %pNF, left %pNF\n",
5094 err, &features, &dev->features);
6cb6a27c
MM
5095 return -1;
5096 }
5097
5098 if (!err)
5099 dev->features = features;
5100
5101 return 1;
5102}
5103
afe12cc8
MM
5104/**
5105 * netdev_update_features - recalculate device features
5106 * @dev: the device to check
5107 *
5108 * Recalculate dev->features set and send notifications if it
5109 * has changed. Should be called after driver or hardware dependent
5110 * conditions might have changed that influence the features.
5111 */
6cb6a27c
MM
5112void netdev_update_features(struct net_device *dev)
5113{
5114 if (__netdev_update_features(dev))
5115 netdev_features_change(dev);
5455c699
MM
5116}
5117EXPORT_SYMBOL(netdev_update_features);
5118
afe12cc8
MM
5119/**
5120 * netdev_change_features - recalculate device features
5121 * @dev: the device to check
5122 *
5123 * Recalculate dev->features set and send notifications even
5124 * if they have not changed. Should be called instead of
5125 * netdev_update_features() if also dev->vlan_features might
5126 * have changed to allow the changes to be propagated to stacked
5127 * VLAN devices.
5128 */
5129void netdev_change_features(struct net_device *dev)
5130{
5131 __netdev_update_features(dev);
5132 netdev_features_change(dev);
5133}
5134EXPORT_SYMBOL(netdev_change_features);
5135
fc4a7489
PM
5136/**
5137 * netif_stacked_transfer_operstate - transfer operstate
5138 * @rootdev: the root or lower level device to transfer state from
5139 * @dev: the device to transfer operstate to
5140 *
5141 * Transfer operational state from root to device. This is normally
5142 * called when a stacking relationship exists between the root
5143 * device and the device(a leaf device).
5144 */
5145void netif_stacked_transfer_operstate(const struct net_device *rootdev,
5146 struct net_device *dev)
5147{
5148 if (rootdev->operstate == IF_OPER_DORMANT)
5149 netif_dormant_on(dev);
5150 else
5151 netif_dormant_off(dev);
5152
5153 if (netif_carrier_ok(rootdev)) {
5154 if (!netif_carrier_ok(dev))
5155 netif_carrier_on(dev);
5156 } else {
5157 if (netif_carrier_ok(dev))
5158 netif_carrier_off(dev);
5159 }
5160}
5161EXPORT_SYMBOL(netif_stacked_transfer_operstate);
5162
bf264145 5163#ifdef CONFIG_RPS
1b4bf461
ED
5164static int netif_alloc_rx_queues(struct net_device *dev)
5165{
1b4bf461 5166 unsigned int i, count = dev->num_rx_queues;
bd25fa7b 5167 struct netdev_rx_queue *rx;
1b4bf461 5168
bd25fa7b 5169 BUG_ON(count < 1);
1b4bf461 5170
bd25fa7b 5171 rx = kcalloc(count, sizeof(struct netdev_rx_queue), GFP_KERNEL);
62b5942a 5172 if (!rx)
bd25fa7b 5173 return -ENOMEM;
62b5942a 5174
bd25fa7b
TH
5175 dev->_rx = rx;
5176
bd25fa7b 5177 for (i = 0; i < count; i++)
fe822240 5178 rx[i].dev = dev;
1b4bf461
ED
5179 return 0;
5180}
bf264145 5181#endif
1b4bf461 5182
aa942104
CG
5183static void netdev_init_one_queue(struct net_device *dev,
5184 struct netdev_queue *queue, void *_unused)
5185{
5186 /* Initialize queue lock */
5187 spin_lock_init(&queue->_xmit_lock);
5188 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
5189 queue->xmit_lock_owner = -1;
b236da69 5190 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
aa942104 5191 queue->dev = dev;
114cf580
TH
5192#ifdef CONFIG_BQL
5193 dql_init(&queue->dql, HZ);
5194#endif
aa942104
CG
5195}
5196
e6484930
TH
5197static int netif_alloc_netdev_queues(struct net_device *dev)
5198{
5199 unsigned int count = dev->num_tx_queues;
5200 struct netdev_queue *tx;
5201
5202 BUG_ON(count < 1);
5203
5204 tx = kcalloc(count, sizeof(struct netdev_queue), GFP_KERNEL);
62b5942a 5205 if (!tx)
e6484930 5206 return -ENOMEM;
62b5942a 5207
e6484930 5208 dev->_tx = tx;
1d24eb48 5209
e6484930
TH
5210 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
5211 spin_lock_init(&dev->tx_global_lock);
aa942104
CG
5212
5213 return 0;
e6484930
TH
5214}
5215
1da177e4
LT
5216/**
5217 * register_netdevice - register a network device
5218 * @dev: device to register
5219 *
5220 * Take a completed network device structure and add it to the kernel
5221 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
5222 * chain. 0 is returned on success. A negative errno code is returned
5223 * on a failure to set up the device, or if the name is a duplicate.
5224 *
5225 * Callers must hold the rtnl semaphore. You may want
5226 * register_netdev() instead of this.
5227 *
5228 * BUGS:
5229 * The locking appears insufficient to guarantee two parallel registers
5230 * will not get the same name.
5231 */
5232
5233int register_netdevice(struct net_device *dev)
5234{
1da177e4 5235 int ret;
d314774c 5236 struct net *net = dev_net(dev);
1da177e4
LT
5237
5238 BUG_ON(dev_boot_phase);
5239 ASSERT_RTNL();
5240
b17a7c17
SH
5241 might_sleep();
5242
1da177e4
LT
5243 /* When net_device's are persistent, this will be fatal. */
5244 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
d314774c 5245 BUG_ON(!net);
1da177e4 5246
f1f28aa3 5247 spin_lock_init(&dev->addr_list_lock);
cf508b12 5248 netdev_set_addr_lockdep_class(dev);
1da177e4 5249
1da177e4
LT
5250 dev->iflink = -1;
5251
828de4f6 5252 ret = dev_get_valid_name(net, dev, dev->name);
0696c3a8
PP
5253 if (ret < 0)
5254 goto out;
5255
1da177e4 5256 /* Init, if this function is available */
d314774c
SH
5257 if (dev->netdev_ops->ndo_init) {
5258 ret = dev->netdev_ops->ndo_init(dev);
1da177e4
LT
5259 if (ret) {
5260 if (ret > 0)
5261 ret = -EIO;
90833aa4 5262 goto out;
1da177e4
LT
5263 }
5264 }
4ec93edb 5265
f646968f
PM
5266 if (((dev->hw_features | dev->features) &
5267 NETIF_F_HW_VLAN_CTAG_FILTER) &&
d2ed273d
MM
5268 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
5269 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
5270 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
5271 ret = -EINVAL;
5272 goto err_uninit;
5273 }
5274
9c7dafbf
PE
5275 ret = -EBUSY;
5276 if (!dev->ifindex)
5277 dev->ifindex = dev_new_index(net);
5278 else if (__dev_get_by_index(net, dev->ifindex))
5279 goto err_uninit;
5280
1da177e4
LT
5281 if (dev->iflink == -1)
5282 dev->iflink = dev->ifindex;
5283
5455c699
MM
5284 /* Transfer changeable features to wanted_features and enable
5285 * software offloads (GSO and GRO).
5286 */
5287 dev->hw_features |= NETIF_F_SOFT_FEATURES;
14d1232f
MM
5288 dev->features |= NETIF_F_SOFT_FEATURES;
5289 dev->wanted_features = dev->features & dev->hw_features;
1da177e4 5290
c6e1a0d1 5291 /* Turn on no cache copy if HW is doing checksum */
34324dc2
MM
5292 if (!(dev->flags & IFF_LOOPBACK)) {
5293 dev->hw_features |= NETIF_F_NOCACHE_COPY;
5294 if (dev->features & NETIF_F_ALL_CSUM) {
5295 dev->wanted_features |= NETIF_F_NOCACHE_COPY;
5296 dev->features |= NETIF_F_NOCACHE_COPY;
5297 }
c6e1a0d1
TH
5298 }
5299
1180e7d6 5300 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
16c3ea78 5301 */
1180e7d6 5302 dev->vlan_features |= NETIF_F_HIGHDMA;
16c3ea78 5303
ee579677
PS
5304 /* Make NETIF_F_SG inheritable to tunnel devices.
5305 */
5306 dev->hw_enc_features |= NETIF_F_SG;
5307
0d89d203
SH
5308 /* Make NETIF_F_SG inheritable to MPLS.
5309 */
5310 dev->mpls_features |= NETIF_F_SG;
5311
7ffbe3fd
JB
5312 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
5313 ret = notifier_to_errno(ret);
5314 if (ret)
5315 goto err_uninit;
5316
8b41d188 5317 ret = netdev_register_kobject(dev);
b17a7c17 5318 if (ret)
7ce1b0ed 5319 goto err_uninit;
b17a7c17
SH
5320 dev->reg_state = NETREG_REGISTERED;
5321
6cb6a27c 5322 __netdev_update_features(dev);
8e9b59b2 5323
1da177e4
LT
5324 /*
5325 * Default initial state at registry is that the
5326 * device is present.
5327 */
5328
5329 set_bit(__LINK_STATE_PRESENT, &dev->state);
5330
8f4cccbb
BH
5331 linkwatch_init_dev(dev);
5332
1da177e4 5333 dev_init_scheduler(dev);
1da177e4 5334 dev_hold(dev);
ce286d32 5335 list_netdevice(dev);
7bf23575 5336 add_device_randomness(dev->dev_addr, dev->addr_len);
1da177e4 5337
948b337e
JP
5338 /* If the device has permanent device address, driver should
5339 * set dev_addr and also addr_assign_type should be set to
5340 * NET_ADDR_PERM (default value).
5341 */
5342 if (dev->addr_assign_type == NET_ADDR_PERM)
5343 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
5344
1da177e4 5345 /* Notify protocols, that a new device appeared. */
056925ab 5346 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
fcc5a03a 5347 ret = notifier_to_errno(ret);
93ee31f1
DL
5348 if (ret) {
5349 rollback_registered(dev);
5350 dev->reg_state = NETREG_UNREGISTERED;
5351 }
d90a909e
EB
5352 /*
5353 * Prevent userspace races by waiting until the network
5354 * device is fully setup before sending notifications.
5355 */
a2835763
PM
5356 if (!dev->rtnl_link_ops ||
5357 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
5358 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
1da177e4
LT
5359
5360out:
5361 return ret;
7ce1b0ed
HX
5362
5363err_uninit:
d314774c
SH
5364 if (dev->netdev_ops->ndo_uninit)
5365 dev->netdev_ops->ndo_uninit(dev);
7ce1b0ed 5366 goto out;
1da177e4 5367}
d1b19dff 5368EXPORT_SYMBOL(register_netdevice);
1da177e4 5369
937f1ba5
BH
5370/**
5371 * init_dummy_netdev - init a dummy network device for NAPI
5372 * @dev: device to init
5373 *
5374 * This takes a network device structure and initialize the minimum
5375 * amount of fields so it can be used to schedule NAPI polls without
5376 * registering a full blown interface. This is to be used by drivers
5377 * that need to tie several hardware interfaces to a single NAPI
5378 * poll scheduler due to HW limitations.
5379 */
5380int init_dummy_netdev(struct net_device *dev)
5381{
5382 /* Clear everything. Note we don't initialize spinlocks
5383 * are they aren't supposed to be taken by any of the
5384 * NAPI code and this dummy netdev is supposed to be
5385 * only ever used for NAPI polls
5386 */
5387 memset(dev, 0, sizeof(struct net_device));
5388
5389 /* make sure we BUG if trying to hit standard
5390 * register/unregister code path
5391 */
5392 dev->reg_state = NETREG_DUMMY;
5393
937f1ba5
BH
5394 /* NAPI wants this */
5395 INIT_LIST_HEAD(&dev->napi_list);
5396
5397 /* a dummy interface is started by default */
5398 set_bit(__LINK_STATE_PRESENT, &dev->state);
5399 set_bit(__LINK_STATE_START, &dev->state);
5400
29b4433d
ED
5401 /* Note : We dont allocate pcpu_refcnt for dummy devices,
5402 * because users of this 'device' dont need to change
5403 * its refcount.
5404 */
5405
937f1ba5
BH
5406 return 0;
5407}
5408EXPORT_SYMBOL_GPL(init_dummy_netdev);
5409
5410
1da177e4
LT
5411/**
5412 * register_netdev - register a network device
5413 * @dev: device to register
5414 *
5415 * Take a completed network device structure and add it to the kernel
5416 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
5417 * chain. 0 is returned on success. A negative errno code is returned
5418 * on a failure to set up the device, or if the name is a duplicate.
5419 *
38b4da38 5420 * This is a wrapper around register_netdevice that takes the rtnl semaphore
1da177e4
LT
5421 * and expands the device name if you passed a format string to
5422 * alloc_netdev.
5423 */
5424int register_netdev(struct net_device *dev)
5425{
5426 int err;
5427
5428 rtnl_lock();
1da177e4 5429 err = register_netdevice(dev);
1da177e4
LT
5430 rtnl_unlock();
5431 return err;
5432}
5433EXPORT_SYMBOL(register_netdev);
5434
29b4433d
ED
5435int netdev_refcnt_read(const struct net_device *dev)
5436{
5437 int i, refcnt = 0;
5438
5439 for_each_possible_cpu(i)
5440 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
5441 return refcnt;
5442}
5443EXPORT_SYMBOL(netdev_refcnt_read);
5444
2c53040f 5445/**
1da177e4 5446 * netdev_wait_allrefs - wait until all references are gone.
3de7a37b 5447 * @dev: target net_device
1da177e4
LT
5448 *
5449 * This is called when unregistering network devices.
5450 *
5451 * Any protocol or device that holds a reference should register
5452 * for netdevice notification, and cleanup and put back the
5453 * reference if they receive an UNREGISTER event.
5454 * We can get stuck here if buggy protocols don't correctly
4ec93edb 5455 * call dev_put.
1da177e4
LT
5456 */
5457static void netdev_wait_allrefs(struct net_device *dev)
5458{
5459 unsigned long rebroadcast_time, warning_time;
29b4433d 5460 int refcnt;
1da177e4 5461
e014debe
ED
5462 linkwatch_forget_dev(dev);
5463
1da177e4 5464 rebroadcast_time = warning_time = jiffies;
29b4433d
ED
5465 refcnt = netdev_refcnt_read(dev);
5466
5467 while (refcnt != 0) {
1da177e4 5468 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
6756ae4b 5469 rtnl_lock();
1da177e4
LT
5470
5471 /* Rebroadcast unregister notification */
056925ab 5472 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
1da177e4 5473
748e2d93 5474 __rtnl_unlock();
0115e8e3 5475 rcu_barrier();
748e2d93
ED
5476 rtnl_lock();
5477
0115e8e3 5478 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
1da177e4
LT
5479 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
5480 &dev->state)) {
5481 /* We must not have linkwatch events
5482 * pending on unregister. If this
5483 * happens, we simply run the queue
5484 * unscheduled, resulting in a noop
5485 * for this device.
5486 */
5487 linkwatch_run_queue();
5488 }
5489
6756ae4b 5490 __rtnl_unlock();
1da177e4
LT
5491
5492 rebroadcast_time = jiffies;
5493 }
5494
5495 msleep(250);
5496
29b4433d
ED
5497 refcnt = netdev_refcnt_read(dev);
5498
1da177e4 5499 if (time_after(jiffies, warning_time + 10 * HZ)) {
7b6cd1ce
JP
5500 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
5501 dev->name, refcnt);
1da177e4
LT
5502 warning_time = jiffies;
5503 }
5504 }
5505}
5506
5507/* The sequence is:
5508 *
5509 * rtnl_lock();
5510 * ...
5511 * register_netdevice(x1);
5512 * register_netdevice(x2);
5513 * ...
5514 * unregister_netdevice(y1);
5515 * unregister_netdevice(y2);
5516 * ...
5517 * rtnl_unlock();
5518 * free_netdev(y1);
5519 * free_netdev(y2);
5520 *
58ec3b4d 5521 * We are invoked by rtnl_unlock().
1da177e4 5522 * This allows us to deal with problems:
b17a7c17 5523 * 1) We can delete sysfs objects which invoke hotplug
1da177e4
LT
5524 * without deadlocking with linkwatch via keventd.
5525 * 2) Since we run with the RTNL semaphore not held, we can sleep
5526 * safely in order to wait for the netdev refcnt to drop to zero.
58ec3b4d
HX
5527 *
5528 * We must not return until all unregister events added during
5529 * the interval the lock was held have been completed.
1da177e4 5530 */
1da177e4
LT
5531void netdev_run_todo(void)
5532{
626ab0e6 5533 struct list_head list;
1da177e4 5534
1da177e4 5535 /* Snapshot list, allow later requests */
626ab0e6 5536 list_replace_init(&net_todo_list, &list);
58ec3b4d
HX
5537
5538 __rtnl_unlock();
626ab0e6 5539
0115e8e3
ED
5540
5541 /* Wait for rcu callbacks to finish before next phase */
850a545b
EB
5542 if (!list_empty(&list))
5543 rcu_barrier();
5544
1da177e4
LT
5545 while (!list_empty(&list)) {
5546 struct net_device *dev
e5e26d75 5547 = list_first_entry(&list, struct net_device, todo_list);
1da177e4
LT
5548 list_del(&dev->todo_list);
5549
748e2d93 5550 rtnl_lock();
0115e8e3 5551 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
748e2d93 5552 __rtnl_unlock();
0115e8e3 5553
b17a7c17 5554 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
7b6cd1ce 5555 pr_err("network todo '%s' but state %d\n",
b17a7c17
SH
5556 dev->name, dev->reg_state);
5557 dump_stack();
5558 continue;
5559 }
1da177e4 5560
b17a7c17 5561 dev->reg_state = NETREG_UNREGISTERED;
1da177e4 5562
152102c7 5563 on_each_cpu(flush_backlog, dev, 1);
6e583ce5 5564
b17a7c17 5565 netdev_wait_allrefs(dev);
1da177e4 5566
b17a7c17 5567 /* paranoia */
29b4433d 5568 BUG_ON(netdev_refcnt_read(dev));
33d480ce
ED
5569 WARN_ON(rcu_access_pointer(dev->ip_ptr));
5570 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
547b792c 5571 WARN_ON(dev->dn_ptr);
1da177e4 5572
b17a7c17
SH
5573 if (dev->destructor)
5574 dev->destructor(dev);
9093bbb2
SH
5575
5576 /* Free network device */
5577 kobject_put(&dev->dev.kobj);
1da177e4 5578 }
1da177e4
LT
5579}
5580
3cfde79c
BH
5581/* Convert net_device_stats to rtnl_link_stats64. They have the same
5582 * fields in the same order, with only the type differing.
5583 */
77a1abf5
ED
5584void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
5585 const struct net_device_stats *netdev_stats)
3cfde79c
BH
5586{
5587#if BITS_PER_LONG == 64
77a1abf5
ED
5588 BUILD_BUG_ON(sizeof(*stats64) != sizeof(*netdev_stats));
5589 memcpy(stats64, netdev_stats, sizeof(*stats64));
3cfde79c
BH
5590#else
5591 size_t i, n = sizeof(*stats64) / sizeof(u64);
5592 const unsigned long *src = (const unsigned long *)netdev_stats;
5593 u64 *dst = (u64 *)stats64;
5594
5595 BUILD_BUG_ON(sizeof(*netdev_stats) / sizeof(unsigned long) !=
5596 sizeof(*stats64) / sizeof(u64));
5597 for (i = 0; i < n; i++)
5598 dst[i] = src[i];
5599#endif
5600}
77a1abf5 5601EXPORT_SYMBOL(netdev_stats_to_stats64);
3cfde79c 5602
eeda3fd6
SH
5603/**
5604 * dev_get_stats - get network device statistics
5605 * @dev: device to get statistics from
28172739 5606 * @storage: place to store stats
eeda3fd6 5607 *
d7753516
BH
5608 * Get network statistics from device. Return @storage.
5609 * The device driver may provide its own method by setting
5610 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
5611 * otherwise the internal statistics structure is used.
eeda3fd6 5612 */
d7753516
BH
5613struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
5614 struct rtnl_link_stats64 *storage)
7004bf25 5615{
eeda3fd6
SH
5616 const struct net_device_ops *ops = dev->netdev_ops;
5617
28172739
ED
5618 if (ops->ndo_get_stats64) {
5619 memset(storage, 0, sizeof(*storage));
caf586e5
ED
5620 ops->ndo_get_stats64(dev, storage);
5621 } else if (ops->ndo_get_stats) {
3cfde79c 5622 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
caf586e5
ED
5623 } else {
5624 netdev_stats_to_stats64(storage, &dev->stats);
28172739 5625 }
caf586e5 5626 storage->rx_dropped += atomic_long_read(&dev->rx_dropped);
28172739 5627 return storage;
c45d286e 5628}
eeda3fd6 5629EXPORT_SYMBOL(dev_get_stats);
c45d286e 5630
24824a09 5631struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
dc2b4847 5632{
24824a09 5633 struct netdev_queue *queue = dev_ingress_queue(dev);
dc2b4847 5634
24824a09
ED
5635#ifdef CONFIG_NET_CLS_ACT
5636 if (queue)
5637 return queue;
5638 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
5639 if (!queue)
5640 return NULL;
5641 netdev_init_one_queue(dev, queue, NULL);
24824a09
ED
5642 queue->qdisc = &noop_qdisc;
5643 queue->qdisc_sleeping = &noop_qdisc;
5644 rcu_assign_pointer(dev->ingress_queue, queue);
5645#endif
5646 return queue;
bb949fbd
DM
5647}
5648
2c60db03
ED
5649static const struct ethtool_ops default_ethtool_ops;
5650
d07d7507
SG
5651void netdev_set_default_ethtool_ops(struct net_device *dev,
5652 const struct ethtool_ops *ops)
5653{
5654 if (dev->ethtool_ops == &default_ethtool_ops)
5655 dev->ethtool_ops = ops;
5656}
5657EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
5658
1da177e4 5659/**
36909ea4 5660 * alloc_netdev_mqs - allocate network device
1da177e4
LT
5661 * @sizeof_priv: size of private data to allocate space for
5662 * @name: device name format string
5663 * @setup: callback to initialize device
36909ea4
TH
5664 * @txqs: the number of TX subqueues to allocate
5665 * @rxqs: the number of RX subqueues to allocate
1da177e4
LT
5666 *
5667 * Allocates a struct net_device with private data area for driver use
f25f4e44 5668 * and performs basic initialization. Also allocates subquue structs
36909ea4 5669 * for each queue on the device.
1da177e4 5670 */
36909ea4
TH
5671struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
5672 void (*setup)(struct net_device *),
5673 unsigned int txqs, unsigned int rxqs)
1da177e4 5674{
1da177e4 5675 struct net_device *dev;
7943986c 5676 size_t alloc_size;
1ce8e7b5 5677 struct net_device *p;
1da177e4 5678
b6fe17d6
SH
5679 BUG_ON(strlen(name) >= sizeof(dev->name));
5680
36909ea4 5681 if (txqs < 1) {
7b6cd1ce 5682 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
55513fb4
TH
5683 return NULL;
5684 }
5685
36909ea4
TH
5686#ifdef CONFIG_RPS
5687 if (rxqs < 1) {
7b6cd1ce 5688 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
36909ea4
TH
5689 return NULL;
5690 }
5691#endif
5692
fd2ea0a7 5693 alloc_size = sizeof(struct net_device);
d1643d24
AD
5694 if (sizeof_priv) {
5695 /* ensure 32-byte alignment of private area */
1ce8e7b5 5696 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
d1643d24
AD
5697 alloc_size += sizeof_priv;
5698 }
5699 /* ensure 32-byte alignment of whole construct */
1ce8e7b5 5700 alloc_size += NETDEV_ALIGN - 1;
1da177e4 5701
31380de9 5702 p = kzalloc(alloc_size, GFP_KERNEL);
62b5942a 5703 if (!p)
1da177e4 5704 return NULL;
1da177e4 5705
1ce8e7b5 5706 dev = PTR_ALIGN(p, NETDEV_ALIGN);
1da177e4 5707 dev->padded = (char *)dev - (char *)p;
ab9c73cc 5708
29b4433d
ED
5709 dev->pcpu_refcnt = alloc_percpu(int);
5710 if (!dev->pcpu_refcnt)
e6484930 5711 goto free_p;
ab9c73cc 5712
ab9c73cc 5713 if (dev_addr_init(dev))
29b4433d 5714 goto free_pcpu;
ab9c73cc 5715
22bedad3 5716 dev_mc_init(dev);
a748ee24 5717 dev_uc_init(dev);
ccffad25 5718
c346dca1 5719 dev_net_set(dev, &init_net);
1da177e4 5720
8d3bdbd5 5721 dev->gso_max_size = GSO_MAX_SIZE;
30b678d8 5722 dev->gso_max_segs = GSO_MAX_SEGS;
8d3bdbd5 5723
8d3bdbd5
DM
5724 INIT_LIST_HEAD(&dev->napi_list);
5725 INIT_LIST_HEAD(&dev->unreg_list);
5726 INIT_LIST_HEAD(&dev->link_watch_list);
9ff162a8 5727 INIT_LIST_HEAD(&dev->upper_dev_list);
8d3bdbd5
DM
5728 dev->priv_flags = IFF_XMIT_DST_RELEASE;
5729 setup(dev);
5730
36909ea4
TH
5731 dev->num_tx_queues = txqs;
5732 dev->real_num_tx_queues = txqs;
ed9af2e8 5733 if (netif_alloc_netdev_queues(dev))
8d3bdbd5 5734 goto free_all;
e8a0464c 5735
df334545 5736#ifdef CONFIG_RPS
36909ea4
TH
5737 dev->num_rx_queues = rxqs;
5738 dev->real_num_rx_queues = rxqs;
fe822240 5739 if (netif_alloc_rx_queues(dev))
8d3bdbd5 5740 goto free_all;
df334545 5741#endif
0a9627f2 5742
1da177e4 5743 strcpy(dev->name, name);
cbda10fa 5744 dev->group = INIT_NETDEV_GROUP;
2c60db03
ED
5745 if (!dev->ethtool_ops)
5746 dev->ethtool_ops = &default_ethtool_ops;
1da177e4 5747 return dev;
ab9c73cc 5748
8d3bdbd5
DM
5749free_all:
5750 free_netdev(dev);
5751 return NULL;
5752
29b4433d
ED
5753free_pcpu:
5754 free_percpu(dev->pcpu_refcnt);
ed9af2e8 5755 kfree(dev->_tx);
fe822240
TH
5756#ifdef CONFIG_RPS
5757 kfree(dev->_rx);
5758#endif
5759
ab9c73cc
JP
5760free_p:
5761 kfree(p);
5762 return NULL;
1da177e4 5763}
36909ea4 5764EXPORT_SYMBOL(alloc_netdev_mqs);
1da177e4
LT
5765
5766/**
5767 * free_netdev - free network device
5768 * @dev: device
5769 *
4ec93edb
YH
5770 * This function does the last stage of destroying an allocated device
5771 * interface. The reference to the device object is released.
1da177e4
LT
5772 * If this is the last reference then it will be freed.
5773 */
5774void free_netdev(struct net_device *dev)
5775{
d565b0a1
HX
5776 struct napi_struct *p, *n;
5777
f3005d7f
DL
5778 release_net(dev_net(dev));
5779
e8a0464c 5780 kfree(dev->_tx);
fe822240
TH
5781#ifdef CONFIG_RPS
5782 kfree(dev->_rx);
5783#endif
e8a0464c 5784
33d480ce 5785 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
24824a09 5786
f001fde5
JP
5787 /* Flush device addresses */
5788 dev_addr_flush(dev);
5789
d565b0a1
HX
5790 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
5791 netif_napi_del(p);
5792
29b4433d
ED
5793 free_percpu(dev->pcpu_refcnt);
5794 dev->pcpu_refcnt = NULL;
5795
3041a069 5796 /* Compatibility with error handling in drivers */
1da177e4
LT
5797 if (dev->reg_state == NETREG_UNINITIALIZED) {
5798 kfree((char *)dev - dev->padded);
5799 return;
5800 }
5801
5802 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
5803 dev->reg_state = NETREG_RELEASED;
5804
43cb76d9
GKH
5805 /* will free via device release */
5806 put_device(&dev->dev);
1da177e4 5807}
d1b19dff 5808EXPORT_SYMBOL(free_netdev);
4ec93edb 5809
f0db275a
SH
5810/**
5811 * synchronize_net - Synchronize with packet receive processing
5812 *
5813 * Wait for packets currently being received to be done.
5814 * Does not block later packets from starting.
5815 */
4ec93edb 5816void synchronize_net(void)
1da177e4
LT
5817{
5818 might_sleep();
be3fc413
ED
5819 if (rtnl_is_locked())
5820 synchronize_rcu_expedited();
5821 else
5822 synchronize_rcu();
1da177e4 5823}
d1b19dff 5824EXPORT_SYMBOL(synchronize_net);
1da177e4
LT
5825
5826/**
44a0873d 5827 * unregister_netdevice_queue - remove device from the kernel
1da177e4 5828 * @dev: device
44a0873d 5829 * @head: list
6ebfbc06 5830 *
1da177e4 5831 * This function shuts down a device interface and removes it
d59b54b1 5832 * from the kernel tables.
44a0873d 5833 * If head not NULL, device is queued to be unregistered later.
1da177e4
LT
5834 *
5835 * Callers must hold the rtnl semaphore. You may want
5836 * unregister_netdev() instead of this.
5837 */
5838
44a0873d 5839void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
1da177e4 5840{
a6620712
HX
5841 ASSERT_RTNL();
5842
44a0873d 5843 if (head) {
9fdce099 5844 list_move_tail(&dev->unreg_list, head);
44a0873d
ED
5845 } else {
5846 rollback_registered(dev);
5847 /* Finish processing unregister after unlock */
5848 net_set_todo(dev);
5849 }
1da177e4 5850}
44a0873d 5851EXPORT_SYMBOL(unregister_netdevice_queue);
1da177e4 5852
9b5e383c
ED
5853/**
5854 * unregister_netdevice_many - unregister many devices
5855 * @head: list of devices
9b5e383c
ED
5856 */
5857void unregister_netdevice_many(struct list_head *head)
5858{
5859 struct net_device *dev;
5860
5861 if (!list_empty(head)) {
5862 rollback_registered_many(head);
5863 list_for_each_entry(dev, head, unreg_list)
5864 net_set_todo(dev);
5865 }
5866}
63c8099d 5867EXPORT_SYMBOL(unregister_netdevice_many);
9b5e383c 5868
1da177e4
LT
5869/**
5870 * unregister_netdev - remove device from the kernel
5871 * @dev: device
5872 *
5873 * This function shuts down a device interface and removes it
d59b54b1 5874 * from the kernel tables.
1da177e4
LT
5875 *
5876 * This is just a wrapper for unregister_netdevice that takes
5877 * the rtnl semaphore. In general you want to use this and not
5878 * unregister_netdevice.
5879 */
5880void unregister_netdev(struct net_device *dev)
5881{
5882 rtnl_lock();
5883 unregister_netdevice(dev);
5884 rtnl_unlock();
5885}
1da177e4
LT
5886EXPORT_SYMBOL(unregister_netdev);
5887
ce286d32
EB
5888/**
5889 * dev_change_net_namespace - move device to different nethost namespace
5890 * @dev: device
5891 * @net: network namespace
5892 * @pat: If not NULL name pattern to try if the current device name
5893 * is already taken in the destination network namespace.
5894 *
5895 * This function shuts down a device interface and moves it
5896 * to a new network namespace. On success 0 is returned, on
5897 * a failure a netagive errno code is returned.
5898 *
5899 * Callers must hold the rtnl semaphore.
5900 */
5901
5902int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
5903{
ce286d32
EB
5904 int err;
5905
5906 ASSERT_RTNL();
5907
5908 /* Don't allow namespace local devices to be moved. */
5909 err = -EINVAL;
5910 if (dev->features & NETIF_F_NETNS_LOCAL)
5911 goto out;
5912
5913 /* Ensure the device has been registrered */
ce286d32
EB
5914 if (dev->reg_state != NETREG_REGISTERED)
5915 goto out;
5916
5917 /* Get out if there is nothing todo */
5918 err = 0;
878628fb 5919 if (net_eq(dev_net(dev), net))
ce286d32
EB
5920 goto out;
5921
5922 /* Pick the destination device name, and ensure
5923 * we can use it in the destination network namespace.
5924 */
5925 err = -EEXIST;
d9031024 5926 if (__dev_get_by_name(net, dev->name)) {
ce286d32
EB
5927 /* We get here if we can't use the current device name */
5928 if (!pat)
5929 goto out;
828de4f6 5930 if (dev_get_valid_name(net, dev, pat) < 0)
ce286d32
EB
5931 goto out;
5932 }
5933
5934 /*
5935 * And now a mini version of register_netdevice unregister_netdevice.
5936 */
5937
5938 /* If device is running close it first. */
9b772652 5939 dev_close(dev);
ce286d32
EB
5940
5941 /* And unlink it from device chain */
5942 err = -ENODEV;
5943 unlist_netdevice(dev);
5944
5945 synchronize_net();
5946
5947 /* Shutdown queueing discipline. */
5948 dev_shutdown(dev);
5949
5950 /* Notify protocols, that we are about to destroy
5951 this device. They should clean all the things.
3b27e105
DL
5952
5953 Note that dev->reg_state stays at NETREG_REGISTERED.
5954 This is wanted because this way 8021q and macvlan know
5955 the device is just moving and can keep their slaves up.
ce286d32
EB
5956 */
5957 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
6549dd43
G
5958 rcu_barrier();
5959 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
d2237d35 5960 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
ce286d32
EB
5961
5962 /*
5963 * Flush the unicast and multicast chains
5964 */
a748ee24 5965 dev_uc_flush(dev);
22bedad3 5966 dev_mc_flush(dev);
ce286d32 5967
4e66ae2e
SH
5968 /* Send a netdev-removed uevent to the old namespace */
5969 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
5970
ce286d32 5971 /* Actually switch the network namespace */
c346dca1 5972 dev_net_set(dev, net);
ce286d32 5973
ce286d32
EB
5974 /* If there is an ifindex conflict assign a new one */
5975 if (__dev_get_by_index(net, dev->ifindex)) {
5976 int iflink = (dev->iflink == dev->ifindex);
5977 dev->ifindex = dev_new_index(net);
5978 if (iflink)
5979 dev->iflink = dev->ifindex;
5980 }
5981
4e66ae2e
SH
5982 /* Send a netdev-add uevent to the new namespace */
5983 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
5984
8b41d188 5985 /* Fixup kobjects */
a1b3f594 5986 err = device_rename(&dev->dev, dev->name);
8b41d188 5987 WARN_ON(err);
ce286d32
EB
5988
5989 /* Add the device back in the hashes */
5990 list_netdevice(dev);
5991
5992 /* Notify protocols, that a new device appeared. */
5993 call_netdevice_notifiers(NETDEV_REGISTER, dev);
5994
d90a909e
EB
5995 /*
5996 * Prevent userspace races by waiting until the network
5997 * device is fully setup before sending notifications.
5998 */
5999 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
6000
ce286d32
EB
6001 synchronize_net();
6002 err = 0;
6003out:
6004 return err;
6005}
463d0183 6006EXPORT_SYMBOL_GPL(dev_change_net_namespace);
ce286d32 6007
1da177e4
LT
6008static int dev_cpu_callback(struct notifier_block *nfb,
6009 unsigned long action,
6010 void *ocpu)
6011{
6012 struct sk_buff **list_skb;
1da177e4
LT
6013 struct sk_buff *skb;
6014 unsigned int cpu, oldcpu = (unsigned long)ocpu;
6015 struct softnet_data *sd, *oldsd;
6016
8bb78442 6017 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
1da177e4
LT
6018 return NOTIFY_OK;
6019
6020 local_irq_disable();
6021 cpu = smp_processor_id();
6022 sd = &per_cpu(softnet_data, cpu);
6023 oldsd = &per_cpu(softnet_data, oldcpu);
6024
6025 /* Find end of our completion_queue. */
6026 list_skb = &sd->completion_queue;
6027 while (*list_skb)
6028 list_skb = &(*list_skb)->next;
6029 /* Append completion queue from offline CPU. */
6030 *list_skb = oldsd->completion_queue;
6031 oldsd->completion_queue = NULL;
6032
1da177e4 6033 /* Append output queue from offline CPU. */
a9cbd588
CG
6034 if (oldsd->output_queue) {
6035 *sd->output_queue_tailp = oldsd->output_queue;
6036 sd->output_queue_tailp = oldsd->output_queue_tailp;
6037 oldsd->output_queue = NULL;
6038 oldsd->output_queue_tailp = &oldsd->output_queue;
6039 }
264524d5
HC
6040 /* Append NAPI poll list from offline CPU. */
6041 if (!list_empty(&oldsd->poll_list)) {
6042 list_splice_init(&oldsd->poll_list, &sd->poll_list);
6043 raise_softirq_irqoff(NET_RX_SOFTIRQ);
6044 }
1da177e4
LT
6045
6046 raise_softirq_irqoff(NET_TX_SOFTIRQ);
6047 local_irq_enable();
6048
6049 /* Process offline CPU's input_pkt_queue */
76cc8b13 6050 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
1da177e4 6051 netif_rx(skb);
76cc8b13 6052 input_queue_head_incr(oldsd);
fec5e652 6053 }
76cc8b13 6054 while ((skb = __skb_dequeue(&oldsd->input_pkt_queue))) {
6e7676c1 6055 netif_rx(skb);
76cc8b13
TH
6056 input_queue_head_incr(oldsd);
6057 }
1da177e4
LT
6058
6059 return NOTIFY_OK;
6060}
1da177e4
LT
6061
6062
7f353bf2 6063/**
b63365a2
HX
6064 * netdev_increment_features - increment feature set by one
6065 * @all: current feature set
6066 * @one: new feature set
6067 * @mask: mask feature set
7f353bf2
HX
6068 *
6069 * Computes a new feature set after adding a device with feature set
b63365a2
HX
6070 * @one to the master device with current feature set @all. Will not
6071 * enable anything that is off in @mask. Returns the new feature set.
7f353bf2 6072 */
c8f44aff
MM
6073netdev_features_t netdev_increment_features(netdev_features_t all,
6074 netdev_features_t one, netdev_features_t mask)
b63365a2 6075{
1742f183
MM
6076 if (mask & NETIF_F_GEN_CSUM)
6077 mask |= NETIF_F_ALL_CSUM;
6078 mask |= NETIF_F_VLAN_CHALLENGED;
7f353bf2 6079
1742f183
MM
6080 all |= one & (NETIF_F_ONE_FOR_ALL|NETIF_F_ALL_CSUM) & mask;
6081 all &= one | ~NETIF_F_ALL_FOR_ALL;
c6e1a0d1 6082
1742f183
MM
6083 /* If one device supports hw checksumming, set for all. */
6084 if (all & NETIF_F_GEN_CSUM)
6085 all &= ~(NETIF_F_ALL_CSUM & ~NETIF_F_GEN_CSUM);
7f353bf2
HX
6086
6087 return all;
6088}
b63365a2 6089EXPORT_SYMBOL(netdev_increment_features);
7f353bf2 6090
430f03cd 6091static struct hlist_head * __net_init netdev_create_hash(void)
30d97d35
PE
6092{
6093 int i;
6094 struct hlist_head *hash;
6095
6096 hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL);
6097 if (hash != NULL)
6098 for (i = 0; i < NETDEV_HASHENTRIES; i++)
6099 INIT_HLIST_HEAD(&hash[i]);
6100
6101 return hash;
6102}
6103
881d966b 6104/* Initialize per network namespace state */
4665079c 6105static int __net_init netdev_init(struct net *net)
881d966b 6106{
734b6541
RM
6107 if (net != &init_net)
6108 INIT_LIST_HEAD(&net->dev_base_head);
881d966b 6109
30d97d35
PE
6110 net->dev_name_head = netdev_create_hash();
6111 if (net->dev_name_head == NULL)
6112 goto err_name;
881d966b 6113
30d97d35
PE
6114 net->dev_index_head = netdev_create_hash();
6115 if (net->dev_index_head == NULL)
6116 goto err_idx;
881d966b
EB
6117
6118 return 0;
30d97d35
PE
6119
6120err_idx:
6121 kfree(net->dev_name_head);
6122err_name:
6123 return -ENOMEM;
881d966b
EB
6124}
6125
f0db275a
SH
6126/**
6127 * netdev_drivername - network driver for the device
6128 * @dev: network device
f0db275a
SH
6129 *
6130 * Determine network driver for device.
6131 */
3019de12 6132const char *netdev_drivername(const struct net_device *dev)
6579e57b 6133{
cf04a4c7
SH
6134 const struct device_driver *driver;
6135 const struct device *parent;
3019de12 6136 const char *empty = "";
6579e57b
AV
6137
6138 parent = dev->dev.parent;
6579e57b 6139 if (!parent)
3019de12 6140 return empty;
6579e57b
AV
6141
6142 driver = parent->driver;
6143 if (driver && driver->name)
3019de12
DM
6144 return driver->name;
6145 return empty;
6579e57b
AV
6146}
6147
b004ff49 6148static int __netdev_printk(const char *level, const struct net_device *dev,
256df2f3
JP
6149 struct va_format *vaf)
6150{
6151 int r;
6152
b004ff49 6153 if (dev && dev->dev.parent) {
666f355f
JP
6154 r = dev_printk_emit(level[1] - '0',
6155 dev->dev.parent,
6156 "%s %s %s: %pV",
6157 dev_driver_string(dev->dev.parent),
6158 dev_name(dev->dev.parent),
6159 netdev_name(dev), vaf);
b004ff49 6160 } else if (dev) {
256df2f3 6161 r = printk("%s%s: %pV", level, netdev_name(dev), vaf);
b004ff49 6162 } else {
256df2f3 6163 r = printk("%s(NULL net_device): %pV", level, vaf);
b004ff49 6164 }
256df2f3
JP
6165
6166 return r;
6167}
6168
6169int netdev_printk(const char *level, const struct net_device *dev,
6170 const char *format, ...)
6171{
6172 struct va_format vaf;
6173 va_list args;
6174 int r;
6175
6176 va_start(args, format);
6177
6178 vaf.fmt = format;
6179 vaf.va = &args;
6180
6181 r = __netdev_printk(level, dev, &vaf);
b004ff49 6182
256df2f3
JP
6183 va_end(args);
6184
6185 return r;
6186}
6187EXPORT_SYMBOL(netdev_printk);
6188
6189#define define_netdev_printk_level(func, level) \
6190int func(const struct net_device *dev, const char *fmt, ...) \
6191{ \
6192 int r; \
6193 struct va_format vaf; \
6194 va_list args; \
6195 \
6196 va_start(args, fmt); \
6197 \
6198 vaf.fmt = fmt; \
6199 vaf.va = &args; \
6200 \
6201 r = __netdev_printk(level, dev, &vaf); \
b004ff49 6202 \
256df2f3
JP
6203 va_end(args); \
6204 \
6205 return r; \
6206} \
6207EXPORT_SYMBOL(func);
6208
6209define_netdev_printk_level(netdev_emerg, KERN_EMERG);
6210define_netdev_printk_level(netdev_alert, KERN_ALERT);
6211define_netdev_printk_level(netdev_crit, KERN_CRIT);
6212define_netdev_printk_level(netdev_err, KERN_ERR);
6213define_netdev_printk_level(netdev_warn, KERN_WARNING);
6214define_netdev_printk_level(netdev_notice, KERN_NOTICE);
6215define_netdev_printk_level(netdev_info, KERN_INFO);
6216
4665079c 6217static void __net_exit netdev_exit(struct net *net)
881d966b
EB
6218{
6219 kfree(net->dev_name_head);
6220 kfree(net->dev_index_head);
6221}
6222
022cbae6 6223static struct pernet_operations __net_initdata netdev_net_ops = {
881d966b
EB
6224 .init = netdev_init,
6225 .exit = netdev_exit,
6226};
6227
4665079c 6228static void __net_exit default_device_exit(struct net *net)
ce286d32 6229{
e008b5fc 6230 struct net_device *dev, *aux;
ce286d32 6231 /*
e008b5fc 6232 * Push all migratable network devices back to the
ce286d32
EB
6233 * initial network namespace
6234 */
6235 rtnl_lock();
e008b5fc 6236 for_each_netdev_safe(net, dev, aux) {
ce286d32 6237 int err;
aca51397 6238 char fb_name[IFNAMSIZ];
ce286d32
EB
6239
6240 /* Ignore unmoveable devices (i.e. loopback) */
6241 if (dev->features & NETIF_F_NETNS_LOCAL)
6242 continue;
6243
e008b5fc
EB
6244 /* Leave virtual devices for the generic cleanup */
6245 if (dev->rtnl_link_ops)
6246 continue;
d0c082ce 6247
25985edc 6248 /* Push remaining network devices to init_net */
aca51397
PE
6249 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
6250 err = dev_change_net_namespace(dev, &init_net, fb_name);
ce286d32 6251 if (err) {
7b6cd1ce
JP
6252 pr_emerg("%s: failed to move %s to init_net: %d\n",
6253 __func__, dev->name, err);
aca51397 6254 BUG();
ce286d32
EB
6255 }
6256 }
6257 rtnl_unlock();
6258}
6259
04dc7f6b
EB
6260static void __net_exit default_device_exit_batch(struct list_head *net_list)
6261{
6262 /* At exit all network devices most be removed from a network
b595076a 6263 * namespace. Do this in the reverse order of registration.
04dc7f6b
EB
6264 * Do this across as many network namespaces as possible to
6265 * improve batching efficiency.
6266 */
6267 struct net_device *dev;
6268 struct net *net;
6269 LIST_HEAD(dev_kill_list);
6270
6271 rtnl_lock();
6272 list_for_each_entry(net, net_list, exit_list) {
6273 for_each_netdev_reverse(net, dev) {
6274 if (dev->rtnl_link_ops)
6275 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
6276 else
6277 unregister_netdevice_queue(dev, &dev_kill_list);
6278 }
6279 }
6280 unregister_netdevice_many(&dev_kill_list);
ceaaec98 6281 list_del(&dev_kill_list);
04dc7f6b
EB
6282 rtnl_unlock();
6283}
6284
022cbae6 6285static struct pernet_operations __net_initdata default_device_ops = {
ce286d32 6286 .exit = default_device_exit,
04dc7f6b 6287 .exit_batch = default_device_exit_batch,
ce286d32
EB
6288};
6289
1da177e4
LT
6290/*
6291 * Initialize the DEV module. At boot time this walks the device list and
6292 * unhooks any devices that fail to initialise (normally hardware not
6293 * present) and leaves us with a valid list of present and active devices.
6294 *
6295 */
6296
6297/*
6298 * This is called single threaded during boot, so no need
6299 * to take the rtnl semaphore.
6300 */
6301static int __init net_dev_init(void)
6302{
6303 int i, rc = -ENOMEM;
6304
6305 BUG_ON(!dev_boot_phase);
6306
1da177e4
LT
6307 if (dev_proc_init())
6308 goto out;
6309
8b41d188 6310 if (netdev_kobject_init())
1da177e4
LT
6311 goto out;
6312
6313 INIT_LIST_HEAD(&ptype_all);
82d8a867 6314 for (i = 0; i < PTYPE_HASH_SIZE; i++)
1da177e4
LT
6315 INIT_LIST_HEAD(&ptype_base[i]);
6316
62532da9
VY
6317 INIT_LIST_HEAD(&offload_base);
6318
881d966b
EB
6319 if (register_pernet_subsys(&netdev_net_ops))
6320 goto out;
1da177e4
LT
6321
6322 /*
6323 * Initialise the packet receive queues.
6324 */
6325
6f912042 6326 for_each_possible_cpu(i) {
e36fa2f7 6327 struct softnet_data *sd = &per_cpu(softnet_data, i);
1da177e4 6328
dee42870 6329 memset(sd, 0, sizeof(*sd));
e36fa2f7 6330 skb_queue_head_init(&sd->input_pkt_queue);
6e7676c1 6331 skb_queue_head_init(&sd->process_queue);
e36fa2f7
ED
6332 sd->completion_queue = NULL;
6333 INIT_LIST_HEAD(&sd->poll_list);
a9cbd588
CG
6334 sd->output_queue = NULL;
6335 sd->output_queue_tailp = &sd->output_queue;
df334545 6336#ifdef CONFIG_RPS
e36fa2f7
ED
6337 sd->csd.func = rps_trigger_softirq;
6338 sd->csd.info = sd;
6339 sd->csd.flags = 0;
6340 sd->cpu = i;
1e94d72f 6341#endif
0a9627f2 6342
e36fa2f7
ED
6343 sd->backlog.poll = process_backlog;
6344 sd->backlog.weight = weight_p;
6345 sd->backlog.gro_list = NULL;
6346 sd->backlog.gro_count = 0;
99bbc707
WB
6347
6348#ifdef CONFIG_NET_FLOW_LIMIT
6349 sd->flow_limit = NULL;
6350#endif
1da177e4
LT
6351 }
6352
1da177e4
LT
6353 dev_boot_phase = 0;
6354
505d4f73
EB
6355 /* The loopback device is special if any other network devices
6356 * is present in a network namespace the loopback device must
6357 * be present. Since we now dynamically allocate and free the
6358 * loopback device ensure this invariant is maintained by
6359 * keeping the loopback device as the first device on the
6360 * list of network devices. Ensuring the loopback devices
6361 * is the first device that appears and the last network device
6362 * that disappears.
6363 */
6364 if (register_pernet_device(&loopback_net_ops))
6365 goto out;
6366
6367 if (register_pernet_device(&default_device_ops))
6368 goto out;
6369
962cf36c
CM
6370 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
6371 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
1da177e4
LT
6372
6373 hotcpu_notifier(dev_cpu_callback, 0);
6374 dst_init();
1da177e4
LT
6375 rc = 0;
6376out:
6377 return rc;
6378}
6379
6380subsys_initcall(net_dev_init);
This page took 1.487691 seconds and 5 git commands to generate.