blob: 9ee534159cc61a2e681e6ca8b9b5461052421b51 [file] [log] [blame]
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001/*
2 * linux/fs/9p/vfs_inode.c
3 *
Eric Van Hensbergen73c592b2005-09-09 13:04:26 -07004 * This file contains vfs inode ops for the 9P2000 protocol.
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07005 *
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 Hensbergen2bad8472005-09-09 13:04:19 -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
Joe Perches5d385152011-11-28 10:40:46 -080026#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
27
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070028#include <linux/module.h>
29#include <linux/errno.h>
30#include <linux/fs.h>
31#include <linux/file.h>
32#include <linux/pagemap.h>
33#include <linux/stat.h>
34#include <linux/string.h>
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070035#include <linux/inet.h>
36#include <linux/namei.h>
37#include <linux/idr.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040038#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +053040#include <linux/xattr.h>
Aneesh Kumar K.V85ff8722010-09-28 00:27:39 +053041#include <linux/posix_acl.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050042#include <net/9p/9p.h>
43#include <net/9p/client.h>
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070044
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070045#include "v9fs.h"
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070046#include "v9fs_vfs.h"
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070047#include "fid.h"
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050048#include "cache.h"
Aneesh Kumar K.Vebf46262010-05-31 13:22:56 +053049#include "xattr.h"
Aneesh Kumar K.V85ff8722010-09-28 00:27:39 +053050#include "acl.h"
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070051
Arjan van de Ven754661f2007-02-12 00:55:38 -080052static const struct inode_operations v9fs_dir_inode_operations;
Sripathi Kodi9b6533c2010-03-25 12:41:54 +000053static const struct inode_operations v9fs_dir_inode_operations_dotu;
Arjan van de Ven754661f2007-02-12 00:55:38 -080054static const struct inode_operations v9fs_file_inode_operations;
55static const struct inode_operations v9fs_symlink_inode_operations;
Aneesh Kumar K.Vf5fc6142010-10-12 13:02:25 +053056
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070057/**
58 * unixmode2p9mode - convert unix mode bits to plan 9
59 * @v9ses: v9fs session information
60 * @mode: mode to convert
61 *
62 */
63
Al Viro3eda0de2011-07-26 02:53:22 -040064static u32 unixmode2p9mode(struct v9fs_session_info *v9ses, umode_t mode)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070065{
66 int res;
67 res = mode & 0777;
68 if (S_ISDIR(mode))
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050069 res |= P9_DMDIR;
Sripathi Kodidd6102f2010-03-05 18:48:00 +000070 if (v9fs_proto_dotu(v9ses)) {
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070071 if (v9ses->nodev == 0) {
72 if (S_ISSOCK(mode))
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050073 res |= P9_DMSOCKET;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070074 if (S_ISFIFO(mode))
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050075 res |= P9_DMNAMEDPIPE;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070076 if (S_ISBLK(mode))
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050077 res |= P9_DMDEVICE;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070078 if (S_ISCHR(mode))
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050079 res |= P9_DMDEVICE;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070080 }
81
82 if ((mode & S_ISUID) == S_ISUID)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050083 res |= P9_DMSETUID;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070084 if ((mode & S_ISGID) == S_ISGID)
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050085 res |= P9_DMSETGID;
Anthony Liguorid199d652008-02-06 19:25:06 -060086 if ((mode & S_ISVTX) == S_ISVTX)
87 res |= P9_DMSETVTX;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070088 }
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -070089 return res;
90}
91
92/**
Aneesh Kumar K.Vdf345c62012-01-05 13:39:49 +053093 * p9mode2perm- convert plan9 mode bits to unix permission bits
94 * @v9ses: v9fs session information
95 * @stat: p9_wstat from which mode need to be derived
96 *
97 */
98static int p9mode2perm(struct v9fs_session_info *v9ses,
99 struct p9_wstat *stat)
100{
101 int res;
102 int mode = stat->mode;
103
104 res = mode & S_IALLUGO;
105 if (v9fs_proto_dotu(v9ses)) {
106 if ((mode & P9_DMSETUID) == P9_DMSETUID)
107 res |= S_ISUID;
108
109 if ((mode & P9_DMSETGID) == P9_DMSETGID)
110 res |= S_ISGID;
111
112 if ((mode & P9_DMSETVTX) == P9_DMSETVTX)
113 res |= S_ISVTX;
114 }
115 return res;
116}
117
118/**
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700119 * p9mode2unixmode- convert plan9 mode bits to unix mode bits
120 * @v9ses: v9fs session information
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000121 * @stat: p9_wstat from which mode need to be derived
122 * @rdev: major number, minor number in case of device files.
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700123 *
124 */
Al Viro3eda0de2011-07-26 02:53:22 -0400125static umode_t p9mode2unixmode(struct v9fs_session_info *v9ses,
126 struct p9_wstat *stat, dev_t *rdev)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700127{
128 int res;
Al Viro3eda0de2011-07-26 02:53:22 -0400129 u32 mode = stat->mode;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700130
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000131 *rdev = 0;
Aneesh Kumar K.Vdf345c62012-01-05 13:39:49 +0530132 res = p9mode2perm(v9ses, stat);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700133
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500134 if ((mode & P9_DMDIR) == P9_DMDIR)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700135 res |= S_IFDIR;
Sripathi Kodidd6102f2010-03-05 18:48:00 +0000136 else if ((mode & P9_DMSYMLINK) && (v9fs_proto_dotu(v9ses)))
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700137 res |= S_IFLNK;
Sripathi Kodidd6102f2010-03-05 18:48:00 +0000138 else if ((mode & P9_DMSOCKET) && (v9fs_proto_dotu(v9ses))
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700139 && (v9ses->nodev == 0))
140 res |= S_IFSOCK;
Sripathi Kodidd6102f2010-03-05 18:48:00 +0000141 else if ((mode & P9_DMNAMEDPIPE) && (v9fs_proto_dotu(v9ses))
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700142 && (v9ses->nodev == 0))
143 res |= S_IFIFO;
Sripathi Kodidd6102f2010-03-05 18:48:00 +0000144 else if ((mode & P9_DMDEVICE) && (v9fs_proto_dotu(v9ses))
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000145 && (v9ses->nodev == 0)) {
146 char type = 0, ext[32];
147 int major = -1, minor = -1;
148
Chen Gangb3f8ab42013-07-16 15:33:16 +0800149 strlcpy(ext, stat->extension, sizeof(ext));
Toralf Försterafe604d2014-04-26 19:28:13 +0200150 sscanf(ext, "%c %i %i", &type, &major, &minor);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000151 switch (type) {
152 case 'c':
153 res |= S_IFCHR;
154 break;
155 case 'b':
156 res |= S_IFBLK;
157 break;
158 default:
Joe Perches5d385152011-11-28 10:40:46 -0800159 p9_debug(P9_DEBUG_ERROR, "Unknown special type %c %s\n",
160 type, stat->extension);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000161 };
162 *rdev = MKDEV(major, minor);
163 } else
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700164 res |= S_IFREG;
165
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700166 return res;
167}
168
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600169/**
170 * v9fs_uflags2omode- convert posix open flags to plan 9 mode bits
171 * @uflags: flags to convert
Eric Van Hensbergen2e4bef42008-06-24 17:39:39 -0500172 * @extended: if .u extensions are active
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600173 */
174
Eric Van Hensbergen2e4bef42008-06-24 17:39:39 -0500175int v9fs_uflags2omode(int uflags, int extended)
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800176{
177 int ret;
178
179 ret = 0;
180 switch (uflags&3) {
181 default:
182 case O_RDONLY:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500183 ret = P9_OREAD;
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800184 break;
185
186 case O_WRONLY:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500187 ret = P9_OWRITE;
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800188 break;
189
190 case O_RDWR:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500191 ret = P9_ORDWR;
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800192 break;
193 }
194
Eric Van Hensbergen2e4bef42008-06-24 17:39:39 -0500195 if (extended) {
196 if (uflags & O_EXCL)
197 ret |= P9_OEXCL;
198
199 if (uflags & O_APPEND)
200 ret |= P9_OAPPEND;
201 }
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800202
203 return ret;
204}
205
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700206/**
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800207 * v9fs_blank_wstat - helper function to setup a 9P stat structure
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800208 * @wstat: structure to initialize
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700209 *
210 */
211
M. Mohan Kumar7a4439c2010-02-08 15:36:48 -0600212void
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500213v9fs_blank_wstat(struct p9_wstat *wstat)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700214{
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800215 wstat->type = ~0;
216 wstat->dev = ~0;
217 wstat->qid.type = ~0;
218 wstat->qid.version = ~0;
219 *((long long *)&wstat->qid.path) = ~0;
220 wstat->mode = ~0;
221 wstat->atime = ~0;
222 wstat->mtime = ~0;
223 wstat->length = ~0;
224 wstat->name = NULL;
225 wstat->uid = NULL;
226 wstat->gid = NULL;
227 wstat->muid = NULL;
Eric W. Biederman447c5092013-01-29 16:18:50 -0800228 wstat->n_uid = INVALID_UID;
229 wstat->n_gid = INVALID_GID;
230 wstat->n_muid = INVALID_UID;
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800231 wstat->extension = NULL;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700232}
233
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500234/**
235 * v9fs_alloc_inode - helper function to allocate an inode
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500236 *
237 */
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500238struct inode *v9fs_alloc_inode(struct super_block *sb)
239{
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530240 struct v9fs_inode *v9inode;
241 v9inode = (struct v9fs_inode *)kmem_cache_alloc(v9fs_inode_cache,
242 GFP_KERNEL);
243 if (!v9inode)
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500244 return NULL;
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530245#ifdef CONFIG_9P_FSCACHE
246 v9inode->fscache = NULL;
Sasha Levin8f5fed12016-01-07 17:49:51 -0500247 mutex_init(&v9inode->fscache_lock);
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530248#endif
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530249 v9inode->writeback_fid = NULL;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530250 v9inode->cache_validity = 0;
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530251 mutex_init(&v9inode->v_mutex);
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530252 return &v9inode->vfs_inode;
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500253}
254
255/**
256 * v9fs_destroy_inode - destroy an inode
257 *
258 */
259
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100260static void v9fs_i_callback(struct rcu_head *head)
261{
262 struct inode *inode = container_of(head, struct inode, i_rcu);
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530263 kmem_cache_free(v9fs_inode_cache, V9FS_I(inode));
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100264}
265
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500266void v9fs_destroy_inode(struct inode *inode)
267{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100268 call_rcu(&inode->i_rcu, v9fs_i_callback);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500269}
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500270
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530271int v9fs_init_inode(struct v9fs_session_info *v9ses,
Al Viro3eda0de2011-07-26 02:53:22 -0400272 struct inode *inode, umode_t mode, dev_t rdev)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700273{
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530274 int err = 0;
Abhishek Kulkarni2bb54112009-07-19 13:41:56 -0600275
Dmitry Monakhov217f2062010-03-04 17:30:57 +0300276 inode_init_owner(inode, NULL, mode);
Abhishek Kulkarni2bb54112009-07-19 13:41:56 -0600277 inode->i_blocks = 0;
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000278 inode->i_rdev = rdev;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700279 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
Abhishek Kulkarni2bb54112009-07-19 13:41:56 -0600280 inode->i_mapping->a_ops = &v9fs_addr_operations;
281
282 switch (mode & S_IFMT) {
283 case S_IFIFO:
284 case S_IFBLK:
285 case S_IFCHR:
286 case S_IFSOCK:
M. Mohan Kumar4b435162010-06-16 14:27:01 +0530287 if (v9fs_proto_dotl(v9ses)) {
288 inode->i_op = &v9fs_file_inode_operations_dotl;
M. Mohan Kumar4b435162010-06-16 14:27:01 +0530289 } else if (v9fs_proto_dotu(v9ses)) {
290 inode->i_op = &v9fs_file_inode_operations;
M. Mohan Kumar4b435162010-06-16 14:27:01 +0530291 } else {
Joe Perches5d385152011-11-28 10:40:46 -0800292 p9_debug(P9_DEBUG_ERROR,
293 "special files without extended mode\n");
Abhishek Kulkarni2bb54112009-07-19 13:41:56 -0600294 err = -EINVAL;
295 goto error;
296 }
297 init_special_inode(inode, inode->i_mode, inode->i_rdev);
298 break;
299 case S_IFREG:
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000300 if (v9fs_proto_dotl(v9ses)) {
301 inode->i_op = &v9fs_file_inode_operations_dotl;
Dominique Martinetfb89b452014-01-10 13:44:09 +0100302 if (v9ses->cache == CACHE_LOOSE ||
303 v9ses->cache == CACHE_FSCACHE)
Aneesh Kumar K.V29236f42011-02-28 17:03:54 +0530304 inode->i_fop =
305 &v9fs_cached_file_operations_dotl;
Dominique Martinetfb89b452014-01-10 13:44:09 +0100306 else if (v9ses->cache == CACHE_MMAP)
307 inode->i_fop = &v9fs_mmap_file_operations_dotl;
Aneesh Kumar K.V29236f42011-02-28 17:03:54 +0530308 else
309 inode->i_fop = &v9fs_file_operations_dotl;
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000310 } else {
311 inode->i_op = &v9fs_file_inode_operations;
Dominique Martinetfb89b452014-01-10 13:44:09 +0100312 if (v9ses->cache == CACHE_LOOSE ||
313 v9ses->cache == CACHE_FSCACHE)
314 inode->i_fop =
315 &v9fs_cached_file_operations;
316 else if (v9ses->cache == CACHE_MMAP)
317 inode->i_fop = &v9fs_mmap_file_operations;
Aneesh Kumar K.V29236f42011-02-28 17:03:54 +0530318 else
319 inode->i_fop = &v9fs_file_operations;
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000320 }
321
Abhishek Kulkarni2bb54112009-07-19 13:41:56 -0600322 break;
323 case S_IFLNK:
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000324 if (!v9fs_proto_dotu(v9ses) && !v9fs_proto_dotl(v9ses)) {
Joe Perches5d385152011-11-28 10:40:46 -0800325 p9_debug(P9_DEBUG_ERROR,
326 "extended modes used with legacy protocol\n");
Abhishek Kulkarni2bb54112009-07-19 13:41:56 -0600327 err = -EINVAL;
328 goto error;
329 }
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000330
331 if (v9fs_proto_dotl(v9ses))
332 inode->i_op = &v9fs_symlink_inode_operations_dotl;
333 else
334 inode->i_op = &v9fs_symlink_inode_operations;
335
Abhishek Kulkarni2bb54112009-07-19 13:41:56 -0600336 break;
337 case S_IFDIR:
338 inc_nlink(inode);
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000339 if (v9fs_proto_dotl(v9ses))
340 inode->i_op = &v9fs_dir_inode_operations_dotl;
341 else if (v9fs_proto_dotu(v9ses))
342 inode->i_op = &v9fs_dir_inode_operations_dotu;
Abhishek Kulkarni2bb54112009-07-19 13:41:56 -0600343 else
344 inode->i_op = &v9fs_dir_inode_operations;
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000345
346 if (v9fs_proto_dotl(v9ses))
347 inode->i_fop = &v9fs_dir_operations_dotl;
348 else
349 inode->i_fop = &v9fs_dir_operations;
350
Abhishek Kulkarni2bb54112009-07-19 13:41:56 -0600351 break;
352 default:
Linus Torvalds609eac12012-01-10 15:09:01 -0800353 p9_debug(P9_DEBUG_ERROR, "BAD mode 0x%hx S_IFMT 0x%x\n",
Joe Perches5d385152011-11-28 10:40:46 -0800354 mode, mode & S_IFMT);
Abhishek Kulkarni2bb54112009-07-19 13:41:56 -0600355 err = -EINVAL;
356 goto error;
357 }
Abhishek Kulkarni2bb54112009-07-19 13:41:56 -0600358error:
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530359 return err;
360
361}
362
363/**
364 * v9fs_get_inode - helper function to setup an inode
365 * @sb: superblock
366 * @mode: mode to setup inode with
367 *
368 */
369
Al Viro3eda0de2011-07-26 02:53:22 -0400370struct inode *v9fs_get_inode(struct super_block *sb, umode_t mode, dev_t rdev)
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530371{
372 int err;
373 struct inode *inode;
374 struct v9fs_session_info *v9ses = sb->s_fs_info;
375
Linus Torvalds609eac12012-01-10 15:09:01 -0800376 p9_debug(P9_DEBUG_VFS, "super block: %p mode: %ho\n", sb, mode);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530377
378 inode = new_inode(sb);
379 if (!inode) {
Joe Perches5d385152011-11-28 10:40:46 -0800380 pr_warn("%s (%d): Problem allocating inode\n",
381 __func__, task_pid_nr(current));
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530382 return ERR_PTR(-ENOMEM);
383 }
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000384 err = v9fs_init_inode(v9ses, inode, mode, rdev);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530385 if (err) {
386 iput(inode);
387 return ERR_PTR(err);
388 }
389 return inode;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700390}
391
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500392/*
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800393static struct v9fs_fid*
394v9fs_clone_walk(struct v9fs_session_info *v9ses, u32 fid, struct dentry *dentry)
395{
396 int err;
Mika Kukkonen736c4b852006-12-06 20:36:29 -0800397 int nfid;
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800398 struct v9fs_fid *ret;
399 struct v9fs_fcall *fcall;
400
401 nfid = v9fs_get_idpool(&v9ses->fidpool);
402 if (nfid < 0) {
403 eprintk(KERN_WARNING, "no free fids available\n");
Latchesar Ionkov731805b2006-03-07 21:55:42 -0800404 return ERR_PTR(-ENOSPC);
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800405 }
406
407 err = v9fs_t_walk(v9ses, fid, nfid, (char *) dentry->d_name.name,
408 &fcall);
409
410 if (err < 0) {
Latchesar Ionkov41e5a6a2006-05-15 09:44:21 -0700411 if (fcall && fcall->id == RWALK)
412 goto clunk_fid;
413
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800414 PRINT_FCALL_ERROR("walk error", fcall);
415 v9fs_put_idpool(nfid, &v9ses->fidpool);
416 goto error;
417 }
418
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700419 kfree(fcall);
Latchesar Ionkov3cf64292006-01-08 01:04:58 -0800420 fcall = NULL;
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800421 ret = v9fs_fid_create(v9ses, nfid);
422 if (!ret) {
423 err = -ENOMEM;
424 goto clunk_fid;
425 }
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700426
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800427 err = v9fs_fid_insert(ret, dentry);
428 if (err < 0) {
429 v9fs_fid_destroy(ret);
430 goto clunk_fid;
Latchesar Ionkov0b8dd172005-09-27 21:45:24 -0700431 }
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800432
433 return ret;
434
435clunk_fid:
436 v9fs_t_clunk(v9ses, nfid);
437
438error:
439 kfree(fcall);
440 return ERR_PTR(err);
441}
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500442*/
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800443
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500444
445/**
446 * v9fs_clear_inode - release an inode
447 * @inode: inode to release
448 *
449 */
Al Virob57922d2010-06-07 14:34:48 -0400450void v9fs_evict_inode(struct inode *inode)
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500451{
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530452 struct v9fs_inode *v9inode = V9FS_I(inode);
453
Al Viro4ad78622015-12-08 03:07:22 -0500454 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +0200455 clear_inode(inode);
Al Viro4ad78622015-12-08 03:07:22 -0500456 filemap_fdatawrite(&inode->i_data);
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500457
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500458 v9fs_cache_inode_put_cookie(inode);
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530459 /* clunk the fid stashed in writeback_fid */
460 if (v9inode->writeback_fid) {
461 p9_client_clunk(v9inode->writeback_fid);
462 v9inode->writeback_fid = NULL;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530463 }
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500464}
465
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000466static int v9fs_test_inode(struct inode *inode, void *data)
467{
468 int umode;
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000469 dev_t rdev;
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000470 struct v9fs_inode *v9inode = V9FS_I(inode);
471 struct p9_wstat *st = (struct p9_wstat *)data;
472 struct v9fs_session_info *v9ses = v9fs_inode2v9ses(inode);
473
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000474 umode = p9mode2unixmode(v9ses, st, &rdev);
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000475 /* don't match inode of different type */
476 if ((inode->i_mode & S_IFMT) != (umode & S_IFMT))
477 return 0;
478
479 /* compare qid details */
480 if (memcmp(&v9inode->qid.version,
481 &st->qid.version, sizeof(v9inode->qid.version)))
482 return 0;
483
484 if (v9inode->qid.type != st->qid.type)
485 return 0;
Tuomas Tynkkynen8ee03162017-09-06 17:59:07 +0300486
487 if (v9inode->qid.path != st->qid.path)
488 return 0;
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000489 return 1;
490}
491
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530492static int v9fs_test_new_inode(struct inode *inode, void *data)
493{
494 return 0;
495}
496
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000497static int v9fs_set_inode(struct inode *inode, void *data)
498{
499 struct v9fs_inode *v9inode = V9FS_I(inode);
500 struct p9_wstat *st = (struct p9_wstat *)data;
501
502 memcpy(&v9inode->qid, &st->qid, sizeof(st->qid));
503 return 0;
504}
505
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530506static struct inode *v9fs_qid_iget(struct super_block *sb,
507 struct p9_qid *qid,
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530508 struct p9_wstat *st,
509 int new)
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530510{
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000511 dev_t rdev;
Al Viro3eda0de2011-07-26 02:53:22 -0400512 int retval;
513 umode_t umode;
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530514 unsigned long i_ino;
515 struct inode *inode;
516 struct v9fs_session_info *v9ses = sb->s_fs_info;
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530517 int (*test)(struct inode *, void *);
518
519 if (new)
520 test = v9fs_test_new_inode;
521 else
522 test = v9fs_test_inode;
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530523
524 i_ino = v9fs_qid2ino(qid);
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530525 inode = iget5_locked(sb, i_ino, test, v9fs_set_inode, st);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530526 if (!inode)
527 return ERR_PTR(-ENOMEM);
528 if (!(inode->i_state & I_NEW))
529 return inode;
530 /*
531 * initialize the inode with the stat info
532 * FIXME!! we may need support for stale inodes
533 * later.
534 */
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000535 inode->i_ino = i_ino;
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000536 umode = p9mode2unixmode(v9ses, st, &rdev);
537 retval = v9fs_init_inode(v9ses, inode, umode, rdev);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530538 if (retval)
539 goto error;
540
541 v9fs_stat2inode(st, inode, sb);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530542 v9fs_cache_inode_get_cookie(inode);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530543 unlock_new_inode(inode);
544 return inode;
545error:
Al Viro0a73d0a2015-07-12 10:34:29 -0400546 iget_failed(inode);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530547 return ERR_PTR(retval);
548
549}
550
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600551struct inode *
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530552v9fs_inode_from_fid(struct v9fs_session_info *v9ses, struct p9_fid *fid,
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530553 struct super_block *sb, int new)
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800554{
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500555 struct p9_wstat *st;
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530556 struct inode *inode = NULL;
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800557
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500558 st = p9_client_stat(fid);
Abhishek Kulkarni02bc3562009-07-19 13:41:54 -0600559 if (IS_ERR(st))
560 return ERR_CAST(st);
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800561
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530562 inode = v9fs_qid_iget(sb, &st->qid, st, new);
Abhishek Kulkarni02bc3562009-07-19 13:41:54 -0600563 p9stat_free(st);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500564 kfree(st);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530565 return inode;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700566}
567
568/**
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +0530569 * v9fs_at_to_dotl_flags- convert Linux specific AT flags to
570 * plan 9 AT flag.
571 * @flags: flags to convert
572 */
573static int v9fs_at_to_dotl_flags(int flags)
574{
575 int rflags = 0;
576 if (flags & AT_REMOVEDIR)
577 rflags |= P9_DOTL_AT_REMOVEDIR;
578 return rflags;
579}
580
581/**
Eryu Guanac89b2e2018-04-05 16:19:49 -0700582 * v9fs_dec_count - helper functon to drop i_nlink.
583 *
584 * If a directory had nlink <= 2 (including . and ..), then we should not drop
585 * the link count, which indicates the underlying exported fs doesn't maintain
586 * nlink accurately. e.g.
587 * - overlayfs sets nlink to 1 for merged dir
588 * - ext4 (with dir_nlink feature enabled) sets nlink to 1 if a dir has more
589 * than EXT4_LINK_MAX (65000) links.
590 *
591 * @inode: inode whose nlink is being dropped
592 */
593static void v9fs_dec_count(struct inode *inode)
594{
595 if (!S_ISDIR(inode->i_mode) || inode->i_nlink > 2)
596 drop_nlink(inode);
597}
598
599/**
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700600 * v9fs_remove - helper function to remove files and directories
Eric Van Hensbergen73c592b2005-09-09 13:04:26 -0700601 * @dir: directory inode that is being deleted
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +0530602 * @dentry: dentry that is being deleted
Fabian Frederickfd2916b2014-06-04 16:06:26 -0700603 * @flags: removing a directory
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700604 *
605 */
606
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +0530607static int v9fs_remove(struct inode *dir, struct dentry *dentry, int flags)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700608{
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +0530609 struct inode *inode;
610 int retval = -EOPNOTSUPP;
611 struct p9_fid *v9fid, *dfid;
612 struct v9fs_session_info *v9ses;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700613
Joe Perches5d385152011-11-28 10:40:46 -0800614 p9_debug(P9_DEBUG_VFS, "inode: %p dentry: %p rmdir: %x\n",
615 dir, dentry, flags);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700616
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +0530617 v9ses = v9fs_inode2v9ses(dir);
David Howells2b0143b2015-03-17 22:25:59 +0000618 inode = d_inode(dentry);
Al Viro77d5a6b2016-05-29 15:29:26 -0400619 dfid = v9fs_parent_fid(dentry);
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +0530620 if (IS_ERR(dfid)) {
621 retval = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800622 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", retval);
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +0530623 return retval;
624 }
625 if (v9fs_proto_dotl(v9ses))
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +0530626 retval = p9_client_unlinkat(dfid, dentry->d_name.name,
627 v9fs_at_to_dotl_flags(flags));
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +0530628 if (retval == -EOPNOTSUPP) {
629 /* Try the one based on path */
630 v9fid = v9fs_fid_clone(dentry);
631 if (IS_ERR(v9fid))
632 return PTR_ERR(v9fid);
633 retval = p9_client_remove(v9fid);
634 }
Aneesh Kumar K.Vb271ec42011-02-28 17:04:05 +0530635 if (!retval) {
636 /*
637 * directories on unlink should have zero
638 * link count
639 */
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +0530640 if (flags & AT_REMOVEDIR) {
641 clear_nlink(inode);
Eryu Guanac89b2e2018-04-05 16:19:49 -0700642 v9fs_dec_count(dir);
Aneesh Kumar K.Vb271ec42011-02-28 17:04:05 +0530643 } else
Eryu Guanac89b2e2018-04-05 16:19:49 -0700644 v9fs_dec_count(inode);
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530645
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +0530646 v9fs_invalidate_inode_attr(inode);
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530647 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.Vb271ec42011-02-28 17:04:05 +0530648 }
Aneesh Kumar K.Vd994f402010-03-29 18:14:50 -0500649 return retval;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700650}
651
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500652/**
653 * v9fs_create - Create a file
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600654 * @v9ses: session information
655 * @dir: directory that dentry is being created in
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500656 * @dentry: dentry that is being created
Abhishek Kulkarni0e155972009-07-19 13:41:55 -0600657 * @extension: 9p2000.u extension string to support devices, etc.
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500658 * @perm: create permissions
659 * @mode: open mode
660 *
661 */
662static struct p9_fid *
663v9fs_create(struct v9fs_session_info *v9ses, struct inode *dir,
664 struct dentry *dentry, char *extension, u32 perm, u8 mode)
665{
666 int err;
Al Viro7880b432017-01-12 04:01:17 -0500667 const unsigned char *name;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500668 struct p9_fid *dfid, *ofid, *fid;
669 struct inode *inode;
670
Al Viro4b8e9922014-08-19 20:17:38 -0400671 p9_debug(P9_DEBUG_VFS, "name %pd\n", dentry);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500672
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500673 err = 0;
674 ofid = NULL;
675 fid = NULL;
Al Viro7880b432017-01-12 04:01:17 -0500676 name = dentry->d_name.name;
Al Viro77d5a6b2016-05-29 15:29:26 -0400677 dfid = v9fs_parent_fid(dentry);
Latchesar Ionkovba176742007-10-17 14:31:07 -0500678 if (IS_ERR(dfid)) {
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500679 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800680 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Venkateswararao Jujjuri6d27e642010-05-10 18:08:28 +0000681 return ERR_PTR(err);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500682 }
683
684 /* clone a fid to use for creation */
Al Viro7d50a292016-08-03 11:12:12 -0400685 ofid = clone_fid(dfid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500686 if (IS_ERR(ofid)) {
687 err = PTR_ERR(ofid);
Joe Perches5d385152011-11-28 10:40:46 -0800688 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
Venkateswararao Jujjuri6d27e642010-05-10 18:08:28 +0000689 return ERR_PTR(err);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500690 }
691
692 err = p9_client_fcreate(ofid, name, perm, mode, extension);
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500693 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800694 p9_debug(P9_DEBUG_VFS, "p9_client_fcreate failed %d\n", err);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500695 goto error;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500696 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500697
Aneesh Kumar K.Vb6054792012-01-05 10:42:17 -0600698 if (!(perm & P9_DMLINK)) {
699 /* now walk from the parent so we can get unopened fid */
700 fid = p9_client_walk(dfid, 1, &name, 1);
701 if (IS_ERR(fid)) {
702 err = PTR_ERR(fid);
703 p9_debug(P9_DEBUG_VFS,
704 "p9_client_walk failed %d\n", err);
705 fid = NULL;
706 goto error;
707 }
708 /*
709 * instantiate inode and assign the unopened fid to the dentry
710 */
711 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
712 if (IS_ERR(inode)) {
713 err = PTR_ERR(inode);
714 p9_debug(P9_DEBUG_VFS,
715 "inode creation failed %d\n", err);
716 goto error;
717 }
Al Viro2ea03e1d2013-02-28 01:18:14 -0500718 v9fs_fid_add(dentry, fid);
Aneesh Kumar K.Vb6054792012-01-05 10:42:17 -0600719 d_instantiate(dentry, inode);
Venkateswararao Jujjuri6d27e642010-05-10 18:08:28 +0000720 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500721 return ofid;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500722error:
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500723 if (ofid)
724 p9_client_clunk(ofid);
725
726 if (fid)
727 p9_client_clunk(fid);
728
729 return ERR_PTR(err);
730}
731
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700732/**
Miklos Szeredie43ae792012-06-05 15:10:26 +0200733 * v9fs_vfs_create - VFS hook to create a regular file
734 *
735 * open(.., O_CREAT) is handled in v9fs_vfs_atomic_open(). This is only called
736 * for mknod(2).
737 *
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600738 * @dir: directory inode that is being created
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700739 * @dentry: dentry that is being deleted
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800740 * @mode: create permissions
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700741 *
742 */
743
744static int
Al Viro4acdaf22011-07-26 01:42:34 -0400745v9fs_vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400746 bool excl)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700747{
Miklos Szeredie43ae792012-06-05 15:10:26 +0200748 struct v9fs_session_info *v9ses = v9fs_inode2v9ses(dir);
749 u32 perm = unixmode2p9mode(v9ses, mode);
750 struct p9_fid *fid;
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800751
Miklos Szeredie43ae792012-06-05 15:10:26 +0200752 /* P9_OEXCL? */
753 fid = v9fs_create(v9ses, dir, dentry, NULL, perm, P9_ORDWR);
754 if (IS_ERR(fid))
755 return PTR_ERR(fid);
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800756
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530757 v9fs_invalidate_inode_attr(dir);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200758 p9_client_clunk(fid);
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800759
760 return 0;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700761}
762
763/**
764 * v9fs_vfs_mkdir - VFS mkdir hook to create a directory
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600765 * @dir: inode that is being unlinked
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700766 * @dentry: dentry that is being unlinked
767 * @mode: mode for new directory
768 *
769 */
770
Al Viro18bb1db2011-07-26 01:41:39 -0400771static int v9fs_vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700772{
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800773 int err;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500774 u32 perm;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500775 struct p9_fid *fid;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530776 struct v9fs_session_info *v9ses;
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800777
Al Viro4b8e9922014-08-19 20:17:38 -0400778 p9_debug(P9_DEBUG_VFS, "name %pd\n", dentry);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500779 err = 0;
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800780 v9ses = v9fs_inode2v9ses(dir);
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800781 perm = unixmode2p9mode(v9ses, mode | S_IFDIR);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500782 fid = v9fs_create(v9ses, dir, dentry, NULL, perm, P9_OREAD);
783 if (IS_ERR(fid)) {
784 err = PTR_ERR(fid);
785 fid = NULL;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530786 } else {
Aneesh Kumar K.Vb271ec42011-02-28 17:04:05 +0530787 inc_nlink(dir);
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530788 v9fs_invalidate_inode_attr(dir);
789 }
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800790
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500791 if (fid)
792 p9_client_clunk(fid);
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800793
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -0800794 return err;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700795}
796
797/**
798 * v9fs_vfs_lookup - VFS lookup hook to "walk" to a new inode
799 * @dir: inode that is being walked from
800 * @dentry: dentry that is being walked to?
Fabian Frederickfd2916b2014-06-04 16:06:26 -0700801 * @flags: lookup flags (unused)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700802 *
803 */
804
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600805struct dentry *v9fs_vfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400806 unsigned int flags)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700807{
Aneesh Kumar K.V73f50712011-08-16 22:19:28 +0530808 struct dentry *res;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700809 struct v9fs_session_info *v9ses;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500810 struct p9_fid *dfid, *fid;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700811 struct inode *inode;
Al Viro7880b432017-01-12 04:01:17 -0500812 const unsigned char *name;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700813
Al Viro4b8e9922014-08-19 20:17:38 -0400814 p9_debug(P9_DEBUG_VFS, "dir: %p dentry: (%pd) %p flags: %x\n",
815 dir, dentry, dentry, flags);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700816
Sripathi Kodi11e9b492010-03-29 18:13:59 -0500817 if (dentry->d_name.len > NAME_MAX)
818 return ERR_PTR(-ENAMETOOLONG);
819
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700820 v9ses = v9fs_inode2v9ses(dir);
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +0530821 /* We can walk d_parent because we hold the dir->i_mutex */
Al Viro77d5a6b2016-05-29 15:29:26 -0400822 dfid = v9fs_parent_fid(dentry);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500823 if (IS_ERR(dfid))
David Howellse231c2e2008-02-07 00:15:26 -0800824 return ERR_CAST(dfid);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700825
Al Viro7880b432017-01-12 04:01:17 -0500826 name = dentry->d_name.name;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500827 fid = p9_client_walk(dfid, 1, &name, 1);
828 if (IS_ERR(fid)) {
Al Viro7b5be622013-02-28 01:28:21 -0500829 if (fid == ERR_PTR(-ENOENT)) {
830 d_add(dentry, NULL);
831 return NULL;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700832 }
Al Viro7b5be622013-02-28 01:28:21 -0500833 return ERR_CAST(fid);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700834 }
Aneesh Kumar K.V73f50712011-08-16 22:19:28 +0530835 /*
836 * Make sure we don't use a wrong inode due to parallel
837 * unlink. For cached mode create calls request for new
838 * inode. But with cache disabled, lookup should do this.
839 */
Dominique Martinetfb89b452014-01-10 13:44:09 +0100840 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
Aneesh Kumar K.V73f50712011-08-16 22:19:28 +0530841 inode = v9fs_get_inode_from_fid(v9ses, fid, dir->i_sb);
842 else
843 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500844 if (IS_ERR(inode)) {
Al Viro7b5be622013-02-28 01:28:21 -0500845 p9_client_clunk(fid);
846 return ERR_CAST(inode);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700847 }
Aneesh Kumar K.V73f50712011-08-16 22:19:28 +0530848 /*
849 * If we had a rename on the server and a parallel lookup
850 * for the new name, then make sure we instantiate with
851 * the new name. ie look up for a/b, while on server somebody
852 * moved b under k and client parallely did a lookup for
853 * k/b.
854 */
Al Viro41d28bc2014-10-12 22:24:21 -0400855 res = d_splice_alias(inode, dentry);
Al Viroa3b21572013-02-28 01:29:48 -0500856 if (!res)
857 v9fs_fid_add(dentry, fid);
858 else if (!IS_ERR(res))
859 v9fs_fid_add(res, fid);
860 else
Al Viro7b5be622013-02-28 01:28:21 -0500861 p9_client_clunk(fid);
862 return res;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700863}
864
Al Virod9585272012-06-22 12:39:14 +0400865static int
Miklos Szeredie43ae792012-06-05 15:10:26 +0200866v9fs_vfs_atomic_open(struct inode *dir, struct dentry *dentry,
Al Viro30d90492012-06-22 12:40:19 +0400867 struct file *file, unsigned flags, umode_t mode,
Al Viro47237682012-06-10 05:01:45 -0400868 int *opened)
Miklos Szeredie43ae792012-06-05 15:10:26 +0200869{
870 int err;
871 u32 perm;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200872 struct v9fs_inode *v9inode;
873 struct v9fs_session_info *v9ses;
874 struct p9_fid *fid, *inode_fid;
875 struct dentry *res = NULL;
876
Al Viro00699ad2016-07-05 09:44:53 -0400877 if (d_in_lookup(dentry)) {
Al Viro00cd8dd2012-06-10 17:13:09 -0400878 res = v9fs_vfs_lookup(dir, dentry, 0);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200879 if (IS_ERR(res))
Al Virod9585272012-06-22 12:39:14 +0400880 return PTR_ERR(res);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200881
882 if (res)
883 dentry = res;
884 }
885
886 /* Only creates */
David Howells2b0143b2015-03-17 22:25:59 +0000887 if (!(flags & O_CREAT) || d_really_is_positive(dentry))
Al Viroe45198a2012-06-10 06:48:09 -0400888 return finish_no_open(file, res);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200889
890 err = 0;
Geyslan G. Bemfae74692013-09-28 20:32:15 -0300891
Miklos Szeredie43ae792012-06-05 15:10:26 +0200892 v9ses = v9fs_inode2v9ses(dir);
893 perm = unixmode2p9mode(v9ses, mode);
894 fid = v9fs_create(v9ses, dir, dentry, NULL, perm,
895 v9fs_uflags2omode(flags,
896 v9fs_proto_dotu(v9ses)));
897 if (IS_ERR(fid)) {
898 err = PTR_ERR(fid);
899 fid = NULL;
900 goto error;
901 }
902
903 v9fs_invalidate_inode_attr(dir);
David Howells2b0143b2015-03-17 22:25:59 +0000904 v9inode = V9FS_I(d_inode(dentry));
Miklos Szeredie43ae792012-06-05 15:10:26 +0200905 mutex_lock(&v9inode->v_mutex);
Dominique Martinetfb89b452014-01-10 13:44:09 +0100906 if ((v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) &&
907 !v9inode->writeback_fid &&
Miklos Szeredie43ae792012-06-05 15:10:26 +0200908 ((flags & O_ACCMODE) != O_RDONLY)) {
909 /*
910 * clone a fid and add it to writeback_fid
911 * we do it during open time instead of
912 * page dirty time via write_begin/page_mkwrite
913 * because we want write after unlink usecase
914 * to work.
915 */
916 inode_fid = v9fs_writeback_fid(dentry);
917 if (IS_ERR(inode_fid)) {
918 err = PTR_ERR(inode_fid);
919 mutex_unlock(&v9inode->v_mutex);
920 goto error;
921 }
922 v9inode->writeback_fid = (void *) inode_fid;
923 }
924 mutex_unlock(&v9inode->v_mutex);
Al Viro30d90492012-06-22 12:40:19 +0400925 err = finish_open(file, dentry, generic_file_open, opened);
926 if (err)
Miklos Szeredie43ae792012-06-05 15:10:26 +0200927 goto error;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200928
Al Viro30d90492012-06-22 12:40:19 +0400929 file->private_data = fid;
Dominique Martinetfb89b452014-01-10 13:44:09 +0100930 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
David Howells2b0143b2015-03-17 22:25:59 +0000931 v9fs_cache_inode_set_cookie(d_inode(dentry), file);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200932
Al Viro47237682012-06-10 05:01:45 -0400933 *opened |= FILE_CREATED;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200934out:
935 dput(res);
Al Virod9585272012-06-22 12:39:14 +0400936 return err;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200937
938error:
939 if (fid)
940 p9_client_clunk(fid);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200941 goto out;
942}
943
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700944/**
945 * v9fs_vfs_unlink - VFS unlink hook to delete an inode
946 * @i: inode that is being unlinked
Eric Van Hensbergen73c592b2005-09-09 13:04:26 -0700947 * @d: dentry that is being unlinked
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700948 *
949 */
950
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600951int v9fs_vfs_unlink(struct inode *i, struct dentry *d)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700952{
953 return v9fs_remove(i, d, 0);
954}
955
956/**
957 * v9fs_vfs_rmdir - VFS unlink hook to delete a directory
958 * @i: inode that is being unlinked
Eric Van Hensbergen73c592b2005-09-09 13:04:26 -0700959 * @d: dentry that is being unlinked
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700960 *
961 */
962
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600963int v9fs_vfs_rmdir(struct inode *i, struct dentry *d)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700964{
Aneesh Kumar K.V48e370f2011-06-28 15:41:18 +0530965 return v9fs_remove(i, d, AT_REMOVEDIR);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700966}
967
968/**
969 * v9fs_vfs_rename - VFS hook to rename an inode
970 * @old_dir: old dir inode
971 * @old_dentry: old dentry
972 * @new_dir: new dir inode
973 * @new_dentry: new dentry
974 *
975 */
976
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600977int
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700978v9fs_vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredi1cd66c92016-09-27 11:03:58 +0200979 struct inode *new_dir, struct dentry *new_dentry,
980 unsigned int flags)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700981{
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530982 int retval;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500983 struct inode *old_inode;
Aneesh Kumar K.Vb271ec42011-02-28 17:04:05 +0530984 struct inode *new_inode;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500985 struct v9fs_session_info *v9ses;
986 struct p9_fid *oldfid;
987 struct p9_fid *olddirfid;
988 struct p9_fid *newdirfid;
989 struct p9_wstat wstat;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -0700990
Miklos Szeredi1cd66c92016-09-27 11:03:58 +0200991 if (flags)
992 return -EINVAL;
993
Joe Perches5d385152011-11-28 10:40:46 -0800994 p9_debug(P9_DEBUG_VFS, "\n");
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500995 retval = 0;
David Howells2b0143b2015-03-17 22:25:59 +0000996 old_inode = d_inode(old_dentry);
997 new_inode = d_inode(new_dentry);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500998 v9ses = v9fs_inode2v9ses(old_inode);
999 oldfid = v9fs_fid_lookup(old_dentry);
Latchesar Ionkovba176742007-10-17 14:31:07 -05001000 if (IS_ERR(oldfid))
Eric Van Hensbergenda977b22007-01-26 00:57:06 -08001001 return PTR_ERR(oldfid);
1002
Al Viro797fc162016-08-03 11:02:48 -04001003 olddirfid = clone_fid(v9fs_parent_fid(old_dentry));
Latchesar Ionkovba176742007-10-17 14:31:07 -05001004 if (IS_ERR(olddirfid)) {
Eric Van Hensbergenda977b22007-01-26 00:57:06 -08001005 retval = PTR_ERR(olddirfid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001006 goto done;
Eric Van Hensbergenda977b22007-01-26 00:57:06 -08001007 }
1008
Al Viro797fc162016-08-03 11:02:48 -04001009 newdirfid = clone_fid(v9fs_parent_fid(new_dentry));
Latchesar Ionkovba176742007-10-17 14:31:07 -05001010 if (IS_ERR(newdirfid)) {
Eric Van Hensbergenda977b22007-01-26 00:57:06 -08001011 retval = PTR_ERR(newdirfid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001012 goto clunk_olddir;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001013 }
1014
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +05301015 down_write(&v9ses->rename_sem);
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001016 if (v9fs_proto_dotl(v9ses)) {
Aneesh Kumar K.V9e8fb382011-06-28 15:41:16 +05301017 retval = p9_client_renameat(olddirfid, old_dentry->d_name.name,
1018 newdirfid, new_dentry->d_name.name);
1019 if (retval == -EOPNOTSUPP)
1020 retval = p9_client_rename(oldfid, newdirfid,
1021 new_dentry->d_name.name);
1022 if (retval != -EOPNOTSUPP)
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001023 goto clunk_newdir;
1024 }
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +05301025 if (old_dentry->d_parent != new_dentry->d_parent) {
1026 /*
1027 * 9P .u can only handle file rename in the same directory
1028 */
Sripathi Kodi4681dbd2010-03-25 12:47:26 +00001029
Joe Perches5d385152011-11-28 10:40:46 -08001030 p9_debug(P9_DEBUG_ERROR, "old dir and new dir are different\n");
Eric Van Hensbergen621997c2007-01-26 00:57:04 -08001031 retval = -EXDEV;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001032 goto clunk_newdir;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001033 }
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001034 v9fs_blank_wstat(&wstat);
Latchesar Ionkovba176742007-10-17 14:31:07 -05001035 wstat.muid = v9ses->uname;
Al Viro7880b432017-01-12 04:01:17 -05001036 wstat.name = new_dentry->d_name.name;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001037 retval = p9_client_wstat(oldfid, &wstat);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001038
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001039clunk_newdir:
Aneesh Kumar K.Vb271ec42011-02-28 17:04:05 +05301040 if (!retval) {
1041 if (new_inode) {
1042 if (S_ISDIR(new_inode->i_mode))
1043 clear_nlink(new_inode);
1044 else
Eryu Guanac89b2e2018-04-05 16:19:49 -07001045 v9fs_dec_count(new_inode);
Aneesh Kumar K.Vb271ec42011-02-28 17:04:05 +05301046 }
1047 if (S_ISDIR(old_inode->i_mode)) {
1048 if (!new_inode)
1049 inc_nlink(new_dir);
Eryu Guanac89b2e2018-04-05 16:19:49 -07001050 v9fs_dec_count(old_dir);
Aneesh Kumar K.Vb271ec42011-02-28 17:04:05 +05301051 }
Aneesh Kumar K.V3bc86de2011-02-28 17:04:07 +05301052 v9fs_invalidate_inode_attr(old_inode);
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +05301053 v9fs_invalidate_inode_attr(old_dir);
1054 v9fs_invalidate_inode_attr(new_dir);
Aneesh Kumar K.V3bc86de2011-02-28 17:04:07 +05301055
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +05301056 /* successful rename */
1057 d_move(old_dentry, new_dentry);
Aneesh Kumar K.Vb271ec42011-02-28 17:04:05 +05301058 }
Aneesh Kumar K.Va534c8d2010-06-30 19:18:50 +05301059 up_write(&v9ses->rename_sem);
Latchesar Ionkov22150c42007-10-23 13:48:33 -05001060 p9_client_clunk(newdirfid);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001061
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001062clunk_olddir:
Latchesar Ionkov22150c42007-10-23 13:48:33 -05001063 p9_client_clunk(olddirfid);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001064
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001065done:
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001066 return retval;
1067}
1068
1069/**
Adrian Bunk943ffb52006-01-10 00:10:13 +01001070 * v9fs_vfs_getattr - retrieve file metadata
David Howellsa528d352017-01-31 16:46:22 +00001071 * @path: Object to query
Eric Van Hensbergenee443992008-03-05 07:08:09 -06001072 * @stat: metadata structure to populate
David Howellsa528d352017-01-31 16:46:22 +00001073 * @request_mask: Mask of STATX_xxx flags indicating the caller's interests
1074 * @flags: AT_STATX_xxx setting
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001075 *
1076 */
1077
1078static int
David Howellsa528d352017-01-31 16:46:22 +00001079v9fs_vfs_getattr(const struct path *path, struct kstat *stat,
1080 u32 request_mask, unsigned int flags)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001081{
David Howellsa528d352017-01-31 16:46:22 +00001082 struct dentry *dentry = path->dentry;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001083 struct v9fs_session_info *v9ses;
1084 struct p9_fid *fid;
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001085 struct p9_wstat *st;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001086
Joe Perches5d385152011-11-28 10:40:46 -08001087 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +05301088 v9ses = v9fs_dentry2v9ses(dentry);
Aneesh Kumar K.Va1211902011-02-28 17:04:01 +05301089 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
David Howells2b0143b2015-03-17 22:25:59 +00001090 generic_fillattr(d_inode(dentry), stat);
Aneesh Kumar K.Va1211902011-02-28 17:04:01 +05301091 return 0;
1092 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001093 fid = v9fs_fid_lookup(dentry);
1094 if (IS_ERR(fid))
Eric Van Hensbergenda977b22007-01-26 00:57:06 -08001095 return PTR_ERR(fid);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001096
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001097 st = p9_client_stat(fid);
1098 if (IS_ERR(st))
1099 return PTR_ERR(st);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001100
Al Virofc640052016-04-10 01:33:30 -04001101 v9fs_stat2inode(st, d_inode(dentry), dentry->d_sb);
David Howells2b0143b2015-03-17 22:25:59 +00001102 generic_fillattr(d_inode(dentry), stat);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001103
Latchesar Ionkov62b2be52010-08-24 18:13:59 +00001104 p9stat_free(st);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001105 kfree(st);
1106 return 0;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001107}
1108
1109/**
1110 * v9fs_vfs_setattr - set file metadata
1111 * @dentry: file whose metadata to set
1112 * @iattr: metadata assignment structure
1113 *
1114 */
1115
1116static int v9fs_vfs_setattr(struct dentry *dentry, struct iattr *iattr)
1117{
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001118 int retval;
1119 struct v9fs_session_info *v9ses;
1120 struct p9_fid *fid;
1121 struct p9_wstat wstat;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001122
Joe Perches5d385152011-11-28 10:40:46 -08001123 p9_debug(P9_DEBUG_VFS, "\n");
Jan Kara31051c82016-05-26 16:55:18 +02001124 retval = setattr_prepare(dentry, iattr);
Aneesh Kumar K.V059c1382011-03-08 16:39:48 +05301125 if (retval)
1126 return retval;
1127
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001128 retval = -EPERM;
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +05301129 v9ses = v9fs_dentry2v9ses(dentry);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001130 fid = v9fs_fid_lookup(dentry);
Eric Van Hensbergenda977b22007-01-26 00:57:06 -08001131 if(IS_ERR(fid))
1132 return PTR_ERR(fid);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001133
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001134 v9fs_blank_wstat(&wstat);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001135 if (iattr->ia_valid & ATTR_MODE)
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001136 wstat.mode = unixmode2p9mode(v9ses, iattr->ia_mode);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001137
1138 if (iattr->ia_valid & ATTR_MTIME)
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001139 wstat.mtime = iattr->ia_mtime.tv_sec;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001140
1141 if (iattr->ia_valid & ATTR_ATIME)
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001142 wstat.atime = iattr->ia_atime.tv_sec;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001143
1144 if (iattr->ia_valid & ATTR_SIZE)
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001145 wstat.length = iattr->ia_size;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001146
Sripathi Kodidd6102f2010-03-05 18:48:00 +00001147 if (v9fs_proto_dotu(v9ses)) {
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001148 if (iattr->ia_valid & ATTR_UID)
1149 wstat.n_uid = iattr->ia_uid;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001150
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001151 if (iattr->ia_valid & ATTR_GID)
1152 wstat.n_gid = iattr->ia_gid;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001153 }
Aneesh Kumar K.V059c1382011-03-08 16:39:48 +05301154
Aneesh Kumar K.V3dc54362011-02-28 17:04:11 +05301155 /* Write all dirty data */
David Howellse36cb0b2015-01-29 12:02:35 +00001156 if (d_is_reg(dentry))
David Howells2b0143b2015-03-17 22:25:59 +00001157 filemap_write_and_wait(d_inode(dentry)->i_mapping);
Aneesh Kumar K.V3dc54362011-02-28 17:04:11 +05301158
Aneesh Kumar K.Vf10fc502011-02-28 17:04:10 +05301159 retval = p9_client_wstat(fid, &wstat);
1160 if (retval < 0)
1161 return retval;
Aneesh Kumar K.V059c1382011-03-08 16:39:48 +05301162
1163 if ((iattr->ia_valid & ATTR_SIZE) &&
David Howells2b0143b2015-03-17 22:25:59 +00001164 iattr->ia_size != i_size_read(d_inode(dentry)))
1165 truncate_setsize(d_inode(dentry), iattr->ia_size);
Aneesh Kumar K.V059c1382011-03-08 16:39:48 +05301166
David Howells2b0143b2015-03-17 22:25:59 +00001167 v9fs_invalidate_inode_attr(d_inode(dentry));
Christoph Hellwig10257742010-06-04 11:30:02 +02001168
David Howells2b0143b2015-03-17 22:25:59 +00001169 setattr_copy(d_inode(dentry), iattr);
1170 mark_inode_dirty(d_inode(dentry));
Christoph Hellwig10257742010-06-04 11:30:02 +02001171 return 0;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001172}
1173
1174/**
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001175 * v9fs_stat2inode - populate an inode structure with mistat info
1176 * @stat: Plan 9 metadata (mistat) structure
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001177 * @inode: inode to populate
1178 * @sb: superblock of filesystem
1179 *
1180 */
1181
1182void
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -05001183v9fs_stat2inode(struct p9_wstat *stat, struct inode *inode,
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001184 struct super_block *sb)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001185{
Al Viro3eda0de2011-07-26 02:53:22 -04001186 umode_t mode;
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001187 char ext[32];
Aneesh Kumar K.V57171442010-03-05 14:43:43 -06001188 char tag_name[14];
1189 unsigned int i_nlink;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001190 struct v9fs_session_info *v9ses = sb->s_fs_info;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +05301191 struct v9fs_inode *v9inode = V9FS_I(inode);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001192
Miklos Szeredibfe86842011-10-28 14:13:29 +02001193 set_nlink(inode, 1);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001194
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001195 inode->i_atime.tv_sec = stat->atime;
1196 inode->i_mtime.tv_sec = stat->mtime;
1197 inode->i_ctime.tv_sec = stat->mtime;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001198
Latchesar Ionkovbd32b822007-10-17 14:31:07 -05001199 inode->i_uid = v9ses->dfltuid;
1200 inode->i_gid = v9ses->dfltgid;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001201
Sripathi Kodidd6102f2010-03-05 18:48:00 +00001202 if (v9fs_proto_dotu(v9ses)) {
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001203 inode->i_uid = stat->n_uid;
1204 inode->i_gid = stat->n_gid;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001205 }
Aneesh Kumar K.V57171442010-03-05 14:43:43 -06001206 if ((S_ISREG(inode->i_mode)) || (S_ISDIR(inode->i_mode))) {
1207 if (v9fs_proto_dotu(v9ses) && (stat->extension[0] != '\0')) {
1208 /*
1209 * Hadlink support got added later to
1210 * to the .u extension. So there can be
1211 * server out there that doesn't support
1212 * this even with .u extension. So check
1213 * for non NULL stat->extension
1214 */
Chen Gangb3f8ab42013-07-16 15:33:16 +08001215 strlcpy(ext, stat->extension, sizeof(ext));
Aneesh Kumar K.V57171442010-03-05 14:43:43 -06001216 /* HARDLINKCOUNT %u */
1217 sscanf(ext, "%13s %u", tag_name, &i_nlink);
1218 if (!strncmp(tag_name, "HARDLINKCOUNT", 13))
Miklos Szeredibfe86842011-10-28 14:13:29 +02001219 set_nlink(inode, i_nlink);
Aneesh Kumar K.V57171442010-03-05 14:43:43 -06001220 }
1221 }
Aneesh Kumar K.Vdf345c62012-01-05 13:39:49 +05301222 mode = p9mode2perm(v9ses, stat);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +00001223 mode |= inode->i_mode & ~S_IALLUGO;
1224 inode->i_mode = mode;
Abhishek Kulkarni7549ae3e2009-09-22 11:34:05 -05001225 i_size_write(inode, stat->length);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001226
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001227 /* not real number of blocks, but 512 byte ones ... */
Abhishek Kulkarni7549ae3e2009-09-22 11:34:05 -05001228 inode->i_blocks = (i_size_read(inode) + 512 - 1) >> 9;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +05301229 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001230}
1231
1232/**
1233 * v9fs_qid2ino - convert qid into inode number
1234 * @qid: qid to hash
1235 *
1236 * BUG: potential for inode number collisions?
1237 */
1238
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001239ino_t v9fs_qid2ino(struct p9_qid *qid)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001240{
1241 u64 path = qid->path + 2;
1242 ino_t i = 0;
1243
1244 if (sizeof(ino_t) == sizeof(path))
1245 memcpy(&i, &path, sizeof(ino_t));
1246 else
1247 i = (ino_t) (path ^ (path >> 32));
1248
1249 return i;
1250}
1251
1252/**
Al Viro6b255392015-11-17 10:20:54 -05001253 * v9fs_vfs_get_link - follow a symlink path
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001254 * @dentry: dentry for symlink
Al Viro6b255392015-11-17 10:20:54 -05001255 * @inode: inode for symlink
Al Virofceef392015-12-29 15:58:39 -05001256 * @done: delayed call for when we are done with the return value
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001257 */
1258
Al Viro6b255392015-11-17 10:20:54 -05001259static const char *v9fs_vfs_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -05001260 struct inode *inode,
1261 struct delayed_call *done)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001262{
Al Viro6b255392015-11-17 10:20:54 -05001263 struct v9fs_session_info *v9ses;
1264 struct p9_fid *fid;
Al Viro90e4fc82015-04-14 17:42:49 -04001265 struct p9_wstat *st;
Al Viro680baac2015-05-02 13:32:22 -04001266 char *res;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001267
Al Viro6b255392015-11-17 10:20:54 -05001268 if (!dentry)
1269 return ERR_PTR(-ECHILD);
1270
1271 v9ses = v9fs_dentry2v9ses(dentry);
1272 fid = v9fs_fid_lookup(dentry);
Al Viro4b8e9922014-08-19 20:17:38 -04001273 p9_debug(P9_DEBUG_VFS, "%pd\n", dentry);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001274
Al Viro90e4fc82015-04-14 17:42:49 -04001275 if (IS_ERR(fid))
1276 return ERR_CAST(fid);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001277
Al Viro90e4fc82015-04-14 17:42:49 -04001278 if (!v9fs_proto_dotu(v9ses))
1279 return ERR_PTR(-EBADF);
1280
1281 st = p9_client_stat(fid);
1282 if (IS_ERR(st))
1283 return ERR_CAST(st);
1284
1285 if (!(st->mode & P9_DMSYMLINK)) {
1286 p9stat_free(st);
1287 kfree(st);
1288 return ERR_PTR(-EINVAL);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001289 }
Al Viro680baac2015-05-02 13:32:22 -04001290 res = st->extension;
Al Viro90e4fc82015-04-14 17:42:49 -04001291 st->extension = NULL;
Al Viro680baac2015-05-02 13:32:22 -04001292 if (strlen(res) >= PATH_MAX)
1293 res[PATH_MAX - 1] = '\0';
1294
Al Viro90e4fc82015-04-14 17:42:49 -04001295 p9stat_free(st);
1296 kfree(st);
Al Virofceef392015-12-29 15:58:39 -05001297 set_delayed_call(done, kfree_link, res);
1298 return res;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001299}
1300
1301/**
Eric Van Hensbergenee443992008-03-05 07:08:09 -06001302 * v9fs_vfs_mkspecial - create a special file
1303 * @dir: inode to create special file in
1304 * @dentry: dentry to create
Fabian Frederickfd2916b2014-06-04 16:06:26 -07001305 * @perm: mode to create special file
Eric Van Hensbergenee443992008-03-05 07:08:09 -06001306 * @extension: 9p2000.u format extension string representing special file
1307 *
1308 */
1309
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001310static int v9fs_vfs_mkspecial(struct inode *dir, struct dentry *dentry,
Al Viroc2837de2011-07-24 18:59:07 -04001311 u32 perm, const char *extension)
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001312{
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001313 struct p9_fid *fid;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +05301314 struct v9fs_session_info *v9ses;
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001315
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -08001316 v9ses = v9fs_inode2v9ses(dir);
Sripathi Kodidd6102f2010-03-05 18:48:00 +00001317 if (!v9fs_proto_dotu(v9ses)) {
Joe Perches5d385152011-11-28 10:40:46 -08001318 p9_debug(P9_DEBUG_ERROR, "not extended\n");
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -08001319 return -EPERM;
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001320 }
1321
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001322 fid = v9fs_create(v9ses, dir, dentry, (char *) extension, perm,
1323 P9_OREAD);
1324 if (IS_ERR(fid))
1325 return PTR_ERR(fid);
Eric Van Hensbergenda977b22007-01-26 00:57:06 -08001326
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +05301327 v9fs_invalidate_inode_attr(dir);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001328 p9_client_clunk(fid);
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -08001329 return 0;
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001330}
1331
1332/**
1333 * v9fs_vfs_symlink - helper function to create symlinks
1334 * @dir: directory inode containing symlink
1335 * @dentry: dentry for symlink
1336 * @symname: symlink data
1337 *
Eric Van Hensbergenee443992008-03-05 07:08:09 -06001338 * See Also: 9P2000.u RFC for more information
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001339 *
1340 */
1341
1342static int
1343v9fs_vfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
1344{
Al Viro4b8e9922014-08-19 20:17:38 -04001345 p9_debug(P9_DEBUG_VFS, " %lu,%pd,%s\n",
1346 dir->i_ino, dentry, symname);
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001347
Al Viroc2837de2011-07-24 18:59:07 -04001348 return v9fs_vfs_mkspecial(dir, dentry, P9_DMSYMLINK, symname);
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001349}
1350
Al Virob46c2672015-04-14 12:10:34 -04001351#define U32_MAX_DIGITS 10
1352
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001353/**
1354 * v9fs_vfs_link - create a hardlink
1355 * @old_dentry: dentry for file to link to
1356 * @dir: inode destination for new link
Eric Van Hensbergen73c592b2005-09-09 13:04:26 -07001357 * @dentry: dentry for link
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001358 *
1359 */
1360
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001361static int
1362v9fs_vfs_link(struct dentry *old_dentry, struct inode *dir,
1363 struct dentry *dentry)
1364{
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001365 int retval;
Al Virob46c2672015-04-14 12:10:34 -04001366 char name[1 + U32_MAX_DIGITS + 2]; /* sign + number + \n + \0 */
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +05301367 struct p9_fid *oldfid;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001368
Al Viro4b8e9922014-08-19 20:17:38 -04001369 p9_debug(P9_DEBUG_VFS, " %lu,%pd,%pd\n",
1370 dir->i_ino, dentry, old_dentry);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001371
Eric Van Hensbergenda977b22007-01-26 00:57:06 -08001372 oldfid = v9fs_fid_clone(old_dentry);
Latchesar Ionkovba176742007-10-17 14:31:07 -05001373 if (IS_ERR(oldfid))
Eric Van Hensbergenda977b22007-01-26 00:57:06 -08001374 return PTR_ERR(oldfid);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001375
Latchesar Ionkov16cce6d2006-03-25 03:07:26 -08001376 sprintf(name, "%d\n", oldfid->fid);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001377 retval = v9fs_vfs_mkspecial(dir, dentry, P9_DMLINK, name);
Aneesh Kumar K.Vc06c0662011-02-28 17:04:09 +05301378 if (!retval) {
David Howells2b0143b2015-03-17 22:25:59 +00001379 v9fs_refresh_inode(oldfid, d_inode(old_dentry));
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +05301380 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.Vc06c0662011-02-28 17:04:09 +05301381 }
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -05001382 p9_client_clunk(oldfid);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001383 return retval;
1384}
1385
1386/**
1387 * v9fs_vfs_mknod - create a special file
1388 * @dir: inode destination for new link
1389 * @dentry: dentry for file
1390 * @mode: mode for creation
Eric Van Hensbergenee443992008-03-05 07:08:09 -06001391 * @rdev: device associated with special file
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001392 *
1393 */
1394
1395static int
Al Viro1a67aaf2011-07-26 01:52:52 -04001396v9fs_vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001397{
Al Viroc2837de2011-07-24 18:59:07 -04001398 struct v9fs_session_info *v9ses = v9fs_inode2v9ses(dir);
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001399 int retval;
Al Virob46c2672015-04-14 12:10:34 -04001400 char name[2 + U32_MAX_DIGITS + 1 + U32_MAX_DIGITS + 1];
Al Viroc2837de2011-07-24 18:59:07 -04001401 u32 perm;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001402
Al Viro4b8e9922014-08-19 20:17:38 -04001403 p9_debug(P9_DEBUG_VFS, " %lu,%pd mode: %hx MAJOR: %u MINOR: %u\n",
1404 dir->i_ino, dentry, mode,
Joe Perches5d385152011-11-28 10:40:46 -08001405 MAJOR(rdev), MINOR(rdev));
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001406
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001407 /* build extension */
1408 if (S_ISBLK(mode))
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001409 sprintf(name, "b %u %u", MAJOR(rdev), MINOR(rdev));
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001410 else if (S_ISCHR(mode))
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001411 sprintf(name, "c %u %u", MAJOR(rdev), MINOR(rdev));
Al Virob46c2672015-04-14 12:10:34 -04001412 else
Latchesar Ionkov531b1092006-01-08 01:05:00 -08001413 *name = 0;
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001414
Al Viroc2837de2011-07-24 18:59:07 -04001415 perm = unixmode2p9mode(v9ses, mode);
1416 retval = v9fs_vfs_mkspecial(dir, dentry, perm, name);
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001417
1418 return retval;
1419}
1420
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +05301421int v9fs_refresh_inode(struct p9_fid *fid, struct inode *inode)
1422{
Aneesh Kumar K.V45089142011-07-25 18:06:33 +00001423 int umode;
1424 dev_t rdev;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +05301425 loff_t i_size;
1426 struct p9_wstat *st;
1427 struct v9fs_session_info *v9ses;
1428
1429 v9ses = v9fs_inode2v9ses(inode);
1430 st = p9_client_stat(fid);
1431 if (IS_ERR(st))
1432 return PTR_ERR(st);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +00001433 /*
1434 * Don't update inode if the file type is different
1435 */
1436 umode = p9mode2unixmode(v9ses, st, &rdev);
1437 if ((inode->i_mode & S_IFMT) != (umode & S_IFMT))
1438 goto out;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +05301439
1440 spin_lock(&inode->i_lock);
1441 /*
1442 * We don't want to refresh inode->i_size,
1443 * because we may have cached data
1444 */
1445 i_size = inode->i_size;
1446 v9fs_stat2inode(st, inode, inode->i_sb);
Dominique Martinetfb89b452014-01-10 13:44:09 +01001447 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +05301448 inode->i_size = i_size;
1449 spin_unlock(&inode->i_lock);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +00001450out:
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +05301451 p9stat_free(st);
1452 kfree(st);
1453 return 0;
1454}
1455
Sripathi Kodi9b6533c2010-03-25 12:41:54 +00001456static const struct inode_operations v9fs_dir_inode_operations_dotu = {
1457 .create = v9fs_vfs_create,
1458 .lookup = v9fs_vfs_lookup,
Miklos Szeredie43ae792012-06-05 15:10:26 +02001459 .atomic_open = v9fs_vfs_atomic_open,
Sripathi Kodi9b6533c2010-03-25 12:41:54 +00001460 .symlink = v9fs_vfs_symlink,
Venkateswararao Jujjuri (JV)50cc42f2010-06-09 15:59:31 -07001461 .link = v9fs_vfs_link,
Sripathi Kodi9b6533c2010-03-25 12:41:54 +00001462 .unlink = v9fs_vfs_unlink,
1463 .mkdir = v9fs_vfs_mkdir,
1464 .rmdir = v9fs_vfs_rmdir,
Aneesh Kumar K.V1d76e312010-08-30 17:43:07 +00001465 .mknod = v9fs_vfs_mknod,
Sripathi Kodi9b6533c2010-03-25 12:41:54 +00001466 .rename = v9fs_vfs_rename,
1467 .getattr = v9fs_vfs_getattr,
1468 .setattr = v9fs_vfs_setattr,
1469};
1470
Arjan van de Ven754661f2007-02-12 00:55:38 -08001471static const struct inode_operations v9fs_dir_inode_operations = {
Eric Van Hensbergenb5016112005-09-09 13:04:27 -07001472 .create = v9fs_vfs_create,
1473 .lookup = v9fs_vfs_lookup,
Miklos Szeredie43ae792012-06-05 15:10:26 +02001474 .atomic_open = v9fs_vfs_atomic_open,
Eric Van Hensbergenb5016112005-09-09 13:04:27 -07001475 .unlink = v9fs_vfs_unlink,
1476 .mkdir = v9fs_vfs_mkdir,
1477 .rmdir = v9fs_vfs_rmdir,
1478 .mknod = v9fs_vfs_mknod,
1479 .rename = v9fs_vfs_rename,
1480 .getattr = v9fs_vfs_getattr,
1481 .setattr = v9fs_vfs_setattr,
1482};
1483
Arjan van de Ven754661f2007-02-12 00:55:38 -08001484static const struct inode_operations v9fs_file_inode_operations = {
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001485 .getattr = v9fs_vfs_getattr,
1486 .setattr = v9fs_vfs_setattr,
1487};
1488
Arjan van de Ven754661f2007-02-12 00:55:38 -08001489static const struct inode_operations v9fs_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -05001490 .get_link = v9fs_vfs_get_link,
Eric Van Hensbergen2bad8472005-09-09 13:04:19 -07001491 .getattr = v9fs_vfs_getattr,
1492 .setattr = v9fs_vfs_setattr,
1493};
Sripathi Kodi9b6533c2010-03-25 12:41:54 +00001494