blob: d8a3afe4ff722fcac539863e59a3278d459ec0bd [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>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050035#include <net/9p/9p.h>
36#include <net/9p/client.h>
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070037
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070038#include "v9fs.h"
Latchesar Ionkov531b1092006-01-08 01:05:00 -080039#include "v9fs_vfs.h"
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070040#include "fid.h"
41
42/**
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -060043 * struct p9_rdir - readdir accounting
44 * @mutex: mutex protecting readdir
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 {
54 struct mutex mutex;
55 int head;
56 int tail;
57 uint8_t *buf;
58};
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/**
89 * v9fs_dir_readdir - read a directory
Eric Van Hensbergenee443992008-03-05 07:08:09 -060090 * @filp: opened file structure
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070091 * @dirent: directory structure ???
92 * @filldir: function to populate directory structure ???
93 *
94 */
95
96static int v9fs_dir_readdir(struct file *filp, void *dirent, filldir_t filldir)
97{
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050098 int over;
Eric Van Hensbergen02da3982008-10-16 08:29:30 -050099 struct p9_wstat st;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600100 int err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500101 struct p9_fid *fid;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500102 int buflen;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600103 int reclen = 0;
104 struct p9_rdir *rdir;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700105
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500106 P9_DPRINTK(P9_DEBUG_VFS, "name %s\n", filp->f_path.dentry->d_name.name);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500107 fid = filp->private_data;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700108
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500109 buflen = fid->clnt->msize - P9_IOHDRSZ;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700110
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600111 /* allocate rdir on demand */
112 if (!fid->rdir) {
113 rdir = kmalloc(sizeof(struct p9_rdir) + buflen, GFP_KERNEL);
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700114
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600115 if (rdir == NULL) {
116 err = -ENOMEM;
117 goto exit;
118 }
119 spin_lock(&filp->f_dentry->d_lock);
120 if (!fid->rdir) {
121 rdir->buf = (uint8_t *)rdir + sizeof(struct p9_rdir);
122 mutex_init(&rdir->mutex);
123 rdir->head = rdir->tail = 0;
124 fid->rdir = (void *) rdir;
125 rdir = NULL;
126 }
127 spin_unlock(&filp->f_dentry->d_lock);
128 kfree(rdir);
129 }
130 rdir = (struct p9_rdir *) fid->rdir;
131
132 err = mutex_lock_interruptible(&rdir->mutex);
133 while (err == 0) {
134 if (rdir->tail == rdir->head) {
135 err = v9fs_file_readn(filp, rdir->buf, NULL,
136 buflen, filp->f_pos);
137 if (err <= 0)
138 goto unlock_and_exit;
139
140 rdir->head = 0;
141 rdir->tail = err;
142 }
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600143 while (rdir->head < rdir->tail) {
Aneesh Kumar K.Vfae45282010-03-06 04:44:16 +0000144 p9stat_init(&st);
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600145 err = p9stat_read(rdir->buf + rdir->head,
146 buflen - rdir->head, &st,
Sripathi Kodi342fee12010-03-05 18:50:14 +0000147 fid->clnt->proto_version);
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500148 if (err) {
149 P9_DPRINTK(P9_DEBUG_VFS, "returned %d\n", err);
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500150 err = -EIO;
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500151 p9stat_free(&st);
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600152 goto unlock_and_exit;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500153 }
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600154 reclen = st.size+2;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500155
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500156 over = filldir(dirent, st.name, strlen(st.name),
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500157 filp->f_pos, v9fs_qid2ino(&st.qid), dt_type(&st));
158
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500159 p9stat_free(&st);
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500160
161 if (over) {
162 err = 0;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600163 goto unlock_and_exit;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500164 }
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600165 rdir->head += reclen;
166 filp->f_pos += reclen;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500167 }
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700168 }
169
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600170unlock_and_exit:
171 mutex_unlock(&rdir->mutex);
172exit:
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500173 return err;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700174}
175
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500176
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700177/**
178 * v9fs_dir_release - close a directory
179 * @inode: inode of the directory
180 * @filp: file pointer to a directory
181 *
182 */
183
184int v9fs_dir_release(struct inode *inode, struct file *filp)
185{
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500186 struct p9_fid *fid;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700187
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500188 fid = filp->private_data;
189 P9_DPRINTK(P9_DEBUG_VFS,
190 "inode: %p filp: %p fid: %d\n", inode, filp, fid->fid);
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800191 filemap_write_and_wait(inode->i_mapping);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500192 p9_client_clunk(fid);
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700193 return 0;
194}
195
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800196const struct file_operations v9fs_dir_operations = {
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700197 .read = generic_read_dir,
Al Viro59af1582008-08-24 07:24:41 -0400198 .llseek = generic_file_llseek,
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700199 .readdir = v9fs_dir_readdir,
200 .open = v9fs_file_open,
201 .release = v9fs_dir_release,
202};