Merge branch 'iov_iter' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[deliverable/linux.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>
bd238fb4
LI
36#include <net/9p/9p.h>
37#include <net/9p/client.h>
e69e7fe5 38
e69e7fe5 39#include "v9fs.h"
531b1094 40#include "v9fs_vfs.h"
e69e7fe5
EVH
41#include "fid.h"
42
3e2796a9
EVH
43/**
44 * struct p9_rdir - readdir accounting
3e2796a9
EVH
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 {
3e2796a9
EVH
54 int head;
55 int tail;
7ffdea7e 56 uint8_t buf[];
3e2796a9
EVH
57};
58
e69e7fe5
EVH
59/**
60 * dt_type - return file type
61 * @mistat: mistat structure
62 *
63 */
64
02da398b 65static inline int dt_type(struct p9_wstat *mistat)
e69e7fe5
EVH
66{
67 unsigned long perm = mistat->mode;
68 int rettype = DT_REG;
69
bd238fb4 70 if (perm & P9_DMDIR)
e69e7fe5 71 rettype = DT_DIR;
bd238fb4 72 if (perm & P9_DMSYMLINK)
e69e7fe5
EVH
73 rettype = DT_LNK;
74
75 return rettype;
76}
77
fae4528b
AK
78static void p9stat_init(struct p9_wstat *stbuf)
79{
80 stbuf->name = NULL;
81 stbuf->uid = NULL;
82 stbuf->gid = NULL;
83 stbuf->muid = NULL;
84 stbuf->extension = NULL;
85}
86
e69e7fe5 87/**
7751bdb3 88 * v9fs_alloc_rdir_buf - Allocate buffer used for read and readdir
ee443996 89 * @filp: opened file structure
7751bdb3 90 * @buflen: Length in bytes of buffer to allocate
e69e7fe5
EVH
91 *
92 */
93
7ffdea7e 94static struct p9_rdir *v9fs_alloc_rdir_buf(struct file *filp, int buflen)
e69e7fe5 95{
7ffdea7e
AV
96 struct p9_fid *fid = filp->private_data;
97 if (!fid->rdir)
98 fid->rdir = kzalloc(sizeof(struct p9_rdir) + buflen, GFP_KERNEL);
99 return fid->rdir;
7751bdb3
SK
100}
101
102/**
8f29843a
AV
103 * v9fs_dir_readdir - iterate through a directory
104 * @file: opened file structure
105 * @ctx: actor we feed the entries to
7751bdb3
SK
106 *
107 */
108
8f29843a 109static int v9fs_dir_readdir(struct file *file, struct dir_context *ctx)
7751bdb3 110{
8f29843a 111 bool over;
7751bdb3
SK
112 struct p9_wstat st;
113 int err = 0;
114 struct p9_fid *fid;
115 int buflen;
116 int reclen = 0;
117 struct p9_rdir *rdir;
118
4b8e9923 119 p9_debug(P9_DEBUG_VFS, "name %pD\n", file);
8f29843a 120 fid = file->private_data;
7751bdb3
SK
121
122 buflen = fid->clnt->msize - P9_IOHDRSZ;
123
8f29843a 124 rdir = v9fs_alloc_rdir_buf(file, buflen);
7ffdea7e
AV
125 if (!rdir)
126 return -ENOMEM;
3e2796a9 127
7ffdea7e 128 while (1) {
3e2796a9 129 if (rdir->tail == rdir->head) {
8f29843a
AV
130 err = v9fs_file_readn(file, rdir->buf, NULL,
131 buflen, ctx->pos);
3e2796a9 132 if (err <= 0)
7ffdea7e 133 return err;
3e2796a9
EVH
134
135 rdir->head = 0;
136 rdir->tail = err;
137 }
3e2796a9 138 while (rdir->head < rdir->tail) {
fae4528b 139 p9stat_init(&st);
348b5901
AK
140 err = p9stat_read(fid->clnt, rdir->buf + rdir->head,
141 rdir->tail - rdir->head, &st);
02da398b 142 if (err) {
5d385153 143 p9_debug(P9_DEBUG_VFS, "returned %d\n", err);
02da398b 144 p9stat_free(&st);
7ffdea7e 145 return -EIO;
06b55b46 146 }
3e2796a9 147 reclen = st.size+2;
06b55b46 148
8f29843a
AV
149 over = !dir_emit(ctx, st.name, strlen(st.name),
150 v9fs_qid2ino(&st.qid), dt_type(&st));
02da398b 151 p9stat_free(&st);
7ffdea7e
AV
152 if (over)
153 return 0;
154
3e2796a9 155 rdir->head += reclen;
8f29843a 156 ctx->pos += reclen;
06b55b46 157 }
e69e7fe5 158 }
e69e7fe5
EVH
159}
160
7751bdb3 161/**
8f29843a
AV
162 * v9fs_dir_readdir_dotl - iterate through a directory
163 * @file: opened file structure
164 * @ctx: actor we feed the entries to
7751bdb3
SK
165 *
166 */
8f29843a 167static int v9fs_dir_readdir_dotl(struct file *file, struct dir_context *ctx)
7751bdb3 168{
7751bdb3
SK
169 int err = 0;
170 struct p9_fid *fid;
171 int buflen;
172 struct p9_rdir *rdir;
173 struct p9_dirent curdirent;
7751bdb3 174
4b8e9923 175 p9_debug(P9_DEBUG_VFS, "name %pD\n", file);
8f29843a 176 fid = file->private_data;
7751bdb3
SK
177
178 buflen = fid->clnt->msize - P9_READDIRHDRSZ;
179
8f29843a 180 rdir = v9fs_alloc_rdir_buf(file, buflen);
7ffdea7e
AV
181 if (!rdir)
182 return -ENOMEM;
7751bdb3 183
7ffdea7e 184 while (1) {
7751bdb3
SK
185 if (rdir->tail == rdir->head) {
186 err = p9_client_readdir(fid, rdir->buf, buflen,
8f29843a 187 ctx->pos);
7751bdb3 188 if (err <= 0)
7ffdea7e 189 return err;
7751bdb3
SK
190
191 rdir->head = 0;
192 rdir->tail = err;
193 }
194
195 while (rdir->head < rdir->tail) {
196
348b5901
AK
197 err = p9dirent_read(fid->clnt, rdir->buf + rdir->head,
198 rdir->tail - rdir->head,
199 &curdirent);
7751bdb3 200 if (err < 0) {
5d385153 201 p9_debug(P9_DEBUG_VFS, "returned %d\n", err);
7ffdea7e 202 return -EIO;
7751bdb3
SK
203 }
204
8f29843a
AV
205 if (!dir_emit(ctx, curdirent.d_name,
206 strlen(curdirent.d_name),
207 v9fs_qid2ino(&curdirent.qid),
208 curdirent.d_type))
7ffdea7e 209 return 0;
7751bdb3 210
8f29843a 211 ctx->pos = curdirent.d_off;
7751bdb3
SK
212 rdir->head += err;
213 }
214 }
7751bdb3
SK
215}
216
bd238fb4 217
e69e7fe5
EVH
218/**
219 * v9fs_dir_release - close a directory
220 * @inode: inode of the directory
221 * @filp: file pointer to a directory
222 *
223 */
224
225int v9fs_dir_release(struct inode *inode, struct file *filp)
226{
bd238fb4 227 struct p9_fid *fid;
e69e7fe5 228
bd238fb4 229 fid = filp->private_data;
5d385153
JP
230 p9_debug(P9_DEBUG_VFS, "inode: %p filp: %p fid: %d\n",
231 inode, filp, fid ? fid->fid : -1);
62726a7a 232 if (fid)
233 p9_client_clunk(fid);
e69e7fe5
EVH
234 return 0;
235}
236
4b6f5d20 237const struct file_operations v9fs_dir_operations = {
e69e7fe5 238 .read = generic_read_dir,
59af1584 239 .llseek = generic_file_llseek,
8f29843a 240 .iterate = v9fs_dir_readdir,
e69e7fe5
EVH
241 .open = v9fs_file_open,
242 .release = v9fs_dir_release,
243};
9b6533c9
SK
244
245const struct file_operations v9fs_dir_operations_dotl = {
246 .read = generic_read_dir,
247 .llseek = generic_file_llseek,
8f29843a 248 .iterate = v9fs_dir_readdir_dotl,
9b6533c9
SK
249 .open = v9fs_file_open,
250 .release = v9fs_dir_release,
b165d601 251 .fsync = v9fs_file_fsync_dotl,
9b6533c9 252};
This page took 0.671001 seconds and 5 git commands to generate.