blob: e5ce42bd316e5c68d29a72ffdc2d805b6a575f37 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * The USB Monitor, inspired by Dave Harding's USBMon.
3 *
4 * This is the 's' or 'stat' reader which debugs usbmon itself.
5 * Note that this code blows through locks, so make sure that
6 * /dbg/usbmon/0s is well protected from non-root users.
7 *
8 */
9
10#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/usb.h>
Akinobu Mita518386c2008-06-09 16:39:57 -070013#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm/uaccess.h>
15
16#include "usb_mon.h"
17
18#define STAT_BUF_SIZE 80
19
20struct snap {
21 int slen;
22 char str[STAT_BUF_SIZE];
23};
24
25static int mon_stat_open(struct inode *inode, struct file *file)
26{
27 struct mon_bus *mbus;
28 struct snap *sp;
29
30 if ((sp = kmalloc(sizeof(struct snap), GFP_KERNEL)) == NULL)
31 return -ENOMEM;
32
Theodore Ts'o8e18e292006-09-27 01:50:46 -070033 mbus = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35 sp->slen = snprintf(sp->str, STAT_BUF_SIZE,
Pete Zaitcev5b1c6742006-06-09 20:10:10 -070036 "nreaders %d events %u text_lost %u\n",
37 mbus->nreaders, mbus->cnt_events, mbus->cnt_text_lost);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39 file->private_data = sp;
40 return 0;
41}
42
43static ssize_t mon_stat_read(struct file *file, char __user *buf,
44 size_t nbytes, loff_t *ppos)
45{
46 struct snap *sp = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Akinobu Mita518386c2008-06-09 16:39:57 -070048 return simple_read_from_buffer(buf, nbytes, ppos, sp->str, sp->slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049}
50
51static int mon_stat_release(struct inode *inode, struct file *file)
52{
Ming Leid4062fc2008-04-14 21:27:00 +080053 struct snap *sp = file->private_data;
54 file->private_data = NULL;
55 kfree(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 return 0;
57}
58
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -030059const struct file_operations mon_fops_stat = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 .owner = THIS_MODULE,
61 .open = mon_stat_open,
62 .llseek = no_llseek,
63 .read = mon_stat_read,
64 /* .write = mon_stat_write, */
65 /* .poll = mon_stat_poll, */
Arnd Bergmann55929332010-04-27 00:24:05 +020066 /* .unlocked_ioctl = mon_stat_ioctl, */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 .release = mon_stat_release,
68};