GNU Linux-libre 4.9.308-gnu1
[releases.git] / net / core / net-procfs.c
1 #include <linux/netdevice.h>
2 #include <linux/proc_fs.h>
3 #include <linux/seq_file.h>
4 #include <net/wext.h>
5
6 #define BUCKET_SPACE (32 - NETDEV_HASHBITS - 1)
7
8 #define get_bucket(x) ((x) >> BUCKET_SPACE)
9 #define get_offset(x) ((x) & ((1 << BUCKET_SPACE) - 1))
10 #define set_bucket_offset(b, o) ((b) << BUCKET_SPACE | (o))
11
12 extern struct list_head ptype_all __read_mostly;
13 extern struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
14
15 static inline struct net_device *dev_from_same_bucket(struct seq_file *seq, loff_t *pos)
16 {
17         struct net *net = seq_file_net(seq);
18         struct net_device *dev;
19         struct hlist_head *h;
20         unsigned int count = 0, offset = get_offset(*pos);
21
22         h = &net->dev_name_head[get_bucket(*pos)];
23         hlist_for_each_entry_rcu(dev, h, name_hlist) {
24                 if (++count == offset)
25                         return dev;
26         }
27
28         return NULL;
29 }
30
31 static inline struct net_device *dev_from_bucket(struct seq_file *seq, loff_t *pos)
32 {
33         struct net_device *dev;
34         unsigned int bucket;
35
36         do {
37                 dev = dev_from_same_bucket(seq, pos);
38                 if (dev)
39                         return dev;
40
41                 bucket = get_bucket(*pos) + 1;
42                 *pos = set_bucket_offset(bucket, 1);
43         } while (bucket < NETDEV_HASHENTRIES);
44
45         return NULL;
46 }
47
48 /*
49  *      This is invoked by the /proc filesystem handler to display a device
50  *      in detail.
51  */
52 static void *dev_seq_start(struct seq_file *seq, loff_t *pos)
53         __acquires(RCU)
54 {
55         rcu_read_lock();
56         if (!*pos)
57                 return SEQ_START_TOKEN;
58
59         if (get_bucket(*pos) >= NETDEV_HASHENTRIES)
60                 return NULL;
61
62         return dev_from_bucket(seq, pos);
63 }
64
65 static void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos)
66 {
67         ++*pos;
68         return dev_from_bucket(seq, pos);
69 }
70
71 static void dev_seq_stop(struct seq_file *seq, void *v)
72         __releases(RCU)
73 {
74         rcu_read_unlock();
75 }
76
77 static void dev_seq_printf_stats(struct seq_file *seq, struct net_device *dev)
78 {
79         struct rtnl_link_stats64 temp;
80         const struct rtnl_link_stats64 *stats = dev_get_stats(dev, &temp);
81
82         seq_printf(seq, "%6s: %7llu %7llu %4llu %4llu %4llu %5llu %10llu %9llu "
83                    "%8llu %7llu %4llu %4llu %4llu %5llu %7llu %10llu\n",
84                    dev->name, stats->rx_bytes, stats->rx_packets,
85                    stats->rx_errors,
86                    stats->rx_dropped + stats->rx_missed_errors,
87                    stats->rx_fifo_errors,
88                    stats->rx_length_errors + stats->rx_over_errors +
89                     stats->rx_crc_errors + stats->rx_frame_errors,
90                    stats->rx_compressed, stats->multicast,
91                    stats->tx_bytes, stats->tx_packets,
92                    stats->tx_errors, stats->tx_dropped,
93                    stats->tx_fifo_errors, stats->collisions,
94                    stats->tx_carrier_errors +
95                     stats->tx_aborted_errors +
96                     stats->tx_window_errors +
97                     stats->tx_heartbeat_errors,
98                    stats->tx_compressed);
99 }
100
101 /*
102  *      Called from the PROCfs module. This now uses the new arbitrary sized
103  *      /proc/net interface to create /proc/net/dev
104  */
105 static int dev_seq_show(struct seq_file *seq, void *v)
106 {
107         if (v == SEQ_START_TOKEN)
108                 seq_puts(seq, "Inter-|   Receive                            "
109                               "                    |  Transmit\n"
110                               " face |bytes    packets errs drop fifo frame "
111                               "compressed multicast|bytes    packets errs "
112                               "drop fifo colls carrier compressed\n");
113         else
114                 dev_seq_printf_stats(seq, v);
115         return 0;
116 }
117
118 static struct softnet_data *softnet_get_online(loff_t *pos)
119 {
120         struct softnet_data *sd = NULL;
121
122         while (*pos < nr_cpu_ids)
123                 if (cpu_online(*pos)) {
124                         sd = &per_cpu(softnet_data, *pos);
125                         break;
126                 } else
127                         ++*pos;
128         return sd;
129 }
130
131 static void *softnet_seq_start(struct seq_file *seq, loff_t *pos)
132 {
133         return softnet_get_online(pos);
134 }
135
136 static void *softnet_seq_next(struct seq_file *seq, void *v, loff_t *pos)
137 {
138         ++*pos;
139         return softnet_get_online(pos);
140 }
141
142 static void softnet_seq_stop(struct seq_file *seq, void *v)
143 {
144 }
145
146 static int softnet_seq_show(struct seq_file *seq, void *v)
147 {
148         struct softnet_data *sd = v;
149         unsigned int flow_limit_count = 0;
150
151 #ifdef CONFIG_NET_FLOW_LIMIT
152         struct sd_flow_limit *fl;
153
154         rcu_read_lock();
155         fl = rcu_dereference(sd->flow_limit);
156         if (fl)
157                 flow_limit_count = fl->count;
158         rcu_read_unlock();
159 #endif
160
161         seq_printf(seq,
162                    "%08x %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
163                    sd->processed, sd->dropped, sd->time_squeeze, 0,
164                    0, 0, 0, 0, /* was fastroute */
165                    0,   /* was cpu_collision */
166                    sd->received_rps, flow_limit_count);
167         return 0;
168 }
169
170 static const struct seq_operations dev_seq_ops = {
171         .start = dev_seq_start,
172         .next  = dev_seq_next,
173         .stop  = dev_seq_stop,
174         .show  = dev_seq_show,
175 };
176
177 static int dev_seq_open(struct inode *inode, struct file *file)
178 {
179         return seq_open_net(inode, file, &dev_seq_ops,
180                             sizeof(struct seq_net_private));
181 }
182
183 static const struct file_operations dev_seq_fops = {
184         .owner   = THIS_MODULE,
185         .open    = dev_seq_open,
186         .read    = seq_read,
187         .llseek  = seq_lseek,
188         .release = seq_release_net,
189 };
190
191 static 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
198 static int softnet_seq_open(struct inode *inode, struct file *file)
199 {
200         return seq_open(file, &softnet_seq_ops);
201 }
202
203 static const struct file_operations softnet_seq_fops = {
204         .owner   = THIS_MODULE,
205         .open    = softnet_seq_open,
206         .read    = seq_read,
207         .llseek  = seq_lseek,
208         .release = seq_release,
209 };
210
211 static void *ptype_get_idx(struct seq_file *seq, loff_t pos)
212 {
213         struct list_head *ptype_list = NULL;
214         struct packet_type *pt = NULL;
215         struct net_device *dev;
216         loff_t i = 0;
217         int t;
218
219         for_each_netdev_rcu(seq_file_net(seq), dev) {
220                 ptype_list = &dev->ptype_all;
221                 list_for_each_entry_rcu(pt, ptype_list, list) {
222                         if (i == pos)
223                                 return pt;
224                         ++i;
225                 }
226         }
227
228         list_for_each_entry_rcu(pt, &ptype_all, list) {
229                 if (i == pos)
230                         return pt;
231                 ++i;
232         }
233
234         for (t = 0; t < PTYPE_HASH_SIZE; t++) {
235                 list_for_each_entry_rcu(pt, &ptype_base[t], list) {
236                         if (i == pos)
237                                 return pt;
238                         ++i;
239                 }
240         }
241         return NULL;
242 }
243
244 static void *ptype_seq_start(struct seq_file *seq, loff_t *pos)
245         __acquires(RCU)
246 {
247         rcu_read_lock();
248         return *pos ? ptype_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
249 }
250
251 static void *ptype_seq_next(struct seq_file *seq, void *v, loff_t *pos)
252 {
253         struct net_device *dev;
254         struct packet_type *pt;
255         struct list_head *nxt;
256         int hash;
257
258         ++*pos;
259         if (v == SEQ_START_TOKEN)
260                 return ptype_get_idx(seq, 0);
261
262         pt = v;
263         nxt = pt->list.next;
264         if (pt->dev) {
265                 if (nxt != &pt->dev->ptype_all)
266                         goto found;
267
268                 dev = pt->dev;
269                 for_each_netdev_continue_rcu(seq_file_net(seq), dev) {
270                         if (!list_empty(&dev->ptype_all)) {
271                                 nxt = dev->ptype_all.next;
272                                 goto found;
273                         }
274                 }
275
276                 nxt = ptype_all.next;
277                 goto ptype_all;
278         }
279
280         if (pt->type == htons(ETH_P_ALL)) {
281 ptype_all:
282                 if (nxt != &ptype_all)
283                         goto found;
284                 hash = 0;
285                 nxt = ptype_base[0].next;
286         } else
287                 hash = ntohs(pt->type) & PTYPE_HASH_MASK;
288
289         while (nxt == &ptype_base[hash]) {
290                 if (++hash >= PTYPE_HASH_SIZE)
291                         return NULL;
292                 nxt = ptype_base[hash].next;
293         }
294 found:
295         return list_entry(nxt, struct packet_type, list);
296 }
297
298 static void ptype_seq_stop(struct seq_file *seq, void *v)
299         __releases(RCU)
300 {
301         rcu_read_unlock();
302 }
303
304 static int ptype_seq_show(struct seq_file *seq, void *v)
305 {
306         struct packet_type *pt = v;
307
308         if (v == SEQ_START_TOKEN)
309                 seq_puts(seq, "Type Device      Function\n");
310         else if ((!pt->af_packet_net || net_eq(pt->af_packet_net, seq_file_net(seq))) &&
311                  (!pt->dev || net_eq(dev_net(pt->dev), seq_file_net(seq)))) {
312                 if (pt->type == htons(ETH_P_ALL))
313                         seq_puts(seq, "ALL ");
314                 else
315                         seq_printf(seq, "%04x", ntohs(pt->type));
316
317                 seq_printf(seq, " %-8s %pf\n",
318                            pt->dev ? pt->dev->name : "", pt->func);
319         }
320
321         return 0;
322 }
323
324 static const struct seq_operations ptype_seq_ops = {
325         .start = ptype_seq_start,
326         .next  = ptype_seq_next,
327         .stop  = ptype_seq_stop,
328         .show  = ptype_seq_show,
329 };
330
331 static int ptype_seq_open(struct inode *inode, struct file *file)
332 {
333         return seq_open_net(inode, file, &ptype_seq_ops,
334                         sizeof(struct seq_net_private));
335 }
336
337 static const struct file_operations ptype_seq_fops = {
338         .owner   = THIS_MODULE,
339         .open    = ptype_seq_open,
340         .read    = seq_read,
341         .llseek  = seq_lseek,
342         .release = seq_release_net,
343 };
344
345
346 static int __net_init dev_proc_net_init(struct net *net)
347 {
348         int rc = -ENOMEM;
349
350         if (!proc_create("dev", S_IRUGO, net->proc_net, &dev_seq_fops))
351                 goto out;
352         if (!proc_create("softnet_stat", S_IRUGO, net->proc_net,
353                          &softnet_seq_fops))
354                 goto out_dev;
355         if (!proc_create("ptype", S_IRUGO, net->proc_net, &ptype_seq_fops))
356                 goto out_softnet;
357
358         if (wext_proc_init(net))
359                 goto out_ptype;
360         rc = 0;
361 out:
362         return rc;
363 out_ptype:
364         remove_proc_entry("ptype", net->proc_net);
365 out_softnet:
366         remove_proc_entry("softnet_stat", net->proc_net);
367 out_dev:
368         remove_proc_entry("dev", net->proc_net);
369         goto out;
370 }
371
372 static void __net_exit dev_proc_net_exit(struct net *net)
373 {
374         wext_proc_exit(net);
375
376         remove_proc_entry("ptype", net->proc_net);
377         remove_proc_entry("softnet_stat", net->proc_net);
378         remove_proc_entry("dev", net->proc_net);
379 }
380
381 static struct pernet_operations __net_initdata dev_proc_ops = {
382         .init = dev_proc_net_init,
383         .exit = dev_proc_net_exit,
384 };
385
386 static int dev_mc_seq_show(struct seq_file *seq, void *v)
387 {
388         struct netdev_hw_addr *ha;
389         struct net_device *dev = v;
390
391         if (v == SEQ_START_TOKEN)
392                 return 0;
393
394         netif_addr_lock_bh(dev);
395         netdev_for_each_mc_addr(ha, dev) {
396                 int i;
397
398                 seq_printf(seq, "%-4d %-15s %-5d %-5d ", dev->ifindex,
399                            dev->name, ha->refcount, ha->global_use);
400
401                 for (i = 0; i < dev->addr_len; i++)
402                         seq_printf(seq, "%02x", ha->addr[i]);
403
404                 seq_putc(seq, '\n');
405         }
406         netif_addr_unlock_bh(dev);
407         return 0;
408 }
409
410 static const struct seq_operations dev_mc_seq_ops = {
411         .start = dev_seq_start,
412         .next  = dev_seq_next,
413         .stop  = dev_seq_stop,
414         .show  = dev_mc_seq_show,
415 };
416
417 static int dev_mc_seq_open(struct inode *inode, struct file *file)
418 {
419         return seq_open_net(inode, file, &dev_mc_seq_ops,
420                             sizeof(struct seq_net_private));
421 }
422
423 static const struct file_operations dev_mc_seq_fops = {
424         .owner   = THIS_MODULE,
425         .open    = dev_mc_seq_open,
426         .read    = seq_read,
427         .llseek  = seq_lseek,
428         .release = seq_release_net,
429 };
430
431 static int __net_init dev_mc_net_init(struct net *net)
432 {
433         if (!proc_create("dev_mcast", 0, net->proc_net, &dev_mc_seq_fops))
434                 return -ENOMEM;
435         return 0;
436 }
437
438 static void __net_exit dev_mc_net_exit(struct net *net)
439 {
440         remove_proc_entry("dev_mcast", net->proc_net);
441 }
442
443 static struct pernet_operations __net_initdata dev_mc_net_ops = {
444         .init = dev_mc_net_init,
445         .exit = dev_mc_net_exit,
446 };
447
448 int __init dev_proc_init(void)
449 {
450         int ret = register_pernet_subsys(&dev_proc_ops);
451         if (!ret)
452                 return register_pernet_subsys(&dev_mc_net_ops);
453         return ret;
454 }