mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-07 08:48:05 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
12
drivers/usb/mon/Kconfig
Normal file
12
drivers/usb/mon/Kconfig
Normal file
|
@ -0,0 +1,12 @@
|
|||
#
|
||||
# USB Monitor configuration
|
||||
#
|
||||
|
||||
config USB_MON
|
||||
tristate "USB Monitor"
|
||||
help
|
||||
If you select this option, a component which captures the USB traffic
|
||||
between peripheral-specific drivers and HC drivers will be built.
|
||||
For more information, see <file:Documentation/usb/usbmon.txt>.
|
||||
|
||||
If unsure, say Y, if allowed, otherwise M.
|
7
drivers/usb/mon/Makefile
Normal file
7
drivers/usb/mon/Makefile
Normal file
|
@ -0,0 +1,7 @@
|
|||
#
|
||||
# Makefile for USB monitor
|
||||
#
|
||||
|
||||
usbmon-y := mon_main.o mon_stat.o mon_text.o mon_bin.o
|
||||
|
||||
obj-$(CONFIG_USB_MON) += usbmon.o
|
1389
drivers/usb/mon/mon_bin.c
Normal file
1389
drivers/usb/mon/mon_bin.c
Normal file
File diff suppressed because it is too large
Load diff
431
drivers/usb/mon/mon_main.c
Normal file
431
drivers/usb/mon/mon_main.c
Normal file
|
@ -0,0 +1,431 @@
|
|||
/*
|
||||
* The USB Monitor, inspired by Dave Harding's USBMon.
|
||||
*
|
||||
* mon_main.c: Main file, module initiation and exit, registrations, etc.
|
||||
*
|
||||
* Copyright (C) 2005 Pete Zaitcev (zaitcev@redhat.com)
|
||||
*/
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/usb.h>
|
||||
#include <linux/usb/hcd.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/notifier.h>
|
||||
#include <linux/mutex.h>
|
||||
|
||||
#include "usb_mon.h"
|
||||
|
||||
|
||||
static void mon_stop(struct mon_bus *mbus);
|
||||
static void mon_dissolve(struct mon_bus *mbus, struct usb_bus *ubus);
|
||||
static void mon_bus_drop(struct kref *r);
|
||||
static void mon_bus_init(struct usb_bus *ubus);
|
||||
|
||||
DEFINE_MUTEX(mon_lock);
|
||||
|
||||
struct mon_bus mon_bus0; /* Pseudo bus meaning "all buses" */
|
||||
static LIST_HEAD(mon_buses); /* All buses we know: struct mon_bus */
|
||||
|
||||
/*
|
||||
* Link a reader into the bus.
|
||||
*
|
||||
* This must be called with mon_lock taken because of mbus->ref.
|
||||
*/
|
||||
void mon_reader_add(struct mon_bus *mbus, struct mon_reader *r)
|
||||
{
|
||||
unsigned long flags;
|
||||
struct list_head *p;
|
||||
|
||||
spin_lock_irqsave(&mbus->lock, flags);
|
||||
if (mbus->nreaders == 0) {
|
||||
if (mbus == &mon_bus0) {
|
||||
list_for_each (p, &mon_buses) {
|
||||
struct mon_bus *m1;
|
||||
m1 = list_entry(p, struct mon_bus, bus_link);
|
||||
m1->u_bus->monitored = 1;
|
||||
}
|
||||
} else {
|
||||
mbus->u_bus->monitored = 1;
|
||||
}
|
||||
}
|
||||
mbus->nreaders++;
|
||||
list_add_tail(&r->r_link, &mbus->r_list);
|
||||
spin_unlock_irqrestore(&mbus->lock, flags);
|
||||
|
||||
kref_get(&mbus->ref);
|
||||
}
|
||||
|
||||
/*
|
||||
* Unlink reader from the bus.
|
||||
*
|
||||
* This is called with mon_lock taken, so we can decrement mbus->ref.
|
||||
*/
|
||||
void mon_reader_del(struct mon_bus *mbus, struct mon_reader *r)
|
||||
{
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&mbus->lock, flags);
|
||||
list_del(&r->r_link);
|
||||
--mbus->nreaders;
|
||||
if (mbus->nreaders == 0)
|
||||
mon_stop(mbus);
|
||||
spin_unlock_irqrestore(&mbus->lock, flags);
|
||||
|
||||
kref_put(&mbus->ref, mon_bus_drop);
|
||||
}
|
||||
|
||||
/*
|
||||
*/
|
||||
static void mon_bus_submit(struct mon_bus *mbus, struct urb *urb)
|
||||
{
|
||||
unsigned long flags;
|
||||
struct list_head *pos;
|
||||
struct mon_reader *r;
|
||||
|
||||
spin_lock_irqsave(&mbus->lock, flags);
|
||||
mbus->cnt_events++;
|
||||
list_for_each (pos, &mbus->r_list) {
|
||||
r = list_entry(pos, struct mon_reader, r_link);
|
||||
r->rnf_submit(r->r_data, urb);
|
||||
}
|
||||
spin_unlock_irqrestore(&mbus->lock, flags);
|
||||
}
|
||||
|
||||
static void mon_submit(struct usb_bus *ubus, struct urb *urb)
|
||||
{
|
||||
struct mon_bus *mbus;
|
||||
|
||||
if ((mbus = ubus->mon_bus) != NULL)
|
||||
mon_bus_submit(mbus, urb);
|
||||
mon_bus_submit(&mon_bus0, urb);
|
||||
}
|
||||
|
||||
/*
|
||||
*/
|
||||
static void mon_bus_submit_error(struct mon_bus *mbus, struct urb *urb, int error)
|
||||
{
|
||||
unsigned long flags;
|
||||
struct list_head *pos;
|
||||
struct mon_reader *r;
|
||||
|
||||
spin_lock_irqsave(&mbus->lock, flags);
|
||||
mbus->cnt_events++;
|
||||
list_for_each (pos, &mbus->r_list) {
|
||||
r = list_entry(pos, struct mon_reader, r_link);
|
||||
r->rnf_error(r->r_data, urb, error);
|
||||
}
|
||||
spin_unlock_irqrestore(&mbus->lock, flags);
|
||||
}
|
||||
|
||||
static void mon_submit_error(struct usb_bus *ubus, struct urb *urb, int error)
|
||||
{
|
||||
struct mon_bus *mbus;
|
||||
|
||||
if ((mbus = ubus->mon_bus) != NULL)
|
||||
mon_bus_submit_error(mbus, urb, error);
|
||||
mon_bus_submit_error(&mon_bus0, urb, error);
|
||||
}
|
||||
|
||||
/*
|
||||
*/
|
||||
static void mon_bus_complete(struct mon_bus *mbus, struct urb *urb, int status)
|
||||
{
|
||||
unsigned long flags;
|
||||
struct list_head *pos;
|
||||
struct mon_reader *r;
|
||||
|
||||
spin_lock_irqsave(&mbus->lock, flags);
|
||||
mbus->cnt_events++;
|
||||
list_for_each (pos, &mbus->r_list) {
|
||||
r = list_entry(pos, struct mon_reader, r_link);
|
||||
r->rnf_complete(r->r_data, urb, status);
|
||||
}
|
||||
spin_unlock_irqrestore(&mbus->lock, flags);
|
||||
}
|
||||
|
||||
static void mon_complete(struct usb_bus *ubus, struct urb *urb, int status)
|
||||
{
|
||||
struct mon_bus *mbus;
|
||||
|
||||
if ((mbus = ubus->mon_bus) != NULL)
|
||||
mon_bus_complete(mbus, urb, status);
|
||||
mon_bus_complete(&mon_bus0, urb, status);
|
||||
}
|
||||
|
||||
/* int (*unlink_urb) (struct urb *urb, int status); */
|
||||
|
||||
/*
|
||||
* Stop monitoring.
|
||||
*/
|
||||
static void mon_stop(struct mon_bus *mbus)
|
||||
{
|
||||
struct usb_bus *ubus;
|
||||
struct list_head *p;
|
||||
|
||||
if (mbus == &mon_bus0) {
|
||||
list_for_each (p, &mon_buses) {
|
||||
mbus = list_entry(p, struct mon_bus, bus_link);
|
||||
/*
|
||||
* We do not change nreaders here, so rely on mon_lock.
|
||||
*/
|
||||
if (mbus->nreaders == 0 && (ubus = mbus->u_bus) != NULL)
|
||||
ubus->monitored = 0;
|
||||
}
|
||||
} else {
|
||||
/*
|
||||
* A stop can be called for a dissolved mon_bus in case of
|
||||
* a reader staying across an rmmod foo_hcd, so test ->u_bus.
|
||||
*/
|
||||
if (mon_bus0.nreaders == 0 && (ubus = mbus->u_bus) != NULL) {
|
||||
ubus->monitored = 0;
|
||||
mb();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Add a USB bus (usually by a modprobe foo-hcd)
|
||||
*
|
||||
* This does not return an error code because the core cannot care less
|
||||
* if monitoring is not established.
|
||||
*/
|
||||
static void mon_bus_add(struct usb_bus *ubus)
|
||||
{
|
||||
mon_bus_init(ubus);
|
||||
mutex_lock(&mon_lock);
|
||||
if (mon_bus0.nreaders != 0)
|
||||
ubus->monitored = 1;
|
||||
mutex_unlock(&mon_lock);
|
||||
}
|
||||
|
||||
/*
|
||||
* Remove a USB bus (either from rmmod foo-hcd or from a hot-remove event).
|
||||
*/
|
||||
static void mon_bus_remove(struct usb_bus *ubus)
|
||||
{
|
||||
struct mon_bus *mbus = ubus->mon_bus;
|
||||
|
||||
mutex_lock(&mon_lock);
|
||||
list_del(&mbus->bus_link);
|
||||
if (mbus->text_inited)
|
||||
mon_text_del(mbus);
|
||||
if (mbus->bin_inited)
|
||||
mon_bin_del(mbus);
|
||||
|
||||
mon_dissolve(mbus, ubus);
|
||||
kref_put(&mbus->ref, mon_bus_drop);
|
||||
mutex_unlock(&mon_lock);
|
||||
}
|
||||
|
||||
static int mon_notify(struct notifier_block *self, unsigned long action,
|
||||
void *dev)
|
||||
{
|
||||
switch (action) {
|
||||
case USB_BUS_ADD:
|
||||
mon_bus_add(dev);
|
||||
break;
|
||||
case USB_BUS_REMOVE:
|
||||
mon_bus_remove(dev);
|
||||
}
|
||||
return NOTIFY_OK;
|
||||
}
|
||||
|
||||
static struct notifier_block mon_nb = {
|
||||
.notifier_call = mon_notify,
|
||||
};
|
||||
|
||||
/*
|
||||
* Ops
|
||||
*/
|
||||
static struct usb_mon_operations mon_ops_0 = {
|
||||
.urb_submit = mon_submit,
|
||||
.urb_submit_error = mon_submit_error,
|
||||
.urb_complete = mon_complete,
|
||||
};
|
||||
|
||||
/*
|
||||
* Tear usb_bus and mon_bus apart.
|
||||
*/
|
||||
static void mon_dissolve(struct mon_bus *mbus, struct usb_bus *ubus)
|
||||
{
|
||||
|
||||
if (ubus->monitored) {
|
||||
ubus->monitored = 0;
|
||||
mb();
|
||||
}
|
||||
|
||||
ubus->mon_bus = NULL;
|
||||
mbus->u_bus = NULL;
|
||||
mb();
|
||||
|
||||
/* We want synchronize_irq() here, but that needs an argument. */
|
||||
}
|
||||
|
||||
/*
|
||||
*/
|
||||
static void mon_bus_drop(struct kref *r)
|
||||
{
|
||||
struct mon_bus *mbus = container_of(r, struct mon_bus, ref);
|
||||
kfree(mbus);
|
||||
}
|
||||
|
||||
/*
|
||||
* Initialize a bus for us:
|
||||
* - allocate mon_bus
|
||||
* - refcount USB bus struct
|
||||
* - link
|
||||
*/
|
||||
static void mon_bus_init(struct usb_bus *ubus)
|
||||
{
|
||||
struct mon_bus *mbus;
|
||||
|
||||
if ((mbus = kzalloc(sizeof(struct mon_bus), GFP_KERNEL)) == NULL)
|
||||
goto err_alloc;
|
||||
kref_init(&mbus->ref);
|
||||
spin_lock_init(&mbus->lock);
|
||||
INIT_LIST_HEAD(&mbus->r_list);
|
||||
|
||||
/*
|
||||
* We don't need to take a reference to ubus, because we receive
|
||||
* a notification if the bus is about to be removed.
|
||||
*/
|
||||
mbus->u_bus = ubus;
|
||||
ubus->mon_bus = mbus;
|
||||
|
||||
mbus->text_inited = mon_text_add(mbus, ubus);
|
||||
mbus->bin_inited = mon_bin_add(mbus, ubus);
|
||||
|
||||
mutex_lock(&mon_lock);
|
||||
list_add_tail(&mbus->bus_link, &mon_buses);
|
||||
mutex_unlock(&mon_lock);
|
||||
return;
|
||||
|
||||
err_alloc:
|
||||
return;
|
||||
}
|
||||
|
||||
static void mon_bus0_init(void)
|
||||
{
|
||||
struct mon_bus *mbus = &mon_bus0;
|
||||
|
||||
kref_init(&mbus->ref);
|
||||
spin_lock_init(&mbus->lock);
|
||||
INIT_LIST_HEAD(&mbus->r_list);
|
||||
|
||||
mbus->text_inited = mon_text_add(mbus, NULL);
|
||||
mbus->bin_inited = mon_bin_add(mbus, NULL);
|
||||
}
|
||||
|
||||
/*
|
||||
* Search a USB bus by number. Notice that USB bus numbers start from one,
|
||||
* which we may later use to identify "all" with zero.
|
||||
*
|
||||
* This function must be called with mon_lock held.
|
||||
*
|
||||
* This is obviously inefficient and may be revised in the future.
|
||||
*/
|
||||
struct mon_bus *mon_bus_lookup(unsigned int num)
|
||||
{
|
||||
struct list_head *p;
|
||||
struct mon_bus *mbus;
|
||||
|
||||
if (num == 0) {
|
||||
return &mon_bus0;
|
||||
}
|
||||
list_for_each (p, &mon_buses) {
|
||||
mbus = list_entry(p, struct mon_bus, bus_link);
|
||||
if (mbus->u_bus->busnum == num) {
|
||||
return mbus;
|
||||
}
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static int __init mon_init(void)
|
||||
{
|
||||
struct usb_bus *ubus;
|
||||
int rc;
|
||||
|
||||
if ((rc = mon_text_init()) != 0)
|
||||
goto err_text;
|
||||
if ((rc = mon_bin_init()) != 0)
|
||||
goto err_bin;
|
||||
|
||||
mon_bus0_init();
|
||||
|
||||
if (usb_mon_register(&mon_ops_0) != 0) {
|
||||
printk(KERN_NOTICE TAG ": unable to register with the core\n");
|
||||
rc = -ENODEV;
|
||||
goto err_reg;
|
||||
}
|
||||
// MOD_INC_USE_COUNT(which_module?);
|
||||
|
||||
mutex_lock(&usb_bus_list_lock);
|
||||
list_for_each_entry (ubus, &usb_bus_list, bus_list) {
|
||||
mon_bus_init(ubus);
|
||||
}
|
||||
usb_register_notify(&mon_nb);
|
||||
mutex_unlock(&usb_bus_list_lock);
|
||||
return 0;
|
||||
|
||||
err_reg:
|
||||
mon_bin_exit();
|
||||
err_bin:
|
||||
mon_text_exit();
|
||||
err_text:
|
||||
return rc;
|
||||
}
|
||||
|
||||
static void __exit mon_exit(void)
|
||||
{
|
||||
struct mon_bus *mbus;
|
||||
struct list_head *p;
|
||||
|
||||
usb_unregister_notify(&mon_nb);
|
||||
usb_mon_deregister();
|
||||
|
||||
mutex_lock(&mon_lock);
|
||||
|
||||
while (!list_empty(&mon_buses)) {
|
||||
p = mon_buses.next;
|
||||
mbus = list_entry(p, struct mon_bus, bus_link);
|
||||
list_del(p);
|
||||
|
||||
if (mbus->text_inited)
|
||||
mon_text_del(mbus);
|
||||
if (mbus->bin_inited)
|
||||
mon_bin_del(mbus);
|
||||
|
||||
/*
|
||||
* This never happens, because the open/close paths in
|
||||
* file level maintain module use counters and so rmmod fails
|
||||
* before reaching here. However, better be safe...
|
||||
*/
|
||||
if (mbus->nreaders) {
|
||||
printk(KERN_ERR TAG
|
||||
": Outstanding opens (%d) on usb%d, leaking...\n",
|
||||
mbus->nreaders, mbus->u_bus->busnum);
|
||||
atomic_set(&mbus->ref.refcount, 2); /* Force leak */
|
||||
}
|
||||
|
||||
mon_dissolve(mbus, mbus->u_bus);
|
||||
kref_put(&mbus->ref, mon_bus_drop);
|
||||
}
|
||||
|
||||
mbus = &mon_bus0;
|
||||
if (mbus->text_inited)
|
||||
mon_text_del(mbus);
|
||||
if (mbus->bin_inited)
|
||||
mon_bin_del(mbus);
|
||||
|
||||
mutex_unlock(&mon_lock);
|
||||
|
||||
mon_text_exit();
|
||||
mon_bin_exit();
|
||||
}
|
||||
|
||||
module_init(mon_init);
|
||||
module_exit(mon_exit);
|
||||
|
||||
MODULE_LICENSE("GPL");
|
69
drivers/usb/mon/mon_stat.c
Normal file
69
drivers/usb/mon/mon_stat.c
Normal file
|
@ -0,0 +1,69 @@
|
|||
/*
|
||||
* The USB Monitor, inspired by Dave Harding's USBMon.
|
||||
*
|
||||
* This is the 's' or 'stat' reader which debugs usbmon itself.
|
||||
* Note that this code blows through locks, so make sure that
|
||||
* /dbg/usbmon/0s is well protected from non-root users.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/export.h>
|
||||
#include <linux/usb.h>
|
||||
#include <linux/fs.h>
|
||||
#include <asm/uaccess.h>
|
||||
|
||||
#include "usb_mon.h"
|
||||
|
||||
#define STAT_BUF_SIZE 80
|
||||
|
||||
struct snap {
|
||||
int slen;
|
||||
char str[STAT_BUF_SIZE];
|
||||
};
|
||||
|
||||
static int mon_stat_open(struct inode *inode, struct file *file)
|
||||
{
|
||||
struct mon_bus *mbus;
|
||||
struct snap *sp;
|
||||
|
||||
if ((sp = kmalloc(sizeof(struct snap), GFP_KERNEL)) == NULL)
|
||||
return -ENOMEM;
|
||||
|
||||
mbus = inode->i_private;
|
||||
|
||||
sp->slen = snprintf(sp->str, STAT_BUF_SIZE,
|
||||
"nreaders %d events %u text_lost %u\n",
|
||||
mbus->nreaders, mbus->cnt_events, mbus->cnt_text_lost);
|
||||
|
||||
file->private_data = sp;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static ssize_t mon_stat_read(struct file *file, char __user *buf,
|
||||
size_t nbytes, loff_t *ppos)
|
||||
{
|
||||
struct snap *sp = file->private_data;
|
||||
|
||||
return simple_read_from_buffer(buf, nbytes, ppos, sp->str, sp->slen);
|
||||
}
|
||||
|
||||
static int mon_stat_release(struct inode *inode, struct file *file)
|
||||
{
|
||||
struct snap *sp = file->private_data;
|
||||
file->private_data = NULL;
|
||||
kfree(sp);
|
||||
return 0;
|
||||
}
|
||||
|
||||
const struct file_operations mon_fops_stat = {
|
||||
.owner = THIS_MODULE,
|
||||
.open = mon_stat_open,
|
||||
.llseek = no_llseek,
|
||||
.read = mon_stat_read,
|
||||
/* .write = mon_stat_write, */
|
||||
/* .poll = mon_stat_poll, */
|
||||
/* .unlocked_ioctl = mon_stat_ioctl, */
|
||||
.release = mon_stat_release,
|
||||
};
|
761
drivers/usb/mon/mon_text.c
Normal file
761
drivers/usb/mon/mon_text.c
Normal file
|
@ -0,0 +1,761 @@
|
|||
/*
|
||||
* The USB Monitor, inspired by Dave Harding's USBMon.
|
||||
*
|
||||
* This is a text format reader.
|
||||
*/
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/list.h>
|
||||
#include <linux/usb.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/time.h>
|
||||
#include <linux/export.h>
|
||||
#include <linux/mutex.h>
|
||||
#include <linux/debugfs.h>
|
||||
#include <linux/scatterlist.h>
|
||||
#include <asm/uaccess.h>
|
||||
|
||||
#include "usb_mon.h"
|
||||
|
||||
/*
|
||||
* No, we do not want arbitrarily long data strings.
|
||||
* Use the binary interface if you want to capture bulk data!
|
||||
*/
|
||||
#define DATA_MAX 32
|
||||
|
||||
/*
|
||||
* Defined by USB 2.0 clause 9.3, table 9.2.
|
||||
*/
|
||||
#define SETUP_MAX 8
|
||||
|
||||
/*
|
||||
* This limit exists to prevent OOMs when the user process stops reading.
|
||||
* If usbmon were available to unprivileged processes, it might be open
|
||||
* to a local DoS. But we have to keep to root in order to prevent
|
||||
* password sniffing from HID devices.
|
||||
*/
|
||||
#define EVENT_MAX (4*PAGE_SIZE / sizeof(struct mon_event_text))
|
||||
|
||||
/*
|
||||
* Potentially unlimited number; we limit it for similar allocations.
|
||||
* The usbfs limits this to 128, but we're not quite as generous.
|
||||
*/
|
||||
#define ISODESC_MAX 5
|
||||
|
||||
#define PRINTF_DFL 250 /* with 5 ISOs segs */
|
||||
|
||||
struct mon_iso_desc {
|
||||
int status;
|
||||
unsigned int offset;
|
||||
unsigned int length; /* Unsigned here, signed in URB. Historic. */
|
||||
};
|
||||
|
||||
struct mon_event_text {
|
||||
struct list_head e_link;
|
||||
int type; /* submit, complete, etc. */
|
||||
unsigned long id; /* From pointer, most of the time */
|
||||
unsigned int tstamp;
|
||||
int busnum;
|
||||
char devnum;
|
||||
char epnum;
|
||||
char is_in;
|
||||
char xfertype;
|
||||
int length; /* Depends on type: xfer length or act length */
|
||||
int status;
|
||||
int interval;
|
||||
int start_frame;
|
||||
int error_count;
|
||||
char setup_flag;
|
||||
char data_flag;
|
||||
int numdesc; /* Full number */
|
||||
struct mon_iso_desc isodesc[ISODESC_MAX];
|
||||
unsigned char setup[SETUP_MAX];
|
||||
unsigned char data[DATA_MAX];
|
||||
};
|
||||
|
||||
#define SLAB_NAME_SZ 30
|
||||
struct mon_reader_text {
|
||||
struct kmem_cache *e_slab;
|
||||
int nevents;
|
||||
struct list_head e_list;
|
||||
struct mon_reader r; /* In C, parent class can be placed anywhere */
|
||||
|
||||
wait_queue_head_t wait;
|
||||
int printf_size;
|
||||
char *printf_buf;
|
||||
struct mutex printf_lock;
|
||||
|
||||
char slab_name[SLAB_NAME_SZ];
|
||||
};
|
||||
|
||||
static struct dentry *mon_dir; /* Usually /sys/kernel/debug/usbmon */
|
||||
|
||||
static void mon_text_ctor(void *);
|
||||
|
||||
struct mon_text_ptr {
|
||||
int cnt, limit;
|
||||
char *pbuf;
|
||||
};
|
||||
|
||||
static struct mon_event_text *
|
||||
mon_text_read_wait(struct mon_reader_text *rp, struct file *file);
|
||||
static void mon_text_read_head_t(struct mon_reader_text *rp,
|
||||
struct mon_text_ptr *p, const struct mon_event_text *ep);
|
||||
static void mon_text_read_head_u(struct mon_reader_text *rp,
|
||||
struct mon_text_ptr *p, const struct mon_event_text *ep);
|
||||
static void mon_text_read_statset(struct mon_reader_text *rp,
|
||||
struct mon_text_ptr *p, const struct mon_event_text *ep);
|
||||
static void mon_text_read_intstat(struct mon_reader_text *rp,
|
||||
struct mon_text_ptr *p, const struct mon_event_text *ep);
|
||||
static void mon_text_read_isostat(struct mon_reader_text *rp,
|
||||
struct mon_text_ptr *p, const struct mon_event_text *ep);
|
||||
static void mon_text_read_isodesc(struct mon_reader_text *rp,
|
||||
struct mon_text_ptr *p, const struct mon_event_text *ep);
|
||||
static void mon_text_read_data(struct mon_reader_text *rp,
|
||||
struct mon_text_ptr *p, const struct mon_event_text *ep);
|
||||
|
||||
/*
|
||||
* mon_text_submit
|
||||
* mon_text_complete
|
||||
*
|
||||
* May be called from an interrupt.
|
||||
*
|
||||
* This is called with the whole mon_bus locked, so no additional lock.
|
||||
*/
|
||||
|
||||
static inline char mon_text_get_setup(struct mon_event_text *ep,
|
||||
struct urb *urb, char ev_type, struct mon_bus *mbus)
|
||||
{
|
||||
|
||||
if (ep->xfertype != USB_ENDPOINT_XFER_CONTROL || ev_type != 'S')
|
||||
return '-';
|
||||
|
||||
if (urb->setup_packet == NULL)
|
||||
return 'Z'; /* '0' would be not as pretty. */
|
||||
|
||||
memcpy(ep->setup, urb->setup_packet, SETUP_MAX);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline char mon_text_get_data(struct mon_event_text *ep, struct urb *urb,
|
||||
int len, char ev_type, struct mon_bus *mbus)
|
||||
{
|
||||
void *src;
|
||||
|
||||
if (len <= 0)
|
||||
return 'L';
|
||||
if (len >= DATA_MAX)
|
||||
len = DATA_MAX;
|
||||
|
||||
if (ep->is_in) {
|
||||
if (ev_type != 'C')
|
||||
return '<';
|
||||
} else {
|
||||
if (ev_type != 'S')
|
||||
return '>';
|
||||
}
|
||||
|
||||
if (urb->num_sgs == 0) {
|
||||
src = urb->transfer_buffer;
|
||||
if (src == NULL)
|
||||
return 'Z'; /* '0' would be not as pretty. */
|
||||
} else {
|
||||
struct scatterlist *sg = urb->sg;
|
||||
|
||||
if (PageHighMem(sg_page(sg)))
|
||||
return 'D';
|
||||
|
||||
/* For the text interface we copy only the first sg buffer */
|
||||
len = min_t(int, sg->length, len);
|
||||
src = sg_virt(sg);
|
||||
}
|
||||
|
||||
memcpy(ep->data, src, len);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline unsigned int mon_get_timestamp(void)
|
||||
{
|
||||
struct timeval tval;
|
||||
unsigned int stamp;
|
||||
|
||||
do_gettimeofday(&tval);
|
||||
stamp = tval.tv_sec & 0xFFF; /* 2^32 = 4294967296. Limit to 4096s. */
|
||||
stamp = stamp * 1000000 + tval.tv_usec;
|
||||
return stamp;
|
||||
}
|
||||
|
||||
static void mon_text_event(struct mon_reader_text *rp, struct urb *urb,
|
||||
char ev_type, int status)
|
||||
{
|
||||
struct mon_event_text *ep;
|
||||
unsigned int stamp;
|
||||
struct usb_iso_packet_descriptor *fp;
|
||||
struct mon_iso_desc *dp;
|
||||
int i, ndesc;
|
||||
|
||||
stamp = mon_get_timestamp();
|
||||
|
||||
if (rp->nevents >= EVENT_MAX ||
|
||||
(ep = kmem_cache_alloc(rp->e_slab, GFP_ATOMIC)) == NULL) {
|
||||
rp->r.m_bus->cnt_text_lost++;
|
||||
return;
|
||||
}
|
||||
|
||||
ep->type = ev_type;
|
||||
ep->id = (unsigned long) urb;
|
||||
ep->busnum = urb->dev->bus->busnum;
|
||||
ep->devnum = urb->dev->devnum;
|
||||
ep->epnum = usb_endpoint_num(&urb->ep->desc);
|
||||
ep->xfertype = usb_endpoint_type(&urb->ep->desc);
|
||||
ep->is_in = usb_urb_dir_in(urb);
|
||||
ep->tstamp = stamp;
|
||||
ep->length = (ev_type == 'S') ?
|
||||
urb->transfer_buffer_length : urb->actual_length;
|
||||
/* Collecting status makes debugging sense for submits, too */
|
||||
ep->status = status;
|
||||
|
||||
if (ep->xfertype == USB_ENDPOINT_XFER_INT) {
|
||||
ep->interval = urb->interval;
|
||||
} else if (ep->xfertype == USB_ENDPOINT_XFER_ISOC) {
|
||||
ep->interval = urb->interval;
|
||||
ep->start_frame = urb->start_frame;
|
||||
ep->error_count = urb->error_count;
|
||||
}
|
||||
ep->numdesc = urb->number_of_packets;
|
||||
if (ep->xfertype == USB_ENDPOINT_XFER_ISOC &&
|
||||
urb->number_of_packets > 0) {
|
||||
if ((ndesc = urb->number_of_packets) > ISODESC_MAX)
|
||||
ndesc = ISODESC_MAX;
|
||||
fp = urb->iso_frame_desc;
|
||||
dp = ep->isodesc;
|
||||
for (i = 0; i < ndesc; i++) {
|
||||
dp->status = fp->status;
|
||||
dp->offset = fp->offset;
|
||||
dp->length = (ev_type == 'S') ?
|
||||
fp->length : fp->actual_length;
|
||||
fp++;
|
||||
dp++;
|
||||
}
|
||||
/* Wasteful, but simple to understand: ISO 'C' is sparse. */
|
||||
if (ev_type == 'C')
|
||||
ep->length = urb->transfer_buffer_length;
|
||||
}
|
||||
|
||||
ep->setup_flag = mon_text_get_setup(ep, urb, ev_type, rp->r.m_bus);
|
||||
ep->data_flag = mon_text_get_data(ep, urb, ep->length, ev_type,
|
||||
rp->r.m_bus);
|
||||
|
||||
rp->nevents++;
|
||||
list_add_tail(&ep->e_link, &rp->e_list);
|
||||
wake_up(&rp->wait);
|
||||
}
|
||||
|
||||
static void mon_text_submit(void *data, struct urb *urb)
|
||||
{
|
||||
struct mon_reader_text *rp = data;
|
||||
mon_text_event(rp, urb, 'S', -EINPROGRESS);
|
||||
}
|
||||
|
||||
static void mon_text_complete(void *data, struct urb *urb, int status)
|
||||
{
|
||||
struct mon_reader_text *rp = data;
|
||||
mon_text_event(rp, urb, 'C', status);
|
||||
}
|
||||
|
||||
static void mon_text_error(void *data, struct urb *urb, int error)
|
||||
{
|
||||
struct mon_reader_text *rp = data;
|
||||
struct mon_event_text *ep;
|
||||
|
||||
if (rp->nevents >= EVENT_MAX ||
|
||||
(ep = kmem_cache_alloc(rp->e_slab, GFP_ATOMIC)) == NULL) {
|
||||
rp->r.m_bus->cnt_text_lost++;
|
||||
return;
|
||||
}
|
||||
|
||||
ep->type = 'E';
|
||||
ep->id = (unsigned long) urb;
|
||||
ep->busnum = urb->dev->bus->busnum;
|
||||
ep->devnum = urb->dev->devnum;
|
||||
ep->epnum = usb_endpoint_num(&urb->ep->desc);
|
||||
ep->xfertype = usb_endpoint_type(&urb->ep->desc);
|
||||
ep->is_in = usb_urb_dir_in(urb);
|
||||
ep->tstamp = mon_get_timestamp();
|
||||
ep->length = 0;
|
||||
ep->status = error;
|
||||
|
||||
ep->setup_flag = '-';
|
||||
ep->data_flag = 'E';
|
||||
|
||||
rp->nevents++;
|
||||
list_add_tail(&ep->e_link, &rp->e_list);
|
||||
wake_up(&rp->wait);
|
||||
}
|
||||
|
||||
/*
|
||||
* Fetch next event from the circular buffer.
|
||||
*/
|
||||
static struct mon_event_text *mon_text_fetch(struct mon_reader_text *rp,
|
||||
struct mon_bus *mbus)
|
||||
{
|
||||
struct list_head *p;
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&mbus->lock, flags);
|
||||
if (list_empty(&rp->e_list)) {
|
||||
spin_unlock_irqrestore(&mbus->lock, flags);
|
||||
return NULL;
|
||||
}
|
||||
p = rp->e_list.next;
|
||||
list_del(p);
|
||||
--rp->nevents;
|
||||
spin_unlock_irqrestore(&mbus->lock, flags);
|
||||
return list_entry(p, struct mon_event_text, e_link);
|
||||
}
|
||||
|
||||
/*
|
||||
*/
|
||||
static int mon_text_open(struct inode *inode, struct file *file)
|
||||
{
|
||||
struct mon_bus *mbus;
|
||||
struct mon_reader_text *rp;
|
||||
int rc;
|
||||
|
||||
mutex_lock(&mon_lock);
|
||||
mbus = inode->i_private;
|
||||
|
||||
rp = kzalloc(sizeof(struct mon_reader_text), GFP_KERNEL);
|
||||
if (rp == NULL) {
|
||||
rc = -ENOMEM;
|
||||
goto err_alloc;
|
||||
}
|
||||
INIT_LIST_HEAD(&rp->e_list);
|
||||
init_waitqueue_head(&rp->wait);
|
||||
mutex_init(&rp->printf_lock);
|
||||
|
||||
rp->printf_size = PRINTF_DFL;
|
||||
rp->printf_buf = kmalloc(rp->printf_size, GFP_KERNEL);
|
||||
if (rp->printf_buf == NULL) {
|
||||
rc = -ENOMEM;
|
||||
goto err_alloc_pr;
|
||||
}
|
||||
|
||||
rp->r.m_bus = mbus;
|
||||
rp->r.r_data = rp;
|
||||
rp->r.rnf_submit = mon_text_submit;
|
||||
rp->r.rnf_error = mon_text_error;
|
||||
rp->r.rnf_complete = mon_text_complete;
|
||||
|
||||
snprintf(rp->slab_name, SLAB_NAME_SZ, "mon_text_%p", rp);
|
||||
rp->e_slab = kmem_cache_create(rp->slab_name,
|
||||
sizeof(struct mon_event_text), sizeof(long), 0,
|
||||
mon_text_ctor);
|
||||
if (rp->e_slab == NULL) {
|
||||
rc = -ENOMEM;
|
||||
goto err_slab;
|
||||
}
|
||||
|
||||
mon_reader_add(mbus, &rp->r);
|
||||
|
||||
file->private_data = rp;
|
||||
mutex_unlock(&mon_lock);
|
||||
return 0;
|
||||
|
||||
// err_busy:
|
||||
// kmem_cache_destroy(rp->e_slab);
|
||||
err_slab:
|
||||
kfree(rp->printf_buf);
|
||||
err_alloc_pr:
|
||||
kfree(rp);
|
||||
err_alloc:
|
||||
mutex_unlock(&mon_lock);
|
||||
return rc;
|
||||
}
|
||||
|
||||
/*
|
||||
* For simplicity, we read one record in one system call and throw out
|
||||
* what does not fit. This means that the following does not work:
|
||||
* dd if=/dbg/usbmon/0t bs=10
|
||||
* Also, we do not allow seeks and do not bother advancing the offset.
|
||||
*/
|
||||
static ssize_t mon_text_read_t(struct file *file, char __user *buf,
|
||||
size_t nbytes, loff_t *ppos)
|
||||
{
|
||||
struct mon_reader_text *rp = file->private_data;
|
||||
struct mon_event_text *ep;
|
||||
struct mon_text_ptr ptr;
|
||||
|
||||
if (IS_ERR(ep = mon_text_read_wait(rp, file)))
|
||||
return PTR_ERR(ep);
|
||||
mutex_lock(&rp->printf_lock);
|
||||
ptr.cnt = 0;
|
||||
ptr.pbuf = rp->printf_buf;
|
||||
ptr.limit = rp->printf_size;
|
||||
|
||||
mon_text_read_head_t(rp, &ptr, ep);
|
||||
mon_text_read_statset(rp, &ptr, ep);
|
||||
ptr.cnt += snprintf(ptr.pbuf + ptr.cnt, ptr.limit - ptr.cnt,
|
||||
" %d", ep->length);
|
||||
mon_text_read_data(rp, &ptr, ep);
|
||||
|
||||
if (copy_to_user(buf, rp->printf_buf, ptr.cnt))
|
||||
ptr.cnt = -EFAULT;
|
||||
mutex_unlock(&rp->printf_lock);
|
||||
kmem_cache_free(rp->e_slab, ep);
|
||||
return ptr.cnt;
|
||||
}
|
||||
|
||||
static ssize_t mon_text_read_u(struct file *file, char __user *buf,
|
||||
size_t nbytes, loff_t *ppos)
|
||||
{
|
||||
struct mon_reader_text *rp = file->private_data;
|
||||
struct mon_event_text *ep;
|
||||
struct mon_text_ptr ptr;
|
||||
|
||||
if (IS_ERR(ep = mon_text_read_wait(rp, file)))
|
||||
return PTR_ERR(ep);
|
||||
mutex_lock(&rp->printf_lock);
|
||||
ptr.cnt = 0;
|
||||
ptr.pbuf = rp->printf_buf;
|
||||
ptr.limit = rp->printf_size;
|
||||
|
||||
mon_text_read_head_u(rp, &ptr, ep);
|
||||
if (ep->type == 'E') {
|
||||
mon_text_read_statset(rp, &ptr, ep);
|
||||
} else if (ep->xfertype == USB_ENDPOINT_XFER_ISOC) {
|
||||
mon_text_read_isostat(rp, &ptr, ep);
|
||||
mon_text_read_isodesc(rp, &ptr, ep);
|
||||
} else if (ep->xfertype == USB_ENDPOINT_XFER_INT) {
|
||||
mon_text_read_intstat(rp, &ptr, ep);
|
||||
} else {
|
||||
mon_text_read_statset(rp, &ptr, ep);
|
||||
}
|
||||
ptr.cnt += snprintf(ptr.pbuf + ptr.cnt, ptr.limit - ptr.cnt,
|
||||
" %d", ep->length);
|
||||
mon_text_read_data(rp, &ptr, ep);
|
||||
|
||||
if (copy_to_user(buf, rp->printf_buf, ptr.cnt))
|
||||
ptr.cnt = -EFAULT;
|
||||
mutex_unlock(&rp->printf_lock);
|
||||
kmem_cache_free(rp->e_slab, ep);
|
||||
return ptr.cnt;
|
||||
}
|
||||
|
||||
static struct mon_event_text *mon_text_read_wait(struct mon_reader_text *rp,
|
||||
struct file *file)
|
||||
{
|
||||
struct mon_bus *mbus = rp->r.m_bus;
|
||||
DECLARE_WAITQUEUE(waita, current);
|
||||
struct mon_event_text *ep;
|
||||
|
||||
add_wait_queue(&rp->wait, &waita);
|
||||
set_current_state(TASK_INTERRUPTIBLE);
|
||||
while ((ep = mon_text_fetch(rp, mbus)) == NULL) {
|
||||
if (file->f_flags & O_NONBLOCK) {
|
||||
set_current_state(TASK_RUNNING);
|
||||
remove_wait_queue(&rp->wait, &waita);
|
||||
return ERR_PTR(-EWOULDBLOCK);
|
||||
}
|
||||
/*
|
||||
* We do not count nwaiters, because ->release is supposed
|
||||
* to be called when all openers are gone only.
|
||||
*/
|
||||
schedule();
|
||||
if (signal_pending(current)) {
|
||||
remove_wait_queue(&rp->wait, &waita);
|
||||
return ERR_PTR(-EINTR);
|
||||
}
|
||||
set_current_state(TASK_INTERRUPTIBLE);
|
||||
}
|
||||
set_current_state(TASK_RUNNING);
|
||||
remove_wait_queue(&rp->wait, &waita);
|
||||
return ep;
|
||||
}
|
||||
|
||||
static void mon_text_read_head_t(struct mon_reader_text *rp,
|
||||
struct mon_text_ptr *p, const struct mon_event_text *ep)
|
||||
{
|
||||
char udir, utype;
|
||||
|
||||
udir = (ep->is_in ? 'i' : 'o');
|
||||
switch (ep->xfertype) {
|
||||
case USB_ENDPOINT_XFER_ISOC: utype = 'Z'; break;
|
||||
case USB_ENDPOINT_XFER_INT: utype = 'I'; break;
|
||||
case USB_ENDPOINT_XFER_CONTROL: utype = 'C'; break;
|
||||
default: /* PIPE_BULK */ utype = 'B';
|
||||
}
|
||||
p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
|
||||
"%lx %u %c %c%c:%03u:%02u",
|
||||
ep->id, ep->tstamp, ep->type,
|
||||
utype, udir, ep->devnum, ep->epnum);
|
||||
}
|
||||
|
||||
static void mon_text_read_head_u(struct mon_reader_text *rp,
|
||||
struct mon_text_ptr *p, const struct mon_event_text *ep)
|
||||
{
|
||||
char udir, utype;
|
||||
|
||||
udir = (ep->is_in ? 'i' : 'o');
|
||||
switch (ep->xfertype) {
|
||||
case USB_ENDPOINT_XFER_ISOC: utype = 'Z'; break;
|
||||
case USB_ENDPOINT_XFER_INT: utype = 'I'; break;
|
||||
case USB_ENDPOINT_XFER_CONTROL: utype = 'C'; break;
|
||||
default: /* PIPE_BULK */ utype = 'B';
|
||||
}
|
||||
p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
|
||||
"%lx %u %c %c%c:%d:%03u:%u",
|
||||
ep->id, ep->tstamp, ep->type,
|
||||
utype, udir, ep->busnum, ep->devnum, ep->epnum);
|
||||
}
|
||||
|
||||
static void mon_text_read_statset(struct mon_reader_text *rp,
|
||||
struct mon_text_ptr *p, const struct mon_event_text *ep)
|
||||
{
|
||||
|
||||
if (ep->setup_flag == 0) { /* Setup packet is present and captured */
|
||||
p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
|
||||
" s %02x %02x %04x %04x %04x",
|
||||
ep->setup[0],
|
||||
ep->setup[1],
|
||||
(ep->setup[3] << 8) | ep->setup[2],
|
||||
(ep->setup[5] << 8) | ep->setup[4],
|
||||
(ep->setup[7] << 8) | ep->setup[6]);
|
||||
} else if (ep->setup_flag != '-') { /* Unable to capture setup packet */
|
||||
p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
|
||||
" %c __ __ ____ ____ ____", ep->setup_flag);
|
||||
} else { /* No setup for this kind of URB */
|
||||
p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
|
||||
" %d", ep->status);
|
||||
}
|
||||
}
|
||||
|
||||
static void mon_text_read_intstat(struct mon_reader_text *rp,
|
||||
struct mon_text_ptr *p, const struct mon_event_text *ep)
|
||||
{
|
||||
p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
|
||||
" %d:%d", ep->status, ep->interval);
|
||||
}
|
||||
|
||||
static void mon_text_read_isostat(struct mon_reader_text *rp,
|
||||
struct mon_text_ptr *p, const struct mon_event_text *ep)
|
||||
{
|
||||
if (ep->type == 'S') {
|
||||
p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
|
||||
" %d:%d:%d", ep->status, ep->interval, ep->start_frame);
|
||||
} else {
|
||||
p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
|
||||
" %d:%d:%d:%d",
|
||||
ep->status, ep->interval, ep->start_frame, ep->error_count);
|
||||
}
|
||||
}
|
||||
|
||||
static void mon_text_read_isodesc(struct mon_reader_text *rp,
|
||||
struct mon_text_ptr *p, const struct mon_event_text *ep)
|
||||
{
|
||||
int ndesc; /* Display this many */
|
||||
int i;
|
||||
const struct mon_iso_desc *dp;
|
||||
|
||||
p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
|
||||
" %d", ep->numdesc);
|
||||
ndesc = ep->numdesc;
|
||||
if (ndesc > ISODESC_MAX)
|
||||
ndesc = ISODESC_MAX;
|
||||
if (ndesc < 0)
|
||||
ndesc = 0;
|
||||
dp = ep->isodesc;
|
||||
for (i = 0; i < ndesc; i++) {
|
||||
p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
|
||||
" %d:%u:%u", dp->status, dp->offset, dp->length);
|
||||
dp++;
|
||||
}
|
||||
}
|
||||
|
||||
static void mon_text_read_data(struct mon_reader_text *rp,
|
||||
struct mon_text_ptr *p, const struct mon_event_text *ep)
|
||||
{
|
||||
int data_len, i;
|
||||
|
||||
if ((data_len = ep->length) > 0) {
|
||||
if (ep->data_flag == 0) {
|
||||
p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
|
||||
" =");
|
||||
if (data_len >= DATA_MAX)
|
||||
data_len = DATA_MAX;
|
||||
for (i = 0; i < data_len; i++) {
|
||||
if (i % 4 == 0) {
|
||||
p->cnt += snprintf(p->pbuf + p->cnt,
|
||||
p->limit - p->cnt,
|
||||
" ");
|
||||
}
|
||||
p->cnt += snprintf(p->pbuf + p->cnt,
|
||||
p->limit - p->cnt,
|
||||
"%02x", ep->data[i]);
|
||||
}
|
||||
p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
|
||||
"\n");
|
||||
} else {
|
||||
p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
|
||||
" %c\n", ep->data_flag);
|
||||
}
|
||||
} else {
|
||||
p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt, "\n");
|
||||
}
|
||||
}
|
||||
|
||||
static int mon_text_release(struct inode *inode, struct file *file)
|
||||
{
|
||||
struct mon_reader_text *rp = file->private_data;
|
||||
struct mon_bus *mbus;
|
||||
/* unsigned long flags; */
|
||||
struct list_head *p;
|
||||
struct mon_event_text *ep;
|
||||
|
||||
mutex_lock(&mon_lock);
|
||||
mbus = inode->i_private;
|
||||
|
||||
if (mbus->nreaders <= 0) {
|
||||
printk(KERN_ERR TAG ": consistency error on close\n");
|
||||
mutex_unlock(&mon_lock);
|
||||
return 0;
|
||||
}
|
||||
mon_reader_del(mbus, &rp->r);
|
||||
|
||||
/*
|
||||
* In theory, e_list is protected by mbus->lock. However,
|
||||
* after mon_reader_del has finished, the following is the case:
|
||||
* - we are not on reader list anymore, so new events won't be added;
|
||||
* - whole mbus may be dropped if it was orphaned.
|
||||
* So, we better not touch mbus.
|
||||
*/
|
||||
/* spin_lock_irqsave(&mbus->lock, flags); */
|
||||
while (!list_empty(&rp->e_list)) {
|
||||
p = rp->e_list.next;
|
||||
ep = list_entry(p, struct mon_event_text, e_link);
|
||||
list_del(p);
|
||||
--rp->nevents;
|
||||
kmem_cache_free(rp->e_slab, ep);
|
||||
}
|
||||
/* spin_unlock_irqrestore(&mbus->lock, flags); */
|
||||
|
||||
kmem_cache_destroy(rp->e_slab);
|
||||
kfree(rp->printf_buf);
|
||||
kfree(rp);
|
||||
|
||||
mutex_unlock(&mon_lock);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct file_operations mon_fops_text_t = {
|
||||
.owner = THIS_MODULE,
|
||||
.open = mon_text_open,
|
||||
.llseek = no_llseek,
|
||||
.read = mon_text_read_t,
|
||||
.release = mon_text_release,
|
||||
};
|
||||
|
||||
static const struct file_operations mon_fops_text_u = {
|
||||
.owner = THIS_MODULE,
|
||||
.open = mon_text_open,
|
||||
.llseek = no_llseek,
|
||||
.read = mon_text_read_u,
|
||||
.release = mon_text_release,
|
||||
};
|
||||
|
||||
int mon_text_add(struct mon_bus *mbus, const struct usb_bus *ubus)
|
||||
{
|
||||
struct dentry *d;
|
||||
enum { NAMESZ = 10 };
|
||||
char name[NAMESZ];
|
||||
int busnum = ubus? ubus->busnum: 0;
|
||||
int rc;
|
||||
|
||||
if (mon_dir == NULL)
|
||||
return 0;
|
||||
|
||||
if (ubus != NULL) {
|
||||
rc = snprintf(name, NAMESZ, "%dt", busnum);
|
||||
if (rc <= 0 || rc >= NAMESZ)
|
||||
goto err_print_t;
|
||||
d = debugfs_create_file(name, 0600, mon_dir, mbus,
|
||||
&mon_fops_text_t);
|
||||
if (d == NULL)
|
||||
goto err_create_t;
|
||||
mbus->dent_t = d;
|
||||
}
|
||||
|
||||
rc = snprintf(name, NAMESZ, "%du", busnum);
|
||||
if (rc <= 0 || rc >= NAMESZ)
|
||||
goto err_print_u;
|
||||
d = debugfs_create_file(name, 0600, mon_dir, mbus, &mon_fops_text_u);
|
||||
if (d == NULL)
|
||||
goto err_create_u;
|
||||
mbus->dent_u = d;
|
||||
|
||||
rc = snprintf(name, NAMESZ, "%ds", busnum);
|
||||
if (rc <= 0 || rc >= NAMESZ)
|
||||
goto err_print_s;
|
||||
d = debugfs_create_file(name, 0600, mon_dir, mbus, &mon_fops_stat);
|
||||
if (d == NULL)
|
||||
goto err_create_s;
|
||||
mbus->dent_s = d;
|
||||
|
||||
return 1;
|
||||
|
||||
err_create_s:
|
||||
err_print_s:
|
||||
debugfs_remove(mbus->dent_u);
|
||||
mbus->dent_u = NULL;
|
||||
err_create_u:
|
||||
err_print_u:
|
||||
if (ubus != NULL) {
|
||||
debugfs_remove(mbus->dent_t);
|
||||
mbus->dent_t = NULL;
|
||||
}
|
||||
err_create_t:
|
||||
err_print_t:
|
||||
return 0;
|
||||
}
|
||||
|
||||
void mon_text_del(struct mon_bus *mbus)
|
||||
{
|
||||
debugfs_remove(mbus->dent_u);
|
||||
if (mbus->dent_t != NULL)
|
||||
debugfs_remove(mbus->dent_t);
|
||||
debugfs_remove(mbus->dent_s);
|
||||
}
|
||||
|
||||
/*
|
||||
* Slab interface: constructor.
|
||||
*/
|
||||
static void mon_text_ctor(void *mem)
|
||||
{
|
||||
/*
|
||||
* Nothing to initialize. No, really!
|
||||
* So, we fill it with garbage to emulate a reused object.
|
||||
*/
|
||||
memset(mem, 0xe5, sizeof(struct mon_event_text));
|
||||
}
|
||||
|
||||
int __init mon_text_init(void)
|
||||
{
|
||||
struct dentry *mondir;
|
||||
|
||||
mondir = debugfs_create_dir("usbmon", usb_debug_root);
|
||||
if (IS_ERR(mondir)) {
|
||||
/* debugfs not available, but we can use usbmon without it */
|
||||
return 0;
|
||||
}
|
||||
if (mondir == NULL) {
|
||||
printk(KERN_NOTICE TAG ": unable to create usbmon directory\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
mon_dir = mondir;
|
||||
return 0;
|
||||
}
|
||||
|
||||
void mon_text_exit(void)
|
||||
{
|
||||
debugfs_remove(mon_dir);
|
||||
}
|
75
drivers/usb/mon/usb_mon.h
Normal file
75
drivers/usb/mon/usb_mon.h
Normal file
|
@ -0,0 +1,75 @@
|
|||
/*
|
||||
* The USB Monitor, inspired by Dave Harding's USBMon.
|
||||
*
|
||||
* Copyright (C) 2005 Pete Zaitcev (zaitcev@redhat.com)
|
||||
*/
|
||||
|
||||
#ifndef __USB_MON_H
|
||||
#define __USB_MON_H
|
||||
|
||||
#include <linux/list.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/kref.h>
|
||||
/* #include <linux/usb.h> */ /* We use struct pointers only in this header */
|
||||
|
||||
#define TAG "usbmon"
|
||||
|
||||
struct mon_bus {
|
||||
struct list_head bus_link;
|
||||
spinlock_t lock;
|
||||
struct usb_bus *u_bus;
|
||||
|
||||
int text_inited;
|
||||
int bin_inited;
|
||||
struct dentry *dent_s; /* Debugging file */
|
||||
struct dentry *dent_t; /* Text interface file */
|
||||
struct dentry *dent_u; /* Second text interface file */
|
||||
struct device *classdev; /* Device in usbmon class */
|
||||
|
||||
/* Ref */
|
||||
int nreaders; /* Under mon_lock AND mbus->lock */
|
||||
struct list_head r_list; /* Chain of readers (usually one) */
|
||||
struct kref ref; /* Under mon_lock */
|
||||
|
||||
/* Stats */
|
||||
unsigned int cnt_events;
|
||||
unsigned int cnt_text_lost;
|
||||
};
|
||||
|
||||
/*
|
||||
* An instance of a process which opened a file (but can fork later)
|
||||
*/
|
||||
struct mon_reader {
|
||||
struct list_head r_link;
|
||||
struct mon_bus *m_bus;
|
||||
void *r_data; /* Use container_of instead? */
|
||||
|
||||
void (*rnf_submit)(void *data, struct urb *urb);
|
||||
void (*rnf_error)(void *data, struct urb *urb, int error);
|
||||
void (*rnf_complete)(void *data, struct urb *urb, int status);
|
||||
};
|
||||
|
||||
void mon_reader_add(struct mon_bus *mbus, struct mon_reader *r);
|
||||
void mon_reader_del(struct mon_bus *mbus, struct mon_reader *r);
|
||||
|
||||
struct mon_bus *mon_bus_lookup(unsigned int num);
|
||||
|
||||
int /*bool*/ mon_text_add(struct mon_bus *mbus, const struct usb_bus *ubus);
|
||||
void mon_text_del(struct mon_bus *mbus);
|
||||
int /*bool*/ mon_bin_add(struct mon_bus *mbus, const struct usb_bus *ubus);
|
||||
void mon_bin_del(struct mon_bus *mbus);
|
||||
|
||||
int __init mon_text_init(void);
|
||||
void mon_text_exit(void);
|
||||
int __init mon_bin_init(void);
|
||||
void mon_bin_exit(void);
|
||||
|
||||
/*
|
||||
*/
|
||||
extern struct mutex mon_lock;
|
||||
|
||||
extern const struct file_operations mon_fops_stat;
|
||||
|
||||
extern struct mon_bus mon_bus0; /* Only for redundant checks */
|
||||
|
||||
#endif /* __USB_MON_H */
|
Loading…
Add table
Add a link
Reference in a new issue