blob: cb6c4031af552b010c2e8ff5469b9088c769b3b7 [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>
Al Viroe1200fe62015-04-01 23:42:28 -040036#include <linux/uio.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050037#include <net/9p/9p.h>
38#include <net/9p/client.h>
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070039
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070040#include "v9fs.h"
Latchesar Ionkov531b1092006-01-08 01:05:00 -080041#include "v9fs_vfs.h"
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070042#include "fid.h"
43
44/**
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -060045 * struct p9_rdir - readdir accounting
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -060046 * @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
79/**
Sripathi Kodi7751bdb2010-06-04 13:41:26 +000080 * v9fs_alloc_rdir_buf - Allocate buffer used for read and readdir
81 * @filp: opened file structure
82 * @buflen: Length in bytes of buffer to allocate
83 *
84 */
85
Al Viro7ffdea72013-01-26 00:11:36 +000086static struct p9_rdir *v9fs_alloc_rdir_buf(struct file *filp, int buflen)
Sripathi Kodi7751bdb2010-06-04 13:41:26 +000087{
Al Viro7ffdea72013-01-26 00:11:36 +000088 struct p9_fid *fid = filp->private_data;
89 if (!fid->rdir)
90 fid->rdir = kzalloc(sizeof(struct p9_rdir) + buflen, GFP_KERNEL);
91 return fid->rdir;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +000092}
93
94/**
Al Viro8f298432013-05-17 17:51:41 -040095 * v9fs_dir_readdir - iterate through a directory
96 * @file: opened file structure
97 * @ctx: actor we feed the entries to
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070098 *
99 */
100
Al Viro8f298432013-05-17 17:51:41 -0400101static int v9fs_dir_readdir(struct file *file, struct dir_context *ctx)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700102{
Al Viro8f298432013-05-17 17:51:41 -0400103 bool over;
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500104 struct p9_wstat st;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600105 int err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500106 struct p9_fid *fid;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500107 int buflen;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600108 struct p9_rdir *rdir;
Al Viroe1200fe62015-04-01 23:42:28 -0400109 struct kvec kvec;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700110
Al Viro4b8e9922014-08-19 20:17:38 -0400111 p9_debug(P9_DEBUG_VFS, "name %pD\n", file);
Al Viro8f298432013-05-17 17:51:41 -0400112 fid = file->private_data;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700113
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500114 buflen = fid->clnt->msize - P9_IOHDRSZ;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700115
Al Viro8f298432013-05-17 17:51:41 -0400116 rdir = v9fs_alloc_rdir_buf(file, buflen);
Al Viro7ffdea72013-01-26 00:11:36 +0000117 if (!rdir)
118 return -ENOMEM;
Al Viroe1200fe62015-04-01 23:42:28 -0400119 kvec.iov_base = rdir->buf;
120 kvec.iov_len = buflen;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600121
Al Viro7ffdea72013-01-26 00:11:36 +0000122 while (1) {
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600123 if (rdir->tail == rdir->head) {
Al Viroe1200fe62015-04-01 23:42:28 -0400124 struct iov_iter to;
125 int n;
126 iov_iter_kvec(&to, READ | ITER_KVEC, &kvec, 1, buflen);
127 n = p9_client_read(file->private_data, ctx->pos, &to,
128 &err);
129 if (err)
Al Viro7ffdea72013-01-26 00:11:36 +0000130 return err;
Johannes Berg8e3c5002015-04-22 11:55:14 +0200131 if (n == 0)
132 return 0;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600133
134 rdir->head = 0;
Al Viroe1200fe62015-04-01 23:42:28 -0400135 rdir->tail = n;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600136 }
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600137 while (rdir->head < rdir->tail) {
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530138 err = p9stat_read(fid->clnt, rdir->buf + rdir->head,
139 rdir->tail - rdir->head, &st);
Gertjan Halkesdb77c782018-09-05 15:41:29 +0900140 if (err <= 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800141 p9_debug(P9_DEBUG_VFS, "returned %d\n", err);
Al Viro7ffdea72013-01-26 00:11:36 +0000142 return -EIO;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500143 }
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500144
Al Viro8f298432013-05-17 17:51:41 -0400145 over = !dir_emit(ctx, st.name, strlen(st.name),
146 v9fs_qid2ino(&st.qid), dt_type(&st));
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500147 p9stat_free(&st);
Al Viro7ffdea72013-01-26 00:11:36 +0000148 if (over)
149 return 0;
150
Gertjan Halkesdb77c782018-09-05 15:41:29 +0900151 rdir->head += err;
152 ctx->pos += err;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500153 }
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700154 }
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700155}
156
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000157/**
Al Viro8f298432013-05-17 17:51:41 -0400158 * v9fs_dir_readdir_dotl - iterate through a directory
159 * @file: opened file structure
160 * @ctx: actor we feed the entries to
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000161 *
162 */
Al Viro8f298432013-05-17 17:51:41 -0400163static int v9fs_dir_readdir_dotl(struct file *file, struct dir_context *ctx)
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000164{
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000165 int err = 0;
166 struct p9_fid *fid;
167 int buflen;
168 struct p9_rdir *rdir;
169 struct p9_dirent curdirent;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000170
Al Viro4b8e9922014-08-19 20:17:38 -0400171 p9_debug(P9_DEBUG_VFS, "name %pD\n", file);
Al Viro8f298432013-05-17 17:51:41 -0400172 fid = file->private_data;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000173
174 buflen = fid->clnt->msize - P9_READDIRHDRSZ;
175
Al Viro8f298432013-05-17 17:51:41 -0400176 rdir = v9fs_alloc_rdir_buf(file, buflen);
Al Viro7ffdea72013-01-26 00:11:36 +0000177 if (!rdir)
178 return -ENOMEM;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000179
Al Viro7ffdea72013-01-26 00:11:36 +0000180 while (1) {
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000181 if (rdir->tail == rdir->head) {
182 err = p9_client_readdir(fid, rdir->buf, buflen,
Al Viro8f298432013-05-17 17:51:41 -0400183 ctx->pos);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000184 if (err <= 0)
Al Viro7ffdea72013-01-26 00:11:36 +0000185 return err;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000186
187 rdir->head = 0;
188 rdir->tail = err;
189 }
190
191 while (rdir->head < rdir->tail) {
192
Aneesh Kumar K.V348b5902011-08-07 00:46:59 +0530193 err = p9dirent_read(fid->clnt, rdir->buf + rdir->head,
194 rdir->tail - rdir->head,
195 &curdirent);
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000196 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800197 p9_debug(P9_DEBUG_VFS, "returned %d\n", err);
Al Viro7ffdea72013-01-26 00:11:36 +0000198 return -EIO;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000199 }
200
Al Viro8f298432013-05-17 17:51:41 -0400201 if (!dir_emit(ctx, curdirent.d_name,
202 strlen(curdirent.d_name),
203 v9fs_qid2ino(&curdirent.qid),
204 curdirent.d_type))
Al Viro7ffdea72013-01-26 00:11:36 +0000205 return 0;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000206
Al Viro8f298432013-05-17 17:51:41 -0400207 ctx->pos = curdirent.d_off;
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000208 rdir->head += err;
209 }
210 }
Sripathi Kodi7751bdb2010-06-04 13:41:26 +0000211}
212
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500213
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700214/**
215 * v9fs_dir_release - close a directory
216 * @inode: inode of the directory
217 * @filp: file pointer to a directory
218 *
219 */
220
221int v9fs_dir_release(struct inode *inode, struct file *filp)
222{
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500223 struct p9_fid *fid;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700224
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500225 fid = filp->private_data;
Joe Perches5d385152011-11-28 10:40:46 -0800226 p9_debug(P9_DEBUG_VFS, "inode: %p filp: %p fid: %d\n",
227 inode, filp, fid ? fid->fid : -1);
jvrao62726a72010-08-25 16:26:21 +0000228 if (fid)
229 p9_client_clunk(fid);
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700230 return 0;
231}
232
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800233const struct file_operations v9fs_dir_operations = {
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700234 .read = generic_read_dir,
Al Viro59af1582008-08-24 07:24:41 -0400235 .llseek = generic_file_llseek,
Al Viro5963ded2016-05-01 00:08:03 -0400236 .iterate_shared = v9fs_dir_readdir,
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700237 .open = v9fs_file_open,
238 .release = v9fs_dir_release,
239};
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000240
241const struct file_operations v9fs_dir_operations_dotl = {
242 .read = generic_read_dir,
243 .llseek = generic_file_llseek,
Al Viro5963ded2016-05-01 00:08:03 -0400244 .iterate_shared = v9fs_dir_readdir_dotl,
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000245 .open = v9fs_file_open,
246 .release = v9fs_dir_release,
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -0700247 .fsync = v9fs_file_fsync_dotl,
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000248};