2 * The USB Monitor, inspired by Dave Harding's USBMon.
4 * mon_main.c: Main file, module initiation and exit, registrations, etc.
6 * Copyright (C) 2005 Pete Zaitcev (zaitcev@redhat.com)
9 #include <linux/kernel.h>
10 #include <linux/module.h>
11 #include <linux/usb.h>
12 #include <linux/usb/hcd.h>
13 #include <linux/slab.h>
14 #include <linux/notifier.h>
15 #include <linux/mutex.h>
20 static void mon_stop(struct mon_bus
*mbus
);
21 static void mon_dissolve(struct mon_bus
*mbus
, struct usb_bus
*ubus
);
22 static void mon_bus_drop(struct kref
*r
);
23 static void mon_bus_init(struct usb_bus
*ubus
);
25 DEFINE_MUTEX(mon_lock
);
27 struct mon_bus mon_bus0
; /* Pseudo bus meaning "all buses" */
28 static LIST_HEAD(mon_buses
); /* All buses we know: struct mon_bus */
31 * Link a reader into the bus.
33 * This must be called with mon_lock taken because of mbus->ref.
35 void mon_reader_add(struct mon_bus
*mbus
, struct mon_reader
*r
)
40 spin_lock_irqsave(&mbus
->lock
, flags
);
41 if (mbus
->nreaders
== 0) {
42 if (mbus
== &mon_bus0
) {
43 list_for_each (p
, &mon_buses
) {
45 m1
= list_entry(p
, struct mon_bus
, bus_link
);
46 m1
->u_bus
->monitored
= 1;
49 mbus
->u_bus
->monitored
= 1;
53 list_add_tail(&r
->r_link
, &mbus
->r_list
);
54 spin_unlock_irqrestore(&mbus
->lock
, flags
);
60 * Unlink reader from the bus.
62 * This is called with mon_lock taken, so we can decrement mbus->ref.
64 void mon_reader_del(struct mon_bus
*mbus
, struct mon_reader
*r
)
68 spin_lock_irqsave(&mbus
->lock
, flags
);
71 if (mbus
->nreaders
== 0)
73 spin_unlock_irqrestore(&mbus
->lock
, flags
);
75 kref_put(&mbus
->ref
, mon_bus_drop
);
80 static void mon_bus_submit(struct mon_bus
*mbus
, struct urb
*urb
)
83 struct list_head
*pos
;
86 spin_lock_irqsave(&mbus
->lock
, flags
);
88 list_for_each (pos
, &mbus
->r_list
) {
89 r
= list_entry(pos
, struct mon_reader
, r_link
);
90 r
->rnf_submit(r
->r_data
, urb
);
92 spin_unlock_irqrestore(&mbus
->lock
, flags
);
95 static void mon_submit(struct usb_bus
*ubus
, struct urb
*urb
)
99 if ((mbus
= ubus
->mon_bus
) != NULL
)
100 mon_bus_submit(mbus
, urb
);
101 mon_bus_submit(&mon_bus0
, urb
);
106 static void mon_bus_submit_error(struct mon_bus
*mbus
, struct urb
*urb
, int error
)
109 struct list_head
*pos
;
110 struct mon_reader
*r
;
112 spin_lock_irqsave(&mbus
->lock
, flags
);
114 list_for_each (pos
, &mbus
->r_list
) {
115 r
= list_entry(pos
, struct mon_reader
, r_link
);
116 r
->rnf_error(r
->r_data
, urb
, error
);
118 spin_unlock_irqrestore(&mbus
->lock
, flags
);
121 static void mon_submit_error(struct usb_bus
*ubus
, struct urb
*urb
, int error
)
123 struct mon_bus
*mbus
;
125 if ((mbus
= ubus
->mon_bus
) != NULL
)
126 mon_bus_submit_error(mbus
, urb
, error
);
127 mon_bus_submit_error(&mon_bus0
, urb
, error
);
132 static void mon_bus_complete(struct mon_bus
*mbus
, struct urb
*urb
, int status
)
135 struct list_head
*pos
;
136 struct mon_reader
*r
;
138 spin_lock_irqsave(&mbus
->lock
, flags
);
140 list_for_each (pos
, &mbus
->r_list
) {
141 r
= list_entry(pos
, struct mon_reader
, r_link
);
142 r
->rnf_complete(r
->r_data
, urb
, status
);
144 spin_unlock_irqrestore(&mbus
->lock
, flags
);
147 static void mon_complete(struct usb_bus
*ubus
, struct urb
*urb
, int status
)
149 struct mon_bus
*mbus
;
151 if ((mbus
= ubus
->mon_bus
) != NULL
)
152 mon_bus_complete(mbus
, urb
, status
);
153 mon_bus_complete(&mon_bus0
, urb
, status
);
156 /* int (*unlink_urb) (struct urb *urb, int status); */
161 static void mon_stop(struct mon_bus
*mbus
)
163 struct usb_bus
*ubus
;
166 if (mbus
== &mon_bus0
) {
167 list_for_each (p
, &mon_buses
) {
168 mbus
= list_entry(p
, struct mon_bus
, bus_link
);
170 * We do not change nreaders here, so rely on mon_lock.
172 if (mbus
->nreaders
== 0 && (ubus
= mbus
->u_bus
) != NULL
)
177 * A stop can be called for a dissolved mon_bus in case of
178 * a reader staying across an rmmod foo_hcd, so test ->u_bus.
180 if (mon_bus0
.nreaders
== 0 && (ubus
= mbus
->u_bus
) != NULL
) {
188 * Add a USB bus (usually by a modprobe foo-hcd)
190 * This does not return an error code because the core cannot care less
191 * if monitoring is not established.
193 static void mon_bus_add(struct usb_bus
*ubus
)
196 mutex_lock(&mon_lock
);
197 if (mon_bus0
.nreaders
!= 0)
199 mutex_unlock(&mon_lock
);
203 * Remove a USB bus (either from rmmod foo-hcd or from a hot-remove event).
205 static void mon_bus_remove(struct usb_bus
*ubus
)
207 struct mon_bus
*mbus
= ubus
->mon_bus
;
209 mutex_lock(&mon_lock
);
210 list_del(&mbus
->bus_link
);
211 if (mbus
->text_inited
)
213 if (mbus
->bin_inited
)
216 mon_dissolve(mbus
, ubus
);
217 kref_put(&mbus
->ref
, mon_bus_drop
);
218 mutex_unlock(&mon_lock
);
221 static int mon_notify(struct notifier_block
*self
, unsigned long action
,
234 static struct notifier_block mon_nb
= {
235 .notifier_call
= mon_notify
,
241 static struct usb_mon_operations mon_ops_0
= {
242 .urb_submit
= mon_submit
,
243 .urb_submit_error
= mon_submit_error
,
244 .urb_complete
= mon_complete
,
248 * Tear usb_bus and mon_bus apart.
250 static void mon_dissolve(struct mon_bus
*mbus
, struct usb_bus
*ubus
)
253 if (ubus
->monitored
) {
258 ubus
->mon_bus
= NULL
;
262 /* We want synchronize_irq() here, but that needs an argument. */
267 static void mon_bus_drop(struct kref
*r
)
269 struct mon_bus
*mbus
= container_of(r
, struct mon_bus
, ref
);
274 * Initialize a bus for us:
276 * - refcount USB bus struct
279 static void mon_bus_init(struct usb_bus
*ubus
)
281 struct mon_bus
*mbus
;
283 if ((mbus
= kzalloc(sizeof(struct mon_bus
), GFP_KERNEL
)) == NULL
)
285 kref_init(&mbus
->ref
);
286 spin_lock_init(&mbus
->lock
);
287 INIT_LIST_HEAD(&mbus
->r_list
);
290 * We don't need to take a reference to ubus, because we receive
291 * a notification if the bus is about to be removed.
294 ubus
->mon_bus
= mbus
;
296 mbus
->text_inited
= mon_text_add(mbus
, ubus
);
297 mbus
->bin_inited
= mon_bin_add(mbus
, ubus
);
299 mutex_lock(&mon_lock
);
300 list_add_tail(&mbus
->bus_link
, &mon_buses
);
301 mutex_unlock(&mon_lock
);
308 static void mon_bus0_init(void)
310 struct mon_bus
*mbus
= &mon_bus0
;
312 kref_init(&mbus
->ref
);
313 spin_lock_init(&mbus
->lock
);
314 INIT_LIST_HEAD(&mbus
->r_list
);
316 mbus
->text_inited
= mon_text_add(mbus
, NULL
);
317 mbus
->bin_inited
= mon_bin_add(mbus
, NULL
);
321 * Search a USB bus by number. Notice that USB bus numbers start from one,
322 * which we may later use to identify "all" with zero.
324 * This function must be called with mon_lock held.
326 * This is obviously inefficient and may be revised in the future.
328 struct mon_bus
*mon_bus_lookup(unsigned int num
)
331 struct mon_bus
*mbus
;
336 list_for_each (p
, &mon_buses
) {
337 mbus
= list_entry(p
, struct mon_bus
, bus_link
);
338 if (mbus
->u_bus
->busnum
== num
) {
345 static int __init
mon_init(void)
347 struct usb_bus
*ubus
;
350 if ((rc
= mon_text_init()) != 0)
352 if ((rc
= mon_bin_init()) != 0)
357 if (usb_mon_register(&mon_ops_0
) != 0) {
358 printk(KERN_NOTICE TAG
": unable to register with the core\n");
362 // MOD_INC_USE_COUNT(which_module?);
364 mutex_lock(&usb_bus_list_lock
);
365 list_for_each_entry (ubus
, &usb_bus_list
, bus_list
) {
368 usb_register_notify(&mon_nb
);
369 mutex_unlock(&usb_bus_list_lock
);
380 static void __exit
mon_exit(void)
382 struct mon_bus
*mbus
;
385 usb_unregister_notify(&mon_nb
);
386 usb_mon_deregister();
388 mutex_lock(&mon_lock
);
390 while (!list_empty(&mon_buses
)) {
392 mbus
= list_entry(p
, struct mon_bus
, bus_link
);
395 if (mbus
->text_inited
)
397 if (mbus
->bin_inited
)
401 * This never happens, because the open/close paths in
402 * file level maintain module use counters and so rmmod fails
403 * before reaching here. However, better be safe...
405 if (mbus
->nreaders
) {
407 ": Outstanding opens (%d) on usb%d, leaking...\n",
408 mbus
->nreaders
, mbus
->u_bus
->busnum
);
409 atomic_set(&mbus
->ref
.refcount
, 2); /* Force leak */
412 mon_dissolve(mbus
, mbus
->u_bus
);
413 kref_put(&mbus
->ref
, mon_bus_drop
);
417 if (mbus
->text_inited
)
419 if (mbus
->bin_inited
)
422 mutex_unlock(&mon_lock
);
428 module_init(mon_init
);
429 module_exit(mon_exit
);
431 MODULE_LICENSE("GPL");