GNU Linux-libre 4.14.324-gnu1
[releases.git] / net / core / net-procfs.c
1 // SPDX-License-Identifier: GPL-2.0
2 #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
13 extern struct list_head ptype_all __read_mostly;
14 extern struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
15
16 static 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;
20         struct hlist_head *h;
21         unsigned int count = 0, offset = get_offset(*pos);
22
23         h = &net->dev_name_head[get_bucket(*pos)];
24         hlist_for_each_entry_rcu(dev, h, name_hlist) {
25                 if (++count == offset)
26                         return dev;
27         }
28
29         return NULL;
30 }
31
32 static 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  */
53 static 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
66 static 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
72 static void dev_seq_stop(struct seq_file *seq, void *v)
73         __releases(RCU)
74 {
75         rcu_read_unlock();
76 }
77
78 static 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  */
106 static 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
119 static 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
132 static void *softnet_seq_start(struct seq_file *seq, loff_t *pos)
133 {
134         return softnet_get_online(pos);
135 }
136
137 static void *softnet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
138 {
139         ++*pos;
140         return softnet_get_online(pos);
141 }
142
143 static void softnet_seq_stop(struct seq_file *seq, void *v)
144 {
145 }
146
147 static int softnet_seq_show(struct seq_file *seq, void *v)
148 {
149         struct softnet_data *sd = v;
150         unsigned int flow_limit_count = 0;
151
152 #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",
164                    sd->processed, sd->dropped, sd->time_squeeze, 0,
165                    0, 0, 0, 0, /* was fastroute */
166                    0,   /* was cpu_collision */
167                    sd->received_rps, flow_limit_count);
168         return 0;
169 }
170
171 static 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
178 static 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
184 static const struct file_operations dev_seq_fops = {
185         .owner   = THIS_MODULE,
186         .open    = dev_seq_open,
187         .read    = seq_read,
188         .llseek  = seq_lseek,
189         .release = seq_release_net,
190 };
191
192 static const struct seq_operations softnet_seq_ops = {
193         .start = softnet_seq_start,
194         .next  = softnet_seq_next,
195         .stop  = softnet_seq_stop,
196         .show  = softnet_seq_show,
197 };
198
199 static int softnet_seq_open(struct inode *inode, struct file *file)
200 {
201         return seq_open(file, &softnet_seq_ops);
202 }
203
204 static const struct file_operations softnet_seq_fops = {
205         .owner   = THIS_MODULE,
206         .open    = softnet_seq_open,
207         .read    = seq_read,
208         .llseek  = seq_lseek,
209         .release = seq_release,
210 };
211
212 static void *ptype_get_idx(struct seq_file *seq, loff_t pos)
213 {
214         struct list_head *ptype_list = NULL;
215         struct packet_type *pt = NULL;
216         struct net_device *dev;
217         loff_t i = 0;
218         int t;
219
220         for_each_netdev_rcu(seq_file_net(seq), dev) {
221                 ptype_list = &dev->ptype_all;
222                 list_for_each_entry_rcu(pt, ptype_list, list) {
223                         if (i == pos)
224                                 return pt;
225                         ++i;
226                 }
227         }
228
229         list_for_each_entry_rcu(pt, &ptype_all, list) {
230                 if (i == pos)
231                         return pt;
232                 ++i;
233         }
234
235         for (t = 0; t < PTYPE_HASH_SIZE; t++) {
236                 list_for_each_entry_rcu(pt, &ptype_base[t], list) {
237                         if (i == pos)
238                                 return pt;
239                         ++i;
240                 }
241         }
242         return NULL;
243 }
244
245 static void *ptype_seq_start(struct seq_file *seq, loff_t *pos)
246         __acquires(RCU)
247 {
248         rcu_read_lock();
249         return *pos ? ptype_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
250 }
251
252 static void *ptype_seq_next(struct seq_file *seq, void *v, loff_t *pos)
253 {
254         struct net_device *dev;
255         struct packet_type *pt;
256         struct list_head *nxt;
257         int hash;
258
259         ++*pos;
260         if (v == SEQ_START_TOKEN)
261                 return ptype_get_idx(seq, 0);
262
263         pt = v;
264         nxt = pt->list.next;
265         if (pt->dev) {
266                 if (nxt != &pt->dev->ptype_all)
267                         goto found;
268
269                 dev = pt->dev;
270                 for_each_netdev_continue_rcu(seq_file_net(seq), dev) {
271                         if (!list_empty(&dev->ptype_all)) {
272                                 nxt = dev->ptype_all.next;
273                                 goto found;
274                         }
275                 }
276
277                 nxt = ptype_all.next;
278                 goto ptype_all;
279         }
280
281         if (pt->type == htons(ETH_P_ALL)) {
282 ptype_all:
283                 if (nxt != &ptype_all)
284                         goto found;
285                 hash = 0;
286                 nxt = ptype_base[0].next;
287         } else
288                 hash = ntohs(pt->type) & PTYPE_HASH_MASK;
289
290         while (nxt == &ptype_base[hash]) {
291                 if (++hash >= PTYPE_HASH_SIZE)
292                         return NULL;
293                 nxt = ptype_base[hash].next;
294         }
295 found:
296         return list_entry(nxt, struct packet_type, list);
297 }
298
299 static void ptype_seq_stop(struct seq_file *seq, void *v)
300         __releases(RCU)
301 {
302         rcu_read_unlock();
303 }
304
305 static int ptype_seq_show(struct seq_file *seq, void *v)
306 {
307         struct packet_type *pt = v;
308
309         if (v == SEQ_START_TOKEN)
310                 seq_puts(seq, "Type Device      Function\n");
311         else if ((!pt->af_packet_net || net_eq(pt->af_packet_net, seq_file_net(seq))) &&
312                  (!pt->dev || net_eq(dev_net(pt->dev), seq_file_net(seq)))) {
313                 if (pt->type == htons(ETH_P_ALL))
314                         seq_puts(seq, "ALL ");
315                 else
316                         seq_printf(seq, "%04x", ntohs(pt->type));
317
318                 seq_printf(seq, " %-8s %pf\n",
319                            pt->dev ? pt->dev->name : "", pt->func);
320         }
321
322         return 0;
323 }
324
325 static const struct seq_operations ptype_seq_ops = {
326         .start = ptype_seq_start,
327         .next  = ptype_seq_next,
328         .stop  = ptype_seq_stop,
329         .show  = ptype_seq_show,
330 };
331
332 static int ptype_seq_open(struct inode *inode, struct file *file)
333 {
334         return seq_open_net(inode, file, &ptype_seq_ops,
335                         sizeof(struct seq_net_private));
336 }
337
338 static const struct file_operations ptype_seq_fops = {
339         .owner   = THIS_MODULE,
340         .open    = ptype_seq_open,
341         .read    = seq_read,
342         .llseek  = seq_lseek,
343         .release = seq_release_net,
344 };
345
346
347 static int __net_init dev_proc_net_init(struct net *net)
348 {
349         int rc = -ENOMEM;
350
351         if (!proc_create("dev", S_IRUGO, net->proc_net, &dev_seq_fops))
352                 goto out;
353         if (!proc_create("softnet_stat", S_IRUGO, net->proc_net,
354                          &softnet_seq_fops))
355                 goto out_dev;
356         if (!proc_create("ptype", S_IRUGO, net->proc_net, &ptype_seq_fops))
357                 goto out_softnet;
358
359         if (wext_proc_init(net))
360                 goto out_ptype;
361         rc = 0;
362 out:
363         return rc;
364 out_ptype:
365         remove_proc_entry("ptype", net->proc_net);
366 out_softnet:
367         remove_proc_entry("softnet_stat", net->proc_net);
368 out_dev:
369         remove_proc_entry("dev", net->proc_net);
370         goto out;
371 }
372
373 static void __net_exit dev_proc_net_exit(struct net *net)
374 {
375         wext_proc_exit(net);
376
377         remove_proc_entry("ptype", net->proc_net);
378         remove_proc_entry("softnet_stat", net->proc_net);
379         remove_proc_entry("dev", net->proc_net);
380 }
381
382 static struct pernet_operations __net_initdata dev_proc_ops = {
383         .init = dev_proc_net_init,
384         .exit = dev_proc_net_exit,
385 };
386
387 static int dev_mc_seq_show(struct seq_file *seq, void *v)
388 {
389         struct netdev_hw_addr *ha;
390         struct net_device *dev = v;
391
392         if (v == SEQ_START_TOKEN)
393                 return 0;
394
395         netif_addr_lock_bh(dev);
396         netdev_for_each_mc_addr(ha, dev) {
397                 seq_printf(seq, "%-4d %-15s %-5d %-5d %*phN\n",
398                            dev->ifindex, dev->name,
399                            ha->refcount, ha->global_use,
400                            (int)dev->addr_len, ha->addr);
401         }
402         netif_addr_unlock_bh(dev);
403         return 0;
404 }
405
406 static const struct seq_operations dev_mc_seq_ops = {
407         .start = dev_seq_start,
408         .next  = dev_seq_next,
409         .stop  = dev_seq_stop,
410         .show  = dev_mc_seq_show,
411 };
412
413 static int dev_mc_seq_open(struct inode *inode, struct file *file)
414 {
415         return seq_open_net(inode, file, &dev_mc_seq_ops,
416                             sizeof(struct seq_net_private));
417 }
418
419 static const struct file_operations dev_mc_seq_fops = {
420         .owner   = THIS_MODULE,
421         .open    = dev_mc_seq_open,
422         .read    = seq_read,
423         .llseek  = seq_lseek,
424         .release = seq_release_net,
425 };
426
427 static int __net_init dev_mc_net_init(struct net *net)
428 {
429         if (!proc_create("dev_mcast", 0, net->proc_net, &dev_mc_seq_fops))
430                 return -ENOMEM;
431         return 0;
432 }
433
434 static void __net_exit dev_mc_net_exit(struct net *net)
435 {
436         remove_proc_entry("dev_mcast", net->proc_net);
437 }
438
439 static struct pernet_operations __net_initdata dev_mc_net_ops = {
440         .init = dev_mc_net_init,
441         .exit = dev_mc_net_exit,
442 };
443
444 int __init dev_proc_init(void)
445 {
446         int ret = register_pernet_subsys(&dev_proc_ops);
447         if (!ret)
448                 return register_pernet_subsys(&dev_mc_net_ops);
449         return ret;
450 }