1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/fs/9p/vfs_dir.c
5 * This file contains vfs directory ops for the 9P2000 protocol.
7 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
8 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
11 #include <linux/module.h>
12 #include <linux/errno.h>
14 #include <linux/file.h>
15 #include <linux/stat.h>
16 #include <linux/string.h>
17 #include <linux/sched.h>
18 #include <linux/inet.h>
19 #include <linux/idr.h>
20 #include <linux/slab.h>
21 #include <linux/uio.h>
22 #include <net/9p/9p.h>
23 #include <net/9p/client.h>
30 * struct p9_rdir - readdir accounting
31 * @head: start offset of current dirread buffer
32 * @tail: end offset of current dirread buffer
33 * @buf: dirread buffer
35 * private structure for keeping track of readdir
46 * dt_type - return file type
47 * @mistat: mistat structure
51 static inline int dt_type(struct p9_wstat *mistat)
53 unsigned long perm = mistat->mode;
58 if (perm & P9_DMSYMLINK)
65 * v9fs_alloc_rdir_buf - Allocate buffer used for read and readdir
66 * @filp: opened file structure
67 * @buflen: Length in bytes of buffer to allocate
71 static struct p9_rdir *v9fs_alloc_rdir_buf(struct file *filp, int buflen)
73 struct p9_fid *fid = filp->private_data;
75 fid->rdir = kzalloc(sizeof(struct p9_rdir) + buflen, GFP_KERNEL);
80 * v9fs_dir_readdir - iterate through a directory
81 * @file: opened file structure
82 * @ctx: actor we feed the entries to
86 static int v9fs_dir_readdir(struct file *file, struct dir_context *ctx)
96 p9_debug(P9_DEBUG_VFS, "name %pD\n", file);
97 fid = file->private_data;
99 buflen = fid->clnt->msize - P9_IOHDRSZ;
101 rdir = v9fs_alloc_rdir_buf(file, buflen);
104 kvec.iov_base = rdir->buf;
105 kvec.iov_len = buflen;
108 if (rdir->tail == rdir->head) {
111 iov_iter_kvec(&to, READ, &kvec, 1, buflen);
112 n = p9_client_read(file->private_data, ctx->pos, &to,
122 while (rdir->head < rdir->tail) {
123 err = p9stat_read(fid->clnt, rdir->buf + rdir->head,
124 rdir->tail - rdir->head, &st);
126 p9_debug(P9_DEBUG_VFS, "returned %d\n", err);
130 over = !dir_emit(ctx, st.name, strlen(st.name),
131 v9fs_qid2ino(&st.qid), dt_type(&st));
143 * v9fs_dir_readdir_dotl - iterate through a directory
144 * @file: opened file structure
145 * @ctx: actor we feed the entries to
148 static int v9fs_dir_readdir_dotl(struct file *file, struct dir_context *ctx)
153 struct p9_rdir *rdir;
154 struct p9_dirent curdirent;
156 p9_debug(P9_DEBUG_VFS, "name %pD\n", file);
157 fid = file->private_data;
159 buflen = fid->clnt->msize - P9_READDIRHDRSZ;
161 rdir = v9fs_alloc_rdir_buf(file, buflen);
166 if (rdir->tail == rdir->head) {
167 err = p9_client_readdir(fid, rdir->buf, buflen,
176 while (rdir->head < rdir->tail) {
178 err = p9dirent_read(fid->clnt, rdir->buf + rdir->head,
179 rdir->tail - rdir->head,
182 p9_debug(P9_DEBUG_VFS, "returned %d\n", err);
186 if (!dir_emit(ctx, curdirent.d_name,
187 strlen(curdirent.d_name),
188 v9fs_qid2ino(&curdirent.qid),
192 ctx->pos = curdirent.d_off;
200 * v9fs_dir_release - close a directory
201 * @inode: inode of the directory
202 * @filp: file pointer to a directory
206 int v9fs_dir_release(struct inode *inode, struct file *filp)
210 fid = filp->private_data;
211 p9_debug(P9_DEBUG_VFS, "inode: %p filp: %p fid: %d\n",
212 inode, filp, fid ? fid->fid : -1);
214 spin_lock(&inode->i_lock);
215 hlist_del(&fid->ilist);
216 spin_unlock(&inode->i_lock);
217 p9_client_clunk(fid);
222 const struct file_operations v9fs_dir_operations = {
223 .read = generic_read_dir,
224 .llseek = generic_file_llseek,
225 .iterate_shared = v9fs_dir_readdir,
226 .open = v9fs_file_open,
227 .release = v9fs_dir_release,
230 const struct file_operations v9fs_dir_operations_dotl = {
231 .read = generic_read_dir,
232 .llseek = generic_file_llseek,
233 .iterate_shared = v9fs_dir_readdir_dotl,
234 .open = v9fs_file_open,
235 .release = v9fs_dir_release,
236 .fsync = v9fs_file_fsync_dotl,