blob: be1e34adc3c602ca0e2eb49f3607c7076ddafb3c [file] [log] [blame]
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -07001/*
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
Eric Van Hensbergen42e8c502006-03-25 03:07:28 -080010 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070012 *
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>
Al Viro914e2632006-10-18 13:55:46 -040032#include <linux/sched.h>
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070033#include <linux/inet.h>
34#include <linux/idr.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050036#include <net/9p/9p.h>
37#include <net/9p/client.h>
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070038
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070039#include "v9fs.h"
Latchesar Ionkov531b1092006-01-08 01:05:00 -080040#include "v9fs_vfs.h"
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070041#include "fid.h"
42
43/**
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -060044 * 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
49 *
50 * private structure for keeping track of readdir
51 * allocated on demand
52 */
53
54struct p9_rdir {
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -060055 int head;
56 int tail;
Al Viro7ffdea72013-01-26 00:11:36 +000057 uint8_t buf[];
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -060058};
59
60/**
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070061 * dt_type - return file type
62 * @mistat: mistat structure
63 *
64 */
65
Eric Van Hensbergen02da3982008-10-16 08:29:30 -050066static inline int dt_type(struct p9_wstat *mistat)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070067{
68 unsigned long perm = mistat->mode;
69 int rettype = DT_REG;
70
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050071 if (perm & P9_DMDIR)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070072 rettype = DT_DIR;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050073 if (perm & P9_DMSYMLINK)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070074 rettype = DT_LNK;
75
76 return rettype;
77}
78
Aneesh Kumar K.Vfae45282010-03-06 04:44:16 +000079static 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
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070088/**
Sripathi Kodi7751bdb2010-06-04 13:41:26 +000089 * v9fs_alloc_rdir_buf - Allocate buffer used for read and readdir
90 * @filp: opened file structure
91 * @buflen: Length in bytes of buffer to allocate
92 *
93 */
94
Al Viro7ffdea72013-01-26 00:11:36 +000095static struct p9_rdir *v9fs_alloc_rdir_buf(struct file *filp, int buflen)
Sripathi Kodi7751bdb2010-06-04 13:41:26 +000096{
Al Viro7ffdea72013-01-26 00:11:36 +000097 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;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000101}
102
103/**
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700104 * v9fs_dir_readdir - read a directory
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600105 * @filp: opened file structure
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700106 * @dirent: directory structure ???
107 * @filldir: function to populate directory structure ???
108 *
109 */
110
111static int v9fs_dir_readdir(struct file *filp, void *dirent, filldir_t filldir)
112{
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500113 int over;
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500114 struct p9_wstat st;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600115 int err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500116 struct p9_fid *fid;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500117 int buflen;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600118 int reclen = 0;
119 struct p9_rdir *rdir;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700120
Joe Perches5d385152011-11-28 10:40:46 -0800121 p9_debug(P9_DEBUG_VFS, "name %s\n", filp->f_path.dentry->d_name.name);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500122 fid = filp->private_data;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700123
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500124 buflen = fid->clnt->msize - P9_IOHDRSZ;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700125
Al Viro7ffdea72013-01-26 00:11:36 +0000126 rdir = v9fs_alloc_rdir_buf(filp, buflen);
127 if (!rdir)
128 return -ENOMEM;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600129
Al Viro7ffdea72013-01-26 00:11:36 +0000130 while (1) {
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600131 if (rdir->tail == rdir->head) {
132 err = v9fs_file_readn(filp, rdir->buf, NULL,
133 buflen, filp->f_pos);
134 if (err <= 0)
Al Viro7ffdea72013-01-26 00:11:36 +0000135 return err;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600136
137 rdir->head = 0;
138 rdir->tail = err;
139 }
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600140 while (rdir->head < rdir->tail) {
Aneesh Kumar K.Vfae45282010-03-06 04:44:16 +0000141 p9stat_init(&st);
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530142 err = p9stat_read(fid->clnt, rdir->buf + rdir->head,
143 rdir->tail - rdir->head, &st);
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500144 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800145 p9_debug(P9_DEBUG_VFS, "returned %d\n", err);
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500146 p9stat_free(&st);
Al Viro7ffdea72013-01-26 00:11:36 +0000147 return -EIO;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500148 }
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600149 reclen = st.size+2;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500150
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500151 over = filldir(dirent, st.name, strlen(st.name),
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500152 filp->f_pos, v9fs_qid2ino(&st.qid), dt_type(&st));
153
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500154 p9stat_free(&st);
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500155
Al Viro7ffdea72013-01-26 00:11:36 +0000156 if (over)
157 return 0;
158
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600159 rdir->head += reclen;
160 filp->f_pos += reclen;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500161 }
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700162 }
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700163}
164
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000165/**
166 * v9fs_dir_readdir_dotl - read a directory
167 * @filp: opened file structure
168 * @dirent: buffer to fill dirent structures
169 * @filldir: function to populate dirent structures
170 *
171 */
172static int v9fs_dir_readdir_dotl(struct file *filp, void *dirent,
173 filldir_t filldir)
174{
175 int over;
176 int err = 0;
177 struct p9_fid *fid;
178 int buflen;
179 struct p9_rdir *rdir;
180 struct p9_dirent curdirent;
181 u64 oldoffset = 0;
182
Joe Perches5d385152011-11-28 10:40:46 -0800183 p9_debug(P9_DEBUG_VFS, "name %s\n", filp->f_path.dentry->d_name.name);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000184 fid = filp->private_data;
185
186 buflen = fid->clnt->msize - P9_READDIRHDRSZ;
187
Al Viro7ffdea72013-01-26 00:11:36 +0000188 rdir = v9fs_alloc_rdir_buf(filp, buflen);
189 if (!rdir)
190 return -ENOMEM;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000191
Al Viro7ffdea72013-01-26 00:11:36 +0000192 while (1) {
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000193 if (rdir->tail == rdir->head) {
194 err = p9_client_readdir(fid, rdir->buf, buflen,
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +0530195 filp->f_pos);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000196 if (err <= 0)
Al Viro7ffdea72013-01-26 00:11:36 +0000197 return err;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000198
199 rdir->head = 0;
200 rdir->tail = err;
201 }
202
203 while (rdir->head < rdir->tail) {
204
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530205 err = p9dirent_read(fid->clnt, rdir->buf + rdir->head,
206 rdir->tail - rdir->head,
207 &curdirent);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000208 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800209 p9_debug(P9_DEBUG_VFS, "returned %d\n", err);
Al Viro7ffdea72013-01-26 00:11:36 +0000210 return -EIO;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000211 }
212
213 /* d_off in dirent structure tracks the offset into
214 * the next dirent in the dir. However, filldir()
215 * expects offset into the current dirent. Hence
216 * while calling filldir send the offset from the
217 * previous dirent structure.
218 */
219 over = filldir(dirent, curdirent.d_name,
220 strlen(curdirent.d_name),
221 oldoffset, v9fs_qid2ino(&curdirent.qid),
222 curdirent.d_type);
223 oldoffset = curdirent.d_off;
224
Al Viro7ffdea72013-01-26 00:11:36 +0000225 if (over)
226 return 0;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000227
228 filp->f_pos = curdirent.d_off;
229 rdir->head += err;
230 }
231 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000232}
233
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500234
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700235/**
236 * v9fs_dir_release - close a directory
237 * @inode: inode of the directory
238 * @filp: file pointer to a directory
239 *
240 */
241
242int v9fs_dir_release(struct inode *inode, struct file *filp)
243{
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500244 struct p9_fid *fid;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700245
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500246 fid = filp->private_data;
Joe Perches5d385152011-11-28 10:40:46 -0800247 p9_debug(P9_DEBUG_VFS, "inode: %p filp: %p fid: %d\n",
248 inode, filp, fid ? fid->fid : -1);
jvrao62726a72010-08-25 16:26:21 +0000249 if (fid)
250 p9_client_clunk(fid);
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700251 return 0;
252}
253
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800254const struct file_operations v9fs_dir_operations = {
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700255 .read = generic_read_dir,
Al Viro59af1582008-08-24 07:24:41 -0400256 .llseek = generic_file_llseek,
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700257 .readdir = v9fs_dir_readdir,
258 .open = v9fs_file_open,
259 .release = v9fs_dir_release,
260};
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000261
262const struct file_operations v9fs_dir_operations_dotl = {
263 .read = generic_read_dir,
264 .llseek = generic_file_llseek,
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000265 .readdir = v9fs_dir_readdir_dotl,
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000266 .open = v9fs_file_open,
267 .release = v9fs_dir_release,
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -0700268 .fsync = v9fs_file_fsync_dotl,
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000269};