Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 11 | #include <linux/slab.h> |
Paul Gortmaker | f940fcd | 2011-05-27 09:56:31 -0400 | [diff] [blame] | 12 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/usb.h> |
Akinobu Mita | 518386c | 2008-06-09 16:39:57 -0700 | [diff] [blame] | 14 | #include <linux/fs.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 15 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
| 17 | #include "usb_mon.h" |
| 18 | |
| 19 | #define STAT_BUF_SIZE 80 |
| 20 | |
| 21 | struct snap { |
| 22 | int slen; |
| 23 | char str[STAT_BUF_SIZE]; |
| 24 | }; |
| 25 | |
| 26 | static int mon_stat_open(struct inode *inode, struct file *file) |
| 27 | { |
| 28 | struct mon_bus *mbus; |
| 29 | struct snap *sp; |
| 30 | |
Greg Kroah-Hartman | 4c08ccf | 2015-04-30 11:32:58 +0200 | [diff] [blame] | 31 | sp = kmalloc(sizeof(struct snap), GFP_KERNEL); |
| 32 | if (sp == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | return -ENOMEM; |
| 34 | |
Theodore Ts'o | 8e18e29 | 2006-09-27 01:50:46 -0700 | [diff] [blame] | 35 | mbus = inode->i_private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
| 37 | sp->slen = snprintf(sp->str, STAT_BUF_SIZE, |
Pete Zaitcev | 5b1c674 | 2006-06-09 20:10:10 -0700 | [diff] [blame] | 38 | "nreaders %d events %u text_lost %u\n", |
| 39 | mbus->nreaders, mbus->cnt_events, mbus->cnt_text_lost); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | file->private_data = sp; |
| 42 | return 0; |
| 43 | } |
| 44 | |
| 45 | static ssize_t mon_stat_read(struct file *file, char __user *buf, |
| 46 | size_t nbytes, loff_t *ppos) |
| 47 | { |
| 48 | struct snap *sp = file->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Akinobu Mita | 518386c | 2008-06-09 16:39:57 -0700 | [diff] [blame] | 50 | return simple_read_from_buffer(buf, nbytes, ppos, sp->str, sp->slen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | static int mon_stat_release(struct inode *inode, struct file *file) |
| 54 | { |
Ming Lei | d4062fc | 2008-04-14 21:27:00 +0800 | [diff] [blame] | 55 | struct snap *sp = file->private_data; |
| 56 | file->private_data = NULL; |
| 57 | kfree(sp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | return 0; |
| 59 | } |
| 60 | |
Luiz Fernando N. Capitulino | 066202d | 2006-08-05 20:37:11 -0300 | [diff] [blame] | 61 | const struct file_operations mon_fops_stat = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | .owner = THIS_MODULE, |
| 63 | .open = mon_stat_open, |
| 64 | .llseek = no_llseek, |
| 65 | .read = mon_stat_read, |
| 66 | /* .write = mon_stat_write, */ |
| 67 | /* .poll = mon_stat_poll, */ |
Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 68 | /* .unlocked_ioctl = mon_stat_ioctl, */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | .release = mon_stat_release, |
| 70 | }; |