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