9p: return on mutex_lock_interruptible()
[safe/jmp/linux-2.6] / fs / 9p / vfs_dir.c
1 /*
2  * linux/fs/9p/vfs_dir.c
3  *
4  * This file contains vfs directory ops for the 9P2000 protocol.
5  *
6  *  Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
7  *  Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License version 2
11  *  as published by the Free Software Foundation.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to:
20  *  Free Software Foundation
21  *  51 Franklin Street, Fifth Floor
22  *  Boston, MA  02111-1301  USA
23  *
24  */
25
26 #include <linux/module.h>
27 #include <linux/errno.h>
28 #include <linux/fs.h>
29 #include <linux/file.h>
30 #include <linux/stat.h>
31 #include <linux/string.h>
32 #include <linux/sched.h>
33 #include <linux/inet.h>
34 #include <linux/idr.h>
35 #include <net/9p/9p.h>
36 #include <net/9p/client.h>
37
38 #include "v9fs.h"
39 #include "v9fs_vfs.h"
40 #include "fid.h"
41
42 /**
43  * struct p9_rdir - readdir accounting
44  * @mutex: mutex protecting readdir
45  * @head: start offset of current dirread buffer
46  * @tail: end offset of current dirread buffer
47  * @buf: dirread buffer
48  *
49  * private structure for keeping track of readdir
50  * allocated on demand
51  */
52
53 struct p9_rdir {
54         struct mutex mutex;
55         int head;
56         int tail;
57         uint8_t *buf;
58 };
59
60 /**
61  * dt_type - return file type
62  * @mistat: mistat structure
63  *
64  */
65
66 static inline int dt_type(struct p9_wstat *mistat)
67 {
68         unsigned long perm = mistat->mode;
69         int rettype = DT_REG;
70
71         if (perm & P9_DMDIR)
72                 rettype = DT_DIR;
73         if (perm & P9_DMSYMLINK)
74                 rettype = DT_LNK;
75
76         return rettype;
77 }
78
79 static void p9stat_init(struct p9_wstat *stbuf)
80 {
81         stbuf->name  = NULL;
82         stbuf->uid   = NULL;
83         stbuf->gid   = NULL;
84         stbuf->muid  = NULL;
85         stbuf->extension = NULL;
86 }
87
88 /**
89  * v9fs_dir_readdir - read a directory
90  * @filp: opened file structure
91  * @dirent: directory structure ???
92  * @filldir: function to populate directory structure ???
93  *
94  */
95
96 static int v9fs_dir_readdir(struct file *filp, void *dirent, filldir_t filldir)
97 {
98         int over;
99         struct p9_wstat st;
100         int err = 0;
101         struct p9_fid *fid;
102         int buflen;
103         int reclen = 0;
104         struct p9_rdir *rdir;
105
106         P9_DPRINTK(P9_DEBUG_VFS, "name %s\n", filp->f_path.dentry->d_name.name);
107         fid = filp->private_data;
108
109         buflen = fid->clnt->msize - P9_IOHDRSZ;
110
111         /* allocate rdir on demand */
112         if (!fid->rdir) {
113                 rdir = kmalloc(sizeof(struct p9_rdir) + buflen, GFP_KERNEL);
114
115                 if (rdir == NULL) {
116                         err = -ENOMEM;
117                         goto exit;
118                 }
119                 spin_lock(&filp->f_dentry->d_lock);
120                 if (!fid->rdir) {
121                         rdir->buf = (uint8_t *)rdir + sizeof(struct p9_rdir);
122                         mutex_init(&rdir->mutex);
123                         rdir->head = rdir->tail = 0;
124                         fid->rdir = (void *) rdir;
125                         rdir = NULL;
126                 }
127                 spin_unlock(&filp->f_dentry->d_lock);
128                 kfree(rdir);
129         }
130         rdir = (struct p9_rdir *) fid->rdir;
131
132         err = mutex_lock_interruptible(&rdir->mutex);
133         if (err)
134                 return err;
135         while (err == 0) {
136                 if (rdir->tail == rdir->head) {
137                         err = v9fs_file_readn(filp, rdir->buf, NULL,
138                                                         buflen, filp->f_pos);
139                         if (err <= 0)
140                                 goto unlock_and_exit;
141
142                         rdir->head = 0;
143                         rdir->tail = err;
144                 }
145                 while (rdir->head < rdir->tail) {
146                         p9stat_init(&st);
147                         err = p9stat_read(rdir->buf + rdir->head,
148                                                 buflen - rdir->head, &st,
149                                                 fid->clnt->proto_version);
150                         if (err) {
151                                 P9_DPRINTK(P9_DEBUG_VFS, "returned %d\n", err);
152                                 err = -EIO;
153                                 p9stat_free(&st);
154                                 goto unlock_and_exit;
155                         }
156                         reclen = st.size+2;
157
158                         over = filldir(dirent, st.name, strlen(st.name),
159                             filp->f_pos, v9fs_qid2ino(&st.qid), dt_type(&st));
160
161                         p9stat_free(&st);
162
163                         if (over) {
164                                 err = 0;
165                                 goto unlock_and_exit;
166                         }
167                         rdir->head += reclen;
168                         filp->f_pos += reclen;
169                 }
170         }
171
172 unlock_and_exit:
173         mutex_unlock(&rdir->mutex);
174 exit:
175         return err;
176 }
177
178
179 /**
180  * v9fs_dir_release - close a directory
181  * @inode: inode of the directory
182  * @filp: file pointer to a directory
183  *
184  */
185
186 int v9fs_dir_release(struct inode *inode, struct file *filp)
187 {
188         struct p9_fid *fid;
189
190         fid = filp->private_data;
191         P9_DPRINTK(P9_DEBUG_VFS,
192                         "inode: %p filp: %p fid: %d\n", inode, filp, fid->fid);
193         filemap_write_and_wait(inode->i_mapping);
194         p9_client_clunk(fid);
195         return 0;
196 }
197
198 const struct file_operations v9fs_dir_operations = {
199         .read = generic_read_dir,
200         .llseek = generic_file_llseek,
201         .readdir = v9fs_dir_readdir,
202         .open = v9fs_file_open,
203         .release = v9fs_dir_release,
204 };