fs: no games with DCACHE_UNHASHED
[linux-2.6-block.git] / fs / 9p / vfs_dir.c
CommitLineData
e69e7fe5
EVH
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
42e8c509
EVH
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
e69e7fe5
EVH
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>
914e2637 32#include <linux/sched.h>
e69e7fe5
EVH
33#include <linux/inet.h>
34#include <linux/idr.h>
bd238fb4
LI
35#include <net/9p/9p.h>
36#include <net/9p/client.h>
e69e7fe5 37
e69e7fe5 38#include "v9fs.h"
531b1094 39#include "v9fs_vfs.h"
e69e7fe5
EVH
40#include "fid.h"
41
3e2796a9
EVH
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
53struct p9_rdir {
54 struct mutex mutex;
55 int head;
56 int tail;
57 uint8_t *buf;
58};
59
e69e7fe5
EVH
60/**
61 * dt_type - return file type
62 * @mistat: mistat structure
63 *
64 */
65
02da398b 66static inline int dt_type(struct p9_wstat *mistat)
e69e7fe5
EVH
67{
68 unsigned long perm = mistat->mode;
69 int rettype = DT_REG;
70
bd238fb4 71 if (perm & P9_DMDIR)
e69e7fe5 72 rettype = DT_DIR;
bd238fb4 73 if (perm & P9_DMSYMLINK)
e69e7fe5
EVH
74 rettype = DT_LNK;
75
76 return rettype;
77}
78
79/**
80 * v9fs_dir_readdir - read a directory
ee443996 81 * @filp: opened file structure
e69e7fe5
EVH
82 * @dirent: directory structure ???
83 * @filldir: function to populate directory structure ???
84 *
85 */
86
87static int v9fs_dir_readdir(struct file *filp, void *dirent, filldir_t filldir)
88{
bd238fb4 89 int over;
02da398b 90 struct p9_wstat st;
3e2796a9 91 int err = 0;
bd238fb4 92 struct p9_fid *fid;
06b55b46 93 int buflen;
3e2796a9
EVH
94 int reclen = 0;
95 struct p9_rdir *rdir;
bd238fb4
LI
96
97 P9_DPRINTK(P9_DEBUG_VFS, "name %s\n", filp->f_path.dentry->d_name.name);
bd238fb4 98 fid = filp->private_data;
bd238fb4 99
06b55b46 100 buflen = fid->clnt->msize - P9_IOHDRSZ;
3e2796a9
EVH
101
102 /* allocate rdir on demand */
103 if (!fid->rdir) {
104 rdir = kmalloc(sizeof(struct p9_rdir) + buflen, GFP_KERNEL);
105
106 if (rdir == NULL) {
107 err = -ENOMEM;
108 goto exit;
109 }
110 spin_lock(&filp->f_dentry->d_lock);
111 if (!fid->rdir) {
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;
116 rdir = NULL;
117 }
118 spin_unlock(&filp->f_dentry->d_lock);
119 kfree(rdir);
120 }
121 rdir = (struct p9_rdir *) fid->rdir;
122
123 err = mutex_lock_interruptible(&rdir->mutex);
124 while (err == 0) {
125 if (rdir->tail == rdir->head) {
126 err = v9fs_file_readn(filp, rdir->buf, NULL,
127 buflen, filp->f_pos);
128 if (err <= 0)
129 goto unlock_and_exit;
130
131 rdir->head = 0;
132 rdir->tail = err;
133 }
134
135 while (rdir->head < rdir->tail) {
136 err = p9stat_read(rdir->buf + rdir->head,
137 buflen - rdir->head, &st,
138 fid->clnt->dotu);
02da398b
EVH
139 if (err) {
140 P9_DPRINTK(P9_DEBUG_VFS, "returned %d\n", err);
06b55b46 141 err = -EIO;
02da398b 142 p9stat_free(&st);
3e2796a9 143 goto unlock_and_exit;
06b55b46 144 }
3e2796a9 145 reclen = st.size+2;
06b55b46 146
02da398b 147 over = filldir(dirent, st.name, strlen(st.name),
06b55b46
EVH
148 filp->f_pos, v9fs_qid2ino(&st.qid), dt_type(&st));
149
02da398b 150 p9stat_free(&st);
06b55b46
EVH
151
152 if (over) {
153 err = 0;
3e2796a9 154 goto unlock_and_exit;
06b55b46 155 }
3e2796a9
EVH
156 rdir->head += reclen;
157 filp->f_pos += reclen;
06b55b46 158 }
e69e7fe5
EVH
159 }
160
3e2796a9
EVH
161unlock_and_exit:
162 mutex_unlock(&rdir->mutex);
163exit:
06b55b46 164 return err;
e69e7fe5
EVH
165}
166
bd238fb4 167
e69e7fe5
EVH
168/**
169 * v9fs_dir_release - close a directory
170 * @inode: inode of the directory
171 * @filp: file pointer to a directory
172 *
173 */
174
175int v9fs_dir_release(struct inode *inode, struct file *filp)
176{
bd238fb4 177 struct p9_fid *fid;
e69e7fe5 178
bd238fb4
LI
179 fid = filp->private_data;
180 P9_DPRINTK(P9_DEBUG_VFS,
181 "inode: %p filp: %p fid: %d\n", inode, filp, fid->fid);
28fd1298 182 filemap_write_and_wait(inode->i_mapping);
bd238fb4 183 p9_client_clunk(fid);
e69e7fe5
EVH
184 return 0;
185}
186
4b6f5d20 187const struct file_operations v9fs_dir_operations = {
e69e7fe5 188 .read = generic_read_dir,
59af1584 189 .llseek = generic_file_llseek,
e69e7fe5
EVH
190 .readdir = v9fs_dir_readdir,
191 .open = v9fs_file_open,
192 .release = v9fs_dir_release,
193};