Merge tag 'v3.10.99' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / core / dev.c
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
10 * Authors: Ross Biro
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>
76 #include <linux/bitops.h>
77 #include <linux/capability.h>
78 #include <linux/cpu.h>
79 #include <linux/types.h>
80 #include <linux/kernel.h>
81 #include <linux/hash.h>
82 #include <linux/slab.h>
83 #include <linux/sched.h>
84 #include <linux/mutex.h>
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>
94 #include <linux/ethtool.h>
95 #include <linux/notifier.h>
96 #include <linux/skbuff.h>
97 #include <net/net_namespace.h>
98 #include <net/sock.h>
99 #include <linux/rtnetlink.h>
100 #include <linux/stat.h>
101 #include <net/dst.h>
102 #include <net/pkt_sched.h>
103 #include <net/checksum.h>
104 #include <net/xfrm.h>
105 #include <linux/highmem.h>
106 #include <linux/init.h>
107 #include <linux/module.h>
108 #include <linux/netpoll.h>
109 #include <linux/rcupdate.h>
110 #include <linux/delay.h>
111 #include <net/iw_handler.h>
112 #include <asm/current.h>
113 #include <linux/audit.h>
114 #include <linux/dmaengine.h>
115 #include <linux/err.h>
116 #include <linux/ctype.h>
117 #include <linux/if_arp.h>
118 #include <linux/if_vlan.h>
119 #include <linux/ip.h>
120 #include <net/ip.h>
121 #include <linux/ipv6.h>
122 #include <linux/in.h>
123 #include <linux/jhash.h>
124 #include <linux/random.h>
125 #include <trace/events/napi.h>
126 #include <trace/events/net.h>
127 #include <trace/events/skb.h>
128 #include <linux/pci.h>
129 #include <linux/inetdevice.h>
130 #include <linux/cpu_rmap.h>
131 #include <linux/static_key.h>
132 #include <net/udp.h>
133 #include "net-sysfs.h"
134
135 #ifdef UDP_SKT_WIFI
136 #include <linux/ftrace_event.h>
137 #endif
138
139 /* Instead of increasing this, you should create a hash table. */
140 #define MAX_GRO_SKBS 8
141
142 /* This should be increased if a protocol with a bigger head is added. */
143 #define GRO_MAX_HEAD (MAX_HEADER + 128)
144
145 static DEFINE_SPINLOCK(ptype_lock);
146 static DEFINE_SPINLOCK(offload_lock);
147 struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
148 struct list_head ptype_all __read_mostly; /* Taps */
149 static struct list_head offload_base __read_mostly;
150
151 /*
152 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
153 * semaphore.
154 *
155 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
156 *
157 * Writers must hold the rtnl semaphore while they loop through the
158 * dev_base_head list, and hold dev_base_lock for writing when they do the
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 */
170 DEFINE_RWLOCK(dev_base_lock);
171 EXPORT_SYMBOL(dev_base_lock);
172
173 seqcount_t devnet_rename_seq;
174
175 static inline void dev_base_seq_inc(struct net *net)
176 {
177 while (++net->dev_base_seq == 0);
178 }
179
180 static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
181 {
182 unsigned int hash = full_name_hash(name, strnlen(name, IFNAMSIZ));
183
184 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
185 }
186
187 static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
188 {
189 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
190 }
191
192 static inline void rps_lock(struct softnet_data *sd)
193 {
194 #ifdef CONFIG_RPS
195 spin_lock(&sd->input_pkt_queue.lock);
196 #endif
197 }
198
199 static inline void rps_unlock(struct softnet_data *sd)
200 {
201 #ifdef CONFIG_RPS
202 spin_unlock(&sd->input_pkt_queue.lock);
203 #endif
204 }
205
206 /* Device list insertion */
207 static void list_netdevice(struct net_device *dev)
208 {
209 struct net *net = dev_net(dev);
210
211 ASSERT_RTNL();
212
213 write_lock_bh(&dev_base_lock);
214 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
215 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
216 hlist_add_head_rcu(&dev->index_hlist,
217 dev_index_hash(net, dev->ifindex));
218 write_unlock_bh(&dev_base_lock);
219
220 dev_base_seq_inc(net);
221 }
222
223 /* Device list removal
224 * caller must respect a RCU grace period before freeing/reusing dev
225 */
226 static 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);
232 list_del_rcu(&dev->dev_list);
233 hlist_del_rcu(&dev->name_hlist);
234 hlist_del_rcu(&dev->index_hlist);
235 write_unlock_bh(&dev_base_lock);
236
237 dev_base_seq_inc(dev_net(dev));
238 }
239
240 /*
241 * Our notifier list
242 */
243
244 static RAW_NOTIFIER_HEAD(netdev_chain);
245
246 /*
247 * Device drivers call our routines to queue packets here. We empty the
248 * queue in the local softnet handler.
249 */
250
251 DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
252 EXPORT_PER_CPU_SYMBOL(softnet_data);
253
254 #ifdef CONFIG_LOCKDEP
255 /*
256 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
257 * according to dev->type
258 */
259 static 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,
272 ARPHRD_FCFABRIC, ARPHRD_IEEE80211, ARPHRD_IEEE80211_PRISM,
273 ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET, ARPHRD_PHONET_PIPE,
274 ARPHRD_IEEE802154, ARPHRD_VOID, ARPHRD_NONE};
275
276 static const char *const netdev_lock_name[] =
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",
289 "_xmit_FCFABRIC", "_xmit_IEEE80211", "_xmit_IEEE80211_PRISM",
290 "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET", "_xmit_PHONET_PIPE",
291 "_xmit_IEEE802154", "_xmit_VOID", "_xmit_NONE"};
292
293 static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
294 static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
295
296 static 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
307 static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
308 unsigned short dev_type)
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 }
316
317 static 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 }
326 #else
327 static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
328 unsigned short dev_type)
329 {
330 }
331 static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
332 {
333 }
334 #endif
335
336 /*******************************************************************************
337
338 Protocol management and registration routines
339
340 *******************************************************************************/
341
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
358 static 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
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 *
374 * This call does not sleep therefore it can not
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
379 void dev_add_pack(struct packet_type *pt)
380 {
381 struct list_head *head = ptype_head(pt);
382
383 spin_lock(&ptype_lock);
384 list_add_rcu(&pt->list, head);
385 spin_unlock(&ptype_lock);
386 }
387 EXPORT_SYMBOL(dev_add_pack);
388
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
396 * returns.
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 */
402 void __dev_remove_pack(struct packet_type *pt)
403 {
404 struct list_head *head = ptype_head(pt);
405 struct packet_type *pt1;
406
407 spin_lock(&ptype_lock);
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
416 pr_warn("dev_remove_pack: %p not found\n", pt);
417 out:
418 spin_unlock(&ptype_lock);
419 }
420 EXPORT_SYMBOL(__dev_remove_pack);
421
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 */
434 void dev_remove_pack(struct packet_type *pt)
435 {
436 __dev_remove_pack(pt);
437
438 synchronize_net();
439 }
440 EXPORT_SYMBOL(dev_remove_pack);
441
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 */
455 void 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 }
463 EXPORT_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 */
478 void __dev_remove_offload(struct packet_offload *po)
479 {
480 struct list_head *head = &offload_base;
481 struct packet_offload *po1;
482
483 spin_lock(&offload_lock);
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);
493 out:
494 spin_unlock(&offload_lock);
495 }
496 EXPORT_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 */
510 void dev_remove_offload(struct packet_offload *po)
511 {
512 __dev_remove_offload(po);
513
514 synchronize_net();
515 }
516 EXPORT_SYMBOL(dev_remove_offload);
517
518 /******************************************************************************
519
520 Device Boot-time Settings Routines
521
522 *******************************************************************************/
523
524 /* Boot time configuration table */
525 static 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 */
536 static 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));
545 strlcpy(s[i].name, name, IFNAMSIZ);
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 */
563 int 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] != ' ' &&
570 !strcmp(dev->name, s[i].name)) {
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 }
580 EXPORT_SYMBOL(netdev_boot_setup_check);
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 */
593 unsigned 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 */
605 if (__dev_get_by_name(&init_net, name))
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 */
617 int __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
651 * @net: the applicable net namespace
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
661 struct net_device *__dev_get_by_name(struct net *net, const char *name)
662 {
663 struct net_device *dev;
664 struct hlist_head *head = dev_name_hash(net, name);
665
666 hlist_for_each_entry(dev, head, name_hlist)
667 if (!strncmp(dev->name, name, IFNAMSIZ))
668 return dev;
669
670 return NULL;
671 }
672 EXPORT_SYMBOL(__dev_get_by_name);
673
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
686 struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
687 {
688 struct net_device *dev;
689 struct hlist_head *head = dev_name_hash(net, name);
690
691 hlist_for_each_entry_rcu(dev, head, name_hlist)
692 if (!strncmp(dev->name, name, IFNAMSIZ))
693 return dev;
694
695 return NULL;
696 }
697 EXPORT_SYMBOL(dev_get_by_name_rcu);
698
699 /**
700 * dev_get_by_name - find a device by its name
701 * @net: the applicable net namespace
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
711 struct net_device *dev_get_by_name(struct net *net, const char *name)
712 {
713 struct net_device *dev;
714
715 rcu_read_lock();
716 dev = dev_get_by_name_rcu(net, name);
717 if (dev)
718 dev_hold(dev);
719 rcu_read_unlock();
720 return dev;
721 }
722 EXPORT_SYMBOL(dev_get_by_name);
723
724 /**
725 * __dev_get_by_index - find a device by its ifindex
726 * @net: the applicable net namespace
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
736 struct net_device *__dev_get_by_index(struct net *net, int ifindex)
737 {
738 struct net_device *dev;
739 struct hlist_head *head = dev_index_hash(net, ifindex);
740
741 hlist_for_each_entry(dev, head, index_hlist)
742 if (dev->ifindex == ifindex)
743 return dev;
744
745 return NULL;
746 }
747 EXPORT_SYMBOL(__dev_get_by_index);
748
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
760 struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
761 {
762 struct net_device *dev;
763 struct hlist_head *head = dev_index_hash(net, ifindex);
764
765 hlist_for_each_entry_rcu(dev, head, index_hlist)
766 if (dev->ifindex == ifindex)
767 return dev;
768
769 return NULL;
770 }
771 EXPORT_SYMBOL(dev_get_by_index_rcu);
772
773
774 /**
775 * dev_get_by_index - find a device by its ifindex
776 * @net: the applicable net namespace
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
785 struct net_device *dev_get_by_index(struct net *net, int ifindex)
786 {
787 struct net_device *dev;
788
789 rcu_read_lock();
790 dev = dev_get_by_index_rcu(net, ifindex);
791 if (dev)
792 dev_hold(dev);
793 rcu_read_unlock();
794 return dev;
795 }
796 EXPORT_SYMBOL(dev_get_by_index);
797
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 */
808 int netdev_get_name(struct net *net, char *name, int ifindex)
809 {
810 struct net_device *dev;
811 unsigned int seq;
812
813 retry:
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
832 /**
833 * dev_getbyhwaddr_rcu - find a device by its hardware address
834 * @net: the applicable net namespace
835 * @type: media type of device
836 * @ha: hardware address
837 *
838 * Search for an interface by MAC address. Returns NULL if the device
839 * is not found or a pointer to the device.
840 * The caller must hold RCU or RTNL.
841 * The returned device has not had its ref count increased
842 * and the caller must therefore be careful about locking
843 *
844 */
845
846 struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
847 const char *ha)
848 {
849 struct net_device *dev;
850
851 for_each_netdev_rcu(net, dev)
852 if (dev->type == type &&
853 !memcmp(dev->dev_addr, ha, dev->addr_len))
854 return dev;
855
856 return NULL;
857 }
858 EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
859
860 struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
861 {
862 struct net_device *dev;
863
864 ASSERT_RTNL();
865 for_each_netdev(net, dev)
866 if (dev->type == type)
867 return dev;
868
869 return NULL;
870 }
871 EXPORT_SYMBOL(__dev_getfirstbyhwtype);
872
873 struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
874 {
875 struct net_device *dev, *ret = NULL;
876
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;
886 }
887 EXPORT_SYMBOL(dev_getfirstbyhwtype);
888
889 /**
890 * dev_get_by_flags_rcu - find any device with given flags
891 * @net: the applicable net namespace
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
896 * is not found or a pointer to the device. Must be called inside
897 * rcu_read_lock(), and result refcount is unchanged.
898 */
899
900 struct net_device *dev_get_by_flags_rcu(struct net *net, unsigned short if_flags,
901 unsigned short mask)
902 {
903 struct net_device *dev, *ret;
904
905 ret = NULL;
906 for_each_netdev_rcu(net, dev) {
907 if (((dev->flags ^ if_flags) & mask) == 0) {
908 ret = dev;
909 break;
910 }
911 }
912 return ret;
913 }
914 EXPORT_SYMBOL(dev_get_by_flags_rcu);
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
921 * to allow sysfs to work. We also disallow any kind of
922 * whitespace.
923 */
924 bool dev_valid_name(const char *name)
925 {
926 if (*name == '\0')
927 return false;
928 if (strlen(name) >= IFNAMSIZ)
929 return false;
930 if (!strcmp(name, ".") || !strcmp(name, ".."))
931 return false;
932
933 while (*name) {
934 if (*name == '/' || *name == ':' || isspace(*name))
935 return false;
936 name++;
937 }
938 return true;
939 }
940 EXPORT_SYMBOL(dev_valid_name);
941
942 /**
943 * __dev_alloc_name - allocate a name for a device
944 * @net: network namespace to allocate the device name in
945 * @name: name format string
946 * @buf: scratch buffer and result name string
947 *
948 * Passed a format string - eg "lt%d" it will try and find a suitable
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.
955 */
956
957 static int __dev_alloc_name(struct net *net, const char *name, char *buf)
958 {
959 int i = 0;
960 const char *p;
961 const int max_netdevices = 8*PAGE_SIZE;
962 unsigned long *inuse;
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 */
976 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
977 if (!inuse)
978 return -ENOMEM;
979
980 for_each_netdev(net, d) {
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 */
987 snprintf(buf, IFNAMSIZ, name, i);
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
996 if (buf != name)
997 snprintf(buf, IFNAMSIZ, name, i);
998 if (!__dev_get_by_name(net, buf))
999 return i;
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
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
1022 int dev_alloc_name(struct net_device *dev, const char *name)
1023 {
1024 char buf[IFNAMSIZ];
1025 struct net *net;
1026 int ret;
1027
1028 BUG_ON(!dev_net(dev));
1029 net = dev_net(dev);
1030 ret = __dev_alloc_name(net, name, buf);
1031 if (ret >= 0)
1032 strlcpy(dev->name, buf, IFNAMSIZ);
1033 return ret;
1034 }
1035 EXPORT_SYMBOL(dev_alloc_name);
1036
1037 static int dev_alloc_name_ns(struct net *net,
1038 struct net_device *dev,
1039 const char *name)
1040 {
1041 char buf[IFNAMSIZ];
1042 int ret;
1043
1044 ret = __dev_alloc_name(net, name, buf);
1045 if (ret >= 0)
1046 strlcpy(dev->name, buf, IFNAMSIZ);
1047 return ret;
1048 }
1049
1050 static int dev_get_valid_name(struct net *net,
1051 struct net_device *dev,
1052 const char *name)
1053 {
1054 BUG_ON(!net);
1055
1056 if (!dev_valid_name(name))
1057 return -EINVAL;
1058
1059 if (strchr(name, '%'))
1060 return dev_alloc_name_ns(net, dev, name);
1061 else if (__dev_get_by_name(net, name))
1062 return -EEXIST;
1063 else if (dev->name != name)
1064 strlcpy(dev->name, name, IFNAMSIZ);
1065
1066 return 0;
1067 }
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 */
1077 int dev_change_name(struct net_device *dev, const char *newname)
1078 {
1079 char oldname[IFNAMSIZ];
1080 int err = 0;
1081 int ret;
1082 struct net *net;
1083
1084 ASSERT_RTNL();
1085 BUG_ON(!dev_net(dev));
1086
1087 net = dev_net(dev);
1088 if (dev->flags & IFF_UP)
1089 return -EBUSY;
1090
1091 write_seqcount_begin(&devnet_rename_seq);
1092
1093 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
1094 write_seqcount_end(&devnet_rename_seq);
1095 return 0;
1096 }
1097
1098 memcpy(oldname, dev->name, IFNAMSIZ);
1099
1100 err = dev_get_valid_name(net, dev, newname);
1101 if (err < 0) {
1102 write_seqcount_end(&devnet_rename_seq);
1103 return err;
1104 }
1105
1106 rollback:
1107 ret = device_rename(&dev->dev, dev->name);
1108 if (ret) {
1109 memcpy(dev->name, oldname, IFNAMSIZ);
1110 write_seqcount_end(&devnet_rename_seq);
1111 return ret;
1112 }
1113
1114 write_seqcount_end(&devnet_rename_seq);
1115
1116 write_lock_bh(&dev_base_lock);
1117 hlist_del_rcu(&dev->name_hlist);
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));
1124 write_unlock_bh(&dev_base_lock);
1125
1126 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
1127 ret = notifier_to_errno(ret);
1128
1129 if (ret) {
1130 /* err >= 0 after dev_alloc_name() or stores the first errno */
1131 if (err >= 0) {
1132 err = ret;
1133 write_seqcount_begin(&devnet_rename_seq);
1134 memcpy(dev->name, oldname, IFNAMSIZ);
1135 goto rollback;
1136 } else {
1137 pr_err("%s: name change rollback failed: %d\n",
1138 dev->name, ret);
1139 }
1140 }
1141
1142 return err;
1143 }
1144
1145 /**
1146 * dev_set_alias - change ifalias of a device
1147 * @dev: device
1148 * @alias: name up to IFALIASZ
1149 * @len: limit of bytes to copy from info
1150 *
1151 * Set ifalias for a device,
1152 */
1153 int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1154 {
1155 char *new_ifalias;
1156
1157 ASSERT_RTNL();
1158
1159 if (len >= IFALIASZ)
1160 return -EINVAL;
1161
1162 if (!len) {
1163 kfree(dev->ifalias);
1164 dev->ifalias = NULL;
1165 return 0;
1166 }
1167
1168 new_ifalias = krealloc(dev->ifalias, len + 1, GFP_KERNEL);
1169 if (!new_ifalias)
1170 return -ENOMEM;
1171 dev->ifalias = new_ifalias;
1172
1173 strlcpy(dev->ifalias, alias, len+1);
1174 return len;
1175 }
1176
1177
1178 /**
1179 * netdev_features_change - device changes features
1180 * @dev: device to cause notification
1181 *
1182 * Called to indicate a device has changed features.
1183 */
1184 void netdev_features_change(struct net_device *dev)
1185 {
1186 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
1187 }
1188 EXPORT_SYMBOL(netdev_features_change);
1189
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 */
1198 void netdev_state_change(struct net_device *dev)
1199 {
1200 if (dev->flags & IFF_UP) {
1201 call_netdevice_notifiers(NETDEV_CHANGE, dev);
1202 rtmsg_ifinfo(RTM_NEWLINK, dev, 0);
1203 }
1204 }
1205 EXPORT_SYMBOL(netdev_state_change);
1206
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 */
1217 void netdev_notify_peers(struct net_device *dev)
1218 {
1219 rtnl_lock();
1220 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
1221 rtnl_unlock();
1222 }
1223 EXPORT_SYMBOL(netdev_notify_peers);
1224
1225 static int __dev_open(struct net_device *dev)
1226 {
1227 const struct net_device_ops *ops = dev->netdev_ops;
1228 int ret;
1229
1230 ASSERT_RTNL();
1231
1232 if (!netif_device_present(dev))
1233 return -ENODEV;
1234
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
1243 ret = call_netdevice_notifiers(NETDEV_PRE_UP, dev);
1244 ret = notifier_to_errno(ret);
1245 if (ret)
1246 return ret;
1247
1248 set_bit(__LINK_STATE_START, &dev->state);
1249
1250 if (ops->ndo_validate_addr)
1251 ret = ops->ndo_validate_addr(dev);
1252
1253 if (!ret && ops->ndo_open)
1254 ret = ops->ndo_open(dev);
1255
1256 netpoll_rx_enable(dev);
1257
1258 if (ret)
1259 clear_bit(__LINK_STATE_START, &dev->state);
1260 else {
1261 dev->flags |= IFF_UP;
1262 net_dmaengine_get();
1263 dev_set_rx_mode(dev);
1264 dev_activate(dev);
1265 add_device_randomness(dev->dev_addr, dev->addr_len);
1266 }
1267
1268 return ret;
1269 }
1270
1271 /**
1272 * dev_open - prepare an interface for use.
1273 * @dev: device to open
1274 *
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.
1282 */
1283 int dev_open(struct net_device *dev)
1284 {
1285 int ret;
1286
1287 if (dev->flags & IFF_UP)
1288 return 0;
1289
1290 ret = __dev_open(dev);
1291 if (ret < 0)
1292 return ret;
1293
1294 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING);
1295 call_netdevice_notifiers(NETDEV_UP, dev);
1296
1297 return ret;
1298 }
1299 EXPORT_SYMBOL(dev_open);
1300
1301 static int __dev_close_many(struct list_head *head)
1302 {
1303 struct net_device *dev;
1304
1305 ASSERT_RTNL();
1306 might_sleep();
1307
1308 list_for_each_entry(dev, head, unreg_list) {
1309 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
1310
1311 clear_bit(__LINK_STATE_START, &dev->state);
1312
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 }
1321
1322 dev_deactivate_many(head);
1323
1324 list_for_each_entry(dev, head, unreg_list) {
1325 const struct net_device_ops *ops = dev->netdev_ops;
1326
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
1337 dev->flags &= ~IFF_UP;
1338 net_dmaengine_put();
1339 }
1340
1341 return 0;
1342 }
1343
1344 static int __dev_close(struct net_device *dev)
1345 {
1346 int retval;
1347 LIST_HEAD(single);
1348
1349 /* Temporarily disable netpoll until the interface is down */
1350 retval = netpoll_rx_disable(dev);
1351 if (retval)
1352 return retval;
1353
1354 list_add(&dev->unreg_list, &single);
1355 retval = __dev_close_many(&single);
1356 list_del(&single);
1357
1358 netpoll_rx_enable(dev);
1359 return retval;
1360 }
1361
1362 static int dev_close_many(struct list_head *head)
1363 {
1364 struct net_device *dev, *tmp;
1365 LIST_HEAD(tmp_list);
1366
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);
1372
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 }
1377
1378 /* rollback_registered_many needs the complete original list */
1379 list_splice(&tmp_list, head);
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 */
1392 int dev_close(struct net_device *dev)
1393 {
1394 int ret = 0;
1395 if (dev->flags & IFF_UP) {
1396 LIST_HEAD(single);
1397
1398 /* Block netpoll rx while the interface is going down */
1399 ret = netpoll_rx_disable(dev);
1400 if (ret)
1401 return ret;
1402
1403 list_add(&dev->unreg_list, &single);
1404 dev_close_many(&single);
1405 list_del(&single);
1406
1407 netpoll_rx_enable(dev);
1408 }
1409 return ret;
1410 }
1411 EXPORT_SYMBOL(dev_close);
1412
1413
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 */
1422 void dev_disable_lro(struct net_device *dev)
1423 {
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
1431 dev->wanted_features &= ~NETIF_F_LRO;
1432 netdev_update_features(dev);
1433
1434 if (unlikely(dev->features & NETIF_F_LRO))
1435 netdev_WARN(dev, "failed to disable LRO!\n");
1436 }
1437 EXPORT_SYMBOL(dev_disable_lro);
1438
1439
1440 static int dev_boot_phase = 1;
1441
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
1452 * to the new notifier to allow device to have a race free
1453 * view of the network device list.
1454 */
1455
1456 int register_netdevice_notifier(struct notifier_block *nb)
1457 {
1458 struct net_device *dev;
1459 struct net_device *last;
1460 struct net *net;
1461 int err;
1462
1463 rtnl_lock();
1464 err = raw_notifier_chain_register(&netdev_chain, nb);
1465 if (err)
1466 goto unlock;
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;
1478
1479 nb->notifier_call(nb, NETDEV_UP, dev);
1480 }
1481 }
1482
1483 unlock:
1484 rtnl_unlock();
1485 return err;
1486
1487 rollback:
1488 last = dev;
1489 for_each_net(net) {
1490 for_each_netdev(net, dev) {
1491 if (dev == last)
1492 goto outroll;
1493
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);
1499 }
1500 }
1501
1502 outroll:
1503 raw_notifier_chain_unregister(&netdev_chain, nb);
1504 goto unlock;
1505 }
1506 EXPORT_SYMBOL(register_netdevice_notifier);
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.
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.
1520 */
1521
1522 int unregister_netdevice_notifier(struct notifier_block *nb)
1523 {
1524 struct net_device *dev;
1525 struct net *net;
1526 int err;
1527
1528 rtnl_lock();
1529 err = raw_notifier_chain_unregister(&netdev_chain, nb);
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);
1540 }
1541 }
1542 unlock:
1543 rtnl_unlock();
1544 return err;
1545 }
1546 EXPORT_SYMBOL(unregister_netdevice_notifier);
1547
1548 /**
1549 * call_netdevice_notifiers - call all network notifier blocks
1550 * @val: value passed unmodified to notifier function
1551 * @dev: net_device pointer passed unmodified to notifier function
1552 *
1553 * Call all network notifier blocks. Parameters and return value
1554 * are as for raw_notifier_call_chain().
1555 */
1556
1557 int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
1558 {
1559 ASSERT_RTNL();
1560 return raw_notifier_call_chain(&netdev_chain, val, dev);
1561 }
1562 EXPORT_SYMBOL(call_netdevice_notifiers);
1563
1564 static struct static_key netstamp_needed __read_mostly;
1565 #ifdef HAVE_JUMP_LABEL
1566 /* We are not allowed to call static_key_slow_dec() from irq context
1567 * If net_disable_timestamp() is called from irq context, defer the
1568 * static_key_slow_dec() calls.
1569 */
1570 static atomic_t netstamp_needed_deferred;
1571 #endif
1572
1573 void net_enable_timestamp(void)
1574 {
1575 #ifdef HAVE_JUMP_LABEL
1576 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
1577
1578 if (deferred) {
1579 while (--deferred)
1580 static_key_slow_dec(&netstamp_needed);
1581 return;
1582 }
1583 #endif
1584 static_key_slow_inc(&netstamp_needed);
1585 }
1586 EXPORT_SYMBOL(net_enable_timestamp);
1587
1588 void net_disable_timestamp(void)
1589 {
1590 #ifdef HAVE_JUMP_LABEL
1591 if (in_interrupt()) {
1592 atomic_inc(&netstamp_needed_deferred);
1593 return;
1594 }
1595 #endif
1596 static_key_slow_dec(&netstamp_needed);
1597 }
1598 EXPORT_SYMBOL(net_disable_timestamp);
1599
1600 static inline void net_timestamp_set(struct sk_buff *skb)
1601 {
1602 skb->tstamp.tv64 = 0;
1603 if (static_key_false(&netstamp_needed))
1604 __net_timestamp(skb);
1605 }
1606
1607 #define net_timestamp_check(COND, SKB) \
1608 if (static_key_false(&netstamp_needed)) { \
1609 if ((COND) && !(SKB)->tstamp.tv64) \
1610 __net_timestamp(SKB); \
1611 } \
1612
1613 static 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
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)
1642 * NET_RX_DROP (packet was dropped, but freed)
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 */
1652 int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1653 {
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
1662 skb_orphan(skb);
1663
1664 if (unlikely(!is_skb_forwardable(dev, skb))) {
1665 atomic_long_inc(&dev->rx_dropped);
1666 kfree_skb(skb);
1667 return NET_RX_DROP;
1668 }
1669 skb->skb_iif = 0;
1670 skb->dev = dev;
1671 skb_dst_drop(skb);
1672 skb->tstamp.tv64 = 0;
1673 skb->pkt_type = PACKET_HOST;
1674 skb->protocol = eth_type_trans(skb, dev);
1675 skb->mark = 0;
1676 secpath_reset(skb);
1677 nf_reset(skb);
1678 nf_reset_trace(skb);
1679 return netif_rx(skb);
1680 }
1681 EXPORT_SYMBOL_GPL(dev_forward_skb);
1682
1683 static inline int deliver_skb(struct sk_buff *skb,
1684 struct packet_type *pt_prev,
1685 struct net_device *orig_dev)
1686 {
1687 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
1688 return -ENOMEM;
1689 atomic_inc(&skb->users);
1690 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1691 }
1692
1693 static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
1694 {
1695 if (!ptype->af_packet_priv || !skb->sk)
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
1706 /*
1707 * Support routine. Sends outgoing frames to any network
1708 * taps currently in use.
1709 */
1710
1711 static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
1712 {
1713 struct packet_type *ptype;
1714 struct sk_buff *skb2 = NULL;
1715 struct packet_type *pt_prev = NULL;
1716
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) &&
1723 (!skb_loop_sk(ptype, skb))) {
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);
1731 if (!skb2)
1732 break;
1733
1734 net_timestamp_set(skb2);
1735
1736 /* skb->nh should be correctly
1737 set by sender, so that the second statement is
1738 just protection against buggy protocols.
1739 */
1740 skb_reset_mac_header(skb2);
1741
1742 if (skb_network_header(skb2) < skb2->data ||
1743 skb2->network_header > skb2->tail) {
1744 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
1745 ntohs(skb2->protocol),
1746 dev->name);
1747 skb_reset_network_header(skb2);
1748 }
1749
1750 skb2->transport_header = skb2->network_header;
1751 skb2->pkt_type = PACKET_OUTGOING;
1752 pt_prev = ptype;
1753 }
1754 }
1755 if (pt_prev)
1756 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
1757 rcu_read_unlock();
1758 }
1759
1760 /**
1761 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
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 */
1773 static void netif_setup_tc(struct net_device *dev, unsigned int txq)
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) {
1780 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
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) {
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);
1793 netdev_set_prio_tc_map(dev, i, 0);
1794 }
1795 }
1796 }
1797
1798 #ifdef CONFIG_XPS
1799 static DEFINE_MUTEX(xps_map_mutex);
1800 #define xmap_dereference(P) \
1801 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
1802
1803 static struct xps_map *remove_xps_queue(struct xps_dev_maps *dev_maps,
1804 int cpu, u16 index)
1805 {
1806 struct xps_map *map = NULL;
1807 int pos;
1808
1809 if (dev_maps)
1810 map = xmap_dereference(dev_maps->cpu_map[cpu]);
1811
1812 for (pos = 0; map && pos < map->len; pos++) {
1813 if (map->queues[pos] == index) {
1814 if (map->len > 1) {
1815 map->queues[pos] = map->queues[--map->len];
1816 } else {
1817 RCU_INIT_POINTER(dev_maps->cpu_map[cpu], NULL);
1818 kfree_rcu(map, rcu);
1819 map = NULL;
1820 }
1821 break;
1822 }
1823 }
1824
1825 return map;
1826 }
1827
1828 static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
1829 {
1830 struct xps_dev_maps *dev_maps;
1831 int cpu, i;
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) {
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)
1846 active = true;
1847 }
1848
1849 if (!active) {
1850 RCU_INIT_POINTER(dev->xps_maps, NULL);
1851 kfree_rcu(dev_maps, rcu);
1852 }
1853
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
1858 out_no_maps:
1859 mutex_unlock(&xps_map_mutex);
1860 }
1861
1862 static 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
1897 int netif_set_xps_queue(struct net_device *dev, struct cpumask *mask, u16 index)
1898 {
1899 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
1900 struct xps_map *map, *new_map;
1901 int maps_sz = max_t(unsigned int, XPS_DEV_MAPS_SIZE, L1_CACHE_BYTES);
1902 int cpu, numa_node_id = -2;
1903 bool active = false;
1904
1905 mutex_lock(&xps_map_mutex);
1906
1907 dev_maps = xmap_dereference(dev->xps_maps);
1908
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);
1916 if (!new_dev_maps) {
1917 mutex_unlock(&xps_map_mutex);
1918 return -ENOMEM;
1919 }
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
1934 for_each_possible_cpu(cpu) {
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;
1945 #ifdef CONFIG_NUMA
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;
1950 #endif
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);
1955 }
1956
1957 }
1958
1959 rcu_assign_pointer(dev->xps_maps, new_dev_maps);
1960
1961 /* Cleanup old maps */
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 }
1969
1970 kfree_rcu(dev_maps, rcu);
1971 }
1972
1973 dev_maps = new_dev_maps;
1974 active = true;
1975
1976 out_no_new_maps:
1977 /* update Tx queue numa node */
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
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
2000 out_no_maps:
2001 mutex_unlock(&xps_map_mutex);
2002
2003 return 0;
2004 error:
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
2014 mutex_unlock(&xps_map_mutex);
2015
2016 kfree(new_dev_maps);
2017 return -ENOMEM;
2018 }
2019 EXPORT_SYMBOL(netif_set_xps_queue);
2020
2021 #endif
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 */
2026 int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
2027 {
2028 int rc;
2029
2030 if (txq < 1 || txq > dev->num_tx_queues)
2031 return -EINVAL;
2032
2033 if (dev->reg_state == NETREG_REGISTERED ||
2034 dev->reg_state == NETREG_UNREGISTERING) {
2035 ASSERT_RTNL();
2036
2037 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2038 txq);
2039 if (rc)
2040 return rc;
2041
2042 if (dev->num_tc)
2043 netif_setup_tc(dev, txq);
2044
2045 if (txq < dev->real_num_tx_queues) {
2046 qdisc_reset_all_tx_gt(dev, txq);
2047 #ifdef CONFIG_XPS
2048 netif_reset_xps_queues_gt(dev, txq);
2049 #endif
2050 }
2051 }
2052
2053 dev->real_num_tx_queues = txq;
2054 return 0;
2055 }
2056 EXPORT_SYMBOL(netif_set_real_num_tx_queues);
2057
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
2066 * negative error code. If called before registration, it always
2067 * succeeds.
2068 */
2069 int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2070 {
2071 int rc;
2072
2073 if (rxq < 1 || rxq > dev->num_rx_queues)
2074 return -EINVAL;
2075
2076 if (dev->reg_state == NETREG_REGISTERED) {
2077 ASSERT_RTNL();
2078
2079 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2080 rxq);
2081 if (rc)
2082 return rc;
2083 }
2084
2085 dev->real_num_rx_queues = rxq;
2086 return 0;
2087 }
2088 EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2089 #endif
2090
2091 /**
2092 * netif_get_num_default_rss_queues - default number of RSS queues
2093 *
2094 * This routine should set an upper limit on the number of RSS queues
2095 * used by default by multiqueue devices.
2096 */
2097 int netif_get_num_default_rss_queues(void)
2098 {
2099 return min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
2100 }
2101 EXPORT_SYMBOL(netif_get_num_default_rss_queues);
2102
2103 static inline void __netif_reschedule(struct Qdisc *q)
2104 {
2105 struct softnet_data *sd;
2106 unsigned long flags;
2107
2108 local_irq_save(flags);
2109 sd = &__get_cpu_var(softnet_data);
2110 q->next_sched = NULL;
2111 *sd->output_queue_tailp = q;
2112 sd->output_queue_tailp = &q->next_sched;
2113 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2114 local_irq_restore(flags);
2115 }
2116
2117 void __netif_schedule(struct Qdisc *q)
2118 {
2119 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
2120 __netif_reschedule(q);
2121 }
2122 EXPORT_SYMBOL(__netif_schedule);
2123
2124 void dev_kfree_skb_irq(struct sk_buff *skb)
2125 {
2126 if (atomic_dec_and_test(&skb->users)) {
2127 struct softnet_data *sd;
2128 unsigned long flags;
2129
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 }
2137 }
2138 EXPORT_SYMBOL(dev_kfree_skb_irq);
2139
2140 void 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 }
2147 EXPORT_SYMBOL(dev_kfree_skb_any);
2148
2149
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 */
2156 void netif_device_detach(struct net_device *dev)
2157 {
2158 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
2159 netif_running(dev)) {
2160 netif_tx_stop_all_queues(dev);
2161 }
2162 }
2163 EXPORT_SYMBOL(netif_device_detach);
2164
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 */
2171 void netif_device_attach(struct net_device *dev)
2172 {
2173 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
2174 netif_running(dev)) {
2175 netif_tx_wake_all_queues(dev);
2176 __netdev_watchdog_up(dev);
2177 }
2178 }
2179 EXPORT_SYMBOL(netif_device_attach);
2180
2181 static void skb_warn_bad_offload(const struct sk_buff *skb)
2182 {
2183 static const netdev_features_t null_features = 0;
2184 struct net_device *dev = skb->dev;
2185 const char *driver = "";
2186
2187 if (!net_ratelimit())
2188 return;
2189
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",
2195 driver, dev ? &dev->features : &null_features,
2196 skb->sk ? &skb->sk->sk_route_caps : &null_features,
2197 skb->len, skb->data_len, skb_shinfo(skb)->gso_size,
2198 skb_shinfo(skb)->gso_type, skb->ip_summed);
2199 }
2200
2201 /*
2202 * Invalidate hardware checksum when packet is to be mangled, and
2203 * complete checksum manually on outgoing path.
2204 */
2205 int skb_checksum_help(struct sk_buff *skb)
2206 {
2207 __wsum csum;
2208 int ret = 0, offset;
2209
2210 if (skb->ip_summed == CHECKSUM_COMPLETE)
2211 goto out_set_summed;
2212
2213 if (unlikely(skb_shinfo(skb)->gso_size)) {
2214 skb_warn_bad_offload(skb);
2215 return -EINVAL;
2216 }
2217
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
2227 offset = skb_checksum_start_offset(skb);
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))) {
2236 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2237 if (ret)
2238 goto out;
2239 }
2240
2241 *(__sum16 *)(skb->data + offset) = csum_fold(csum);
2242 out_set_summed:
2243 skb->ip_summed = CHECKSUM_NONE;
2244 out:
2245 return ret;
2246 }
2247 EXPORT_SYMBOL(skb_checksum_help);
2248
2249 __be16 skb_network_protocol(struct sk_buff *skb)
2250 {
2251 __be16 type = skb->protocol;
2252 int vlan_depth = ETH_HLEN;
2253
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
2265 while (type == htons(ETH_P_8021Q) || type == htons(ETH_P_8021AD)) {
2266 struct vlan_hdr *vh;
2267
2268 if (unlikely(!pskb_may_pull(skb, vlan_depth + VLAN_HLEN)))
2269 return 0;
2270
2271 vh = (struct vlan_hdr *)(skb->data + vlan_depth);
2272 type = vh->h_vlan_encapsulated_proto;
2273 vlan_depth += VLAN_HLEN;
2274 }
2275
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 */
2284 struct 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
2294 __skb_pull(skb, skb->mac_len);
2295
2296 rcu_read_lock();
2297 list_for_each_entry_rcu(ptype, &offload_base, list) {
2298 if (ptype->type == type && ptype->callbacks.gso_segment) {
2299 if (unlikely(skb->ip_summed != CHECKSUM_PARTIAL)) {
2300 int err;
2301
2302 err = ptype->callbacks.gso_send_check(skb);
2303 segs = ERR_PTR(err);
2304 if (err || skb_gso_ok(skb, features))
2305 break;
2306 __skb_push(skb, (skb->data -
2307 skb_network_header(skb)));
2308 }
2309 segs = ptype->callbacks.gso_segment(skb, features);
2310 break;
2311 }
2312 }
2313 rcu_read_unlock();
2314
2315 __skb_push(skb, skb->data - skb_mac_header(skb));
2316
2317 return segs;
2318 }
2319 EXPORT_SYMBOL(skb_mac_gso_segment);
2320
2321
2322 /* openvswitch calls this on rx path, so we need a different check.
2323 */
2324 static 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 */
2343 struct 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
2356 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
2357 skb_reset_mac_header(skb);
2358 skb_reset_mac_len(skb);
2359
2360 return skb_mac_gso_segment(skb, features);
2361 }
2362 EXPORT_SYMBOL(__skb_gso_segment);
2363
2364 /* Take action when hardware reception checksum errors are detected. */
2365 #ifdef CONFIG_BUG
2366 void netdev_rx_csum_fault(struct net_device *dev)
2367 {
2368 if (net_ratelimit()) {
2369 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
2370 dump_stack();
2371 }
2372 }
2373 EXPORT_SYMBOL(netdev_rx_csum_fault);
2374 #endif
2375
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
2381 static int illegal_highdma(const struct net_device *dev, struct sk_buff *skb)
2382 {
2383 #ifdef CONFIG_HIGHMEM
2384 int i;
2385 if (!(dev->features & NETIF_F_HIGHDMA)) {
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)))
2389 return 1;
2390 }
2391 }
2392
2393 if (PCI_DMA_BUS_IS_PHYS) {
2394 struct device *pdev = dev->dev.parent;
2395
2396 if (!pdev)
2397 return 0;
2398 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2399 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2400 dma_addr_t addr = page_to_phys(skb_frag_page(frag));
2401 if (!pdev->dma_mask || addr + PAGE_SIZE - 1 > *pdev->dma_mask)
2402 return 1;
2403 }
2404 }
2405 #endif
2406 return 0;
2407 }
2408
2409 struct 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
2415 static 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
2435 * @features: device features as applicable to this skb
2436 *
2437 * This function segments the given skb and stores the list of segments
2438 * in skb->next.
2439 */
2440 static int dev_gso_segment(struct sk_buff *skb, netdev_features_t features)
2441 {
2442 struct sk_buff *segs;
2443
2444 segs = skb_gso_segment(skb, features);
2445
2446 /* Verifying header integrity only. */
2447 if (!segs)
2448 return 0;
2449
2450 if (IS_ERR(segs))
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
2460 static netdev_features_t harmonize_features(struct sk_buff *skb,
2461 __be16 protocol,
2462 const struct net_device *dev,
2463 netdev_features_t features)
2464 {
2465 if (skb->ip_summed != CHECKSUM_NONE &&
2466 !can_checksum_protocol(features, protocol)) {
2467 features &= ~NETIF_F_ALL_CSUM;
2468 } else if (illegal_highdma(dev, skb)) {
2469 features &= ~NETIF_F_SG;
2470 }
2471
2472 return features;
2473 }
2474
2475 netdev_features_t netif_skb_dev_features(struct sk_buff *skb,
2476 const struct net_device *dev)
2477 {
2478 __be16 protocol = skb->protocol;
2479 netdev_features_t features = dev->features;
2480
2481 if (skb_shinfo(skb)->gso_segs > dev->gso_max_segs)
2482 features &= ~NETIF_F_GSO_MASK;
2483
2484 if (protocol == htons(ETH_P_8021Q) || protocol == htons(ETH_P_8021AD)) {
2485 struct vlan_ethhdr *veh = (struct vlan_ethhdr *)skb->data;
2486 protocol = veh->h_vlan_encapsulated_proto;
2487 } else if (!vlan_tx_tag_present(skb)) {
2488 return harmonize_features(skb, protocol, dev, features);
2489 }
2490
2491 features &= (dev->vlan_features | NETIF_F_HW_VLAN_CTAG_TX |
2492 NETIF_F_HW_VLAN_STAG_TX);
2493
2494 if (protocol != htons(ETH_P_8021Q) && protocol != htons(ETH_P_8021AD)) {
2495 return harmonize_features(skb, protocol, dev, features);
2496 } else {
2497 features &= NETIF_F_SG | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST |
2498 NETIF_F_GEN_CSUM | NETIF_F_HW_VLAN_CTAG_TX |
2499 NETIF_F_HW_VLAN_STAG_TX;
2500 return harmonize_features(skb, protocol, dev, features);
2501 }
2502
2503 return harmonize_features(skb, protocol, dev, features);
2504 }
2505 EXPORT_SYMBOL(netif_skb_dev_features);
2506
2507 /*
2508 * Returns true if either:
2509 * 1. skb has frag_list and the device doesn't support FRAGLIST, or
2510 * 2. skb is fragmented and the device does not support SG.
2511 */
2512 static inline int skb_needs_linearize(struct sk_buff *skb,
2513 netdev_features_t features)
2514 {
2515 return skb_is_nonlinear(skb) &&
2516 ((skb_has_frag_list(skb) &&
2517 !(features & NETIF_F_FRAGLIST)) ||
2518 (skb_shinfo(skb)->nr_frags &&
2519 !(features & NETIF_F_SG)));
2520 }
2521
2522 int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
2523 struct netdev_queue *txq)
2524 {
2525 const struct net_device_ops *ops = dev->netdev_ops;
2526 int rc = NETDEV_TX_OK;
2527 unsigned int skb_len;
2528
2529 if (likely(!skb->next)) {
2530 netdev_features_t features;
2531
2532 /*
2533 * If device doesn't need skb->dst, release it right now while
2534 * its hot in this cpu cache
2535 */
2536 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
2537 skb_dst_drop(skb);
2538
2539 features = netif_skb_features(skb);
2540
2541 if (vlan_tx_tag_present(skb) &&
2542 !vlan_hw_offload_capable(features, skb->vlan_proto)) {
2543 skb = __vlan_put_tag(skb, skb->vlan_proto,
2544 vlan_tx_tag_get(skb));
2545 if (unlikely(!skb))
2546 goto out;
2547
2548 skb->vlan_tci = 0;
2549 }
2550
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
2558 if (netif_needs_gso(skb, features)) {
2559 if (unlikely(dev_gso_segment(skb, features)))
2560 goto out_kfree_skb;
2561 if (skb->next)
2562 goto gso;
2563 } else {
2564 if (skb_needs_linearize(skb, features) &&
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) {
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));
2579 if (!(features & NETIF_F_ALL_CSUM) &&
2580 skb_checksum_help(skb))
2581 goto out_kfree_skb;
2582 }
2583 }
2584
2585 if (!list_empty(&ptype_all))
2586 dev_queue_xmit_nit(skb, dev);
2587
2588 skb_len = skb->len;
2589 rc = ops->ndo_start_xmit(skb, dev);
2590 trace_net_dev_xmit(skb, rc, dev, skb_len);
2591 if (rc == NETDEV_TX_OK)
2592 txq_trans_update(txq);
2593 return rc;
2594 }
2595
2596 gso:
2597 do {
2598 struct sk_buff *nskb = skb->next;
2599
2600 skb->next = nskb->next;
2601 nskb->next = NULL;
2602
2603 if (!list_empty(&ptype_all))
2604 dev_queue_xmit_nit(nskb, dev);
2605
2606 skb_len = nskb->len;
2607 rc = ops->ndo_start_xmit(nskb, dev);
2608 trace_net_dev_xmit(nskb, rc, dev, skb_len);
2609 if (unlikely(rc != NETDEV_TX_OK)) {
2610 if (rc & ~NETDEV_TX_MASK)
2611 goto out_kfree_gso_skb;
2612 nskb->next = skb->next;
2613 skb->next = nskb;
2614 return rc;
2615 }
2616 txq_trans_update(txq);
2617 if (unlikely(netif_xmit_stopped(txq) && skb->next))
2618 return NETDEV_TX_BUSY;
2619 } while (skb->next);
2620
2621 out_kfree_gso_skb:
2622 if (likely(skb->next == NULL)) {
2623 skb->destructor = DEV_GSO_CB(skb)->destructor;
2624 consume_skb(skb);
2625 return rc;
2626 }
2627 out_kfree_skb:
2628 kfree_skb(skb);
2629 out:
2630 return rc;
2631 }
2632
2633 static 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) {
2643 unsigned int hdr_len;
2644 u16 gso_segs = shinfo->gso_segs;
2645
2646 /* mac layer + network layer */
2647 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
2648
2649 /* + transport layer */
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);
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;
2660 }
2661 }
2662
2663 static 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);
2668 bool contended;
2669 int rc;
2670
2671 qdisc_pkt_len_init(skb);
2672 qdisc_calculate_pkt_len(skb, q);
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 */
2679 contended = qdisc_is_running(q);
2680 if (unlikely(contended))
2681 spin_lock(&q->busylock);
2682
2683 spin_lock(root_lock);
2684 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
2685 printk(KERN_WARNING "[mtk_net]__dev_xmit_skb drop skb_len = %d \n", skb->len);
2686 kfree_skb(skb);
2687 rc = NET_XMIT_DROP;
2688 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
2689 qdisc_run_begin(q)) {
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 */
2695 if (!(dev->priv_flags & IFF_XMIT_DST_RELEASE))
2696 skb_dst_force(skb);
2697
2698 qdisc_bstats_update(q, skb);
2699
2700 if (sch_direct_xmit(skb, q, dev, txq, root_lock)) {
2701 if (unlikely(contended)) {
2702 spin_unlock(&q->busylock);
2703 contended = false;
2704 }
2705 __qdisc_run(q);
2706 } else
2707 qdisc_run_end(q);
2708
2709 rc = NET_XMIT_SUCCESS;
2710 } else {
2711 skb_dst_force(skb);
2712 rc = q->enqueue(skb, q) & NET_XMIT_MASK;
2713 if (qdisc_run_begin(q)) {
2714 if (unlikely(contended)) {
2715 spin_unlock(&q->busylock);
2716 contended = false;
2717 }
2718 __qdisc_run(q);
2719 }
2720 }
2721 spin_unlock(root_lock);
2722 if (unlikely(contended))
2723 spin_unlock(&q->busylock);
2724 return rc;
2725 }
2726
2727 #if IS_ENABLED(CONFIG_NETPRIO_CGROUP)
2728 static void skb_update_prio(struct sk_buff *skb)
2729 {
2730 struct netprio_map *map = rcu_dereference_bh(skb->dev->priomap);
2731
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 }
2738 }
2739 #else
2740 #define skb_update_prio(skb)
2741 #endif
2742
2743 static DEFINE_PER_CPU(int, xmit_recursion);
2744 #define RECURSION_LIMIT 10
2745
2746 /**
2747 * dev_loopback_xmit - loop back @skb
2748 * @skb: buffer to transmit
2749 */
2750 int 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 }
2761 EXPORT_SYMBOL(dev_loopback_xmit);
2762
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 */
2788 int dev_queue_xmit(struct sk_buff *skb)
2789 {
2790 struct net_device *dev = skb->dev;
2791 struct netdev_queue *txq;
2792 struct Qdisc *q;
2793 int rc = -ENOMEM;
2794
2795 skb_reset_mac_header(skb);
2796
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
2813 /* Disable soft irqs for various locks below. Also
2814 * stops preemption for RCU.
2815 */
2816 rcu_read_lock_bh();
2817
2818 skb_update_prio(skb);
2819
2820 txq = netdev_pick_tx(dev, skb);
2821 q = rcu_dereference_bh(txq->qdisc);
2822
2823 #ifdef CONFIG_NET_CLS_ACT
2824 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_EGRESS);
2825 #endif
2826 trace_net_dev_queue(skb);
2827 if (q->enqueue) {
2828 rc = __dev_xmit_skb(skb, q, dev, txq);
2829 goto out;
2830 }
2831
2832 /* The device has no queue. Common case for software devices:
2833 loopback, all the sorts of tunnels...
2834
2835 Really, it is unlikely that netif_tx_lock protection is necessary
2836 here. (f.e. loopback and IP tunnels are clean ignoring statistics
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
2847 if (txq->xmit_lock_owner != cpu) {
2848
2849 if (__this_cpu_read(xmit_recursion) > RECURSION_LIMIT)
2850 goto recursion_alert;
2851
2852 HARD_TX_LOCK(dev, txq, cpu);
2853
2854 if (!netif_xmit_stopped(txq)) {
2855 __this_cpu_inc(xmit_recursion);
2856 rc = dev_hard_start_xmit(skb, dev, txq);
2857 __this_cpu_dec(xmit_recursion);
2858 if (dev_xmit_complete(rc)) {
2859 HARD_TX_UNLOCK(dev, txq);
2860 goto out;
2861 }
2862 }
2863 HARD_TX_UNLOCK(dev, txq);
2864 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
2865 dev->name);
2866 } else {
2867 /* Recursion is detected! It is possible,
2868 * unfortunately
2869 */
2870 recursion_alert:
2871 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
2872 dev->name);
2873 }
2874 }
2875
2876 rc = -ENETDOWN;
2877 rcu_read_unlock_bh();
2878
2879 kfree_skb(skb);
2880 return rc;
2881 out:
2882 rcu_read_unlock_bh();
2883 return rc;
2884 }
2885 EXPORT_SYMBOL(dev_queue_xmit);
2886
2887
2888 /*=======================================================================
2889 Receiver routines
2890 =======================================================================*/
2891
2892 int netdev_max_backlog __read_mostly = 1000;
2893 EXPORT_SYMBOL(netdev_max_backlog);
2894
2895 int netdev_tstamp_prequeue __read_mostly = 1;
2896 int netdev_budget __read_mostly = 300;
2897 int weight_p __read_mostly = 64; /* old backlog weight */
2898
2899 /* Called with irq disabled */
2900 static 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
2907 #ifdef CONFIG_RPS
2908
2909 /* One global table that all flow-based protocols share. */
2910 struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
2911 EXPORT_SYMBOL(rps_sock_flow_table);
2912
2913 struct static_key rps_needed __read_mostly;
2914
2915 static struct rps_dev_flow *
2916 set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
2917 struct rps_dev_flow *rflow, u16 next_cpu)
2918 {
2919 if (next_cpu != RPS_NO_CPU) {
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? */
2929 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
2930 !(dev->features & NETIF_F_NTUPLE))
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];
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 =
2953 per_cpu(softnet_data, next_cpu).input_queue_head;
2954 }
2955
2956 rflow->cpu = next_cpu;
2957 return rflow;
2958 }
2959
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 */
2965 static 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;
2969 struct rps_map *map;
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);
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);
2982 goto done;
2983 }
2984 rxqueue = dev->_rx + index;
2985 } else
2986 rxqueue = dev->_rx;
2987
2988 map = rcu_dereference(rxqueue->rps_map);
2989 if (map) {
2990 if (map->len == 1 &&
2991 !rcu_access_pointer(rxqueue->rps_flow_table)) {
2992 tcpu = map->cpus[0];
2993 if (cpu_online(tcpu))
2994 cpu = tcpu;
2995 goto done;
2996 }
2997 } else if (!rcu_access_pointer(rxqueue->rps_flow_table)) {
2998 goto done;
2999 }
3000
3001 skb_reset_network_header(skb);
3002 if (!skb_get_rxhash(skb))
3003 goto done;
3004
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 -
3031 rflow->last_qtail)) >= 0)) {
3032 tcpu = next_cpu;
3033 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
3034 }
3035
3036 if (tcpu != RPS_NO_CPU && cpu_online(tcpu)) {
3037 *rflowp = rflow;
3038 cpu = tcpu;
3039 goto done;
3040 }
3041 }
3042
3043 if (map) {
3044 tcpu = map->cpus[((u64) skb->rxhash * map->len) >> 32];
3045
3046 if (cpu_online(tcpu)) {
3047 cpu = tcpu;
3048 goto done;
3049 }
3050 }
3051
3052 done:
3053 return cpu;
3054 }
3055
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 */
3069 bool 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 }
3092 EXPORT_SYMBOL(rps_may_expire_flow);
3093
3094 #endif /* CONFIG_RFS_ACCEL */
3095
3096 /* Called from hardirq (IPI) context */
3097 static void rps_trigger_softirq(void *data)
3098 {
3099 struct softnet_data *sd = data;
3100
3101 ____napi_schedule(sd, &sd->backlog);
3102 sd->received_rps++;
3103 }
3104
3105 #endif /* CONFIG_RPS */
3106
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 */
3112 static 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
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 */
3132 static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
3133 unsigned int *qtail)
3134 {
3135 struct softnet_data *sd;
3136 unsigned long flags;
3137
3138 sd = &per_cpu(softnet_data, cpu);
3139
3140 local_irq_save(flags);
3141
3142 rps_lock(sd);
3143 if (skb_queue_len(&sd->input_pkt_queue) <= netdev_max_backlog) {
3144 if (skb_queue_len(&sd->input_pkt_queue)) {
3145 enqueue:
3146 __skb_queue_tail(&sd->input_pkt_queue, skb);
3147 input_queue_tail_incr_save(sd, qtail);
3148 rps_unlock(sd);
3149 local_irq_restore(flags);
3150 return NET_RX_SUCCESS;
3151 }
3152
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)) {
3157 if (!rps_ipi_queued(sd))
3158 ____napi_schedule(sd, &sd->backlog);
3159 }
3160 goto enqueue;
3161 }
3162
3163 sd->dropped++;
3164 rps_unlock(sd);
3165
3166 local_irq_restore(flags);
3167
3168 atomic_long_inc(&skb->dev->rx_dropped);
3169 kfree_skb(skb);
3170 return NET_RX_DROP;
3171 }
3172
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)
3184 * NET_RX_DROP (packet was dropped)
3185 *
3186 */
3187
3188 int netif_rx(struct sk_buff *skb)
3189 {
3190 int ret;
3191
3192 /* if netpoll wants it, pretend we never saw it */
3193 if (netpoll_rx(skb))
3194 return NET_RX_DROP;
3195
3196 net_timestamp_check(netdev_tstamp_prequeue, skb);
3197
3198 trace_netif_rx(skb);
3199 #ifdef CONFIG_RPS
3200 if (static_key_false(&rps_needed)) {
3201 struct rps_dev_flow voidflow, *rflow = &voidflow;
3202 int cpu;
3203
3204 preempt_disable();
3205 rcu_read_lock();
3206
3207 cpu = get_rps_cpu(skb->dev, skb, &rflow);
3208 if (cpu < 0)
3209 cpu = smp_processor_id();
3210
3211 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3212
3213 rcu_read_unlock();
3214 preempt_enable();
3215 } else
3216 #endif
3217 {
3218 unsigned int qtail;
3219 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
3220 put_cpu();
3221 }
3222 return ret;
3223 }
3224 EXPORT_SYMBOL(netif_rx);
3225
3226 int 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 }
3238 EXPORT_SYMBOL(netif_rx_ni);
3239
3240 static 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
3256 WARN_ON(atomic_read(&skb->users));
3257 trace_kfree_skb(skb, net_tx_action);
3258 __kfree_skb(skb);
3259 }
3260 }
3261
3262 if (sd->output_queue) {
3263 struct Qdisc *head;
3264
3265 local_irq_disable();
3266 head = sd->output_queue;
3267 sd->output_queue = NULL;
3268 sd->output_queue_tailp = &sd->output_queue;
3269 local_irq_enable();
3270
3271 while (head) {
3272 struct Qdisc *q = head;
3273 spinlock_t *root_lock;
3274
3275 head = head->next_sched;
3276
3277 root_lock = qdisc_lock(q);
3278 if (spin_trylock(root_lock)) {
3279 smp_mb__before_clear_bit();
3280 clear_bit(__QDISC_STATE_SCHED,
3281 &q->state);
3282 qdisc_run(q);
3283 spin_unlock(root_lock);
3284 } else {
3285 if (!test_bit(__QDISC_STATE_DEACTIVATED,
3286 &q->state)) {
3287 __netif_reschedule(q);
3288 } else {
3289 smp_mb__before_clear_bit();
3290 clear_bit(__QDISC_STATE_SCHED,
3291 &q->state);
3292 }
3293 }
3294 }
3295 }
3296 }
3297
3298 #if (defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)) && \
3299 (defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE))
3300 /* This hook is defined here for ATM LANE */
3301 int (*br_fdb_test_addr_hook)(struct net_device *dev,
3302 unsigned char *addr) __read_mostly;
3303 EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
3304 #endif
3305
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
3311 * NOTE: This doesn't stop any functionality; if you dont have
3312 * the ingress scheduler, you just can't add policies on ingress.
3313 *
3314 */
3315 static int ing_filter(struct sk_buff *skb, struct netdev_queue *rxq)
3316 {
3317 struct net_device *dev = skb->dev;
3318 u32 ttl = G_TC_RTTL(skb->tc_verd);
3319 int result = TC_ACT_OK;
3320 struct Qdisc *q;
3321
3322 if (unlikely(MAX_RED_LOOP < ttl++)) {
3323 net_warn_ratelimited("Redir loop detected Dropping packet (%d->%d)\n",
3324 skb->skb_iif, dev->ifindex);
3325 return TC_ACT_SHOT;
3326 }
3327
3328 skb->tc_verd = SET_TC_RTTL(skb->tc_verd, ttl);
3329 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_INGRESS);
3330
3331 q = rxq->qdisc;
3332 if (q != &noop_qdisc) {
3333 spin_lock(qdisc_lock(q));
3334 if (likely(!test_bit(__QDISC_STATE_DEACTIVATED, &q->state)))
3335 result = qdisc_enqueue_root(skb, q);
3336 spin_unlock(qdisc_lock(q));
3337 }
3338
3339 return result;
3340 }
3341
3342 static 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 {
3346 struct netdev_queue *rxq = rcu_dereference(skb->dev->ingress_queue);
3347
3348 if (!rxq || rxq->qdisc == &noop_qdisc)
3349 goto out;
3350
3351 if (*pt_prev) {
3352 *ret = deliver_skb(skb, *pt_prev, orig_dev);
3353 *pt_prev = NULL;
3354 }
3355
3356 switch (ing_filter(skb, rxq)) {
3357 case TC_ACT_SHOT:
3358 case TC_ACT_STOLEN:
3359 kfree_skb(skb);
3360 return NULL;
3361 }
3362
3363 out:
3364 skb->tc_verd = 0;
3365 return skb;
3366 }
3367 #endif
3368
3369 /**
3370 * netdev_rx_handler_register - register receive handler
3371 * @dev: device to register a handler for
3372 * @rx_handler: receive handler to register
3373 * @rx_handler_data: data pointer that is used by rx handler
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.
3380 *
3381 * For a general description of rx_handler, see enum rx_handler_result.
3382 */
3383 int netdev_rx_handler_register(struct net_device *dev,
3384 rx_handler_func_t *rx_handler,
3385 void *rx_handler_data)
3386 {
3387 ASSERT_RTNL();
3388
3389 if (dev->rx_handler)
3390 return -EBUSY;
3391
3392 /* Note: rx_handler_data must be set before rx_handler */
3393 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
3394 rcu_assign_pointer(dev->rx_handler, rx_handler);
3395
3396 return 0;
3397 }
3398 EXPORT_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 *
3404 * Unregister a receive handler from a device.
3405 *
3406 * The caller must hold the rtnl_mutex.
3407 */
3408 void netdev_rx_handler_unregister(struct net_device *dev)
3409 {
3410
3411 ASSERT_RTNL();
3412 RCU_INIT_POINTER(dev->rx_handler, NULL);
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();
3418 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
3419 }
3420 EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
3421
3422 /*
3423 * Limit the use of PFMEMALLOC reserves to those protocols that implement
3424 * the special handling of PFMEMALLOC skbs.
3425 */
3426 static 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):
3433 case __constant_htons(ETH_P_8021AD):
3434 return true;
3435 default:
3436 return false;
3437 }
3438 }
3439
3440 static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc)
3441 {
3442 struct packet_type *ptype, *pt_prev;
3443 rx_handler_func_t *rx_handler;
3444 struct net_device *orig_dev;
3445 struct net_device *null_or_dev;
3446 bool deliver_exact = false;
3447 int ret = NET_RX_DROP;
3448 __be16 type;
3449
3450 net_timestamp_check(!netdev_tstamp_prequeue, skb);
3451
3452 trace_netif_receive_skb(skb);
3453
3454 /* if we've gotten here through NAPI, check netpoll */
3455 if (netpoll_receive_skb(skb))
3456 goto out;
3457
3458 orig_dev = skb->dev;
3459
3460 skb_reset_network_header(skb);
3461 if (!skb_transport_header_was_set(skb))
3462 skb_reset_transport_header(skb);
3463 skb_reset_mac_len(skb);
3464
3465 pt_prev = NULL;
3466
3467 another_round:
3468 skb->skb_iif = skb->dev->ifindex;
3469
3470 __this_cpu_inc(softnet_data.processed);
3471
3472 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
3473 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
3474 skb = vlan_untag(skb);
3475 if (unlikely(!skb))
3476 goto out;
3477 }
3478
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
3486 if (pfmemalloc)
3487 goto skip_taps;
3488
3489 list_for_each_entry_rcu(ptype, &ptype_all, list) {
3490 if (!ptype->dev || ptype->dev == skb->dev) {
3491 if (pt_prev)
3492 ret = deliver_skb(skb, pt_prev, orig_dev);
3493 pt_prev = ptype;
3494 }
3495 }
3496
3497 skip_taps:
3498 #ifdef CONFIG_NET_CLS_ACT
3499 skb = handle_ing(skb, &pt_prev, &ret, orig_dev);
3500 if (!skb)
3501 goto out;
3502 ncls:
3503 #endif
3504
3505 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
3506 goto drop;
3507
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 }
3513 if (vlan_do_receive(&skb))
3514 goto another_round;
3515 else if (unlikely(!skb))
3516 goto out;
3517 }
3518
3519 rx_handler = rcu_dereference(skb->dev->rx_handler);
3520 if (rx_handler) {
3521 if (pt_prev) {
3522 ret = deliver_skb(skb, pt_prev, orig_dev);
3523 pt_prev = NULL;
3524 }
3525 switch (rx_handler(&skb)) {
3526 case RX_HANDLER_CONSUMED:
3527 ret = NET_RX_SUCCESS;
3528 goto out;
3529 case RX_HANDLER_ANOTHER:
3530 goto another_round;
3531 case RX_HANDLER_EXACT:
3532 deliver_exact = true;
3533 case RX_HANDLER_PASS:
3534 break;
3535 default:
3536 BUG();
3537 }
3538 }
3539
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 }
3549
3550 /* deliver only exact match when indicated */
3551 null_or_dev = deliver_exact ? skb->dev : NULL;
3552
3553 type = skb->protocol;
3554 list_for_each_entry_rcu(ptype,
3555 &ptype_base[ntohs(type) & PTYPE_HASH_MASK], list) {
3556 if (ptype->type == type &&
3557 (ptype->dev == null_or_dev || ptype->dev == skb->dev ||
3558 ptype->dev == orig_dev)) {
3559 if (pt_prev)
3560 ret = deliver_skb(skb, pt_prev, orig_dev);
3561 pt_prev = ptype;
3562 }
3563 }
3564
3565 if (pt_prev) {
3566 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
3567 goto drop;
3568 else
3569 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
3570 } else {
3571 drop:
3572 atomic_long_inc(&skb->dev->rx_dropped);
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
3580 out:
3581 return ret;
3582 }
3583
3584 static 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
3606 return ret;
3607 }
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 */
3624 int netif_receive_skb(struct sk_buff *skb)
3625 {
3626 int ret;
3627
3628 net_timestamp_check(netdev_tstamp_prequeue, skb);
3629
3630 if (skb_defer_rx_timestamp(skb))
3631 return NET_RX_SUCCESS;
3632
3633 rcu_read_lock();
3634
3635 #ifdef CONFIG_RPS
3636 if (static_key_false(&rps_needed)) {
3637 struct rps_dev_flow voidflow, *rflow = &voidflow;
3638 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
3639
3640 if (cpu >= 0) {
3641 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3642 rcu_read_unlock();
3643 return ret;
3644 }
3645 }
3646 #endif
3647 ret = __netif_receive_skb(skb);
3648 rcu_read_unlock();
3649 return ret;
3650 }
3651 EXPORT_SYMBOL(netif_receive_skb);
3652
3653 /* Network device is going away, flush any packets still pending
3654 * Called with irqs disabled.
3655 */
3656 static void flush_backlog(void *arg)
3657 {
3658 struct net_device *dev = arg;
3659 struct softnet_data *sd = &__get_cpu_var(softnet_data);
3660 struct sk_buff *skb, *tmp;
3661
3662 rps_lock(sd);
3663 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
3664 if (skb->dev == dev) {
3665 __skb_unlink(skb, &sd->input_pkt_queue);
3666 kfree_skb(skb);
3667 input_queue_head_incr(sd);
3668 }
3669 }
3670 rps_unlock(sd);
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);
3676 input_queue_head_incr(sd);
3677 }
3678 }
3679 }
3680
3681 static int napi_gro_complete(struct sk_buff *skb)
3682 {
3683 struct packet_offload *ptype;
3684 __be16 type = skb->protocol;
3685 struct list_head *head = &offload_base;
3686 int err = -ENOENT;
3687
3688 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
3689
3690 if (NAPI_GRO_CB(skb)->count == 1) {
3691 skb_shinfo(skb)->gso_size = 0;
3692 goto out;
3693 }
3694
3695 rcu_read_lock();
3696 list_for_each_entry_rcu(ptype, head, list) {
3697 if (ptype->type != type || !ptype->callbacks.gro_complete)
3698 continue;
3699
3700 err = ptype->callbacks.gro_complete(skb);
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
3711 out:
3712 return netif_receive_skb(skb);
3713 }
3714
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 */
3719 void napi_gro_flush(struct napi_struct *napi, bool flush_old)
3720 {
3721 struct sk_buff *skb, *prev = NULL;
3722
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) {
3730 skb->next = NULL;
3731
3732 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
3733 return;
3734
3735 prev = skb->prev;
3736 napi_gro_complete(skb);
3737 napi->gro_count--;
3738 }
3739
3740 napi->gro_list = NULL;
3741 }
3742 EXPORT_SYMBOL(napi_gro_flush);
3743
3744 static 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
3766 static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
3767 {
3768 struct sk_buff **pp = NULL;
3769 struct packet_offload *ptype;
3770 __be16 type = skb->protocol;
3771 struct list_head *head = &offload_base;
3772 int same_flow;
3773 enum gro_result ret;
3774
3775 if (!(skb->dev->features & NETIF_F_GRO) || netpoll_rx_on(skb))
3776 goto normal;
3777
3778 if (skb_is_gso(skb) || skb_has_frag_list(skb))
3779 goto normal;
3780
3781 gro_list_prepare(napi, skb);
3782
3783 rcu_read_lock();
3784 list_for_each_entry_rcu(ptype, head, list) {
3785 if (ptype->type != type || !ptype->callbacks.gro_receive)
3786 continue;
3787
3788 skb_set_network_header(skb, skb_gro_offset(skb));
3789 skb_reset_mac_len(skb);
3790 NAPI_GRO_CB(skb)->same_flow = 0;
3791 NAPI_GRO_CB(skb)->flush = 0;
3792 NAPI_GRO_CB(skb)->free = 0;
3793
3794 pp = ptype->callbacks.gro_receive(&napi->gro_list, skb);
3795 break;
3796 }
3797 rcu_read_unlock();
3798
3799 if (&ptype->list == head)
3800 goto normal;
3801
3802 same_flow = NAPI_GRO_CB(skb)->same_flow;
3803 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
3804
3805 if (pp) {
3806 struct sk_buff *nskb = *pp;
3807
3808 *pp = nskb->next;
3809 nskb->next = NULL;
3810 napi_gro_complete(nskb);
3811 napi->gro_count--;
3812 }
3813
3814 if (same_flow)
3815 goto ok;
3816
3817 if (NAPI_GRO_CB(skb)->flush || napi->gro_count >= MAX_GRO_SKBS)
3818 goto normal;
3819
3820 napi->gro_count++;
3821 NAPI_GRO_CB(skb)->count = 1;
3822 NAPI_GRO_CB(skb)->age = jiffies;
3823 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
3824 skb->next = napi->gro_list;
3825 napi->gro_list = skb;
3826 ret = GRO_HELD;
3827
3828 pull:
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;
3840 skb_frag_size_sub(&skb_shinfo(skb)->frags[0], grow);
3841
3842 if (unlikely(!skb_frag_size(&skb_shinfo(skb)->frags[0]))) {
3843 skb_frag_unref(skb, 0);
3844 memmove(skb_shinfo(skb)->frags,
3845 skb_shinfo(skb)->frags + 1,
3846 --skb_shinfo(skb)->nr_frags * sizeof(skb_frag_t));
3847 }
3848 }
3849
3850 ok:
3851 return ret;
3852
3853 normal:
3854 ret = GRO_NORMAL;
3855 goto pull;
3856 }
3857
3858
3859 static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
3860 {
3861 switch (ret) {
3862 case GRO_NORMAL:
3863 if (netif_receive_skb(skb))
3864 ret = GRO_DROP;
3865 break;
3866
3867 case GRO_DROP:
3868 kfree_skb(skb);
3869 break;
3870
3871 case GRO_MERGED_FREE:
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);
3876 break;
3877
3878 case GRO_HELD:
3879 case GRO_MERGED:
3880 break;
3881 }
3882
3883 return ret;
3884 }
3885
3886 static void skb_gro_reset_offset(struct sk_buff *skb)
3887 {
3888 const struct skb_shared_info *pinfo = skb_shinfo(skb);
3889 const skb_frag_t *frag0 = &pinfo->frags[0];
3890
3891 NAPI_GRO_CB(skb)->data_offset = 0;
3892 NAPI_GRO_CB(skb)->frag0 = NULL;
3893 NAPI_GRO_CB(skb)->frag0_len = 0;
3894
3895 if (skb->mac_header == skb->tail &&
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);
3900 }
3901 }
3902
3903 gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
3904 {
3905 skb_gro_reset_offset(skb);
3906
3907 return napi_skb_finish(dev_gro_receive(napi, skb), skb);
3908 }
3909 EXPORT_SYMBOL(napi_gro_receive);
3910
3911 static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
3912 {
3913 __skb_pull(skb, skb_headlen(skb));
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));
3916 skb->vlan_tci = 0;
3917 skb->dev = napi->dev;
3918 skb->skb_iif = 0;
3919 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
3920
3921 napi->skb = skb;
3922 }
3923
3924 struct sk_buff *napi_get_frags(struct napi_struct *napi)
3925 {
3926 struct sk_buff *skb = napi->skb;
3927
3928 if (!skb) {
3929 skb = netdev_alloc_skb_ip_align(napi->dev, GRO_MAX_HEAD);
3930 if (skb)
3931 napi->skb = skb;
3932 }
3933 return skb;
3934 }
3935 EXPORT_SYMBOL(napi_get_frags);
3936
3937 static gro_result_t napi_frags_finish(struct napi_struct *napi, struct sk_buff *skb,
3938 gro_result_t ret)
3939 {
3940 switch (ret) {
3941 case GRO_NORMAL:
3942 case GRO_HELD:
3943 skb->protocol = eth_type_trans(skb, skb->dev);
3944
3945 if (ret == GRO_HELD)
3946 skb_gro_pull(skb, -ETH_HLEN);
3947 else if (netif_receive_skb(skb))
3948 ret = GRO_DROP;
3949 break;
3950
3951 case GRO_DROP:
3952 case GRO_MERGED_FREE:
3953 napi_reuse_skb(napi, skb);
3954 break;
3955
3956 case GRO_MERGED:
3957 break;
3958 }
3959
3960 return ret;
3961 }
3962
3963 static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
3964 {
3965 struct sk_buff *skb = napi->skb;
3966 struct ethhdr *eth;
3967 unsigned int hlen;
3968 unsigned int off;
3969
3970 napi->skb = NULL;
3971
3972 skb_reset_mac_header(skb);
3973 skb_gro_reset_offset(skb);
3974
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 }
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
3995 out:
3996 return skb;
3997 }
3998
3999 gro_result_t napi_gro_frags(struct napi_struct *napi)
4000 {
4001 struct sk_buff *skb = napi_frags_skb(napi);
4002
4003 if (!skb)
4004 return GRO_DROP;
4005
4006 return napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
4007 }
4008 EXPORT_SYMBOL(napi_gro_frags);
4009
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 */
4014 static 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
4038 static int process_backlog(struct napi_struct *napi, int quota)
4039 {
4040 int work = 0;
4041 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
4042
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
4052 napi->weight = weight_p;
4053 local_irq_disable();
4054 while (work < quota) {
4055 struct sk_buff *skb;
4056 unsigned int qlen;
4057
4058 while ((skb = __skb_dequeue(&sd->process_queue))) {
4059 rcu_read_lock();
4060 local_irq_enable();
4061 __netif_receive_skb(skb);
4062 rcu_read_unlock();
4063 local_irq_disable();
4064 input_queue_head_incr(sd);
4065 if (++work >= quota) {
4066 local_irq_enable();
4067 return work;
4068 }
4069 }
4070
4071 rps_lock(sd);
4072 qlen = skb_queue_len(&sd->input_pkt_queue);
4073 if (qlen)
4074 skb_queue_splice_tail_init(&sd->input_pkt_queue,
4075 &sd->process_queue);
4076
4077 if (qlen < quota - work) {
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
4088 quota = work + qlen;
4089 }
4090 rps_unlock(sd);
4091 }
4092 local_irq_enable();
4093
4094 return work;
4095 }
4096
4097 /**
4098 * __napi_schedule - schedule for receive
4099 * @n: entry to schedule
4100 *
4101 * The entry's receive function will be scheduled to run
4102 */
4103 void __napi_schedule(struct napi_struct *n)
4104 {
4105 unsigned long flags;
4106
4107 local_irq_save(flags);
4108 ____napi_schedule(&__get_cpu_var(softnet_data), n);
4109 local_irq_restore(flags);
4110 }
4111 EXPORT_SYMBOL(__napi_schedule);
4112
4113 void __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 }
4122 EXPORT_SYMBOL(__napi_complete);
4123
4124 void 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
4135 napi_gro_flush(n, false);
4136 local_irq_save(flags);
4137 __napi_complete(n);
4138 local_irq_restore(flags);
4139 }
4140 EXPORT_SYMBOL(napi_complete);
4141
4142 void 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);
4146 napi->gro_count = 0;
4147 napi->gro_list = NULL;
4148 napi->skb = NULL;
4149 napi->poll = poll;
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);
4153 napi->weight = weight;
4154 list_add(&napi->dev_list, &dev->napi_list);
4155 napi->dev = dev;
4156 #ifdef CONFIG_NETPOLL
4157 spin_lock_init(&napi->poll_lock);
4158 napi->poll_owner = -1;
4159 #endif
4160 set_bit(NAPI_STATE_SCHED, &napi->state);
4161 }
4162 EXPORT_SYMBOL(netif_napi_add);
4163
4164 void netif_napi_del(struct napi_struct *napi)
4165 {
4166 struct sk_buff *skb, *next;
4167
4168 list_del_init(&napi->dev_list);
4169 napi_free_frags(napi);
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;
4178 napi->gro_count = 0;
4179 }
4180 EXPORT_SYMBOL(netif_napi_del);
4181
4182 static void net_rx_action(struct softirq_action *h)
4183 {
4184 struct softnet_data *sd = &__get_cpu_var(softnet_data);
4185 unsigned long time_limit = jiffies + 2;
4186 int budget = netdev_budget;
4187 void *have;
4188
4189 local_irq_disable();
4190
4191 while (!list_empty(&sd->poll_list)) {
4192 struct napi_struct *n;
4193 int work, weight;
4194
4195 /* If softirq window is exhuasted then punt.
4196 * Allow this to run for 2 jiffies since which will allow
4197 * an average latency of 1.5/HZ.
4198 */
4199 if (unlikely(budget <= 0 || time_after_eq(jiffies, time_limit)))
4200 goto softnet_break;
4201
4202 local_irq_enable();
4203
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 */
4209 n = list_first_entry(&sd->poll_list, struct napi_struct, poll_list);
4210
4211 have = netpoll_poll_lock(n);
4212
4213 weight = n->weight;
4214
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
4219 * accidentally calling ->poll() when NAPI is not scheduled.
4220 */
4221 work = 0;
4222 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
4223 work = n->poll(n, weight);
4224 trace_napi_poll(n);
4225 }
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 */
4238 if (unlikely(work == weight)) {
4239 if (unlikely(napi_disable_pending(n))) {
4240 local_irq_enable();
4241 napi_complete(n);
4242 local_irq_disable();
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 }
4252 list_move_tail(&n->poll_list, &sd->poll_list);
4253 }
4254 }
4255
4256 netpoll_poll_unlock(have);
4257 }
4258 out:
4259 net_rps_action_and_irq_enable(sd);
4260
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 */
4266 dma_issue_pending_all();
4267 #endif
4268
4269 return;
4270
4271 softnet_break:
4272 sd->time_squeeze++;
4273 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4274 goto out;
4275 }
4276
4277 struct 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
4285 static 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
4297 static 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
4318 static 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 */
4339 bool 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 }
4346 EXPORT_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 */
4355 bool netdev_has_any_upper_dev(struct net_device *dev)
4356 {
4357 ASSERT_RTNL();
4358
4359 return !list_empty(&dev->upper_dev_list);
4360 }
4361 EXPORT_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 */
4370 struct 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 }
4385 EXPORT_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 */
4394 struct 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 }
4404 EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
4405
4406 static 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 */
4454 int 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 }
4459 EXPORT_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 */
4472 int 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 }
4477 EXPORT_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 */
4487 void 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 }
4501 EXPORT_SYMBOL(netdev_upper_dev_unlink);
4502
4503 static void dev_change_rx_flags(struct net_device *dev, int flags)
4504 {
4505 const struct net_device_ops *ops = dev->netdev_ops;
4506
4507 if (ops->ndo_change_rx_flags)
4508 ops->ndo_change_rx_flags(dev, flags);
4509 }
4510
4511 static int __dev_set_promiscuity(struct net_device *dev, int inc)
4512 {
4513 unsigned int old_flags = dev->flags;
4514 kuid_t uid;
4515 kgid_t gid;
4516
4517 ASSERT_RTNL();
4518
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;
4530 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
4531 dev->name);
4532 return -EOVERFLOW;
4533 }
4534 }
4535 if (dev->flags != old_flags) {
4536 pr_info("device %s %s promiscuous mode\n",
4537 dev->name,
4538 dev->flags & IFF_PROMISC ? "entered" : "left");
4539 if (audit_enabled) {
4540 current_uid_gid(&uid, &gid);
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),
4546 from_kuid(&init_user_ns, audit_get_loginuid(current)),
4547 from_kuid(&init_user_ns, uid),
4548 from_kgid(&init_user_ns, gid),
4549 audit_get_sessionid(current));
4550 }
4551
4552 dev_change_rx_flags(dev, IFF_PROMISC);
4553 }
4554 return 0;
4555 }
4556
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.
4566 * Return 0 if successful or a negative errno code on error.
4567 */
4568 int dev_set_promiscuity(struct net_device *dev, int inc)
4569 {
4570 unsigned int old_flags = dev->flags;
4571 int err;
4572
4573 err = __dev_set_promiscuity(dev, inc);
4574 if (err < 0)
4575 return err;
4576 if (dev->flags != old_flags)
4577 dev_set_rx_mode(dev);
4578 return err;
4579 }
4580 EXPORT_SYMBOL(dev_set_promiscuity);
4581
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.
4592 * Return 0 if successful or a negative errno code on error.
4593 */
4594
4595 int dev_set_allmulti(struct net_device *dev, int inc)
4596 {
4597 unsigned int old_flags = dev->flags;
4598
4599 ASSERT_RTNL();
4600
4601 dev->flags |= IFF_ALLMULTI;
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;
4612 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
4613 dev->name);
4614 return -EOVERFLOW;
4615 }
4616 }
4617 if (dev->flags ^ old_flags) {
4618 dev_change_rx_flags(dev, IFF_ALLMULTI);
4619 dev_set_rx_mode(dev);
4620 }
4621 return 0;
4622 }
4623 EXPORT_SYMBOL(dev_set_allmulti);
4624
4625 /*
4626 * Upload unicast and multicast address lists to device and
4627 * configure RX filtering. When the device doesn't support unicast
4628 * filtering it is put in promiscuous mode while unicast addresses
4629 * are present.
4630 */
4631 void __dev_set_rx_mode(struct net_device *dev)
4632 {
4633 const struct net_device_ops *ops = dev->netdev_ops;
4634
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))
4640 return;
4641
4642 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
4643 /* Unicast addresses changes may only happen under the rtnl,
4644 * therefore calling __dev_set_promiscuity here is safe.
4645 */
4646 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
4647 __dev_set_promiscuity(dev, 1);
4648 dev->uc_promisc = true;
4649 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
4650 __dev_set_promiscuity(dev, -1);
4651 dev->uc_promisc = false;
4652 }
4653 }
4654
4655 if (ops->ndo_set_rx_mode)
4656 ops->ndo_set_rx_mode(dev);
4657 }
4658 EXPORT_SYMBOL(__dev_set_rx_mode);
4659
4660 void dev_set_rx_mode(struct net_device *dev)
4661 {
4662 netif_addr_lock_bh(dev);
4663 __dev_set_rx_mode(dev);
4664 netif_addr_unlock_bh(dev);
4665 }
4666
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 */
4673 unsigned int dev_get_flags(const struct net_device *dev)
4674 {
4675 unsigned int flags;
4676
4677 flags = (dev->flags & ~(IFF_PROMISC |
4678 IFF_ALLMULTI |
4679 IFF_RUNNING |
4680 IFF_LOWER_UP |
4681 IFF_DORMANT)) |
4682 (dev->gflags & (IFF_PROMISC |
4683 IFF_ALLMULTI));
4684
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 }
4693
4694 return flags;
4695 }
4696 EXPORT_SYMBOL(dev_get_flags);
4697
4698 int __dev_change_flags(struct net_device *dev, unsigned int flags)
4699 {
4700 unsigned int old_flags = dev->flags;
4701 int ret;
4702
4703 ASSERT_RTNL();
4704
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
4719 if ((old_flags ^ flags) & IFF_MULTICAST)
4720 dev_change_rx_flags(dev, IFF_MULTICAST);
4721
4722 dev_set_rx_mode(dev);
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 ? */
4732 ret = ((old_flags & IFF_UP) ? __dev_close : __dev_open)(dev);
4733
4734 if (!ret)
4735 dev_set_rx_mode(dev);
4736 }
4737
4738 if ((flags ^ dev->gflags) & IFF_PROMISC) {
4739 int inc = (flags & IFF_PROMISC) ? 1 : -1;
4740
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) {
4750 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
4751
4752 dev->gflags ^= IFF_ALLMULTI;
4753 dev_set_allmulti(dev, inc);
4754 }
4755
4756 return ret;
4757 }
4758
4759 void __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 */
4783 int dev_change_flags(struct net_device *dev, unsigned int flags)
4784 {
4785 int ret;
4786 unsigned int changes, old_flags = dev->flags;
4787
4788 ret = __dev_change_flags(dev, flags);
4789 if (ret < 0)
4790 return ret;
4791
4792 changes = old_flags ^ dev->flags;
4793 if (changes)
4794 rtmsg_ifinfo(RTM_NEWLINK, dev, changes);
4795
4796 __dev_notify_flags(dev, old_flags);
4797 return ret;
4798 }
4799 EXPORT_SYMBOL(dev_change_flags);
4800
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 */
4808 int dev_set_mtu(struct net_device *dev, int new_mtu)
4809 {
4810 const struct net_device_ops *ops = dev->netdev_ops;
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;
4824 if (ops->ndo_change_mtu)
4825 err = ops->ndo_change_mtu(dev, new_mtu);
4826 else
4827 dev->mtu = new_mtu;
4828
4829 if (!err)
4830 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
4831 return err;
4832 }
4833 EXPORT_SYMBOL(dev_set_mtu);
4834
4835 /**
4836 * dev_set_group - Change group this device belongs to
4837 * @dev: device
4838 * @new_group: group this device should belong to
4839 */
4840 void dev_set_group(struct net_device *dev, int new_group)
4841 {
4842 dev->group = new_group;
4843 }
4844 EXPORT_SYMBOL(dev_set_group);
4845
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 */
4853 int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
4854 {
4855 const struct net_device_ops *ops = dev->netdev_ops;
4856 int err;
4857
4858 if (!ops->ndo_set_mac_address)
4859 return -EOPNOTSUPP;
4860 if (sa->sa_family != dev->type)
4861 return -EINVAL;
4862 if (!netif_device_present(dev))
4863 return -ENODEV;
4864 err = ops->ndo_set_mac_address(dev, sa);
4865 if (err)
4866 return err;
4867 dev->addr_assign_type = NET_ADDR_SET;
4868 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
4869 add_device_randomness(dev->dev_addr, dev->addr_len);
4870 return 0;
4871 }
4872 EXPORT_SYMBOL(dev_set_mac_address);
4873
4874 /**
4875 * dev_change_carrier - Change device carrier
4876 * @dev: device
4877 * @new_carrier: new value
4878 *
4879 * Change device carrier
4880 */
4881 int 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 }
4891 EXPORT_SYMBOL(dev_change_carrier);
4892
4893 /**
4894 * dev_new_index - allocate an ifindex
4895 * @net: the applicable net namespace
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 */
4901 static int dev_new_index(struct net *net)
4902 {
4903 int ifindex = net->ifindex;
4904 for (;;) {
4905 if (++ifindex <= 0)
4906 ifindex = 1;
4907 if (!__dev_get_by_index(net, ifindex))
4908 return net->ifindex = ifindex;
4909 }
4910 }
4911
4912 /* Delayed registration/unregisteration */
4913 static LIST_HEAD(net_todo_list);
4914
4915 static void net_set_todo(struct net_device *dev)
4916 {
4917 list_add_tail(&dev->todo_list, &net_todo_list);
4918 }
4919
4920 static void rollback_registered_many(struct list_head *head)
4921 {
4922 struct net_device *dev, *tmp;
4923
4924 BUG_ON(dev_boot_phase);
4925 ASSERT_RTNL();
4926
4927 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
4928 /* Some devices call without registering
4929 * for initialization unwind. Remove those
4930 * devices and proceed with the remaining.
4931 */
4932 if (dev->reg_state == NETREG_UNINITIALIZED) {
4933 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
4934 dev->name, dev);
4935
4936 WARN_ON(1);
4937 list_del(&dev->unreg_list);
4938 continue;
4939 }
4940 dev->dismantle = true;
4941 BUG_ON(dev->reg_state != NETREG_REGISTERED);
4942 }
4943
4944 /* If device is running, close it first. */
4945 dev_close_many(head);
4946
4947 list_for_each_entry(dev, head, unreg_list) {
4948 /* And unlink it from device chain. */
4949 unlist_netdevice(dev);
4950
4951 dev->reg_state = NETREG_UNREGISTERING;
4952 }
4953
4954 synchronize_net();
4955
4956 list_for_each_entry(dev, head, unreg_list) {
4957 /* Shutdown queueing discipline. */
4958 dev_shutdown(dev);
4959
4960
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);
4965
4966 if (!dev->rtnl_link_ops ||
4967 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
4968 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
4969
4970 /*
4971 * Flush the unicast and multicast chains
4972 */
4973 dev_uc_flush(dev);
4974 dev_mc_flush(dev);
4975
4976 if (dev->netdev_ops->ndo_uninit)
4977 dev->netdev_ops->ndo_uninit(dev);
4978
4979 /* Notifier chain MUST detach us all upper devices. */
4980 WARN_ON(netdev_has_any_upper_dev(dev));
4981
4982 /* Remove entries from kobject tree */
4983 netdev_unregister_kobject(dev);
4984 #ifdef CONFIG_XPS
4985 /* Remove XPS queueing entries */
4986 netif_reset_xps_queues_gt(dev, 0);
4987 #endif
4988 }
4989
4990 synchronize_net();
4991
4992 list_for_each_entry(dev, head, unreg_list)
4993 dev_put(dev);
4994 }
4995
4996 static 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);
5002 list_del(&single);
5003 }
5004
5005 static netdev_features_t netdev_fix_features(struct net_device *dev,
5006 netdev_features_t features)
5007 {
5008 /* Fix illegal checksum combinations */
5009 if ((features & NETIF_F_HW_CSUM) &&
5010 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
5011 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
5012 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
5013 }
5014
5015 /* TSO requires that SG is present as well. */
5016 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
5017 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
5018 features &= ~NETIF_F_ALL_TSO;
5019 }
5020
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
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
5038 /* Software GSO depends on SG. */
5039 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
5040 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
5041 features &= ~NETIF_F_GSO;
5042 }
5043
5044 /* UFO needs SG and checksumming */
5045 if (features & NETIF_F_UFO) {
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))) {
5050 netdev_dbg(dev,
5051 "Dropping NETIF_F_UFO since no checksum offload features.\n");
5052 features &= ~NETIF_F_UFO;
5053 }
5054
5055 if (!(features & NETIF_F_SG)) {
5056 netdev_dbg(dev,
5057 "Dropping NETIF_F_UFO since no NETIF_F_SG feature.\n");
5058 features &= ~NETIF_F_UFO;
5059 }
5060 }
5061
5062 return features;
5063 }
5064
5065 int __netdev_update_features(struct net_device *dev)
5066 {
5067 netdev_features_t features;
5068 int err = 0;
5069
5070 ASSERT_RTNL();
5071
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)
5081 return 0;
5082
5083 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
5084 &dev->features, &features);
5085
5086 if (dev->netdev_ops->ndo_set_features)
5087 err = dev->netdev_ops->ndo_set_features(dev, features);
5088
5089 if (unlikely(err < 0)) {
5090 netdev_err(dev,
5091 "set_features() failed (%d); wanted %pNF, left %pNF\n",
5092 err, &features, &dev->features);
5093 return -1;
5094 }
5095
5096 if (!err)
5097 dev->features = features;
5098
5099 return 1;
5100 }
5101
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 */
5110 void netdev_update_features(struct net_device *dev)
5111 {
5112 if (__netdev_update_features(dev))
5113 netdev_features_change(dev);
5114 }
5115 EXPORT_SYMBOL(netdev_update_features);
5116
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 */
5127 void netdev_change_features(struct net_device *dev)
5128 {
5129 __netdev_update_features(dev);
5130 netdev_features_change(dev);
5131 }
5132 EXPORT_SYMBOL(netdev_change_features);
5133
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 */
5143 void 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 }
5159 EXPORT_SYMBOL(netif_stacked_transfer_operstate);
5160
5161 #ifdef CONFIG_RPS
5162 static int netif_alloc_rx_queues(struct net_device *dev)
5163 {
5164 unsigned int i, count = dev->num_rx_queues;
5165 struct netdev_rx_queue *rx;
5166
5167 BUG_ON(count < 1);
5168
5169 rx = kcalloc(count, sizeof(struct netdev_rx_queue), GFP_KERNEL);
5170 if (!rx)
5171 return -ENOMEM;
5172
5173 dev->_rx = rx;
5174
5175 for (i = 0; i < count; i++)
5176 rx[i].dev = dev;
5177 return 0;
5178 }
5179 #endif
5180
5181 static 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;
5188 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
5189 queue->dev = dev;
5190 #ifdef CONFIG_BQL
5191 dql_init(&queue->dql, HZ);
5192 #endif
5193 }
5194
5195 static 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);
5203 if (!tx)
5204 return -ENOMEM;
5205
5206 dev->_tx = tx;
5207
5208 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
5209 spin_lock_init(&dev->tx_global_lock);
5210
5211 return 0;
5212 }
5213
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
5231 int register_netdevice(struct net_device *dev)
5232 {
5233 int ret;
5234 struct net *net = dev_net(dev);
5235
5236 BUG_ON(dev_boot_phase);
5237 ASSERT_RTNL();
5238
5239 might_sleep();
5240
5241 /* When net_device's are persistent, this will be fatal. */
5242 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
5243 BUG_ON(!net);
5244
5245 spin_lock_init(&dev->addr_list_lock);
5246 netdev_set_addr_lockdep_class(dev);
5247
5248 dev->iflink = -1;
5249
5250 ret = dev_get_valid_name(net, dev, dev->name);
5251 if (ret < 0)
5252 goto out;
5253
5254 /* Init, if this function is available */
5255 if (dev->netdev_ops->ndo_init) {
5256 ret = dev->netdev_ops->ndo_init(dev);
5257 if (ret) {
5258 if (ret > 0)
5259 ret = -EIO;
5260 goto out;
5261 }
5262 }
5263
5264 if (((dev->hw_features | dev->features) &
5265 NETIF_F_HW_VLAN_CTAG_FILTER) &&
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
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
5279 if (dev->iflink == -1)
5280 dev->iflink = dev->ifindex;
5281
5282 /* Transfer changeable features to wanted_features and enable
5283 * software offloads (GSO and GRO).
5284 */
5285 dev->hw_features |= NETIF_F_SOFT_FEATURES;
5286 dev->features |= NETIF_F_SOFT_FEATURES;
5287 dev->wanted_features = dev->features & dev->hw_features;
5288
5289 /* Turn on no cache copy if HW is doing checksum */
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 }
5296 }
5297
5298 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
5299 */
5300 dev->vlan_features |= NETIF_F_HIGHDMA;
5301
5302 /* Make NETIF_F_SG inheritable to tunnel devices.
5303 */
5304 dev->hw_enc_features |= NETIF_F_SG;
5305
5306 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
5307 ret = notifier_to_errno(ret);
5308 if (ret)
5309 goto err_uninit;
5310
5311 ret = netdev_register_kobject(dev);
5312 if (ret)
5313 goto err_uninit;
5314 dev->reg_state = NETREG_REGISTERED;
5315
5316 __netdev_update_features(dev);
5317
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
5325 linkwatch_init_dev(dev);
5326
5327 dev_init_scheduler(dev);
5328 dev_hold(dev);
5329 list_netdevice(dev);
5330 add_device_randomness(dev->dev_addr, dev->addr_len);
5331
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
5339 /* Notify protocols, that a new device appeared. */
5340 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
5341 ret = notifier_to_errno(ret);
5342 if (ret) {
5343 rollback_registered(dev);
5344 dev->reg_state = NETREG_UNREGISTERED;
5345 }
5346 /*
5347 * Prevent userspace races by waiting until the network
5348 * device is fully setup before sending notifications.
5349 */
5350 if (!dev->rtnl_link_ops ||
5351 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
5352 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U);
5353
5354 out:
5355 return ret;
5356
5357 err_uninit:
5358 if (dev->netdev_ops->ndo_uninit)
5359 dev->netdev_ops->ndo_uninit(dev);
5360 goto out;
5361 }
5362 EXPORT_SYMBOL(register_netdevice);
5363
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 */
5374 int 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
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
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
5400 return 0;
5401 }
5402 EXPORT_SYMBOL_GPL(init_dummy_netdev);
5403
5404
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 *
5414 * This is a wrapper around register_netdevice that takes the rtnl semaphore
5415 * and expands the device name if you passed a format string to
5416 * alloc_netdev.
5417 */
5418 int register_netdev(struct net_device *dev)
5419 {
5420 int err;
5421
5422 rtnl_lock();
5423 err = register_netdevice(dev);
5424 rtnl_unlock();
5425 return err;
5426 }
5427 EXPORT_SYMBOL(register_netdev);
5428
5429 int 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 }
5437 EXPORT_SYMBOL(netdev_refcnt_read);
5438
5439 /**
5440 * netdev_wait_allrefs - wait until all references are gone.
5441 * @dev: target net_device
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
5449 * call dev_put.
5450 */
5451 static void netdev_wait_allrefs(struct net_device *dev)
5452 {
5453 unsigned long rebroadcast_time, warning_time;
5454 int refcnt;
5455
5456 linkwatch_forget_dev(dev);
5457
5458 rebroadcast_time = warning_time = jiffies;
5459 refcnt = netdev_refcnt_read(dev);
5460
5461 while (refcnt != 0) {
5462 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
5463 rtnl_lock();
5464
5465 /* Rebroadcast unregister notification */
5466 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
5467
5468 __rtnl_unlock();
5469 rcu_barrier();
5470 rtnl_lock();
5471
5472 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
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
5484 __rtnl_unlock();
5485
5486 rebroadcast_time = jiffies;
5487 }
5488
5489 msleep(250);
5490
5491 refcnt = netdev_refcnt_read(dev);
5492
5493 if (time_after(jiffies, warning_time + 10 * HZ)) {
5494 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
5495 dev->name, refcnt);
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 *
5515 * We are invoked by rtnl_unlock().
5516 * This allows us to deal with problems:
5517 * 1) We can delete sysfs objects which invoke hotplug
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.
5521 *
5522 * We must not return until all unregister events added during
5523 * the interval the lock was held have been completed.
5524 */
5525 void netdev_run_todo(void)
5526 {
5527 struct list_head list;
5528
5529 /* Snapshot list, allow later requests */
5530 list_replace_init(&net_todo_list, &list);
5531
5532 __rtnl_unlock();
5533
5534
5535 /* Wait for rcu callbacks to finish before next phase */
5536 if (!list_empty(&list))
5537 rcu_barrier();
5538
5539 while (!list_empty(&list)) {
5540 struct net_device *dev
5541 = list_first_entry(&list, struct net_device, todo_list);
5542 list_del(&dev->todo_list);
5543
5544 rtnl_lock();
5545 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
5546 __rtnl_unlock();
5547
5548 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
5549 pr_err("network todo '%s' but state %d\n",
5550 dev->name, dev->reg_state);
5551 dump_stack();
5552 continue;
5553 }
5554
5555 dev->reg_state = NETREG_UNREGISTERED;
5556
5557 on_each_cpu(flush_backlog, dev, 1);
5558
5559 netdev_wait_allrefs(dev);
5560
5561 /* paranoia */
5562 BUG_ON(netdev_refcnt_read(dev));
5563 WARN_ON(rcu_access_pointer(dev->ip_ptr));
5564 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
5565 WARN_ON(dev->dn_ptr);
5566
5567 if (dev->destructor)
5568 dev->destructor(dev);
5569
5570 /* Free network device */
5571 kobject_put(&dev->dev.kobj);
5572 }
5573 }
5574
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 */
5578 void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
5579 const struct net_device_stats *netdev_stats)
5580 {
5581 #if BITS_PER_LONG == 64
5582 BUILD_BUG_ON(sizeof(*stats64) != sizeof(*netdev_stats));
5583 memcpy(stats64, netdev_stats, sizeof(*stats64));
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 }
5595 EXPORT_SYMBOL(netdev_stats_to_stats64);
5596
5597 /**
5598 * dev_get_stats - get network device statistics
5599 * @dev: device to get statistics from
5600 * @storage: place to store stats
5601 *
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.
5606 */
5607 struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
5608 struct rtnl_link_stats64 *storage)
5609 {
5610 const struct net_device_ops *ops = dev->netdev_ops;
5611
5612 if (ops->ndo_get_stats64) {
5613 memset(storage, 0, sizeof(*storage));
5614 ops->ndo_get_stats64(dev, storage);
5615 } else if (ops->ndo_get_stats) {
5616 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
5617 } else {
5618 netdev_stats_to_stats64(storage, &dev->stats);
5619 }
5620 storage->rx_dropped += atomic_long_read(&dev->rx_dropped);
5621 return storage;
5622 }
5623 EXPORT_SYMBOL(dev_get_stats);
5624
5625 struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
5626 {
5627 struct netdev_queue *queue = dev_ingress_queue(dev);
5628
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);
5636 queue->qdisc = &noop_qdisc;
5637 queue->qdisc_sleeping = &noop_qdisc;
5638 rcu_assign_pointer(dev->ingress_queue, queue);
5639 #endif
5640 return queue;
5641 }
5642
5643 static const struct ethtool_ops default_ethtool_ops;
5644
5645 void 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 }
5651 EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
5652
5653 /**
5654 * alloc_netdev_mqs - allocate network device
5655 * @sizeof_priv: size of private data to allocate space for
5656 * @name: device name format string
5657 * @setup: callback to initialize device
5658 * @txqs: the number of TX subqueues to allocate
5659 * @rxqs: the number of RX subqueues to allocate
5660 *
5661 * Allocates a struct net_device with private data area for driver use
5662 * and performs basic initialization. Also allocates subquue structs
5663 * for each queue on the device.
5664 */
5665 struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
5666 void (*setup)(struct net_device *),
5667 unsigned int txqs, unsigned int rxqs)
5668 {
5669 struct net_device *dev;
5670 size_t alloc_size;
5671 struct net_device *p;
5672
5673 BUG_ON(strlen(name) >= sizeof(dev->name));
5674
5675 if (txqs < 1) {
5676 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
5677 return NULL;
5678 }
5679
5680 #ifdef CONFIG_RPS
5681 if (rxqs < 1) {
5682 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
5683 return NULL;
5684 }
5685 #endif
5686
5687 alloc_size = sizeof(struct net_device);
5688 if (sizeof_priv) {
5689 /* ensure 32-byte alignment of private area */
5690 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
5691 alloc_size += sizeof_priv;
5692 }
5693 /* ensure 32-byte alignment of whole construct */
5694 alloc_size += NETDEV_ALIGN - 1;
5695
5696 p = kzalloc(alloc_size, GFP_KERNEL);
5697 if (!p)
5698 return NULL;
5699
5700 dev = PTR_ALIGN(p, NETDEV_ALIGN);
5701 dev->padded = (char *)dev - (char *)p;
5702
5703 dev->pcpu_refcnt = alloc_percpu(int);
5704 if (!dev->pcpu_refcnt)
5705 goto free_p;
5706
5707 if (dev_addr_init(dev))
5708 goto free_pcpu;
5709
5710 dev_mc_init(dev);
5711 dev_uc_init(dev);
5712
5713 dev_net_set(dev, &init_net);
5714
5715 dev->gso_max_size = GSO_MAX_SIZE;
5716 dev->gso_max_segs = GSO_MAX_SEGS;
5717
5718 INIT_LIST_HEAD(&dev->napi_list);
5719 INIT_LIST_HEAD(&dev->unreg_list);
5720 INIT_LIST_HEAD(&dev->link_watch_list);
5721 INIT_LIST_HEAD(&dev->upper_dev_list);
5722 dev->priv_flags = IFF_XMIT_DST_RELEASE;
5723 setup(dev);
5724
5725 dev->num_tx_queues = txqs;
5726 dev->real_num_tx_queues = txqs;
5727 if (netif_alloc_netdev_queues(dev))
5728 goto free_all;
5729
5730 #ifdef CONFIG_RPS
5731 dev->num_rx_queues = rxqs;
5732 dev->real_num_rx_queues = rxqs;
5733 if (netif_alloc_rx_queues(dev))
5734 goto free_all;
5735 #endif
5736
5737 strcpy(dev->name, name);
5738 dev->group = INIT_NETDEV_GROUP;
5739 if (!dev->ethtool_ops)
5740 dev->ethtool_ops = &default_ethtool_ops;
5741 return dev;
5742
5743 free_all:
5744 free_netdev(dev);
5745 return NULL;
5746
5747 free_pcpu:
5748 free_percpu(dev->pcpu_refcnt);
5749 kfree(dev->_tx);
5750 #ifdef CONFIG_RPS
5751 kfree(dev->_rx);
5752 #endif
5753
5754 free_p:
5755 kfree(p);
5756 return NULL;
5757 }
5758 EXPORT_SYMBOL(alloc_netdev_mqs);
5759
5760 /**
5761 * free_netdev - free network device
5762 * @dev: device
5763 *
5764 * This function does the last stage of destroying an allocated device
5765 * interface. The reference to the device object is released.
5766 * If this is the last reference then it will be freed.
5767 */
5768 void free_netdev(struct net_device *dev)
5769 {
5770 struct napi_struct *p, *n;
5771
5772 release_net(dev_net(dev));
5773
5774 kfree(dev->_tx);
5775 #ifdef CONFIG_RPS
5776 kfree(dev->_rx);
5777 #endif
5778
5779 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
5780
5781 /* Flush device addresses */
5782 dev_addr_flush(dev);
5783
5784 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
5785 netif_napi_del(p);
5786
5787 free_percpu(dev->pcpu_refcnt);
5788 dev->pcpu_refcnt = NULL;
5789
5790 /* Compatibility with error handling in drivers */
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
5799 /* will free via device release */
5800 put_device(&dev->dev);
5801 }
5802 EXPORT_SYMBOL(free_netdev);
5803
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 */
5810 void synchronize_net(void)
5811 {
5812 might_sleep();
5813 if (rtnl_is_locked())
5814 synchronize_rcu_expedited();
5815 else
5816 synchronize_rcu();
5817 }
5818 EXPORT_SYMBOL(synchronize_net);
5819
5820 /**
5821 * unregister_netdevice_queue - remove device from the kernel
5822 * @dev: device
5823 * @head: list
5824 *
5825 * This function shuts down a device interface and removes it
5826 * from the kernel tables.
5827 * If head not NULL, device is queued to be unregistered later.
5828 *
5829 * Callers must hold the rtnl semaphore. You may want
5830 * unregister_netdev() instead of this.
5831 */
5832
5833 void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
5834 {
5835 ASSERT_RTNL();
5836
5837 if (head) {
5838 list_move_tail(&dev->unreg_list, head);
5839 } else {
5840 rollback_registered(dev);
5841 /* Finish processing unregister after unlock */
5842 net_set_todo(dev);
5843 }
5844 }
5845 EXPORT_SYMBOL(unregister_netdevice_queue);
5846
5847 /**
5848 * unregister_netdevice_many - unregister many devices
5849 * @head: list of devices
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.
5853 */
5854 void 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);
5862 list_del(head);
5863 }
5864 }
5865 EXPORT_SYMBOL(unregister_netdevice_many);
5866
5867 /**
5868 * unregister_netdev - remove device from the kernel
5869 * @dev: device
5870 *
5871 * This function shuts down a device interface and removes it
5872 * from the kernel tables.
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 */
5878 void unregister_netdev(struct net_device *dev)
5879 {
5880 rtnl_lock();
5881 unregister_netdevice(dev);
5882 rtnl_unlock();
5883 }
5884 EXPORT_SYMBOL(unregister_netdev);
5885
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
5900 int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
5901 {
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 */
5912 if (dev->reg_state != NETREG_REGISTERED)
5913 goto out;
5914
5915 /* Get out if there is nothing todo */
5916 err = 0;
5917 if (net_eq(dev_net(dev), net))
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;
5924 if (__dev_get_by_name(net, dev->name)) {
5925 /* We get here if we can't use the current device name */
5926 if (!pat)
5927 goto out;
5928 if (dev_get_valid_name(net, dev, pat) < 0)
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. */
5937 dev_close(dev);
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.
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.
5954 */
5955 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
5956 rcu_barrier();
5957 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
5958 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U);
5959
5960 /*
5961 * Flush the unicast and multicast chains
5962 */
5963 dev_uc_flush(dev);
5964 dev_mc_flush(dev);
5965
5966 /* Send a netdev-removed uevent to the old namespace */
5967 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
5968
5969 /* Actually switch the network namespace */
5970 dev_net_set(dev, net);
5971
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
5980 /* Send a netdev-add uevent to the new namespace */
5981 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
5982
5983 /* Fixup kobjects */
5984 err = device_rename(&dev->dev, dev->name);
5985 WARN_ON(err);
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
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
5999 synchronize_net();
6000 err = 0;
6001 out:
6002 return err;
6003 }
6004 EXPORT_SYMBOL_GPL(dev_change_net_namespace);
6005
6006 static int dev_cpu_callback(struct notifier_block *nfb,
6007 unsigned long action,
6008 void *ocpu)
6009 {
6010 struct sk_buff **list_skb;
6011 struct sk_buff *skb;
6012 unsigned int cpu, oldcpu = (unsigned long)ocpu;
6013 struct softnet_data *sd, *oldsd;
6014
6015 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
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
6031 /* Append output queue from offline CPU. */
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 }
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);
6052 }
6053
6054 raise_softirq_irqoff(NET_TX_SOFTIRQ);
6055 local_irq_enable();
6056
6057 /* Process offline CPU's input_pkt_queue */
6058 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
6059 netif_rx(skb);
6060 input_queue_head_incr(oldsd);
6061 }
6062 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
6063 netif_rx(skb);
6064 input_queue_head_incr(oldsd);
6065 }
6066
6067 return NOTIFY_OK;
6068 }
6069
6070
6071 /**
6072 * netdev_increment_features - increment feature set by one
6073 * @all: current feature set
6074 * @one: new feature set
6075 * @mask: mask feature set
6076 *
6077 * Computes a new feature set after adding a device with feature set
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.
6080 */
6081 netdev_features_t netdev_increment_features(netdev_features_t all,
6082 netdev_features_t one, netdev_features_t mask)
6083 {
6084 if (mask & NETIF_F_GEN_CSUM)
6085 mask |= NETIF_F_ALL_CSUM;
6086 mask |= NETIF_F_VLAN_CHALLENGED;
6087
6088 all |= one & (NETIF_F_ONE_FOR_ALL|NETIF_F_ALL_CSUM) & mask;
6089 all &= one | ~NETIF_F_ALL_FOR_ALL;
6090
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);
6094
6095 return all;
6096 }
6097 EXPORT_SYMBOL(netdev_increment_features);
6098
6099 static 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
6112 /* Initialize per network namespace state */
6113 static int __net_init netdev_init(struct net *net)
6114 {
6115 if (net != &init_net)
6116 INIT_LIST_HEAD(&net->dev_base_head);
6117
6118 net->dev_name_head = netdev_create_hash();
6119 if (net->dev_name_head == NULL)
6120 goto err_name;
6121
6122 net->dev_index_head = netdev_create_hash();
6123 if (net->dev_index_head == NULL)
6124 goto err_idx;
6125
6126 return 0;
6127
6128 err_idx:
6129 kfree(net->dev_name_head);
6130 err_name:
6131 return -ENOMEM;
6132 }
6133
6134 /**
6135 * netdev_drivername - network driver for the device
6136 * @dev: network device
6137 *
6138 * Determine network driver for device.
6139 */
6140 const char *netdev_drivername(const struct net_device *dev)
6141 {
6142 const struct device_driver *driver;
6143 const struct device *parent;
6144 const char *empty = "";
6145
6146 parent = dev->dev.parent;
6147 if (!parent)
6148 return empty;
6149
6150 driver = parent->driver;
6151 if (driver && driver->name)
6152 return driver->name;
6153 return empty;
6154 }
6155
6156 static int __netdev_printk(const char *level, const struct net_device *dev,
6157 struct va_format *vaf)
6158 {
6159 int r;
6160
6161 if (dev && dev->dev.parent) {
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);
6168 } else if (dev) {
6169 r = printk("%s%s: %pV", level, netdev_name(dev), vaf);
6170 } else {
6171 r = printk("%s(NULL net_device): %pV", level, vaf);
6172 }
6173
6174 return r;
6175 }
6176
6177 int 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);
6190
6191 va_end(args);
6192
6193 return r;
6194 }
6195 EXPORT_SYMBOL(netdev_printk);
6196
6197 #define define_netdev_printk_level(func, level) \
6198 int 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); \
6210 \
6211 va_end(args); \
6212 \
6213 return r; \
6214 } \
6215 EXPORT_SYMBOL(func);
6216
6217 define_netdev_printk_level(netdev_emerg, KERN_EMERG);
6218 define_netdev_printk_level(netdev_alert, KERN_ALERT);
6219 define_netdev_printk_level(netdev_crit, KERN_CRIT);
6220 define_netdev_printk_level(netdev_err, KERN_ERR);
6221 define_netdev_printk_level(netdev_warn, KERN_WARNING);
6222 define_netdev_printk_level(netdev_notice, KERN_NOTICE);
6223 define_netdev_printk_level(netdev_info, KERN_INFO);
6224
6225 static void __net_exit netdev_exit(struct net *net)
6226 {
6227 kfree(net->dev_name_head);
6228 kfree(net->dev_index_head);
6229 }
6230
6231 static struct pernet_operations __net_initdata netdev_net_ops = {
6232 .init = netdev_init,
6233 .exit = netdev_exit,
6234 };
6235
6236 static void __net_exit default_device_exit(struct net *net)
6237 {
6238 struct net_device *dev, *aux;
6239 /*
6240 * Push all migratable network devices back to the
6241 * initial network namespace
6242 */
6243 rtnl_lock();
6244 for_each_netdev_safe(net, dev, aux) {
6245 int err;
6246 char fb_name[IFNAMSIZ];
6247
6248 /* Ignore unmoveable devices (i.e. loopback) */
6249 if (dev->features & NETIF_F_NETNS_LOCAL)
6250 continue;
6251
6252 /* Leave virtual devices for the generic cleanup */
6253 if (dev->rtnl_link_ops)
6254 continue;
6255
6256 /* Push remaining network devices to init_net */
6257 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
6258 err = dev_change_net_namespace(dev, &init_net, fb_name);
6259 if (err) {
6260 pr_emerg("%s: failed to move %s to init_net: %d\n",
6261 __func__, dev->name, err);
6262 BUG();
6263 }
6264 }
6265 rtnl_unlock();
6266 }
6267
6268 static 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
6271 * namespace. Do this in the reverse order of registration.
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
6292 static struct pernet_operations __net_initdata default_device_ops = {
6293 .exit = default_device_exit,
6294 .exit_batch = default_device_exit_batch,
6295 };
6296
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 */
6308 static int __init net_dev_init(void)
6309 {
6310 int i, rc = -ENOMEM;
6311
6312 BUG_ON(!dev_boot_phase);
6313
6314 if (dev_proc_init())
6315 goto out;
6316
6317 if (netdev_kobject_init())
6318 goto out;
6319
6320 INIT_LIST_HEAD(&ptype_all);
6321 for (i = 0; i < PTYPE_HASH_SIZE; i++)
6322 INIT_LIST_HEAD(&ptype_base[i]);
6323
6324 INIT_LIST_HEAD(&offload_base);
6325
6326 if (register_pernet_subsys(&netdev_net_ops))
6327 goto out;
6328
6329 /*
6330 * Initialise the packet receive queues.
6331 */
6332
6333 for_each_possible_cpu(i) {
6334 struct softnet_data *sd = &per_cpu(softnet_data, i);
6335
6336 memset(sd, 0, sizeof(*sd));
6337 skb_queue_head_init(&sd->input_pkt_queue);
6338 skb_queue_head_init(&sd->process_queue);
6339 sd->completion_queue = NULL;
6340 INIT_LIST_HEAD(&sd->poll_list);
6341 sd->output_queue = NULL;
6342 sd->output_queue_tailp = &sd->output_queue;
6343 #ifdef CONFIG_RPS
6344 sd->csd.func = rps_trigger_softirq;
6345 sd->csd.info = sd;
6346 sd->csd.flags = 0;
6347 sd->cpu = i;
6348 #endif
6349
6350 sd->backlog.poll = process_backlog;
6351 sd->backlog.weight = weight_p;
6352 sd->backlog.gro_list = NULL;
6353 sd->backlog.gro_count = 0;
6354 }
6355
6356 dev_boot_phase = 0;
6357
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
6373 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
6374 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
6375
6376 hotcpu_notifier(dev_cpu_callback, 0);
6377 dst_init();
6378 rc = 0;
6379 out:
6380 return rc;
6381 }
6382
6383 subsys_initcall(net_dev_init);