2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* The USB Monitor, inspired by Dave Harding's USBMon.
|
2005-08-17 00:16:46 +02:00
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Pete Zaitcev (zaitcev@redhat.com)
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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;
|
USB: add binary API to usbmon
This patch adds a new, "binary" API in addition to the old, text API usbmon
had before. The new API allows for less CPU use, and it allows to capture
all data from a packet where old API only captured 32 bytes at most. There
are some limitations and conditions to this, e.g. in case someone constructs
a URB with 1GB of data, it's not likely to be captured, because even the
huge buffers of the new reader are finite. Nonetheless, I expect this new
capability to capture all data for all real life scenarios.
The downside is, a special user mode application is required where cat(1)
worked before. I have sample code at http://people.redhat.com/zaitcev/linux/
and Paolo Abeni is working on patching libpcap.
This patch was initially written by Paolo and later I tweaked it, and
we had a little back-and-forth. So this is a jointly authored patch, but
I am submitting this I am responsible for the bugs.
Signed-off-by: Paolo Abeni <paolo.abeni@email.it>
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2006-12-31 07:43:10 +01:00
|
|
|
struct usb_bus *u_bus;
|
|
|
|
|
|
|
|
int text_inited;
|
2005-04-17 00:20:36 +02:00
|
|
|
struct dentry *dent_s; /* Debugging file */
|
|
|
|
struct dentry *dent_t; /* Text interface file */
|
2007-02-25 04:27:33 +01:00
|
|
|
struct dentry *dent_u; /* Second text interface file */
|
2006-08-30 17:35:21 +02:00
|
|
|
int uses_dma;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* 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 */
|
2006-06-10 05:10:10 +02:00
|
|
|
unsigned int cnt_events;
|
2005-04-17 00:20:36 +02:00
|
|
|
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);
|
2006-06-10 07:03:32 +02:00
|
|
|
void (*rnf_error)(void *data, struct urb *urb, int error);
|
2005-04-17 00:20:36 +02:00
|
|
|
void (*rnf_complete)(void *data, struct urb *urb);
|
|
|
|
};
|
|
|
|
|
|
|
|
void mon_reader_add(struct mon_bus *mbus, struct mon_reader *r);
|
|
|
|
void mon_reader_del(struct mon_bus *mbus, struct mon_reader *r);
|
|
|
|
|
USB: add binary API to usbmon
This patch adds a new, "binary" API in addition to the old, text API usbmon
had before. The new API allows for less CPU use, and it allows to capture
all data from a packet where old API only captured 32 bytes at most. There
are some limitations and conditions to this, e.g. in case someone constructs
a URB with 1GB of data, it's not likely to be captured, because even the
huge buffers of the new reader are finite. Nonetheless, I expect this new
capability to capture all data for all real life scenarios.
The downside is, a special user mode application is required where cat(1)
worked before. I have sample code at http://people.redhat.com/zaitcev/linux/
and Paolo Abeni is working on patching libpcap.
This patch was initially written by Paolo and later I tweaked it, and
we had a little back-and-forth. So this is a jointly authored patch, but
I am submitting this I am responsible for the bugs.
Signed-off-by: Paolo Abeni <paolo.abeni@email.it>
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2006-12-31 07:43:10 +01:00
|
|
|
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);
|
|
|
|
// void mon_bin_add(struct mon_bus *);
|
|
|
|
|
|
|
|
int __init mon_text_init(void);
|
2007-02-20 19:37:52 +01:00
|
|
|
void mon_text_exit(void);
|
USB: add binary API to usbmon
This patch adds a new, "binary" API in addition to the old, text API usbmon
had before. The new API allows for less CPU use, and it allows to capture
all data from a packet where old API only captured 32 bytes at most. There
are some limitations and conditions to this, e.g. in case someone constructs
a URB with 1GB of data, it's not likely to be captured, because even the
huge buffers of the new reader are finite. Nonetheless, I expect this new
capability to capture all data for all real life scenarios.
The downside is, a special user mode application is required where cat(1)
worked before. I have sample code at http://people.redhat.com/zaitcev/linux/
and Paolo Abeni is working on patching libpcap.
This patch was initially written by Paolo and later I tweaked it, and
we had a little back-and-forth. So this is a jointly authored patch, but
I am submitting this I am responsible for the bugs.
Signed-off-by: Paolo Abeni <paolo.abeni@email.it>
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2006-12-31 07:43:10 +01:00
|
|
|
int __init mon_bin_init(void);
|
2007-02-20 19:37:52 +01:00
|
|
|
void mon_bin_exit(void);
|
USB: add binary API to usbmon
This patch adds a new, "binary" API in addition to the old, text API usbmon
had before. The new API allows for less CPU use, and it allows to capture
all data from a packet where old API only captured 32 bytes at most. There
are some limitations and conditions to this, e.g. in case someone constructs
a URB with 1GB of data, it's not likely to be captured, because even the
huge buffers of the new reader are finite. Nonetheless, I expect this new
capability to capture all data for all real life scenarios.
The downside is, a special user mode application is required where cat(1)
worked before. I have sample code at http://people.redhat.com/zaitcev/linux/
and Paolo Abeni is working on patching libpcap.
This patch was initially written by Paolo and later I tweaked it, and
we had a little back-and-forth. So this is a jointly authored patch, but
I am submitting this I am responsible for the bugs.
Signed-off-by: Paolo Abeni <paolo.abeni@email.it>
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2006-12-31 07:43:10 +01:00
|
|
|
|
2005-08-16 01:53:57 +02:00
|
|
|
/*
|
USB: add binary API to usbmon
This patch adds a new, "binary" API in addition to the old, text API usbmon
had before. The new API allows for less CPU use, and it allows to capture
all data from a packet where old API only captured 32 bytes at most. There
are some limitations and conditions to this, e.g. in case someone constructs
a URB with 1GB of data, it's not likely to be captured, because even the
huge buffers of the new reader are finite. Nonetheless, I expect this new
capability to capture all data for all real life scenarios.
The downside is, a special user mode application is required where cat(1)
worked before. I have sample code at http://people.redhat.com/zaitcev/linux/
and Paolo Abeni is working on patching libpcap.
This patch was initially written by Paolo and later I tweaked it, and
we had a little back-and-forth. So this is a jointly authored patch, but
I am submitting this I am responsible for the bugs.
Signed-off-by: Paolo Abeni <paolo.abeni@email.it>
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2006-12-31 07:43:10 +01:00
|
|
|
* DMA interface.
|
|
|
|
*
|
|
|
|
* XXX The vectored side needs a serious re-thinking. Abstracting vectors,
|
|
|
|
* like in Paolo's original patch, produces a double pkmap. We need an idea.
|
|
|
|
*/
|
2005-08-16 01:53:57 +02:00
|
|
|
extern char mon_dmapeek(unsigned char *dst, dma_addr_t dma_addr, int len);
|
|
|
|
|
USB: add binary API to usbmon
This patch adds a new, "binary" API in addition to the old, text API usbmon
had before. The new API allows for less CPU use, and it allows to capture
all data from a packet where old API only captured 32 bytes at most. There
are some limitations and conditions to this, e.g. in case someone constructs
a URB with 1GB of data, it's not likely to be captured, because even the
huge buffers of the new reader are finite. Nonetheless, I expect this new
capability to capture all data for all real life scenarios.
The downside is, a special user mode application is required where cat(1)
worked before. I have sample code at http://people.redhat.com/zaitcev/linux/
and Paolo Abeni is working on patching libpcap.
This patch was initially written by Paolo and later I tweaked it, and
we had a little back-and-forth. So this is a jointly authored patch, but
I am submitting this I am responsible for the bugs.
Signed-off-by: Paolo Abeni <paolo.abeni@email.it>
Signed-off-by: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2006-12-31 07:43:10 +01:00
|
|
|
struct mon_reader_bin;
|
|
|
|
extern void mon_dmapeek_vec(const struct mon_reader_bin *rp,
|
|
|
|
unsigned int offset, dma_addr_t dma_addr, unsigned int len);
|
|
|
|
extern unsigned int mon_copy_to_buff(const struct mon_reader_bin *rp,
|
|
|
|
unsigned int offset, const unsigned char *from, unsigned int len);
|
|
|
|
|
|
|
|
/*
|
|
|
|
*/
|
2006-01-11 15:55:29 +01:00
|
|
|
extern struct mutex mon_lock;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-08-06 01:37:11 +02:00
|
|
|
extern const struct file_operations mon_fops_stat;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#endif /* __USB_MON_H */
|