blob: 36d961f342af5b95e4e79c42f4a82b5893a73823 [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);
Dan Carpenter85a770a2010-03-30 09:41:25 +0000134 if (err)
135 return err;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600136 while (err == 0) {
137 if (rdir->tail == rdir->head) {
138 err = v9fs_file_readn(filp, rdir->buf, NULL,
139 buflen, filp->f_pos);
140 if (err <= 0)
141 goto unlock_and_exit;
142
143 rdir->head = 0;
144 rdir->tail = err;
145 }
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600146 while (rdir->head < rdir->tail) {
Aneesh Kumar K.Vfae45282010-03-06 04:44:16 +0000147 p9stat_init(&st);
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600148 err = p9stat_read(rdir->buf + rdir->head,
Latchesar Ionkovda7ddd32010-07-19 15:40:03 -0500149 rdir->tail - rdir->head, &st,
Sripathi Kodi342fee12010-03-05 18:50:14 +0000150 fid->clnt->proto_version);
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500151 if (err) {
152 P9_DPRINTK(P9_DEBUG_VFS, "returned %d\n", err);
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500153 err = -EIO;
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500154 p9stat_free(&st);
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600155 goto unlock_and_exit;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500156 }
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600157 reclen = st.size+2;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500158
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500159 over = filldir(dirent, st.name, strlen(st.name),
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500160 filp->f_pos, v9fs_qid2ino(&st.qid), dt_type(&st));
161
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500162 p9stat_free(&st);
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500163
164 if (over) {
165 err = 0;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600166 goto unlock_and_exit;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500167 }
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600168 rdir->head += reclen;
169 filp->f_pos += reclen;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500170 }
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700171 }
172
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600173unlock_and_exit:
174 mutex_unlock(&rdir->mutex);
175exit:
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500176 return err;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700177}
178
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500179
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700180/**
181 * v9fs_dir_release - close a directory
182 * @inode: inode of the directory
183 * @filp: file pointer to a directory
184 *
185 */
186
187int v9fs_dir_release(struct inode *inode, struct file *filp)
188{
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500189 struct p9_fid *fid;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700190
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500191 fid = filp->private_data;
192 P9_DPRINTK(P9_DEBUG_VFS,
193 "inode: %p filp: %p fid: %d\n", inode, filp, fid->fid);
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800194 filemap_write_and_wait(inode->i_mapping);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500195 p9_client_clunk(fid);
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700196 return 0;
197}
198
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800199const struct file_operations v9fs_dir_operations = {
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700200 .read = generic_read_dir,
Al Viro59af1582008-08-24 07:24:41 -0400201 .llseek = generic_file_llseek,
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700202 .readdir = v9fs_dir_readdir,
203 .open = v9fs_file_open,
204 .release = v9fs_dir_release,
205};
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000206
207const struct file_operations v9fs_dir_operations_dotl = {
208 .read = generic_read_dir,
209 .llseek = generic_file_llseek,
210 .readdir = v9fs_dir_readdir,
211 .open = v9fs_file_open,
212 .release = v9fs_dir_release,
213};