blob: c4e8ebe55e26946be0d6bb3716ff02b2efc63a01 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Cong Wang900ff8c2013-02-18 19:20:33 +00002#include <linux/netdevice.h>
3#include <linux/proc_fs.h>
4#include <linux/seq_file.h>
5#include <net/wext.h>
6
7#define BUCKET_SPACE (32 - NETDEV_HASHBITS - 1)
8
9#define get_bucket(x) ((x) >> BUCKET_SPACE)
10#define get_offset(x) ((x) & ((1 << BUCKET_SPACE) - 1))
11#define set_bucket_offset(b, o) ((b) << BUCKET_SPACE | (o))
12
13extern struct list_head ptype_all __read_mostly;
14extern struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
15
16static inline struct net_device *dev_from_same_bucket(struct seq_file *seq, loff_t *pos)
17{
18 struct net *net = seq_file_net(seq);
19 struct net_device *dev;
Cong Wang900ff8c2013-02-18 19:20:33 +000020 struct hlist_head *h;
21 unsigned int count = 0, offset = get_offset(*pos);
22
23 h = &net->dev_name_head[get_bucket(*pos)];
Sasha Levinb67bfe02013-02-27 17:06:00 -080024 hlist_for_each_entry_rcu(dev, h, name_hlist) {
Cong Wang900ff8c2013-02-18 19:20:33 +000025 if (++count == offset)
26 return dev;
27 }
28
29 return NULL;
30}
31
32static inline struct net_device *dev_from_bucket(struct seq_file *seq, loff_t *pos)
33{
34 struct net_device *dev;
35 unsigned int bucket;
36
37 do {
38 dev = dev_from_same_bucket(seq, pos);
39 if (dev)
40 return dev;
41
42 bucket = get_bucket(*pos) + 1;
43 *pos = set_bucket_offset(bucket, 1);
44 } while (bucket < NETDEV_HASHENTRIES);
45
46 return NULL;
47}
48
49/*
50 * This is invoked by the /proc filesystem handler to display a device
51 * in detail.
52 */
53static void *dev_seq_start(struct seq_file *seq, loff_t *pos)
54 __acquires(RCU)
55{
56 rcu_read_lock();
57 if (!*pos)
58 return SEQ_START_TOKEN;
59
60 if (get_bucket(*pos) >= NETDEV_HASHENTRIES)
61 return NULL;
62
63 return dev_from_bucket(seq, pos);
64}
65
66static void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
67{
68 ++*pos;
69 return dev_from_bucket(seq, pos);
70}
71
72static void dev_seq_stop(struct seq_file *seq, void *v)
73 __releases(RCU)
74{
75 rcu_read_unlock();
76}
77
78static void dev_seq_printf_stats(struct seq_file *seq, struct net_device *dev)
79{
80 struct rtnl_link_stats64 temp;
81 const struct rtnl_link_stats64 *stats = dev_get_stats(dev, &temp);
82
83 seq_printf(seq, "%6s: %7llu %7llu %4llu %4llu %4llu %5llu %10llu %9llu "
84 "%8llu %7llu %4llu %4llu %4llu %5llu %7llu %10llu\n",
85 dev->name, stats->rx_bytes, stats->rx_packets,
86 stats->rx_errors,
87 stats->rx_dropped + stats->rx_missed_errors,
88 stats->rx_fifo_errors,
89 stats->rx_length_errors + stats->rx_over_errors +
90 stats->rx_crc_errors + stats->rx_frame_errors,
91 stats->rx_compressed, stats->multicast,
92 stats->tx_bytes, stats->tx_packets,
93 stats->tx_errors, stats->tx_dropped,
94 stats->tx_fifo_errors, stats->collisions,
95 stats->tx_carrier_errors +
96 stats->tx_aborted_errors +
97 stats->tx_window_errors +
98 stats->tx_heartbeat_errors,
99 stats->tx_compressed);
100}
101
102/*
103 * Called from the PROCfs module. This now uses the new arbitrary sized
104 * /proc/net interface to create /proc/net/dev
105 */
106static int dev_seq_show(struct seq_file *seq, void *v)
107{
108 if (v == SEQ_START_TOKEN)
109 seq_puts(seq, "Inter-| Receive "
110 " | Transmit\n"
111 " face |bytes packets errs drop fifo frame "
112 "compressed multicast|bytes packets errs "
113 "drop fifo colls carrier compressed\n");
114 else
115 dev_seq_printf_stats(seq, v);
116 return 0;
117}
118
119static struct softnet_data *softnet_get_online(loff_t *pos)
120{
121 struct softnet_data *sd = NULL;
122
123 while (*pos < nr_cpu_ids)
124 if (cpu_online(*pos)) {
125 sd = &per_cpu(softnet_data, *pos);
126 break;
127 } else
128 ++*pos;
129 return sd;
130}
131
132static void *softnet_seq_start(struct seq_file *seq, loff_t *pos)
133{
134 return softnet_get_online(pos);
135}
136
137static void *softnet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
138{
139 ++*pos;
140 return softnet_get_online(pos);
141}
142
143static void softnet_seq_stop(struct seq_file *seq, void *v)
144{
145}
146
147static int softnet_seq_show(struct seq_file *seq, void *v)
148{
149 struct softnet_data *sd = v;
Willem de Bruijn99bbc702013-05-20 04:02:32 +0000150 unsigned int flow_limit_count = 0;
Cong Wang900ff8c2013-02-18 19:20:33 +0000151
Willem de Bruijn99bbc702013-05-20 04:02:32 +0000152#ifdef CONFIG_NET_FLOW_LIMIT
153 struct sd_flow_limit *fl;
154
155 rcu_read_lock();
156 fl = rcu_dereference(sd->flow_limit);
157 if (fl)
158 flow_limit_count = fl->count;
159 rcu_read_unlock();
160#endif
161
162 seq_printf(seq,
163 "%08x %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
Cong Wang900ff8c2013-02-18 19:20:33 +0000164 sd->processed, sd->dropped, sd->time_squeeze, 0,
165 0, 0, 0, 0, /* was fastroute */
Florian Westphalf0cdf762016-04-24 21:38:14 +0200166 0, /* was cpu_collision */
167 sd->received_rps, flow_limit_count);
Cong Wang900ff8c2013-02-18 19:20:33 +0000168 return 0;
169}
170
171static const struct seq_operations dev_seq_ops = {
172 .start = dev_seq_start,
173 .next = dev_seq_next,
174 .stop = dev_seq_stop,
175 .show = dev_seq_show,
176};
177
178static int dev_seq_open(struct inode *inode, struct file *file)
179{
180 return seq_open_net(inode, file, &dev_seq_ops,
181 sizeof(struct seq_net_private));
182}
183
184static const struct file_operations dev_seq_fops = {
Cong Wang900ff8c2013-02-18 19:20:33 +0000185 .open = dev_seq_open,
186 .read = seq_read,
187 .llseek = seq_lseek,
188 .release = seq_release_net,
189};
190
191static const struct seq_operations softnet_seq_ops = {
192 .start = softnet_seq_start,
193 .next = softnet_seq_next,
194 .stop = softnet_seq_stop,
195 .show = softnet_seq_show,
196};
197
Cong Wang900ff8c2013-02-18 19:20:33 +0000198static void *ptype_get_idx(loff_t pos)
199{
200 struct packet_type *pt = NULL;
201 loff_t i = 0;
202 int t;
203
204 list_for_each_entry_rcu(pt, &ptype_all, list) {
205 if (i == pos)
206 return pt;
207 ++i;
208 }
209
210 for (t = 0; t < PTYPE_HASH_SIZE; t++) {
211 list_for_each_entry_rcu(pt, &ptype_base[t], list) {
212 if (i == pos)
213 return pt;
214 ++i;
215 }
216 }
217 return NULL;
218}
219
220static void *ptype_seq_start(struct seq_file *seq, loff_t *pos)
221 __acquires(RCU)
222{
223 rcu_read_lock();
224 return *pos ? ptype_get_idx(*pos - 1) : SEQ_START_TOKEN;
225}
226
227static void *ptype_seq_next(struct seq_file *seq, void *v, loff_t *pos)
228{
229 struct packet_type *pt;
230 struct list_head *nxt;
231 int hash;
232
233 ++*pos;
234 if (v == SEQ_START_TOKEN)
235 return ptype_get_idx(0);
236
237 pt = v;
238 nxt = pt->list.next;
239 if (pt->type == htons(ETH_P_ALL)) {
240 if (nxt != &ptype_all)
241 goto found;
242 hash = 0;
243 nxt = ptype_base[0].next;
244 } else
245 hash = ntohs(pt->type) & PTYPE_HASH_MASK;
246
247 while (nxt == &ptype_base[hash]) {
248 if (++hash >= PTYPE_HASH_SIZE)
249 return NULL;
250 nxt = ptype_base[hash].next;
251 }
252found:
253 return list_entry(nxt, struct packet_type, list);
254}
255
256static void ptype_seq_stop(struct seq_file *seq, void *v)
257 __releases(RCU)
258{
259 rcu_read_unlock();
260}
261
262static int ptype_seq_show(struct seq_file *seq, void *v)
263{
264 struct packet_type *pt = v;
265
266 if (v == SEQ_START_TOKEN)
267 seq_puts(seq, "Type Device Function\n");
268 else if (pt->dev == NULL || dev_net(pt->dev) == seq_file_net(seq)) {
269 if (pt->type == htons(ETH_P_ALL))
270 seq_puts(seq, "ALL ");
271 else
272 seq_printf(seq, "%04x", ntohs(pt->type));
273
David S. Millereaac5f32013-03-25 14:12:55 -0400274 seq_printf(seq, " %-8s %pf\n",
Cong Wang900ff8c2013-02-18 19:20:33 +0000275 pt->dev ? pt->dev->name : "", pt->func);
276 }
277
278 return 0;
279}
280
281static const struct seq_operations ptype_seq_ops = {
282 .start = ptype_seq_start,
283 .next = ptype_seq_next,
284 .stop = ptype_seq_stop,
285 .show = ptype_seq_show,
286};
287
288static int ptype_seq_open(struct inode *inode, struct file *file)
289{
290 return seq_open_net(inode, file, &ptype_seq_ops,
291 sizeof(struct seq_net_private));
292}
293
294static const struct file_operations ptype_seq_fops = {
Cong Wang900ff8c2013-02-18 19:20:33 +0000295 .open = ptype_seq_open,
296 .read = seq_read,
297 .llseek = seq_lseek,
298 .release = seq_release_net,
299};
300
301
302static int __net_init dev_proc_net_init(struct net *net)
303{
304 int rc = -ENOMEM;
305
Joe Perchesd6444062018-03-23 15:54:38 -0700306 if (!proc_create("dev", 0444, net->proc_net, &dev_seq_fops))
Cong Wang900ff8c2013-02-18 19:20:33 +0000307 goto out;
Christoph Hellwigfddda2b2018-04-13 19:44:18 +0200308 if (!proc_create_seq("softnet_stat", 0444, net->proc_net,
309 &softnet_seq_ops))
Cong Wang900ff8c2013-02-18 19:20:33 +0000310 goto out_dev;
Joe Perchesd6444062018-03-23 15:54:38 -0700311 if (!proc_create("ptype", 0444, net->proc_net, &ptype_seq_fops))
Cong Wang900ff8c2013-02-18 19:20:33 +0000312 goto out_softnet;
313
314 if (wext_proc_init(net))
315 goto out_ptype;
316 rc = 0;
317out:
318 return rc;
319out_ptype:
320 remove_proc_entry("ptype", net->proc_net);
321out_softnet:
322 remove_proc_entry("softnet_stat", net->proc_net);
323out_dev:
324 remove_proc_entry("dev", net->proc_net);
325 goto out;
326}
327
328static void __net_exit dev_proc_net_exit(struct net *net)
329{
330 wext_proc_exit(net);
331
332 remove_proc_entry("ptype", net->proc_net);
333 remove_proc_entry("softnet_stat", net->proc_net);
334 remove_proc_entry("dev", net->proc_net);
335}
336
337static struct pernet_operations __net_initdata dev_proc_ops = {
338 .init = dev_proc_net_init,
339 .exit = dev_proc_net_exit,
340};
341
Cong Wang900ff8c2013-02-18 19:20:33 +0000342static int dev_mc_seq_show(struct seq_file *seq, void *v)
343{
344 struct netdev_hw_addr *ha;
345 struct net_device *dev = v;
346
347 if (v == SEQ_START_TOKEN)
348 return 0;
349
350 netif_addr_lock_bh(dev);
351 netdev_for_each_mc_addr(ha, dev) {
Joe Perchesfbd0ac62017-06-02 02:40:44 -0700352 seq_printf(seq, "%-4d %-15s %-5d %-5d %*phN\n",
353 dev->ifindex, dev->name,
354 ha->refcount, ha->global_use,
355 (int)dev->addr_len, ha->addr);
Cong Wang900ff8c2013-02-18 19:20:33 +0000356 }
357 netif_addr_unlock_bh(dev);
358 return 0;
359}
360
361static const struct seq_operations dev_mc_seq_ops = {
362 .start = dev_seq_start,
363 .next = dev_seq_next,
364 .stop = dev_seq_stop,
365 .show = dev_mc_seq_show,
366};
367
368static int dev_mc_seq_open(struct inode *inode, struct file *file)
369{
370 return seq_open_net(inode, file, &dev_mc_seq_ops,
371 sizeof(struct seq_net_private));
372}
373
374static const struct file_operations dev_mc_seq_fops = {
Cong Wang900ff8c2013-02-18 19:20:33 +0000375 .open = dev_mc_seq_open,
376 .read = seq_read,
377 .llseek = seq_lseek,
378 .release = seq_release_net,
379};
380
381static int __net_init dev_mc_net_init(struct net *net)
382{
383 if (!proc_create("dev_mcast", 0, net->proc_net, &dev_mc_seq_fops))
384 return -ENOMEM;
385 return 0;
386}
387
388static void __net_exit dev_mc_net_exit(struct net *net)
389{
390 remove_proc_entry("dev_mcast", net->proc_net);
391}
392
393static struct pernet_operations __net_initdata dev_mc_net_ops = {
394 .init = dev_mc_net_init,
395 .exit = dev_mc_net_exit,
396};
397
Cong Wangcd061572013-02-19 02:47:05 +0000398int __init dev_proc_init(void)
Cong Wang900ff8c2013-02-18 19:20:33 +0000399{
Cong Wangcd061572013-02-19 02:47:05 +0000400 int ret = register_pernet_subsys(&dev_proc_ops);
401 if (!ret)
402 return register_pernet_subsys(&dev_mc_net_ops);
403 return ret;
Cong Wang900ff8c2013-02-18 19:20:33 +0000404}