blob: ce61d8b0fd866b4ea91346296d828667d30a9468 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * The USB Monitor, inspired by Dave Harding's USBMon.
3 *
4 * mon_main.c: Main file, module initiation and exit, registrations, etc.
Pete Zaitcevda5ca002005-08-16 15:16:46 -07005 *
6 * Copyright (C) 2005 Pete Zaitcev (zaitcev@redhat.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
9#include <linux/kernel.h>
10#include <linux/module.h>
11#include <linux/usb.h>
Greg Kroah-Hartman72adaa92005-06-20 21:15:16 -070012#include <linux/notifier.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010013#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15#include "usb_mon.h"
16#include "../core/hcd.h"
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018static void mon_stop(struct mon_bus *mbus);
19static void mon_dissolve(struct mon_bus *mbus, struct usb_bus *ubus);
20static void mon_bus_drop(struct kref *r);
Pete Zaitcev6f23ee12006-12-30 22:43:10 -080021static void mon_bus_init(struct usb_bus *ubus);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010023DEFINE_MUTEX(mon_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Pete Zaitcevecb658d2007-04-11 13:47:26 -070025struct mon_bus mon_bus0; /* Pseudo bus meaning "all buses" */
Linus Torvalds1da177e2005-04-16 15:20:36 -070026static LIST_HEAD(mon_buses); /* All buses we know: struct mon_bus */
27
28/*
29 * Link a reader into the bus.
30 *
31 * This must be called with mon_lock taken because of mbus->ref.
32 */
33void mon_reader_add(struct mon_bus *mbus, struct mon_reader *r)
34{
35 unsigned long flags;
Pete Zaitcevecb658d2007-04-11 13:47:26 -070036 struct list_head *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38 spin_lock_irqsave(&mbus->lock, flags);
39 if (mbus->nreaders == 0) {
Pete Zaitcevecb658d2007-04-11 13:47:26 -070040 if (mbus == &mon_bus0) {
41 list_for_each (p, &mon_buses) {
42 struct mon_bus *m1;
43 m1 = list_entry(p, struct mon_bus, bus_link);
44 m1->u_bus->monitored = 1;
45 }
46 } else {
47 mbus->u_bus->monitored = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 }
50 mbus->nreaders++;
51 list_add_tail(&r->r_link, &mbus->r_list);
52 spin_unlock_irqrestore(&mbus->lock, flags);
53
54 kref_get(&mbus->ref);
55}
56
57/*
58 * Unlink reader from the bus.
59 *
60 * This is called with mon_lock taken, so we can decrement mbus->ref.
61 */
62void mon_reader_del(struct mon_bus *mbus, struct mon_reader *r)
63{
64 unsigned long flags;
65
66 spin_lock_irqsave(&mbus->lock, flags);
67 list_del(&r->r_link);
68 --mbus->nreaders;
69 if (mbus->nreaders == 0)
70 mon_stop(mbus);
71 spin_unlock_irqrestore(&mbus->lock, flags);
72
73 kref_put(&mbus->ref, mon_bus_drop);
74}
75
76/*
77 */
Pete Zaitcevecb658d2007-04-11 13:47:26 -070078static void mon_bus_submit(struct mon_bus *mbus, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 unsigned long flags;
81 struct list_head *pos;
82 struct mon_reader *r;
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 spin_lock_irqsave(&mbus->lock, flags);
Pete Zaitcev5b1c6742006-06-09 20:10:10 -070085 mbus->cnt_events++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 list_for_each (pos, &mbus->r_list) {
87 r = list_entry(pos, struct mon_reader, r_link);
88 r->rnf_submit(r->r_data, urb);
89 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 spin_unlock_irqrestore(&mbus->lock, flags);
91 return;
Pete Zaitcevecb658d2007-04-11 13:47:26 -070092}
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Pete Zaitcevecb658d2007-04-11 13:47:26 -070094static void mon_submit(struct usb_bus *ubus, struct urb *urb)
95{
96 struct mon_bus *mbus;
97
98 if ((mbus = ubus->mon_bus) != NULL)
99 mon_bus_submit(mbus, urb);
100 mon_bus_submit(&mon_bus0, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
103/*
104 */
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700105static void mon_bus_submit_error(struct mon_bus *mbus, struct urb *urb, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Pete Zaitcev12e72fe2006-06-09 22:03:32 -0700107 unsigned long flags;
108 struct list_head *pos;
109 struct mon_reader *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Pete Zaitcev12e72fe2006-06-09 22:03:32 -0700111 spin_lock_irqsave(&mbus->lock, flags);
Pete Zaitcev12e72fe2006-06-09 22:03:32 -0700112 mbus->cnt_events++;
113 list_for_each (pos, &mbus->r_list) {
114 r = list_entry(pos, struct mon_reader, r_link);
115 r->rnf_error(r->r_data, urb, error);
116 }
Pete Zaitcev12e72fe2006-06-09 22:03:32 -0700117 spin_unlock_irqrestore(&mbus->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return;
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700119}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700121static void mon_submit_error(struct usb_bus *ubus, struct urb *urb, int error)
122{
123 struct mon_bus *mbus;
124
125 if ((mbus = ubus->mon_bus) != NULL)
126 mon_bus_submit_error(mbus, urb, error);
127 mon_bus_submit_error(&mon_bus0, urb, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
130/*
131 */
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700132static void mon_bus_complete(struct mon_bus *mbus, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 unsigned long flags;
135 struct list_head *pos;
136 struct mon_reader *r;
137
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700138 spin_lock_irqsave(&mbus->lock, flags);
139 mbus->cnt_events++;
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);
143 }
144 spin_unlock_irqrestore(&mbus->lock, flags);
145}
146
147static void mon_complete(struct usb_bus *ubus, struct urb *urb)
148{
149 struct mon_bus *mbus;
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 mbus = ubus->mon_bus;
152 if (mbus == NULL) {
153 /*
154 * This should not happen.
155 * At this point we do not even know the bus number...
156 */
157 printk(KERN_ERR TAG ": Null mon bus in URB, pipe 0x%x\n",
158 urb->pipe);
159 return;
160 }
161
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700162 mon_bus_complete(mbus, urb);
163 mon_bus_complete(&mon_bus0, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
166/* int (*unlink_urb) (struct urb *urb, int status); */
167
168/*
169 * Stop monitoring.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 */
171static void mon_stop(struct mon_bus *mbus)
172{
173 struct usb_bus *ubus = mbus->u_bus;
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700174 struct list_head *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700176 if (mbus == &mon_bus0) {
177 list_for_each (p, &mon_buses) {
178 mbus = list_entry(p, struct mon_bus, bus_link);
179 /*
180 * We do not change nreaders here, so rely on mon_lock.
181 */
182 if (mbus->nreaders == 0 && (ubus = mbus->u_bus) != NULL)
183 ubus->monitored = 0;
184 }
185 } else {
186 /*
187 * A stop can be called for a dissolved mon_bus in case of
188 * a reader staying across an rmmod foo_hcd, so test ->u_bus.
189 */
190 if (mon_bus0.nreaders == 0 && (ubus = mbus->u_bus) != NULL) {
191 ubus->monitored = 0;
192 mb();
193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195}
196
197/*
198 * Add a USB bus (usually by a modprobe foo-hcd)
199 *
200 * This does not return an error code because the core cannot care less
201 * if monitoring is not established.
202 */
203static void mon_bus_add(struct usb_bus *ubus)
204{
Pete Zaitcev6f23ee12006-12-30 22:43:10 -0800205 mon_bus_init(ubus);
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700206 mutex_lock(&mon_lock);
207 if (mon_bus0.nreaders != 0)
208 ubus->monitored = 1;
209 mutex_unlock(&mon_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
212/*
213 * Remove a USB bus (either from rmmod foo-hcd or from a hot-remove event).
214 */
215static void mon_bus_remove(struct usb_bus *ubus)
216{
217 struct mon_bus *mbus = ubus->mon_bus;
218
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100219 mutex_lock(&mon_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 list_del(&mbus->bus_link);
Pete Zaitcev6f23ee12006-12-30 22:43:10 -0800221 if (mbus->text_inited)
222 mon_text_del(mbus);
Pete Zaitcevce7cd137f2007-05-03 16:51:16 -0700223 if (mbus->bin_inited)
224 mon_bin_del(mbus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 mon_dissolve(mbus, ubus);
227 kref_put(&mbus->ref, mon_bus_drop);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100228 mutex_unlock(&mon_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Greg Kroah-Hartman72adaa92005-06-20 21:15:16 -0700231static int mon_notify(struct notifier_block *self, unsigned long action,
232 void *dev)
233{
234 switch (action) {
235 case USB_BUS_ADD:
236 mon_bus_add(dev);
237 break;
238 case USB_BUS_REMOVE:
239 mon_bus_remove(dev);
240 }
241 return NOTIFY_OK;
242}
243
244static struct notifier_block mon_nb = {
245 .notifier_call = mon_notify,
246};
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248/*
249 * Ops
250 */
251static struct usb_mon_operations mon_ops_0 = {
252 .urb_submit = mon_submit,
253 .urb_submit_error = mon_submit_error,
254 .urb_complete = mon_complete,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255};
256
257/*
258 * Tear usb_bus and mon_bus apart.
259 */
260static void mon_dissolve(struct mon_bus *mbus, struct usb_bus *ubus)
261{
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 if (ubus->monitored) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 ubus->monitored = 0;
265 mb();
266 }
267
268 ubus->mon_bus = NULL;
269 mbus->u_bus = NULL;
270 mb();
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700271
272 /* We want synchronize_irq() here, but that needs an argument. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
275/*
276 */
277static void mon_bus_drop(struct kref *r)
278{
279 struct mon_bus *mbus = container_of(r, struct mon_bus, ref);
280 kfree(mbus);
281}
282
283/*
284 * Initialize a bus for us:
285 * - allocate mon_bus
286 * - refcount USB bus struct
287 * - link
288 */
Pete Zaitcev6f23ee12006-12-30 22:43:10 -0800289static void mon_bus_init(struct usb_bus *ubus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 struct mon_bus *mbus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Eric Sesterhenn80b6ca42006-02-27 21:29:43 +0100293 if ((mbus = kzalloc(sizeof(struct mon_bus), GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 goto err_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 kref_init(&mbus->ref);
296 spin_lock_init(&mbus->lock);
297 INIT_LIST_HEAD(&mbus->r_list);
298
299 /*
Alan Stern17200582006-08-30 11:32:52 -0400300 * We don't need to take a reference to ubus, because we receive
301 * a notification if the bus is about to be removed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 mbus->u_bus = ubus;
304 ubus->mon_bus = mbus;
305
Pete Zaitcevce7cd137f2007-05-03 16:51:16 -0700306 mbus->text_inited = mon_text_add(mbus, ubus);
307 mbus->bin_inited = mon_bin_add(mbus, ubus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100309 mutex_lock(&mon_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 list_add_tail(&mbus->bus_link, &mon_buses);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100311 mutex_unlock(&mon_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return;
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314err_alloc:
315 return;
316}
317
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700318static void mon_bus0_init(void)
319{
320 struct mon_bus *mbus = &mon_bus0;
321
322 kref_init(&mbus->ref);
323 spin_lock_init(&mbus->lock);
324 INIT_LIST_HEAD(&mbus->r_list);
325
Pete Zaitcevce7cd137f2007-05-03 16:51:16 -0700326 mbus->text_inited = mon_text_add(mbus, NULL);
327 mbus->bin_inited = mon_bin_add(mbus, NULL);
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700328}
329
Pete Zaitcev6f23ee12006-12-30 22:43:10 -0800330/*
331 * Search a USB bus by number. Notice that USB bus numbers start from one,
332 * which we may later use to identify "all" with zero.
333 *
334 * This function must be called with mon_lock held.
335 *
336 * This is obviously inefficient and may be revised in the future.
337 */
338struct mon_bus *mon_bus_lookup(unsigned int num)
339{
340 struct list_head *p;
341 struct mon_bus *mbus;
342
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700343 if (num == 0) {
344 return &mon_bus0;
345 }
Pete Zaitcev6f23ee12006-12-30 22:43:10 -0800346 list_for_each (p, &mon_buses) {
347 mbus = list_entry(p, struct mon_bus, bus_link);
348 if (mbus->u_bus->busnum == num) {
349 return mbus;
350 }
351 }
352 return NULL;
353}
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355static int __init mon_init(void)
356{
357 struct usb_bus *ubus;
Pete Zaitcev6f23ee12006-12-30 22:43:10 -0800358 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Pete Zaitcev6f23ee12006-12-30 22:43:10 -0800360 if ((rc = mon_text_init()) != 0)
361 goto err_text;
362 if ((rc = mon_bin_init()) != 0)
363 goto err_bin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700365 mon_bus0_init();
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (usb_mon_register(&mon_ops_0) != 0) {
368 printk(KERN_NOTICE TAG ": unable to register with the core\n");
Pete Zaitcev6f23ee12006-12-30 22:43:10 -0800369 rc = -ENODEV;
370 goto err_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372 // MOD_INC_USE_COUNT(which_module?);
373
Greg Kroah-Hartman72adaa92005-06-20 21:15:16 -0700374 usb_register_notify(&mon_nb);
375
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100376 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 list_for_each_entry (ubus, &usb_bus_list, bus_list) {
Pete Zaitcev6f23ee12006-12-30 22:43:10 -0800378 mon_bus_init(ubus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100380 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return 0;
Pete Zaitcev6f23ee12006-12-30 22:43:10 -0800382
383err_reg:
384 mon_bin_exit();
385err_bin:
386 mon_text_exit();
387err_text:
388 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
391static void __exit mon_exit(void)
392{
393 struct mon_bus *mbus;
394 struct list_head *p;
395
Greg Kroah-Hartman72adaa92005-06-20 21:15:16 -0700396 usb_unregister_notify(&mon_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 usb_mon_deregister();
398
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100399 mutex_lock(&mon_lock);
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 while (!list_empty(&mon_buses)) {
402 p = mon_buses.next;
403 mbus = list_entry(p, struct mon_bus, bus_link);
404 list_del(p);
405
Pete Zaitcev6f23ee12006-12-30 22:43:10 -0800406 if (mbus->text_inited)
407 mon_text_del(mbus);
Pete Zaitcevce7cd137f2007-05-03 16:51:16 -0700408 if (mbus->bin_inited)
409 mon_bin_del(mbus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 /*
412 * This never happens, because the open/close paths in
413 * file level maintain module use counters and so rmmod fails
414 * before reaching here. However, better be safe...
415 */
416 if (mbus->nreaders) {
417 printk(KERN_ERR TAG
418 ": Outstanding opens (%d) on usb%d, leaking...\n",
419 mbus->nreaders, mbus->u_bus->busnum);
420 atomic_set(&mbus->ref.refcount, 2); /* Force leak */
421 }
422
423 mon_dissolve(mbus, mbus->u_bus);
424 kref_put(&mbus->ref, mon_bus_drop);
425 }
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700426
427 mbus = &mon_bus0;
428 if (mbus->text_inited)
429 mon_text_del(mbus);
Pete Zaitcevce7cd137f2007-05-03 16:51:16 -0700430 if (mbus->bin_inited)
431 mon_bin_del(mbus);
Pete Zaitcevecb658d2007-04-11 13:47:26 -0700432
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100433 mutex_unlock(&mon_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Pete Zaitcev6f23ee12006-12-30 22:43:10 -0800435 mon_text_exit();
436 mon_bin_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
439module_init(mon_init);
440module_exit(mon_exit);
441
442MODULE_LICENSE("GPL");