2 * linux/fs/9p/vfs_dir.c
4 * This file contains vfs directory ops for the 9P2000 protocol.
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.
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.
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
26 #include <linux/module.h>
27 #include <linux/errno.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 <linux/slab.h>
36 #include <net/9p/9p.h>
37 #include <net/9p/client.h>
44 * struct p9_rdir - readdir accounting
45 * @mutex: mutex protecting readdir
46 * @head: start offset of current dirread buffer
47 * @tail: end offset of current dirread buffer
48 * @buf: dirread buffer
50 * private structure for keeping track of readdir
62 * dt_type - return file type
63 * @mistat: mistat structure
67 static inline int dt_type(struct p9_wstat *mistat)
69 unsigned long perm = mistat->mode;
74 if (perm & P9_DMSYMLINK)
80 static void p9stat_init(struct p9_wstat *stbuf)
86 stbuf->extension = NULL;
90 * v9fs_alloc_rdir_buf - Allocate buffer used for read and readdir
91 * @filp: opened file structure
92 * @buflen: Length in bytes of buffer to allocate
96 static int v9fs_alloc_rdir_buf(struct file *filp, int buflen)
102 fid = filp->private_data;
104 rdir = kmalloc(sizeof(struct p9_rdir) + buflen, GFP_KERNEL);
110 spin_lock(&filp->f_dentry->d_lock);
112 rdir->buf = (uint8_t *)rdir + sizeof(struct p9_rdir);
113 mutex_init(&rdir->mutex);
114 rdir->head = rdir->tail = 0;
115 fid->rdir = (void *) rdir;
118 spin_unlock(&filp->f_dentry->d_lock);
126 * v9fs_dir_readdir - read a directory
127 * @filp: opened file structure
128 * @dirent: directory structure ???
129 * @filldir: function to populate directory structure ???
133 static int v9fs_dir_readdir(struct file *filp, void *dirent, filldir_t filldir)
141 struct p9_rdir *rdir;
143 p9_debug(P9_DEBUG_VFS, "name %s\n", filp->f_path.dentry->d_name.name);
144 fid = filp->private_data;
146 buflen = fid->clnt->msize - P9_IOHDRSZ;
148 err = v9fs_alloc_rdir_buf(filp, buflen);
151 rdir = (struct p9_rdir *) fid->rdir;
153 err = mutex_lock_interruptible(&rdir->mutex);
157 if (rdir->tail == rdir->head) {
158 err = v9fs_file_readn(filp, rdir->buf, NULL,
159 buflen, filp->f_pos);
161 goto unlock_and_exit;
166 while (rdir->head < rdir->tail) {
168 err = p9stat_read(fid->clnt, rdir->buf + rdir->head,
169 rdir->tail - rdir->head, &st);
171 p9_debug(P9_DEBUG_VFS, "returned %d\n", err);
174 goto unlock_and_exit;
178 over = filldir(dirent, st.name, strlen(st.name),
179 filp->f_pos, v9fs_qid2ino(&st.qid), dt_type(&st));
185 goto unlock_and_exit;
187 rdir->head += reclen;
188 filp->f_pos += reclen;
193 mutex_unlock(&rdir->mutex);
199 * v9fs_dir_readdir_dotl - read a directory
200 * @filp: opened file structure
201 * @dirent: buffer to fill dirent structures
202 * @filldir: function to populate dirent structures
205 static int v9fs_dir_readdir_dotl(struct file *filp, void *dirent,
212 struct p9_rdir *rdir;
213 struct p9_dirent curdirent;
216 p9_debug(P9_DEBUG_VFS, "name %s\n", filp->f_path.dentry->d_name.name);
217 fid = filp->private_data;
219 buflen = fid->clnt->msize - P9_READDIRHDRSZ;
221 err = v9fs_alloc_rdir_buf(filp, buflen);
224 rdir = (struct p9_rdir *) fid->rdir;
226 err = mutex_lock_interruptible(&rdir->mutex);
231 if (rdir->tail == rdir->head) {
232 err = p9_client_readdir(fid, rdir->buf, buflen,
235 goto unlock_and_exit;
241 while (rdir->head < rdir->tail) {
243 err = p9dirent_read(fid->clnt, rdir->buf + rdir->head,
244 rdir->tail - rdir->head,
247 p9_debug(P9_DEBUG_VFS, "returned %d\n", err);
249 goto unlock_and_exit;
252 /* d_off in dirent structure tracks the offset into
253 * the next dirent in the dir. However, filldir()
254 * expects offset into the current dirent. Hence
255 * while calling filldir send the offset from the
256 * previous dirent structure.
258 over = filldir(dirent, curdirent.d_name,
259 strlen(curdirent.d_name),
260 oldoffset, v9fs_qid2ino(&curdirent.qid),
262 oldoffset = curdirent.d_off;
266 goto unlock_and_exit;
269 filp->f_pos = curdirent.d_off;
275 mutex_unlock(&rdir->mutex);
282 * v9fs_dir_release - close a directory
283 * @inode: inode of the directory
284 * @filp: file pointer to a directory
288 int v9fs_dir_release(struct inode *inode, struct file *filp)
292 fid = filp->private_data;
293 p9_debug(P9_DEBUG_VFS, "inode: %p filp: %p fid: %d\n",
294 inode, filp, fid ? fid->fid : -1);
296 p9_client_clunk(fid);
300 const struct file_operations v9fs_dir_operations = {
301 .read = generic_read_dir,
302 .llseek = generic_file_llseek,
303 .readdir = v9fs_dir_readdir,
304 .open = v9fs_file_open,
305 .release = v9fs_dir_release,
308 const struct file_operations v9fs_dir_operations_dotl = {
309 .read = generic_read_dir,
310 .llseek = generic_file_llseek,
311 .readdir = v9fs_dir_readdir_dotl,
312 .open = v9fs_file_open,
313 .release = v9fs_dir_release,
314 .fsync = v9fs_file_fsync_dotl,