2 * The USB Monitor, inspired by Dave Harding's USBMon.
4 * This is a binary format reader.
6 * Copyright (C) 2006 Paolo Abeni (paolo.abeni@email.it)
7 * Copyright (C) 2006,2007 Pete Zaitcev (zaitcev@redhat.com)
10 #include <linux/kernel.h>
11 #include <linux/types.h>
13 #include <linux/cdev.h>
14 #include <linux/usb.h>
15 #include <linux/poll.h>
16 #include <linux/compat.h>
18 #include <linux/smp_lock.h>
19 #include <linux/scatterlist.h>
20 #include <linux/slab.h>
22 #include <asm/uaccess.h>
27 * Defined by USB 2.0 clause 9.3, table 9.2.
32 #define MON_IOC_MAGIC 0x92
34 #define MON_IOCQ_URB_LEN _IO(MON_IOC_MAGIC, 1)
35 /* #2 used to be MON_IOCX_URB, removed before it got into Linus tree */
36 #define MON_IOCG_STATS _IOR(MON_IOC_MAGIC, 3, struct mon_bin_stats)
37 #define MON_IOCT_RING_SIZE _IO(MON_IOC_MAGIC, 4)
38 #define MON_IOCQ_RING_SIZE _IO(MON_IOC_MAGIC, 5)
39 #define MON_IOCX_GET _IOW(MON_IOC_MAGIC, 6, struct mon_bin_get)
40 #define MON_IOCX_MFETCH _IOWR(MON_IOC_MAGIC, 7, struct mon_bin_mfetch)
41 #define MON_IOCH_MFLUSH _IO(MON_IOC_MAGIC, 8)
42 /* #9 was MON_IOCT_SETAPI */
43 #define MON_IOCX_GETX _IOW(MON_IOC_MAGIC, 10, struct mon_bin_get)
46 #define MON_IOCX_GET32 _IOW(MON_IOC_MAGIC, 6, struct mon_bin_get32)
47 #define MON_IOCX_MFETCH32 _IOWR(MON_IOC_MAGIC, 7, struct mon_bin_mfetch32)
48 #define MON_IOCX_GETX32 _IOW(MON_IOC_MAGIC, 10, struct mon_bin_get32)
52 * Some architectures have enormous basic pages (16KB for ia64, 64KB for ppc).
53 * But it's all right. Just use a simple way to make sure the chunk is never
54 * smaller than a page.
56 * N.B. An application does not know our chunk size.
58 * Woops, get_zeroed_page() returns a single page. I guess we're stuck with
59 * page-sized chunks for the time being.
61 #define CHUNK_SIZE PAGE_SIZE
62 #define CHUNK_ALIGN(x) (((x)+CHUNK_SIZE-1) & ~(CHUNK_SIZE-1))
65 * The magic limit was calculated so that it allows the monitoring
66 * application to pick data once in two ticks. This way, another application,
67 * which presumably drives the bus, gets to hog CPU, yet we collect our data.
68 * If HZ is 100, a 480 mbit/s bus drives 614 KB every jiffy. USB has an
69 * enormous overhead built into the bus protocol, so we need about 1000 KB.
71 * This is still too much for most cases, where we just snoop a few
72 * descriptor fetches for enumeration. So, the default is a "reasonable"
73 * amount for systems with HZ=250 and incomplete bus saturation.
75 * XXX What about multi-megabyte URBs which take minutes to transfer?
77 #define BUFF_MAX CHUNK_ALIGN(1200*1024)
78 #define BUFF_DFL CHUNK_ALIGN(300*1024)
79 #define BUFF_MIN CHUNK_ALIGN(8*1024)
82 * The per-event API header (2 per URB).
84 * This structure is seen in userland as defined by the documentation.
87 u64 id
; /* URB ID - from submission to callback */
88 unsigned char type
; /* Same as in text API; extensible. */
89 unsigned char xfer_type
; /* ISO, Intr, Control, Bulk */
90 unsigned char epnum
; /* Endpoint number and transfer direction */
91 unsigned char devnum
; /* Device address */
92 unsigned short busnum
; /* Bus number */
95 s64 ts_sec
; /* gettimeofday */
96 s32 ts_usec
; /* gettimeofday */
98 unsigned int len_urb
; /* Length of data (submitted or actual) */
99 unsigned int len_cap
; /* Delivered length */
101 unsigned char setup
[SETUP_LEN
]; /* Only for Control S-type */
109 unsigned int xfer_flags
;
110 unsigned int ndesc
; /* Actual number of ISO descriptors */
114 * ISO vector, packed into the head of data stream.
115 * This has to take 16 bytes to make sure that the end of buffer
116 * wrap is not happening in the middle of a descriptor.
118 struct mon_bin_isodesc
{
120 unsigned int iso_off
;
121 unsigned int iso_len
;
125 /* per file statistic */
126 struct mon_bin_stats
{
132 struct mon_bin_hdr __user
*hdr
; /* Can be 48 bytes or 64. */
134 size_t alloc
; /* Length of data (can be zero) */
137 struct mon_bin_mfetch
{
138 u32 __user
*offvec
; /* Vector of events fetched */
139 u32 nfetch
; /* Number of events to fetch (out: fetched) */
140 u32 nflush
; /* Number of events to flush */
144 struct mon_bin_get32
{
150 struct mon_bin_mfetch32
{
157 /* Having these two values same prevents wrapping of the mon_bin_hdr */
161 #define PKT_SZ_API0 48 /* API 0 (2.6.20) size */
162 #define PKT_SZ_API1 64 /* API 1 size: extra fields */
164 #define ISODESC_MAX 128 /* Same number as usbfs allows, 2048 bytes. */
166 /* max number of USB bus supported */
167 #define MON_BIN_MAX_MINOR 128
170 * The buffer: map of used pages.
174 unsigned char *ptr
; /* XXX just use page_to_virt everywhere? */
178 * This gets associated with an open file struct.
180 struct mon_reader_bin
{
181 /* The buffer: one per open. */
182 spinlock_t b_lock
; /* Protect b_cnt, b_in */
183 unsigned int b_size
; /* Current size of the buffer - bytes */
184 unsigned int b_cnt
; /* Bytes used */
185 unsigned int b_in
, b_out
; /* Offsets into buffer - bytes */
186 unsigned int b_read
; /* Amount of read data in curr. pkt. */
187 struct mon_pgmap
*b_vec
; /* The map array */
188 wait_queue_head_t b_wait
; /* Wait for data here */
190 struct mutex fetch_lock
; /* Protect b_read, b_out */
193 /* A list of these is needed for "bus 0". Some time later. */
197 unsigned int cnt_lost
;
200 static inline struct mon_bin_hdr
*MON_OFF2HDR(const struct mon_reader_bin
*rp
,
203 return (struct mon_bin_hdr
*)
204 (rp
->b_vec
[offset
/ CHUNK_SIZE
].ptr
+ offset
% CHUNK_SIZE
);
207 #define MON_RING_EMPTY(rp) ((rp)->b_cnt == 0)
209 static unsigned char xfer_to_pipe
[4] = {
210 PIPE_CONTROL
, PIPE_ISOCHRONOUS
, PIPE_BULK
, PIPE_INTERRUPT
213 static struct class *mon_bin_class
;
214 static dev_t mon_bin_dev0
;
215 static struct cdev mon_bin_cdev
;
217 static void mon_buff_area_fill(const struct mon_reader_bin
*rp
,
218 unsigned int offset
, unsigned int size
);
219 static int mon_bin_wait_event(struct file
*file
, struct mon_reader_bin
*rp
);
220 static int mon_alloc_buff(struct mon_pgmap
*map
, int npages
);
221 static void mon_free_buff(struct mon_pgmap
*map
, int npages
);
224 * This is a "chunked memcpy". It does not manipulate any counters.
226 static unsigned int mon_copy_to_buff(const struct mon_reader_bin
*this,
227 unsigned int off
, const unsigned char *from
, unsigned int length
)
229 unsigned int step_len
;
231 unsigned int in_page
;
235 * Determine step_len.
238 in_page
= CHUNK_SIZE
- (off
& (CHUNK_SIZE
-1));
239 if (in_page
< step_len
)
243 * Copy data and advance pointers.
245 buf
= this->b_vec
[off
/ CHUNK_SIZE
].ptr
+ off
% CHUNK_SIZE
;
246 memcpy(buf
, from
, step_len
);
247 if ((off
+= step_len
) >= this->b_size
) off
= 0;
255 * This is a little worse than the above because it's "chunked copy_to_user".
256 * The return value is an error code, not an offset.
258 static int copy_from_buf(const struct mon_reader_bin
*this, unsigned int off
,
259 char __user
*to
, int length
)
261 unsigned int step_len
;
263 unsigned int in_page
;
267 * Determine step_len.
270 in_page
= CHUNK_SIZE
- (off
& (CHUNK_SIZE
-1));
271 if (in_page
< step_len
)
275 * Copy data and advance pointers.
277 buf
= this->b_vec
[off
/ CHUNK_SIZE
].ptr
+ off
% CHUNK_SIZE
;
278 if (copy_to_user(to
, buf
, step_len
))
280 if ((off
+= step_len
) >= this->b_size
) off
= 0;
288 * Allocate an (aligned) area in the buffer.
289 * This is called under b_lock.
290 * Returns ~0 on failure.
292 static unsigned int mon_buff_area_alloc(struct mon_reader_bin
*rp
,
297 size
= (size
+ PKT_ALIGN
-1) & ~(PKT_ALIGN
-1);
298 if (rp
->b_cnt
+ size
> rp
->b_size
)
302 if ((rp
->b_in
+= size
) >= rp
->b_size
)
303 rp
->b_in
-= rp
->b_size
;
308 * This is the same thing as mon_buff_area_alloc, only it does not allow
309 * buffers to wrap. This is needed by applications which pass references
310 * into mmap-ed buffers up their stacks (libpcap can do that).
312 * Currently, we always have the header stuck with the data, although
313 * it is not strictly speaking necessary.
315 * When a buffer would wrap, we place a filler packet to mark the space.
317 static unsigned int mon_buff_area_alloc_contiguous(struct mon_reader_bin
*rp
,
321 unsigned int fill_size
;
323 size
= (size
+ PKT_ALIGN
-1) & ~(PKT_ALIGN
-1);
324 if (rp
->b_cnt
+ size
> rp
->b_size
)
326 if (rp
->b_in
+ size
> rp
->b_size
) {
328 * This would wrap. Find if we still have space after
329 * skipping to the end of the buffer. If we do, place
330 * a filler packet and allocate a new packet.
332 fill_size
= rp
->b_size
- rp
->b_in
;
333 if (rp
->b_cnt
+ size
+ fill_size
> rp
->b_size
)
335 mon_buff_area_fill(rp
, rp
->b_in
, fill_size
);
339 rp
->b_cnt
+= size
+ fill_size
;
340 } else if (rp
->b_in
+ size
== rp
->b_size
) {
353 * Return a few (kilo-)bytes to the head of the buffer.
354 * This is used if a data fetch fails.
356 static void mon_buff_area_shrink(struct mon_reader_bin
*rp
, unsigned int size
)
359 /* size &= ~(PKT_ALIGN-1); -- we're called with aligned size */
362 rp
->b_in
+= rp
->b_size
;
367 * This has to be called under both b_lock and fetch_lock, because
368 * it accesses both b_cnt and b_out.
370 static void mon_buff_area_free(struct mon_reader_bin
*rp
, unsigned int size
)
373 size
= (size
+ PKT_ALIGN
-1) & ~(PKT_ALIGN
-1);
375 if ((rp
->b_out
+= size
) >= rp
->b_size
)
376 rp
->b_out
-= rp
->b_size
;
379 static void mon_buff_area_fill(const struct mon_reader_bin
*rp
,
380 unsigned int offset
, unsigned int size
)
382 struct mon_bin_hdr
*ep
;
384 ep
= MON_OFF2HDR(rp
, offset
);
385 memset(ep
, 0, PKT_SIZE
);
387 ep
->len_cap
= size
- PKT_SIZE
;
390 static inline char mon_bin_get_setup(unsigned char *setupb
,
391 const struct urb
*urb
, char ev_type
)
394 if (urb
->setup_packet
== NULL
)
396 memcpy(setupb
, urb
->setup_packet
, SETUP_LEN
);
400 static unsigned int mon_bin_get_data(const struct mon_reader_bin
*rp
,
401 unsigned int offset
, struct urb
*urb
, unsigned int length
,
405 struct scatterlist
*sg
;
406 unsigned int this_len
;
409 if (urb
->num_sgs
== 0) {
410 if (urb
->transfer_buffer
== NULL
) {
414 mon_copy_to_buff(rp
, offset
, urb
->transfer_buffer
, length
);
418 /* If IOMMU coalescing occurred, we cannot trust sg_page */
419 if (urb
->transfer_flags
& URB_DMA_SG_COMBINED
) {
424 /* Copy up to the first non-addressable segment */
425 for_each_sg(urb
->sg
, sg
, urb
->num_sgs
, i
) {
426 if (length
== 0 || PageHighMem(sg_page(sg
)))
428 this_len
= min_t(unsigned int, sg
->length
, length
);
429 offset
= mon_copy_to_buff(rp
, offset
, sg_virt(sg
),
440 static void mon_bin_get_isodesc(const struct mon_reader_bin
*rp
,
441 unsigned int offset
, struct urb
*urb
, char ev_type
, unsigned int ndesc
)
443 struct mon_bin_isodesc
*dp
;
444 struct usb_iso_packet_descriptor
*fp
;
446 fp
= urb
->iso_frame_desc
;
447 while (ndesc
-- != 0) {
448 dp
= (struct mon_bin_isodesc
*)
449 (rp
->b_vec
[offset
/ CHUNK_SIZE
].ptr
+ offset
% CHUNK_SIZE
);
450 dp
->iso_status
= fp
->status
;
451 dp
->iso_off
= fp
->offset
;
452 dp
->iso_len
= (ev_type
== 'S') ? fp
->length
: fp
->actual_length
;
454 if ((offset
+= sizeof(struct mon_bin_isodesc
)) >= rp
->b_size
)
460 static void mon_bin_event(struct mon_reader_bin
*rp
, struct urb
*urb
,
461 char ev_type
, int status
)
463 const struct usb_endpoint_descriptor
*epd
= &urb
->ep
->desc
;
466 unsigned int urb_length
;
470 unsigned int ndesc
, lendesc
;
472 struct mon_bin_hdr
*ep
;
475 do_gettimeofday(&ts
);
477 spin_lock_irqsave(&rp
->b_lock
, flags
);
480 * Find the maximum allowable length, then allocate space.
482 if (usb_endpoint_xfer_isoc(epd
)) {
483 if (urb
->number_of_packets
< 0) {
485 } else if (urb
->number_of_packets
>= ISODESC_MAX
) {
488 ndesc
= urb
->number_of_packets
;
493 lendesc
= ndesc
*sizeof(struct mon_bin_isodesc
);
495 urb_length
= (ev_type
== 'S') ?
496 urb
->transfer_buffer_length
: urb
->actual_length
;
499 if (length
>= rp
->b_size
/5)
500 length
= rp
->b_size
/5;
502 if (usb_urb_dir_in(urb
)) {
503 if (ev_type
== 'S') {
507 /* Cannot rely on endpoint number in case of control ep.0 */
510 if (ev_type
== 'C') {
517 if (rp
->mmap_active
) {
518 offset
= mon_buff_area_alloc_contiguous(rp
,
519 length
+ PKT_SIZE
+ lendesc
);
521 offset
= mon_buff_area_alloc(rp
, length
+ PKT_SIZE
+ lendesc
);
525 spin_unlock_irqrestore(&rp
->b_lock
, flags
);
529 ep
= MON_OFF2HDR(rp
, offset
);
530 if ((offset
+= PKT_SIZE
) >= rp
->b_size
) offset
= 0;
533 * Fill the allocated area.
535 memset(ep
, 0, PKT_SIZE
);
537 ep
->xfer_type
= xfer_to_pipe
[usb_endpoint_type(epd
)];
538 ep
->epnum
= dir
| usb_endpoint_num(epd
);
539 ep
->devnum
= urb
->dev
->devnum
;
540 ep
->busnum
= urb
->dev
->bus
->busnum
;
541 ep
->id
= (unsigned long) urb
;
542 ep
->ts_sec
= ts
.tv_sec
;
543 ep
->ts_usec
= ts
.tv_usec
;
545 ep
->len_urb
= urb_length
;
546 ep
->len_cap
= length
+ lendesc
;
547 ep
->xfer_flags
= urb
->transfer_flags
;
549 if (usb_endpoint_xfer_int(epd
)) {
550 ep
->interval
= urb
->interval
;
551 } else if (usb_endpoint_xfer_isoc(epd
)) {
552 ep
->interval
= urb
->interval
;
553 ep
->start_frame
= urb
->start_frame
;
554 ep
->s
.iso
.error_count
= urb
->error_count
;
555 ep
->s
.iso
.numdesc
= urb
->number_of_packets
;
558 if (usb_endpoint_xfer_control(epd
) && ev_type
== 'S') {
559 ep
->flag_setup
= mon_bin_get_setup(ep
->s
.setup
, urb
, ev_type
);
561 ep
->flag_setup
= '-';
566 mon_bin_get_isodesc(rp
, offset
, urb
, ev_type
, ndesc
);
567 if ((offset
+= lendesc
) >= rp
->b_size
)
568 offset
-= rp
->b_size
;
572 length
= mon_bin_get_data(rp
, offset
, urb
, length
,
575 delta
= (ep
->len_cap
+ PKT_ALIGN
-1) & ~(PKT_ALIGN
-1);
576 ep
->len_cap
-= length
;
577 delta
-= (ep
->len_cap
+ PKT_ALIGN
-1) & ~(PKT_ALIGN
-1);
578 mon_buff_area_shrink(rp
, delta
);
581 ep
->flag_data
= data_tag
;
584 spin_unlock_irqrestore(&rp
->b_lock
, flags
);
586 wake_up(&rp
->b_wait
);
589 static void mon_bin_submit(void *data
, struct urb
*urb
)
591 struct mon_reader_bin
*rp
= data
;
592 mon_bin_event(rp
, urb
, 'S', -EINPROGRESS
);
595 static void mon_bin_complete(void *data
, struct urb
*urb
, int status
)
597 struct mon_reader_bin
*rp
= data
;
598 mon_bin_event(rp
, urb
, 'C', status
);
601 static void mon_bin_error(void *data
, struct urb
*urb
, int error
)
603 struct mon_reader_bin
*rp
= data
;
607 struct mon_bin_hdr
*ep
;
609 do_gettimeofday(&ts
);
611 spin_lock_irqsave(&rp
->b_lock
, flags
);
613 offset
= mon_buff_area_alloc(rp
, PKT_SIZE
);
615 /* Not incrementing cnt_lost. Just because. */
616 spin_unlock_irqrestore(&rp
->b_lock
, flags
);
620 ep
= MON_OFF2HDR(rp
, offset
);
622 memset(ep
, 0, PKT_SIZE
);
624 ep
->xfer_type
= xfer_to_pipe
[usb_endpoint_type(&urb
->ep
->desc
)];
625 ep
->epnum
= usb_urb_dir_in(urb
) ? USB_DIR_IN
: 0;
626 ep
->epnum
|= usb_endpoint_num(&urb
->ep
->desc
);
627 ep
->devnum
= urb
->dev
->devnum
;
628 ep
->busnum
= urb
->dev
->bus
->busnum
;
629 ep
->id
= (unsigned long) urb
;
630 ep
->ts_sec
= ts
.tv_sec
;
631 ep
->ts_usec
= ts
.tv_usec
;
634 ep
->flag_setup
= '-';
637 spin_unlock_irqrestore(&rp
->b_lock
, flags
);
639 wake_up(&rp
->b_wait
);
642 static int mon_bin_open(struct inode
*inode
, struct file
*file
)
644 struct mon_bus
*mbus
;
645 struct mon_reader_bin
*rp
;
650 mutex_lock(&mon_lock
);
651 if ((mbus
= mon_bus_lookup(iminor(inode
))) == NULL
) {
652 mutex_unlock(&mon_lock
);
656 if (mbus
!= &mon_bus0
&& mbus
->u_bus
== NULL
) {
657 printk(KERN_ERR TAG
": consistency error on open\n");
658 mutex_unlock(&mon_lock
);
663 rp
= kzalloc(sizeof(struct mon_reader_bin
), GFP_KERNEL
);
668 spin_lock_init(&rp
->b_lock
);
669 init_waitqueue_head(&rp
->b_wait
);
670 mutex_init(&rp
->fetch_lock
);
671 rp
->b_size
= BUFF_DFL
;
673 size
= sizeof(struct mon_pgmap
) * (rp
->b_size
/CHUNK_SIZE
);
674 if ((rp
->b_vec
= kzalloc(size
, GFP_KERNEL
)) == NULL
) {
679 if ((rc
= mon_alloc_buff(rp
->b_vec
, rp
->b_size
/CHUNK_SIZE
)) < 0)
684 rp
->r
.rnf_submit
= mon_bin_submit
;
685 rp
->r
.rnf_error
= mon_bin_error
;
686 rp
->r
.rnf_complete
= mon_bin_complete
;
688 mon_reader_add(mbus
, &rp
->r
);
690 file
->private_data
= rp
;
691 mutex_unlock(&mon_lock
);
700 mutex_unlock(&mon_lock
);
706 * Extract an event from buffer and copy it to user space.
707 * Wait if there is no event ready.
708 * Returns zero or error.
710 static int mon_bin_get_event(struct file
*file
, struct mon_reader_bin
*rp
,
711 struct mon_bin_hdr __user
*hdr
, unsigned int hdrbytes
,
712 void __user
*data
, unsigned int nbytes
)
715 struct mon_bin_hdr
*ep
;
720 mutex_lock(&rp
->fetch_lock
);
722 if ((rc
= mon_bin_wait_event(file
, rp
)) < 0) {
723 mutex_unlock(&rp
->fetch_lock
);
727 ep
= MON_OFF2HDR(rp
, rp
->b_out
);
729 if (copy_to_user(hdr
, ep
, hdrbytes
)) {
730 mutex_unlock(&rp
->fetch_lock
);
734 step_len
= min(ep
->len_cap
, nbytes
);
735 if ((offset
= rp
->b_out
+ PKT_SIZE
) >= rp
->b_size
) offset
= 0;
737 if (copy_from_buf(rp
, offset
, data
, step_len
)) {
738 mutex_unlock(&rp
->fetch_lock
);
742 spin_lock_irqsave(&rp
->b_lock
, flags
);
743 mon_buff_area_free(rp
, PKT_SIZE
+ ep
->len_cap
);
744 spin_unlock_irqrestore(&rp
->b_lock
, flags
);
747 mutex_unlock(&rp
->fetch_lock
);
751 static int mon_bin_release(struct inode
*inode
, struct file
*file
)
753 struct mon_reader_bin
*rp
= file
->private_data
;
754 struct mon_bus
* mbus
= rp
->r
.m_bus
;
756 mutex_lock(&mon_lock
);
758 if (mbus
->nreaders
<= 0) {
759 printk(KERN_ERR TAG
": consistency error on close\n");
760 mutex_unlock(&mon_lock
);
763 mon_reader_del(mbus
, &rp
->r
);
765 mon_free_buff(rp
->b_vec
, rp
->b_size
/CHUNK_SIZE
);
769 mutex_unlock(&mon_lock
);
773 static ssize_t
mon_bin_read(struct file
*file
, char __user
*buf
,
774 size_t nbytes
, loff_t
*ppos
)
776 struct mon_reader_bin
*rp
= file
->private_data
;
777 unsigned int hdrbytes
= PKT_SZ_API0
;
779 struct mon_bin_hdr
*ep
;
786 mutex_lock(&rp
->fetch_lock
);
788 if ((rc
= mon_bin_wait_event(file
, rp
)) < 0) {
789 mutex_unlock(&rp
->fetch_lock
);
793 ep
= MON_OFF2HDR(rp
, rp
->b_out
);
795 if (rp
->b_read
< hdrbytes
) {
796 step_len
= min(nbytes
, (size_t)(hdrbytes
- rp
->b_read
));
797 ptr
= ((char *)ep
) + rp
->b_read
;
798 if (step_len
&& copy_to_user(buf
, ptr
, step_len
)) {
799 mutex_unlock(&rp
->fetch_lock
);
804 rp
->b_read
+= step_len
;
808 if (rp
->b_read
>= hdrbytes
) {
809 step_len
= ep
->len_cap
;
810 step_len
-= rp
->b_read
- hdrbytes
;
811 if (step_len
> nbytes
)
813 offset
= rp
->b_out
+ PKT_SIZE
;
814 offset
+= rp
->b_read
- hdrbytes
;
815 if (offset
>= rp
->b_size
)
816 offset
-= rp
->b_size
;
817 if (copy_from_buf(rp
, offset
, buf
, step_len
)) {
818 mutex_unlock(&rp
->fetch_lock
);
823 rp
->b_read
+= step_len
;
828 * Check if whole packet was read, and if so, jump to the next one.
830 if (rp
->b_read
>= hdrbytes
+ ep
->len_cap
) {
831 spin_lock_irqsave(&rp
->b_lock
, flags
);
832 mon_buff_area_free(rp
, PKT_SIZE
+ ep
->len_cap
);
833 spin_unlock_irqrestore(&rp
->b_lock
, flags
);
837 mutex_unlock(&rp
->fetch_lock
);
842 * Remove at most nevents from chunked buffer.
843 * Returns the number of removed events.
845 static int mon_bin_flush(struct mon_reader_bin
*rp
, unsigned nevents
)
848 struct mon_bin_hdr
*ep
;
851 mutex_lock(&rp
->fetch_lock
);
852 spin_lock_irqsave(&rp
->b_lock
, flags
);
853 for (i
= 0; i
< nevents
; ++i
) {
854 if (MON_RING_EMPTY(rp
))
857 ep
= MON_OFF2HDR(rp
, rp
->b_out
);
858 mon_buff_area_free(rp
, PKT_SIZE
+ ep
->len_cap
);
860 spin_unlock_irqrestore(&rp
->b_lock
, flags
);
862 mutex_unlock(&rp
->fetch_lock
);
867 * Fetch at most max event offsets into the buffer and put them into vec.
868 * The events are usually freed later with mon_bin_flush.
869 * Return the effective number of events fetched.
871 static int mon_bin_fetch(struct file
*file
, struct mon_reader_bin
*rp
,
872 u32 __user
*vec
, unsigned int max
)
874 unsigned int cur_out
;
875 unsigned int bytes
, avail
;
877 unsigned int nevents
;
878 struct mon_bin_hdr
*ep
;
882 mutex_lock(&rp
->fetch_lock
);
884 if ((rc
= mon_bin_wait_event(file
, rp
)) < 0) {
885 mutex_unlock(&rp
->fetch_lock
);
889 spin_lock_irqsave(&rp
->b_lock
, flags
);
891 spin_unlock_irqrestore(&rp
->b_lock
, flags
);
896 while (bytes
< avail
) {
900 ep
= MON_OFF2HDR(rp
, cur_out
);
901 if (put_user(cur_out
, &vec
[nevents
])) {
902 mutex_unlock(&rp
->fetch_lock
);
907 size
= ep
->len_cap
+ PKT_SIZE
;
908 size
= (size
+ PKT_ALIGN
-1) & ~(PKT_ALIGN
-1);
909 if ((cur_out
+= size
) >= rp
->b_size
)
910 cur_out
-= rp
->b_size
;
914 mutex_unlock(&rp
->fetch_lock
);
919 * Count events. This is almost the same as the above mon_bin_fetch,
920 * only we do not store offsets into user vector, and we have no limit.
922 static int mon_bin_queued(struct mon_reader_bin
*rp
)
924 unsigned int cur_out
;
925 unsigned int bytes
, avail
;
927 unsigned int nevents
;
928 struct mon_bin_hdr
*ep
;
931 mutex_lock(&rp
->fetch_lock
);
933 spin_lock_irqsave(&rp
->b_lock
, flags
);
935 spin_unlock_irqrestore(&rp
->b_lock
, flags
);
940 while (bytes
< avail
) {
941 ep
= MON_OFF2HDR(rp
, cur_out
);
944 size
= ep
->len_cap
+ PKT_SIZE
;
945 size
= (size
+ PKT_ALIGN
-1) & ~(PKT_ALIGN
-1);
946 if ((cur_out
+= size
) >= rp
->b_size
)
947 cur_out
-= rp
->b_size
;
951 mutex_unlock(&rp
->fetch_lock
);
957 static int mon_bin_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
959 struct mon_reader_bin
*rp
= file
->private_data
;
960 // struct mon_bus* mbus = rp->r.m_bus;
962 struct mon_bin_hdr
*ep
;
967 case MON_IOCQ_URB_LEN
:
969 * N.B. This only returns the size of data, without the header.
971 spin_lock_irqsave(&rp
->b_lock
, flags
);
972 if (!MON_RING_EMPTY(rp
)) {
973 ep
= MON_OFF2HDR(rp
, rp
->b_out
);
976 spin_unlock_irqrestore(&rp
->b_lock
, flags
);
979 case MON_IOCQ_RING_SIZE
:
983 case MON_IOCT_RING_SIZE
:
985 * Changing the buffer size will flush it's contents; the new
986 * buffer is allocated before releasing the old one to be sure
987 * the device will stay functional also in case of memory
992 struct mon_pgmap
*vec
;
994 if (arg
< BUFF_MIN
|| arg
> BUFF_MAX
)
997 size
= CHUNK_ALIGN(arg
);
998 if ((vec
= kzalloc(sizeof(struct mon_pgmap
) * (size
/CHUNK_SIZE
),
999 GFP_KERNEL
)) == NULL
) {
1004 ret
= mon_alloc_buff(vec
, size
/CHUNK_SIZE
);
1010 mutex_lock(&rp
->fetch_lock
);
1011 spin_lock_irqsave(&rp
->b_lock
, flags
);
1012 mon_free_buff(rp
->b_vec
, size
/CHUNK_SIZE
);
1016 rp
->b_read
= rp
->b_in
= rp
->b_out
= rp
->b_cnt
= 0;
1018 spin_unlock_irqrestore(&rp
->b_lock
, flags
);
1019 mutex_unlock(&rp
->fetch_lock
);
1023 case MON_IOCH_MFLUSH
:
1024 ret
= mon_bin_flush(rp
, arg
);
1030 struct mon_bin_get getb
;
1032 if (copy_from_user(&getb
, (void __user
*)arg
,
1033 sizeof(struct mon_bin_get
)))
1036 if (getb
.alloc
> 0x10000000) /* Want to cast to u32 */
1038 ret
= mon_bin_get_event(file
, rp
, getb
.hdr
,
1039 (cmd
== MON_IOCX_GET
)? PKT_SZ_API0
: PKT_SZ_API1
,
1040 getb
.data
, (unsigned int)getb
.alloc
);
1044 case MON_IOCX_MFETCH
:
1046 struct mon_bin_mfetch mfetch
;
1047 struct mon_bin_mfetch __user
*uptr
;
1049 uptr
= (struct mon_bin_mfetch __user
*)arg
;
1051 if (copy_from_user(&mfetch
, uptr
, sizeof(mfetch
)))
1054 if (mfetch
.nflush
) {
1055 ret
= mon_bin_flush(rp
, mfetch
.nflush
);
1058 if (put_user(ret
, &uptr
->nflush
))
1061 ret
= mon_bin_fetch(file
, rp
, mfetch
.offvec
, mfetch
.nfetch
);
1064 if (put_user(ret
, &uptr
->nfetch
))
1070 case MON_IOCG_STATS
: {
1071 struct mon_bin_stats __user
*sp
;
1072 unsigned int nevents
;
1073 unsigned int ndropped
;
1075 spin_lock_irqsave(&rp
->b_lock
, flags
);
1076 ndropped
= rp
->cnt_lost
;
1078 spin_unlock_irqrestore(&rp
->b_lock
, flags
);
1079 nevents
= mon_bin_queued(rp
);
1081 sp
= (struct mon_bin_stats __user
*)arg
;
1082 if (put_user(rp
->cnt_lost
, &sp
->dropped
))
1084 if (put_user(nevents
, &sp
->queued
))
1097 static long mon_bin_unlocked_ioctl(struct file
*file
, unsigned int cmd
,
1103 ret
= mon_bin_ioctl(file
, cmd
, arg
);
1110 #ifdef CONFIG_COMPAT
1111 static long mon_bin_compat_ioctl(struct file
*file
,
1112 unsigned int cmd
, unsigned long arg
)
1114 struct mon_reader_bin
*rp
= file
->private_data
;
1119 case MON_IOCX_GET32
:
1120 case MON_IOCX_GETX32
:
1122 struct mon_bin_get32 getb
;
1124 if (copy_from_user(&getb
, (void __user
*)arg
,
1125 sizeof(struct mon_bin_get32
)))
1128 ret
= mon_bin_get_event(file
, rp
, compat_ptr(getb
.hdr32
),
1129 (cmd
== MON_IOCX_GET32
)? PKT_SZ_API0
: PKT_SZ_API1
,
1130 compat_ptr(getb
.data32
), getb
.alloc32
);
1136 case MON_IOCX_MFETCH32
:
1138 struct mon_bin_mfetch32 mfetch
;
1139 struct mon_bin_mfetch32 __user
*uptr
;
1141 uptr
= (struct mon_bin_mfetch32 __user
*) compat_ptr(arg
);
1143 if (copy_from_user(&mfetch
, uptr
, sizeof(mfetch
)))
1146 if (mfetch
.nflush32
) {
1147 ret
= mon_bin_flush(rp
, mfetch
.nflush32
);
1150 if (put_user(ret
, &uptr
->nflush32
))
1153 ret
= mon_bin_fetch(file
, rp
, compat_ptr(mfetch
.offvec32
),
1157 if (put_user(ret
, &uptr
->nfetch32
))
1162 case MON_IOCG_STATS
:
1163 return mon_bin_ioctl(file
, cmd
, (unsigned long) compat_ptr(arg
));
1165 case MON_IOCQ_URB_LEN
:
1166 case MON_IOCQ_RING_SIZE
:
1167 case MON_IOCT_RING_SIZE
:
1168 case MON_IOCH_MFLUSH
:
1169 return mon_bin_ioctl(file
, cmd
, arg
);
1176 #endif /* CONFIG_COMPAT */
1179 mon_bin_poll(struct file
*file
, struct poll_table_struct
*wait
)
1181 struct mon_reader_bin
*rp
= file
->private_data
;
1182 unsigned int mask
= 0;
1183 unsigned long flags
;
1185 if (file
->f_mode
& FMODE_READ
)
1186 poll_wait(file
, &rp
->b_wait
, wait
);
1188 spin_lock_irqsave(&rp
->b_lock
, flags
);
1189 if (!MON_RING_EMPTY(rp
))
1190 mask
|= POLLIN
| POLLRDNORM
; /* readable */
1191 spin_unlock_irqrestore(&rp
->b_lock
, flags
);
1196 * open and close: just keep track of how many times the device is
1197 * mapped, to use the proper memory allocation function.
1199 static void mon_bin_vma_open(struct vm_area_struct
*vma
)
1201 struct mon_reader_bin
*rp
= vma
->vm_private_data
;
1205 static void mon_bin_vma_close(struct vm_area_struct
*vma
)
1207 struct mon_reader_bin
*rp
= vma
->vm_private_data
;
1212 * Map ring pages to user space.
1214 static int mon_bin_vma_fault(struct vm_area_struct
*vma
, struct vm_fault
*vmf
)
1216 struct mon_reader_bin
*rp
= vma
->vm_private_data
;
1217 unsigned long offset
, chunk_idx
;
1218 struct page
*pageptr
;
1220 offset
= vmf
->pgoff
<< PAGE_SHIFT
;
1221 if (offset
>= rp
->b_size
)
1222 return VM_FAULT_SIGBUS
;
1223 chunk_idx
= offset
/ CHUNK_SIZE
;
1224 pageptr
= rp
->b_vec
[chunk_idx
].pg
;
1226 vmf
->page
= pageptr
;
1230 static const struct vm_operations_struct mon_bin_vm_ops
= {
1231 .open
= mon_bin_vma_open
,
1232 .close
= mon_bin_vma_close
,
1233 .fault
= mon_bin_vma_fault
,
1236 static int mon_bin_mmap(struct file
*filp
, struct vm_area_struct
*vma
)
1238 /* don't do anything here: "fault" will set up page table entries */
1239 vma
->vm_ops
= &mon_bin_vm_ops
;
1240 vma
->vm_flags
|= VM_RESERVED
;
1241 vma
->vm_private_data
= filp
->private_data
;
1242 mon_bin_vma_open(vma
);
1246 static const struct file_operations mon_fops_binary
= {
1247 .owner
= THIS_MODULE
,
1248 .open
= mon_bin_open
,
1249 .llseek
= no_llseek
,
1250 .read
= mon_bin_read
,
1251 /* .write = mon_text_write, */
1252 .poll
= mon_bin_poll
,
1253 .unlocked_ioctl
= mon_bin_unlocked_ioctl
,
1254 #ifdef CONFIG_COMPAT
1255 .compat_ioctl
= mon_bin_compat_ioctl
,
1257 .release
= mon_bin_release
,
1258 .mmap
= mon_bin_mmap
,
1261 static int mon_bin_wait_event(struct file
*file
, struct mon_reader_bin
*rp
)
1263 DECLARE_WAITQUEUE(waita
, current
);
1264 unsigned long flags
;
1266 add_wait_queue(&rp
->b_wait
, &waita
);
1267 set_current_state(TASK_INTERRUPTIBLE
);
1269 spin_lock_irqsave(&rp
->b_lock
, flags
);
1270 while (MON_RING_EMPTY(rp
)) {
1271 spin_unlock_irqrestore(&rp
->b_lock
, flags
);
1273 if (file
->f_flags
& O_NONBLOCK
) {
1274 set_current_state(TASK_RUNNING
);
1275 remove_wait_queue(&rp
->b_wait
, &waita
);
1276 return -EWOULDBLOCK
; /* Same as EAGAIN in Linux */
1279 if (signal_pending(current
)) {
1280 remove_wait_queue(&rp
->b_wait
, &waita
);
1283 set_current_state(TASK_INTERRUPTIBLE
);
1285 spin_lock_irqsave(&rp
->b_lock
, flags
);
1287 spin_unlock_irqrestore(&rp
->b_lock
, flags
);
1289 set_current_state(TASK_RUNNING
);
1290 remove_wait_queue(&rp
->b_wait
, &waita
);
1294 static int mon_alloc_buff(struct mon_pgmap
*map
, int npages
)
1297 unsigned long vaddr
;
1299 for (n
= 0; n
< npages
; n
++) {
1300 vaddr
= get_zeroed_page(GFP_KERNEL
);
1303 free_page((unsigned long) map
[n
].ptr
);
1306 map
[n
].ptr
= (unsigned char *) vaddr
;
1307 map
[n
].pg
= virt_to_page((void *) vaddr
);
1312 static void mon_free_buff(struct mon_pgmap
*map
, int npages
)
1316 for (n
= 0; n
< npages
; n
++)
1317 free_page((unsigned long) map
[n
].ptr
);
1320 int mon_bin_add(struct mon_bus
*mbus
, const struct usb_bus
*ubus
)
1323 unsigned minor
= ubus
? ubus
->busnum
: 0;
1325 if (minor
>= MON_BIN_MAX_MINOR
)
1328 dev
= device_create(mon_bin_class
, ubus
? ubus
->controller
: NULL
,
1329 MKDEV(MAJOR(mon_bin_dev0
), minor
), NULL
,
1334 mbus
->classdev
= dev
;
1338 void mon_bin_del(struct mon_bus
*mbus
)
1340 device_destroy(mon_bin_class
, mbus
->classdev
->devt
);
1343 int __init
mon_bin_init(void)
1347 mon_bin_class
= class_create(THIS_MODULE
, "usbmon");
1348 if (IS_ERR(mon_bin_class
)) {
1349 rc
= PTR_ERR(mon_bin_class
);
1353 rc
= alloc_chrdev_region(&mon_bin_dev0
, 0, MON_BIN_MAX_MINOR
, "usbmon");
1357 cdev_init(&mon_bin_cdev
, &mon_fops_binary
);
1358 mon_bin_cdev
.owner
= THIS_MODULE
;
1360 rc
= cdev_add(&mon_bin_cdev
, mon_bin_dev0
, MON_BIN_MAX_MINOR
);
1367 unregister_chrdev_region(mon_bin_dev0
, MON_BIN_MAX_MINOR
);
1369 class_destroy(mon_bin_class
);
1374 void mon_bin_exit(void)
1376 cdev_del(&mon_bin_cdev
);
1377 unregister_chrdev_region(mon_bin_dev0
, MON_BIN_MAX_MINOR
);
1378 class_destroy(mon_bin_class
);