nvme.h: add an enum for cns values
[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>
5a0e3ad6 35#include <linux/slab.h>
e1200fe6 36#include <linux/uio.h>
bd238fb4
LI
37#include <net/9p/9p.h>
38#include <net/9p/client.h>
e69e7fe5 39
e69e7fe5 40#include "v9fs.h"
531b1094 41#include "v9fs_vfs.h"
e69e7fe5
EVH
42#include "fid.h"
43
3e2796a9
EVH
44/**
45 * struct p9_rdir - readdir accounting
3e2796a9
EVH
46 * @head: start offset of current dirread buffer
47 * @tail: end offset of current dirread buffer
48 * @buf: dirread buffer
49 *
50 * private structure for keeping track of readdir
51 * allocated on demand
52 */
53
54struct p9_rdir {
3e2796a9
EVH
55 int head;
56 int tail;
7ffdea7e 57 uint8_t buf[];
3e2796a9
EVH
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
fae4528b
AK
79static 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
e69e7fe5 88/**
7751bdb3 89 * v9fs_alloc_rdir_buf - Allocate buffer used for read and readdir
ee443996 90 * @filp: opened file structure
7751bdb3 91 * @buflen: Length in bytes of buffer to allocate
e69e7fe5
EVH
92 *
93 */
94
7ffdea7e 95static struct p9_rdir *v9fs_alloc_rdir_buf(struct file *filp, int buflen)
e69e7fe5 96{
7ffdea7e
AV
97 struct p9_fid *fid = filp->private_data;
98 if (!fid->rdir)
99 fid->rdir = kzalloc(sizeof(struct p9_rdir) + buflen, GFP_KERNEL);
100 return fid->rdir;
7751bdb3
SK
101}
102
103/**
8f29843a
AV
104 * v9fs_dir_readdir - iterate through a directory
105 * @file: opened file structure
106 * @ctx: actor we feed the entries to
7751bdb3
SK
107 *
108 */
109
8f29843a 110static int v9fs_dir_readdir(struct file *file, struct dir_context *ctx)
7751bdb3 111{
8f29843a 112 bool over;
7751bdb3
SK
113 struct p9_wstat st;
114 int err = 0;
115 struct p9_fid *fid;
116 int buflen;
117 int reclen = 0;
118 struct p9_rdir *rdir;
e1200fe6 119 struct kvec kvec;
7751bdb3 120
4b8e9923 121 p9_debug(P9_DEBUG_VFS, "name %pD\n", file);
8f29843a 122 fid = file->private_data;
7751bdb3
SK
123
124 buflen = fid->clnt->msize - P9_IOHDRSZ;
125
8f29843a 126 rdir = v9fs_alloc_rdir_buf(file, buflen);
7ffdea7e
AV
127 if (!rdir)
128 return -ENOMEM;
e1200fe6
AV
129 kvec.iov_base = rdir->buf;
130 kvec.iov_len = buflen;
3e2796a9 131
7ffdea7e 132 while (1) {
3e2796a9 133 if (rdir->tail == rdir->head) {
e1200fe6
AV
134 struct iov_iter to;
135 int n;
136 iov_iter_kvec(&to, READ | ITER_KVEC, &kvec, 1, buflen);
137 n = p9_client_read(file->private_data, ctx->pos, &to,
138 &err);
139 if (err)
7ffdea7e 140 return err;
8e3c5005
JB
141 if (n == 0)
142 return 0;
3e2796a9
EVH
143
144 rdir->head = 0;
e1200fe6 145 rdir->tail = n;
3e2796a9 146 }
3e2796a9 147 while (rdir->head < rdir->tail) {
fae4528b 148 p9stat_init(&st);
348b5901
AK
149 err = p9stat_read(fid->clnt, rdir->buf + rdir->head,
150 rdir->tail - rdir->head, &st);
02da398b 151 if (err) {
5d385153 152 p9_debug(P9_DEBUG_VFS, "returned %d\n", err);
02da398b 153 p9stat_free(&st);
7ffdea7e 154 return -EIO;
06b55b46 155 }
3e2796a9 156 reclen = st.size+2;
06b55b46 157
8f29843a
AV
158 over = !dir_emit(ctx, st.name, strlen(st.name),
159 v9fs_qid2ino(&st.qid), dt_type(&st));
02da398b 160 p9stat_free(&st);
7ffdea7e
AV
161 if (over)
162 return 0;
163
3e2796a9 164 rdir->head += reclen;
8f29843a 165 ctx->pos += reclen;
06b55b46 166 }
e69e7fe5 167 }
e69e7fe5
EVH
168}
169
7751bdb3 170/**
8f29843a
AV
171 * v9fs_dir_readdir_dotl - iterate through a directory
172 * @file: opened file structure
173 * @ctx: actor we feed the entries to
7751bdb3
SK
174 *
175 */
8f29843a 176static int v9fs_dir_readdir_dotl(struct file *file, struct dir_context *ctx)
7751bdb3 177{
7751bdb3
SK
178 int err = 0;
179 struct p9_fid *fid;
180 int buflen;
181 struct p9_rdir *rdir;
182 struct p9_dirent curdirent;
7751bdb3 183
4b8e9923 184 p9_debug(P9_DEBUG_VFS, "name %pD\n", file);
8f29843a 185 fid = file->private_data;
7751bdb3
SK
186
187 buflen = fid->clnt->msize - P9_READDIRHDRSZ;
188
8f29843a 189 rdir = v9fs_alloc_rdir_buf(file, buflen);
7ffdea7e
AV
190 if (!rdir)
191 return -ENOMEM;
7751bdb3 192
7ffdea7e 193 while (1) {
7751bdb3
SK
194 if (rdir->tail == rdir->head) {
195 err = p9_client_readdir(fid, rdir->buf, buflen,
8f29843a 196 ctx->pos);
7751bdb3 197 if (err <= 0)
7ffdea7e 198 return err;
7751bdb3
SK
199
200 rdir->head = 0;
201 rdir->tail = err;
202 }
203
204 while (rdir->head < rdir->tail) {
205
348b5901
AK
206 err = p9dirent_read(fid->clnt, rdir->buf + rdir->head,
207 rdir->tail - rdir->head,
208 &curdirent);
7751bdb3 209 if (err < 0) {
5d385153 210 p9_debug(P9_DEBUG_VFS, "returned %d\n", err);
7ffdea7e 211 return -EIO;
7751bdb3
SK
212 }
213
8f29843a
AV
214 if (!dir_emit(ctx, curdirent.d_name,
215 strlen(curdirent.d_name),
216 v9fs_qid2ino(&curdirent.qid),
217 curdirent.d_type))
7ffdea7e 218 return 0;
7751bdb3 219
8f29843a 220 ctx->pos = curdirent.d_off;
7751bdb3
SK
221 rdir->head += err;
222 }
223 }
7751bdb3
SK
224}
225
bd238fb4 226
e69e7fe5
EVH
227/**
228 * v9fs_dir_release - close a directory
229 * @inode: inode of the directory
230 * @filp: file pointer to a directory
231 *
232 */
233
234int v9fs_dir_release(struct inode *inode, struct file *filp)
235{
bd238fb4 236 struct p9_fid *fid;
e69e7fe5 237
bd238fb4 238 fid = filp->private_data;
5d385153
JP
239 p9_debug(P9_DEBUG_VFS, "inode: %p filp: %p fid: %d\n",
240 inode, filp, fid ? fid->fid : -1);
62726a7a 241 if (fid)
242 p9_client_clunk(fid);
e69e7fe5
EVH
243 return 0;
244}
245
4b6f5d20 246const struct file_operations v9fs_dir_operations = {
e69e7fe5 247 .read = generic_read_dir,
59af1584 248 .llseek = generic_file_llseek,
5963ded8 249 .iterate_shared = v9fs_dir_readdir,
e69e7fe5
EVH
250 .open = v9fs_file_open,
251 .release = v9fs_dir_release,
252};
9b6533c9
SK
253
254const struct file_operations v9fs_dir_operations_dotl = {
255 .read = generic_read_dir,
256 .llseek = generic_file_llseek,
5963ded8 257 .iterate_shared = v9fs_dir_readdir_dotl,
9b6533c9
SK
258 .open = v9fs_file_open,
259 .release = v9fs_dir_release,
b165d601 260 .fsync = v9fs_file_fsync_dotl,
9b6533c9 261};