blob: 873cd31baa47c6c77022918665a5f343d93f8425 [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/**
43 * dt_type - return file type
44 * @mistat: mistat structure
45 *
46 */
47
Eric Van Hensbergen02da3982008-10-16 08:29:30 -050048static inline int dt_type(struct p9_wstat *mistat)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070049{
50 unsigned long perm = mistat->mode;
51 int rettype = DT_REG;
52
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050053 if (perm & P9_DMDIR)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070054 rettype = DT_DIR;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050055 if (perm & P9_DMSYMLINK)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070056 rettype = DT_LNK;
57
58 return rettype;
59}
60
61/**
62 * v9fs_dir_readdir - read a directory
Eric Van Hensbergenee443992008-03-05 07:08:09 -060063 * @filp: opened file structure
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070064 * @dirent: directory structure ???
65 * @filldir: function to populate directory structure ???
66 *
67 */
68
69static int v9fs_dir_readdir(struct file *filp, void *dirent, filldir_t filldir)
70{
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050071 int over;
Eric Van Hensbergen02da3982008-10-16 08:29:30 -050072 struct p9_wstat st;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -050073 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050074 struct p9_fid *fid;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -050075 int buflen;
76 char *statbuf;
77 int n, i = 0;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070078
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050079 P9_DPRINTK(P9_DEBUG_VFS, "name %s\n", filp->f_path.dentry->d_name.name);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050080 fid = filp->private_data;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070081
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -050082 buflen = fid->clnt->msize - P9_IOHDRSZ;
83 statbuf = kmalloc(buflen, GFP_KERNEL);
84 if (!statbuf)
85 return -ENOMEM;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070086
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -050087 while (1) {
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -050088 err = v9fs_file_readn(filp, statbuf, NULL, buflen,
89 fid->rdir_fpos);
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -050090 if (err <= 0)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070091 break;
92
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -050093 n = err;
94 while (i < n) {
Eric Van Hensbergen02da3982008-10-16 08:29:30 -050095 err = p9stat_read(statbuf + i, buflen-i, &st,
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -050096 fid->clnt->dotu);
Eric Van Hensbergen02da3982008-10-16 08:29:30 -050097 if (err) {
98 P9_DPRINTK(P9_DEBUG_VFS, "returned %d\n", err);
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -050099 err = -EIO;
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500100 p9stat_free(&st);
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500101 goto free_and_exit;
102 }
103
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500104 i += st.size+2;
105 fid->rdir_fpos += st.size+2;
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500106
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500107 over = filldir(dirent, st.name, strlen(st.name),
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500108 filp->f_pos, v9fs_qid2ino(&st.qid), dt_type(&st));
109
Eric Van Hensbergen02da3982008-10-16 08:29:30 -0500110 filp->f_pos += st.size+2;
111
112 p9stat_free(&st);
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500113
114 if (over) {
115 err = 0;
116 goto free_and_exit;
117 }
118 }
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700119 }
120
Eric Van Hensbergen06b55b42008-10-13 20:36:15 -0500121free_and_exit:
122 kfree(statbuf);
123 return err;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700124}
125
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500126
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700127/**
128 * v9fs_dir_release - close a directory
129 * @inode: inode of the directory
130 * @filp: file pointer to a directory
131 *
132 */
133
134int v9fs_dir_release(struct inode *inode, struct file *filp)
135{
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500136 struct p9_fid *fid;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700137
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500138 fid = filp->private_data;
139 P9_DPRINTK(P9_DEBUG_VFS,
140 "inode: %p filp: %p fid: %d\n", inode, filp, fid->fid);
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800141 filemap_write_and_wait(inode->i_mapping);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500142 p9_client_clunk(fid);
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700143 return 0;
144}
145
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800146const struct file_operations v9fs_dir_operations = {
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700147 .read = generic_read_dir,
Al Viro59af1582008-08-24 07:24:41 -0400148 .llseek = generic_file_llseek,
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700149 .readdir = v9fs_dir_readdir,
150 .open = v9fs_file_open,
151 .release = v9fs_dir_release,
152};