blob: 909711f57c0d72e734bd96a00d8fc16c28c396b1 [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 {
55 struct mutex mutex;
56 int head;
57 int tail;
58 uint8_t *buf;
59};
60
61/**
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070062 * dt_type - return file type
63 * @mistat: mistat structure
64 *
65 */
66
Eric Van Hensbergen02da3982008-10-16 08:29:30 -050067static inline int dt_type(struct p9_wstat *mistat)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070068{
69 unsigned long perm = mistat->mode;
70 int rettype = DT_REG;
71
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050072 if (perm & P9_DMDIR)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070073 rettype = DT_DIR;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050074 if (perm & P9_DMSYMLINK)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070075 rettype = DT_LNK;
76
77 return rettype;
78}
79
Aneesh Kumar K.Vfae45282010-03-06 04:44:16 +000080static void p9stat_init(struct p9_wstat *stbuf)
81{
82 stbuf->name = NULL;
83 stbuf->uid = NULL;
84 stbuf->gid = NULL;
85 stbuf->muid = NULL;
86 stbuf->extension = NULL;
87}
88
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070089/**
90 * v9fs_dir_readdir - read a directory
Eric Van Hensbergenee443992008-03-05 07:08:09 -060091 * @filp: opened file structure
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070092 * @dirent: directory structure ???
93 * @filldir: function to populate directory structure ???
94 *
95 */
96
97static int v9fs_dir_readdir(struct file *filp, void *dirent, filldir_t filldir)
98{
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050099 int over;
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500100 struct p9_wstat st;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600101 int err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500102 struct p9_fid *fid;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500103 int buflen;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600104 int reclen = 0;
105 struct p9_rdir *rdir;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700106
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500107 P9_DPRINTK(P9_DEBUG_VFS, "name %s\n", filp->f_path.dentry->d_name.name);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500108 fid = filp->private_data;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700109
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500110 buflen = fid->clnt->msize - P9_IOHDRSZ;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700111
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600112 /* allocate rdir on demand */
113 if (!fid->rdir) {
114 rdir = kmalloc(sizeof(struct p9_rdir) + buflen, GFP_KERNEL);
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700115
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600116 if (rdir == NULL) {
117 err = -ENOMEM;
118 goto exit;
119 }
120 spin_lock(&filp->f_dentry->d_lock);
121 if (!fid->rdir) {
122 rdir->buf = (uint8_t *)rdir + sizeof(struct p9_rdir);
123 mutex_init(&rdir->mutex);
124 rdir->head = rdir->tail = 0;
125 fid->rdir = (void *) rdir;
126 rdir = NULL;
127 }
128 spin_unlock(&filp->f_dentry->d_lock);
129 kfree(rdir);
130 }
131 rdir = (struct p9_rdir *) fid->rdir;
132
133 err = mutex_lock_interruptible(&rdir->mutex);
134 while (err == 0) {
135 if (rdir->tail == rdir->head) {
136 err = v9fs_file_readn(filp, rdir->buf, NULL,
137 buflen, filp->f_pos);
138 if (err <= 0)
139 goto unlock_and_exit;
140
141 rdir->head = 0;
142 rdir->tail = err;
143 }
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600144 while (rdir->head < rdir->tail) {
Aneesh Kumar K.Vfae45282010-03-06 04:44:16 +0000145 p9stat_init(&st);
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600146 err = p9stat_read(rdir->buf + rdir->head,
147 buflen - rdir->head, &st,
Sripathi Kodi342fee12010-03-05 18:50:14 +0000148 fid->clnt->proto_version);
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500149 if (err) {
150 P9_DPRINTK(P9_DEBUG_VFS, "returned %d\n", err);
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500151 err = -EIO;
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500152 p9stat_free(&st);
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600153 goto unlock_and_exit;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500154 }
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600155 reclen = st.size+2;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500156
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500157 over = filldir(dirent, st.name, strlen(st.name),
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500158 filp->f_pos, v9fs_qid2ino(&st.qid), dt_type(&st));
159
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500160 p9stat_free(&st);
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500161
162 if (over) {
163 err = 0;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600164 goto unlock_and_exit;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500165 }
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600166 rdir->head += reclen;
167 filp->f_pos += reclen;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500168 }
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700169 }
170
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600171unlock_and_exit:
172 mutex_unlock(&rdir->mutex);
173exit:
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500174 return err;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700175}
176
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500177
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700178/**
179 * v9fs_dir_release - close a directory
180 * @inode: inode of the directory
181 * @filp: file pointer to a directory
182 *
183 */
184
185int v9fs_dir_release(struct inode *inode, struct file *filp)
186{
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500187 struct p9_fid *fid;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700188
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500189 fid = filp->private_data;
190 P9_DPRINTK(P9_DEBUG_VFS,
191 "inode: %p filp: %p fid: %d\n", inode, filp, fid->fid);
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800192 filemap_write_and_wait(inode->i_mapping);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500193 p9_client_clunk(fid);
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700194 return 0;
195}
196
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800197const struct file_operations v9fs_dir_operations = {
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700198 .read = generic_read_dir,
Al Viro59af1582008-08-24 07:24:41 -0400199 .llseek = generic_file_llseek,
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700200 .readdir = v9fs_dir_readdir,
201 .open = v9fs_file_open,
202 .release = v9fs_dir_release,
203};