2 * proc.c - procfs support for Protocol family CAN core module
4 * Copyright (c) 2002-2007 Volkswagen Group Electronic Research
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of Volkswagen nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * Alternatively, provided that this notice is retained in full, this
20 * software may be distributed under the terms of the GNU General
21 * Public License ("GPL") version 2, in which case the provisions of the
22 * GPL apply INSTEAD OF those given above.
24 * The provided data structures and external interfaces from this code
25 * are not restricted to be used by modules with a GPL compatible license.
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
40 * Send feedback to <socketcan-users@lists.berlios.de>
44 #include <linux/module.h>
45 #include <linux/proc_fs.h>
46 #include <linux/list.h>
47 #include <linux/rcupdate.h>
48 #include <linux/can/core.h>
53 * proc filenames for the PF_CAN core
56 #define CAN_PROC_VERSION "version"
57 #define CAN_PROC_STATS "stats"
58 #define CAN_PROC_RESET_STATS "reset_stats"
59 #define CAN_PROC_RCVLIST_ALL "rcvlist_all"
60 #define CAN_PROC_RCVLIST_FIL "rcvlist_fil"
61 #define CAN_PROC_RCVLIST_INV "rcvlist_inv"
62 #define CAN_PROC_RCVLIST_SFF "rcvlist_sff"
63 #define CAN_PROC_RCVLIST_EFF "rcvlist_eff"
64 #define CAN_PROC_RCVLIST_ERR "rcvlist_err"
66 static struct proc_dir_entry
*can_dir
;
67 static struct proc_dir_entry
*pde_version
;
68 static struct proc_dir_entry
*pde_stats
;
69 static struct proc_dir_entry
*pde_reset_stats
;
70 static struct proc_dir_entry
*pde_rcvlist_all
;
71 static struct proc_dir_entry
*pde_rcvlist_fil
;
72 static struct proc_dir_entry
*pde_rcvlist_inv
;
73 static struct proc_dir_entry
*pde_rcvlist_sff
;
74 static struct proc_dir_entry
*pde_rcvlist_eff
;
75 static struct proc_dir_entry
*pde_rcvlist_err
;
77 static int user_reset
;
79 static const char rx_list_name
[][8] = {
88 * af_can statistics stuff
91 static void can_init_stats(void)
94 * This memset function is called from a timer context (when
95 * can_stattimer is active which is the default) OR in a process
96 * context (reading the proc_fs when can_stattimer is disabled).
98 memset(&can_stats
, 0, sizeof(can_stats
));
99 can_stats
.jiffies_init
= jiffies
;
101 can_pstats
.stats_reset
++;
105 can_pstats
.user_reset
++;
109 static unsigned long calc_rate(unsigned long oldjif
, unsigned long newjif
,
114 if (oldjif
== newjif
)
117 /* see can_stat_update() - this should NEVER happen! */
118 if (count
> (ULONG_MAX
/ HZ
)) {
119 printk(KERN_ERR
"can: calc_rate: count exceeded! %ld\n",
124 rate
= (count
* HZ
) / (newjif
- oldjif
);
129 void can_stat_update(unsigned long data
)
131 unsigned long j
= jiffies
; /* snapshot */
133 /* restart counting in timer context on user request */
137 /* restart counting on jiffies overflow */
138 if (j
< can_stats
.jiffies_init
)
141 /* prevent overflow in calc_rate() */
142 if (can_stats
.rx_frames
> (ULONG_MAX
/ HZ
))
145 /* prevent overflow in calc_rate() */
146 if (can_stats
.tx_frames
> (ULONG_MAX
/ HZ
))
149 /* matches overflow - very improbable */
150 if (can_stats
.matches
> (ULONG_MAX
/ 100))
153 /* calc total values */
154 if (can_stats
.rx_frames
)
155 can_stats
.total_rx_match_ratio
= (can_stats
.matches
* 100) /
158 can_stats
.total_tx_rate
= calc_rate(can_stats
.jiffies_init
, j
,
159 can_stats
.tx_frames
);
160 can_stats
.total_rx_rate
= calc_rate(can_stats
.jiffies_init
, j
,
161 can_stats
.rx_frames
);
163 /* calc current values */
164 if (can_stats
.rx_frames_delta
)
165 can_stats
.current_rx_match_ratio
=
166 (can_stats
.matches_delta
* 100) /
167 can_stats
.rx_frames_delta
;
169 can_stats
.current_tx_rate
= calc_rate(0, HZ
, can_stats
.tx_frames_delta
);
170 can_stats
.current_rx_rate
= calc_rate(0, HZ
, can_stats
.rx_frames_delta
);
172 /* check / update maximum values */
173 if (can_stats
.max_tx_rate
< can_stats
.current_tx_rate
)
174 can_stats
.max_tx_rate
= can_stats
.current_tx_rate
;
176 if (can_stats
.max_rx_rate
< can_stats
.current_rx_rate
)
177 can_stats
.max_rx_rate
= can_stats
.current_rx_rate
;
179 if (can_stats
.max_rx_match_ratio
< can_stats
.current_rx_match_ratio
)
180 can_stats
.max_rx_match_ratio
= can_stats
.current_rx_match_ratio
;
182 /* clear values for 'current rate' calculation */
183 can_stats
.tx_frames_delta
= 0;
184 can_stats
.rx_frames_delta
= 0;
185 can_stats
.matches_delta
= 0;
187 /* restart timer (one second) */
188 mod_timer(&can_stattimer
, round_jiffies(jiffies
+ HZ
));
192 * proc read functions
194 * From known use-cases we expect about 10 entries in a receive list to be
195 * printed in the proc_fs. So PAGE_SIZE is definitely enough space here.
199 static void can_print_rcvlist(struct seq_file
*m
, struct hlist_head
*rx_list
,
200 struct net_device
*dev
)
203 struct hlist_node
*n
;
206 hlist_for_each_entry_rcu(r
, n
, rx_list
, list
) {
207 char *fmt
= (r
->can_id
& CAN_EFF_FLAG
)?
208 " %-5s %08X %08x %08x %08x %8ld %s\n" :
209 " %-5s %03X %08x %08lx %08lx %8ld %s\n";
211 seq_printf(m
, fmt
, DNAME(dev
), r
->can_id
, r
->mask
,
212 (unsigned long)r
->func
, (unsigned long)r
->data
,
213 r
->matches
, r
->ident
);
218 static void can_print_recv_banner(struct seq_file
*m
)
221 * can1. 00000000 00000000 00000000
224 seq_puts(m
, " device can_id can_mask function"
225 " userdata matches ident\n");
228 static int can_stats_proc_show(struct seq_file
*m
, void *v
)
231 seq_printf(m
, " %8ld transmitted frames (TXF)\n", can_stats
.tx_frames
);
232 seq_printf(m
, " %8ld received frames (RXF)\n", can_stats
.rx_frames
);
233 seq_printf(m
, " %8ld matched frames (RXMF)\n", can_stats
.matches
);
237 if (can_stattimer
.function
== can_stat_update
) {
238 seq_printf(m
, " %8ld %% total match ratio (RXMR)\n",
239 can_stats
.total_rx_match_ratio
);
241 seq_printf(m
, " %8ld frames/s total tx rate (TXR)\n",
242 can_stats
.total_tx_rate
);
243 seq_printf(m
, " %8ld frames/s total rx rate (RXR)\n",
244 can_stats
.total_rx_rate
);
248 seq_printf(m
, " %8ld %% current match ratio (CRXMR)\n",
249 can_stats
.current_rx_match_ratio
);
251 seq_printf(m
, " %8ld frames/s current tx rate (CTXR)\n",
252 can_stats
.current_tx_rate
);
253 seq_printf(m
, " %8ld frames/s current rx rate (CRXR)\n",
254 can_stats
.current_rx_rate
);
258 seq_printf(m
, " %8ld %% max match ratio (MRXMR)\n",
259 can_stats
.max_rx_match_ratio
);
261 seq_printf(m
, " %8ld frames/s max tx rate (MTXR)\n",
262 can_stats
.max_tx_rate
);
263 seq_printf(m
, " %8ld frames/s max rx rate (MRXR)\n",
264 can_stats
.max_rx_rate
);
269 seq_printf(m
, " %8ld current receive list entries (CRCV)\n",
270 can_pstats
.rcv_entries
);
271 seq_printf(m
, " %8ld maximum receive list entries (MRCV)\n",
272 can_pstats
.rcv_entries_max
);
274 if (can_pstats
.stats_reset
)
275 seq_printf(m
, "\n %8ld statistic resets (STR)\n",
276 can_pstats
.stats_reset
);
278 if (can_pstats
.user_reset
)
279 seq_printf(m
, " %8ld user statistic resets (USTR)\n",
280 can_pstats
.user_reset
);
286 static int can_stats_proc_open(struct inode
*inode
, struct file
*file
)
288 return single_open(file
, can_stats_proc_show
, NULL
);
291 static const struct file_operations can_stats_proc_fops
= {
292 .owner
= THIS_MODULE
,
293 .open
= can_stats_proc_open
,
296 .release
= single_release
,
299 static int can_reset_stats_proc_show(struct seq_file
*m
, void *v
)
303 if (can_stattimer
.function
== can_stat_update
) {
304 seq_printf(m
, "Scheduled statistic reset #%ld.\n",
305 can_pstats
.stats_reset
+ 1);
308 if (can_stats
.jiffies_init
!= jiffies
)
311 seq_printf(m
, "Performed statistic reset #%ld.\n",
312 can_pstats
.stats_reset
);
317 static int can_reset_stats_proc_open(struct inode
*inode
, struct file
*file
)
319 return single_open(file
, can_reset_stats_proc_show
, NULL
);
322 static const struct file_operations can_reset_stats_proc_fops
= {
323 .owner
= THIS_MODULE
,
324 .open
= can_reset_stats_proc_open
,
327 .release
= single_release
,
330 static int can_version_proc_show(struct seq_file
*m
, void *v
)
332 seq_printf(m
, "%s\n", CAN_VERSION_STRING
);
336 static int can_version_proc_open(struct inode
*inode
, struct file
*file
)
338 return single_open(file
, can_version_proc_show
, NULL
);
341 static const struct file_operations can_version_proc_fops
= {
342 .owner
= THIS_MODULE
,
343 .open
= can_version_proc_open
,
346 .release
= single_release
,
349 static int can_rcvlist_proc_show(struct seq_file
*m
, void *v
)
351 /* double cast to prevent GCC warning */
352 int idx
= (int)(long)m
->private;
353 struct dev_rcv_lists
*d
;
354 struct hlist_node
*n
;
356 seq_printf(m
, "\nreceive list '%s':\n", rx_list_name
[idx
]);
359 hlist_for_each_entry_rcu(d
, n
, &can_rx_dev_list
, list
) {
361 if (!hlist_empty(&d
->rx
[idx
])) {
362 can_print_recv_banner(m
);
363 can_print_rcvlist(m
, &d
->rx
[idx
], d
->dev
);
365 seq_printf(m
, " (%s: no entry)\n", DNAME(d
->dev
));
373 static int can_rcvlist_proc_open(struct inode
*inode
, struct file
*file
)
375 return single_open(file
, can_rcvlist_proc_show
, PDE(inode
)->data
);
378 static const struct file_operations can_rcvlist_proc_fops
= {
379 .owner
= THIS_MODULE
,
380 .open
= can_rcvlist_proc_open
,
383 .release
= single_release
,
386 static int can_rcvlist_sff_proc_show(struct seq_file
*m
, void *v
)
388 struct dev_rcv_lists
*d
;
389 struct hlist_node
*n
;
392 seq_puts(m
, "\nreceive list 'rx_sff':\n");
395 hlist_for_each_entry_rcu(d
, n
, &can_rx_dev_list
, list
) {
396 int i
, all_empty
= 1;
397 /* check wether at least one list is non-empty */
398 for (i
= 0; i
< 0x800; i
++)
399 if (!hlist_empty(&d
->rx_sff
[i
])) {
405 can_print_recv_banner(m
);
406 for (i
= 0; i
< 0x800; i
++) {
407 if (!hlist_empty(&d
->rx_sff
[i
]))
408 can_print_rcvlist(m
, &d
->rx_sff
[i
],
412 seq_printf(m
, " (%s: no entry)\n", DNAME(d
->dev
));
420 static int can_rcvlist_sff_proc_open(struct inode
*inode
, struct file
*file
)
422 return single_open(file
, can_rcvlist_sff_proc_show
, NULL
);
425 static const struct file_operations can_rcvlist_sff_proc_fops
= {
426 .owner
= THIS_MODULE
,
427 .open
= can_rcvlist_sff_proc_open
,
430 .release
= single_release
,
434 * proc utility functions
437 static void can_remove_proc_readentry(const char *name
)
440 remove_proc_entry(name
, can_dir
);
444 * can_init_proc - create main CAN proc directory and procfs entries
446 void can_init_proc(void)
448 /* create /proc/net/can directory */
449 can_dir
= proc_mkdir("can", init_net
.proc_net
);
452 printk(KERN_INFO
"can: failed to create /proc/net/can . "
453 "CONFIG_PROC_FS missing?\n");
457 /* own procfs entries from the AF_CAN core */
458 pde_version
= proc_create(CAN_PROC_VERSION
, 0644, can_dir
,
459 &can_version_proc_fops
);
460 pde_stats
= proc_create(CAN_PROC_STATS
, 0644, can_dir
,
461 &can_stats_proc_fops
);
462 pde_reset_stats
= proc_create(CAN_PROC_RESET_STATS
, 0644, can_dir
,
463 &can_reset_stats_proc_fops
);
464 pde_rcvlist_err
= proc_create_data(CAN_PROC_RCVLIST_ERR
, 0644, can_dir
,
465 &can_rcvlist_proc_fops
, (void *)RX_ERR
);
466 pde_rcvlist_all
= proc_create_data(CAN_PROC_RCVLIST_ALL
, 0644, can_dir
,
467 &can_rcvlist_proc_fops
, (void *)RX_ALL
);
468 pde_rcvlist_fil
= proc_create_data(CAN_PROC_RCVLIST_FIL
, 0644, can_dir
,
469 &can_rcvlist_proc_fops
, (void *)RX_FIL
);
470 pde_rcvlist_inv
= proc_create_data(CAN_PROC_RCVLIST_INV
, 0644, can_dir
,
471 &can_rcvlist_proc_fops
, (void *)RX_INV
);
472 pde_rcvlist_eff
= proc_create_data(CAN_PROC_RCVLIST_EFF
, 0644, can_dir
,
473 &can_rcvlist_proc_fops
, (void *)RX_EFF
);
474 pde_rcvlist_sff
= proc_create(CAN_PROC_RCVLIST_SFF
, 0644, can_dir
,
475 &can_rcvlist_sff_proc_fops
);
479 * can_remove_proc - remove procfs entries and main CAN proc directory
481 void can_remove_proc(void)
484 can_remove_proc_readentry(CAN_PROC_VERSION
);
487 can_remove_proc_readentry(CAN_PROC_STATS
);
490 can_remove_proc_readentry(CAN_PROC_RESET_STATS
);
493 can_remove_proc_readentry(CAN_PROC_RCVLIST_ERR
);
496 can_remove_proc_readentry(CAN_PROC_RCVLIST_ALL
);
499 can_remove_proc_readentry(CAN_PROC_RCVLIST_FIL
);
502 can_remove_proc_readentry(CAN_PROC_RCVLIST_INV
);
505 can_remove_proc_readentry(CAN_PROC_RCVLIST_EFF
);
508 can_remove_proc_readentry(CAN_PROC_RCVLIST_SFF
);
511 proc_net_remove(&init_net
, "can");