blob: 15cce53bf61e7832e92fd8fbc72f08f220a8084a [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
79/**
80 * v9fs_dir_readdir - read a directory
Eric Van Hensbergenee443992008-03-05 07:08:09 -060081 * @filp: opened file structure
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070082 * @dirent: directory structure ???
83 * @filldir: function to populate directory structure ???
84 *
85 */
86
87static int v9fs_dir_readdir(struct file *filp, void *dirent, filldir_t filldir)
88{
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050089 int over;
Eric Van Hensbergen02da3982008-10-16 08:29:30 -050090 struct p9_wstat st;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -060091 int err = 0;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050092 struct p9_fid *fid;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -050093 int buflen;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -060094 int reclen = 0;
95 struct p9_rdir *rdir;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070096
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050097 P9_DPRINTK(P9_DEBUG_VFS, "name %s\n", filp->f_path.dentry->d_name.name);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050098 fid = filp->private_data;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070099
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500100 buflen = fid->clnt->msize - P9_IOHDRSZ;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700101
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600102 /* allocate rdir on demand */
103 if (!fid->rdir) {
104 rdir = kmalloc(sizeof(struct p9_rdir) + buflen, GFP_KERNEL);
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700105
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600106 if (rdir == NULL) {
107 err = -ENOMEM;
108 goto exit;
109 }
110 spin_lock(&filp->f_dentry->d_lock);
111 if (!fid->rdir) {
112 rdir->buf = (uint8_t *)rdir + sizeof(struct p9_rdir);
113 mutex_init(&rdir->mutex);
114 rdir->head = rdir->tail = 0;
115 fid->rdir = (void *) rdir;
116 rdir = NULL;
117 }
118 spin_unlock(&filp->f_dentry->d_lock);
119 kfree(rdir);
120 }
121 rdir = (struct p9_rdir *) fid->rdir;
122
123 err = mutex_lock_interruptible(&rdir->mutex);
124 while (err == 0) {
125 if (rdir->tail == rdir->head) {
126 err = v9fs_file_readn(filp, rdir->buf, NULL,
127 buflen, filp->f_pos);
128 if (err <= 0)
129 goto unlock_and_exit;
130
131 rdir->head = 0;
132 rdir->tail = err;
133 }
134
135 while (rdir->head < rdir->tail) {
136 err = p9stat_read(rdir->buf + rdir->head,
137 buflen - rdir->head, &st,
138 fid->clnt->dotu);
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500139 if (err) {
140 P9_DPRINTK(P9_DEBUG_VFS, "returned %d\n", err);
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500141 err = -EIO;
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500142 p9stat_free(&st);
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600143 goto unlock_and_exit;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500144 }
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600145 reclen = st.size+2;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500146
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500147 over = filldir(dirent, st.name, strlen(st.name),
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500148 filp->f_pos, v9fs_qid2ino(&st.qid), dt_type(&st));
149
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500150 p9stat_free(&st);
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500151
152 if (over) {
153 err = 0;
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600154 goto unlock_and_exit;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500155 }
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600156 rdir->head += reclen;
157 filp->f_pos += reclen;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500158 }
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700159 }
160
Eric Van Hensbergen3e2796a2009-11-02 08:39:28 -0600161unlock_and_exit:
162 mutex_unlock(&rdir->mutex);
163exit:
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500164 return err;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700165}
166
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500167
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700168/**
169 * v9fs_dir_release - close a directory
170 * @inode: inode of the directory
171 * @filp: file pointer to a directory
172 *
173 */
174
175int v9fs_dir_release(struct inode *inode, struct file *filp)
176{
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500177 struct p9_fid *fid;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700178
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500179 fid = filp->private_data;
180 P9_DPRINTK(P9_DEBUG_VFS,
181 "inode: %p filp: %p fid: %d\n", inode, filp, fid->fid);
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800182 filemap_write_and_wait(inode->i_mapping);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500183 p9_client_clunk(fid);
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700184 return 0;
185}
186
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800187const struct file_operations v9fs_dir_operations = {
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700188 .read = generic_read_dir,
Al Viro59af1582008-08-24 07:24:41 -0400189 .llseek = generic_file_llseek,
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700190 .readdir = v9fs_dir_readdir,
191 .open = v9fs_file_open,
192 .release = v9fs_dir_release,
193};