mon_stat.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. #include <linux/kernel.h>
  10. #include <linux/slab.h>
  11. #include <linux/export.h>
  12. #include <linux/usb.h>
  13. #include <linux/fs.h>
  14. #include <asm/uaccess.h>
  15. #include "usb_mon.h"
  16. #define STAT_BUF_SIZE 80
  17. struct snap {
  18. int slen;
  19. char str[STAT_BUF_SIZE];
  20. };
  21. static int mon_stat_open(struct inode *inode, struct file *file)
  22. {
  23. struct mon_bus *mbus;
  24. struct snap *sp;
  25. sp = kmalloc(sizeof(struct snap), GFP_KERNEL);
  26. if (sp == NULL)
  27. return -ENOMEM;
  28. mbus = inode->i_private;
  29. sp->slen = snprintf(sp->str, STAT_BUF_SIZE,
  30. "nreaders %d events %u text_lost %u\n",
  31. mbus->nreaders, mbus->cnt_events, mbus->cnt_text_lost);
  32. file->private_data = sp;
  33. return 0;
  34. }
  35. static ssize_t mon_stat_read(struct file *file, char __user *buf,
  36. size_t nbytes, loff_t *ppos)
  37. {
  38. struct snap *sp = file->private_data;
  39. return simple_read_from_buffer(buf, nbytes, ppos, sp->str, sp->slen);
  40. }
  41. static int mon_stat_release(struct inode *inode, struct file *file)
  42. {
  43. struct snap *sp = file->private_data;
  44. file->private_data = NULL;
  45. kfree(sp);
  46. return 0;
  47. }
  48. const struct file_operations mon_fops_stat = {
  49. .owner = THIS_MODULE,
  50. .open = mon_stat_open,
  51. .llseek = no_llseek,
  52. .read = mon_stat_read,
  53. /* .write = mon_stat_write, */
  54. /* .poll = mon_stat_poll, */
  55. /* .unlocked_ioctl = mon_stat_ioctl, */
  56. .release = mon_stat_release,
  57. };