blob: f1635662c2992a8c531d1cd53dd0e14e9f79ef1a [file] [log] [blame]
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -06001/*
2 * Copyright (C) 2003-2008 Takahiro Hirofuchi
Nobuo Iwatabb7871a2016-03-24 10:50:59 +09003 * Copyright (C) 2015 Nobuo Iwata
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -06004 *
5 * This is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
18 * USA.
19 */
20
Brian G. Merrellb8868e42009-07-21 00:46:13 -060021#include <linux/kthread.h>
Paul Gortmaker8e336a72011-07-10 13:09:12 -040022#include <linux/export.h>
Nobuo Iwatabb7871a2016-03-24 10:50:59 +090023#include <linux/slab.h>
24#include <linux/workqueue.h>
matt mooney7aaacb42011-05-11 22:33:43 -070025
matt mooney0f798472011-05-06 03:47:47 -070026#include "usbip_common.h"
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060027
Nobuo Iwatabb7871a2016-03-24 10:50:59 +090028struct usbip_event {
29 struct list_head node;
30 struct usbip_device *ud;
31};
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060032
Nobuo Iwatabb7871a2016-03-24 10:50:59 +090033static DEFINE_SPINLOCK(event_lock);
34static LIST_HEAD(event_list);
35
36static void set_event(struct usbip_device *ud, unsigned long event)
37{
38 unsigned long flags;
39
40 spin_lock_irqsave(&ud->lock, flags);
41 ud->event |= event;
42 spin_unlock_irqrestore(&ud->lock, flags);
43}
44
45static void unset_event(struct usbip_device *ud, unsigned long event)
46{
47 unsigned long flags;
48
49 spin_lock_irqsave(&ud->lock, flags);
50 ud->event &= ~event;
51 spin_unlock_irqrestore(&ud->lock, flags);
52}
53
54static struct usbip_device *get_event(void)
55{
56 struct usbip_event *ue = NULL;
57 struct usbip_device *ud = NULL;
58 unsigned long flags;
59
60 spin_lock_irqsave(&event_lock, flags);
61 if (!list_empty(&event_list)) {
62 ue = list_first_entry(&event_list, struct usbip_event, node);
63 list_del(&ue->node);
64 }
65 spin_unlock_irqrestore(&event_lock, flags);
66
67 if (ue) {
68 ud = ue->ud;
69 kfree(ue);
70 }
71 return ud;
72}
73
74static struct task_struct *worker_context;
75
76static void event_handler(struct work_struct *work)
77{
78 struct usbip_device *ud;
79
80 if (worker_context == NULL) {
81 worker_context = current;
82 }
83
84 while ((ud = get_event()) != NULL) {
Brian G. Merrellb8868e42009-07-21 00:46:13 -060085 usbip_dbg_eh("pending event %lx\n", ud->event);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060086
87 /*
88 * NOTE: shutdown must come first.
89 * Shutdown the device.
90 */
91 if (ud->event & USBIP_EH_SHUTDOWN) {
92 ud->eh_ops.shutdown(ud);
Nobuo Iwatabb7871a2016-03-24 10:50:59 +090093 unset_event(ud, USBIP_EH_SHUTDOWN);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060094 }
95
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -060096 /* Reset the device. */
97 if (ud->event & USBIP_EH_RESET) {
98 ud->eh_ops.reset(ud);
Nobuo Iwatabb7871a2016-03-24 10:50:59 +090099 unset_event(ud, USBIP_EH_RESET);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600100 }
101
102 /* Mark the device as unusable. */
103 if (ud->event & USBIP_EH_UNUSABLE) {
104 ud->eh_ops.unusable(ud);
Nobuo Iwatabb7871a2016-03-24 10:50:59 +0900105 unset_event(ud, USBIP_EH_UNUSABLE);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600106 }
107
Max Vozeler584c5b72010-09-21 17:43:30 +0200108 /* Stop the error handler. */
109 if (ud->event & USBIP_EH_BYE)
Nobuo Iwatabb7871a2016-03-24 10:50:59 +0900110 usbip_dbg_eh("removed %p\n", ud);
111
112 wake_up(&ud->eh_waitq);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600113 }
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600114}
115
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600116int usbip_start_eh(struct usbip_device *ud)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600117{
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600118 init_waitqueue_head(&ud->eh_waitq);
119 ud->event = 0;
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600120 return 0;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600121}
122EXPORT_SYMBOL_GPL(usbip_start_eh);
123
124void usbip_stop_eh(struct usbip_device *ud)
125{
Nobuo Iwatabb7871a2016-03-24 10:50:59 +0900126 unsigned long pending = ud->event & ~USBIP_EH_BYE;
Eric Lescouetd01f42a2010-04-24 02:55:24 +0200127
Nobuo Iwatabb7871a2016-03-24 10:50:59 +0900128 if (!(ud->event & USBIP_EH_BYE))
129 usbip_dbg_eh("usbip_eh stopping but not removed\n");
130
131 if (pending)
132 usbip_dbg_eh("usbip_eh waiting completion %lx\n", pending);
133
134 wait_event_interruptible(ud->eh_waitq, !(ud->event & ~USBIP_EH_BYE));
135 usbip_dbg_eh("usbip_eh has stopped\n");
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600136}
137EXPORT_SYMBOL_GPL(usbip_stop_eh);
138
Nobuo Iwatabb7871a2016-03-24 10:50:59 +0900139#define WORK_QUEUE_NAME "usbip_event"
140
141static struct workqueue_struct *usbip_queue;
142static DECLARE_WORK(usbip_work, event_handler);
143
144int usbip_init_eh(void)
145{
146 usbip_queue = create_singlethread_workqueue(WORK_QUEUE_NAME);
147 if (usbip_queue == NULL) {
148 pr_err("failed to create usbip_event\n");
149 return -ENOMEM;
150 }
151 return 0;
152}
153
154void usbip_finish_eh(void)
155{
156 flush_workqueue(usbip_queue);
157 destroy_workqueue(usbip_queue);
158 usbip_queue = NULL;
159}
160
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600161void usbip_event_add(struct usbip_device *ud, unsigned long event)
162{
Nobuo Iwatabb7871a2016-03-24 10:50:59 +0900163 struct usbip_event *ue;
Harvey Yangdcf147792013-01-22 13:31:30 +0800164 unsigned long flags;
165
Nobuo Iwatabb7871a2016-03-24 10:50:59 +0900166 if (ud->event & USBIP_EH_BYE)
167 return;
168
169 set_event(ud, event);
170
171 spin_lock_irqsave(&event_lock, flags);
172
173 list_for_each_entry_reverse(ue, &event_list, node) {
174 if (ue->ud == ud)
175 goto out;
176 }
177
178 ue = kmalloc(sizeof(struct usbip_event), GFP_ATOMIC);
179 if (ue == NULL)
180 goto out;
181
182 ue->ud = ud;
183
184 list_add_tail(&ue->node, &event_list);
185 queue_work(usbip_queue, &usbip_work);
186
187out:
188 spin_unlock_irqrestore(&event_lock, flags);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600189}
190EXPORT_SYMBOL_GPL(usbip_event_add);
191
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600192int usbip_event_happened(struct usbip_device *ud)
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600193{
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600194 int happened = 0;
Andrew Goodbody21619792016-02-02 17:36:39 +0000195 unsigned long flags;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600196
Andrew Goodbody21619792016-02-02 17:36:39 +0000197 spin_lock_irqsave(&ud->lock, flags);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600198 if (ud->event != 0)
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600199 happened = 1;
Andrew Goodbody21619792016-02-02 17:36:39 +0000200 spin_unlock_irqrestore(&ud->lock, flags);
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600201
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600202 return happened;
Takahiro Hirofuchi05a1f282008-07-09 14:56:51 -0600203}
Brian G. Merrellb8868e42009-07-21 00:46:13 -0600204EXPORT_SYMBOL_GPL(usbip_event_happened);
Nobuo Iwatabb7871a2016-03-24 10:50:59 +0900205
206int usbip_in_eh(struct task_struct *task)
207{
208 if (task == worker_context)
209 return 1;
210
211 return 0;
212}
213EXPORT_SYMBOL_GPL(usbip_in_eh);