blob: 2b4d07317867c066bc6e49c41bb4c73db18498c2 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001// 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
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;
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
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;
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
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 const struct seq_operations softnet_seq_ops = {
179 .start = softnet_seq_start,
180 .next = softnet_seq_next,
181 .stop = softnet_seq_stop,
182 .show = softnet_seq_show,
183};
184
185static void *ptype_get_idx(struct seq_file *seq, loff_t pos)
186{
187 struct list_head *ptype_list = NULL;
188 struct packet_type *pt = NULL;
189 struct net_device *dev;
190 loff_t i = 0;
191 int t;
192
193 for_each_netdev_rcu(seq_file_net(seq), dev) {
194 ptype_list = &dev->ptype_all;
195 list_for_each_entry_rcu(pt, ptype_list, list) {
196 if (i == pos)
197 return pt;
198 ++i;
199 }
200 }
201
202 list_for_each_entry_rcu(pt, &ptype_all, list) {
203 if (i == pos)
204 return pt;
205 ++i;
206 }
207
208 for (t = 0; t < PTYPE_HASH_SIZE; t++) {
209 list_for_each_entry_rcu(pt, &ptype_base[t], list) {
210 if (i == pos)
211 return pt;
212 ++i;
213 }
214 }
215 return NULL;
216}
217
218static void *ptype_seq_start(struct seq_file *seq, loff_t *pos)
219 __acquires(RCU)
220{
221 rcu_read_lock();
222 return *pos ? ptype_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
223}
224
225static void *ptype_seq_next(struct seq_file *seq, void *v, loff_t *pos)
226{
227 struct net_device *dev;
228 struct packet_type *pt;
229 struct list_head *nxt;
230 int hash;
231
232 ++*pos;
233 if (v == SEQ_START_TOKEN)
234 return ptype_get_idx(seq, 0);
235
236 pt = v;
237 nxt = pt->list.next;
238 if (pt->dev) {
239 if (nxt != &pt->dev->ptype_all)
240 goto found;
241
242 dev = pt->dev;
243 for_each_netdev_continue_rcu(seq_file_net(seq), dev) {
244 if (!list_empty(&dev->ptype_all)) {
245 nxt = dev->ptype_all.next;
246 goto found;
247 }
248 }
249
250 nxt = ptype_all.next;
251 goto ptype_all;
252 }
253
254 if (pt->type == htons(ETH_P_ALL)) {
255ptype_all:
256 if (nxt != &ptype_all)
257 goto found;
258 hash = 0;
259 nxt = ptype_base[0].next;
260 } else
261 hash = ntohs(pt->type) & PTYPE_HASH_MASK;
262
263 while (nxt == &ptype_base[hash]) {
264 if (++hash >= PTYPE_HASH_SIZE)
265 return NULL;
266 nxt = ptype_base[hash].next;
267 }
268found:
269 return list_entry(nxt, struct packet_type, list);
270}
271
272static void ptype_seq_stop(struct seq_file *seq, void *v)
273 __releases(RCU)
274{
275 rcu_read_unlock();
276}
277
278static int ptype_seq_show(struct seq_file *seq, void *v)
279{
280 struct packet_type *pt = v;
281
282 if (v == SEQ_START_TOKEN)
283 seq_puts(seq, "Type Device Function\n");
284 else if ((!pt->af_packet_net || net_eq(pt->af_packet_net, seq_file_net(seq))) &&
285 (!pt->dev || net_eq(dev_net(pt->dev), seq_file_net(seq)))) {
286 if (pt->type == htons(ETH_P_ALL))
287 seq_puts(seq, "ALL ");
288 else
289 seq_printf(seq, "%04x", ntohs(pt->type));
290
291 seq_printf(seq, " %-8s %ps\n",
292 pt->dev ? pt->dev->name : "", pt->func);
293 }
294
295 return 0;
296}
297
298static const struct seq_operations ptype_seq_ops = {
299 .start = ptype_seq_start,
300 .next = ptype_seq_next,
301 .stop = ptype_seq_stop,
302 .show = ptype_seq_show,
303};
304
305static int __net_init dev_proc_net_init(struct net *net)
306{
307 int rc = -ENOMEM;
308
309 if (!proc_create_net("dev", 0444, net->proc_net, &dev_seq_ops,
310 sizeof(struct seq_net_private)))
311 goto out;
312 if (!IS_ENABLED(CONFIG_PROC_STRIPPED) &&
313 !proc_create_seq("softnet_stat", 0444, net->proc_net,
314 &softnet_seq_ops))
315 goto out_dev;
316 if (!IS_ENABLED(CONFIG_PROC_STRIPPED) &&
317 !proc_create_net("ptype", 0444, net->proc_net, &ptype_seq_ops,
318 sizeof(struct seq_net_private)))
319 goto out_softnet;
320
321 if (wext_proc_init(net))
322 goto out_ptype;
323 rc = 0;
324out:
325 return rc;
326out_ptype:
327 if (!IS_ENABLED(CONFIG_PROC_STRIPPED))
328 remove_proc_entry("ptype", net->proc_net);
329out_softnet:
330 if (!IS_ENABLED(CONFIG_PROC_STRIPPED))
331 remove_proc_entry("softnet_stat", net->proc_net);
332out_dev:
333 remove_proc_entry("dev", net->proc_net);
334 goto out;
335}
336
337static void __net_exit dev_proc_net_exit(struct net *net)
338{
339 wext_proc_exit(net);
340
341 if (!IS_ENABLED(CONFIG_PROC_STRIPPED)) {
342 remove_proc_entry("ptype", net->proc_net);
343 remove_proc_entry("softnet_stat", net->proc_net);
344 }
345 remove_proc_entry("dev", net->proc_net);
346}
347
348static struct pernet_operations __net_initdata dev_proc_ops = {
349 .init = dev_proc_net_init,
350 .exit = dev_proc_net_exit,
351};
352
353static int dev_mc_seq_show(struct seq_file *seq, void *v)
354{
355 struct netdev_hw_addr *ha;
356 struct net_device *dev = v;
357
358 if (v == SEQ_START_TOKEN)
359 return 0;
360
361 netif_addr_lock_bh(dev);
362 netdev_for_each_mc_addr(ha, dev) {
363 seq_printf(seq, "%-4d %-15s %-5d %-5d %*phN\n",
364 dev->ifindex, dev->name,
365 ha->refcount, ha->global_use,
366 (int)dev->addr_len, ha->addr);
367 }
368 netif_addr_unlock_bh(dev);
369 return 0;
370}
371
372static const struct seq_operations dev_mc_seq_ops = {
373 .start = dev_seq_start,
374 .next = dev_seq_next,
375 .stop = dev_seq_stop,
376 .show = dev_mc_seq_show,
377};
378
379static int __net_init dev_mc_net_init(struct net *net)
380{
381 if (!proc_create_net("dev_mcast", 0, net->proc_net, &dev_mc_seq_ops,
382 sizeof(struct seq_net_private)))
383 return -ENOMEM;
384 return 0;
385}
386
387static void __net_exit dev_mc_net_exit(struct net *net)
388{
389 remove_proc_entry("dev_mcast", net->proc_net);
390}
391
392static struct pernet_operations __net_initdata dev_mc_net_ops = {
393 .init = dev_mc_net_init,
394 .exit = dev_mc_net_exit,
395};
396
397int __init dev_proc_init(void)
398{
399 int ret = register_pernet_subsys(&dev_proc_ops);
400 if (!ret)
401 return register_pernet_subsys(&dev_mc_net_ops);
402 return ret;
403}