]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * NET3 Protocol independent device support routines. | |
3 | * | |
4 | * This program is free software; you can redistribute it and/or | |
5 | * modify it under the terms of the GNU General Public License | |
6 | * as published by the Free Software Foundation; either version | |
7 | * 2 of the License, or (at your option) any later version. | |
8 | * | |
9 | * Derived from the non IP parts of dev.c 1.0.19 | |
02c30a84 | 10 | * Authors: Ross Biro |
1da177e4 LT |
11 | * Fred N. van Kempen, <[email protected]> |
12 | * Mark Evans, <[email protected]> | |
13 | * | |
14 | * Additional Authors: | |
15 | * Florian la Roche <[email protected]> | |
16 | * Alan Cox <[email protected]> | |
17 | * David Hinds <[email protected]> | |
18 | * Alexey Kuznetsov <[email protected]> | |
19 | * Adam Sulmicki <[email protected]> | |
20 | * Pekka Riikonen <[email protected]> | |
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 <asm/system.h> | |
77 | #include <linux/bitops.h> | |
4fc268d2 | 78 | #include <linux/capability.h> |
1da177e4 LT |
79 | #include <linux/cpu.h> |
80 | #include <linux/types.h> | |
81 | #include <linux/kernel.h> | |
82 | #include <linux/sched.h> | |
4a3e2f71 | 83 | #include <linux/mutex.h> |
1da177e4 LT |
84 | #include <linux/string.h> |
85 | #include <linux/mm.h> | |
86 | #include <linux/socket.h> | |
87 | #include <linux/sockios.h> | |
88 | #include <linux/errno.h> | |
89 | #include <linux/interrupt.h> | |
90 | #include <linux/if_ether.h> | |
91 | #include <linux/netdevice.h> | |
92 | #include <linux/etherdevice.h> | |
0187bdfb | 93 | #include <linux/ethtool.h> |
1da177e4 LT |
94 | #include <linux/notifier.h> |
95 | #include <linux/skbuff.h> | |
457c4cbc | 96 | #include <net/net_namespace.h> |
1da177e4 LT |
97 | #include <net/sock.h> |
98 | #include <linux/rtnetlink.h> | |
99 | #include <linux/proc_fs.h> | |
100 | #include <linux/seq_file.h> | |
101 | #include <linux/stat.h> | |
102 | #include <linux/if_bridge.h> | |
b863ceb7 | 103 | #include <linux/if_macvlan.h> |
1da177e4 LT |
104 | #include <net/dst.h> |
105 | #include <net/pkt_sched.h> | |
106 | #include <net/checksum.h> | |
107 | #include <linux/highmem.h> | |
108 | #include <linux/init.h> | |
109 | #include <linux/kmod.h> | |
110 | #include <linux/module.h> | |
1da177e4 LT |
111 | #include <linux/netpoll.h> |
112 | #include <linux/rcupdate.h> | |
113 | #include <linux/delay.h> | |
295f4a1f | 114 | #include <net/wext.h> |
1da177e4 | 115 | #include <net/iw_handler.h> |
1da177e4 | 116 | #include <asm/current.h> |
5bdb9886 | 117 | #include <linux/audit.h> |
db217334 | 118 | #include <linux/dmaengine.h> |
f6a78bfc | 119 | #include <linux/err.h> |
c7fa9d18 | 120 | #include <linux/ctype.h> |
723e98b7 | 121 | #include <linux/if_arp.h> |
6de329e2 | 122 | #include <linux/if_vlan.h> |
8f0f2223 | 123 | #include <linux/ip.h> |
ad55dcaf | 124 | #include <net/ip.h> |
8f0f2223 DM |
125 | #include <linux/ipv6.h> |
126 | #include <linux/in.h> | |
b6b2fed1 DM |
127 | #include <linux/jhash.h> |
128 | #include <linux/random.h> | |
9cbc1cb8 | 129 | #include <trace/events/napi.h> |
1da177e4 | 130 | |
342709ef PE |
131 | #include "net-sysfs.h" |
132 | ||
d565b0a1 HX |
133 | /* Instead of increasing this, you should create a hash table. */ |
134 | #define MAX_GRO_SKBS 8 | |
135 | ||
5d38a079 HX |
136 | /* This should be increased if a protocol with a bigger head is added. */ |
137 | #define GRO_MAX_HEAD (MAX_HEADER + 128) | |
138 | ||
1da177e4 LT |
139 | /* |
140 | * The list of packet types we will receive (as opposed to discard) | |
141 | * and the routines to invoke. | |
142 | * | |
143 | * Why 16. Because with 16 the only overlap we get on a hash of the | |
144 | * low nibble of the protocol value is RARP/SNAP/X.25. | |
145 | * | |
146 | * NOTE: That is no longer true with the addition of VLAN tags. Not | |
147 | * sure which should go first, but I bet it won't make much | |
148 | * difference if we are running VLANs. The good news is that | |
149 | * this protocol won't be in the list unless compiled in, so | |
3041a069 | 150 | * the average user (w/out VLANs) will not be adversely affected. |
1da177e4 LT |
151 | * --BLG |
152 | * | |
153 | * 0800 IP | |
154 | * 8100 802.1Q VLAN | |
155 | * 0001 802.3 | |
156 | * 0002 AX.25 | |
157 | * 0004 802.2 | |
158 | * 8035 RARP | |
159 | * 0005 SNAP | |
160 | * 0805 X.25 | |
161 | * 0806 ARP | |
162 | * 8137 IPX | |
163 | * 0009 Localtalk | |
164 | * 86DD IPv6 | |
165 | */ | |
166 | ||
82d8a867 PE |
167 | #define PTYPE_HASH_SIZE (16) |
168 | #define PTYPE_HASH_MASK (PTYPE_HASH_SIZE - 1) | |
169 | ||
1da177e4 | 170 | static DEFINE_SPINLOCK(ptype_lock); |
82d8a867 | 171 | static struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly; |
6b2bedc3 | 172 | static struct list_head ptype_all __read_mostly; /* Taps */ |
1da177e4 | 173 | |
1da177e4 | 174 | /* |
7562f876 | 175 | * The @dev_base_head list is protected by @dev_base_lock and the rtnl |
1da177e4 LT |
176 | * semaphore. |
177 | * | |
178 | * Pure readers hold dev_base_lock for reading. | |
179 | * | |
180 | * Writers must hold the rtnl semaphore while they loop through the | |
7562f876 | 181 | * dev_base_head list, and hold dev_base_lock for writing when they do the |
1da177e4 LT |
182 | * actual updates. This allows pure readers to access the list even |
183 | * while a writer is preparing to update it. | |
184 | * | |
185 | * To put it another way, dev_base_lock is held for writing only to | |
186 | * protect against pure readers; the rtnl semaphore provides the | |
187 | * protection against other writers. | |
188 | * | |
189 | * See, for example usages, register_netdevice() and | |
190 | * unregister_netdevice(), which must be called with the rtnl | |
191 | * semaphore held. | |
192 | */ | |
1da177e4 | 193 | DEFINE_RWLOCK(dev_base_lock); |
1da177e4 LT |
194 | EXPORT_SYMBOL(dev_base_lock); |
195 | ||
881d966b | 196 | static inline struct hlist_head *dev_name_hash(struct net *net, const char *name) |
1da177e4 LT |
197 | { |
198 | unsigned hash = full_name_hash(name, strnlen(name, IFNAMSIZ)); | |
7c28bd0b | 199 | return &net->dev_name_head[hash & (NETDEV_HASHENTRIES - 1)]; |
1da177e4 LT |
200 | } |
201 | ||
881d966b | 202 | static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex) |
1da177e4 | 203 | { |
7c28bd0b | 204 | return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)]; |
1da177e4 LT |
205 | } |
206 | ||
ce286d32 EB |
207 | /* Device list insertion */ |
208 | static int list_netdevice(struct net_device *dev) | |
209 | { | |
c346dca1 | 210 | struct net *net = dev_net(dev); |
ce286d32 EB |
211 | |
212 | ASSERT_RTNL(); | |
213 | ||
214 | write_lock_bh(&dev_base_lock); | |
215 | list_add_tail(&dev->dev_list, &net->dev_base_head); | |
72c9528b | 216 | hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name)); |
fb699dfd ED |
217 | hlist_add_head_rcu(&dev->index_hlist, |
218 | dev_index_hash(net, dev->ifindex)); | |
ce286d32 EB |
219 | write_unlock_bh(&dev_base_lock); |
220 | return 0; | |
221 | } | |
222 | ||
fb699dfd ED |
223 | /* Device list removal |
224 | * caller must respect a RCU grace period before freeing/reusing dev | |
225 | */ | |
ce286d32 EB |
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(&dev->dev_list); | |
72c9528b | 233 | hlist_del_rcu(&dev->name_hlist); |
fb699dfd | 234 | hlist_del_rcu(&dev->index_hlist); |
ce286d32 EB |
235 | write_unlock_bh(&dev_base_lock); |
236 | } | |
237 | ||
1da177e4 LT |
238 | /* |
239 | * Our notifier list | |
240 | */ | |
241 | ||
f07d5b94 | 242 | static RAW_NOTIFIER_HEAD(netdev_chain); |
1da177e4 LT |
243 | |
244 | /* | |
245 | * Device drivers call our routines to queue packets here. We empty the | |
246 | * queue in the local softnet handler. | |
247 | */ | |
bea3348e SH |
248 | |
249 | DEFINE_PER_CPU(struct softnet_data, softnet_data); | |
d1b19dff | 250 | EXPORT_PER_CPU_SYMBOL(softnet_data); |
1da177e4 | 251 | |
cf508b12 | 252 | #ifdef CONFIG_LOCKDEP |
723e98b7 | 253 | /* |
c773e847 | 254 | * register_netdevice() inits txq->_xmit_lock and sets lockdep class |
723e98b7 JP |
255 | * according to dev->type |
256 | */ | |
257 | static const unsigned short netdev_lock_type[] = | |
258 | {ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25, | |
259 | ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET, | |
260 | ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM, | |
261 | ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP, | |
262 | ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD, | |
263 | ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25, | |
264 | ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP, | |
265 | ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD, | |
266 | ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI, | |
267 | ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE, | |
268 | ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET, | |
269 | ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL, | |
270 | ARPHRD_FCFABRIC, ARPHRD_IEEE802_TR, ARPHRD_IEEE80211, | |
2d91d78b | 271 | ARPHRD_IEEE80211_PRISM, ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET, |
929122cd | 272 | ARPHRD_PHONET_PIPE, ARPHRD_IEEE802154, |
fcb94e42 | 273 | ARPHRD_VOID, ARPHRD_NONE}; |
723e98b7 | 274 | |
36cbd3dc | 275 | static const char *const netdev_lock_name[] = |
723e98b7 JP |
276 | {"_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25", |
277 | "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET", | |
278 | "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM", | |
279 | "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP", | |
280 | "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD", | |
281 | "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25", | |
282 | "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP", | |
283 | "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD", | |
284 | "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI", | |
285 | "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE", | |
286 | "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET", | |
287 | "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL", | |
288 | "_xmit_FCFABRIC", "_xmit_IEEE802_TR", "_xmit_IEEE80211", | |
2d91d78b | 289 | "_xmit_IEEE80211_PRISM", "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET", |
929122cd | 290 | "_xmit_PHONET_PIPE", "_xmit_IEEE802154", |
fcb94e42 | 291 | "_xmit_VOID", "_xmit_NONE"}; |
723e98b7 JP |
292 | |
293 | static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)]; | |
cf508b12 | 294 | static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)]; |
723e98b7 JP |
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 | ||
cf508b12 DM |
307 | static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock, |
308 | unsigned short dev_type) | |
723e98b7 JP |
309 | { |
310 | int i; | |
311 | ||
312 | i = netdev_lock_pos(dev_type); | |
313 | lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i], | |
314 | netdev_lock_name[i]); | |
315 | } | |
cf508b12 DM |
316 | |
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 | } | |
723e98b7 | 326 | #else |
cf508b12 DM |
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) | |
723e98b7 JP |
332 | { |
333 | } | |
334 | #endif | |
1da177e4 LT |
335 | |
336 | /******************************************************************************* | |
337 | ||
338 | Protocol management and registration routines | |
339 | ||
340 | *******************************************************************************/ | |
341 | ||
1da177e4 LT |
342 | /* |
343 | * Add a protocol ID to the list. Now that the input handler is | |
344 | * smarter we can dispense with all the messy stuff that used to be | |
345 | * here. | |
346 | * | |
347 | * BEWARE!!! Protocol handlers, mangling input packets, | |
348 | * MUST BE last in hash buckets and checking protocol handlers | |
349 | * MUST start from promiscuous ptype_all chain in net_bh. | |
350 | * It is true now, do not change it. | |
351 | * Explanation follows: if protocol handler, mangling packet, will | |
352 | * be the first on list, it is not able to sense, that packet | |
353 | * is cloned and should be copied-on-write, so that it will | |
354 | * change it and subsequent readers will get broken packet. | |
355 | * --ANK (980803) | |
356 | */ | |
357 | ||
358 | /** | |
359 | * dev_add_pack - add packet handler | |
360 | * @pt: packet type declaration | |
361 | * | |
362 | * Add a protocol handler to the networking stack. The passed &packet_type | |
363 | * is linked into kernel lists and may not be freed until it has been | |
364 | * removed from the kernel lists. | |
365 | * | |
4ec93edb | 366 | * This call does not sleep therefore it can not |
1da177e4 LT |
367 | * guarantee all CPU's that are in middle of receiving packets |
368 | * will see the new packet type (until the next received packet). | |
369 | */ | |
370 | ||
371 | void dev_add_pack(struct packet_type *pt) | |
372 | { | |
373 | int hash; | |
374 | ||
375 | spin_lock_bh(&ptype_lock); | |
9be9a6b9 | 376 | if (pt->type == htons(ETH_P_ALL)) |
1da177e4 | 377 | list_add_rcu(&pt->list, &ptype_all); |
9be9a6b9 | 378 | else { |
82d8a867 | 379 | hash = ntohs(pt->type) & PTYPE_HASH_MASK; |
1da177e4 LT |
380 | list_add_rcu(&pt->list, &ptype_base[hash]); |
381 | } | |
382 | spin_unlock_bh(&ptype_lock); | |
383 | } | |
d1b19dff | 384 | EXPORT_SYMBOL(dev_add_pack); |
1da177e4 | 385 | |
1da177e4 LT |
386 | /** |
387 | * __dev_remove_pack - remove packet handler | |
388 | * @pt: packet type declaration | |
389 | * | |
390 | * Remove a protocol handler that was previously added to the kernel | |
391 | * protocol handlers by dev_add_pack(). The passed &packet_type is removed | |
392 | * from the kernel lists and can be freed or reused once this function | |
4ec93edb | 393 | * returns. |
1da177e4 LT |
394 | * |
395 | * The packet type might still be in use by receivers | |
396 | * and must not be freed until after all the CPU's have gone | |
397 | * through a quiescent state. | |
398 | */ | |
399 | void __dev_remove_pack(struct packet_type *pt) | |
400 | { | |
401 | struct list_head *head; | |
402 | struct packet_type *pt1; | |
403 | ||
404 | spin_lock_bh(&ptype_lock); | |
405 | ||
9be9a6b9 | 406 | if (pt->type == htons(ETH_P_ALL)) |
1da177e4 | 407 | head = &ptype_all; |
9be9a6b9 | 408 | else |
82d8a867 | 409 | head = &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK]; |
1da177e4 LT |
410 | |
411 | list_for_each_entry(pt1, head, list) { | |
412 | if (pt == pt1) { | |
413 | list_del_rcu(&pt->list); | |
414 | goto out; | |
415 | } | |
416 | } | |
417 | ||
418 | printk(KERN_WARNING "dev_remove_pack: %p not found.\n", pt); | |
419 | out: | |
420 | spin_unlock_bh(&ptype_lock); | |
421 | } | |
d1b19dff ED |
422 | EXPORT_SYMBOL(__dev_remove_pack); |
423 | ||
1da177e4 LT |
424 | /** |
425 | * dev_remove_pack - remove packet handler | |
426 | * @pt: packet type declaration | |
427 | * | |
428 | * Remove a protocol handler that was previously added to the kernel | |
429 | * protocol handlers by dev_add_pack(). The passed &packet_type is removed | |
430 | * from the kernel lists and can be freed or reused once this function | |
431 | * returns. | |
432 | * | |
433 | * This call sleeps to guarantee that no CPU is looking at the packet | |
434 | * type after return. | |
435 | */ | |
436 | void dev_remove_pack(struct packet_type *pt) | |
437 | { | |
438 | __dev_remove_pack(pt); | |
4ec93edb | 439 | |
1da177e4 LT |
440 | synchronize_net(); |
441 | } | |
d1b19dff | 442 | EXPORT_SYMBOL(dev_remove_pack); |
1da177e4 LT |
443 | |
444 | /****************************************************************************** | |
445 | ||
446 | Device Boot-time Settings Routines | |
447 | ||
448 | *******************************************************************************/ | |
449 | ||
450 | /* Boot time configuration table */ | |
451 | static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX]; | |
452 | ||
453 | /** | |
454 | * netdev_boot_setup_add - add new setup entry | |
455 | * @name: name of the device | |
456 | * @map: configured settings for the device | |
457 | * | |
458 | * Adds new setup entry to the dev_boot_setup list. The function | |
459 | * returns 0 on error and 1 on success. This is a generic routine to | |
460 | * all netdevices. | |
461 | */ | |
462 | static int netdev_boot_setup_add(char *name, struct ifmap *map) | |
463 | { | |
464 | struct netdev_boot_setup *s; | |
465 | int i; | |
466 | ||
467 | s = dev_boot_setup; | |
468 | for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) { | |
469 | if (s[i].name[0] == '\0' || s[i].name[0] == ' ') { | |
470 | memset(s[i].name, 0, sizeof(s[i].name)); | |
93b3cff9 | 471 | strlcpy(s[i].name, name, IFNAMSIZ); |
1da177e4 LT |
472 | memcpy(&s[i].map, map, sizeof(s[i].map)); |
473 | break; | |
474 | } | |
475 | } | |
476 | ||
477 | return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1; | |
478 | } | |
479 | ||
480 | /** | |
481 | * netdev_boot_setup_check - check boot time settings | |
482 | * @dev: the netdevice | |
483 | * | |
484 | * Check boot time settings for the device. | |
485 | * The found settings are set for the device to be used | |
486 | * later in the device probing. | |
487 | * Returns 0 if no settings found, 1 if they are. | |
488 | */ | |
489 | int netdev_boot_setup_check(struct net_device *dev) | |
490 | { | |
491 | struct netdev_boot_setup *s = dev_boot_setup; | |
492 | int i; | |
493 | ||
494 | for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) { | |
495 | if (s[i].name[0] != '\0' && s[i].name[0] != ' ' && | |
93b3cff9 | 496 | !strcmp(dev->name, s[i].name)) { |
1da177e4 LT |
497 | dev->irq = s[i].map.irq; |
498 | dev->base_addr = s[i].map.base_addr; | |
499 | dev->mem_start = s[i].map.mem_start; | |
500 | dev->mem_end = s[i].map.mem_end; | |
501 | return 1; | |
502 | } | |
503 | } | |
504 | return 0; | |
505 | } | |
d1b19dff | 506 | EXPORT_SYMBOL(netdev_boot_setup_check); |
1da177e4 LT |
507 | |
508 | ||
509 | /** | |
510 | * netdev_boot_base - get address from boot time settings | |
511 | * @prefix: prefix for network device | |
512 | * @unit: id for network device | |
513 | * | |
514 | * Check boot time settings for the base address of device. | |
515 | * The found settings are set for the device to be used | |
516 | * later in the device probing. | |
517 | * Returns 0 if no settings found. | |
518 | */ | |
519 | unsigned long netdev_boot_base(const char *prefix, int unit) | |
520 | { | |
521 | const struct netdev_boot_setup *s = dev_boot_setup; | |
522 | char name[IFNAMSIZ]; | |
523 | int i; | |
524 | ||
525 | sprintf(name, "%s%d", prefix, unit); | |
526 | ||
527 | /* | |
528 | * If device already registered then return base of 1 | |
529 | * to indicate not to probe for this interface | |
530 | */ | |
881d966b | 531 | if (__dev_get_by_name(&init_net, name)) |
1da177e4 LT |
532 | return 1; |
533 | ||
534 | for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) | |
535 | if (!strcmp(name, s[i].name)) | |
536 | return s[i].map.base_addr; | |
537 | return 0; | |
538 | } | |
539 | ||
540 | /* | |
541 | * Saves at boot time configured settings for any netdevice. | |
542 | */ | |
543 | int __init netdev_boot_setup(char *str) | |
544 | { | |
545 | int ints[5]; | |
546 | struct ifmap map; | |
547 | ||
548 | str = get_options(str, ARRAY_SIZE(ints), ints); | |
549 | if (!str || !*str) | |
550 | return 0; | |
551 | ||
552 | /* Save settings */ | |
553 | memset(&map, 0, sizeof(map)); | |
554 | if (ints[0] > 0) | |
555 | map.irq = ints[1]; | |
556 | if (ints[0] > 1) | |
557 | map.base_addr = ints[2]; | |
558 | if (ints[0] > 2) | |
559 | map.mem_start = ints[3]; | |
560 | if (ints[0] > 3) | |
561 | map.mem_end = ints[4]; | |
562 | ||
563 | /* Add new entry to the list */ | |
564 | return netdev_boot_setup_add(str, &map); | |
565 | } | |
566 | ||
567 | __setup("netdev=", netdev_boot_setup); | |
568 | ||
569 | /******************************************************************************* | |
570 | ||
571 | Device Interface Subroutines | |
572 | ||
573 | *******************************************************************************/ | |
574 | ||
575 | /** | |
576 | * __dev_get_by_name - find a device by its name | |
c4ea43c5 | 577 | * @net: the applicable net namespace |
1da177e4 LT |
578 | * @name: name to find |
579 | * | |
580 | * Find an interface by name. Must be called under RTNL semaphore | |
581 | * or @dev_base_lock. If the name is found a pointer to the device | |
582 | * is returned. If the name is not found then %NULL is returned. The | |
583 | * reference counters are not incremented so the caller must be | |
584 | * careful with locks. | |
585 | */ | |
586 | ||
881d966b | 587 | struct net_device *__dev_get_by_name(struct net *net, const char *name) |
1da177e4 LT |
588 | { |
589 | struct hlist_node *p; | |
0bd8d536 ED |
590 | struct net_device *dev; |
591 | struct hlist_head *head = dev_name_hash(net, name); | |
1da177e4 | 592 | |
0bd8d536 | 593 | hlist_for_each_entry(dev, p, head, name_hlist) |
1da177e4 LT |
594 | if (!strncmp(dev->name, name, IFNAMSIZ)) |
595 | return dev; | |
0bd8d536 | 596 | |
1da177e4 LT |
597 | return NULL; |
598 | } | |
d1b19dff | 599 | EXPORT_SYMBOL(__dev_get_by_name); |
1da177e4 | 600 | |
72c9528b ED |
601 | /** |
602 | * dev_get_by_name_rcu - find a device by its name | |
603 | * @net: the applicable net namespace | |
604 | * @name: name to find | |
605 | * | |
606 | * Find an interface by name. | |
607 | * If the name is found a pointer to the device is returned. | |
608 | * If the name is not found then %NULL is returned. | |
609 | * The reference counters are not incremented so the caller must be | |
610 | * careful with locks. The caller must hold RCU lock. | |
611 | */ | |
612 | ||
613 | struct net_device *dev_get_by_name_rcu(struct net *net, const char *name) | |
614 | { | |
615 | struct hlist_node *p; | |
616 | struct net_device *dev; | |
617 | struct hlist_head *head = dev_name_hash(net, name); | |
618 | ||
619 | hlist_for_each_entry_rcu(dev, p, head, name_hlist) | |
620 | if (!strncmp(dev->name, name, IFNAMSIZ)) | |
621 | return dev; | |
622 | ||
623 | return NULL; | |
624 | } | |
625 | EXPORT_SYMBOL(dev_get_by_name_rcu); | |
626 | ||
1da177e4 LT |
627 | /** |
628 | * dev_get_by_name - find a device by its name | |
c4ea43c5 | 629 | * @net: the applicable net namespace |
1da177e4 LT |
630 | * @name: name to find |
631 | * | |
632 | * Find an interface by name. This can be called from any | |
633 | * context and does its own locking. The returned handle has | |
634 | * the usage count incremented and the caller must use dev_put() to | |
635 | * release it when it is no longer needed. %NULL is returned if no | |
636 | * matching device is found. | |
637 | */ | |
638 | ||
881d966b | 639 | struct net_device *dev_get_by_name(struct net *net, const char *name) |
1da177e4 LT |
640 | { |
641 | struct net_device *dev; | |
642 | ||
72c9528b ED |
643 | rcu_read_lock(); |
644 | dev = dev_get_by_name_rcu(net, name); | |
1da177e4 LT |
645 | if (dev) |
646 | dev_hold(dev); | |
72c9528b | 647 | rcu_read_unlock(); |
1da177e4 LT |
648 | return dev; |
649 | } | |
d1b19dff | 650 | EXPORT_SYMBOL(dev_get_by_name); |
1da177e4 LT |
651 | |
652 | /** | |
653 | * __dev_get_by_index - find a device by its ifindex | |
c4ea43c5 | 654 | * @net: the applicable net namespace |
1da177e4 LT |
655 | * @ifindex: index of device |
656 | * | |
657 | * Search for an interface by index. Returns %NULL if the device | |
658 | * is not found or a pointer to the device. The device has not | |
659 | * had its reference counter increased so the caller must be careful | |
660 | * about locking. The caller must hold either the RTNL semaphore | |
661 | * or @dev_base_lock. | |
662 | */ | |
663 | ||
881d966b | 664 | struct net_device *__dev_get_by_index(struct net *net, int ifindex) |
1da177e4 LT |
665 | { |
666 | struct hlist_node *p; | |
0bd8d536 ED |
667 | struct net_device *dev; |
668 | struct hlist_head *head = dev_index_hash(net, ifindex); | |
1da177e4 | 669 | |
0bd8d536 | 670 | hlist_for_each_entry(dev, p, head, index_hlist) |
1da177e4 LT |
671 | if (dev->ifindex == ifindex) |
672 | return dev; | |
0bd8d536 | 673 | |
1da177e4 LT |
674 | return NULL; |
675 | } | |
d1b19dff | 676 | EXPORT_SYMBOL(__dev_get_by_index); |
1da177e4 | 677 | |
fb699dfd ED |
678 | /** |
679 | * dev_get_by_index_rcu - find a device by its ifindex | |
680 | * @net: the applicable net namespace | |
681 | * @ifindex: index of device | |
682 | * | |
683 | * Search for an interface by index. Returns %NULL if the device | |
684 | * is not found or a pointer to the device. The device has not | |
685 | * had its reference counter increased so the caller must be careful | |
686 | * about locking. The caller must hold RCU lock. | |
687 | */ | |
688 | ||
689 | struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex) | |
690 | { | |
691 | struct hlist_node *p; | |
692 | struct net_device *dev; | |
693 | struct hlist_head *head = dev_index_hash(net, ifindex); | |
694 | ||
695 | hlist_for_each_entry_rcu(dev, p, head, index_hlist) | |
696 | if (dev->ifindex == ifindex) | |
697 | return dev; | |
698 | ||
699 | return NULL; | |
700 | } | |
701 | EXPORT_SYMBOL(dev_get_by_index_rcu); | |
702 | ||
1da177e4 LT |
703 | |
704 | /** | |
705 | * dev_get_by_index - find a device by its ifindex | |
c4ea43c5 | 706 | * @net: the applicable net namespace |
1da177e4 LT |
707 | * @ifindex: index of device |
708 | * | |
709 | * Search for an interface by index. Returns NULL if the device | |
710 | * is not found or a pointer to the device. The device returned has | |
711 | * had a reference added and the pointer is safe until the user calls | |
712 | * dev_put to indicate they have finished with it. | |
713 | */ | |
714 | ||
881d966b | 715 | struct net_device *dev_get_by_index(struct net *net, int ifindex) |
1da177e4 LT |
716 | { |
717 | struct net_device *dev; | |
718 | ||
fb699dfd ED |
719 | rcu_read_lock(); |
720 | dev = dev_get_by_index_rcu(net, ifindex); | |
1da177e4 LT |
721 | if (dev) |
722 | dev_hold(dev); | |
fb699dfd | 723 | rcu_read_unlock(); |
1da177e4 LT |
724 | return dev; |
725 | } | |
d1b19dff | 726 | EXPORT_SYMBOL(dev_get_by_index); |
1da177e4 LT |
727 | |
728 | /** | |
729 | * dev_getbyhwaddr - find a device by its hardware address | |
c4ea43c5 | 730 | * @net: the applicable net namespace |
1da177e4 LT |
731 | * @type: media type of device |
732 | * @ha: hardware address | |
733 | * | |
734 | * Search for an interface by MAC address. Returns NULL if the device | |
735 | * is not found or a pointer to the device. The caller must hold the | |
736 | * rtnl semaphore. The returned device has not had its ref count increased | |
737 | * and the caller must therefore be careful about locking | |
738 | * | |
739 | * BUGS: | |
740 | * If the API was consistent this would be __dev_get_by_hwaddr | |
741 | */ | |
742 | ||
881d966b | 743 | struct net_device *dev_getbyhwaddr(struct net *net, unsigned short type, char *ha) |
1da177e4 LT |
744 | { |
745 | struct net_device *dev; | |
746 | ||
747 | ASSERT_RTNL(); | |
748 | ||
81103a52 | 749 | for_each_netdev(net, dev) |
1da177e4 LT |
750 | if (dev->type == type && |
751 | !memcmp(dev->dev_addr, ha, dev->addr_len)) | |
7562f876 PE |
752 | return dev; |
753 | ||
754 | return NULL; | |
1da177e4 | 755 | } |
cf309e3f JF |
756 | EXPORT_SYMBOL(dev_getbyhwaddr); |
757 | ||
881d966b | 758 | struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type) |
1da177e4 LT |
759 | { |
760 | struct net_device *dev; | |
761 | ||
4e9cac2b | 762 | ASSERT_RTNL(); |
881d966b | 763 | for_each_netdev(net, dev) |
4e9cac2b | 764 | if (dev->type == type) |
7562f876 PE |
765 | return dev; |
766 | ||
767 | return NULL; | |
4e9cac2b | 768 | } |
4e9cac2b PM |
769 | EXPORT_SYMBOL(__dev_getfirstbyhwtype); |
770 | ||
881d966b | 771 | struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type) |
4e9cac2b PM |
772 | { |
773 | struct net_device *dev; | |
774 | ||
775 | rtnl_lock(); | |
881d966b | 776 | dev = __dev_getfirstbyhwtype(net, type); |
4e9cac2b PM |
777 | if (dev) |
778 | dev_hold(dev); | |
1da177e4 LT |
779 | rtnl_unlock(); |
780 | return dev; | |
781 | } | |
1da177e4 LT |
782 | EXPORT_SYMBOL(dev_getfirstbyhwtype); |
783 | ||
784 | /** | |
785 | * dev_get_by_flags - find any device with given flags | |
c4ea43c5 | 786 | * @net: the applicable net namespace |
1da177e4 LT |
787 | * @if_flags: IFF_* values |
788 | * @mask: bitmask of bits in if_flags to check | |
789 | * | |
790 | * Search for any interface with the given flags. Returns NULL if a device | |
4ec93edb | 791 | * is not found or a pointer to the device. The device returned has |
1da177e4 LT |
792 | * had a reference added and the pointer is safe until the user calls |
793 | * dev_put to indicate they have finished with it. | |
794 | */ | |
795 | ||
d1b19dff ED |
796 | struct net_device *dev_get_by_flags(struct net *net, unsigned short if_flags, |
797 | unsigned short mask) | |
1da177e4 | 798 | { |
7562f876 | 799 | struct net_device *dev, *ret; |
1da177e4 | 800 | |
7562f876 | 801 | ret = NULL; |
1da177e4 | 802 | read_lock(&dev_base_lock); |
881d966b | 803 | for_each_netdev(net, dev) { |
1da177e4 LT |
804 | if (((dev->flags ^ if_flags) & mask) == 0) { |
805 | dev_hold(dev); | |
7562f876 | 806 | ret = dev; |
1da177e4 LT |
807 | break; |
808 | } | |
809 | } | |
810 | read_unlock(&dev_base_lock); | |
7562f876 | 811 | return ret; |
1da177e4 | 812 | } |
d1b19dff | 813 | EXPORT_SYMBOL(dev_get_by_flags); |
1da177e4 LT |
814 | |
815 | /** | |
816 | * dev_valid_name - check if name is okay for network device | |
817 | * @name: name string | |
818 | * | |
819 | * Network device names need to be valid file names to | |
c7fa9d18 DM |
820 | * to allow sysfs to work. We also disallow any kind of |
821 | * whitespace. | |
1da177e4 | 822 | */ |
c2373ee9 | 823 | int dev_valid_name(const char *name) |
1da177e4 | 824 | { |
c7fa9d18 DM |
825 | if (*name == '\0') |
826 | return 0; | |
b6fe17d6 SH |
827 | if (strlen(name) >= IFNAMSIZ) |
828 | return 0; | |
c7fa9d18 DM |
829 | if (!strcmp(name, ".") || !strcmp(name, "..")) |
830 | return 0; | |
831 | ||
832 | while (*name) { | |
833 | if (*name == '/' || isspace(*name)) | |
834 | return 0; | |
835 | name++; | |
836 | } | |
837 | return 1; | |
1da177e4 | 838 | } |
d1b19dff | 839 | EXPORT_SYMBOL(dev_valid_name); |
1da177e4 LT |
840 | |
841 | /** | |
b267b179 EB |
842 | * __dev_alloc_name - allocate a name for a device |
843 | * @net: network namespace to allocate the device name in | |
1da177e4 | 844 | * @name: name format string |
b267b179 | 845 | * @buf: scratch buffer and result name string |
1da177e4 LT |
846 | * |
847 | * Passed a format string - eg "lt%d" it will try and find a suitable | |
3041a069 SH |
848 | * id. It scans list of devices to build up a free map, then chooses |
849 | * the first empty slot. The caller must hold the dev_base or rtnl lock | |
850 | * while allocating the name and adding the device in order to avoid | |
851 | * duplicates. | |
852 | * Limited to bits_per_byte * page size devices (ie 32K on most platforms). | |
853 | * Returns the number of the unit assigned or a negative errno code. | |
1da177e4 LT |
854 | */ |
855 | ||
b267b179 | 856 | static int __dev_alloc_name(struct net *net, const char *name, char *buf) |
1da177e4 LT |
857 | { |
858 | int i = 0; | |
1da177e4 LT |
859 | const char *p; |
860 | const int max_netdevices = 8*PAGE_SIZE; | |
cfcabdcc | 861 | unsigned long *inuse; |
1da177e4 LT |
862 | struct net_device *d; |
863 | ||
864 | p = strnchr(name, IFNAMSIZ-1, '%'); | |
865 | if (p) { | |
866 | /* | |
867 | * Verify the string as this thing may have come from | |
868 | * the user. There must be either one "%d" and no other "%" | |
869 | * characters. | |
870 | */ | |
871 | if (p[1] != 'd' || strchr(p + 2, '%')) | |
872 | return -EINVAL; | |
873 | ||
874 | /* Use one page as a bit array of possible slots */ | |
cfcabdcc | 875 | inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC); |
1da177e4 LT |
876 | if (!inuse) |
877 | return -ENOMEM; | |
878 | ||
881d966b | 879 | for_each_netdev(net, d) { |
1da177e4 LT |
880 | if (!sscanf(d->name, name, &i)) |
881 | continue; | |
882 | if (i < 0 || i >= max_netdevices) | |
883 | continue; | |
884 | ||
885 | /* avoid cases where sscanf is not exact inverse of printf */ | |
b267b179 | 886 | snprintf(buf, IFNAMSIZ, name, i); |
1da177e4 LT |
887 | if (!strncmp(buf, d->name, IFNAMSIZ)) |
888 | set_bit(i, inuse); | |
889 | } | |
890 | ||
891 | i = find_first_zero_bit(inuse, max_netdevices); | |
892 | free_page((unsigned long) inuse); | |
893 | } | |
894 | ||
b267b179 EB |
895 | snprintf(buf, IFNAMSIZ, name, i); |
896 | if (!__dev_get_by_name(net, buf)) | |
1da177e4 | 897 | return i; |
1da177e4 LT |
898 | |
899 | /* It is possible to run out of possible slots | |
900 | * when the name is long and there isn't enough space left | |
901 | * for the digits, or if all bits are used. | |
902 | */ | |
903 | return -ENFILE; | |
904 | } | |
905 | ||
b267b179 EB |
906 | /** |
907 | * dev_alloc_name - allocate a name for a device | |
908 | * @dev: device | |
909 | * @name: name format string | |
910 | * | |
911 | * Passed a format string - eg "lt%d" it will try and find a suitable | |
912 | * id. It scans list of devices to build up a free map, then chooses | |
913 | * the first empty slot. The caller must hold the dev_base or rtnl lock | |
914 | * while allocating the name and adding the device in order to avoid | |
915 | * duplicates. | |
916 | * Limited to bits_per_byte * page size devices (ie 32K on most platforms). | |
917 | * Returns the number of the unit assigned or a negative errno code. | |
918 | */ | |
919 | ||
920 | int dev_alloc_name(struct net_device *dev, const char *name) | |
921 | { | |
922 | char buf[IFNAMSIZ]; | |
923 | struct net *net; | |
924 | int ret; | |
925 | ||
c346dca1 YH |
926 | BUG_ON(!dev_net(dev)); |
927 | net = dev_net(dev); | |
b267b179 EB |
928 | ret = __dev_alloc_name(net, name, buf); |
929 | if (ret >= 0) | |
930 | strlcpy(dev->name, buf, IFNAMSIZ); | |
931 | return ret; | |
932 | } | |
d1b19dff | 933 | EXPORT_SYMBOL(dev_alloc_name); |
b267b179 | 934 | |
1da177e4 LT |
935 | |
936 | /** | |
937 | * dev_change_name - change name of a device | |
938 | * @dev: device | |
939 | * @newname: name (or format string) must be at least IFNAMSIZ | |
940 | * | |
941 | * Change name of a device, can pass format strings "eth%d". | |
942 | * for wildcarding. | |
943 | */ | |
cf04a4c7 | 944 | int dev_change_name(struct net_device *dev, const char *newname) |
1da177e4 | 945 | { |
fcc5a03a | 946 | char oldname[IFNAMSIZ]; |
1da177e4 | 947 | int err = 0; |
fcc5a03a | 948 | int ret; |
881d966b | 949 | struct net *net; |
1da177e4 LT |
950 | |
951 | ASSERT_RTNL(); | |
c346dca1 | 952 | BUG_ON(!dev_net(dev)); |
1da177e4 | 953 | |
c346dca1 | 954 | net = dev_net(dev); |
1da177e4 LT |
955 | if (dev->flags & IFF_UP) |
956 | return -EBUSY; | |
957 | ||
958 | if (!dev_valid_name(newname)) | |
959 | return -EINVAL; | |
960 | ||
c8d90dca SH |
961 | if (strncmp(newname, dev->name, IFNAMSIZ) == 0) |
962 | return 0; | |
963 | ||
fcc5a03a HX |
964 | memcpy(oldname, dev->name, IFNAMSIZ); |
965 | ||
1da177e4 LT |
966 | if (strchr(newname, '%')) { |
967 | err = dev_alloc_name(dev, newname); | |
968 | if (err < 0) | |
969 | return err; | |
d1b19dff | 970 | } else if (__dev_get_by_name(net, newname)) |
1da177e4 LT |
971 | return -EEXIST; |
972 | else | |
973 | strlcpy(dev->name, newname, IFNAMSIZ); | |
974 | ||
fcc5a03a | 975 | rollback: |
3891845e EB |
976 | /* For now only devices in the initial network namespace |
977 | * are in sysfs. | |
978 | */ | |
979 | if (net == &init_net) { | |
980 | ret = device_rename(&dev->dev, dev->name); | |
981 | if (ret) { | |
982 | memcpy(dev->name, oldname, IFNAMSIZ); | |
983 | return ret; | |
984 | } | |
dcc99773 | 985 | } |
7f988eab HX |
986 | |
987 | write_lock_bh(&dev_base_lock); | |
92749821 | 988 | hlist_del(&dev->name_hlist); |
72c9528b ED |
989 | write_unlock_bh(&dev_base_lock); |
990 | ||
991 | synchronize_rcu(); | |
992 | ||
993 | write_lock_bh(&dev_base_lock); | |
994 | hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name)); | |
7f988eab HX |
995 | write_unlock_bh(&dev_base_lock); |
996 | ||
056925ab | 997 | ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev); |
fcc5a03a HX |
998 | ret = notifier_to_errno(ret); |
999 | ||
1000 | if (ret) { | |
1001 | if (err) { | |
1002 | printk(KERN_ERR | |
1003 | "%s: name change rollback failed: %d.\n", | |
1004 | dev->name, ret); | |
1005 | } else { | |
1006 | err = ret; | |
1007 | memcpy(dev->name, oldname, IFNAMSIZ); | |
1008 | goto rollback; | |
1009 | } | |
1010 | } | |
1da177e4 LT |
1011 | |
1012 | return err; | |
1013 | } | |
1014 | ||
0b815a1a SH |
1015 | /** |
1016 | * dev_set_alias - change ifalias of a device | |
1017 | * @dev: device | |
1018 | * @alias: name up to IFALIASZ | |
f0db275a | 1019 | * @len: limit of bytes to copy from info |
0b815a1a SH |
1020 | * |
1021 | * Set ifalias for a device, | |
1022 | */ | |
1023 | int dev_set_alias(struct net_device *dev, const char *alias, size_t len) | |
1024 | { | |
1025 | ASSERT_RTNL(); | |
1026 | ||
1027 | if (len >= IFALIASZ) | |
1028 | return -EINVAL; | |
1029 | ||
96ca4a2c OH |
1030 | if (!len) { |
1031 | if (dev->ifalias) { | |
1032 | kfree(dev->ifalias); | |
1033 | dev->ifalias = NULL; | |
1034 | } | |
1035 | return 0; | |
1036 | } | |
1037 | ||
d1b19dff | 1038 | dev->ifalias = krealloc(dev->ifalias, len + 1, GFP_KERNEL); |
0b815a1a SH |
1039 | if (!dev->ifalias) |
1040 | return -ENOMEM; | |
1041 | ||
1042 | strlcpy(dev->ifalias, alias, len+1); | |
1043 | return len; | |
1044 | } | |
1045 | ||
1046 | ||
d8a33ac4 | 1047 | /** |
3041a069 | 1048 | * netdev_features_change - device changes features |
d8a33ac4 SH |
1049 | * @dev: device to cause notification |
1050 | * | |
1051 | * Called to indicate a device has changed features. | |
1052 | */ | |
1053 | void netdev_features_change(struct net_device *dev) | |
1054 | { | |
056925ab | 1055 | call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev); |
d8a33ac4 SH |
1056 | } |
1057 | EXPORT_SYMBOL(netdev_features_change); | |
1058 | ||
1da177e4 LT |
1059 | /** |
1060 | * netdev_state_change - device changes state | |
1061 | * @dev: device to cause notification | |
1062 | * | |
1063 | * Called to indicate a device has changed state. This function calls | |
1064 | * the notifier chains for netdev_chain and sends a NEWLINK message | |
1065 | * to the routing socket. | |
1066 | */ | |
1067 | void netdev_state_change(struct net_device *dev) | |
1068 | { | |
1069 | if (dev->flags & IFF_UP) { | |
056925ab | 1070 | call_netdevice_notifiers(NETDEV_CHANGE, dev); |
1da177e4 LT |
1071 | rtmsg_ifinfo(RTM_NEWLINK, dev, 0); |
1072 | } | |
1073 | } | |
d1b19dff | 1074 | EXPORT_SYMBOL(netdev_state_change); |
1da177e4 | 1075 | |
75c78500 | 1076 | void netdev_bonding_change(struct net_device *dev, unsigned long event) |
c1da4ac7 | 1077 | { |
75c78500 | 1078 | call_netdevice_notifiers(event, dev); |
c1da4ac7 OG |
1079 | } |
1080 | EXPORT_SYMBOL(netdev_bonding_change); | |
1081 | ||
1da177e4 LT |
1082 | /** |
1083 | * dev_load - load a network module | |
c4ea43c5 | 1084 | * @net: the applicable net namespace |
1da177e4 LT |
1085 | * @name: name of interface |
1086 | * | |
1087 | * If a network interface is not present and the process has suitable | |
1088 | * privileges this function loads the module. If module loading is not | |
1089 | * available in this kernel then it becomes a nop. | |
1090 | */ | |
1091 | ||
881d966b | 1092 | void dev_load(struct net *net, const char *name) |
1da177e4 | 1093 | { |
4ec93edb | 1094 | struct net_device *dev; |
1da177e4 | 1095 | |
72c9528b ED |
1096 | rcu_read_lock(); |
1097 | dev = dev_get_by_name_rcu(net, name); | |
1098 | rcu_read_unlock(); | |
1da177e4 | 1099 | |
a8f80e8f | 1100 | if (!dev && capable(CAP_NET_ADMIN)) |
1da177e4 LT |
1101 | request_module("%s", name); |
1102 | } | |
d1b19dff | 1103 | EXPORT_SYMBOL(dev_load); |
1da177e4 | 1104 | |
1da177e4 LT |
1105 | /** |
1106 | * dev_open - prepare an interface for use. | |
1107 | * @dev: device to open | |
1108 | * | |
1109 | * Takes a device from down to up state. The device's private open | |
1110 | * function is invoked and then the multicast lists are loaded. Finally | |
1111 | * the device is moved into the up state and a %NETDEV_UP message is | |
1112 | * sent to the netdev notifier chain. | |
1113 | * | |
1114 | * Calling this function on an active interface is a nop. On a failure | |
1115 | * a negative errno code is returned. | |
1116 | */ | |
1117 | int dev_open(struct net_device *dev) | |
1118 | { | |
d314774c | 1119 | const struct net_device_ops *ops = dev->netdev_ops; |
3b8bcfd5 | 1120 | int ret; |
1da177e4 | 1121 | |
e46b66bc BH |
1122 | ASSERT_RTNL(); |
1123 | ||
1da177e4 LT |
1124 | /* |
1125 | * Is it already up? | |
1126 | */ | |
1127 | ||
1128 | if (dev->flags & IFF_UP) | |
1129 | return 0; | |
1130 | ||
1131 | /* | |
1132 | * Is it even present? | |
1133 | */ | |
1134 | if (!netif_device_present(dev)) | |
1135 | return -ENODEV; | |
1136 | ||
3b8bcfd5 JB |
1137 | ret = call_netdevice_notifiers(NETDEV_PRE_UP, dev); |
1138 | ret = notifier_to_errno(ret); | |
1139 | if (ret) | |
1140 | return ret; | |
1141 | ||
1da177e4 LT |
1142 | /* |
1143 | * Call device private open method | |
1144 | */ | |
1145 | set_bit(__LINK_STATE_START, &dev->state); | |
bada339b | 1146 | |
d314774c SH |
1147 | if (ops->ndo_validate_addr) |
1148 | ret = ops->ndo_validate_addr(dev); | |
bada339b | 1149 | |
d314774c SH |
1150 | if (!ret && ops->ndo_open) |
1151 | ret = ops->ndo_open(dev); | |
1da177e4 | 1152 | |
4ec93edb | 1153 | /* |
1da177e4 LT |
1154 | * If it went open OK then: |
1155 | */ | |
1156 | ||
bada339b JG |
1157 | if (ret) |
1158 | clear_bit(__LINK_STATE_START, &dev->state); | |
1159 | else { | |
1da177e4 LT |
1160 | /* |
1161 | * Set the flags. | |
1162 | */ | |
1163 | dev->flags |= IFF_UP; | |
1164 | ||
649274d9 DW |
1165 | /* |
1166 | * Enable NET_DMA | |
1167 | */ | |
b4bd07c2 | 1168 | net_dmaengine_get(); |
649274d9 | 1169 | |
1da177e4 LT |
1170 | /* |
1171 | * Initialize multicasting status | |
1172 | */ | |
4417da66 | 1173 | dev_set_rx_mode(dev); |
1da177e4 LT |
1174 | |
1175 | /* | |
1176 | * Wakeup transmit queue engine | |
1177 | */ | |
1178 | dev_activate(dev); | |
1179 | ||
1180 | /* | |
1181 | * ... and announce new interface. | |
1182 | */ | |
056925ab | 1183 | call_netdevice_notifiers(NETDEV_UP, dev); |
1da177e4 | 1184 | } |
bada339b | 1185 | |
1da177e4 LT |
1186 | return ret; |
1187 | } | |
d1b19dff | 1188 | EXPORT_SYMBOL(dev_open); |
1da177e4 LT |
1189 | |
1190 | /** | |
1191 | * dev_close - shutdown an interface. | |
1192 | * @dev: device to shutdown | |
1193 | * | |
1194 | * This function moves an active device into down state. A | |
1195 | * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device | |
1196 | * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier | |
1197 | * chain. | |
1198 | */ | |
1199 | int dev_close(struct net_device *dev) | |
1200 | { | |
d314774c | 1201 | const struct net_device_ops *ops = dev->netdev_ops; |
e46b66bc BH |
1202 | ASSERT_RTNL(); |
1203 | ||
9d5010db DM |
1204 | might_sleep(); |
1205 | ||
1da177e4 LT |
1206 | if (!(dev->flags & IFF_UP)) |
1207 | return 0; | |
1208 | ||
1209 | /* | |
1210 | * Tell people we are going down, so that they can | |
1211 | * prepare to death, when device is still operating. | |
1212 | */ | |
056925ab | 1213 | call_netdevice_notifiers(NETDEV_GOING_DOWN, dev); |
1da177e4 | 1214 | |
1da177e4 LT |
1215 | clear_bit(__LINK_STATE_START, &dev->state); |
1216 | ||
1217 | /* Synchronize to scheduled poll. We cannot touch poll list, | |
bea3348e SH |
1218 | * it can be even on different cpu. So just clear netif_running(). |
1219 | * | |
1220 | * dev->stop() will invoke napi_disable() on all of it's | |
1221 | * napi_struct instances on this device. | |
1222 | */ | |
1da177e4 | 1223 | smp_mb__after_clear_bit(); /* Commit netif_running(). */ |
1da177e4 | 1224 | |
d8b2a4d2 ML |
1225 | dev_deactivate(dev); |
1226 | ||
1da177e4 LT |
1227 | /* |
1228 | * Call the device specific close. This cannot fail. | |
1229 | * Only if device is UP | |
1230 | * | |
1231 | * We allow it to be called even after a DETACH hot-plug | |
1232 | * event. | |
1233 | */ | |
d314774c SH |
1234 | if (ops->ndo_stop) |
1235 | ops->ndo_stop(dev); | |
1da177e4 LT |
1236 | |
1237 | /* | |
1238 | * Device is now down. | |
1239 | */ | |
1240 | ||
1241 | dev->flags &= ~IFF_UP; | |
1242 | ||
1243 | /* | |
1244 | * Tell people we are down | |
1245 | */ | |
056925ab | 1246 | call_netdevice_notifiers(NETDEV_DOWN, dev); |
1da177e4 | 1247 | |
649274d9 DW |
1248 | /* |
1249 | * Shutdown NET_DMA | |
1250 | */ | |
b4bd07c2 | 1251 | net_dmaengine_put(); |
649274d9 | 1252 | |
1da177e4 LT |
1253 | return 0; |
1254 | } | |
d1b19dff | 1255 | EXPORT_SYMBOL(dev_close); |
1da177e4 LT |
1256 | |
1257 | ||
0187bdfb BH |
1258 | /** |
1259 | * dev_disable_lro - disable Large Receive Offload on a device | |
1260 | * @dev: device | |
1261 | * | |
1262 | * Disable Large Receive Offload (LRO) on a net device. Must be | |
1263 | * called under RTNL. This is needed if received packets may be | |
1264 | * forwarded to another interface. | |
1265 | */ | |
1266 | void dev_disable_lro(struct net_device *dev) | |
1267 | { | |
1268 | if (dev->ethtool_ops && dev->ethtool_ops->get_flags && | |
1269 | dev->ethtool_ops->set_flags) { | |
1270 | u32 flags = dev->ethtool_ops->get_flags(dev); | |
1271 | if (flags & ETH_FLAG_LRO) { | |
1272 | flags &= ~ETH_FLAG_LRO; | |
1273 | dev->ethtool_ops->set_flags(dev, flags); | |
1274 | } | |
1275 | } | |
1276 | WARN_ON(dev->features & NETIF_F_LRO); | |
1277 | } | |
1278 | EXPORT_SYMBOL(dev_disable_lro); | |
1279 | ||
1280 | ||
881d966b EB |
1281 | static int dev_boot_phase = 1; |
1282 | ||
1da177e4 LT |
1283 | /* |
1284 | * Device change register/unregister. These are not inline or static | |
1285 | * as we export them to the world. | |
1286 | */ | |
1287 | ||
1288 | /** | |
1289 | * register_netdevice_notifier - register a network notifier block | |
1290 | * @nb: notifier | |
1291 | * | |
1292 | * Register a notifier to be called when network device events occur. | |
1293 | * The notifier passed is linked into the kernel structures and must | |
1294 | * not be reused until it has been unregistered. A negative errno code | |
1295 | * is returned on a failure. | |
1296 | * | |
1297 | * When registered all registration and up events are replayed | |
4ec93edb | 1298 | * to the new notifier to allow device to have a race free |
1da177e4 LT |
1299 | * view of the network device list. |
1300 | */ | |
1301 | ||
1302 | int register_netdevice_notifier(struct notifier_block *nb) | |
1303 | { | |
1304 | struct net_device *dev; | |
fcc5a03a | 1305 | struct net_device *last; |
881d966b | 1306 | struct net *net; |
1da177e4 LT |
1307 | int err; |
1308 | ||
1309 | rtnl_lock(); | |
f07d5b94 | 1310 | err = raw_notifier_chain_register(&netdev_chain, nb); |
fcc5a03a HX |
1311 | if (err) |
1312 | goto unlock; | |
881d966b EB |
1313 | if (dev_boot_phase) |
1314 | goto unlock; | |
1315 | for_each_net(net) { | |
1316 | for_each_netdev(net, dev) { | |
1317 | err = nb->notifier_call(nb, NETDEV_REGISTER, dev); | |
1318 | err = notifier_to_errno(err); | |
1319 | if (err) | |
1320 | goto rollback; | |
1321 | ||
1322 | if (!(dev->flags & IFF_UP)) | |
1323 | continue; | |
1da177e4 | 1324 | |
881d966b EB |
1325 | nb->notifier_call(nb, NETDEV_UP, dev); |
1326 | } | |
1da177e4 | 1327 | } |
fcc5a03a HX |
1328 | |
1329 | unlock: | |
1da177e4 LT |
1330 | rtnl_unlock(); |
1331 | return err; | |
fcc5a03a HX |
1332 | |
1333 | rollback: | |
1334 | last = dev; | |
881d966b EB |
1335 | for_each_net(net) { |
1336 | for_each_netdev(net, dev) { | |
1337 | if (dev == last) | |
1338 | break; | |
fcc5a03a | 1339 | |
881d966b EB |
1340 | if (dev->flags & IFF_UP) { |
1341 | nb->notifier_call(nb, NETDEV_GOING_DOWN, dev); | |
1342 | nb->notifier_call(nb, NETDEV_DOWN, dev); | |
1343 | } | |
1344 | nb->notifier_call(nb, NETDEV_UNREGISTER, dev); | |
fcc5a03a | 1345 | } |
fcc5a03a | 1346 | } |
c67625a1 PE |
1347 | |
1348 | raw_notifier_chain_unregister(&netdev_chain, nb); | |
fcc5a03a | 1349 | goto unlock; |
1da177e4 | 1350 | } |
d1b19dff | 1351 | EXPORT_SYMBOL(register_netdevice_notifier); |
1da177e4 LT |
1352 | |
1353 | /** | |
1354 | * unregister_netdevice_notifier - unregister a network notifier block | |
1355 | * @nb: notifier | |
1356 | * | |
1357 | * Unregister a notifier previously registered by | |
1358 | * register_netdevice_notifier(). The notifier is unlinked into the | |
1359 | * kernel structures and may then be reused. A negative errno code | |
1360 | * is returned on a failure. | |
1361 | */ | |
1362 | ||
1363 | int unregister_netdevice_notifier(struct notifier_block *nb) | |
1364 | { | |
9f514950 HX |
1365 | int err; |
1366 | ||
1367 | rtnl_lock(); | |
f07d5b94 | 1368 | err = raw_notifier_chain_unregister(&netdev_chain, nb); |
9f514950 HX |
1369 | rtnl_unlock(); |
1370 | return err; | |
1da177e4 | 1371 | } |
d1b19dff | 1372 | EXPORT_SYMBOL(unregister_netdevice_notifier); |
1da177e4 LT |
1373 | |
1374 | /** | |
1375 | * call_netdevice_notifiers - call all network notifier blocks | |
1376 | * @val: value passed unmodified to notifier function | |
c4ea43c5 | 1377 | * @dev: net_device pointer passed unmodified to notifier function |
1da177e4 LT |
1378 | * |
1379 | * Call all network notifier blocks. Parameters and return value | |
f07d5b94 | 1380 | * are as for raw_notifier_call_chain(). |
1da177e4 LT |
1381 | */ |
1382 | ||
ad7379d4 | 1383 | int call_netdevice_notifiers(unsigned long val, struct net_device *dev) |
1da177e4 | 1384 | { |
ad7379d4 | 1385 | return raw_notifier_call_chain(&netdev_chain, val, dev); |
1da177e4 LT |
1386 | } |
1387 | ||
1388 | /* When > 0 there are consumers of rx skb time stamps */ | |
1389 | static atomic_t netstamp_needed = ATOMIC_INIT(0); | |
1390 | ||
1391 | void net_enable_timestamp(void) | |
1392 | { | |
1393 | atomic_inc(&netstamp_needed); | |
1394 | } | |
d1b19dff | 1395 | EXPORT_SYMBOL(net_enable_timestamp); |
1da177e4 LT |
1396 | |
1397 | void net_disable_timestamp(void) | |
1398 | { | |
1399 | atomic_dec(&netstamp_needed); | |
1400 | } | |
d1b19dff | 1401 | EXPORT_SYMBOL(net_disable_timestamp); |
1da177e4 | 1402 | |
a61bbcf2 | 1403 | static inline void net_timestamp(struct sk_buff *skb) |
1da177e4 LT |
1404 | { |
1405 | if (atomic_read(&netstamp_needed)) | |
a61bbcf2 | 1406 | __net_timestamp(skb); |
b7aa0bf7 ED |
1407 | else |
1408 | skb->tstamp.tv64 = 0; | |
1da177e4 LT |
1409 | } |
1410 | ||
1411 | /* | |
1412 | * Support routine. Sends outgoing frames to any network | |
1413 | * taps currently in use. | |
1414 | */ | |
1415 | ||
f6a78bfc | 1416 | static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev) |
1da177e4 LT |
1417 | { |
1418 | struct packet_type *ptype; | |
a61bbcf2 | 1419 | |
8caf1539 JP |
1420 | #ifdef CONFIG_NET_CLS_ACT |
1421 | if (!(skb->tstamp.tv64 && (G_TC_FROM(skb->tc_verd) & AT_INGRESS))) | |
1422 | net_timestamp(skb); | |
1423 | #else | |
a61bbcf2 | 1424 | net_timestamp(skb); |
8caf1539 | 1425 | #endif |
1da177e4 LT |
1426 | |
1427 | rcu_read_lock(); | |
1428 | list_for_each_entry_rcu(ptype, &ptype_all, list) { | |
1429 | /* Never send packets back to the socket | |
1430 | * they originated from - MvS ([email protected]) | |
1431 | */ | |
1432 | if ((ptype->dev == dev || !ptype->dev) && | |
1433 | (ptype->af_packet_priv == NULL || | |
1434 | (struct sock *)ptype->af_packet_priv != skb->sk)) { | |
d1b19dff | 1435 | struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC); |
1da177e4 LT |
1436 | if (!skb2) |
1437 | break; | |
1438 | ||
1439 | /* skb->nh should be correctly | |
1440 | set by sender, so that the second statement is | |
1441 | just protection against buggy protocols. | |
1442 | */ | |
459a98ed | 1443 | skb_reset_mac_header(skb2); |
1da177e4 | 1444 | |
d56f90a7 | 1445 | if (skb_network_header(skb2) < skb2->data || |
27a884dc | 1446 | skb2->network_header > skb2->tail) { |
1da177e4 LT |
1447 | if (net_ratelimit()) |
1448 | printk(KERN_CRIT "protocol %04x is " | |
1449 | "buggy, dev %s\n", | |
1450 | skb2->protocol, dev->name); | |
c1d2bbe1 | 1451 | skb_reset_network_header(skb2); |
1da177e4 LT |
1452 | } |
1453 | ||
b0e380b1 | 1454 | skb2->transport_header = skb2->network_header; |
1da177e4 | 1455 | skb2->pkt_type = PACKET_OUTGOING; |
f2ccd8fa | 1456 | ptype->func(skb2, skb->dev, ptype, skb->dev); |
1da177e4 LT |
1457 | } |
1458 | } | |
1459 | rcu_read_unlock(); | |
1460 | } | |
1461 | ||
56079431 | 1462 | |
def82a1d | 1463 | static inline void __netif_reschedule(struct Qdisc *q) |
56079431 | 1464 | { |
def82a1d JP |
1465 | struct softnet_data *sd; |
1466 | unsigned long flags; | |
56079431 | 1467 | |
def82a1d JP |
1468 | local_irq_save(flags); |
1469 | sd = &__get_cpu_var(softnet_data); | |
1470 | q->next_sched = sd->output_queue; | |
1471 | sd->output_queue = q; | |
1472 | raise_softirq_irqoff(NET_TX_SOFTIRQ); | |
1473 | local_irq_restore(flags); | |
1474 | } | |
1475 | ||
1476 | void __netif_schedule(struct Qdisc *q) | |
1477 | { | |
1478 | if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state)) | |
1479 | __netif_reschedule(q); | |
56079431 DV |
1480 | } |
1481 | EXPORT_SYMBOL(__netif_schedule); | |
1482 | ||
bea3348e | 1483 | void dev_kfree_skb_irq(struct sk_buff *skb) |
56079431 | 1484 | { |
bea3348e SH |
1485 | if (atomic_dec_and_test(&skb->users)) { |
1486 | struct softnet_data *sd; | |
1487 | unsigned long flags; | |
56079431 | 1488 | |
bea3348e SH |
1489 | local_irq_save(flags); |
1490 | sd = &__get_cpu_var(softnet_data); | |
1491 | skb->next = sd->completion_queue; | |
1492 | sd->completion_queue = skb; | |
1493 | raise_softirq_irqoff(NET_TX_SOFTIRQ); | |
1494 | local_irq_restore(flags); | |
1495 | } | |
56079431 | 1496 | } |
bea3348e | 1497 | EXPORT_SYMBOL(dev_kfree_skb_irq); |
56079431 DV |
1498 | |
1499 | void dev_kfree_skb_any(struct sk_buff *skb) | |
1500 | { | |
1501 | if (in_irq() || irqs_disabled()) | |
1502 | dev_kfree_skb_irq(skb); | |
1503 | else | |
1504 | dev_kfree_skb(skb); | |
1505 | } | |
1506 | EXPORT_SYMBOL(dev_kfree_skb_any); | |
1507 | ||
1508 | ||
bea3348e SH |
1509 | /** |
1510 | * netif_device_detach - mark device as removed | |
1511 | * @dev: network device | |
1512 | * | |
1513 | * Mark device as removed from system and therefore no longer available. | |
1514 | */ | |
56079431 DV |
1515 | void netif_device_detach(struct net_device *dev) |
1516 | { | |
1517 | if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) && | |
1518 | netif_running(dev)) { | |
d543103a | 1519 | netif_tx_stop_all_queues(dev); |
56079431 DV |
1520 | } |
1521 | } | |
1522 | EXPORT_SYMBOL(netif_device_detach); | |
1523 | ||
bea3348e SH |
1524 | /** |
1525 | * netif_device_attach - mark device as attached | |
1526 | * @dev: network device | |
1527 | * | |
1528 | * Mark device as attached from system and restart if needed. | |
1529 | */ | |
56079431 DV |
1530 | void netif_device_attach(struct net_device *dev) |
1531 | { | |
1532 | if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) && | |
1533 | netif_running(dev)) { | |
d543103a | 1534 | netif_tx_wake_all_queues(dev); |
4ec93edb | 1535 | __netdev_watchdog_up(dev); |
56079431 DV |
1536 | } |
1537 | } | |
1538 | EXPORT_SYMBOL(netif_device_attach); | |
1539 | ||
6de329e2 BH |
1540 | static bool can_checksum_protocol(unsigned long features, __be16 protocol) |
1541 | { | |
1542 | return ((features & NETIF_F_GEN_CSUM) || | |
1543 | ((features & NETIF_F_IP_CSUM) && | |
1544 | protocol == htons(ETH_P_IP)) || | |
1545 | ((features & NETIF_F_IPV6_CSUM) && | |
1c8dbcf6 YZ |
1546 | protocol == htons(ETH_P_IPV6)) || |
1547 | ((features & NETIF_F_FCOE_CRC) && | |
1548 | protocol == htons(ETH_P_FCOE))); | |
6de329e2 BH |
1549 | } |
1550 | ||
1551 | static bool dev_can_checksum(struct net_device *dev, struct sk_buff *skb) | |
1552 | { | |
1553 | if (can_checksum_protocol(dev->features, skb->protocol)) | |
1554 | return true; | |
1555 | ||
1556 | if (skb->protocol == htons(ETH_P_8021Q)) { | |
1557 | struct vlan_ethhdr *veh = (struct vlan_ethhdr *)skb->data; | |
1558 | if (can_checksum_protocol(dev->features & dev->vlan_features, | |
1559 | veh->h_vlan_encapsulated_proto)) | |
1560 | return true; | |
1561 | } | |
1562 | ||
1563 | return false; | |
1564 | } | |
56079431 | 1565 | |
1da177e4 LT |
1566 | /* |
1567 | * Invalidate hardware checksum when packet is to be mangled, and | |
1568 | * complete checksum manually on outgoing path. | |
1569 | */ | |
84fa7933 | 1570 | int skb_checksum_help(struct sk_buff *skb) |
1da177e4 | 1571 | { |
d3bc23e7 | 1572 | __wsum csum; |
663ead3b | 1573 | int ret = 0, offset; |
1da177e4 | 1574 | |
84fa7933 | 1575 | if (skb->ip_summed == CHECKSUM_COMPLETE) |
a430a43d HX |
1576 | goto out_set_summed; |
1577 | ||
1578 | if (unlikely(skb_shinfo(skb)->gso_size)) { | |
a430a43d HX |
1579 | /* Let GSO fix up the checksum. */ |
1580 | goto out_set_summed; | |
1da177e4 LT |
1581 | } |
1582 | ||
a030847e HX |
1583 | offset = skb->csum_start - skb_headroom(skb); |
1584 | BUG_ON(offset >= skb_headlen(skb)); | |
1585 | csum = skb_checksum(skb, offset, skb->len - offset, 0); | |
1586 | ||
1587 | offset += skb->csum_offset; | |
1588 | BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb)); | |
1589 | ||
1590 | if (skb_cloned(skb) && | |
1591 | !skb_clone_writable(skb, offset + sizeof(__sum16))) { | |
1da177e4 LT |
1592 | ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC); |
1593 | if (ret) | |
1594 | goto out; | |
1595 | } | |
1596 | ||
a030847e | 1597 | *(__sum16 *)(skb->data + offset) = csum_fold(csum); |
a430a43d | 1598 | out_set_summed: |
1da177e4 | 1599 | skb->ip_summed = CHECKSUM_NONE; |
4ec93edb | 1600 | out: |
1da177e4 LT |
1601 | return ret; |
1602 | } | |
d1b19dff | 1603 | EXPORT_SYMBOL(skb_checksum_help); |
1da177e4 | 1604 | |
f6a78bfc HX |
1605 | /** |
1606 | * skb_gso_segment - Perform segmentation on skb. | |
1607 | * @skb: buffer to segment | |
576a30eb | 1608 | * @features: features for the output path (see dev->features) |
f6a78bfc HX |
1609 | * |
1610 | * This function segments the given skb and returns a list of segments. | |
576a30eb HX |
1611 | * |
1612 | * It may return NULL if the skb requires no segmentation. This is | |
1613 | * only possible when GSO is used for verifying header integrity. | |
f6a78bfc | 1614 | */ |
576a30eb | 1615 | struct sk_buff *skb_gso_segment(struct sk_buff *skb, int features) |
f6a78bfc HX |
1616 | { |
1617 | struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT); | |
1618 | struct packet_type *ptype; | |
252e3346 | 1619 | __be16 type = skb->protocol; |
a430a43d | 1620 | int err; |
f6a78bfc | 1621 | |
459a98ed | 1622 | skb_reset_mac_header(skb); |
b0e380b1 | 1623 | skb->mac_len = skb->network_header - skb->mac_header; |
f6a78bfc HX |
1624 | __skb_pull(skb, skb->mac_len); |
1625 | ||
67fd1a73 HX |
1626 | if (unlikely(skb->ip_summed != CHECKSUM_PARTIAL)) { |
1627 | struct net_device *dev = skb->dev; | |
1628 | struct ethtool_drvinfo info = {}; | |
1629 | ||
1630 | if (dev && dev->ethtool_ops && dev->ethtool_ops->get_drvinfo) | |
1631 | dev->ethtool_ops->get_drvinfo(dev, &info); | |
1632 | ||
1633 | WARN(1, "%s: caps=(0x%lx, 0x%lx) len=%d data_len=%d " | |
1634 | "ip_summed=%d", | |
1635 | info.driver, dev ? dev->features : 0L, | |
1636 | skb->sk ? skb->sk->sk_route_caps : 0L, | |
1637 | skb->len, skb->data_len, skb->ip_summed); | |
1638 | ||
a430a43d HX |
1639 | if (skb_header_cloned(skb) && |
1640 | (err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))) | |
1641 | return ERR_PTR(err); | |
1642 | } | |
1643 | ||
f6a78bfc | 1644 | rcu_read_lock(); |
82d8a867 PE |
1645 | list_for_each_entry_rcu(ptype, |
1646 | &ptype_base[ntohs(type) & PTYPE_HASH_MASK], list) { | |
f6a78bfc | 1647 | if (ptype->type == type && !ptype->dev && ptype->gso_segment) { |
84fa7933 | 1648 | if (unlikely(skb->ip_summed != CHECKSUM_PARTIAL)) { |
a430a43d HX |
1649 | err = ptype->gso_send_check(skb); |
1650 | segs = ERR_PTR(err); | |
1651 | if (err || skb_gso_ok(skb, features)) | |
1652 | break; | |
d56f90a7 ACM |
1653 | __skb_push(skb, (skb->data - |
1654 | skb_network_header(skb))); | |
a430a43d | 1655 | } |
576a30eb | 1656 | segs = ptype->gso_segment(skb, features); |
f6a78bfc HX |
1657 | break; |
1658 | } | |
1659 | } | |
1660 | rcu_read_unlock(); | |
1661 | ||
98e399f8 | 1662 | __skb_push(skb, skb->data - skb_mac_header(skb)); |
576a30eb | 1663 | |
f6a78bfc HX |
1664 | return segs; |
1665 | } | |
f6a78bfc HX |
1666 | EXPORT_SYMBOL(skb_gso_segment); |
1667 | ||
fb286bb2 HX |
1668 | /* Take action when hardware reception checksum errors are detected. */ |
1669 | #ifdef CONFIG_BUG | |
1670 | void netdev_rx_csum_fault(struct net_device *dev) | |
1671 | { | |
1672 | if (net_ratelimit()) { | |
4ec93edb | 1673 | printk(KERN_ERR "%s: hw csum failure.\n", |
246a4212 | 1674 | dev ? dev->name : "<unknown>"); |
fb286bb2 HX |
1675 | dump_stack(); |
1676 | } | |
1677 | } | |
1678 | EXPORT_SYMBOL(netdev_rx_csum_fault); | |
1679 | #endif | |
1680 | ||
1da177e4 LT |
1681 | /* Actually, we should eliminate this check as soon as we know, that: |
1682 | * 1. IOMMU is present and allows to map all the memory. | |
1683 | * 2. No high memory really exists on this machine. | |
1684 | */ | |
1685 | ||
1686 | static inline int illegal_highdma(struct net_device *dev, struct sk_buff *skb) | |
1687 | { | |
3d3a8533 | 1688 | #ifdef CONFIG_HIGHMEM |
1da177e4 LT |
1689 | int i; |
1690 | ||
1691 | if (dev->features & NETIF_F_HIGHDMA) | |
1692 | return 0; | |
1693 | ||
1694 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) | |
1695 | if (PageHighMem(skb_shinfo(skb)->frags[i].page)) | |
1696 | return 1; | |
1697 | ||
3d3a8533 | 1698 | #endif |
1da177e4 LT |
1699 | return 0; |
1700 | } | |
1da177e4 | 1701 | |
f6a78bfc HX |
1702 | struct dev_gso_cb { |
1703 | void (*destructor)(struct sk_buff *skb); | |
1704 | }; | |
1705 | ||
1706 | #define DEV_GSO_CB(skb) ((struct dev_gso_cb *)(skb)->cb) | |
1707 | ||
1708 | static void dev_gso_skb_destructor(struct sk_buff *skb) | |
1709 | { | |
1710 | struct dev_gso_cb *cb; | |
1711 | ||
1712 | do { | |
1713 | struct sk_buff *nskb = skb->next; | |
1714 | ||
1715 | skb->next = nskb->next; | |
1716 | nskb->next = NULL; | |
1717 | kfree_skb(nskb); | |
1718 | } while (skb->next); | |
1719 | ||
1720 | cb = DEV_GSO_CB(skb); | |
1721 | if (cb->destructor) | |
1722 | cb->destructor(skb); | |
1723 | } | |
1724 | ||
1725 | /** | |
1726 | * dev_gso_segment - Perform emulated hardware segmentation on skb. | |
1727 | * @skb: buffer to segment | |
1728 | * | |
1729 | * This function segments the given skb and stores the list of segments | |
1730 | * in skb->next. | |
1731 | */ | |
1732 | static int dev_gso_segment(struct sk_buff *skb) | |
1733 | { | |
1734 | struct net_device *dev = skb->dev; | |
1735 | struct sk_buff *segs; | |
576a30eb HX |
1736 | int features = dev->features & ~(illegal_highdma(dev, skb) ? |
1737 | NETIF_F_SG : 0); | |
1738 | ||
1739 | segs = skb_gso_segment(skb, features); | |
1740 | ||
1741 | /* Verifying header integrity only. */ | |
1742 | if (!segs) | |
1743 | return 0; | |
f6a78bfc | 1744 | |
801678c5 | 1745 | if (IS_ERR(segs)) |
f6a78bfc HX |
1746 | return PTR_ERR(segs); |
1747 | ||
1748 | skb->next = segs; | |
1749 | DEV_GSO_CB(skb)->destructor = skb->destructor; | |
1750 | skb->destructor = dev_gso_skb_destructor; | |
1751 | ||
1752 | return 0; | |
1753 | } | |
1754 | ||
fd2ea0a7 DM |
1755 | int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev, |
1756 | struct netdev_queue *txq) | |
f6a78bfc | 1757 | { |
00829823 | 1758 | const struct net_device_ops *ops = dev->netdev_ops; |
ac45f602 | 1759 | int rc; |
00829823 | 1760 | |
f6a78bfc | 1761 | if (likely(!skb->next)) { |
9be9a6b9 | 1762 | if (!list_empty(&ptype_all)) |
f6a78bfc HX |
1763 | dev_queue_xmit_nit(skb, dev); |
1764 | ||
576a30eb HX |
1765 | if (netif_needs_gso(dev, skb)) { |
1766 | if (unlikely(dev_gso_segment(skb))) | |
1767 | goto out_kfree_skb; | |
1768 | if (skb->next) | |
1769 | goto gso; | |
1770 | } | |
f6a78bfc | 1771 | |
93f154b5 ED |
1772 | /* |
1773 | * If device doesnt need skb->dst, release it right now while | |
1774 | * its hot in this cpu cache | |
1775 | */ | |
adf30907 ED |
1776 | if (dev->priv_flags & IFF_XMIT_DST_RELEASE) |
1777 | skb_dst_drop(skb); | |
1778 | ||
ac45f602 | 1779 | rc = ops->ndo_start_xmit(skb, dev); |
ec634fe3 | 1780 | if (rc == NETDEV_TX_OK) |
08baf561 | 1781 | txq_trans_update(txq); |
ac45f602 PO |
1782 | /* |
1783 | * TODO: if skb_orphan() was called by | |
1784 | * dev->hard_start_xmit() (for example, the unmodified | |
1785 | * igb driver does that; bnx2 doesn't), then | |
1786 | * skb_tx_software_timestamp() will be unable to send | |
1787 | * back the time stamp. | |
1788 | * | |
1789 | * How can this be prevented? Always create another | |
1790 | * reference to the socket before calling | |
1791 | * dev->hard_start_xmit()? Prevent that skb_orphan() | |
1792 | * does anything in dev->hard_start_xmit() by clearing | |
1793 | * the skb destructor before the call and restoring it | |
1794 | * afterwards, then doing the skb_orphan() ourselves? | |
1795 | */ | |
ac45f602 | 1796 | return rc; |
f6a78bfc HX |
1797 | } |
1798 | ||
576a30eb | 1799 | gso: |
f6a78bfc HX |
1800 | do { |
1801 | struct sk_buff *nskb = skb->next; | |
f6a78bfc HX |
1802 | |
1803 | skb->next = nskb->next; | |
1804 | nskb->next = NULL; | |
00829823 | 1805 | rc = ops->ndo_start_xmit(nskb, dev); |
ec634fe3 | 1806 | if (unlikely(rc != NETDEV_TX_OK)) { |
f54d9e8d | 1807 | nskb->next = skb->next; |
f6a78bfc HX |
1808 | skb->next = nskb; |
1809 | return rc; | |
1810 | } | |
08baf561 | 1811 | txq_trans_update(txq); |
fd2ea0a7 | 1812 | if (unlikely(netif_tx_queue_stopped(txq) && skb->next)) |
f54d9e8d | 1813 | return NETDEV_TX_BUSY; |
f6a78bfc | 1814 | } while (skb->next); |
4ec93edb | 1815 | |
f6a78bfc HX |
1816 | skb->destructor = DEV_GSO_CB(skb)->destructor; |
1817 | ||
1818 | out_kfree_skb: | |
1819 | kfree_skb(skb); | |
ec634fe3 | 1820 | return NETDEV_TX_OK; |
f6a78bfc HX |
1821 | } |
1822 | ||
7019298a | 1823 | static u32 skb_tx_hashrnd; |
b6b2fed1 | 1824 | |
9247744e | 1825 | u16 skb_tx_hash(const struct net_device *dev, const struct sk_buff *skb) |
8f0f2223 | 1826 | { |
7019298a | 1827 | u32 hash; |
b6b2fed1 | 1828 | |
513de11b DM |
1829 | if (skb_rx_queue_recorded(skb)) { |
1830 | hash = skb_get_rx_queue(skb); | |
d1b19dff | 1831 | while (unlikely(hash >= dev->real_num_tx_queues)) |
513de11b DM |
1832 | hash -= dev->real_num_tx_queues; |
1833 | return hash; | |
1834 | } | |
ec581f6a ED |
1835 | |
1836 | if (skb->sk && skb->sk->sk_hash) | |
7019298a | 1837 | hash = skb->sk->sk_hash; |
ec581f6a | 1838 | else |
7019298a | 1839 | hash = skb->protocol; |
d5a9e24a | 1840 | |
7019298a | 1841 | hash = jhash_1word(hash, skb_tx_hashrnd); |
b6b2fed1 DM |
1842 | |
1843 | return (u16) (((u64) hash * dev->real_num_tx_queues) >> 32); | |
8f0f2223 | 1844 | } |
9247744e | 1845 | EXPORT_SYMBOL(skb_tx_hash); |
8f0f2223 | 1846 | |
e8a0464c DM |
1847 | static struct netdev_queue *dev_pick_tx(struct net_device *dev, |
1848 | struct sk_buff *skb) | |
1849 | { | |
a4ee3ce3 KK |
1850 | u16 queue_index; |
1851 | struct sock *sk = skb->sk; | |
1852 | ||
1853 | if (sk_tx_queue_recorded(sk)) { | |
1854 | queue_index = sk_tx_queue_get(sk); | |
1855 | } else { | |
1856 | const struct net_device_ops *ops = dev->netdev_ops; | |
1857 | ||
1858 | if (ops->ndo_select_queue) { | |
1859 | queue_index = ops->ndo_select_queue(dev, skb); | |
1860 | } else { | |
1861 | queue_index = 0; | |
1862 | if (dev->real_num_tx_queues > 1) | |
1863 | queue_index = skb_tx_hash(dev, skb); | |
fd2ea0a7 | 1864 | |
a4ee3ce3 KK |
1865 | if (sk && sk->sk_dst_cache) |
1866 | sk_tx_queue_set(sk, queue_index); | |
1867 | } | |
1868 | } | |
eae792b7 | 1869 | |
fd2ea0a7 DM |
1870 | skb_set_queue_mapping(skb, queue_index); |
1871 | return netdev_get_tx_queue(dev, queue_index); | |
e8a0464c DM |
1872 | } |
1873 | ||
bbd8a0d3 KK |
1874 | static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q, |
1875 | struct net_device *dev, | |
1876 | struct netdev_queue *txq) | |
1877 | { | |
1878 | spinlock_t *root_lock = qdisc_lock(q); | |
1879 | int rc; | |
1880 | ||
1881 | spin_lock(root_lock); | |
1882 | if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) { | |
1883 | kfree_skb(skb); | |
1884 | rc = NET_XMIT_DROP; | |
1885 | } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) && | |
1886 | !test_and_set_bit(__QDISC_STATE_RUNNING, &q->state)) { | |
1887 | /* | |
1888 | * This is a work-conserving queue; there are no old skbs | |
1889 | * waiting to be sent out; and the qdisc is not running - | |
1890 | * xmit the skb directly. | |
1891 | */ | |
1892 | __qdisc_update_bstats(q, skb->len); | |
1893 | if (sch_direct_xmit(skb, q, dev, txq, root_lock)) | |
1894 | __qdisc_run(q); | |
1895 | else | |
1896 | clear_bit(__QDISC_STATE_RUNNING, &q->state); | |
1897 | ||
1898 | rc = NET_XMIT_SUCCESS; | |
1899 | } else { | |
1900 | rc = qdisc_enqueue_root(skb, q); | |
1901 | qdisc_run(q); | |
1902 | } | |
1903 | spin_unlock(root_lock); | |
1904 | ||
1905 | return rc; | |
1906 | } | |
1907 | ||
d29f749e DJ |
1908 | /** |
1909 | * dev_queue_xmit - transmit a buffer | |
1910 | * @skb: buffer to transmit | |
1911 | * | |
1912 | * Queue a buffer for transmission to a network device. The caller must | |
1913 | * have set the device and priority and built the buffer before calling | |
1914 | * this function. The function can be called from an interrupt. | |
1915 | * | |
1916 | * A negative errno code is returned on a failure. A success does not | |
1917 | * guarantee the frame will be transmitted as it may be dropped due | |
1918 | * to congestion or traffic shaping. | |
1919 | * | |
1920 | * ----------------------------------------------------------------------------------- | |
1921 | * I notice this method can also return errors from the queue disciplines, | |
1922 | * including NET_XMIT_DROP, which is a positive value. So, errors can also | |
1923 | * be positive. | |
1924 | * | |
1925 | * Regardless of the return value, the skb is consumed, so it is currently | |
1926 | * difficult to retry a send to this method. (You can bump the ref count | |
1927 | * before sending to hold a reference for retry if you are careful.) | |
1928 | * | |
1929 | * When calling this method, interrupts MUST be enabled. This is because | |
1930 | * the BH enable code must have IRQs enabled so that it will not deadlock. | |
1931 | * --BLG | |
1932 | */ | |
1da177e4 LT |
1933 | int dev_queue_xmit(struct sk_buff *skb) |
1934 | { | |
1935 | struct net_device *dev = skb->dev; | |
dc2b4847 | 1936 | struct netdev_queue *txq; |
1da177e4 LT |
1937 | struct Qdisc *q; |
1938 | int rc = -ENOMEM; | |
1939 | ||
f6a78bfc HX |
1940 | /* GSO will handle the following emulations directly. */ |
1941 | if (netif_needs_gso(dev, skb)) | |
1942 | goto gso; | |
1943 | ||
4cf704fb | 1944 | if (skb_has_frags(skb) && |
1da177e4 | 1945 | !(dev->features & NETIF_F_FRAGLIST) && |
364c6bad | 1946 | __skb_linearize(skb)) |
1da177e4 LT |
1947 | goto out_kfree_skb; |
1948 | ||
1949 | /* Fragmented skb is linearized if device does not support SG, | |
1950 | * or if at least one of fragments is in highmem and device | |
1951 | * does not support DMA from it. | |
1952 | */ | |
1953 | if (skb_shinfo(skb)->nr_frags && | |
1954 | (!(dev->features & NETIF_F_SG) || illegal_highdma(dev, skb)) && | |
364c6bad | 1955 | __skb_linearize(skb)) |
1da177e4 LT |
1956 | goto out_kfree_skb; |
1957 | ||
1958 | /* If packet is not checksummed and device does not support | |
1959 | * checksumming for this protocol, complete checksumming here. | |
1960 | */ | |
663ead3b HX |
1961 | if (skb->ip_summed == CHECKSUM_PARTIAL) { |
1962 | skb_set_transport_header(skb, skb->csum_start - | |
1963 | skb_headroom(skb)); | |
6de329e2 BH |
1964 | if (!dev_can_checksum(dev, skb) && skb_checksum_help(skb)) |
1965 | goto out_kfree_skb; | |
663ead3b | 1966 | } |
1da177e4 | 1967 | |
f6a78bfc | 1968 | gso: |
4ec93edb YH |
1969 | /* Disable soft irqs for various locks below. Also |
1970 | * stops preemption for RCU. | |
1da177e4 | 1971 | */ |
4ec93edb | 1972 | rcu_read_lock_bh(); |
1da177e4 | 1973 | |
eae792b7 | 1974 | txq = dev_pick_tx(dev, skb); |
b0e1e646 | 1975 | q = rcu_dereference(txq->qdisc); |
37437bb2 | 1976 | |
1da177e4 | 1977 | #ifdef CONFIG_NET_CLS_ACT |
d1b19dff | 1978 | skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_EGRESS); |
1da177e4 LT |
1979 | #endif |
1980 | if (q->enqueue) { | |
bbd8a0d3 | 1981 | rc = __dev_xmit_skb(skb, q, dev, txq); |
37437bb2 | 1982 | goto out; |
1da177e4 LT |
1983 | } |
1984 | ||
1985 | /* The device has no queue. Common case for software devices: | |
1986 | loopback, all the sorts of tunnels... | |
1987 | ||
932ff279 HX |
1988 | Really, it is unlikely that netif_tx_lock protection is necessary |
1989 | here. (f.e. loopback and IP tunnels are clean ignoring statistics | |
1da177e4 LT |
1990 | counters.) |
1991 | However, it is possible, that they rely on protection | |
1992 | made by us here. | |
1993 | ||
1994 | Check this and shot the lock. It is not prone from deadlocks. | |
1995 | Either shot noqueue qdisc, it is even simpler 8) | |
1996 | */ | |
1997 | if (dev->flags & IFF_UP) { | |
1998 | int cpu = smp_processor_id(); /* ok because BHs are off */ | |
1999 | ||
c773e847 | 2000 | if (txq->xmit_lock_owner != cpu) { |
1da177e4 | 2001 | |
c773e847 | 2002 | HARD_TX_LOCK(dev, txq, cpu); |
1da177e4 | 2003 | |
fd2ea0a7 | 2004 | if (!netif_tx_queue_stopped(txq)) { |
03a9a447 | 2005 | rc = NET_XMIT_SUCCESS; |
fd2ea0a7 | 2006 | if (!dev_hard_start_xmit(skb, dev, txq)) { |
c773e847 | 2007 | HARD_TX_UNLOCK(dev, txq); |
1da177e4 LT |
2008 | goto out; |
2009 | } | |
2010 | } | |
c773e847 | 2011 | HARD_TX_UNLOCK(dev, txq); |
1da177e4 LT |
2012 | if (net_ratelimit()) |
2013 | printk(KERN_CRIT "Virtual device %s asks to " | |
2014 | "queue packet!\n", dev->name); | |
2015 | } else { | |
2016 | /* Recursion is detected! It is possible, | |
2017 | * unfortunately */ | |
2018 | if (net_ratelimit()) | |
2019 | printk(KERN_CRIT "Dead loop on virtual device " | |
2020 | "%s, fix it urgently!\n", dev->name); | |
2021 | } | |
2022 | } | |
2023 | ||
2024 | rc = -ENETDOWN; | |
d4828d85 | 2025 | rcu_read_unlock_bh(); |
1da177e4 LT |
2026 | |
2027 | out_kfree_skb: | |
2028 | kfree_skb(skb); | |
2029 | return rc; | |
2030 | out: | |
d4828d85 | 2031 | rcu_read_unlock_bh(); |
1da177e4 LT |
2032 | return rc; |
2033 | } | |
d1b19dff | 2034 | EXPORT_SYMBOL(dev_queue_xmit); |
1da177e4 LT |
2035 | |
2036 | ||
2037 | /*======================================================================= | |
2038 | Receiver routines | |
2039 | =======================================================================*/ | |
2040 | ||
6b2bedc3 SH |
2041 | int netdev_max_backlog __read_mostly = 1000; |
2042 | int netdev_budget __read_mostly = 300; | |
2043 | int weight_p __read_mostly = 64; /* old backlog weight */ | |
1da177e4 LT |
2044 | |
2045 | DEFINE_PER_CPU(struct netif_rx_stats, netdev_rx_stat) = { 0, }; | |
2046 | ||
2047 | ||
1da177e4 LT |
2048 | /** |
2049 | * netif_rx - post buffer to the network code | |
2050 | * @skb: buffer to post | |
2051 | * | |
2052 | * This function receives a packet from a device driver and queues it for | |
2053 | * the upper (protocol) levels to process. It always succeeds. The buffer | |
2054 | * may be dropped during processing for congestion control or by the | |
2055 | * protocol layers. | |
2056 | * | |
2057 | * return values: | |
2058 | * NET_RX_SUCCESS (no congestion) | |
1da177e4 LT |
2059 | * NET_RX_DROP (packet was dropped) |
2060 | * | |
2061 | */ | |
2062 | ||
2063 | int netif_rx(struct sk_buff *skb) | |
2064 | { | |
1da177e4 LT |
2065 | struct softnet_data *queue; |
2066 | unsigned long flags; | |
2067 | ||
2068 | /* if netpoll wants it, pretend we never saw it */ | |
2069 | if (netpoll_rx(skb)) | |
2070 | return NET_RX_DROP; | |
2071 | ||
b7aa0bf7 | 2072 | if (!skb->tstamp.tv64) |
a61bbcf2 | 2073 | net_timestamp(skb); |
1da177e4 LT |
2074 | |
2075 | /* | |
2076 | * The code is rearranged so that the path is the most | |
2077 | * short when CPU is congested, but is still operating. | |
2078 | */ | |
2079 | local_irq_save(flags); | |
1da177e4 LT |
2080 | queue = &__get_cpu_var(softnet_data); |
2081 | ||
2082 | __get_cpu_var(netdev_rx_stat).total++; | |
2083 | if (queue->input_pkt_queue.qlen <= netdev_max_backlog) { | |
2084 | if (queue->input_pkt_queue.qlen) { | |
1da177e4 | 2085 | enqueue: |
1da177e4 | 2086 | __skb_queue_tail(&queue->input_pkt_queue, skb); |
1da177e4 | 2087 | local_irq_restore(flags); |
34008d8c | 2088 | return NET_RX_SUCCESS; |
1da177e4 LT |
2089 | } |
2090 | ||
bea3348e | 2091 | napi_schedule(&queue->backlog); |
1da177e4 LT |
2092 | goto enqueue; |
2093 | } | |
2094 | ||
1da177e4 LT |
2095 | __get_cpu_var(netdev_rx_stat).dropped++; |
2096 | local_irq_restore(flags); | |
2097 | ||
2098 | kfree_skb(skb); | |
2099 | return NET_RX_DROP; | |
2100 | } | |
d1b19dff | 2101 | EXPORT_SYMBOL(netif_rx); |
1da177e4 LT |
2102 | |
2103 | int netif_rx_ni(struct sk_buff *skb) | |
2104 | { | |
2105 | int err; | |
2106 | ||
2107 | preempt_disable(); | |
2108 | err = netif_rx(skb); | |
2109 | if (local_softirq_pending()) | |
2110 | do_softirq(); | |
2111 | preempt_enable(); | |
2112 | ||
2113 | return err; | |
2114 | } | |
1da177e4 LT |
2115 | EXPORT_SYMBOL(netif_rx_ni); |
2116 | ||
1da177e4 LT |
2117 | static void net_tx_action(struct softirq_action *h) |
2118 | { | |
2119 | struct softnet_data *sd = &__get_cpu_var(softnet_data); | |
2120 | ||
2121 | if (sd->completion_queue) { | |
2122 | struct sk_buff *clist; | |
2123 | ||
2124 | local_irq_disable(); | |
2125 | clist = sd->completion_queue; | |
2126 | sd->completion_queue = NULL; | |
2127 | local_irq_enable(); | |
2128 | ||
2129 | while (clist) { | |
2130 | struct sk_buff *skb = clist; | |
2131 | clist = clist->next; | |
2132 | ||
547b792c | 2133 | WARN_ON(atomic_read(&skb->users)); |
1da177e4 LT |
2134 | __kfree_skb(skb); |
2135 | } | |
2136 | } | |
2137 | ||
2138 | if (sd->output_queue) { | |
37437bb2 | 2139 | struct Qdisc *head; |
1da177e4 LT |
2140 | |
2141 | local_irq_disable(); | |
2142 | head = sd->output_queue; | |
2143 | sd->output_queue = NULL; | |
2144 | local_irq_enable(); | |
2145 | ||
2146 | while (head) { | |
37437bb2 DM |
2147 | struct Qdisc *q = head; |
2148 | spinlock_t *root_lock; | |
2149 | ||
1da177e4 LT |
2150 | head = head->next_sched; |
2151 | ||
5fb66229 | 2152 | root_lock = qdisc_lock(q); |
37437bb2 | 2153 | if (spin_trylock(root_lock)) { |
def82a1d JP |
2154 | smp_mb__before_clear_bit(); |
2155 | clear_bit(__QDISC_STATE_SCHED, | |
2156 | &q->state); | |
37437bb2 DM |
2157 | qdisc_run(q); |
2158 | spin_unlock(root_lock); | |
1da177e4 | 2159 | } else { |
195648bb | 2160 | if (!test_bit(__QDISC_STATE_DEACTIVATED, |
e8a83e10 | 2161 | &q->state)) { |
195648bb | 2162 | __netif_reschedule(q); |
e8a83e10 JP |
2163 | } else { |
2164 | smp_mb__before_clear_bit(); | |
2165 | clear_bit(__QDISC_STATE_SCHED, | |
2166 | &q->state); | |
2167 | } | |
1da177e4 LT |
2168 | } |
2169 | } | |
2170 | } | |
2171 | } | |
2172 | ||
6f05f629 SH |
2173 | static inline int deliver_skb(struct sk_buff *skb, |
2174 | struct packet_type *pt_prev, | |
2175 | struct net_device *orig_dev) | |
1da177e4 LT |
2176 | { |
2177 | atomic_inc(&skb->users); | |
f2ccd8fa | 2178 | return pt_prev->func(skb, skb->dev, pt_prev, orig_dev); |
1da177e4 LT |
2179 | } |
2180 | ||
2181 | #if defined(CONFIG_BRIDGE) || defined (CONFIG_BRIDGE_MODULE) | |
da678292 MM |
2182 | |
2183 | #if defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE) | |
2184 | /* This hook is defined here for ATM LANE */ | |
2185 | int (*br_fdb_test_addr_hook)(struct net_device *dev, | |
2186 | unsigned char *addr) __read_mostly; | |
4fb019a0 | 2187 | EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook); |
da678292 | 2188 | #endif |
1da177e4 | 2189 | |
6229e362 SH |
2190 | /* |
2191 | * If bridge module is loaded call bridging hook. | |
2192 | * returns NULL if packet was consumed. | |
2193 | */ | |
2194 | struct sk_buff *(*br_handle_frame_hook)(struct net_bridge_port *p, | |
2195 | struct sk_buff *skb) __read_mostly; | |
4fb019a0 | 2196 | EXPORT_SYMBOL_GPL(br_handle_frame_hook); |
da678292 | 2197 | |
6229e362 SH |
2198 | static inline struct sk_buff *handle_bridge(struct sk_buff *skb, |
2199 | struct packet_type **pt_prev, int *ret, | |
2200 | struct net_device *orig_dev) | |
1da177e4 LT |
2201 | { |
2202 | struct net_bridge_port *port; | |
2203 | ||
6229e362 SH |
2204 | if (skb->pkt_type == PACKET_LOOPBACK || |
2205 | (port = rcu_dereference(skb->dev->br_port)) == NULL) | |
2206 | return skb; | |
1da177e4 LT |
2207 | |
2208 | if (*pt_prev) { | |
6229e362 | 2209 | *ret = deliver_skb(skb, *pt_prev, orig_dev); |
1da177e4 | 2210 | *pt_prev = NULL; |
4ec93edb YH |
2211 | } |
2212 | ||
6229e362 | 2213 | return br_handle_frame_hook(port, skb); |
1da177e4 LT |
2214 | } |
2215 | #else | |
6229e362 | 2216 | #define handle_bridge(skb, pt_prev, ret, orig_dev) (skb) |
1da177e4 LT |
2217 | #endif |
2218 | ||
b863ceb7 PM |
2219 | #if defined(CONFIG_MACVLAN) || defined(CONFIG_MACVLAN_MODULE) |
2220 | struct sk_buff *(*macvlan_handle_frame_hook)(struct sk_buff *skb) __read_mostly; | |
2221 | EXPORT_SYMBOL_GPL(macvlan_handle_frame_hook); | |
2222 | ||
2223 | static inline struct sk_buff *handle_macvlan(struct sk_buff *skb, | |
2224 | struct packet_type **pt_prev, | |
2225 | int *ret, | |
2226 | struct net_device *orig_dev) | |
2227 | { | |
2228 | if (skb->dev->macvlan_port == NULL) | |
2229 | return skb; | |
2230 | ||
2231 | if (*pt_prev) { | |
2232 | *ret = deliver_skb(skb, *pt_prev, orig_dev); | |
2233 | *pt_prev = NULL; | |
2234 | } | |
2235 | return macvlan_handle_frame_hook(skb); | |
2236 | } | |
2237 | #else | |
2238 | #define handle_macvlan(skb, pt_prev, ret, orig_dev) (skb) | |
2239 | #endif | |
2240 | ||
1da177e4 LT |
2241 | #ifdef CONFIG_NET_CLS_ACT |
2242 | /* TODO: Maybe we should just force sch_ingress to be compiled in | |
2243 | * when CONFIG_NET_CLS_ACT is? otherwise some useless instructions | |
2244 | * a compare and 2 stores extra right now if we dont have it on | |
2245 | * but have CONFIG_NET_CLS_ACT | |
4ec93edb | 2246 | * NOTE: This doesnt stop any functionality; if you dont have |
1da177e4 LT |
2247 | * the ingress scheduler, you just cant add policies on ingress. |
2248 | * | |
2249 | */ | |
4ec93edb | 2250 | static int ing_filter(struct sk_buff *skb) |
1da177e4 | 2251 | { |
1da177e4 | 2252 | struct net_device *dev = skb->dev; |
f697c3e8 | 2253 | u32 ttl = G_TC_RTTL(skb->tc_verd); |
555353cf DM |
2254 | struct netdev_queue *rxq; |
2255 | int result = TC_ACT_OK; | |
2256 | struct Qdisc *q; | |
4ec93edb | 2257 | |
f697c3e8 HX |
2258 | if (MAX_RED_LOOP < ttl++) { |
2259 | printk(KERN_WARNING | |
2260 | "Redir loop detected Dropping packet (%d->%d)\n", | |
2261 | skb->iif, dev->ifindex); | |
2262 | return TC_ACT_SHOT; | |
2263 | } | |
1da177e4 | 2264 | |
f697c3e8 HX |
2265 | skb->tc_verd = SET_TC_RTTL(skb->tc_verd, ttl); |
2266 | skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_INGRESS); | |
1da177e4 | 2267 | |
555353cf DM |
2268 | rxq = &dev->rx_queue; |
2269 | ||
83874000 | 2270 | q = rxq->qdisc; |
8d50b53d | 2271 | if (q != &noop_qdisc) { |
83874000 | 2272 | spin_lock(qdisc_lock(q)); |
a9312ae8 DM |
2273 | if (likely(!test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) |
2274 | result = qdisc_enqueue_root(skb, q); | |
83874000 DM |
2275 | spin_unlock(qdisc_lock(q)); |
2276 | } | |
f697c3e8 HX |
2277 | |
2278 | return result; | |
2279 | } | |
86e65da9 | 2280 | |
f697c3e8 HX |
2281 | static inline struct sk_buff *handle_ing(struct sk_buff *skb, |
2282 | struct packet_type **pt_prev, | |
2283 | int *ret, struct net_device *orig_dev) | |
2284 | { | |
8d50b53d | 2285 | if (skb->dev->rx_queue.qdisc == &noop_qdisc) |
f697c3e8 | 2286 | goto out; |
1da177e4 | 2287 | |
f697c3e8 HX |
2288 | if (*pt_prev) { |
2289 | *ret = deliver_skb(skb, *pt_prev, orig_dev); | |
2290 | *pt_prev = NULL; | |
2291 | } else { | |
2292 | /* Huh? Why does turning on AF_PACKET affect this? */ | |
2293 | skb->tc_verd = SET_TC_OK2MUNGE(skb->tc_verd); | |
1da177e4 LT |
2294 | } |
2295 | ||
f697c3e8 HX |
2296 | switch (ing_filter(skb)) { |
2297 | case TC_ACT_SHOT: | |
2298 | case TC_ACT_STOLEN: | |
2299 | kfree_skb(skb); | |
2300 | return NULL; | |
2301 | } | |
2302 | ||
2303 | out: | |
2304 | skb->tc_verd = 0; | |
2305 | return skb; | |
1da177e4 LT |
2306 | } |
2307 | #endif | |
2308 | ||
bc1d0411 PM |
2309 | /* |
2310 | * netif_nit_deliver - deliver received packets to network taps | |
2311 | * @skb: buffer | |
2312 | * | |
2313 | * This function is used to deliver incoming packets to network | |
2314 | * taps. It should be used when the normal netif_receive_skb path | |
2315 | * is bypassed, for example because of VLAN acceleration. | |
2316 | */ | |
2317 | void netif_nit_deliver(struct sk_buff *skb) | |
2318 | { | |
2319 | struct packet_type *ptype; | |
2320 | ||
2321 | if (list_empty(&ptype_all)) | |
2322 | return; | |
2323 | ||
2324 | skb_reset_network_header(skb); | |
2325 | skb_reset_transport_header(skb); | |
2326 | skb->mac_len = skb->network_header - skb->mac_header; | |
2327 | ||
2328 | rcu_read_lock(); | |
2329 | list_for_each_entry_rcu(ptype, &ptype_all, list) { | |
2330 | if (!ptype->dev || ptype->dev == skb->dev) | |
2331 | deliver_skb(skb, ptype, skb->dev); | |
2332 | } | |
2333 | rcu_read_unlock(); | |
2334 | } | |
2335 | ||
3b582cc1 SH |
2336 | /** |
2337 | * netif_receive_skb - process receive buffer from network | |
2338 | * @skb: buffer to process | |
2339 | * | |
2340 | * netif_receive_skb() is the main receive data processing function. | |
2341 | * It always succeeds. The buffer may be dropped during processing | |
2342 | * for congestion control or by the protocol layers. | |
2343 | * | |
2344 | * This function may only be called from softirq context and interrupts | |
2345 | * should be enabled. | |
2346 | * | |
2347 | * Return values (usually ignored): | |
2348 | * NET_RX_SUCCESS: no congestion | |
2349 | * NET_RX_DROP: packet was dropped | |
2350 | */ | |
1da177e4 LT |
2351 | int netif_receive_skb(struct sk_buff *skb) |
2352 | { | |
2353 | struct packet_type *ptype, *pt_prev; | |
f2ccd8fa | 2354 | struct net_device *orig_dev; |
0d7a3681 | 2355 | struct net_device *null_or_orig; |
1da177e4 | 2356 | int ret = NET_RX_DROP; |
252e3346 | 2357 | __be16 type; |
1da177e4 | 2358 | |
81bbb3d4 ED |
2359 | if (!skb->tstamp.tv64) |
2360 | net_timestamp(skb); | |
2361 | ||
05423b24 | 2362 | if (vlan_tx_tag_present(skb) && vlan_hwaccel_do_receive(skb)) |
9b22ea56 PM |
2363 | return NET_RX_SUCCESS; |
2364 | ||
1da177e4 | 2365 | /* if we've gotten here through NAPI, check netpoll */ |
bea3348e | 2366 | if (netpoll_receive_skb(skb)) |
1da177e4 LT |
2367 | return NET_RX_DROP; |
2368 | ||
c01003c2 PM |
2369 | if (!skb->iif) |
2370 | skb->iif = skb->dev->ifindex; | |
86e65da9 | 2371 | |
0d7a3681 | 2372 | null_or_orig = NULL; |
cc9bd5ce JE |
2373 | orig_dev = skb->dev; |
2374 | if (orig_dev->master) { | |
0d7a3681 JE |
2375 | if (skb_bond_should_drop(skb)) |
2376 | null_or_orig = orig_dev; /* deliver only exact match */ | |
2377 | else | |
2378 | skb->dev = orig_dev->master; | |
cc9bd5ce | 2379 | } |
8f903c70 | 2380 | |
1da177e4 LT |
2381 | __get_cpu_var(netdev_rx_stat).total++; |
2382 | ||
c1d2bbe1 | 2383 | skb_reset_network_header(skb); |
badff6d0 | 2384 | skb_reset_transport_header(skb); |
b0e380b1 | 2385 | skb->mac_len = skb->network_header - skb->mac_header; |
1da177e4 LT |
2386 | |
2387 | pt_prev = NULL; | |
2388 | ||
2389 | rcu_read_lock(); | |
2390 | ||
2391 | #ifdef CONFIG_NET_CLS_ACT | |
2392 | if (skb->tc_verd & TC_NCLS) { | |
2393 | skb->tc_verd = CLR_TC_NCLS(skb->tc_verd); | |
2394 | goto ncls; | |
2395 | } | |
2396 | #endif | |
2397 | ||
2398 | list_for_each_entry_rcu(ptype, &ptype_all, list) { | |
f982307f JE |
2399 | if (ptype->dev == null_or_orig || ptype->dev == skb->dev || |
2400 | ptype->dev == orig_dev) { | |
4ec93edb | 2401 | if (pt_prev) |
f2ccd8fa | 2402 | ret = deliver_skb(skb, pt_prev, orig_dev); |
1da177e4 LT |
2403 | pt_prev = ptype; |
2404 | } | |
2405 | } | |
2406 | ||
2407 | #ifdef CONFIG_NET_CLS_ACT | |
f697c3e8 HX |
2408 | skb = handle_ing(skb, &pt_prev, &ret, orig_dev); |
2409 | if (!skb) | |
1da177e4 | 2410 | goto out; |
1da177e4 LT |
2411 | ncls: |
2412 | #endif | |
2413 | ||
6229e362 | 2414 | skb = handle_bridge(skb, &pt_prev, &ret, orig_dev); |
b863ceb7 PM |
2415 | if (!skb) |
2416 | goto out; | |
2417 | skb = handle_macvlan(skb, &pt_prev, &ret, orig_dev); | |
6229e362 | 2418 | if (!skb) |
1da177e4 LT |
2419 | goto out; |
2420 | ||
2421 | type = skb->protocol; | |
82d8a867 PE |
2422 | list_for_each_entry_rcu(ptype, |
2423 | &ptype_base[ntohs(type) & PTYPE_HASH_MASK], list) { | |
1da177e4 | 2424 | if (ptype->type == type && |
f982307f JE |
2425 | (ptype->dev == null_or_orig || ptype->dev == skb->dev || |
2426 | ptype->dev == orig_dev)) { | |
4ec93edb | 2427 | if (pt_prev) |
f2ccd8fa | 2428 | ret = deliver_skb(skb, pt_prev, orig_dev); |
1da177e4 LT |
2429 | pt_prev = ptype; |
2430 | } | |
2431 | } | |
2432 | ||
2433 | if (pt_prev) { | |
f2ccd8fa | 2434 | ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev); |
1da177e4 LT |
2435 | } else { |
2436 | kfree_skb(skb); | |
2437 | /* Jamal, now you will not able to escape explaining | |
2438 | * me how you were going to use this. :-) | |
2439 | */ | |
2440 | ret = NET_RX_DROP; | |
2441 | } | |
2442 | ||
2443 | out: | |
2444 | rcu_read_unlock(); | |
2445 | return ret; | |
2446 | } | |
d1b19dff | 2447 | EXPORT_SYMBOL(netif_receive_skb); |
1da177e4 | 2448 | |
6e583ce5 SH |
2449 | /* Network device is going away, flush any packets still pending */ |
2450 | static void flush_backlog(void *arg) | |
2451 | { | |
2452 | struct net_device *dev = arg; | |
2453 | struct softnet_data *queue = &__get_cpu_var(softnet_data); | |
2454 | struct sk_buff *skb, *tmp; | |
2455 | ||
2456 | skb_queue_walk_safe(&queue->input_pkt_queue, skb, tmp) | |
2457 | if (skb->dev == dev) { | |
2458 | __skb_unlink(skb, &queue->input_pkt_queue); | |
2459 | kfree_skb(skb); | |
2460 | } | |
2461 | } | |
2462 | ||
d565b0a1 HX |
2463 | static int napi_gro_complete(struct sk_buff *skb) |
2464 | { | |
2465 | struct packet_type *ptype; | |
2466 | __be16 type = skb->protocol; | |
2467 | struct list_head *head = &ptype_base[ntohs(type) & PTYPE_HASH_MASK]; | |
2468 | int err = -ENOENT; | |
2469 | ||
fc59f9a3 HX |
2470 | if (NAPI_GRO_CB(skb)->count == 1) { |
2471 | skb_shinfo(skb)->gso_size = 0; | |
d565b0a1 | 2472 | goto out; |
fc59f9a3 | 2473 | } |
d565b0a1 HX |
2474 | |
2475 | rcu_read_lock(); | |
2476 | list_for_each_entry_rcu(ptype, head, list) { | |
2477 | if (ptype->type != type || ptype->dev || !ptype->gro_complete) | |
2478 | continue; | |
2479 | ||
2480 | err = ptype->gro_complete(skb); | |
2481 | break; | |
2482 | } | |
2483 | rcu_read_unlock(); | |
2484 | ||
2485 | if (err) { | |
2486 | WARN_ON(&ptype->list == head); | |
2487 | kfree_skb(skb); | |
2488 | return NET_RX_SUCCESS; | |
2489 | } | |
2490 | ||
2491 | out: | |
d565b0a1 HX |
2492 | return netif_receive_skb(skb); |
2493 | } | |
2494 | ||
2495 | void napi_gro_flush(struct napi_struct *napi) | |
2496 | { | |
2497 | struct sk_buff *skb, *next; | |
2498 | ||
2499 | for (skb = napi->gro_list; skb; skb = next) { | |
2500 | next = skb->next; | |
2501 | skb->next = NULL; | |
2502 | napi_gro_complete(skb); | |
2503 | } | |
2504 | ||
4ae5544f | 2505 | napi->gro_count = 0; |
d565b0a1 HX |
2506 | napi->gro_list = NULL; |
2507 | } | |
2508 | EXPORT_SYMBOL(napi_gro_flush); | |
2509 | ||
5b252f0c | 2510 | enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb) |
d565b0a1 HX |
2511 | { |
2512 | struct sk_buff **pp = NULL; | |
2513 | struct packet_type *ptype; | |
2514 | __be16 type = skb->protocol; | |
2515 | struct list_head *head = &ptype_base[ntohs(type) & PTYPE_HASH_MASK]; | |
0da2afd5 | 2516 | int same_flow; |
d565b0a1 | 2517 | int mac_len; |
5b252f0c | 2518 | enum gro_result ret; |
d565b0a1 HX |
2519 | |
2520 | if (!(skb->dev->features & NETIF_F_GRO)) | |
2521 | goto normal; | |
2522 | ||
4cf704fb | 2523 | if (skb_is_gso(skb) || skb_has_frags(skb)) |
f17f5c91 HX |
2524 | goto normal; |
2525 | ||
d565b0a1 HX |
2526 | rcu_read_lock(); |
2527 | list_for_each_entry_rcu(ptype, head, list) { | |
d565b0a1 HX |
2528 | if (ptype->type != type || ptype->dev || !ptype->gro_receive) |
2529 | continue; | |
2530 | ||
86911732 | 2531 | skb_set_network_header(skb, skb_gro_offset(skb)); |
d565b0a1 HX |
2532 | mac_len = skb->network_header - skb->mac_header; |
2533 | skb->mac_len = mac_len; | |
2534 | NAPI_GRO_CB(skb)->same_flow = 0; | |
2535 | NAPI_GRO_CB(skb)->flush = 0; | |
5d38a079 | 2536 | NAPI_GRO_CB(skb)->free = 0; |
d565b0a1 | 2537 | |
d565b0a1 HX |
2538 | pp = ptype->gro_receive(&napi->gro_list, skb); |
2539 | break; | |
2540 | } | |
2541 | rcu_read_unlock(); | |
2542 | ||
2543 | if (&ptype->list == head) | |
2544 | goto normal; | |
2545 | ||
0da2afd5 | 2546 | same_flow = NAPI_GRO_CB(skb)->same_flow; |
5d0d9be8 | 2547 | ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED; |
0da2afd5 | 2548 | |
d565b0a1 HX |
2549 | if (pp) { |
2550 | struct sk_buff *nskb = *pp; | |
2551 | ||
2552 | *pp = nskb->next; | |
2553 | nskb->next = NULL; | |
2554 | napi_gro_complete(nskb); | |
4ae5544f | 2555 | napi->gro_count--; |
d565b0a1 HX |
2556 | } |
2557 | ||
0da2afd5 | 2558 | if (same_flow) |
d565b0a1 HX |
2559 | goto ok; |
2560 | ||
4ae5544f | 2561 | if (NAPI_GRO_CB(skb)->flush || napi->gro_count >= MAX_GRO_SKBS) |
d565b0a1 | 2562 | goto normal; |
d565b0a1 | 2563 | |
4ae5544f | 2564 | napi->gro_count++; |
d565b0a1 | 2565 | NAPI_GRO_CB(skb)->count = 1; |
86911732 | 2566 | skb_shinfo(skb)->gso_size = skb_gro_len(skb); |
d565b0a1 HX |
2567 | skb->next = napi->gro_list; |
2568 | napi->gro_list = skb; | |
5d0d9be8 | 2569 | ret = GRO_HELD; |
d565b0a1 | 2570 | |
ad0f9904 | 2571 | pull: |
cb18978c HX |
2572 | if (skb_headlen(skb) < skb_gro_offset(skb)) { |
2573 | int grow = skb_gro_offset(skb) - skb_headlen(skb); | |
2574 | ||
2575 | BUG_ON(skb->end - skb->tail < grow); | |
2576 | ||
2577 | memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow); | |
2578 | ||
2579 | skb->tail += grow; | |
2580 | skb->data_len -= grow; | |
2581 | ||
2582 | skb_shinfo(skb)->frags[0].page_offset += grow; | |
2583 | skb_shinfo(skb)->frags[0].size -= grow; | |
2584 | ||
2585 | if (unlikely(!skb_shinfo(skb)->frags[0].size)) { | |
2586 | put_page(skb_shinfo(skb)->frags[0].page); | |
2587 | memmove(skb_shinfo(skb)->frags, | |
2588 | skb_shinfo(skb)->frags + 1, | |
2589 | --skb_shinfo(skb)->nr_frags); | |
2590 | } | |
ad0f9904 HX |
2591 | } |
2592 | ||
d565b0a1 | 2593 | ok: |
5d0d9be8 | 2594 | return ret; |
d565b0a1 HX |
2595 | |
2596 | normal: | |
ad0f9904 HX |
2597 | ret = GRO_NORMAL; |
2598 | goto pull; | |
5d38a079 | 2599 | } |
96e93eab HX |
2600 | EXPORT_SYMBOL(dev_gro_receive); |
2601 | ||
5b252f0c BH |
2602 | static gro_result_t |
2603 | __napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb) | |
96e93eab HX |
2604 | { |
2605 | struct sk_buff *p; | |
2606 | ||
d1c76af9 HX |
2607 | if (netpoll_rx_on(skb)) |
2608 | return GRO_NORMAL; | |
2609 | ||
96e93eab | 2610 | for (p = napi->gro_list; p; p = p->next) { |
f2bde732 SH |
2611 | NAPI_GRO_CB(p)->same_flow = (p->dev == skb->dev) |
2612 | && !compare_ether_header(skb_mac_header(p), | |
2613 | skb_gro_mac_header(skb)); | |
96e93eab HX |
2614 | NAPI_GRO_CB(p)->flush = 0; |
2615 | } | |
2616 | ||
2617 | return dev_gro_receive(napi, skb); | |
2618 | } | |
5d38a079 | 2619 | |
c7c4b3b6 | 2620 | gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb) |
5d38a079 | 2621 | { |
5d0d9be8 HX |
2622 | switch (ret) { |
2623 | case GRO_NORMAL: | |
c7c4b3b6 BH |
2624 | if (netif_receive_skb(skb)) |
2625 | ret = GRO_DROP; | |
2626 | break; | |
5d38a079 | 2627 | |
5d0d9be8 | 2628 | case GRO_DROP: |
5d0d9be8 | 2629 | case GRO_MERGED_FREE: |
5d38a079 HX |
2630 | kfree_skb(skb); |
2631 | break; | |
5b252f0c BH |
2632 | |
2633 | case GRO_HELD: | |
2634 | case GRO_MERGED: | |
2635 | break; | |
5d38a079 HX |
2636 | } |
2637 | ||
c7c4b3b6 | 2638 | return ret; |
5d0d9be8 HX |
2639 | } |
2640 | EXPORT_SYMBOL(napi_skb_finish); | |
2641 | ||
78a478d0 HX |
2642 | void skb_gro_reset_offset(struct sk_buff *skb) |
2643 | { | |
2644 | NAPI_GRO_CB(skb)->data_offset = 0; | |
2645 | NAPI_GRO_CB(skb)->frag0 = NULL; | |
7489594c | 2646 | NAPI_GRO_CB(skb)->frag0_len = 0; |
78a478d0 | 2647 | |
78d3fd0b | 2648 | if (skb->mac_header == skb->tail && |
7489594c | 2649 | !PageHighMem(skb_shinfo(skb)->frags[0].page)) { |
78a478d0 HX |
2650 | NAPI_GRO_CB(skb)->frag0 = |
2651 | page_address(skb_shinfo(skb)->frags[0].page) + | |
2652 | skb_shinfo(skb)->frags[0].page_offset; | |
7489594c HX |
2653 | NAPI_GRO_CB(skb)->frag0_len = skb_shinfo(skb)->frags[0].size; |
2654 | } | |
78a478d0 HX |
2655 | } |
2656 | EXPORT_SYMBOL(skb_gro_reset_offset); | |
2657 | ||
c7c4b3b6 | 2658 | gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb) |
5d0d9be8 | 2659 | { |
86911732 HX |
2660 | skb_gro_reset_offset(skb); |
2661 | ||
5d0d9be8 | 2662 | return napi_skb_finish(__napi_gro_receive(napi, skb), skb); |
d565b0a1 HX |
2663 | } |
2664 | EXPORT_SYMBOL(napi_gro_receive); | |
2665 | ||
96e93eab HX |
2666 | void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb) |
2667 | { | |
96e93eab HX |
2668 | __skb_pull(skb, skb_headlen(skb)); |
2669 | skb_reserve(skb, NET_IP_ALIGN - skb_headroom(skb)); | |
2670 | ||
2671 | napi->skb = skb; | |
2672 | } | |
2673 | EXPORT_SYMBOL(napi_reuse_skb); | |
2674 | ||
76620aaf | 2675 | struct sk_buff *napi_get_frags(struct napi_struct *napi) |
5d38a079 | 2676 | { |
5d38a079 | 2677 | struct sk_buff *skb = napi->skb; |
5d38a079 HX |
2678 | |
2679 | if (!skb) { | |
89d71a66 ED |
2680 | skb = netdev_alloc_skb_ip_align(napi->dev, GRO_MAX_HEAD); |
2681 | if (skb) | |
2682 | napi->skb = skb; | |
80595d59 | 2683 | } |
96e93eab HX |
2684 | return skb; |
2685 | } | |
76620aaf | 2686 | EXPORT_SYMBOL(napi_get_frags); |
96e93eab | 2687 | |
c7c4b3b6 BH |
2688 | gro_result_t napi_frags_finish(struct napi_struct *napi, struct sk_buff *skb, |
2689 | gro_result_t ret) | |
96e93eab | 2690 | { |
5d0d9be8 HX |
2691 | switch (ret) { |
2692 | case GRO_NORMAL: | |
86911732 | 2693 | case GRO_HELD: |
86911732 HX |
2694 | skb->protocol = eth_type_trans(skb, napi->dev); |
2695 | ||
c7c4b3b6 BH |
2696 | if (ret == GRO_HELD) |
2697 | skb_gro_pull(skb, -ETH_HLEN); | |
2698 | else if (netif_receive_skb(skb)) | |
2699 | ret = GRO_DROP; | |
86911732 | 2700 | break; |
5d38a079 | 2701 | |
5d0d9be8 | 2702 | case GRO_DROP: |
5d0d9be8 HX |
2703 | case GRO_MERGED_FREE: |
2704 | napi_reuse_skb(napi, skb); | |
2705 | break; | |
5b252f0c BH |
2706 | |
2707 | case GRO_MERGED: | |
2708 | break; | |
5d0d9be8 | 2709 | } |
5d38a079 | 2710 | |
c7c4b3b6 | 2711 | return ret; |
5d38a079 | 2712 | } |
5d0d9be8 HX |
2713 | EXPORT_SYMBOL(napi_frags_finish); |
2714 | ||
76620aaf HX |
2715 | struct sk_buff *napi_frags_skb(struct napi_struct *napi) |
2716 | { | |
2717 | struct sk_buff *skb = napi->skb; | |
2718 | struct ethhdr *eth; | |
a5b1cf28 HX |
2719 | unsigned int hlen; |
2720 | unsigned int off; | |
76620aaf HX |
2721 | |
2722 | napi->skb = NULL; | |
2723 | ||
2724 | skb_reset_mac_header(skb); | |
2725 | skb_gro_reset_offset(skb); | |
2726 | ||
a5b1cf28 HX |
2727 | off = skb_gro_offset(skb); |
2728 | hlen = off + sizeof(*eth); | |
2729 | eth = skb_gro_header_fast(skb, off); | |
2730 | if (skb_gro_header_hard(skb, hlen)) { | |
2731 | eth = skb_gro_header_slow(skb, hlen, off); | |
2732 | if (unlikely(!eth)) { | |
2733 | napi_reuse_skb(napi, skb); | |
2734 | skb = NULL; | |
2735 | goto out; | |
2736 | } | |
76620aaf HX |
2737 | } |
2738 | ||
2739 | skb_gro_pull(skb, sizeof(*eth)); | |
2740 | ||
2741 | /* | |
2742 | * This works because the only protocols we care about don't require | |
2743 | * special handling. We'll fix it up properly at the end. | |
2744 | */ | |
2745 | skb->protocol = eth->h_proto; | |
2746 | ||
2747 | out: | |
2748 | return skb; | |
2749 | } | |
2750 | EXPORT_SYMBOL(napi_frags_skb); | |
2751 | ||
c7c4b3b6 | 2752 | gro_result_t napi_gro_frags(struct napi_struct *napi) |
5d0d9be8 | 2753 | { |
76620aaf | 2754 | struct sk_buff *skb = napi_frags_skb(napi); |
5d0d9be8 HX |
2755 | |
2756 | if (!skb) | |
c7c4b3b6 | 2757 | return GRO_DROP; |
5d0d9be8 HX |
2758 | |
2759 | return napi_frags_finish(napi, skb, __napi_gro_receive(napi, skb)); | |
2760 | } | |
5d38a079 HX |
2761 | EXPORT_SYMBOL(napi_gro_frags); |
2762 | ||
bea3348e | 2763 | static int process_backlog(struct napi_struct *napi, int quota) |
1da177e4 LT |
2764 | { |
2765 | int work = 0; | |
1da177e4 LT |
2766 | struct softnet_data *queue = &__get_cpu_var(softnet_data); |
2767 | unsigned long start_time = jiffies; | |
2768 | ||
bea3348e SH |
2769 | napi->weight = weight_p; |
2770 | do { | |
1da177e4 | 2771 | struct sk_buff *skb; |
1da177e4 LT |
2772 | |
2773 | local_irq_disable(); | |
2774 | skb = __skb_dequeue(&queue->input_pkt_queue); | |
bea3348e | 2775 | if (!skb) { |
8f1ead2d | 2776 | __napi_complete(napi); |
bea3348e | 2777 | local_irq_enable(); |
8f1ead2d | 2778 | break; |
bea3348e | 2779 | } |
1da177e4 LT |
2780 | local_irq_enable(); |
2781 | ||
8f1ead2d | 2782 | netif_receive_skb(skb); |
bea3348e | 2783 | } while (++work < quota && jiffies == start_time); |
1da177e4 | 2784 | |
bea3348e SH |
2785 | return work; |
2786 | } | |
1da177e4 | 2787 | |
bea3348e SH |
2788 | /** |
2789 | * __napi_schedule - schedule for receive | |
c4ea43c5 | 2790 | * @n: entry to schedule |
bea3348e SH |
2791 | * |
2792 | * The entry's receive function will be scheduled to run | |
2793 | */ | |
b5606c2d | 2794 | void __napi_schedule(struct napi_struct *n) |
bea3348e SH |
2795 | { |
2796 | unsigned long flags; | |
1da177e4 | 2797 | |
bea3348e SH |
2798 | local_irq_save(flags); |
2799 | list_add_tail(&n->poll_list, &__get_cpu_var(softnet_data).poll_list); | |
2800 | __raise_softirq_irqoff(NET_RX_SOFTIRQ); | |
2801 | local_irq_restore(flags); | |
1da177e4 | 2802 | } |
bea3348e SH |
2803 | EXPORT_SYMBOL(__napi_schedule); |
2804 | ||
d565b0a1 HX |
2805 | void __napi_complete(struct napi_struct *n) |
2806 | { | |
2807 | BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state)); | |
2808 | BUG_ON(n->gro_list); | |
2809 | ||
2810 | list_del(&n->poll_list); | |
2811 | smp_mb__before_clear_bit(); | |
2812 | clear_bit(NAPI_STATE_SCHED, &n->state); | |
2813 | } | |
2814 | EXPORT_SYMBOL(__napi_complete); | |
2815 | ||
2816 | void napi_complete(struct napi_struct *n) | |
2817 | { | |
2818 | unsigned long flags; | |
2819 | ||
2820 | /* | |
2821 | * don't let napi dequeue from the cpu poll list | |
2822 | * just in case its running on a different cpu | |
2823 | */ | |
2824 | if (unlikely(test_bit(NAPI_STATE_NPSVC, &n->state))) | |
2825 | return; | |
2826 | ||
2827 | napi_gro_flush(n); | |
2828 | local_irq_save(flags); | |
2829 | __napi_complete(n); | |
2830 | local_irq_restore(flags); | |
2831 | } | |
2832 | EXPORT_SYMBOL(napi_complete); | |
2833 | ||
2834 | void netif_napi_add(struct net_device *dev, struct napi_struct *napi, | |
2835 | int (*poll)(struct napi_struct *, int), int weight) | |
2836 | { | |
2837 | INIT_LIST_HEAD(&napi->poll_list); | |
4ae5544f | 2838 | napi->gro_count = 0; |
d565b0a1 | 2839 | napi->gro_list = NULL; |
5d38a079 | 2840 | napi->skb = NULL; |
d565b0a1 HX |
2841 | napi->poll = poll; |
2842 | napi->weight = weight; | |
2843 | list_add(&napi->dev_list, &dev->napi_list); | |
d565b0a1 | 2844 | napi->dev = dev; |
5d38a079 | 2845 | #ifdef CONFIG_NETPOLL |
d565b0a1 HX |
2846 | spin_lock_init(&napi->poll_lock); |
2847 | napi->poll_owner = -1; | |
2848 | #endif | |
2849 | set_bit(NAPI_STATE_SCHED, &napi->state); | |
2850 | } | |
2851 | EXPORT_SYMBOL(netif_napi_add); | |
2852 | ||
2853 | void netif_napi_del(struct napi_struct *napi) | |
2854 | { | |
2855 | struct sk_buff *skb, *next; | |
2856 | ||
d7b06636 | 2857 | list_del_init(&napi->dev_list); |
76620aaf | 2858 | napi_free_frags(napi); |
d565b0a1 HX |
2859 | |
2860 | for (skb = napi->gro_list; skb; skb = next) { | |
2861 | next = skb->next; | |
2862 | skb->next = NULL; | |
2863 | kfree_skb(skb); | |
2864 | } | |
2865 | ||
2866 | napi->gro_list = NULL; | |
4ae5544f | 2867 | napi->gro_count = 0; |
d565b0a1 HX |
2868 | } |
2869 | EXPORT_SYMBOL(netif_napi_del); | |
2870 | ||
1da177e4 LT |
2871 | |
2872 | static void net_rx_action(struct softirq_action *h) | |
2873 | { | |
bea3348e | 2874 | struct list_head *list = &__get_cpu_var(softnet_data).poll_list; |
24f8b238 | 2875 | unsigned long time_limit = jiffies + 2; |
51b0bded | 2876 | int budget = netdev_budget; |
53fb95d3 MM |
2877 | void *have; |
2878 | ||
1da177e4 LT |
2879 | local_irq_disable(); |
2880 | ||
bea3348e SH |
2881 | while (!list_empty(list)) { |
2882 | struct napi_struct *n; | |
2883 | int work, weight; | |
1da177e4 | 2884 | |
bea3348e | 2885 | /* If softirq window is exhuasted then punt. |
24f8b238 SH |
2886 | * Allow this to run for 2 jiffies since which will allow |
2887 | * an average latency of 1.5/HZ. | |
bea3348e | 2888 | */ |
24f8b238 | 2889 | if (unlikely(budget <= 0 || time_after(jiffies, time_limit))) |
1da177e4 LT |
2890 | goto softnet_break; |
2891 | ||
2892 | local_irq_enable(); | |
2893 | ||
bea3348e SH |
2894 | /* Even though interrupts have been re-enabled, this |
2895 | * access is safe because interrupts can only add new | |
2896 | * entries to the tail of this list, and only ->poll() | |
2897 | * calls can remove this head entry from the list. | |
2898 | */ | |
2899 | n = list_entry(list->next, struct napi_struct, poll_list); | |
1da177e4 | 2900 | |
bea3348e SH |
2901 | have = netpoll_poll_lock(n); |
2902 | ||
2903 | weight = n->weight; | |
2904 | ||
0a7606c1 DM |
2905 | /* This NAPI_STATE_SCHED test is for avoiding a race |
2906 | * with netpoll's poll_napi(). Only the entity which | |
2907 | * obtains the lock and sees NAPI_STATE_SCHED set will | |
2908 | * actually make the ->poll() call. Therefore we avoid | |
2909 | * accidently calling ->poll() when NAPI is not scheduled. | |
2910 | */ | |
2911 | work = 0; | |
4ea7e386 | 2912 | if (test_bit(NAPI_STATE_SCHED, &n->state)) { |
0a7606c1 | 2913 | work = n->poll(n, weight); |
4ea7e386 NH |
2914 | trace_napi_poll(n); |
2915 | } | |
bea3348e SH |
2916 | |
2917 | WARN_ON_ONCE(work > weight); | |
2918 | ||
2919 | budget -= work; | |
2920 | ||
2921 | local_irq_disable(); | |
2922 | ||
2923 | /* Drivers must not modify the NAPI state if they | |
2924 | * consume the entire weight. In such cases this code | |
2925 | * still "owns" the NAPI instance and therefore can | |
2926 | * move the instance around on the list at-will. | |
2927 | */ | |
fed17f30 | 2928 | if (unlikely(work == weight)) { |
ff780cd8 HX |
2929 | if (unlikely(napi_disable_pending(n))) { |
2930 | local_irq_enable(); | |
2931 | napi_complete(n); | |
2932 | local_irq_disable(); | |
2933 | } else | |
fed17f30 DM |
2934 | list_move_tail(&n->poll_list, list); |
2935 | } | |
bea3348e SH |
2936 | |
2937 | netpoll_poll_unlock(have); | |
1da177e4 LT |
2938 | } |
2939 | out: | |
515e06c4 | 2940 | local_irq_enable(); |
bea3348e | 2941 | |
db217334 CL |
2942 | #ifdef CONFIG_NET_DMA |
2943 | /* | |
2944 | * There may not be any more sk_buffs coming right now, so push | |
2945 | * any pending DMA copies to hardware | |
2946 | */ | |
2ba05622 | 2947 | dma_issue_pending_all(); |
db217334 | 2948 | #endif |
bea3348e | 2949 | |
1da177e4 LT |
2950 | return; |
2951 | ||
2952 | softnet_break: | |
2953 | __get_cpu_var(netdev_rx_stat).time_squeeze++; | |
2954 | __raise_softirq_irqoff(NET_RX_SOFTIRQ); | |
2955 | goto out; | |
2956 | } | |
2957 | ||
d1b19dff | 2958 | static gifconf_func_t *gifconf_list[NPROTO]; |
1da177e4 LT |
2959 | |
2960 | /** | |
2961 | * register_gifconf - register a SIOCGIF handler | |
2962 | * @family: Address family | |
2963 | * @gifconf: Function handler | |
2964 | * | |
2965 | * Register protocol dependent address dumping routines. The handler | |
2966 | * that is passed must not be freed or reused until it has been replaced | |
2967 | * by another handler. | |
2968 | */ | |
d1b19dff | 2969 | int register_gifconf(unsigned int family, gifconf_func_t *gifconf) |
1da177e4 LT |
2970 | { |
2971 | if (family >= NPROTO) | |
2972 | return -EINVAL; | |
2973 | gifconf_list[family] = gifconf; | |
2974 | return 0; | |
2975 | } | |
d1b19dff | 2976 | EXPORT_SYMBOL(register_gifconf); |
1da177e4 LT |
2977 | |
2978 | ||
2979 | /* | |
2980 | * Map an interface index to its name (SIOCGIFNAME) | |
2981 | */ | |
2982 | ||
2983 | /* | |
2984 | * We need this ioctl for efficient implementation of the | |
2985 | * if_indextoname() function required by the IPv6 API. Without | |
2986 | * it, we would have to search all the interfaces to find a | |
2987 | * match. --pb | |
2988 | */ | |
2989 | ||
881d966b | 2990 | static int dev_ifname(struct net *net, struct ifreq __user *arg) |
1da177e4 LT |
2991 | { |
2992 | struct net_device *dev; | |
2993 | struct ifreq ifr; | |
2994 | ||
2995 | /* | |
2996 | * Fetch the caller's info block. | |
2997 | */ | |
2998 | ||
2999 | if (copy_from_user(&ifr, arg, sizeof(struct ifreq))) | |
3000 | return -EFAULT; | |
3001 | ||
fb699dfd ED |
3002 | rcu_read_lock(); |
3003 | dev = dev_get_by_index_rcu(net, ifr.ifr_ifindex); | |
1da177e4 | 3004 | if (!dev) { |
fb699dfd | 3005 | rcu_read_unlock(); |
1da177e4 LT |
3006 | return -ENODEV; |
3007 | } | |
3008 | ||
3009 | strcpy(ifr.ifr_name, dev->name); | |
fb699dfd | 3010 | rcu_read_unlock(); |
1da177e4 LT |
3011 | |
3012 | if (copy_to_user(arg, &ifr, sizeof(struct ifreq))) | |
3013 | return -EFAULT; | |
3014 | return 0; | |
3015 | } | |
3016 | ||
3017 | /* | |
3018 | * Perform a SIOCGIFCONF call. This structure will change | |
3019 | * size eventually, and there is nothing I can do about it. | |
3020 | * Thus we will need a 'compatibility mode'. | |
3021 | */ | |
3022 | ||
881d966b | 3023 | static int dev_ifconf(struct net *net, char __user *arg) |
1da177e4 LT |
3024 | { |
3025 | struct ifconf ifc; | |
3026 | struct net_device *dev; | |
3027 | char __user *pos; | |
3028 | int len; | |
3029 | int total; | |
3030 | int i; | |
3031 | ||
3032 | /* | |
3033 | * Fetch the caller's info block. | |
3034 | */ | |
3035 | ||
3036 | if (copy_from_user(&ifc, arg, sizeof(struct ifconf))) | |
3037 | return -EFAULT; | |
3038 | ||
3039 | pos = ifc.ifc_buf; | |
3040 | len = ifc.ifc_len; | |
3041 | ||
3042 | /* | |
3043 | * Loop over the interfaces, and write an info block for each. | |
3044 | */ | |
3045 | ||
3046 | total = 0; | |
881d966b | 3047 | for_each_netdev(net, dev) { |
1da177e4 LT |
3048 | for (i = 0; i < NPROTO; i++) { |
3049 | if (gifconf_list[i]) { | |
3050 | int done; | |
3051 | if (!pos) | |
3052 | done = gifconf_list[i](dev, NULL, 0); | |
3053 | else | |
3054 | done = gifconf_list[i](dev, pos + total, | |
3055 | len - total); | |
3056 | if (done < 0) | |
3057 | return -EFAULT; | |
3058 | total += done; | |
3059 | } | |
3060 | } | |
4ec93edb | 3061 | } |
1da177e4 LT |
3062 | |
3063 | /* | |
3064 | * All done. Write the updated control block back to the caller. | |
3065 | */ | |
3066 | ifc.ifc_len = total; | |
3067 | ||
3068 | /* | |
3069 | * Both BSD and Solaris return 0 here, so we do too. | |
3070 | */ | |
3071 | return copy_to_user(arg, &ifc, sizeof(struct ifconf)) ? -EFAULT : 0; | |
3072 | } | |
3073 | ||
3074 | #ifdef CONFIG_PROC_FS | |
3075 | /* | |
3076 | * This is invoked by the /proc filesystem handler to display a device | |
3077 | * in detail. | |
3078 | */ | |
7562f876 | 3079 | void *dev_seq_start(struct seq_file *seq, loff_t *pos) |
9a429c49 | 3080 | __acquires(dev_base_lock) |
1da177e4 | 3081 | { |
e372c414 | 3082 | struct net *net = seq_file_net(seq); |
7562f876 | 3083 | loff_t off; |
1da177e4 | 3084 | struct net_device *dev; |
1da177e4 | 3085 | |
7562f876 PE |
3086 | read_lock(&dev_base_lock); |
3087 | if (!*pos) | |
3088 | return SEQ_START_TOKEN; | |
1da177e4 | 3089 | |
7562f876 | 3090 | off = 1; |
881d966b | 3091 | for_each_netdev(net, dev) |
7562f876 PE |
3092 | if (off++ == *pos) |
3093 | return dev; | |
1da177e4 | 3094 | |
7562f876 | 3095 | return NULL; |
1da177e4 LT |
3096 | } |
3097 | ||
3098 | void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos) | |
3099 | { | |
e372c414 | 3100 | struct net *net = seq_file_net(seq); |
1da177e4 | 3101 | ++*pos; |
7562f876 | 3102 | return v == SEQ_START_TOKEN ? |
881d966b | 3103 | first_net_device(net) : next_net_device((struct net_device *)v); |
1da177e4 LT |
3104 | } |
3105 | ||
3106 | void dev_seq_stop(struct seq_file *seq, void *v) | |
9a429c49 | 3107 | __releases(dev_base_lock) |
1da177e4 LT |
3108 | { |
3109 | read_unlock(&dev_base_lock); | |
3110 | } | |
3111 | ||
3112 | static void dev_seq_printf_stats(struct seq_file *seq, struct net_device *dev) | |
3113 | { | |
eeda3fd6 | 3114 | const struct net_device_stats *stats = dev_get_stats(dev); |
1da177e4 | 3115 | |
5a1b5898 RR |
3116 | seq_printf(seq, "%6s:%8lu %7lu %4lu %4lu %4lu %5lu %10lu %9lu " |
3117 | "%8lu %7lu %4lu %4lu %4lu %5lu %7lu %10lu\n", | |
3118 | dev->name, stats->rx_bytes, stats->rx_packets, | |
3119 | stats->rx_errors, | |
3120 | stats->rx_dropped + stats->rx_missed_errors, | |
3121 | stats->rx_fifo_errors, | |
3122 | stats->rx_length_errors + stats->rx_over_errors + | |
3123 | stats->rx_crc_errors + stats->rx_frame_errors, | |
3124 | stats->rx_compressed, stats->multicast, | |
3125 | stats->tx_bytes, stats->tx_packets, | |
3126 | stats->tx_errors, stats->tx_dropped, | |
3127 | stats->tx_fifo_errors, stats->collisions, | |
3128 | stats->tx_carrier_errors + | |
3129 | stats->tx_aborted_errors + | |
3130 | stats->tx_window_errors + | |
3131 | stats->tx_heartbeat_errors, | |
3132 | stats->tx_compressed); | |
1da177e4 LT |
3133 | } |
3134 | ||
3135 | /* | |
3136 | * Called from the PROCfs module. This now uses the new arbitrary sized | |
3137 | * /proc/net interface to create /proc/net/dev | |
3138 | */ | |
3139 | static int dev_seq_show(struct seq_file *seq, void *v) | |
3140 | { | |
3141 | if (v == SEQ_START_TOKEN) | |
3142 | seq_puts(seq, "Inter-| Receive " | |
3143 | " | Transmit\n" | |
3144 | " face |bytes packets errs drop fifo frame " | |
3145 | "compressed multicast|bytes packets errs " | |
3146 | "drop fifo colls carrier compressed\n"); | |
3147 | else | |
3148 | dev_seq_printf_stats(seq, v); | |
3149 | return 0; | |
3150 | } | |
3151 | ||
3152 | static struct netif_rx_stats *softnet_get_online(loff_t *pos) | |
3153 | { | |
3154 | struct netif_rx_stats *rc = NULL; | |
3155 | ||
0c0b0aca | 3156 | while (*pos < nr_cpu_ids) |
4ec93edb | 3157 | if (cpu_online(*pos)) { |
1da177e4 LT |
3158 | rc = &per_cpu(netdev_rx_stat, *pos); |
3159 | break; | |
3160 | } else | |
3161 | ++*pos; | |
3162 | return rc; | |
3163 | } | |
3164 | ||
3165 | static void *softnet_seq_start(struct seq_file *seq, loff_t *pos) | |
3166 | { | |
3167 | return softnet_get_online(pos); | |
3168 | } | |
3169 | ||
3170 | static void *softnet_seq_next(struct seq_file *seq, void *v, loff_t *pos) | |
3171 | { | |
3172 | ++*pos; | |
3173 | return softnet_get_online(pos); | |
3174 | } | |
3175 | ||
3176 | static void softnet_seq_stop(struct seq_file *seq, void *v) | |
3177 | { | |
3178 | } | |
3179 | ||
3180 | static int softnet_seq_show(struct seq_file *seq, void *v) | |
3181 | { | |
3182 | struct netif_rx_stats *s = v; | |
3183 | ||
3184 | seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x %08x\n", | |
31aa02c5 | 3185 | s->total, s->dropped, s->time_squeeze, 0, |
c1ebcdb8 | 3186 | 0, 0, 0, 0, /* was fastroute */ |
d1b19dff | 3187 | s->cpu_collision); |
1da177e4 LT |
3188 | return 0; |
3189 | } | |
3190 | ||
f690808e | 3191 | static const struct seq_operations dev_seq_ops = { |
1da177e4 LT |
3192 | .start = dev_seq_start, |
3193 | .next = dev_seq_next, | |
3194 | .stop = dev_seq_stop, | |
3195 | .show = dev_seq_show, | |
3196 | }; | |
3197 | ||
3198 | static int dev_seq_open(struct inode *inode, struct file *file) | |
3199 | { | |
e372c414 DL |
3200 | return seq_open_net(inode, file, &dev_seq_ops, |
3201 | sizeof(struct seq_net_private)); | |
1da177e4 LT |
3202 | } |
3203 | ||
9a32144e | 3204 | static const struct file_operations dev_seq_fops = { |
1da177e4 LT |
3205 | .owner = THIS_MODULE, |
3206 | .open = dev_seq_open, | |
3207 | .read = seq_read, | |
3208 | .llseek = seq_lseek, | |
e372c414 | 3209 | .release = seq_release_net, |
1da177e4 LT |
3210 | }; |
3211 | ||
f690808e | 3212 | static const struct seq_operations softnet_seq_ops = { |
1da177e4 LT |
3213 | .start = softnet_seq_start, |
3214 | .next = softnet_seq_next, | |
3215 | .stop = softnet_seq_stop, | |
3216 | .show = softnet_seq_show, | |
3217 | }; | |
3218 | ||
3219 | static int softnet_seq_open(struct inode *inode, struct file *file) | |
3220 | { | |
3221 | return seq_open(file, &softnet_seq_ops); | |
3222 | } | |
3223 | ||
9a32144e | 3224 | static const struct file_operations softnet_seq_fops = { |
1da177e4 LT |
3225 | .owner = THIS_MODULE, |
3226 | .open = softnet_seq_open, | |
3227 | .read = seq_read, | |
3228 | .llseek = seq_lseek, | |
3229 | .release = seq_release, | |
3230 | }; | |
3231 | ||
0e1256ff SH |
3232 | static void *ptype_get_idx(loff_t pos) |
3233 | { | |
3234 | struct packet_type *pt = NULL; | |
3235 | loff_t i = 0; | |
3236 | int t; | |
3237 | ||
3238 | list_for_each_entry_rcu(pt, &ptype_all, list) { | |
3239 | if (i == pos) | |
3240 | return pt; | |
3241 | ++i; | |
3242 | } | |
3243 | ||
82d8a867 | 3244 | for (t = 0; t < PTYPE_HASH_SIZE; t++) { |
0e1256ff SH |
3245 | list_for_each_entry_rcu(pt, &ptype_base[t], list) { |
3246 | if (i == pos) | |
3247 | return pt; | |
3248 | ++i; | |
3249 | } | |
3250 | } | |
3251 | return NULL; | |
3252 | } | |
3253 | ||
3254 | static void *ptype_seq_start(struct seq_file *seq, loff_t *pos) | |
72348a42 | 3255 | __acquires(RCU) |
0e1256ff SH |
3256 | { |
3257 | rcu_read_lock(); | |
3258 | return *pos ? ptype_get_idx(*pos - 1) : SEQ_START_TOKEN; | |
3259 | } | |
3260 | ||
3261 | static void *ptype_seq_next(struct seq_file *seq, void *v, loff_t *pos) | |
3262 | { | |
3263 | struct packet_type *pt; | |
3264 | struct list_head *nxt; | |
3265 | int hash; | |
3266 | ||
3267 | ++*pos; | |
3268 | if (v == SEQ_START_TOKEN) | |
3269 | return ptype_get_idx(0); | |
3270 | ||
3271 | pt = v; | |
3272 | nxt = pt->list.next; | |
3273 | if (pt->type == htons(ETH_P_ALL)) { | |
3274 | if (nxt != &ptype_all) | |
3275 | goto found; | |
3276 | hash = 0; | |
3277 | nxt = ptype_base[0].next; | |
3278 | } else | |
82d8a867 | 3279 | hash = ntohs(pt->type) & PTYPE_HASH_MASK; |
0e1256ff SH |
3280 | |
3281 | while (nxt == &ptype_base[hash]) { | |
82d8a867 | 3282 | if (++hash >= PTYPE_HASH_SIZE) |
0e1256ff SH |
3283 | return NULL; |
3284 | nxt = ptype_base[hash].next; | |
3285 | } | |
3286 | found: | |
3287 | return list_entry(nxt, struct packet_type, list); | |
3288 | } | |
3289 | ||
3290 | static void ptype_seq_stop(struct seq_file *seq, void *v) | |
72348a42 | 3291 | __releases(RCU) |
0e1256ff SH |
3292 | { |
3293 | rcu_read_unlock(); | |
3294 | } | |
3295 | ||
0e1256ff SH |
3296 | static int ptype_seq_show(struct seq_file *seq, void *v) |
3297 | { | |
3298 | struct packet_type *pt = v; | |
3299 | ||
3300 | if (v == SEQ_START_TOKEN) | |
3301 | seq_puts(seq, "Type Device Function\n"); | |
c346dca1 | 3302 | else if (pt->dev == NULL || dev_net(pt->dev) == seq_file_net(seq)) { |
0e1256ff SH |
3303 | if (pt->type == htons(ETH_P_ALL)) |
3304 | seq_puts(seq, "ALL "); | |
3305 | else | |
3306 | seq_printf(seq, "%04x", ntohs(pt->type)); | |
3307 | ||
908cd2da AD |
3308 | seq_printf(seq, " %-8s %pF\n", |
3309 | pt->dev ? pt->dev->name : "", pt->func); | |
0e1256ff SH |
3310 | } |
3311 | ||
3312 | return 0; | |
3313 | } | |
3314 | ||
3315 | static const struct seq_operations ptype_seq_ops = { | |
3316 | .start = ptype_seq_start, | |
3317 | .next = ptype_seq_next, | |
3318 | .stop = ptype_seq_stop, | |
3319 | .show = ptype_seq_show, | |
3320 | }; | |
3321 | ||
3322 | static int ptype_seq_open(struct inode *inode, struct file *file) | |
3323 | { | |
2feb27db PE |
3324 | return seq_open_net(inode, file, &ptype_seq_ops, |
3325 | sizeof(struct seq_net_private)); | |
0e1256ff SH |
3326 | } |
3327 | ||
3328 | static const struct file_operations ptype_seq_fops = { | |
3329 | .owner = THIS_MODULE, | |
3330 | .open = ptype_seq_open, | |
3331 | .read = seq_read, | |
3332 | .llseek = seq_lseek, | |
2feb27db | 3333 | .release = seq_release_net, |
0e1256ff SH |
3334 | }; |
3335 | ||
3336 | ||
4665079c | 3337 | static int __net_init dev_proc_net_init(struct net *net) |
1da177e4 LT |
3338 | { |
3339 | int rc = -ENOMEM; | |
3340 | ||
881d966b | 3341 | if (!proc_net_fops_create(net, "dev", S_IRUGO, &dev_seq_fops)) |
1da177e4 | 3342 | goto out; |
881d966b | 3343 | if (!proc_net_fops_create(net, "softnet_stat", S_IRUGO, &softnet_seq_fops)) |
1da177e4 | 3344 | goto out_dev; |
881d966b | 3345 | if (!proc_net_fops_create(net, "ptype", S_IRUGO, &ptype_seq_fops)) |
457c4cbc | 3346 | goto out_softnet; |
0e1256ff | 3347 | |
881d966b | 3348 | if (wext_proc_init(net)) |
457c4cbc | 3349 | goto out_ptype; |
1da177e4 LT |
3350 | rc = 0; |
3351 | out: | |
3352 | return rc; | |
457c4cbc | 3353 | out_ptype: |
881d966b | 3354 | proc_net_remove(net, "ptype"); |
1da177e4 | 3355 | out_softnet: |
881d966b | 3356 | proc_net_remove(net, "softnet_stat"); |
1da177e4 | 3357 | out_dev: |
881d966b | 3358 | proc_net_remove(net, "dev"); |
1da177e4 LT |
3359 | goto out; |
3360 | } | |
881d966b | 3361 | |
4665079c | 3362 | static void __net_exit dev_proc_net_exit(struct net *net) |
881d966b EB |
3363 | { |
3364 | wext_proc_exit(net); | |
3365 | ||
3366 | proc_net_remove(net, "ptype"); | |
3367 | proc_net_remove(net, "softnet_stat"); | |
3368 | proc_net_remove(net, "dev"); | |
3369 | } | |
3370 | ||
022cbae6 | 3371 | static struct pernet_operations __net_initdata dev_proc_ops = { |
881d966b EB |
3372 | .init = dev_proc_net_init, |
3373 | .exit = dev_proc_net_exit, | |
3374 | }; | |
3375 | ||
3376 | static int __init dev_proc_init(void) | |
3377 | { | |
3378 | return register_pernet_subsys(&dev_proc_ops); | |
3379 | } | |
1da177e4 LT |
3380 | #else |
3381 | #define dev_proc_init() 0 | |
3382 | #endif /* CONFIG_PROC_FS */ | |
3383 | ||
3384 | ||
3385 | /** | |
3386 | * netdev_set_master - set up master/slave pair | |
3387 | * @slave: slave device | |
3388 | * @master: new master device | |
3389 | * | |
3390 | * Changes the master device of the slave. Pass %NULL to break the | |
3391 | * bonding. The caller must hold the RTNL semaphore. On a failure | |
3392 | * a negative errno code is returned. On success the reference counts | |
3393 | * are adjusted, %RTM_NEWLINK is sent to the routing socket and the | |
3394 | * function returns zero. | |
3395 | */ | |
3396 | int netdev_set_master(struct net_device *slave, struct net_device *master) | |
3397 | { | |
3398 | struct net_device *old = slave->master; | |
3399 | ||
3400 | ASSERT_RTNL(); | |
3401 | ||
3402 | if (master) { | |
3403 | if (old) | |
3404 | return -EBUSY; | |
3405 | dev_hold(master); | |
3406 | } | |
3407 | ||
3408 | slave->master = master; | |
4ec93edb | 3409 | |
1da177e4 LT |
3410 | synchronize_net(); |
3411 | ||
3412 | if (old) | |
3413 | dev_put(old); | |
3414 | ||
3415 | if (master) | |
3416 | slave->flags |= IFF_SLAVE; | |
3417 | else | |
3418 | slave->flags &= ~IFF_SLAVE; | |
3419 | ||
3420 | rtmsg_ifinfo(RTM_NEWLINK, slave, IFF_SLAVE); | |
3421 | return 0; | |
3422 | } | |
d1b19dff | 3423 | EXPORT_SYMBOL(netdev_set_master); |
1da177e4 | 3424 | |
b6c40d68 PM |
3425 | static void dev_change_rx_flags(struct net_device *dev, int flags) |
3426 | { | |
d314774c SH |
3427 | const struct net_device_ops *ops = dev->netdev_ops; |
3428 | ||
3429 | if ((dev->flags & IFF_UP) && ops->ndo_change_rx_flags) | |
3430 | ops->ndo_change_rx_flags(dev, flags); | |
b6c40d68 PM |
3431 | } |
3432 | ||
dad9b335 | 3433 | static int __dev_set_promiscuity(struct net_device *dev, int inc) |
1da177e4 LT |
3434 | { |
3435 | unsigned short old_flags = dev->flags; | |
8192b0c4 DH |
3436 | uid_t uid; |
3437 | gid_t gid; | |
1da177e4 | 3438 | |
24023451 PM |
3439 | ASSERT_RTNL(); |
3440 | ||
dad9b335 WC |
3441 | dev->flags |= IFF_PROMISC; |
3442 | dev->promiscuity += inc; | |
3443 | if (dev->promiscuity == 0) { | |
3444 | /* | |
3445 | * Avoid overflow. | |
3446 | * If inc causes overflow, untouch promisc and return error. | |
3447 | */ | |
3448 | if (inc < 0) | |
3449 | dev->flags &= ~IFF_PROMISC; | |
3450 | else { | |
3451 | dev->promiscuity -= inc; | |
3452 | printk(KERN_WARNING "%s: promiscuity touches roof, " | |
3453 | "set promiscuity failed, promiscuity feature " | |
3454 | "of device might be broken.\n", dev->name); | |
3455 | return -EOVERFLOW; | |
3456 | } | |
3457 | } | |
52609c0b | 3458 | if (dev->flags != old_flags) { |
1da177e4 LT |
3459 | printk(KERN_INFO "device %s %s promiscuous mode\n", |
3460 | dev->name, (dev->flags & IFF_PROMISC) ? "entered" : | |
4ec93edb | 3461 | "left"); |
8192b0c4 DH |
3462 | if (audit_enabled) { |
3463 | current_uid_gid(&uid, &gid); | |
7759db82 KHK |
3464 | audit_log(current->audit_context, GFP_ATOMIC, |
3465 | AUDIT_ANOM_PROMISCUOUS, | |
3466 | "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u", | |
3467 | dev->name, (dev->flags & IFF_PROMISC), | |
3468 | (old_flags & IFF_PROMISC), | |
3469 | audit_get_loginuid(current), | |
8192b0c4 | 3470 | uid, gid, |
7759db82 | 3471 | audit_get_sessionid(current)); |
8192b0c4 | 3472 | } |
24023451 | 3473 | |
b6c40d68 | 3474 | dev_change_rx_flags(dev, IFF_PROMISC); |
1da177e4 | 3475 | } |
dad9b335 | 3476 | return 0; |
1da177e4 LT |
3477 | } |
3478 | ||
4417da66 PM |
3479 | /** |
3480 | * dev_set_promiscuity - update promiscuity count on a device | |
3481 | * @dev: device | |
3482 | * @inc: modifier | |
3483 | * | |
3484 | * Add or remove promiscuity from a device. While the count in the device | |
3485 | * remains above zero the interface remains promiscuous. Once it hits zero | |
3486 | * the device reverts back to normal filtering operation. A negative inc | |
3487 | * value is used to drop promiscuity on the device. | |
dad9b335 | 3488 | * Return 0 if successful or a negative errno code on error. |
4417da66 | 3489 | */ |
dad9b335 | 3490 | int dev_set_promiscuity(struct net_device *dev, int inc) |
4417da66 PM |
3491 | { |
3492 | unsigned short old_flags = dev->flags; | |
dad9b335 | 3493 | int err; |
4417da66 | 3494 | |
dad9b335 | 3495 | err = __dev_set_promiscuity(dev, inc); |
4b5a698e | 3496 | if (err < 0) |
dad9b335 | 3497 | return err; |
4417da66 PM |
3498 | if (dev->flags != old_flags) |
3499 | dev_set_rx_mode(dev); | |
dad9b335 | 3500 | return err; |
4417da66 | 3501 | } |
d1b19dff | 3502 | EXPORT_SYMBOL(dev_set_promiscuity); |
4417da66 | 3503 | |
1da177e4 LT |
3504 | /** |
3505 | * dev_set_allmulti - update allmulti count on a device | |
3506 | * @dev: device | |
3507 | * @inc: modifier | |
3508 | * | |
3509 | * Add or remove reception of all multicast frames to a device. While the | |
3510 | * count in the device remains above zero the interface remains listening | |
3511 | * to all interfaces. Once it hits zero the device reverts back to normal | |
3512 | * filtering operation. A negative @inc value is used to drop the counter | |
3513 | * when releasing a resource needing all multicasts. | |
dad9b335 | 3514 | * Return 0 if successful or a negative errno code on error. |
1da177e4 LT |
3515 | */ |
3516 | ||
dad9b335 | 3517 | int dev_set_allmulti(struct net_device *dev, int inc) |
1da177e4 LT |
3518 | { |
3519 | unsigned short old_flags = dev->flags; | |
3520 | ||
24023451 PM |
3521 | ASSERT_RTNL(); |
3522 | ||
1da177e4 | 3523 | dev->flags |= IFF_ALLMULTI; |
dad9b335 WC |
3524 | dev->allmulti += inc; |
3525 | if (dev->allmulti == 0) { | |
3526 | /* | |
3527 | * Avoid overflow. | |
3528 | * If inc causes overflow, untouch allmulti and return error. | |
3529 | */ | |
3530 | if (inc < 0) | |
3531 | dev->flags &= ~IFF_ALLMULTI; | |
3532 | else { | |
3533 | dev->allmulti -= inc; | |
3534 | printk(KERN_WARNING "%s: allmulti touches roof, " | |
3535 | "set allmulti failed, allmulti feature of " | |
3536 | "device might be broken.\n", dev->name); | |
3537 | return -EOVERFLOW; | |
3538 | } | |
3539 | } | |
24023451 | 3540 | if (dev->flags ^ old_flags) { |
b6c40d68 | 3541 | dev_change_rx_flags(dev, IFF_ALLMULTI); |
4417da66 | 3542 | dev_set_rx_mode(dev); |
24023451 | 3543 | } |
dad9b335 | 3544 | return 0; |
4417da66 | 3545 | } |
d1b19dff | 3546 | EXPORT_SYMBOL(dev_set_allmulti); |
4417da66 PM |
3547 | |
3548 | /* | |
3549 | * Upload unicast and multicast address lists to device and | |
3550 | * configure RX filtering. When the device doesn't support unicast | |
53ccaae1 | 3551 | * filtering it is put in promiscuous mode while unicast addresses |
4417da66 PM |
3552 | * are present. |
3553 | */ | |
3554 | void __dev_set_rx_mode(struct net_device *dev) | |
3555 | { | |
d314774c SH |
3556 | const struct net_device_ops *ops = dev->netdev_ops; |
3557 | ||
4417da66 PM |
3558 | /* dev_open will call this function so the list will stay sane. */ |
3559 | if (!(dev->flags&IFF_UP)) | |
3560 | return; | |
3561 | ||
3562 | if (!netif_device_present(dev)) | |
40b77c94 | 3563 | return; |
4417da66 | 3564 | |
d314774c SH |
3565 | if (ops->ndo_set_rx_mode) |
3566 | ops->ndo_set_rx_mode(dev); | |
4417da66 PM |
3567 | else { |
3568 | /* Unicast addresses changes may only happen under the rtnl, | |
3569 | * therefore calling __dev_set_promiscuity here is safe. | |
3570 | */ | |
31278e71 | 3571 | if (dev->uc.count > 0 && !dev->uc_promisc) { |
4417da66 PM |
3572 | __dev_set_promiscuity(dev, 1); |
3573 | dev->uc_promisc = 1; | |
31278e71 | 3574 | } else if (dev->uc.count == 0 && dev->uc_promisc) { |
4417da66 PM |
3575 | __dev_set_promiscuity(dev, -1); |
3576 | dev->uc_promisc = 0; | |
3577 | } | |
3578 | ||
d314774c SH |
3579 | if (ops->ndo_set_multicast_list) |
3580 | ops->ndo_set_multicast_list(dev); | |
4417da66 PM |
3581 | } |
3582 | } | |
3583 | ||
3584 | void dev_set_rx_mode(struct net_device *dev) | |
3585 | { | |
b9e40857 | 3586 | netif_addr_lock_bh(dev); |
4417da66 | 3587 | __dev_set_rx_mode(dev); |
b9e40857 | 3588 | netif_addr_unlock_bh(dev); |
1da177e4 LT |
3589 | } |
3590 | ||
f001fde5 JP |
3591 | /* hw addresses list handling functions */ |
3592 | ||
31278e71 JP |
3593 | static int __hw_addr_add(struct netdev_hw_addr_list *list, unsigned char *addr, |
3594 | int addr_len, unsigned char addr_type) | |
f001fde5 JP |
3595 | { |
3596 | struct netdev_hw_addr *ha; | |
3597 | int alloc_size; | |
3598 | ||
3599 | if (addr_len > MAX_ADDR_LEN) | |
3600 | return -EINVAL; | |
3601 | ||
31278e71 | 3602 | list_for_each_entry(ha, &list->list, list) { |
ccffad25 JP |
3603 | if (!memcmp(ha->addr, addr, addr_len) && |
3604 | ha->type == addr_type) { | |
3605 | ha->refcount++; | |
3606 | return 0; | |
3607 | } | |
3608 | } | |
3609 | ||
3610 | ||
f001fde5 JP |
3611 | alloc_size = sizeof(*ha); |
3612 | if (alloc_size < L1_CACHE_BYTES) | |
3613 | alloc_size = L1_CACHE_BYTES; | |
3614 | ha = kmalloc(alloc_size, GFP_ATOMIC); | |
3615 | if (!ha) | |
3616 | return -ENOMEM; | |
3617 | memcpy(ha->addr, addr, addr_len); | |
3618 | ha->type = addr_type; | |
ccffad25 JP |
3619 | ha->refcount = 1; |
3620 | ha->synced = false; | |
31278e71 JP |
3621 | list_add_tail_rcu(&ha->list, &list->list); |
3622 | list->count++; | |
f001fde5 JP |
3623 | return 0; |
3624 | } | |
3625 | ||
3626 | static void ha_rcu_free(struct rcu_head *head) | |
3627 | { | |
3628 | struct netdev_hw_addr *ha; | |
3629 | ||
3630 | ha = container_of(head, struct netdev_hw_addr, rcu_head); | |
3631 | kfree(ha); | |
3632 | } | |
3633 | ||
31278e71 JP |
3634 | static int __hw_addr_del(struct netdev_hw_addr_list *list, unsigned char *addr, |
3635 | int addr_len, unsigned char addr_type) | |
f001fde5 JP |
3636 | { |
3637 | struct netdev_hw_addr *ha; | |
f001fde5 | 3638 | |
31278e71 | 3639 | list_for_each_entry(ha, &list->list, list) { |
ccffad25 | 3640 | if (!memcmp(ha->addr, addr, addr_len) && |
f001fde5 | 3641 | (ha->type == addr_type || !addr_type)) { |
ccffad25 JP |
3642 | if (--ha->refcount) |
3643 | return 0; | |
f001fde5 JP |
3644 | list_del_rcu(&ha->list); |
3645 | call_rcu(&ha->rcu_head, ha_rcu_free); | |
31278e71 | 3646 | list->count--; |
f001fde5 JP |
3647 | return 0; |
3648 | } | |
3649 | } | |
3650 | return -ENOENT; | |
3651 | } | |
3652 | ||
31278e71 JP |
3653 | static int __hw_addr_add_multiple(struct netdev_hw_addr_list *to_list, |
3654 | struct netdev_hw_addr_list *from_list, | |
3655 | int addr_len, | |
ccffad25 | 3656 | unsigned char addr_type) |
f001fde5 JP |
3657 | { |
3658 | int err; | |
3659 | struct netdev_hw_addr *ha, *ha2; | |
3660 | unsigned char type; | |
3661 | ||
31278e71 | 3662 | list_for_each_entry(ha, &from_list->list, list) { |
f001fde5 | 3663 | type = addr_type ? addr_type : ha->type; |
31278e71 | 3664 | err = __hw_addr_add(to_list, ha->addr, addr_len, type); |
f001fde5 JP |
3665 | if (err) |
3666 | goto unroll; | |
3667 | } | |
3668 | return 0; | |
3669 | ||
3670 | unroll: | |
31278e71 | 3671 | list_for_each_entry(ha2, &from_list->list, list) { |
f001fde5 JP |
3672 | if (ha2 == ha) |
3673 | break; | |
3674 | type = addr_type ? addr_type : ha2->type; | |
31278e71 | 3675 | __hw_addr_del(to_list, ha2->addr, addr_len, type); |
f001fde5 JP |
3676 | } |
3677 | return err; | |
3678 | } | |
3679 | ||
31278e71 JP |
3680 | static void __hw_addr_del_multiple(struct netdev_hw_addr_list *to_list, |
3681 | struct netdev_hw_addr_list *from_list, | |
3682 | int addr_len, | |
ccffad25 | 3683 | unsigned char addr_type) |
f001fde5 JP |
3684 | { |
3685 | struct netdev_hw_addr *ha; | |
3686 | unsigned char type; | |
3687 | ||
31278e71 | 3688 | list_for_each_entry(ha, &from_list->list, list) { |
f001fde5 | 3689 | type = addr_type ? addr_type : ha->type; |
31278e71 | 3690 | __hw_addr_del(to_list, ha->addr, addr_len, addr_type); |
ccffad25 JP |
3691 | } |
3692 | } | |
3693 | ||
31278e71 JP |
3694 | static int __hw_addr_sync(struct netdev_hw_addr_list *to_list, |
3695 | struct netdev_hw_addr_list *from_list, | |
ccffad25 JP |
3696 | int addr_len) |
3697 | { | |
3698 | int err = 0; | |
3699 | struct netdev_hw_addr *ha, *tmp; | |
3700 | ||
31278e71 | 3701 | list_for_each_entry_safe(ha, tmp, &from_list->list, list) { |
ccffad25 | 3702 | if (!ha->synced) { |
31278e71 | 3703 | err = __hw_addr_add(to_list, ha->addr, |
ccffad25 JP |
3704 | addr_len, ha->type); |
3705 | if (err) | |
3706 | break; | |
3707 | ha->synced = true; | |
3708 | ha->refcount++; | |
3709 | } else if (ha->refcount == 1) { | |
31278e71 JP |
3710 | __hw_addr_del(to_list, ha->addr, addr_len, ha->type); |
3711 | __hw_addr_del(from_list, ha->addr, addr_len, ha->type); | |
ccffad25 | 3712 | } |
f001fde5 | 3713 | } |
ccffad25 | 3714 | return err; |
f001fde5 JP |
3715 | } |
3716 | ||
31278e71 JP |
3717 | static void __hw_addr_unsync(struct netdev_hw_addr_list *to_list, |
3718 | struct netdev_hw_addr_list *from_list, | |
ccffad25 JP |
3719 | int addr_len) |
3720 | { | |
3721 | struct netdev_hw_addr *ha, *tmp; | |
3722 | ||
31278e71 | 3723 | list_for_each_entry_safe(ha, tmp, &from_list->list, list) { |
ccffad25 | 3724 | if (ha->synced) { |
31278e71 | 3725 | __hw_addr_del(to_list, ha->addr, |
ccffad25 JP |
3726 | addr_len, ha->type); |
3727 | ha->synced = false; | |
31278e71 | 3728 | __hw_addr_del(from_list, ha->addr, |
ccffad25 JP |
3729 | addr_len, ha->type); |
3730 | } | |
3731 | } | |
3732 | } | |
3733 | ||
31278e71 | 3734 | static void __hw_addr_flush(struct netdev_hw_addr_list *list) |
f001fde5 JP |
3735 | { |
3736 | struct netdev_hw_addr *ha, *tmp; | |
3737 | ||
31278e71 | 3738 | list_for_each_entry_safe(ha, tmp, &list->list, list) { |
f001fde5 JP |
3739 | list_del_rcu(&ha->list); |
3740 | call_rcu(&ha->rcu_head, ha_rcu_free); | |
3741 | } | |
31278e71 JP |
3742 | list->count = 0; |
3743 | } | |
3744 | ||
3745 | static void __hw_addr_init(struct netdev_hw_addr_list *list) | |
3746 | { | |
3747 | INIT_LIST_HEAD(&list->list); | |
3748 | list->count = 0; | |
f001fde5 JP |
3749 | } |
3750 | ||
3751 | /* Device addresses handling functions */ | |
3752 | ||
3753 | static void dev_addr_flush(struct net_device *dev) | |
3754 | { | |
3755 | /* rtnl_mutex must be held here */ | |
3756 | ||
31278e71 | 3757 | __hw_addr_flush(&dev->dev_addrs); |
f001fde5 JP |
3758 | dev->dev_addr = NULL; |
3759 | } | |
3760 | ||
3761 | static int dev_addr_init(struct net_device *dev) | |
3762 | { | |
3763 | unsigned char addr[MAX_ADDR_LEN]; | |
3764 | struct netdev_hw_addr *ha; | |
3765 | int err; | |
3766 | ||
3767 | /* rtnl_mutex must be held here */ | |
3768 | ||
31278e71 | 3769 | __hw_addr_init(&dev->dev_addrs); |
0c27922e | 3770 | memset(addr, 0, sizeof(addr)); |
31278e71 | 3771 | err = __hw_addr_add(&dev->dev_addrs, addr, sizeof(addr), |
f001fde5 JP |
3772 | NETDEV_HW_ADDR_T_LAN); |
3773 | if (!err) { | |
3774 | /* | |
3775 | * Get the first (previously created) address from the list | |
3776 | * and set dev_addr pointer to this location. | |
3777 | */ | |
31278e71 | 3778 | ha = list_first_entry(&dev->dev_addrs.list, |
f001fde5 JP |
3779 | struct netdev_hw_addr, list); |
3780 | dev->dev_addr = ha->addr; | |
3781 | } | |
3782 | return err; | |
3783 | } | |
3784 | ||
3785 | /** | |
3786 | * dev_addr_add - Add a device address | |
3787 | * @dev: device | |
3788 | * @addr: address to add | |
3789 | * @addr_type: address type | |
3790 | * | |
3791 | * Add a device address to the device or increase the reference count if | |
3792 | * it already exists. | |
3793 | * | |
3794 | * The caller must hold the rtnl_mutex. | |
3795 | */ | |
3796 | int dev_addr_add(struct net_device *dev, unsigned char *addr, | |
3797 | unsigned char addr_type) | |
3798 | { | |
3799 | int err; | |
3800 | ||
3801 | ASSERT_RTNL(); | |
3802 | ||
31278e71 | 3803 | err = __hw_addr_add(&dev->dev_addrs, addr, dev->addr_len, addr_type); |
f001fde5 JP |
3804 | if (!err) |
3805 | call_netdevice_notifiers(NETDEV_CHANGEADDR, dev); | |
3806 | return err; | |
3807 | } | |
3808 | EXPORT_SYMBOL(dev_addr_add); | |
3809 | ||
3810 | /** | |
3811 | * dev_addr_del - Release a device address. | |
3812 | * @dev: device | |
3813 | * @addr: address to delete | |
3814 | * @addr_type: address type | |
3815 | * | |
3816 | * Release reference to a device address and remove it from the device | |
3817 | * if the reference count drops to zero. | |
3818 | * | |
3819 | * The caller must hold the rtnl_mutex. | |
3820 | */ | |
3821 | int dev_addr_del(struct net_device *dev, unsigned char *addr, | |
3822 | unsigned char addr_type) | |
3823 | { | |
3824 | int err; | |
ccffad25 | 3825 | struct netdev_hw_addr *ha; |
f001fde5 JP |
3826 | |
3827 | ASSERT_RTNL(); | |
3828 | ||
ccffad25 JP |
3829 | /* |
3830 | * We can not remove the first address from the list because | |
3831 | * dev->dev_addr points to that. | |
3832 | */ | |
31278e71 JP |
3833 | ha = list_first_entry(&dev->dev_addrs.list, |
3834 | struct netdev_hw_addr, list); | |
ccffad25 JP |
3835 | if (ha->addr == dev->dev_addr && ha->refcount == 1) |
3836 | return -ENOENT; | |
3837 | ||
31278e71 | 3838 | err = __hw_addr_del(&dev->dev_addrs, addr, dev->addr_len, |
ccffad25 | 3839 | addr_type); |
f001fde5 JP |
3840 | if (!err) |
3841 | call_netdevice_notifiers(NETDEV_CHANGEADDR, dev); | |
3842 | return err; | |
3843 | } | |
3844 | EXPORT_SYMBOL(dev_addr_del); | |
3845 | ||
3846 | /** | |
3847 | * dev_addr_add_multiple - Add device addresses from another device | |
3848 | * @to_dev: device to which addresses will be added | |
3849 | * @from_dev: device from which addresses will be added | |
3850 | * @addr_type: address type - 0 means type will be used from from_dev | |
3851 | * | |
3852 | * Add device addresses of the one device to another. | |
3853 | ** | |
3854 | * The caller must hold the rtnl_mutex. | |
3855 | */ | |
3856 | int dev_addr_add_multiple(struct net_device *to_dev, | |
3857 | struct net_device *from_dev, | |
3858 | unsigned char addr_type) | |
3859 | { | |
3860 | int err; | |
3861 | ||
3862 | ASSERT_RTNL(); | |
3863 | ||
3864 | if (from_dev->addr_len != to_dev->addr_len) | |
3865 | return -EINVAL; | |
31278e71 | 3866 | err = __hw_addr_add_multiple(&to_dev->dev_addrs, &from_dev->dev_addrs, |
ccffad25 | 3867 | to_dev->addr_len, addr_type); |
f001fde5 JP |
3868 | if (!err) |
3869 | call_netdevice_notifiers(NETDEV_CHANGEADDR, to_dev); | |
3870 | return err; | |
3871 | } | |
3872 | EXPORT_SYMBOL(dev_addr_add_multiple); | |
3873 | ||
3874 | /** | |
3875 | * dev_addr_del_multiple - Delete device addresses by another device | |
3876 | * @to_dev: device where the addresses will be deleted | |
3877 | * @from_dev: device by which addresses the addresses will be deleted | |
3878 | * @addr_type: address type - 0 means type will used from from_dev | |
3879 | * | |
3880 | * Deletes addresses in to device by the list of addresses in from device. | |
3881 | * | |
3882 | * The caller must hold the rtnl_mutex. | |
3883 | */ | |
3884 | int dev_addr_del_multiple(struct net_device *to_dev, | |
3885 | struct net_device *from_dev, | |
3886 | unsigned char addr_type) | |
3887 | { | |
3888 | ASSERT_RTNL(); | |
3889 | ||
3890 | if (from_dev->addr_len != to_dev->addr_len) | |
3891 | return -EINVAL; | |
31278e71 | 3892 | __hw_addr_del_multiple(&to_dev->dev_addrs, &from_dev->dev_addrs, |
ccffad25 | 3893 | to_dev->addr_len, addr_type); |
f001fde5 JP |
3894 | call_netdevice_notifiers(NETDEV_CHANGEADDR, to_dev); |
3895 | return 0; | |
3896 | } | |
3897 | EXPORT_SYMBOL(dev_addr_del_multiple); | |
3898 | ||
31278e71 | 3899 | /* multicast addresses handling functions */ |
f001fde5 | 3900 | |
61cbc2fc PM |
3901 | int __dev_addr_delete(struct dev_addr_list **list, int *count, |
3902 | void *addr, int alen, int glbl) | |
bf742482 PM |
3903 | { |
3904 | struct dev_addr_list *da; | |
3905 | ||
3906 | for (; (da = *list) != NULL; list = &da->next) { | |
3907 | if (memcmp(da->da_addr, addr, da->da_addrlen) == 0 && | |
3908 | alen == da->da_addrlen) { | |
3909 | if (glbl) { | |
3910 | int old_glbl = da->da_gusers; | |
3911 | da->da_gusers = 0; | |
3912 | if (old_glbl == 0) | |
3913 | break; | |
3914 | } | |
3915 | if (--da->da_users) | |
3916 | return 0; | |
3917 | ||
3918 | *list = da->next; | |
3919 | kfree(da); | |
61cbc2fc | 3920 | (*count)--; |
bf742482 PM |
3921 | return 0; |
3922 | } | |
3923 | } | |
3924 | return -ENOENT; | |
3925 | } | |
3926 | ||
61cbc2fc PM |
3927 | int __dev_addr_add(struct dev_addr_list **list, int *count, |
3928 | void *addr, int alen, int glbl) | |
bf742482 PM |
3929 | { |
3930 | struct dev_addr_list *da; | |
3931 | ||
3932 | for (da = *list; da != NULL; da = da->next) { | |
3933 | if (memcmp(da->da_addr, addr, da->da_addrlen) == 0 && | |
3934 | da->da_addrlen == alen) { | |
3935 | if (glbl) { | |
3936 | int old_glbl = da->da_gusers; | |
3937 | da->da_gusers = 1; | |
3938 | if (old_glbl) | |
3939 | return 0; | |
3940 | } | |
3941 | da->da_users++; | |
3942 | return 0; | |
3943 | } | |
3944 | } | |
3945 | ||
12aa343a | 3946 | da = kzalloc(sizeof(*da), GFP_ATOMIC); |
bf742482 PM |
3947 | if (da == NULL) |
3948 | return -ENOMEM; | |
3949 | memcpy(da->da_addr, addr, alen); | |
3950 | da->da_addrlen = alen; | |
3951 | da->da_users = 1; | |
3952 | da->da_gusers = glbl ? 1 : 0; | |
3953 | da->next = *list; | |
3954 | *list = da; | |
61cbc2fc | 3955 | (*count)++; |
bf742482 PM |
3956 | return 0; |
3957 | } | |
3958 | ||
4417da66 PM |
3959 | /** |
3960 | * dev_unicast_delete - Release secondary unicast address. | |
3961 | * @dev: device | |
0ed72ec4 | 3962 | * @addr: address to delete |
4417da66 PM |
3963 | * |
3964 | * Release reference to a secondary unicast address and remove it | |
0ed72ec4 | 3965 | * from the device if the reference count drops to zero. |
4417da66 PM |
3966 | * |
3967 | * The caller must hold the rtnl_mutex. | |
3968 | */ | |
ccffad25 | 3969 | int dev_unicast_delete(struct net_device *dev, void *addr) |
4417da66 PM |
3970 | { |
3971 | int err; | |
3972 | ||
3973 | ASSERT_RTNL(); | |
3974 | ||
a6ac65db | 3975 | netif_addr_lock_bh(dev); |
31278e71 JP |
3976 | err = __hw_addr_del(&dev->uc, addr, dev->addr_len, |
3977 | NETDEV_HW_ADDR_T_UNICAST); | |
61cbc2fc | 3978 | if (!err) |
4417da66 | 3979 | __dev_set_rx_mode(dev); |
a6ac65db | 3980 | netif_addr_unlock_bh(dev); |
4417da66 PM |
3981 | return err; |
3982 | } | |
3983 | EXPORT_SYMBOL(dev_unicast_delete); | |
3984 | ||
3985 | /** | |
3986 | * dev_unicast_add - add a secondary unicast address | |
3987 | * @dev: device | |
5dbaec5d | 3988 | * @addr: address to add |
4417da66 PM |
3989 | * |
3990 | * Add a secondary unicast address to the device or increase | |
3991 | * the reference count if it already exists. | |
3992 | * | |
3993 | * The caller must hold the rtnl_mutex. | |
3994 | */ | |
ccffad25 | 3995 | int dev_unicast_add(struct net_device *dev, void *addr) |
4417da66 PM |
3996 | { |
3997 | int err; | |
3998 | ||
3999 | ASSERT_RTNL(); | |
4000 | ||
a6ac65db | 4001 | netif_addr_lock_bh(dev); |
31278e71 JP |
4002 | err = __hw_addr_add(&dev->uc, addr, dev->addr_len, |
4003 | NETDEV_HW_ADDR_T_UNICAST); | |
61cbc2fc | 4004 | if (!err) |
4417da66 | 4005 | __dev_set_rx_mode(dev); |
a6ac65db | 4006 | netif_addr_unlock_bh(dev); |
4417da66 PM |
4007 | return err; |
4008 | } | |
4009 | EXPORT_SYMBOL(dev_unicast_add); | |
4010 | ||
e83a2ea8 CL |
4011 | int __dev_addr_sync(struct dev_addr_list **to, int *to_count, |
4012 | struct dev_addr_list **from, int *from_count) | |
4013 | { | |
4014 | struct dev_addr_list *da, *next; | |
4015 | int err = 0; | |
4016 | ||
4017 | da = *from; | |
4018 | while (da != NULL) { | |
4019 | next = da->next; | |
4020 | if (!da->da_synced) { | |
4021 | err = __dev_addr_add(to, to_count, | |
4022 | da->da_addr, da->da_addrlen, 0); | |
4023 | if (err < 0) | |
4024 | break; | |
4025 | da->da_synced = 1; | |
4026 | da->da_users++; | |
4027 | } else if (da->da_users == 1) { | |
4028 | __dev_addr_delete(to, to_count, | |
4029 | da->da_addr, da->da_addrlen, 0); | |
4030 | __dev_addr_delete(from, from_count, | |
4031 | da->da_addr, da->da_addrlen, 0); | |
4032 | } | |
4033 | da = next; | |
4034 | } | |
4035 | return err; | |
4036 | } | |
c4029083 | 4037 | EXPORT_SYMBOL_GPL(__dev_addr_sync); |
e83a2ea8 CL |
4038 | |
4039 | void __dev_addr_unsync(struct dev_addr_list **to, int *to_count, | |
4040 | struct dev_addr_list **from, int *from_count) | |
4041 | { | |
4042 | struct dev_addr_list *da, *next; | |
4043 | ||
4044 | da = *from; | |
4045 | while (da != NULL) { | |
4046 | next = da->next; | |
4047 | if (da->da_synced) { | |
4048 | __dev_addr_delete(to, to_count, | |
4049 | da->da_addr, da->da_addrlen, 0); | |
4050 | da->da_synced = 0; | |
4051 | __dev_addr_delete(from, from_count, | |
4052 | da->da_addr, da->da_addrlen, 0); | |
4053 | } | |
4054 | da = next; | |
4055 | } | |
4056 | } | |
c4029083 | 4057 | EXPORT_SYMBOL_GPL(__dev_addr_unsync); |
e83a2ea8 CL |
4058 | |
4059 | /** | |
4060 | * dev_unicast_sync - Synchronize device's unicast list to another device | |
4061 | * @to: destination device | |
4062 | * @from: source device | |
4063 | * | |
4064 | * Add newly added addresses to the destination device and release | |
a6ac65db JP |
4065 | * addresses that have no users left. The source device must be |
4066 | * locked by netif_tx_lock_bh. | |
e83a2ea8 CL |
4067 | * |
4068 | * This function is intended to be called from the dev->set_rx_mode | |
4069 | * function of layered software devices. | |
4070 | */ | |
4071 | int dev_unicast_sync(struct net_device *to, struct net_device *from) | |
4072 | { | |
4073 | int err = 0; | |
4074 | ||
ccffad25 JP |
4075 | if (to->addr_len != from->addr_len) |
4076 | return -EINVAL; | |
4077 | ||
a6ac65db | 4078 | netif_addr_lock_bh(to); |
31278e71 | 4079 | err = __hw_addr_sync(&to->uc, &from->uc, to->addr_len); |
e83a2ea8 CL |
4080 | if (!err) |
4081 | __dev_set_rx_mode(to); | |
a6ac65db | 4082 | netif_addr_unlock_bh(to); |
e83a2ea8 CL |
4083 | return err; |
4084 | } | |
4085 | EXPORT_SYMBOL(dev_unicast_sync); | |
4086 | ||
4087 | /** | |
bc2cda1e | 4088 | * dev_unicast_unsync - Remove synchronized addresses from the destination device |
e83a2ea8 CL |
4089 | * @to: destination device |
4090 | * @from: source device | |
4091 | * | |
4092 | * Remove all addresses that were added to the destination device by | |
4093 | * dev_unicast_sync(). This function is intended to be called from the | |
4094 | * dev->stop function of layered software devices. | |
4095 | */ | |
4096 | void dev_unicast_unsync(struct net_device *to, struct net_device *from) | |
4097 | { | |
ccffad25 JP |
4098 | if (to->addr_len != from->addr_len) |
4099 | return; | |
e83a2ea8 | 4100 | |
a6ac65db JP |
4101 | netif_addr_lock_bh(from); |
4102 | netif_addr_lock(to); | |
31278e71 | 4103 | __hw_addr_unsync(&to->uc, &from->uc, to->addr_len); |
ccffad25 | 4104 | __dev_set_rx_mode(to); |
a6ac65db JP |
4105 | netif_addr_unlock(to); |
4106 | netif_addr_unlock_bh(from); | |
e83a2ea8 CL |
4107 | } |
4108 | EXPORT_SYMBOL(dev_unicast_unsync); | |
4109 | ||
ccffad25 JP |
4110 | static void dev_unicast_flush(struct net_device *dev) |
4111 | { | |
a6ac65db | 4112 | netif_addr_lock_bh(dev); |
31278e71 | 4113 | __hw_addr_flush(&dev->uc); |
a6ac65db | 4114 | netif_addr_unlock_bh(dev); |
ccffad25 JP |
4115 | } |
4116 | ||
4117 | static void dev_unicast_init(struct net_device *dev) | |
4118 | { | |
31278e71 | 4119 | __hw_addr_init(&dev->uc); |
ccffad25 JP |
4120 | } |
4121 | ||
4122 | ||
12972621 DC |
4123 | static void __dev_addr_discard(struct dev_addr_list **list) |
4124 | { | |
4125 | struct dev_addr_list *tmp; | |
4126 | ||
4127 | while (*list != NULL) { | |
4128 | tmp = *list; | |
4129 | *list = tmp->next; | |
4130 | if (tmp->da_users > tmp->da_gusers) | |
4131 | printk("__dev_addr_discard: address leakage! " | |
4132 | "da_users=%d\n", tmp->da_users); | |
4133 | kfree(tmp); | |
4134 | } | |
4135 | } | |
4136 | ||
26cc2522 | 4137 | static void dev_addr_discard(struct net_device *dev) |
4417da66 | 4138 | { |
b9e40857 | 4139 | netif_addr_lock_bh(dev); |
26cc2522 | 4140 | |
456ad75c DC |
4141 | __dev_addr_discard(&dev->mc_list); |
4142 | dev->mc_count = 0; | |
26cc2522 | 4143 | |
b9e40857 | 4144 | netif_addr_unlock_bh(dev); |
456ad75c DC |
4145 | } |
4146 | ||
f0db275a SH |
4147 | /** |
4148 | * dev_get_flags - get flags reported to userspace | |
4149 | * @dev: device | |
4150 | * | |
4151 | * Get the combination of flag bits exported through APIs to userspace. | |
4152 | */ | |
1da177e4 LT |
4153 | unsigned dev_get_flags(const struct net_device *dev) |
4154 | { | |
4155 | unsigned flags; | |
4156 | ||
4157 | flags = (dev->flags & ~(IFF_PROMISC | | |
4158 | IFF_ALLMULTI | | |
b00055aa SR |
4159 | IFF_RUNNING | |
4160 | IFF_LOWER_UP | | |
4161 | IFF_DORMANT)) | | |
1da177e4 LT |
4162 | (dev->gflags & (IFF_PROMISC | |
4163 | IFF_ALLMULTI)); | |
4164 | ||
b00055aa SR |
4165 | if (netif_running(dev)) { |
4166 | if (netif_oper_up(dev)) | |
4167 | flags |= IFF_RUNNING; | |
4168 | if (netif_carrier_ok(dev)) | |
4169 | flags |= IFF_LOWER_UP; | |
4170 | if (netif_dormant(dev)) | |
4171 | flags |= IFF_DORMANT; | |
4172 | } | |
1da177e4 LT |
4173 | |
4174 | return flags; | |
4175 | } | |
d1b19dff | 4176 | EXPORT_SYMBOL(dev_get_flags); |
1da177e4 | 4177 | |
f0db275a SH |
4178 | /** |
4179 | * dev_change_flags - change device settings | |
4180 | * @dev: device | |
4181 | * @flags: device state flags | |
4182 | * | |
4183 | * Change settings on device based state flags. The flags are | |
4184 | * in the userspace exported format. | |
4185 | */ | |
1da177e4 LT |
4186 | int dev_change_flags(struct net_device *dev, unsigned flags) |
4187 | { | |
7c355f53 | 4188 | int ret, changes; |
1da177e4 LT |
4189 | int old_flags = dev->flags; |
4190 | ||
24023451 PM |
4191 | ASSERT_RTNL(); |
4192 | ||
1da177e4 LT |
4193 | /* |
4194 | * Set the flags on our device. | |
4195 | */ | |
4196 | ||
4197 | dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP | | |
4198 | IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL | | |
4199 | IFF_AUTOMEDIA)) | | |
4200 | (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC | | |
4201 | IFF_ALLMULTI)); | |
4202 | ||
4203 | /* | |
4204 | * Load in the correct multicast list now the flags have changed. | |
4205 | */ | |
4206 | ||
b6c40d68 PM |
4207 | if ((old_flags ^ flags) & IFF_MULTICAST) |
4208 | dev_change_rx_flags(dev, IFF_MULTICAST); | |
24023451 | 4209 | |
4417da66 | 4210 | dev_set_rx_mode(dev); |
1da177e4 LT |
4211 | |
4212 | /* | |
4213 | * Have we downed the interface. We handle IFF_UP ourselves | |
4214 | * according to user attempts to set it, rather than blindly | |
4215 | * setting it. | |
4216 | */ | |
4217 | ||
4218 | ret = 0; | |
4219 | if ((old_flags ^ flags) & IFF_UP) { /* Bit is different ? */ | |
4220 | ret = ((old_flags & IFF_UP) ? dev_close : dev_open)(dev); | |
4221 | ||
4222 | if (!ret) | |
4417da66 | 4223 | dev_set_rx_mode(dev); |
1da177e4 LT |
4224 | } |
4225 | ||
4226 | if (dev->flags & IFF_UP && | |
d1b19dff | 4227 | ((old_flags ^ dev->flags) & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | |
1da177e4 | 4228 | IFF_VOLATILE))) |
056925ab | 4229 | call_netdevice_notifiers(NETDEV_CHANGE, dev); |
1da177e4 LT |
4230 | |
4231 | if ((flags ^ dev->gflags) & IFF_PROMISC) { | |
d1b19dff ED |
4232 | int inc = (flags & IFF_PROMISC) ? 1 : -1; |
4233 | ||
1da177e4 LT |
4234 | dev->gflags ^= IFF_PROMISC; |
4235 | dev_set_promiscuity(dev, inc); | |
4236 | } | |
4237 | ||
4238 | /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI | |
4239 | is important. Some (broken) drivers set IFF_PROMISC, when | |
4240 | IFF_ALLMULTI is requested not asking us and not reporting. | |
4241 | */ | |
4242 | if ((flags ^ dev->gflags) & IFF_ALLMULTI) { | |
d1b19dff ED |
4243 | int inc = (flags & IFF_ALLMULTI) ? 1 : -1; |
4244 | ||
1da177e4 LT |
4245 | dev->gflags ^= IFF_ALLMULTI; |
4246 | dev_set_allmulti(dev, inc); | |
4247 | } | |
4248 | ||
7c355f53 TG |
4249 | /* Exclude state transition flags, already notified */ |
4250 | changes = (old_flags ^ dev->flags) & ~(IFF_UP | IFF_RUNNING); | |
4251 | if (changes) | |
4252 | rtmsg_ifinfo(RTM_NEWLINK, dev, changes); | |
1da177e4 LT |
4253 | |
4254 | return ret; | |
4255 | } | |
d1b19dff | 4256 | EXPORT_SYMBOL(dev_change_flags); |
1da177e4 | 4257 | |
f0db275a SH |
4258 | /** |
4259 | * dev_set_mtu - Change maximum transfer unit | |
4260 | * @dev: device | |
4261 | * @new_mtu: new transfer unit | |
4262 | * | |
4263 | * Change the maximum transfer size of the network device. | |
4264 | */ | |
1da177e4 LT |
4265 | int dev_set_mtu(struct net_device *dev, int new_mtu) |
4266 | { | |
d314774c | 4267 | const struct net_device_ops *ops = dev->netdev_ops; |
1da177e4 LT |
4268 | int err; |
4269 | ||
4270 | if (new_mtu == dev->mtu) | |
4271 | return 0; | |
4272 | ||
4273 | /* MTU must be positive. */ | |
4274 | if (new_mtu < 0) | |
4275 | return -EINVAL; | |
4276 | ||
4277 | if (!netif_device_present(dev)) | |
4278 | return -ENODEV; | |
4279 | ||
4280 | err = 0; | |
d314774c SH |
4281 | if (ops->ndo_change_mtu) |
4282 | err = ops->ndo_change_mtu(dev, new_mtu); | |
1da177e4 LT |
4283 | else |
4284 | dev->mtu = new_mtu; | |
d314774c | 4285 | |
1da177e4 | 4286 | if (!err && dev->flags & IFF_UP) |
056925ab | 4287 | call_netdevice_notifiers(NETDEV_CHANGEMTU, dev); |
1da177e4 LT |
4288 | return err; |
4289 | } | |
d1b19dff | 4290 | EXPORT_SYMBOL(dev_set_mtu); |
1da177e4 | 4291 | |
f0db275a SH |
4292 | /** |
4293 | * dev_set_mac_address - Change Media Access Control Address | |
4294 | * @dev: device | |
4295 | * @sa: new address | |
4296 | * | |
4297 | * Change the hardware (MAC) address of the device | |
4298 | */ | |
1da177e4 LT |
4299 | int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa) |
4300 | { | |
d314774c | 4301 | const struct net_device_ops *ops = dev->netdev_ops; |
1da177e4 LT |
4302 | int err; |
4303 | ||
d314774c | 4304 | if (!ops->ndo_set_mac_address) |
1da177e4 LT |
4305 | return -EOPNOTSUPP; |
4306 | if (sa->sa_family != dev->type) | |
4307 | return -EINVAL; | |
4308 | if (!netif_device_present(dev)) | |
4309 | return -ENODEV; | |
d314774c | 4310 | err = ops->ndo_set_mac_address(dev, sa); |
1da177e4 | 4311 | if (!err) |
056925ab | 4312 | call_netdevice_notifiers(NETDEV_CHANGEADDR, dev); |
1da177e4 LT |
4313 | return err; |
4314 | } | |
d1b19dff | 4315 | EXPORT_SYMBOL(dev_set_mac_address); |
1da177e4 LT |
4316 | |
4317 | /* | |
14e3e079 | 4318 | * Perform the SIOCxIFxxx calls, inside read_lock(dev_base_lock) |
1da177e4 | 4319 | */ |
14e3e079 | 4320 | static int dev_ifsioc_locked(struct net *net, struct ifreq *ifr, unsigned int cmd) |
1da177e4 LT |
4321 | { |
4322 | int err; | |
881d966b | 4323 | struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name); |
1da177e4 LT |
4324 | |
4325 | if (!dev) | |
4326 | return -ENODEV; | |
4327 | ||
4328 | switch (cmd) { | |
d1b19dff ED |
4329 | case SIOCGIFFLAGS: /* Get interface flags */ |
4330 | ifr->ifr_flags = (short) dev_get_flags(dev); | |
4331 | return 0; | |
1da177e4 | 4332 | |
d1b19dff ED |
4333 | case SIOCGIFMETRIC: /* Get the metric on the interface |
4334 | (currently unused) */ | |
4335 | ifr->ifr_metric = 0; | |
4336 | return 0; | |
1da177e4 | 4337 | |
d1b19dff ED |
4338 | case SIOCGIFMTU: /* Get the MTU of a device */ |
4339 | ifr->ifr_mtu = dev->mtu; | |
4340 | return 0; | |
1da177e4 | 4341 | |
d1b19dff ED |
4342 | case SIOCGIFHWADDR: |
4343 | if (!dev->addr_len) | |
4344 | memset(ifr->ifr_hwaddr.sa_data, 0, sizeof ifr->ifr_hwaddr.sa_data); | |
4345 | else | |
4346 | memcpy(ifr->ifr_hwaddr.sa_data, dev->dev_addr, | |
4347 | min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len)); | |
4348 | ifr->ifr_hwaddr.sa_family = dev->type; | |
4349 | return 0; | |
1da177e4 | 4350 | |
d1b19dff ED |
4351 | case SIOCGIFSLAVE: |
4352 | err = -EINVAL; | |
4353 | break; | |
14e3e079 | 4354 | |
d1b19dff ED |
4355 | case SIOCGIFMAP: |
4356 | ifr->ifr_map.mem_start = dev->mem_start; | |
4357 | ifr->ifr_map.mem_end = dev->mem_end; | |
4358 | ifr->ifr_map.base_addr = dev->base_addr; | |
4359 | ifr->ifr_map.irq = dev->irq; | |
4360 | ifr->ifr_map.dma = dev->dma; | |
4361 | ifr->ifr_map.port = dev->if_port; | |
4362 | return 0; | |
14e3e079 | 4363 | |
d1b19dff ED |
4364 | case SIOCGIFINDEX: |
4365 | ifr->ifr_ifindex = dev->ifindex; | |
4366 | return 0; | |
14e3e079 | 4367 | |
d1b19dff ED |
4368 | case SIOCGIFTXQLEN: |
4369 | ifr->ifr_qlen = dev->tx_queue_len; | |
4370 | return 0; | |
14e3e079 | 4371 | |
d1b19dff ED |
4372 | default: |
4373 | /* dev_ioctl() should ensure this case | |
4374 | * is never reached | |
4375 | */ | |
4376 | WARN_ON(1); | |
4377 | err = -EINVAL; | |
4378 | break; | |
14e3e079 JG |
4379 | |
4380 | } | |
4381 | return err; | |
4382 | } | |
4383 | ||
4384 | /* | |
4385 | * Perform the SIOCxIFxxx calls, inside rtnl_lock() | |
4386 | */ | |
4387 | static int dev_ifsioc(struct net *net, struct ifreq *ifr, unsigned int cmd) | |
4388 | { | |
4389 | int err; | |
4390 | struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name); | |
5f2f6da7 | 4391 | const struct net_device_ops *ops; |
14e3e079 JG |
4392 | |
4393 | if (!dev) | |
4394 | return -ENODEV; | |
4395 | ||
5f2f6da7 JP |
4396 | ops = dev->netdev_ops; |
4397 | ||
14e3e079 | 4398 | switch (cmd) { |
d1b19dff ED |
4399 | case SIOCSIFFLAGS: /* Set interface flags */ |
4400 | return dev_change_flags(dev, ifr->ifr_flags); | |
14e3e079 | 4401 | |
d1b19dff ED |
4402 | case SIOCSIFMETRIC: /* Set the metric on the interface |
4403 | (currently unused) */ | |
4404 | return -EOPNOTSUPP; | |
14e3e079 | 4405 | |
d1b19dff ED |
4406 | case SIOCSIFMTU: /* Set the MTU of a device */ |
4407 | return dev_set_mtu(dev, ifr->ifr_mtu); | |
1da177e4 | 4408 | |
d1b19dff ED |
4409 | case SIOCSIFHWADDR: |
4410 | return dev_set_mac_address(dev, &ifr->ifr_hwaddr); | |
1da177e4 | 4411 | |
d1b19dff ED |
4412 | case SIOCSIFHWBROADCAST: |
4413 | if (ifr->ifr_hwaddr.sa_family != dev->type) | |
4414 | return -EINVAL; | |
4415 | memcpy(dev->broadcast, ifr->ifr_hwaddr.sa_data, | |
4416 | min(sizeof ifr->ifr_hwaddr.sa_data, (size_t) dev->addr_len)); | |
4417 | call_netdevice_notifiers(NETDEV_CHANGEADDR, dev); | |
4418 | return 0; | |
1da177e4 | 4419 | |
d1b19dff ED |
4420 | case SIOCSIFMAP: |
4421 | if (ops->ndo_set_config) { | |
1da177e4 LT |
4422 | if (!netif_device_present(dev)) |
4423 | return -ENODEV; | |
d1b19dff ED |
4424 | return ops->ndo_set_config(dev, &ifr->ifr_map); |
4425 | } | |
4426 | return -EOPNOTSUPP; | |
1da177e4 | 4427 | |
d1b19dff ED |
4428 | case SIOCADDMULTI: |
4429 | if ((!ops->ndo_set_multicast_list && !ops->ndo_set_rx_mode) || | |
4430 | ifr->ifr_hwaddr.sa_family != AF_UNSPEC) | |
4431 | return -EINVAL; | |
4432 | if (!netif_device_present(dev)) | |
4433 | return -ENODEV; | |
4434 | return dev_mc_add(dev, ifr->ifr_hwaddr.sa_data, | |
4435 | dev->addr_len, 1); | |
4436 | ||
4437 | case SIOCDELMULTI: | |
4438 | if ((!ops->ndo_set_multicast_list && !ops->ndo_set_rx_mode) || | |
4439 | ifr->ifr_hwaddr.sa_family != AF_UNSPEC) | |
4440 | return -EINVAL; | |
4441 | if (!netif_device_present(dev)) | |
4442 | return -ENODEV; | |
4443 | return dev_mc_delete(dev, ifr->ifr_hwaddr.sa_data, | |
4444 | dev->addr_len, 1); | |
1da177e4 | 4445 | |
d1b19dff ED |
4446 | case SIOCSIFTXQLEN: |
4447 | if (ifr->ifr_qlen < 0) | |
4448 | return -EINVAL; | |
4449 | dev->tx_queue_len = ifr->ifr_qlen; | |
4450 | return 0; | |
1da177e4 | 4451 | |
d1b19dff ED |
4452 | case SIOCSIFNAME: |
4453 | ifr->ifr_newname[IFNAMSIZ-1] = '\0'; | |
4454 | return dev_change_name(dev, ifr->ifr_newname); | |
1da177e4 | 4455 | |
d1b19dff ED |
4456 | /* |
4457 | * Unknown or private ioctl | |
4458 | */ | |
4459 | default: | |
4460 | if ((cmd >= SIOCDEVPRIVATE && | |
4461 | cmd <= SIOCDEVPRIVATE + 15) || | |
4462 | cmd == SIOCBONDENSLAVE || | |
4463 | cmd == SIOCBONDRELEASE || | |
4464 | cmd == SIOCBONDSETHWADDR || | |
4465 | cmd == SIOCBONDSLAVEINFOQUERY || | |
4466 | cmd == SIOCBONDINFOQUERY || | |
4467 | cmd == SIOCBONDCHANGEACTIVE || | |
4468 | cmd == SIOCGMIIPHY || | |
4469 | cmd == SIOCGMIIREG || | |
4470 | cmd == SIOCSMIIREG || | |
4471 | cmd == SIOCBRADDIF || | |
4472 | cmd == SIOCBRDELIF || | |
4473 | cmd == SIOCSHWTSTAMP || | |
4474 | cmd == SIOCWANDEV) { | |
4475 | err = -EOPNOTSUPP; | |
4476 | if (ops->ndo_do_ioctl) { | |
4477 | if (netif_device_present(dev)) | |
4478 | err = ops->ndo_do_ioctl(dev, ifr, cmd); | |
4479 | else | |
4480 | err = -ENODEV; | |
4481 | } | |
4482 | } else | |
4483 | err = -EINVAL; | |
1da177e4 LT |
4484 | |
4485 | } | |
4486 | return err; | |
4487 | } | |
4488 | ||
4489 | /* | |
4490 | * This function handles all "interface"-type I/O control requests. The actual | |
4491 | * 'doing' part of this is dev_ifsioc above. | |
4492 | */ | |
4493 | ||
4494 | /** | |
4495 | * dev_ioctl - network device ioctl | |
c4ea43c5 | 4496 | * @net: the applicable net namespace |
1da177e4 LT |
4497 | * @cmd: command to issue |
4498 | * @arg: pointer to a struct ifreq in user space | |
4499 | * | |
4500 | * Issue ioctl functions to devices. This is normally called by the | |
4501 | * user space syscall interfaces but can sometimes be useful for | |
4502 | * other purposes. The return value is the return from the syscall if | |
4503 | * positive or a negative errno code on error. | |
4504 | */ | |
4505 | ||
881d966b | 4506 | int dev_ioctl(struct net *net, unsigned int cmd, void __user *arg) |
1da177e4 LT |
4507 | { |
4508 | struct ifreq ifr; | |
4509 | int ret; | |
4510 | char *colon; | |
4511 | ||
4512 | /* One special case: SIOCGIFCONF takes ifconf argument | |
4513 | and requires shared lock, because it sleeps writing | |
4514 | to user space. | |
4515 | */ | |
4516 | ||
4517 | if (cmd == SIOCGIFCONF) { | |
6756ae4b | 4518 | rtnl_lock(); |
881d966b | 4519 | ret = dev_ifconf(net, (char __user *) arg); |
6756ae4b | 4520 | rtnl_unlock(); |
1da177e4 LT |
4521 | return ret; |
4522 | } | |
4523 | if (cmd == SIOCGIFNAME) | |
881d966b | 4524 | return dev_ifname(net, (struct ifreq __user *)arg); |
1da177e4 LT |
4525 | |
4526 | if (copy_from_user(&ifr, arg, sizeof(struct ifreq))) | |
4527 | return -EFAULT; | |
4528 | ||
4529 | ifr.ifr_name[IFNAMSIZ-1] = 0; | |
4530 | ||
4531 | colon = strchr(ifr.ifr_name, ':'); | |
4532 | if (colon) | |
4533 | *colon = 0; | |
4534 | ||
4535 | /* | |
4536 | * See which interface the caller is talking about. | |
4537 | */ | |
4538 | ||
4539 | switch (cmd) { | |
d1b19dff ED |
4540 | /* |
4541 | * These ioctl calls: | |
4542 | * - can be done by all. | |
4543 | * - atomic and do not require locking. | |
4544 | * - return a value | |
4545 | */ | |
4546 | case SIOCGIFFLAGS: | |
4547 | case SIOCGIFMETRIC: | |
4548 | case SIOCGIFMTU: | |
4549 | case SIOCGIFHWADDR: | |
4550 | case SIOCGIFSLAVE: | |
4551 | case SIOCGIFMAP: | |
4552 | case SIOCGIFINDEX: | |
4553 | case SIOCGIFTXQLEN: | |
4554 | dev_load(net, ifr.ifr_name); | |
4555 | read_lock(&dev_base_lock); | |
4556 | ret = dev_ifsioc_locked(net, &ifr, cmd); | |
4557 | read_unlock(&dev_base_lock); | |
4558 | if (!ret) { | |
4559 | if (colon) | |
4560 | *colon = ':'; | |
4561 | if (copy_to_user(arg, &ifr, | |
4562 | sizeof(struct ifreq))) | |
4563 | ret = -EFAULT; | |
4564 | } | |
4565 | return ret; | |
1da177e4 | 4566 | |
d1b19dff ED |
4567 | case SIOCETHTOOL: |
4568 | dev_load(net, ifr.ifr_name); | |
4569 | rtnl_lock(); | |
4570 | ret = dev_ethtool(net, &ifr); | |
4571 | rtnl_unlock(); | |
4572 | if (!ret) { | |
4573 | if (colon) | |
4574 | *colon = ':'; | |
4575 | if (copy_to_user(arg, &ifr, | |
4576 | sizeof(struct ifreq))) | |
4577 | ret = -EFAULT; | |
4578 | } | |
4579 | return ret; | |
1da177e4 | 4580 | |
d1b19dff ED |
4581 | /* |
4582 | * These ioctl calls: | |
4583 | * - require superuser power. | |
4584 | * - require strict serialization. | |
4585 | * - return a value | |
4586 | */ | |
4587 | case SIOCGMIIPHY: | |
4588 | case SIOCGMIIREG: | |
4589 | case SIOCSIFNAME: | |
4590 | if (!capable(CAP_NET_ADMIN)) | |
4591 | return -EPERM; | |
4592 | dev_load(net, ifr.ifr_name); | |
4593 | rtnl_lock(); | |
4594 | ret = dev_ifsioc(net, &ifr, cmd); | |
4595 | rtnl_unlock(); | |
4596 | if (!ret) { | |
4597 | if (colon) | |
4598 | *colon = ':'; | |
4599 | if (copy_to_user(arg, &ifr, | |
4600 | sizeof(struct ifreq))) | |
4601 | ret = -EFAULT; | |
4602 | } | |
4603 | return ret; | |
1da177e4 | 4604 | |
d1b19dff ED |
4605 | /* |
4606 | * These ioctl calls: | |
4607 | * - require superuser power. | |
4608 | * - require strict serialization. | |
4609 | * - do not return a value | |
4610 | */ | |
4611 | case SIOCSIFFLAGS: | |
4612 | case SIOCSIFMETRIC: | |
4613 | case SIOCSIFMTU: | |
4614 | case SIOCSIFMAP: | |
4615 | case SIOCSIFHWADDR: | |
4616 | case SIOCSIFSLAVE: | |
4617 | case SIOCADDMULTI: | |
4618 | case SIOCDELMULTI: | |
4619 | case SIOCSIFHWBROADCAST: | |
4620 | case SIOCSIFTXQLEN: | |
4621 | case SIOCSMIIREG: | |
4622 | case SIOCBONDENSLAVE: | |
4623 | case SIOCBONDRELEASE: | |
4624 | case SIOCBONDSETHWADDR: | |
4625 | case SIOCBONDCHANGEACTIVE: | |
4626 | case SIOCBRADDIF: | |
4627 | case SIOCBRDELIF: | |
4628 | case SIOCSHWTSTAMP: | |
4629 | if (!capable(CAP_NET_ADMIN)) | |
4630 | return -EPERM; | |
4631 | /* fall through */ | |
4632 | case SIOCBONDSLAVEINFOQUERY: | |
4633 | case SIOCBONDINFOQUERY: | |
4634 | dev_load(net, ifr.ifr_name); | |
4635 | rtnl_lock(); | |
4636 | ret = dev_ifsioc(net, &ifr, cmd); | |
4637 | rtnl_unlock(); | |
4638 | return ret; | |
4639 | ||
4640 | case SIOCGIFMEM: | |
4641 | /* Get the per device memory space. We can add this but | |
4642 | * currently do not support it */ | |
4643 | case SIOCSIFMEM: | |
4644 | /* Set the per device memory buffer space. | |
4645 | * Not applicable in our case */ | |
4646 | case SIOCSIFLINK: | |
4647 | return -EINVAL; | |
4648 | ||
4649 | /* | |
4650 | * Unknown or private ioctl. | |
4651 | */ | |
4652 | default: | |
4653 | if (cmd == SIOCWANDEV || | |
4654 | (cmd >= SIOCDEVPRIVATE && | |
4655 | cmd <= SIOCDEVPRIVATE + 15)) { | |
881d966b | 4656 | dev_load(net, ifr.ifr_name); |
1da177e4 | 4657 | rtnl_lock(); |
881d966b | 4658 | ret = dev_ifsioc(net, &ifr, cmd); |
1da177e4 | 4659 | rtnl_unlock(); |
d1b19dff ED |
4660 | if (!ret && copy_to_user(arg, &ifr, |
4661 | sizeof(struct ifreq))) | |
4662 | ret = -EFAULT; | |
1da177e4 | 4663 | return ret; |
d1b19dff ED |
4664 | } |
4665 | /* Take care of Wireless Extensions */ | |
4666 | if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) | |
4667 | return wext_handle_ioctl(net, &ifr, cmd, arg); | |
4668 | return -EINVAL; | |
1da177e4 LT |
4669 | } |
4670 | } | |
4671 | ||
4672 | ||
4673 | /** | |
4674 | * dev_new_index - allocate an ifindex | |
c4ea43c5 | 4675 | * @net: the applicable net namespace |
1da177e4 LT |
4676 | * |
4677 | * Returns a suitable unique value for a new device interface | |
4678 | * number. The caller must hold the rtnl semaphore or the | |
4679 | * dev_base_lock to be sure it remains unique. | |
4680 | */ | |
881d966b | 4681 | static int dev_new_index(struct net *net) |
1da177e4 LT |
4682 | { |
4683 | static int ifindex; | |
4684 | for (;;) { | |
4685 | if (++ifindex <= 0) | |
4686 | ifindex = 1; | |
881d966b | 4687 | if (!__dev_get_by_index(net, ifindex)) |
1da177e4 LT |
4688 | return ifindex; |
4689 | } | |
4690 | } | |
4691 | ||
1da177e4 | 4692 | /* Delayed registration/unregisteration */ |
3b5b34fd | 4693 | static LIST_HEAD(net_todo_list); |
1da177e4 | 4694 | |
6f05f629 | 4695 | static void net_set_todo(struct net_device *dev) |
1da177e4 | 4696 | { |
1da177e4 | 4697 | list_add_tail(&dev->todo_list, &net_todo_list); |
1da177e4 LT |
4698 | } |
4699 | ||
9b5e383c | 4700 | static void rollback_registered_many(struct list_head *head) |
93ee31f1 | 4701 | { |
9b5e383c ED |
4702 | struct net_device *dev; |
4703 | ||
93ee31f1 DL |
4704 | BUG_ON(dev_boot_phase); |
4705 | ASSERT_RTNL(); | |
4706 | ||
9b5e383c ED |
4707 | list_for_each_entry(dev, head, unreg_list) { |
4708 | /* Some devices call without registering | |
4709 | * for initialization unwind. | |
4710 | */ | |
4711 | if (dev->reg_state == NETREG_UNINITIALIZED) { | |
4712 | pr_debug("unregister_netdevice: device %s/%p never " | |
4713 | "was registered\n", dev->name, dev); | |
93ee31f1 | 4714 | |
9b5e383c ED |
4715 | WARN_ON(1); |
4716 | return; | |
4717 | } | |
93ee31f1 | 4718 | |
9b5e383c | 4719 | BUG_ON(dev->reg_state != NETREG_REGISTERED); |
93ee31f1 | 4720 | |
9b5e383c ED |
4721 | /* If device is running, close it first. */ |
4722 | dev_close(dev); | |
93ee31f1 | 4723 | |
9b5e383c ED |
4724 | /* And unlink it from device chain. */ |
4725 | unlist_netdevice(dev); | |
93ee31f1 | 4726 | |
9b5e383c ED |
4727 | dev->reg_state = NETREG_UNREGISTERING; |
4728 | } | |
93ee31f1 DL |
4729 | |
4730 | synchronize_net(); | |
4731 | ||
9b5e383c ED |
4732 | list_for_each_entry(dev, head, unreg_list) { |
4733 | /* Shutdown queueing discipline. */ | |
4734 | dev_shutdown(dev); | |
93ee31f1 DL |
4735 | |
4736 | ||
9b5e383c ED |
4737 | /* Notify protocols, that we are about to destroy |
4738 | this device. They should clean all the things. | |
4739 | */ | |
4740 | call_netdevice_notifiers(NETDEV_UNREGISTER, dev); | |
93ee31f1 | 4741 | |
9b5e383c ED |
4742 | /* |
4743 | * Flush the unicast and multicast chains | |
4744 | */ | |
4745 | dev_unicast_flush(dev); | |
4746 | dev_addr_discard(dev); | |
93ee31f1 | 4747 | |
9b5e383c ED |
4748 | if (dev->netdev_ops->ndo_uninit) |
4749 | dev->netdev_ops->ndo_uninit(dev); | |
93ee31f1 | 4750 | |
9b5e383c ED |
4751 | /* Notifier chain MUST detach us from master device. */ |
4752 | WARN_ON(dev->master); | |
93ee31f1 | 4753 | |
9b5e383c ED |
4754 | /* Remove entries from kobject tree */ |
4755 | netdev_unregister_kobject(dev); | |
4756 | } | |
93ee31f1 DL |
4757 | |
4758 | synchronize_net(); | |
4759 | ||
9b5e383c ED |
4760 | list_for_each_entry(dev, head, unreg_list) |
4761 | dev_put(dev); | |
4762 | } | |
4763 | ||
4764 | static void rollback_registered(struct net_device *dev) | |
4765 | { | |
4766 | LIST_HEAD(single); | |
4767 | ||
4768 | list_add(&dev->unreg_list, &single); | |
4769 | rollback_registered_many(&single); | |
93ee31f1 DL |
4770 | } |
4771 | ||
e8a0464c DM |
4772 | static void __netdev_init_queue_locks_one(struct net_device *dev, |
4773 | struct netdev_queue *dev_queue, | |
4774 | void *_unused) | |
c773e847 DM |
4775 | { |
4776 | spin_lock_init(&dev_queue->_xmit_lock); | |
cf508b12 | 4777 | netdev_set_xmit_lockdep_class(&dev_queue->_xmit_lock, dev->type); |
c773e847 DM |
4778 | dev_queue->xmit_lock_owner = -1; |
4779 | } | |
4780 | ||
4781 | static void netdev_init_queue_locks(struct net_device *dev) | |
4782 | { | |
e8a0464c DM |
4783 | netdev_for_each_tx_queue(dev, __netdev_init_queue_locks_one, NULL); |
4784 | __netdev_init_queue_locks_one(dev, &dev->rx_queue, NULL); | |
c773e847 DM |
4785 | } |
4786 | ||
b63365a2 HX |
4787 | unsigned long netdev_fix_features(unsigned long features, const char *name) |
4788 | { | |
4789 | /* Fix illegal SG+CSUM combinations. */ | |
4790 | if ((features & NETIF_F_SG) && | |
4791 | !(features & NETIF_F_ALL_CSUM)) { | |
4792 | if (name) | |
4793 | printk(KERN_NOTICE "%s: Dropping NETIF_F_SG since no " | |
4794 | "checksum feature.\n", name); | |
4795 | features &= ~NETIF_F_SG; | |
4796 | } | |
4797 | ||
4798 | /* TSO requires that SG is present as well. */ | |
4799 | if ((features & NETIF_F_TSO) && !(features & NETIF_F_SG)) { | |
4800 | if (name) | |
4801 | printk(KERN_NOTICE "%s: Dropping NETIF_F_TSO since no " | |
4802 | "SG feature.\n", name); | |
4803 | features &= ~NETIF_F_TSO; | |
4804 | } | |
4805 | ||
4806 | if (features & NETIF_F_UFO) { | |
4807 | if (!(features & NETIF_F_GEN_CSUM)) { | |
4808 | if (name) | |
4809 | printk(KERN_ERR "%s: Dropping NETIF_F_UFO " | |
4810 | "since no NETIF_F_HW_CSUM feature.\n", | |
4811 | name); | |
4812 | features &= ~NETIF_F_UFO; | |
4813 | } | |
4814 | ||
4815 | if (!(features & NETIF_F_SG)) { | |
4816 | if (name) | |
4817 | printk(KERN_ERR "%s: Dropping NETIF_F_UFO " | |
4818 | "since no NETIF_F_SG feature.\n", name); | |
4819 | features &= ~NETIF_F_UFO; | |
4820 | } | |
4821 | } | |
4822 | ||
4823 | return features; | |
4824 | } | |
4825 | EXPORT_SYMBOL(netdev_fix_features); | |
4826 | ||
1da177e4 LT |
4827 | /** |
4828 | * register_netdevice - register a network device | |
4829 | * @dev: device to register | |
4830 | * | |
4831 | * Take a completed network device structure and add it to the kernel | |
4832 | * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier | |
4833 | * chain. 0 is returned on success. A negative errno code is returned | |
4834 | * on a failure to set up the device, or if the name is a duplicate. | |
4835 | * | |
4836 | * Callers must hold the rtnl semaphore. You may want | |
4837 | * register_netdev() instead of this. | |
4838 | * | |
4839 | * BUGS: | |
4840 | * The locking appears insufficient to guarantee two parallel registers | |
4841 | * will not get the same name. | |
4842 | */ | |
4843 | ||
4844 | int register_netdevice(struct net_device *dev) | |
4845 | { | |
4846 | struct hlist_head *head; | |
4847 | struct hlist_node *p; | |
4848 | int ret; | |
d314774c | 4849 | struct net *net = dev_net(dev); |
1da177e4 LT |
4850 | |
4851 | BUG_ON(dev_boot_phase); | |
4852 | ASSERT_RTNL(); | |
4853 | ||
b17a7c17 SH |
4854 | might_sleep(); |
4855 | ||
1da177e4 LT |
4856 | /* When net_device's are persistent, this will be fatal. */ |
4857 | BUG_ON(dev->reg_state != NETREG_UNINITIALIZED); | |
d314774c | 4858 | BUG_ON(!net); |
1da177e4 | 4859 | |
f1f28aa3 | 4860 | spin_lock_init(&dev->addr_list_lock); |
cf508b12 | 4861 | netdev_set_addr_lockdep_class(dev); |
c773e847 | 4862 | netdev_init_queue_locks(dev); |
1da177e4 | 4863 | |
1da177e4 LT |
4864 | dev->iflink = -1; |
4865 | ||
4866 | /* Init, if this function is available */ | |
d314774c SH |
4867 | if (dev->netdev_ops->ndo_init) { |
4868 | ret = dev->netdev_ops->ndo_init(dev); | |
1da177e4 LT |
4869 | if (ret) { |
4870 | if (ret > 0) | |
4871 | ret = -EIO; | |
90833aa4 | 4872 | goto out; |
1da177e4 LT |
4873 | } |
4874 | } | |
4ec93edb | 4875 | |
1da177e4 LT |
4876 | if (!dev_valid_name(dev->name)) { |
4877 | ret = -EINVAL; | |
7ce1b0ed | 4878 | goto err_uninit; |
1da177e4 LT |
4879 | } |
4880 | ||
881d966b | 4881 | dev->ifindex = dev_new_index(net); |
1da177e4 LT |
4882 | if (dev->iflink == -1) |
4883 | dev->iflink = dev->ifindex; | |
4884 | ||
4885 | /* Check for existence of name */ | |
881d966b | 4886 | head = dev_name_hash(net, dev->name); |
1da177e4 LT |
4887 | hlist_for_each(p, head) { |
4888 | struct net_device *d | |
4889 | = hlist_entry(p, struct net_device, name_hlist); | |
4890 | if (!strncmp(d->name, dev->name, IFNAMSIZ)) { | |
4891 | ret = -EEXIST; | |
7ce1b0ed | 4892 | goto err_uninit; |
1da177e4 | 4893 | } |
4ec93edb | 4894 | } |
1da177e4 | 4895 | |
d212f87b SH |
4896 | /* Fix illegal checksum combinations */ |
4897 | if ((dev->features & NETIF_F_HW_CSUM) && | |
4898 | (dev->features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) { | |
4899 | printk(KERN_NOTICE "%s: mixed HW and IP checksum settings.\n", | |
4900 | dev->name); | |
4901 | dev->features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM); | |
4902 | } | |
4903 | ||
4904 | if ((dev->features & NETIF_F_NO_CSUM) && | |
4905 | (dev->features & (NETIF_F_HW_CSUM|NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) { | |
4906 | printk(KERN_NOTICE "%s: mixed no checksumming and other settings.\n", | |
4907 | dev->name); | |
4908 | dev->features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM|NETIF_F_HW_CSUM); | |
4909 | } | |
4910 | ||
b63365a2 | 4911 | dev->features = netdev_fix_features(dev->features, dev->name); |
1da177e4 | 4912 | |
e5a4a72d LB |
4913 | /* Enable software GSO if SG is supported. */ |
4914 | if (dev->features & NETIF_F_SG) | |
4915 | dev->features |= NETIF_F_GSO; | |
4916 | ||
aaf8cdc3 | 4917 | netdev_initialize_kobject(dev); |
7ffbe3fd JB |
4918 | |
4919 | ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev); | |
4920 | ret = notifier_to_errno(ret); | |
4921 | if (ret) | |
4922 | goto err_uninit; | |
4923 | ||
8b41d188 | 4924 | ret = netdev_register_kobject(dev); |
b17a7c17 | 4925 | if (ret) |
7ce1b0ed | 4926 | goto err_uninit; |
b17a7c17 SH |
4927 | dev->reg_state = NETREG_REGISTERED; |
4928 | ||
1da177e4 LT |
4929 | /* |
4930 | * Default initial state at registry is that the | |
4931 | * device is present. | |
4932 | */ | |
4933 | ||
4934 | set_bit(__LINK_STATE_PRESENT, &dev->state); | |
4935 | ||
1da177e4 | 4936 | dev_init_scheduler(dev); |
1da177e4 | 4937 | dev_hold(dev); |
ce286d32 | 4938 | list_netdevice(dev); |
1da177e4 LT |
4939 | |
4940 | /* Notify protocols, that a new device appeared. */ | |
056925ab | 4941 | ret = call_netdevice_notifiers(NETDEV_REGISTER, dev); |
fcc5a03a | 4942 | ret = notifier_to_errno(ret); |
93ee31f1 DL |
4943 | if (ret) { |
4944 | rollback_registered(dev); | |
4945 | dev->reg_state = NETREG_UNREGISTERED; | |
4946 | } | |
1da177e4 LT |
4947 | |
4948 | out: | |
4949 | return ret; | |
7ce1b0ed HX |
4950 | |
4951 | err_uninit: | |
d314774c SH |
4952 | if (dev->netdev_ops->ndo_uninit) |
4953 | dev->netdev_ops->ndo_uninit(dev); | |
7ce1b0ed | 4954 | goto out; |
1da177e4 | 4955 | } |
d1b19dff | 4956 | EXPORT_SYMBOL(register_netdevice); |
1da177e4 | 4957 | |
937f1ba5 BH |
4958 | /** |
4959 | * init_dummy_netdev - init a dummy network device for NAPI | |
4960 | * @dev: device to init | |
4961 | * | |
4962 | * This takes a network device structure and initialize the minimum | |
4963 | * amount of fields so it can be used to schedule NAPI polls without | |
4964 | * registering a full blown interface. This is to be used by drivers | |
4965 | * that need to tie several hardware interfaces to a single NAPI | |
4966 | * poll scheduler due to HW limitations. | |
4967 | */ | |
4968 | int init_dummy_netdev(struct net_device *dev) | |
4969 | { | |
4970 | /* Clear everything. Note we don't initialize spinlocks | |
4971 | * are they aren't supposed to be taken by any of the | |
4972 | * NAPI code and this dummy netdev is supposed to be | |
4973 | * only ever used for NAPI polls | |
4974 | */ | |
4975 | memset(dev, 0, sizeof(struct net_device)); | |
4976 | ||
4977 | /* make sure we BUG if trying to hit standard | |
4978 | * register/unregister code path | |
4979 | */ | |
4980 | dev->reg_state = NETREG_DUMMY; | |
4981 | ||
4982 | /* initialize the ref count */ | |
4983 | atomic_set(&dev->refcnt, 1); | |
4984 | ||
4985 | /* NAPI wants this */ | |
4986 | INIT_LIST_HEAD(&dev->napi_list); | |
4987 | ||
4988 | /* a dummy interface is started by default */ | |
4989 | set_bit(__LINK_STATE_PRESENT, &dev->state); | |
4990 | set_bit(__LINK_STATE_START, &dev->state); | |
4991 | ||
4992 | return 0; | |
4993 | } | |
4994 | EXPORT_SYMBOL_GPL(init_dummy_netdev); | |
4995 | ||
4996 | ||
1da177e4 LT |
4997 | /** |
4998 | * register_netdev - register a network device | |
4999 | * @dev: device to register | |
5000 | * | |
5001 | * Take a completed network device structure and add it to the kernel | |
5002 | * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier | |
5003 | * chain. 0 is returned on success. A negative errno code is returned | |
5004 | * on a failure to set up the device, or if the name is a duplicate. | |
5005 | * | |
38b4da38 | 5006 | * This is a wrapper around register_netdevice that takes the rtnl semaphore |
1da177e4 LT |
5007 | * and expands the device name if you passed a format string to |
5008 | * alloc_netdev. | |
5009 | */ | |
5010 | int register_netdev(struct net_device *dev) | |
5011 | { | |
5012 | int err; | |
5013 | ||
5014 | rtnl_lock(); | |
5015 | ||
5016 | /* | |
5017 | * If the name is a format string the caller wants us to do a | |
5018 | * name allocation. | |
5019 | */ | |
5020 | if (strchr(dev->name, '%')) { | |
5021 | err = dev_alloc_name(dev, dev->name); | |
5022 | if (err < 0) | |
5023 | goto out; | |
5024 | } | |
4ec93edb | 5025 | |
1da177e4 LT |
5026 | err = register_netdevice(dev); |
5027 | out: | |
5028 | rtnl_unlock(); | |
5029 | return err; | |
5030 | } | |
5031 | EXPORT_SYMBOL(register_netdev); | |
5032 | ||
5033 | /* | |
5034 | * netdev_wait_allrefs - wait until all references are gone. | |
5035 | * | |
5036 | * This is called when unregistering network devices. | |
5037 | * | |
5038 | * Any protocol or device that holds a reference should register | |
5039 | * for netdevice notification, and cleanup and put back the | |
5040 | * reference if they receive an UNREGISTER event. | |
5041 | * We can get stuck here if buggy protocols don't correctly | |
4ec93edb | 5042 | * call dev_put. |
1da177e4 LT |
5043 | */ |
5044 | static void netdev_wait_allrefs(struct net_device *dev) | |
5045 | { | |
5046 | unsigned long rebroadcast_time, warning_time; | |
5047 | ||
5048 | rebroadcast_time = warning_time = jiffies; | |
5049 | while (atomic_read(&dev->refcnt) != 0) { | |
5050 | if (time_after(jiffies, rebroadcast_time + 1 * HZ)) { | |
6756ae4b | 5051 | rtnl_lock(); |
1da177e4 LT |
5052 | |
5053 | /* Rebroadcast unregister notification */ | |
056925ab | 5054 | call_netdevice_notifiers(NETDEV_UNREGISTER, dev); |
1da177e4 LT |
5055 | |
5056 | if (test_bit(__LINK_STATE_LINKWATCH_PENDING, | |
5057 | &dev->state)) { | |
5058 | /* We must not have linkwatch events | |
5059 | * pending on unregister. If this | |
5060 | * happens, we simply run the queue | |
5061 | * unscheduled, resulting in a noop | |
5062 | * for this device. | |
5063 | */ | |
5064 | linkwatch_run_queue(); | |
5065 | } | |
5066 | ||
6756ae4b | 5067 | __rtnl_unlock(); |
1da177e4 LT |
5068 | |
5069 | rebroadcast_time = jiffies; | |
5070 | } | |
5071 | ||
5072 | msleep(250); | |
5073 | ||
5074 | if (time_after(jiffies, warning_time + 10 * HZ)) { | |
5075 | printk(KERN_EMERG "unregister_netdevice: " | |
5076 | "waiting for %s to become free. Usage " | |
5077 | "count = %d\n", | |
5078 | dev->name, atomic_read(&dev->refcnt)); | |
5079 | warning_time = jiffies; | |
5080 | } | |
5081 | } | |
5082 | } | |
5083 | ||
5084 | /* The sequence is: | |
5085 | * | |
5086 | * rtnl_lock(); | |
5087 | * ... | |
5088 | * register_netdevice(x1); | |
5089 | * register_netdevice(x2); | |
5090 | * ... | |
5091 | * unregister_netdevice(y1); | |
5092 | * unregister_netdevice(y2); | |
5093 | * ... | |
5094 | * rtnl_unlock(); | |
5095 | * free_netdev(y1); | |
5096 | * free_netdev(y2); | |
5097 | * | |
58ec3b4d | 5098 | * We are invoked by rtnl_unlock(). |
1da177e4 | 5099 | * This allows us to deal with problems: |
b17a7c17 | 5100 | * 1) We can delete sysfs objects which invoke hotplug |
1da177e4 LT |
5101 | * without deadlocking with linkwatch via keventd. |
5102 | * 2) Since we run with the RTNL semaphore not held, we can sleep | |
5103 | * safely in order to wait for the netdev refcnt to drop to zero. | |
58ec3b4d HX |
5104 | * |
5105 | * We must not return until all unregister events added during | |
5106 | * the interval the lock was held have been completed. | |
1da177e4 | 5107 | */ |
1da177e4 LT |
5108 | void netdev_run_todo(void) |
5109 | { | |
626ab0e6 | 5110 | struct list_head list; |
1da177e4 | 5111 | |
1da177e4 | 5112 | /* Snapshot list, allow later requests */ |
626ab0e6 | 5113 | list_replace_init(&net_todo_list, &list); |
58ec3b4d HX |
5114 | |
5115 | __rtnl_unlock(); | |
626ab0e6 | 5116 | |
1da177e4 LT |
5117 | while (!list_empty(&list)) { |
5118 | struct net_device *dev | |
5119 | = list_entry(list.next, struct net_device, todo_list); | |
5120 | list_del(&dev->todo_list); | |
5121 | ||
b17a7c17 SH |
5122 | if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) { |
5123 | printk(KERN_ERR "network todo '%s' but state %d\n", | |
5124 | dev->name, dev->reg_state); | |
5125 | dump_stack(); | |
5126 | continue; | |
5127 | } | |
1da177e4 | 5128 | |
b17a7c17 | 5129 | dev->reg_state = NETREG_UNREGISTERED; |
1da177e4 | 5130 | |
6e583ce5 SH |
5131 | on_each_cpu(flush_backlog, dev, 1); |
5132 | ||
b17a7c17 | 5133 | netdev_wait_allrefs(dev); |
1da177e4 | 5134 | |
b17a7c17 SH |
5135 | /* paranoia */ |
5136 | BUG_ON(atomic_read(&dev->refcnt)); | |
547b792c IJ |
5137 | WARN_ON(dev->ip_ptr); |
5138 | WARN_ON(dev->ip6_ptr); | |
5139 | WARN_ON(dev->dn_ptr); | |
1da177e4 | 5140 | |
b17a7c17 SH |
5141 | if (dev->destructor) |
5142 | dev->destructor(dev); | |
9093bbb2 SH |
5143 | |
5144 | /* Free network device */ | |
5145 | kobject_put(&dev->dev.kobj); | |
1da177e4 | 5146 | } |
1da177e4 LT |
5147 | } |
5148 | ||
eeda3fd6 SH |
5149 | /** |
5150 | * dev_get_stats - get network device statistics | |
5151 | * @dev: device to get statistics from | |
5152 | * | |
5153 | * Get network statistics from device. The device driver may provide | |
5154 | * its own method by setting dev->netdev_ops->get_stats; otherwise | |
5155 | * the internal statistics structure is used. | |
5156 | */ | |
5157 | const struct net_device_stats *dev_get_stats(struct net_device *dev) | |
7004bf25 | 5158 | { |
eeda3fd6 SH |
5159 | const struct net_device_ops *ops = dev->netdev_ops; |
5160 | ||
5161 | if (ops->ndo_get_stats) | |
5162 | return ops->ndo_get_stats(dev); | |
7004bf25 ED |
5163 | else { |
5164 | unsigned long tx_bytes = 0, tx_packets = 0, tx_dropped = 0; | |
5165 | struct net_device_stats *stats = &dev->stats; | |
5166 | unsigned int i; | |
5167 | struct netdev_queue *txq; | |
5168 | ||
5169 | for (i = 0; i < dev->num_tx_queues; i++) { | |
5170 | txq = netdev_get_tx_queue(dev, i); | |
5171 | tx_bytes += txq->tx_bytes; | |
5172 | tx_packets += txq->tx_packets; | |
5173 | tx_dropped += txq->tx_dropped; | |
5174 | } | |
5175 | if (tx_bytes || tx_packets || tx_dropped) { | |
5176 | stats->tx_bytes = tx_bytes; | |
5177 | stats->tx_packets = tx_packets; | |
5178 | stats->tx_dropped = tx_dropped; | |
5179 | } | |
5180 | return stats; | |
5181 | } | |
c45d286e | 5182 | } |
eeda3fd6 | 5183 | EXPORT_SYMBOL(dev_get_stats); |
c45d286e | 5184 | |
dc2b4847 | 5185 | static void netdev_init_one_queue(struct net_device *dev, |
e8a0464c DM |
5186 | struct netdev_queue *queue, |
5187 | void *_unused) | |
dc2b4847 | 5188 | { |
dc2b4847 DM |
5189 | queue->dev = dev; |
5190 | } | |
5191 | ||
bb949fbd DM |
5192 | static void netdev_init_queues(struct net_device *dev) |
5193 | { | |
e8a0464c DM |
5194 | netdev_init_one_queue(dev, &dev->rx_queue, NULL); |
5195 | netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL); | |
c3f26a26 | 5196 | spin_lock_init(&dev->tx_global_lock); |
bb949fbd DM |
5197 | } |
5198 | ||
1da177e4 | 5199 | /** |
f25f4e44 | 5200 | * alloc_netdev_mq - allocate network device |
1da177e4 LT |
5201 | * @sizeof_priv: size of private data to allocate space for |
5202 | * @name: device name format string | |
5203 | * @setup: callback to initialize device | |
f25f4e44 | 5204 | * @queue_count: the number of subqueues to allocate |
1da177e4 LT |
5205 | * |
5206 | * Allocates a struct net_device with private data area for driver use | |
f25f4e44 PWJ |
5207 | * and performs basic initialization. Also allocates subquue structs |
5208 | * for each queue on the device at the end of the netdevice. | |
1da177e4 | 5209 | */ |
f25f4e44 PWJ |
5210 | struct net_device *alloc_netdev_mq(int sizeof_priv, const char *name, |
5211 | void (*setup)(struct net_device *), unsigned int queue_count) | |
1da177e4 | 5212 | { |
e8a0464c | 5213 | struct netdev_queue *tx; |
1da177e4 | 5214 | struct net_device *dev; |
7943986c | 5215 | size_t alloc_size; |
1ce8e7b5 | 5216 | struct net_device *p; |
1da177e4 | 5217 | |
b6fe17d6 SH |
5218 | BUG_ON(strlen(name) >= sizeof(dev->name)); |
5219 | ||
fd2ea0a7 | 5220 | alloc_size = sizeof(struct net_device); |
d1643d24 AD |
5221 | if (sizeof_priv) { |
5222 | /* ensure 32-byte alignment of private area */ | |
1ce8e7b5 | 5223 | alloc_size = ALIGN(alloc_size, NETDEV_ALIGN); |
d1643d24 AD |
5224 | alloc_size += sizeof_priv; |
5225 | } | |
5226 | /* ensure 32-byte alignment of whole construct */ | |
1ce8e7b5 | 5227 | alloc_size += NETDEV_ALIGN - 1; |
1da177e4 | 5228 | |
31380de9 | 5229 | p = kzalloc(alloc_size, GFP_KERNEL); |
1da177e4 | 5230 | if (!p) { |
b6fe17d6 | 5231 | printk(KERN_ERR "alloc_netdev: Unable to allocate device.\n"); |
1da177e4 LT |
5232 | return NULL; |
5233 | } | |
1da177e4 | 5234 | |
7943986c | 5235 | tx = kcalloc(queue_count, sizeof(struct netdev_queue), GFP_KERNEL); |
e8a0464c DM |
5236 | if (!tx) { |
5237 | printk(KERN_ERR "alloc_netdev: Unable to allocate " | |
5238 | "tx qdiscs.\n"); | |
ab9c73cc | 5239 | goto free_p; |
e8a0464c DM |
5240 | } |
5241 | ||
1ce8e7b5 | 5242 | dev = PTR_ALIGN(p, NETDEV_ALIGN); |
1da177e4 | 5243 | dev->padded = (char *)dev - (char *)p; |
ab9c73cc JP |
5244 | |
5245 | if (dev_addr_init(dev)) | |
5246 | goto free_tx; | |
5247 | ||
ccffad25 JP |
5248 | dev_unicast_init(dev); |
5249 | ||
c346dca1 | 5250 | dev_net_set(dev, &init_net); |
1da177e4 | 5251 | |
e8a0464c DM |
5252 | dev->_tx = tx; |
5253 | dev->num_tx_queues = queue_count; | |
fd2ea0a7 | 5254 | dev->real_num_tx_queues = queue_count; |
e8a0464c | 5255 | |
82cc1a7a | 5256 | dev->gso_max_size = GSO_MAX_SIZE; |
1da177e4 | 5257 | |
bb949fbd DM |
5258 | netdev_init_queues(dev); |
5259 | ||
d565b0a1 | 5260 | INIT_LIST_HEAD(&dev->napi_list); |
9fdce099 | 5261 | INIT_LIST_HEAD(&dev->unreg_list); |
93f154b5 | 5262 | dev->priv_flags = IFF_XMIT_DST_RELEASE; |
1da177e4 LT |
5263 | setup(dev); |
5264 | strcpy(dev->name, name); | |
5265 | return dev; | |
ab9c73cc JP |
5266 | |
5267 | free_tx: | |
5268 | kfree(tx); | |
5269 | ||
5270 | free_p: | |
5271 | kfree(p); | |
5272 | return NULL; | |
1da177e4 | 5273 | } |
f25f4e44 | 5274 | EXPORT_SYMBOL(alloc_netdev_mq); |
1da177e4 LT |
5275 | |
5276 | /** | |
5277 | * free_netdev - free network device | |
5278 | * @dev: device | |
5279 | * | |
4ec93edb YH |
5280 | * This function does the last stage of destroying an allocated device |
5281 | * interface. The reference to the device object is released. | |
1da177e4 LT |
5282 | * If this is the last reference then it will be freed. |
5283 | */ | |
5284 | void free_netdev(struct net_device *dev) | |
5285 | { | |
d565b0a1 HX |
5286 | struct napi_struct *p, *n; |
5287 | ||
f3005d7f DL |
5288 | release_net(dev_net(dev)); |
5289 | ||
e8a0464c DM |
5290 | kfree(dev->_tx); |
5291 | ||
f001fde5 JP |
5292 | /* Flush device addresses */ |
5293 | dev_addr_flush(dev); | |
5294 | ||
d565b0a1 HX |
5295 | list_for_each_entry_safe(p, n, &dev->napi_list, dev_list) |
5296 | netif_napi_del(p); | |
5297 | ||
3041a069 | 5298 | /* Compatibility with error handling in drivers */ |
1da177e4 LT |
5299 | if (dev->reg_state == NETREG_UNINITIALIZED) { |
5300 | kfree((char *)dev - dev->padded); | |
5301 | return; | |
5302 | } | |
5303 | ||
5304 | BUG_ON(dev->reg_state != NETREG_UNREGISTERED); | |
5305 | dev->reg_state = NETREG_RELEASED; | |
5306 | ||
43cb76d9 GKH |
5307 | /* will free via device release */ |
5308 | put_device(&dev->dev); | |
1da177e4 | 5309 | } |
d1b19dff | 5310 | EXPORT_SYMBOL(free_netdev); |
4ec93edb | 5311 | |
f0db275a SH |
5312 | /** |
5313 | * synchronize_net - Synchronize with packet receive processing | |
5314 | * | |
5315 | * Wait for packets currently being received to be done. | |
5316 | * Does not block later packets from starting. | |
5317 | */ | |
4ec93edb | 5318 | void synchronize_net(void) |
1da177e4 LT |
5319 | { |
5320 | might_sleep(); | |
fbd568a3 | 5321 | synchronize_rcu(); |
1da177e4 | 5322 | } |
d1b19dff | 5323 | EXPORT_SYMBOL(synchronize_net); |
1da177e4 LT |
5324 | |
5325 | /** | |
44a0873d | 5326 | * unregister_netdevice_queue - remove device from the kernel |
1da177e4 | 5327 | * @dev: device |
44a0873d ED |
5328 | * @head: list |
5329 | ||
1da177e4 | 5330 | * This function shuts down a device interface and removes it |
d59b54b1 | 5331 | * from the kernel tables. |
44a0873d | 5332 | * If head not NULL, device is queued to be unregistered later. |
1da177e4 LT |
5333 | * |
5334 | * Callers must hold the rtnl semaphore. You may want | |
5335 | * unregister_netdev() instead of this. | |
5336 | */ | |
5337 | ||
44a0873d | 5338 | void unregister_netdevice_queue(struct net_device *dev, struct list_head *head) |
1da177e4 | 5339 | { |
a6620712 HX |
5340 | ASSERT_RTNL(); |
5341 | ||
44a0873d | 5342 | if (head) { |
9fdce099 | 5343 | list_move_tail(&dev->unreg_list, head); |
44a0873d ED |
5344 | } else { |
5345 | rollback_registered(dev); | |
5346 | /* Finish processing unregister after unlock */ | |
5347 | net_set_todo(dev); | |
5348 | } | |
1da177e4 | 5349 | } |
44a0873d | 5350 | EXPORT_SYMBOL(unregister_netdevice_queue); |
1da177e4 | 5351 | |
9b5e383c ED |
5352 | /** |
5353 | * unregister_netdevice_many - unregister many devices | |
5354 | * @head: list of devices | |
5355 | * | |
5356 | */ | |
5357 | void unregister_netdevice_many(struct list_head *head) | |
5358 | { | |
5359 | struct net_device *dev; | |
5360 | ||
5361 | if (!list_empty(head)) { | |
5362 | rollback_registered_many(head); | |
5363 | list_for_each_entry(dev, head, unreg_list) | |
5364 | net_set_todo(dev); | |
5365 | } | |
5366 | } | |
63c8099d | 5367 | EXPORT_SYMBOL(unregister_netdevice_many); |
9b5e383c | 5368 | |
1da177e4 LT |
5369 | /** |
5370 | * unregister_netdev - remove device from the kernel | |
5371 | * @dev: device | |
5372 | * | |
5373 | * This function shuts down a device interface and removes it | |
d59b54b1 | 5374 | * from the kernel tables. |
1da177e4 LT |
5375 | * |
5376 | * This is just a wrapper for unregister_netdevice that takes | |
5377 | * the rtnl semaphore. In general you want to use this and not | |
5378 | * unregister_netdevice. | |
5379 | */ | |
5380 | void unregister_netdev(struct net_device *dev) | |
5381 | { | |
5382 | rtnl_lock(); | |
5383 | unregister_netdevice(dev); | |
5384 | rtnl_unlock(); | |
5385 | } | |
1da177e4 LT |
5386 | EXPORT_SYMBOL(unregister_netdev); |
5387 | ||
ce286d32 EB |
5388 | /** |
5389 | * dev_change_net_namespace - move device to different nethost namespace | |
5390 | * @dev: device | |
5391 | * @net: network namespace | |
5392 | * @pat: If not NULL name pattern to try if the current device name | |
5393 | * is already taken in the destination network namespace. | |
5394 | * | |
5395 | * This function shuts down a device interface and moves it | |
5396 | * to a new network namespace. On success 0 is returned, on | |
5397 | * a failure a netagive errno code is returned. | |
5398 | * | |
5399 | * Callers must hold the rtnl semaphore. | |
5400 | */ | |
5401 | ||
5402 | int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat) | |
5403 | { | |
5404 | char buf[IFNAMSIZ]; | |
5405 | const char *destname; | |
5406 | int err; | |
5407 | ||
5408 | ASSERT_RTNL(); | |
5409 | ||
5410 | /* Don't allow namespace local devices to be moved. */ | |
5411 | err = -EINVAL; | |
5412 | if (dev->features & NETIF_F_NETNS_LOCAL) | |
5413 | goto out; | |
5414 | ||
3891845e EB |
5415 | #ifdef CONFIG_SYSFS |
5416 | /* Don't allow real devices to be moved when sysfs | |
5417 | * is enabled. | |
5418 | */ | |
5419 | err = -EINVAL; | |
5420 | if (dev->dev.parent) | |
5421 | goto out; | |
5422 | #endif | |
5423 | ||
ce286d32 EB |
5424 | /* Ensure the device has been registrered */ |
5425 | err = -EINVAL; | |
5426 | if (dev->reg_state != NETREG_REGISTERED) | |
5427 | goto out; | |
5428 | ||
5429 | /* Get out if there is nothing todo */ | |
5430 | err = 0; | |
878628fb | 5431 | if (net_eq(dev_net(dev), net)) |
ce286d32 EB |
5432 | goto out; |
5433 | ||
5434 | /* Pick the destination device name, and ensure | |
5435 | * we can use it in the destination network namespace. | |
5436 | */ | |
5437 | err = -EEXIST; | |
5438 | destname = dev->name; | |
5439 | if (__dev_get_by_name(net, destname)) { | |
5440 | /* We get here if we can't use the current device name */ | |
5441 | if (!pat) | |
5442 | goto out; | |
5443 | if (!dev_valid_name(pat)) | |
5444 | goto out; | |
5445 | if (strchr(pat, '%')) { | |
5446 | if (__dev_alloc_name(net, pat, buf) < 0) | |
5447 | goto out; | |
5448 | destname = buf; | |
5449 | } else | |
5450 | destname = pat; | |
5451 | if (__dev_get_by_name(net, destname)) | |
5452 | goto out; | |
5453 | } | |
5454 | ||
5455 | /* | |
5456 | * And now a mini version of register_netdevice unregister_netdevice. | |
5457 | */ | |
5458 | ||
5459 | /* If device is running close it first. */ | |
9b772652 | 5460 | dev_close(dev); |
ce286d32 EB |
5461 | |
5462 | /* And unlink it from device chain */ | |
5463 | err = -ENODEV; | |
5464 | unlist_netdevice(dev); | |
5465 | ||
5466 | synchronize_net(); | |
5467 | ||
5468 | /* Shutdown queueing discipline. */ | |
5469 | dev_shutdown(dev); | |
5470 | ||
5471 | /* Notify protocols, that we are about to destroy | |
5472 | this device. They should clean all the things. | |
5473 | */ | |
5474 | call_netdevice_notifiers(NETDEV_UNREGISTER, dev); | |
5475 | ||
5476 | /* | |
5477 | * Flush the unicast and multicast chains | |
5478 | */ | |
ccffad25 | 5479 | dev_unicast_flush(dev); |
ce286d32 EB |
5480 | dev_addr_discard(dev); |
5481 | ||
3891845e EB |
5482 | netdev_unregister_kobject(dev); |
5483 | ||
ce286d32 | 5484 | /* Actually switch the network namespace */ |
c346dca1 | 5485 | dev_net_set(dev, net); |
ce286d32 EB |
5486 | |
5487 | /* Assign the new device name */ | |
5488 | if (destname != dev->name) | |
5489 | strcpy(dev->name, destname); | |
5490 | ||
5491 | /* If there is an ifindex conflict assign a new one */ | |
5492 | if (__dev_get_by_index(net, dev->ifindex)) { | |
5493 | int iflink = (dev->iflink == dev->ifindex); | |
5494 | dev->ifindex = dev_new_index(net); | |
5495 | if (iflink) | |
5496 | dev->iflink = dev->ifindex; | |
5497 | } | |
5498 | ||
8b41d188 | 5499 | /* Fixup kobjects */ |
aaf8cdc3 | 5500 | err = netdev_register_kobject(dev); |
8b41d188 | 5501 | WARN_ON(err); |
ce286d32 EB |
5502 | |
5503 | /* Add the device back in the hashes */ | |
5504 | list_netdevice(dev); | |
5505 | ||
5506 | /* Notify protocols, that a new device appeared. */ | |
5507 | call_netdevice_notifiers(NETDEV_REGISTER, dev); | |
5508 | ||
5509 | synchronize_net(); | |
5510 | err = 0; | |
5511 | out: | |
5512 | return err; | |
5513 | } | |
463d0183 | 5514 | EXPORT_SYMBOL_GPL(dev_change_net_namespace); |
ce286d32 | 5515 | |
1da177e4 LT |
5516 | static int dev_cpu_callback(struct notifier_block *nfb, |
5517 | unsigned long action, | |
5518 | void *ocpu) | |
5519 | { | |
5520 | struct sk_buff **list_skb; | |
37437bb2 | 5521 | struct Qdisc **list_net; |
1da177e4 LT |
5522 | struct sk_buff *skb; |
5523 | unsigned int cpu, oldcpu = (unsigned long)ocpu; | |
5524 | struct softnet_data *sd, *oldsd; | |
5525 | ||
8bb78442 | 5526 | if (action != CPU_DEAD && action != CPU_DEAD_FROZEN) |
1da177e4 LT |
5527 | return NOTIFY_OK; |
5528 | ||
5529 | local_irq_disable(); | |
5530 | cpu = smp_processor_id(); | |
5531 | sd = &per_cpu(softnet_data, cpu); | |
5532 | oldsd = &per_cpu(softnet_data, oldcpu); | |
5533 | ||
5534 | /* Find end of our completion_queue. */ | |
5535 | list_skb = &sd->completion_queue; | |
5536 | while (*list_skb) | |
5537 | list_skb = &(*list_skb)->next; | |
5538 | /* Append completion queue from offline CPU. */ | |
5539 | *list_skb = oldsd->completion_queue; | |
5540 | oldsd->completion_queue = NULL; | |
5541 | ||
5542 | /* Find end of our output_queue. */ | |
5543 | list_net = &sd->output_queue; | |
5544 | while (*list_net) | |
5545 | list_net = &(*list_net)->next_sched; | |
5546 | /* Append output queue from offline CPU. */ | |
5547 | *list_net = oldsd->output_queue; | |
5548 | oldsd->output_queue = NULL; | |
5549 | ||
5550 | raise_softirq_irqoff(NET_TX_SOFTIRQ); | |
5551 | local_irq_enable(); | |
5552 | ||
5553 | /* Process offline CPU's input_pkt_queue */ | |
5554 | while ((skb = __skb_dequeue(&oldsd->input_pkt_queue))) | |
5555 | netif_rx(skb); | |
5556 | ||
5557 | return NOTIFY_OK; | |
5558 | } | |
1da177e4 LT |
5559 | |
5560 | ||
7f353bf2 | 5561 | /** |
b63365a2 HX |
5562 | * netdev_increment_features - increment feature set by one |
5563 | * @all: current feature set | |
5564 | * @one: new feature set | |
5565 | * @mask: mask feature set | |
7f353bf2 HX |
5566 | * |
5567 | * Computes a new feature set after adding a device with feature set | |
b63365a2 HX |
5568 | * @one to the master device with current feature set @all. Will not |
5569 | * enable anything that is off in @mask. Returns the new feature set. | |
7f353bf2 | 5570 | */ |
b63365a2 HX |
5571 | unsigned long netdev_increment_features(unsigned long all, unsigned long one, |
5572 | unsigned long mask) | |
5573 | { | |
5574 | /* If device needs checksumming, downgrade to it. */ | |
d1b19dff | 5575 | if (all & NETIF_F_NO_CSUM && !(one & NETIF_F_NO_CSUM)) |
b63365a2 HX |
5576 | all ^= NETIF_F_NO_CSUM | (one & NETIF_F_ALL_CSUM); |
5577 | else if (mask & NETIF_F_ALL_CSUM) { | |
5578 | /* If one device supports v4/v6 checksumming, set for all. */ | |
5579 | if (one & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM) && | |
5580 | !(all & NETIF_F_GEN_CSUM)) { | |
5581 | all &= ~NETIF_F_ALL_CSUM; | |
5582 | all |= one & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM); | |
5583 | } | |
e2a6b852 | 5584 | |
b63365a2 HX |
5585 | /* If one device supports hw checksumming, set for all. */ |
5586 | if (one & NETIF_F_GEN_CSUM && !(all & NETIF_F_GEN_CSUM)) { | |
5587 | all &= ~NETIF_F_ALL_CSUM; | |
5588 | all |= NETIF_F_HW_CSUM; | |
5589 | } | |
5590 | } | |
7f353bf2 | 5591 | |
b63365a2 | 5592 | one |= NETIF_F_ALL_CSUM; |
7f353bf2 | 5593 | |
b63365a2 | 5594 | one |= all & NETIF_F_ONE_FOR_ALL; |
d9f5950f | 5595 | all &= one | NETIF_F_LLTX | NETIF_F_GSO | NETIF_F_UFO; |
b63365a2 | 5596 | all |= one & mask & NETIF_F_ONE_FOR_ALL; |
7f353bf2 HX |
5597 | |
5598 | return all; | |
5599 | } | |
b63365a2 | 5600 | EXPORT_SYMBOL(netdev_increment_features); |
7f353bf2 | 5601 | |
30d97d35 PE |
5602 | static struct hlist_head *netdev_create_hash(void) |
5603 | { | |
5604 | int i; | |
5605 | struct hlist_head *hash; | |
5606 | ||
5607 | hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL); | |
5608 | if (hash != NULL) | |
5609 | for (i = 0; i < NETDEV_HASHENTRIES; i++) | |
5610 | INIT_HLIST_HEAD(&hash[i]); | |
5611 | ||
5612 | return hash; | |
5613 | } | |
5614 | ||
881d966b | 5615 | /* Initialize per network namespace state */ |
4665079c | 5616 | static int __net_init netdev_init(struct net *net) |
881d966b | 5617 | { |
881d966b | 5618 | INIT_LIST_HEAD(&net->dev_base_head); |
881d966b | 5619 | |
30d97d35 PE |
5620 | net->dev_name_head = netdev_create_hash(); |
5621 | if (net->dev_name_head == NULL) | |
5622 | goto err_name; | |
881d966b | 5623 | |
30d97d35 PE |
5624 | net->dev_index_head = netdev_create_hash(); |
5625 | if (net->dev_index_head == NULL) | |
5626 | goto err_idx; | |
881d966b EB |
5627 | |
5628 | return 0; | |
30d97d35 PE |
5629 | |
5630 | err_idx: | |
5631 | kfree(net->dev_name_head); | |
5632 | err_name: | |
5633 | return -ENOMEM; | |
881d966b EB |
5634 | } |
5635 | ||
f0db275a SH |
5636 | /** |
5637 | * netdev_drivername - network driver for the device | |
5638 | * @dev: network device | |
5639 | * @buffer: buffer for resulting name | |
5640 | * @len: size of buffer | |
5641 | * | |
5642 | * Determine network driver for device. | |
5643 | */ | |
cf04a4c7 | 5644 | char *netdev_drivername(const struct net_device *dev, char *buffer, int len) |
6579e57b | 5645 | { |
cf04a4c7 SH |
5646 | const struct device_driver *driver; |
5647 | const struct device *parent; | |
6579e57b AV |
5648 | |
5649 | if (len <= 0 || !buffer) | |
5650 | return buffer; | |
5651 | buffer[0] = 0; | |
5652 | ||
5653 | parent = dev->dev.parent; | |
5654 | ||
5655 | if (!parent) | |
5656 | return buffer; | |
5657 | ||
5658 | driver = parent->driver; | |
5659 | if (driver && driver->name) | |
5660 | strlcpy(buffer, driver->name, len); | |
5661 | return buffer; | |
5662 | } | |
5663 | ||
4665079c | 5664 | static void __net_exit netdev_exit(struct net *net) |
881d966b EB |
5665 | { |
5666 | kfree(net->dev_name_head); | |
5667 | kfree(net->dev_index_head); | |
5668 | } | |
5669 | ||
022cbae6 | 5670 | static struct pernet_operations __net_initdata netdev_net_ops = { |
881d966b EB |
5671 | .init = netdev_init, |
5672 | .exit = netdev_exit, | |
5673 | }; | |
5674 | ||
4665079c | 5675 | static void __net_exit default_device_exit(struct net *net) |
ce286d32 | 5676 | { |
8eb79863 | 5677 | struct net_device *dev; |
ce286d32 EB |
5678 | /* |
5679 | * Push all migratable of the network devices back to the | |
5680 | * initial network namespace | |
5681 | */ | |
5682 | rtnl_lock(); | |
8eb79863 EB |
5683 | restart: |
5684 | for_each_netdev(net, dev) { | |
ce286d32 | 5685 | int err; |
aca51397 | 5686 | char fb_name[IFNAMSIZ]; |
ce286d32 EB |
5687 | |
5688 | /* Ignore unmoveable devices (i.e. loopback) */ | |
5689 | if (dev->features & NETIF_F_NETNS_LOCAL) | |
5690 | continue; | |
5691 | ||
d0c082ce EB |
5692 | /* Delete virtual devices */ |
5693 | if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink) { | |
23289a37 | 5694 | dev->rtnl_link_ops->dellink(dev, NULL); |
8eb79863 | 5695 | goto restart; |
d0c082ce EB |
5696 | } |
5697 | ||
ce286d32 | 5698 | /* Push remaing network devices to init_net */ |
aca51397 PE |
5699 | snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex); |
5700 | err = dev_change_net_namespace(dev, &init_net, fb_name); | |
ce286d32 | 5701 | if (err) { |
aca51397 | 5702 | printk(KERN_EMERG "%s: failed to move %s to init_net: %d\n", |
ce286d32 | 5703 | __func__, dev->name, err); |
aca51397 | 5704 | BUG(); |
ce286d32 | 5705 | } |
8eb79863 | 5706 | goto restart; |
ce286d32 EB |
5707 | } |
5708 | rtnl_unlock(); | |
5709 | } | |
5710 | ||
022cbae6 | 5711 | static struct pernet_operations __net_initdata default_device_ops = { |
ce286d32 EB |
5712 | .exit = default_device_exit, |
5713 | }; | |
5714 | ||
1da177e4 LT |
5715 | /* |
5716 | * Initialize the DEV module. At boot time this walks the device list and | |
5717 | * unhooks any devices that fail to initialise (normally hardware not | |
5718 | * present) and leaves us with a valid list of present and active devices. | |
5719 | * | |
5720 | */ | |
5721 | ||
5722 | /* | |
5723 | * This is called single threaded during boot, so no need | |
5724 | * to take the rtnl semaphore. | |
5725 | */ | |
5726 | static int __init net_dev_init(void) | |
5727 | { | |
5728 | int i, rc = -ENOMEM; | |
5729 | ||
5730 | BUG_ON(!dev_boot_phase); | |
5731 | ||
1da177e4 LT |
5732 | if (dev_proc_init()) |
5733 | goto out; | |
5734 | ||
8b41d188 | 5735 | if (netdev_kobject_init()) |
1da177e4 LT |
5736 | goto out; |
5737 | ||
5738 | INIT_LIST_HEAD(&ptype_all); | |
82d8a867 | 5739 | for (i = 0; i < PTYPE_HASH_SIZE; i++) |
1da177e4 LT |
5740 | INIT_LIST_HEAD(&ptype_base[i]); |
5741 | ||
881d966b EB |
5742 | if (register_pernet_subsys(&netdev_net_ops)) |
5743 | goto out; | |
1da177e4 LT |
5744 | |
5745 | /* | |
5746 | * Initialise the packet receive queues. | |
5747 | */ | |
5748 | ||
6f912042 | 5749 | for_each_possible_cpu(i) { |
1da177e4 LT |
5750 | struct softnet_data *queue; |
5751 | ||
5752 | queue = &per_cpu(softnet_data, i); | |
5753 | skb_queue_head_init(&queue->input_pkt_queue); | |
1da177e4 LT |
5754 | queue->completion_queue = NULL; |
5755 | INIT_LIST_HEAD(&queue->poll_list); | |
bea3348e SH |
5756 | |
5757 | queue->backlog.poll = process_backlog; | |
5758 | queue->backlog.weight = weight_p; | |
d565b0a1 | 5759 | queue->backlog.gro_list = NULL; |
4ae5544f | 5760 | queue->backlog.gro_count = 0; |
1da177e4 LT |
5761 | } |
5762 | ||
1da177e4 LT |
5763 | dev_boot_phase = 0; |
5764 | ||
505d4f73 EB |
5765 | /* The loopback device is special if any other network devices |
5766 | * is present in a network namespace the loopback device must | |
5767 | * be present. Since we now dynamically allocate and free the | |
5768 | * loopback device ensure this invariant is maintained by | |
5769 | * keeping the loopback device as the first device on the | |
5770 | * list of network devices. Ensuring the loopback devices | |
5771 | * is the first device that appears and the last network device | |
5772 | * that disappears. | |
5773 | */ | |
5774 | if (register_pernet_device(&loopback_net_ops)) | |
5775 | goto out; | |
5776 | ||
5777 | if (register_pernet_device(&default_device_ops)) | |
5778 | goto out; | |
5779 | ||
962cf36c CM |
5780 | open_softirq(NET_TX_SOFTIRQ, net_tx_action); |
5781 | open_softirq(NET_RX_SOFTIRQ, net_rx_action); | |
1da177e4 LT |
5782 | |
5783 | hotcpu_notifier(dev_cpu_callback, 0); | |
5784 | dst_init(); | |
5785 | dev_mcast_init(); | |
5786 | rc = 0; | |
5787 | out: | |
5788 | return rc; | |
5789 | } | |
5790 | ||
5791 | subsys_initcall(net_dev_init); | |
5792 | ||
e88721f8 KK |
5793 | static int __init initialize_hashrnd(void) |
5794 | { | |
5795 | get_random_bytes(&skb_tx_hashrnd, sizeof(skb_tx_hashrnd)); | |
5796 | return 0; | |
5797 | } | |
5798 | ||
5799 | late_initcall_sync(initialize_hashrnd); | |
5800 |