4 * Copyright (C) 2000, Charles Loep / Corel Corp.
5 * Copyright (C) 2001, Urban Widmark
9 #include <linux/sched.h>
10 #include <linux/kernel.h>
12 #include <linux/string.h>
13 #include <linux/stat.h>
14 #include <linux/errno.h>
15 #include <linux/init.h>
16 #include <linux/file.h>
17 #include <linux/dcache.h>
18 #include <linux/module.h>
19 #include <linux/net.h>
20 #include <linux/kthread.h>
23 #include <linux/smb_fs.h>
24 #include <linux/smbno.h>
25 #include <linux/smb_mount.h>
27 #include <asm/system.h>
28 #include <asm/uaccess.h>
30 #include "smb_debug.h"
40 static enum smbiod_state smbiod_state
= SMBIOD_DEAD
;
41 static struct task_struct
*smbiod_thread
;
42 static DECLARE_WAIT_QUEUE_HEAD(smbiod_wait
);
43 static LIST_HEAD(smb_servers
);
44 static DEFINE_SPINLOCK(servers_lock
);
46 #define SMBIOD_DATA_READY (1<<0)
47 static unsigned long smbiod_flags
;
49 static int smbiod(void *);
50 static int smbiod_start(void);
53 * called when there's work for us to do
55 void smbiod_wake_up(void)
57 if (smbiod_state
== SMBIOD_DEAD
)
59 set_bit(SMBIOD_DATA_READY
, &smbiod_flags
);
60 wake_up_interruptible(&smbiod_wait
);
64 * start smbiod if none is running
66 static int smbiod_start(void)
68 struct task_struct
*tsk
;
71 if (smbiod_state
!= SMBIOD_DEAD
)
73 smbiod_state
= SMBIOD_STARTING
;
74 __module_get(THIS_MODULE
);
75 spin_unlock(&servers_lock
);
76 tsk
= kthread_run(smbiod
, NULL
, "smbiod");
79 module_put(THIS_MODULE
);
82 spin_lock(&servers_lock
);
84 smbiod_state
= SMBIOD_DEAD
;
87 smbiod_state
= SMBIOD_RUNNING
;
94 * register a server & start smbiod if necessary
96 int smbiod_register_server(struct smb_sb_info
*server
)
99 spin_lock(&servers_lock
);
100 list_add(&server
->entry
, &smb_servers
);
101 VERBOSE("%p\n", server
);
102 ret
= smbiod_start();
103 spin_unlock(&servers_lock
);
108 * Unregister a server
109 * Must be called with the server lock held.
111 void smbiod_unregister_server(struct smb_sb_info
*server
)
113 spin_lock(&servers_lock
);
114 list_del_init(&server
->entry
);
115 VERBOSE("%p\n", server
);
116 spin_unlock(&servers_lock
);
119 smbiod_flush(server
);
122 void smbiod_flush(struct smb_sb_info
*server
)
124 struct list_head
*tmp
, *n
;
125 struct smb_request
*req
;
127 list_for_each_safe(tmp
, n
, &server
->xmitq
) {
128 req
= list_entry(tmp
, struct smb_request
, rq_queue
);
129 req
->rq_errno
= -EIO
;
130 list_del_init(&req
->rq_queue
);
132 wake_up_interruptible(&req
->rq_wait
);
134 list_for_each_safe(tmp
, n
, &server
->recvq
) {
135 req
= list_entry(tmp
, struct smb_request
, rq_queue
);
136 req
->rq_errno
= -EIO
;
137 list_del_init(&req
->rq_queue
);
139 wake_up_interruptible(&req
->rq_wait
);
144 * Wake up smbmount and make it reconnect to the server.
145 * This must be called with the server locked.
147 * FIXME: add smbconnect version to this
149 int smbiod_retry(struct smb_sb_info
*server
)
151 struct list_head
*head
;
152 struct smb_request
*req
;
153 struct pid
*pid
= get_pid(server
->conn_pid
);
156 VERBOSE("state: %d\n", server
->state
);
157 if (server
->state
== CONN_VALID
|| server
->state
== CONN_RETRYING
)
160 smb_invalidate_inodes(server
);
163 * Some requests are meaningless after a retry, so we abort them.
164 * One example are all requests using 'fileid' since the files are
167 head
= server
->xmitq
.next
;
168 while (head
!= &server
->xmitq
) {
169 req
= list_entry(head
, struct smb_request
, rq_queue
);
172 req
->rq_bytes_sent
= 0;
173 if (req
->rq_flags
& SMB_REQ_NORETRY
) {
174 VERBOSE("aborting request %p on xmitq\n", req
);
175 req
->rq_errno
= -EIO
;
176 list_del_init(&req
->rq_queue
);
178 wake_up_interruptible(&req
->rq_wait
);
183 * FIXME: test the code for retrying request we already sent
185 head
= server
->recvq
.next
;
186 while (head
!= &server
->recvq
) {
187 req
= list_entry(head
, struct smb_request
, rq_queue
);
190 if (req
->rq_flags
& SMB_REQ_RETRY
) {
191 /* must move the request to the xmitq */
192 VERBOSE("retrying request %p on recvq\n", req
);
193 list_move(&req
->rq_queue
, &server
->xmitq
);
198 VERBOSE("aborting request %p on recvq\n", req
);
199 /* req->rq_rcls = ???; */ /* FIXME: set smb error code too? */
200 req
->rq_errno
= -EIO
;
201 list_del_init(&req
->rq_queue
);
203 wake_up_interruptible(&req
->rq_wait
);
206 smb_close_socket(server
);
209 /* FIXME: this is fatal, umount? */
210 printk(KERN_ERR
"smb_retry: no connection process\n");
211 server
->state
= CONN_RETRIED
;
216 * Change state so that only one retry per server will be started.
218 server
->state
= CONN_RETRYING
;
221 * Note: use the "priv" flag, as a user process may need to reconnect.
223 result
= kill_pid(pid
, SIGUSR1
, 1);
225 /* FIXME: this is most likely fatal, umount? */
226 printk(KERN_ERR
"smb_retry: signal failed [%d]\n", result
);
229 VERBOSE("signalled pid %d\n", pid_nr(pid
));
231 /* FIXME: The retried requests should perhaps get a "time boost". */
239 * Currently handles lockingX packets.
241 static void smbiod_handle_request(struct smb_sb_info
*server
)
243 PARANOIA("smbiod got a request ... and we don't implement oplocks!\n");
244 server
->rstate
= SMB_RECV_DROP
;
248 * Do some IO for one server.
250 static void smbiod_doio(struct smb_sb_info
*server
)
255 if (server
->state
!= CONN_VALID
)
259 result
= smb_request_recv(server
);
261 server
->state
= CONN_INVALID
;
262 smbiod_retry(server
);
263 goto out
; /* reconnecting is slow */
264 } else if (server
->rstate
== SMB_RECV_REQUEST
)
265 smbiod_handle_request(server
);
266 } while (result
> 0 && maxwork
-- > 0);
269 * If there is more to read then we want to be sure to wake up again.
271 if (server
->state
!= CONN_VALID
)
273 if (smb_recv_available(server
) > 0)
274 set_bit(SMBIOD_DATA_READY
, &smbiod_flags
);
277 result
= smb_request_send_server(server
);
279 server
->state
= CONN_INVALID
;
280 smbiod_retry(server
);
281 goto out
; /* reconnecting is slow */
283 } while (result
> 0);
286 * If the last request was not sent out we want to wake up again.
288 if (!list_empty(&server
->xmitq
))
289 set_bit(SMBIOD_DATA_READY
, &smbiod_flags
);
296 * smbiod kernel thread
298 static int smbiod(void *unused
)
300 VERBOSE("SMB Kernel thread starting (%d) ...\n", current
->pid
);
303 struct smb_sb_info
*server
;
304 struct list_head
*pos
, *n
;
306 /* FIXME: Use poll? */
307 wait_event_interruptible(smbiod_wait
,
308 test_bit(SMBIOD_DATA_READY
, &smbiod_flags
));
309 if (signal_pending(current
)) {
310 spin_lock(&servers_lock
);
311 smbiod_state
= SMBIOD_DEAD
;
312 spin_unlock(&servers_lock
);
316 clear_bit(SMBIOD_DATA_READY
, &smbiod_flags
);
318 spin_lock(&servers_lock
);
319 if (list_empty(&smb_servers
)) {
320 smbiod_state
= SMBIOD_DEAD
;
321 spin_unlock(&servers_lock
);
325 list_for_each_safe(pos
, n
, &smb_servers
) {
326 server
= list_entry(pos
, struct smb_sb_info
, entry
);
327 VERBOSE("checking server %p\n", server
);
329 if (server
->state
== CONN_VALID
) {
330 spin_unlock(&servers_lock
);
332 smb_lock_server(server
);
334 smb_unlock_server(server
);
336 spin_lock(&servers_lock
);
339 spin_unlock(&servers_lock
);
342 VERBOSE("SMB Kernel thread exiting (%d) ...\n", current
->pid
);
343 module_put_and_exit(0);