blob: cfaebdef9743a96031ad52063dd3b982110bf963 [file] [log] [blame]
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001/*
2 * linux/fs/9p/vfs_inode_dotl.c
3 *
4 * This file contains vfs inode ops for the 9P2000.L 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
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
12 *
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/pagemap.h>
31#include <linux/stat.h>
32#include <linux/string.h>
33#include <linux/inet.h>
34#include <linux/namei.h>
35#include <linux/idr.h>
36#include <linux/sched.h>
37#include <linux/slab.h>
38#include <linux/xattr.h>
39#include <linux/posix_acl.h>
40#include <net/9p/9p.h>
41#include <net/9p/client.h>
42
43#include "v9fs.h"
44#include "v9fs_vfs.h"
45#include "fid.h"
46#include "cache.h"
47#include "xattr.h"
48#include "acl.h"
49
50static int
Al Viro1a67aaf2011-07-26 01:52:52 -040051v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -060052 dev_t rdev);
53
54/**
55 * v9fs_get_fsgid_for_create - Helper function to get the gid for creating a
56 * new file system object. This checks the S_ISGID to determine the owning
57 * group of the new file system object.
58 */
59
60static gid_t v9fs_get_fsgid_for_create(struct inode *dir_inode)
61{
62 BUG_ON(dir_inode == NULL);
63
64 if (dir_inode->i_mode & S_ISGID) {
65 /* set_gid bit is set.*/
66 return dir_inode->i_gid;
67 }
68 return current_fsgid();
69}
70
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +000071static int v9fs_test_inode_dotl(struct inode *inode, void *data)
72{
73 struct v9fs_inode *v9inode = V9FS_I(inode);
74 struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
75
76 /* don't match inode of different type */
77 if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT))
78 return 0;
79
80 if (inode->i_generation != st->st_gen)
81 return 0;
82
83 /* compare qid details */
84 if (memcmp(&v9inode->qid.version,
85 &st->qid.version, sizeof(v9inode->qid.version)))
86 return 0;
87
88 if (v9inode->qid.type != st->qid.type)
89 return 0;
90 return 1;
91}
92
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +053093/* Always get a new inode */
94static int v9fs_test_new_inode_dotl(struct inode *inode, void *data)
95{
96 return 0;
97}
98
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +000099static int v9fs_set_inode_dotl(struct inode *inode, void *data)
100{
101 struct v9fs_inode *v9inode = V9FS_I(inode);
102 struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
103
104 memcpy(&v9inode->qid, &st->qid, sizeof(st->qid));
105 inode->i_generation = st->st_gen;
106 return 0;
107}
108
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530109static struct inode *v9fs_qid_iget_dotl(struct super_block *sb,
110 struct p9_qid *qid,
111 struct p9_fid *fid,
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530112 struct p9_stat_dotl *st,
113 int new)
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530114{
115 int retval;
116 unsigned long i_ino;
117 struct inode *inode;
118 struct v9fs_session_info *v9ses = sb->s_fs_info;
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530119 int (*test)(struct inode *, void *);
120
121 if (new)
122 test = v9fs_test_new_inode_dotl;
123 else
124 test = v9fs_test_inode_dotl;
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530125
126 i_ino = v9fs_qid2ino(qid);
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530127 inode = iget5_locked(sb, i_ino, test, v9fs_set_inode_dotl, st);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530128 if (!inode)
129 return ERR_PTR(-ENOMEM);
130 if (!(inode->i_state & I_NEW))
131 return inode;
132 /*
133 * initialize the inode with the stat info
134 * FIXME!! we may need support for stale inodes
135 * later.
136 */
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000137 inode->i_ino = i_ino;
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000138 retval = v9fs_init_inode(v9ses, inode,
139 st->st_mode, new_decode_dev(st->st_rdev));
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530140 if (retval)
141 goto error;
142
143 v9fs_stat2inode_dotl(st, inode);
144#ifdef CONFIG_9P_FSCACHE
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530145 v9fs_cache_inode_get_cookie(inode);
146#endif
147 retval = v9fs_get_acl(inode, fid);
148 if (retval)
149 goto error;
150
151 unlock_new_inode(inode);
152 return inode;
153error:
154 unlock_new_inode(inode);
155 iput(inode);
156 return ERR_PTR(retval);
157
158}
159
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600160struct inode *
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530161v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid,
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530162 struct super_block *sb, int new)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600163{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600164 struct p9_stat_dotl *st;
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530165 struct inode *inode = NULL;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600166
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000167 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC | P9_STATS_GEN);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600168 if (IS_ERR(st))
169 return ERR_CAST(st);
170
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530171 inode = v9fs_qid_iget_dotl(sb, &st->qid, fid, st, new);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600172 kfree(st);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530173 return inode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600174}
175
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +0530176struct dotl_openflag_map {
177 int open_flag;
178 int dotl_flag;
179};
180
181static int v9fs_mapped_dotl_flags(int flags)
182{
183 int i;
184 int rflags = 0;
185 struct dotl_openflag_map dotl_oflag_map[] = {
186 { O_CREAT, P9_DOTL_CREATE },
187 { O_EXCL, P9_DOTL_EXCL },
188 { O_NOCTTY, P9_DOTL_NOCTTY },
189 { O_TRUNC, P9_DOTL_TRUNC },
190 { O_APPEND, P9_DOTL_APPEND },
191 { O_NONBLOCK, P9_DOTL_NONBLOCK },
192 { O_DSYNC, P9_DOTL_DSYNC },
193 { FASYNC, P9_DOTL_FASYNC },
194 { O_DIRECT, P9_DOTL_DIRECT },
195 { O_LARGEFILE, P9_DOTL_LARGEFILE },
196 { O_DIRECTORY, P9_DOTL_DIRECTORY },
197 { O_NOFOLLOW, P9_DOTL_NOFOLLOW },
198 { O_NOATIME, P9_DOTL_NOATIME },
199 { O_CLOEXEC, P9_DOTL_CLOEXEC },
200 { O_SYNC, P9_DOTL_SYNC},
201 };
202 for (i = 0; i < ARRAY_SIZE(dotl_oflag_map); i++) {
203 if (flags & dotl_oflag_map[i].open_flag)
204 rflags |= dotl_oflag_map[i].dotl_flag;
205 }
206 return rflags;
207}
208
209/**
210 * v9fs_open_to_dotl_flags- convert Linux specific open flags to
211 * plan 9 open flag.
212 * @flags: flags to convert
213 */
214int v9fs_open_to_dotl_flags(int flags)
215{
216 int rflags = 0;
217
218 /*
219 * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY
220 * and P9_DOTL_NOACCESS
221 */
222 rflags |= flags & O_ACCMODE;
223 rflags |= v9fs_mapped_dotl_flags(flags);
224
225 return rflags;
226}
227
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600228/**
229 * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
230 * @dir: directory inode that is being created
231 * @dentry: dentry that is being deleted
232 * @mode: create permissions
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600233 *
234 */
235
236static int
Al Viro4acdaf22011-07-26 01:42:34 -0400237v9fs_vfs_create_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600238 struct nameidata *nd)
239{
Miklos Szeredie43ae792012-06-05 15:10:26 +0200240 return v9fs_vfs_mknod_dotl(dir, dentry, omode, 0);
241}
242
Al Virod9585272012-06-22 12:39:14 +0400243static int
Miklos Szeredie43ae792012-06-05 15:10:26 +0200244v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
Al Viro30d90492012-06-22 12:40:19 +0400245 struct file *file, unsigned flags, umode_t omode,
Al Viro47237682012-06-10 05:01:45 -0400246 int *opened)
Miklos Szeredie43ae792012-06-05 15:10:26 +0200247{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600248 int err = 0;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600249 gid_t gid;
Al Virod3fb6122011-07-23 18:37:50 -0400250 umode_t mode;
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530251 char *name = NULL;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600252 struct p9_qid qid;
253 struct inode *inode;
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530254 struct p9_fid *fid = NULL;
255 struct v9fs_inode *v9inode;
256 struct p9_fid *dfid, *ofid, *inode_fid;
257 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600258 struct posix_acl *pacl = NULL, *dacl = NULL;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200259 struct dentry *res = NULL;
260
261 if (d_unhashed(dentry)) {
262 res = v9fs_vfs_lookup(dir, dentry, NULL);
263 if (IS_ERR(res))
Al Virod9585272012-06-22 12:39:14 +0400264 return PTR_ERR(res);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200265
266 if (res)
267 dentry = res;
268 }
269
270 /* Only creates */
271 if (!(flags & O_CREAT) || dentry->d_inode) {
Al Viro30d90492012-06-22 12:40:19 +0400272 finish_no_open(file, res);
Al Virod9585272012-06-22 12:39:14 +0400273 return 1;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200274 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600275
276 v9ses = v9fs_inode2v9ses(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600277
278 name = (char *) dentry->d_name.name;
Linus Torvalds609eac12012-01-10 15:09:01 -0800279 p9_debug(P9_DEBUG_VFS, "name:%s flags:0x%x mode:0x%hx\n",
Joe Perches5d385152011-11-28 10:40:46 -0800280 name, flags, omode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600281
282 dfid = v9fs_fid_lookup(dentry->d_parent);
283 if (IS_ERR(dfid)) {
284 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800285 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400286 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600287 }
288
289 /* clone a fid to use for creation */
290 ofid = p9_client_walk(dfid, 0, NULL, 1);
291 if (IS_ERR(ofid)) {
292 err = PTR_ERR(ofid);
Joe Perches5d385152011-11-28 10:40:46 -0800293 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400294 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600295 }
296
297 gid = v9fs_get_fsgid_for_create(dir);
298
299 mode = omode;
300 /* Update mode based on ACL value */
301 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
302 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800303 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in creat %d\n",
304 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600305 goto error;
306 }
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +0530307 err = p9_client_create_dotl(ofid, name, v9fs_open_to_dotl_flags(flags),
308 mode, gid, &qid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600309 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800310 p9_debug(P9_DEBUG_VFS, "p9_client_open_dotl failed in creat %d\n",
311 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600312 goto error;
313 }
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530314 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600315
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600316 /* instantiate inode and assign the unopened fid to the dentry */
317 fid = p9_client_walk(dfid, 1, &name, 1);
318 if (IS_ERR(fid)) {
319 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800320 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600321 fid = NULL;
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600322 goto error;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600323 }
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530324 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600325 if (IS_ERR(inode)) {
326 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800327 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", err);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600328 goto error;
329 }
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600330 err = v9fs_fid_add(dentry, fid);
331 if (err < 0)
332 goto error;
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000333 d_instantiate(dentry, inode);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600334
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600335 /* Now set the ACL based on the default value */
Al Viro1ec95bf2011-07-23 02:28:13 -0400336 v9fs_set_create_acl(dentry, &dacl, &pacl);
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530337
338 v9inode = V9FS_I(inode);
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530339 mutex_lock(&v9inode->v_mutex);
Aneesh Kumar K.V7add6972011-03-08 16:39:49 +0530340 if (v9ses->cache && !v9inode->writeback_fid &&
341 ((flags & O_ACCMODE) != O_RDONLY)) {
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530342 /*
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530343 * clone a fid and add it to writeback_fid
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530344 * we do it during open time instead of
345 * page dirty time via write_begin/page_mkwrite
346 * because we want write after unlink usecase
347 * to work.
348 */
349 inode_fid = v9fs_writeback_fid(dentry);
350 if (IS_ERR(inode_fid)) {
351 err = PTR_ERR(inode_fid);
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530352 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000353 goto err_clunk_old_fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530354 }
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530355 v9inode->writeback_fid = (void *) inode_fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530356 }
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530357 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600358 /* Since we are opening a file, assign the open fid to the file */
Al Viro30d90492012-06-22 12:40:19 +0400359 err = finish_open(file, dentry, generic_file_open, opened);
360 if (err)
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000361 goto err_clunk_old_fid;
Al Viro30d90492012-06-22 12:40:19 +0400362 file->private_data = ofid;
Aneesh Kumar K.V46848de2011-02-28 17:03:55 +0530363#ifdef CONFIG_9P_FSCACHE
364 if (v9ses->cache)
Al Viro30d90492012-06-22 12:40:19 +0400365 v9fs_cache_inode_set_cookie(inode, file);
Aneesh Kumar K.V46848de2011-02-28 17:03:55 +0530366#endif
Al Viro47237682012-06-10 05:01:45 -0400367 *opened |= FILE_CREATED;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200368out:
369 dput(res);
Al Virod9585272012-06-22 12:39:14 +0400370 return err;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600371
372error:
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600373 if (fid)
374 p9_client_clunk(fid);
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000375err_clunk_old_fid:
376 if (ofid)
377 p9_client_clunk(ofid);
Al Viro1ec95bf2011-07-23 02:28:13 -0400378 v9fs_set_create_acl(NULL, &dacl, &pacl);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200379 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600380}
381
382/**
383 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
384 * @dir: inode that is being unlinked
385 * @dentry: dentry that is being unlinked
386 * @mode: mode for new directory
387 *
388 */
389
390static int v9fs_vfs_mkdir_dotl(struct inode *dir,
Al Viro18bb1db2011-07-26 01:41:39 -0400391 struct dentry *dentry, umode_t omode)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600392{
393 int err;
394 struct v9fs_session_info *v9ses;
395 struct p9_fid *fid = NULL, *dfid = NULL;
396 gid_t gid;
397 char *name;
Al Virod3fb6122011-07-23 18:37:50 -0400398 umode_t mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600399 struct inode *inode;
400 struct p9_qid qid;
401 struct dentry *dir_dentry;
402 struct posix_acl *dacl = NULL, *pacl = NULL;
403
Joe Perches5d385152011-11-28 10:40:46 -0800404 p9_debug(P9_DEBUG_VFS, "name %s\n", dentry->d_name.name);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600405 err = 0;
406 v9ses = v9fs_inode2v9ses(dir);
407
408 omode |= S_IFDIR;
409 if (dir->i_mode & S_ISGID)
410 omode |= S_ISGID;
411
Al Viroaf569592012-04-02 20:02:53 -0400412 dir_dentry = dentry->d_parent;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600413 dfid = v9fs_fid_lookup(dir_dentry);
414 if (IS_ERR(dfid)) {
415 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800416 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600417 dfid = NULL;
418 goto error;
419 }
420
421 gid = v9fs_get_fsgid_for_create(dir);
422 mode = omode;
423 /* Update mode based on ACL value */
424 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
425 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800426 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mkdir %d\n",
427 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600428 goto error;
429 }
430 name = (char *) dentry->d_name.name;
431 err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
432 if (err < 0)
433 goto error;
434
435 /* instantiate inode and assign the unopened fid to the dentry */
436 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
437 fid = p9_client_walk(dfid, 1, &name, 1);
438 if (IS_ERR(fid)) {
439 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800440 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
441 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600442 fid = NULL;
443 goto error;
444 }
445
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530446 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600447 if (IS_ERR(inode)) {
448 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800449 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
450 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600451 goto error;
452 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600453 err = v9fs_fid_add(dentry, fid);
454 if (err < 0)
455 goto error;
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000456 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600457 fid = NULL;
458 } else {
459 /*
460 * Not in cached mode. No need to populate
461 * inode with stat. We need to get an inode
462 * so that we can set the acl with dentry
463 */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000464 inode = v9fs_get_inode(dir->i_sb, mode, 0);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600465 if (IS_ERR(inode)) {
466 err = PTR_ERR(inode);
467 goto error;
468 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600469 d_instantiate(dentry, inode);
470 }
471 /* Now set the ACL based on the default value */
Al Viro1ec95bf2011-07-23 02:28:13 -0400472 v9fs_set_create_acl(dentry, &dacl, &pacl);
Aneesh Kumar K.Vb271ec42011-02-28 17:04:05 +0530473 inc_nlink(dir);
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530474 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600475error:
476 if (fid)
477 p9_client_clunk(fid);
Al Viro1ec95bf2011-07-23 02:28:13 -0400478 v9fs_set_create_acl(NULL, &dacl, &pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600479 return err;
480}
481
482static int
483v9fs_vfs_getattr_dotl(struct vfsmount *mnt, struct dentry *dentry,
484 struct kstat *stat)
485{
486 int err;
487 struct v9fs_session_info *v9ses;
488 struct p9_fid *fid;
489 struct p9_stat_dotl *st;
490
Joe Perches5d385152011-11-28 10:40:46 -0800491 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600492 err = -EPERM;
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +0530493 v9ses = v9fs_dentry2v9ses(dentry);
Aneesh Kumar K.Va1211902011-02-28 17:04:01 +0530494 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
495 generic_fillattr(dentry->d_inode, stat);
496 return 0;
497 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600498 fid = v9fs_fid_lookup(dentry);
499 if (IS_ERR(fid))
500 return PTR_ERR(fid);
501
502 /* Ask for all the fields in stat structure. Server will return
503 * whatever it supports
504 */
505
506 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
507 if (IS_ERR(st))
508 return PTR_ERR(st);
509
510 v9fs_stat2inode_dotl(st, dentry->d_inode);
511 generic_fillattr(dentry->d_inode, stat);
512 /* Change block size to what the server returned */
513 stat->blksize = st->st_blksize;
514
515 kfree(st);
516 return 0;
517}
518
Aneesh Kumar K.Vf7666192011-12-18 23:03:13 +0530519/*
520 * Attribute flags.
521 */
522#define P9_ATTR_MODE (1 << 0)
523#define P9_ATTR_UID (1 << 1)
524#define P9_ATTR_GID (1 << 2)
525#define P9_ATTR_SIZE (1 << 3)
526#define P9_ATTR_ATIME (1 << 4)
527#define P9_ATTR_MTIME (1 << 5)
528#define P9_ATTR_CTIME (1 << 6)
529#define P9_ATTR_ATIME_SET (1 << 7)
530#define P9_ATTR_MTIME_SET (1 << 8)
531
532struct dotl_iattr_map {
533 int iattr_valid;
534 int p9_iattr_valid;
535};
536
537static int v9fs_mapped_iattr_valid(int iattr_valid)
538{
539 int i;
540 int p9_iattr_valid = 0;
541 struct dotl_iattr_map dotl_iattr_map[] = {
542 { ATTR_MODE, P9_ATTR_MODE },
543 { ATTR_UID, P9_ATTR_UID },
544 { ATTR_GID, P9_ATTR_GID },
545 { ATTR_SIZE, P9_ATTR_SIZE },
546 { ATTR_ATIME, P9_ATTR_ATIME },
547 { ATTR_MTIME, P9_ATTR_MTIME },
548 { ATTR_CTIME, P9_ATTR_CTIME },
549 { ATTR_ATIME_SET, P9_ATTR_ATIME_SET },
550 { ATTR_MTIME_SET, P9_ATTR_MTIME_SET },
551 };
552 for (i = 0; i < ARRAY_SIZE(dotl_iattr_map); i++) {
553 if (iattr_valid & dotl_iattr_map[i].iattr_valid)
554 p9_iattr_valid |= dotl_iattr_map[i].p9_iattr_valid;
555 }
556 return p9_iattr_valid;
557}
558
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600559/**
560 * v9fs_vfs_setattr_dotl - set file metadata
561 * @dentry: file whose metadata to set
562 * @iattr: metadata assignment structure
563 *
564 */
565
566int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
567{
568 int retval;
569 struct v9fs_session_info *v9ses;
570 struct p9_fid *fid;
571 struct p9_iattr_dotl p9attr;
572
Joe Perches5d385152011-11-28 10:40:46 -0800573 p9_debug(P9_DEBUG_VFS, "\n");
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600574
575 retval = inode_change_ok(dentry->d_inode, iattr);
576 if (retval)
577 return retval;
578
Aneesh Kumar K.Vf7666192011-12-18 23:03:13 +0530579 p9attr.valid = v9fs_mapped_iattr_valid(iattr->ia_valid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600580 p9attr.mode = iattr->ia_mode;
581 p9attr.uid = iattr->ia_uid;
582 p9attr.gid = iattr->ia_gid;
583 p9attr.size = iattr->ia_size;
584 p9attr.atime_sec = iattr->ia_atime.tv_sec;
585 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
586 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
587 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
588
589 retval = -EPERM;
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +0530590 v9ses = v9fs_dentry2v9ses(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600591 fid = v9fs_fid_lookup(dentry);
592 if (IS_ERR(fid))
593 return PTR_ERR(fid);
594
Aneesh Kumar K.V3dc54362011-02-28 17:04:11 +0530595 /* Write all dirty data */
596 if (S_ISREG(dentry->d_inode->i_mode))
597 filemap_write_and_wait(dentry->d_inode->i_mapping);
598
Aneesh Kumar K.Vf10fc502011-02-28 17:04:10 +0530599 retval = p9_client_setattr(fid, &p9attr);
600 if (retval < 0)
601 return retval;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600602
Aneesh Kumar K.V059c1382011-03-08 16:39:48 +0530603 if ((iattr->ia_valid & ATTR_SIZE) &&
604 iattr->ia_size != i_size_read(dentry->d_inode))
605 truncate_setsize(dentry->d_inode, iattr->ia_size);
606
607 v9fs_invalidate_inode_attr(dentry->d_inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600608 setattr_copy(dentry->d_inode, iattr);
609 mark_inode_dirty(dentry->d_inode);
610 if (iattr->ia_valid & ATTR_MODE) {
611 /* We also want to update ACL when we update mode bits */
612 retval = v9fs_acl_chmod(dentry);
613 if (retval < 0)
614 return retval;
615 }
616 return 0;
617}
618
619/**
620 * v9fs_stat2inode_dotl - populate an inode structure with stat info
621 * @stat: stat structure
622 * @inode: inode to populate
623 * @sb: superblock of filesystem
624 *
625 */
626
627void
628v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode)
629{
Al Viro3eda0de2011-07-26 02:53:22 -0400630 umode_t mode;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530631 struct v9fs_inode *v9inode = V9FS_I(inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600632
633 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
634 inode->i_atime.tv_sec = stat->st_atime_sec;
635 inode->i_atime.tv_nsec = stat->st_atime_nsec;
636 inode->i_mtime.tv_sec = stat->st_mtime_sec;
637 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
638 inode->i_ctime.tv_sec = stat->st_ctime_sec;
639 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
640 inode->i_uid = stat->st_uid;
641 inode->i_gid = stat->st_gid;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200642 set_nlink(inode, stat->st_nlink);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600643
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000644 mode = stat->st_mode & S_IALLUGO;
645 mode |= inode->i_mode & ~S_IALLUGO;
646 inode->i_mode = mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600647
648 i_size_write(inode, stat->st_size);
649 inode->i_blocks = stat->st_blocks;
650 } else {
651 if (stat->st_result_mask & P9_STATS_ATIME) {
652 inode->i_atime.tv_sec = stat->st_atime_sec;
653 inode->i_atime.tv_nsec = stat->st_atime_nsec;
654 }
655 if (stat->st_result_mask & P9_STATS_MTIME) {
656 inode->i_mtime.tv_sec = stat->st_mtime_sec;
657 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
658 }
659 if (stat->st_result_mask & P9_STATS_CTIME) {
660 inode->i_ctime.tv_sec = stat->st_ctime_sec;
661 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
662 }
663 if (stat->st_result_mask & P9_STATS_UID)
664 inode->i_uid = stat->st_uid;
665 if (stat->st_result_mask & P9_STATS_GID)
666 inode->i_gid = stat->st_gid;
667 if (stat->st_result_mask & P9_STATS_NLINK)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200668 set_nlink(inode, stat->st_nlink);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600669 if (stat->st_result_mask & P9_STATS_MODE) {
670 inode->i_mode = stat->st_mode;
671 if ((S_ISBLK(inode->i_mode)) ||
672 (S_ISCHR(inode->i_mode)))
673 init_special_inode(inode, inode->i_mode,
674 inode->i_rdev);
675 }
676 if (stat->st_result_mask & P9_STATS_RDEV)
677 inode->i_rdev = new_decode_dev(stat->st_rdev);
678 if (stat->st_result_mask & P9_STATS_SIZE)
679 i_size_write(inode, stat->st_size);
680 if (stat->st_result_mask & P9_STATS_BLOCKS)
681 inode->i_blocks = stat->st_blocks;
682 }
683 if (stat->st_result_mask & P9_STATS_GEN)
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000684 inode->i_generation = stat->st_gen;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600685
686 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
687 * because the inode structure does not have fields for them.
688 */
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530689 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600690}
691
692static int
693v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry,
694 const char *symname)
695{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600696 int err;
697 gid_t gid;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530698 char *name;
699 struct p9_qid qid;
700 struct inode *inode;
701 struct p9_fid *dfid;
702 struct p9_fid *fid = NULL;
703 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600704
705 name = (char *) dentry->d_name.name;
Joe Perches5d385152011-11-28 10:40:46 -0800706 p9_debug(P9_DEBUG_VFS, "%lu,%s,%s\n", dir->i_ino, name, symname);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600707 v9ses = v9fs_inode2v9ses(dir);
708
709 dfid = v9fs_fid_lookup(dentry->d_parent);
710 if (IS_ERR(dfid)) {
711 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800712 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600713 return err;
714 }
715
716 gid = v9fs_get_fsgid_for_create(dir);
717
718 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
719 err = p9_client_symlink(dfid, name, (char *)symname, gid, &qid);
720
721 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800722 p9_debug(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600723 goto error;
724 }
725
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530726 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600727 if (v9ses->cache) {
728 /* Now walk from the parent so we can get an unopened fid. */
729 fid = p9_client_walk(dfid, 1, &name, 1);
730 if (IS_ERR(fid)) {
731 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800732 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
733 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600734 fid = NULL;
735 goto error;
736 }
737
738 /* instantiate inode and assign the unopened fid to dentry */
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530739 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600740 if (IS_ERR(inode)) {
741 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800742 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
743 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600744 goto error;
745 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600746 err = v9fs_fid_add(dentry, fid);
747 if (err < 0)
748 goto error;
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000749 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600750 fid = NULL;
751 } else {
752 /* Not in cached mode. No need to populate inode with stat */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000753 inode = v9fs_get_inode(dir->i_sb, S_IFLNK, 0);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600754 if (IS_ERR(inode)) {
755 err = PTR_ERR(inode);
756 goto error;
757 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600758 d_instantiate(dentry, inode);
759 }
760
761error:
762 if (fid)
763 p9_client_clunk(fid);
764
765 return err;
766}
767
768/**
769 * v9fs_vfs_link_dotl - create a hardlink for dotl
770 * @old_dentry: dentry for file to link to
771 * @dir: inode destination for new link
772 * @dentry: dentry for link
773 *
774 */
775
776static int
777v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
778 struct dentry *dentry)
779{
780 int err;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600781 char *name;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600782 struct dentry *dir_dentry;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530783 struct p9_fid *dfid, *oldfid;
784 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600785
Joe Perches5d385152011-11-28 10:40:46 -0800786 p9_debug(P9_DEBUG_VFS, "dir ino: %lu, old_name: %s, new_name: %s\n",
787 dir->i_ino, old_dentry->d_name.name, dentry->d_name.name);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600788
789 v9ses = v9fs_inode2v9ses(dir);
Al Viroaf569592012-04-02 20:02:53 -0400790 dir_dentry = dentry->d_parent;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600791 dfid = v9fs_fid_lookup(dir_dentry);
792 if (IS_ERR(dfid))
793 return PTR_ERR(dfid);
794
795 oldfid = v9fs_fid_lookup(old_dentry);
796 if (IS_ERR(oldfid))
797 return PTR_ERR(oldfid);
798
799 name = (char *) dentry->d_name.name;
800
801 err = p9_client_link(dfid, oldfid, (char *)dentry->d_name.name);
802
803 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800804 p9_debug(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600805 return err;
806 }
807
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530808 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600809 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
810 /* Get the latest stat info from server. */
811 struct p9_fid *fid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600812 fid = v9fs_fid_lookup(old_dentry);
813 if (IS_ERR(fid))
814 return PTR_ERR(fid);
815
Aneesh Kumar K.Vc06c0662011-02-28 17:04:09 +0530816 v9fs_refresh_inode_dotl(fid, old_dentry->d_inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600817 }
Aneesh Kumar K.V20656a42011-02-28 17:03:55 +0530818 ihold(old_dentry->d_inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600819 d_instantiate(dentry, old_dentry->d_inode);
820
821 return err;
822}
823
824/**
825 * v9fs_vfs_mknod_dotl - create a special file
826 * @dir: inode destination for new link
827 * @dentry: dentry for file
828 * @mode: mode for creation
829 * @rdev: device associated with special file
830 *
831 */
832static int
Al Viro1a67aaf2011-07-26 01:52:52 -0400833v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600834 dev_t rdev)
835{
836 int err;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530837 gid_t gid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600838 char *name;
Al Virod3fb6122011-07-23 18:37:50 -0400839 umode_t mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600840 struct v9fs_session_info *v9ses;
841 struct p9_fid *fid = NULL, *dfid = NULL;
842 struct inode *inode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600843 struct p9_qid qid;
844 struct dentry *dir_dentry;
845 struct posix_acl *dacl = NULL, *pacl = NULL;
846
Linus Torvalds609eac12012-01-10 15:09:01 -0800847 p9_debug(P9_DEBUG_VFS, " %lu,%s mode: %hx MAJOR: %u MINOR: %u\n",
Joe Perches5d385152011-11-28 10:40:46 -0800848 dir->i_ino, dentry->d_name.name, omode,
849 MAJOR(rdev), MINOR(rdev));
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600850
851 if (!new_valid_dev(rdev))
852 return -EINVAL;
853
854 v9ses = v9fs_inode2v9ses(dir);
Al Viroaf569592012-04-02 20:02:53 -0400855 dir_dentry = dentry->d_parent;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600856 dfid = v9fs_fid_lookup(dir_dentry);
857 if (IS_ERR(dfid)) {
858 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800859 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600860 dfid = NULL;
861 goto error;
862 }
863
864 gid = v9fs_get_fsgid_for_create(dir);
865 mode = omode;
866 /* Update mode based on ACL value */
867 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
868 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800869 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mknod %d\n",
870 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600871 goto error;
872 }
873 name = (char *) dentry->d_name.name;
874
875 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
876 if (err < 0)
877 goto error;
878
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530879 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600880 /* instantiate inode and assign the unopened fid to the dentry */
881 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
882 fid = p9_client_walk(dfid, 1, &name, 1);
883 if (IS_ERR(fid)) {
884 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800885 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
886 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600887 fid = NULL;
888 goto error;
889 }
890
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530891 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600892 if (IS_ERR(inode)) {
893 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800894 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
895 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600896 goto error;
897 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600898 err = v9fs_fid_add(dentry, fid);
899 if (err < 0)
900 goto error;
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000901 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600902 fid = NULL;
903 } else {
904 /*
905 * Not in cached mode. No need to populate inode with stat.
906 * socket syscall returns a fd, so we need instantiate
907 */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000908 inode = v9fs_get_inode(dir->i_sb, mode, rdev);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600909 if (IS_ERR(inode)) {
910 err = PTR_ERR(inode);
911 goto error;
912 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600913 d_instantiate(dentry, inode);
914 }
915 /* Now set the ACL based on the default value */
Al Viro1ec95bf2011-07-23 02:28:13 -0400916 v9fs_set_create_acl(dentry, &dacl, &pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600917error:
918 if (fid)
919 p9_client_clunk(fid);
Al Viro1ec95bf2011-07-23 02:28:13 -0400920 v9fs_set_create_acl(NULL, &dacl, &pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600921 return err;
922}
923
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600924/**
925 * v9fs_vfs_follow_link_dotl - follow a symlink path
926 * @dentry: dentry for symlink
927 * @nd: nameidata
928 *
929 */
930
931static void *
932v9fs_vfs_follow_link_dotl(struct dentry *dentry, struct nameidata *nd)
933{
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530934 int retval;
935 struct p9_fid *fid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600936 char *link = __getname();
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530937 char *target;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600938
Joe Perches5d385152011-11-28 10:40:46 -0800939 p9_debug(P9_DEBUG_VFS, "%s\n", dentry->d_name.name);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600940
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530941 if (!link) {
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600942 link = ERR_PTR(-ENOMEM);
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530943 goto ndset;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600944 }
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530945 fid = v9fs_fid_lookup(dentry);
946 if (IS_ERR(fid)) {
947 __putname(link);
Aneesh Kumar K.V936bb2d2011-03-24 23:04:41 +0530948 link = ERR_CAST(fid);
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530949 goto ndset;
950 }
951 retval = p9_client_readlink(fid, &target);
952 if (!retval) {
953 strcpy(link, target);
954 kfree(target);
955 goto ndset;
956 }
957 __putname(link);
958 link = ERR_PTR(retval);
959ndset:
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600960 nd_set_link(nd, link);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600961 return NULL;
962}
963
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530964int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode)
965{
966 loff_t i_size;
967 struct p9_stat_dotl *st;
968 struct v9fs_session_info *v9ses;
969
970 v9ses = v9fs_inode2v9ses(inode);
971 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
972 if (IS_ERR(st))
973 return PTR_ERR(st);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000974 /*
975 * Don't update inode if the file type is different
976 */
977 if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT))
978 goto out;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530979
980 spin_lock(&inode->i_lock);
981 /*
982 * We don't want to refresh inode->i_size,
983 * because we may have cached data
984 */
985 i_size = inode->i_size;
986 v9fs_stat2inode_dotl(st, inode);
987 if (v9ses->cache)
988 inode->i_size = i_size;
989 spin_unlock(&inode->i_lock);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000990out:
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530991 kfree(st);
992 return 0;
993}
994
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600995const struct inode_operations v9fs_dir_inode_operations_dotl = {
996 .create = v9fs_vfs_create_dotl,
Miklos Szeredie43ae792012-06-05 15:10:26 +0200997 .atomic_open = v9fs_vfs_atomic_open_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600998 .lookup = v9fs_vfs_lookup,
999 .link = v9fs_vfs_link_dotl,
1000 .symlink = v9fs_vfs_symlink_dotl,
1001 .unlink = v9fs_vfs_unlink,
1002 .mkdir = v9fs_vfs_mkdir_dotl,
1003 .rmdir = v9fs_vfs_rmdir,
1004 .mknod = v9fs_vfs_mknod_dotl,
1005 .rename = v9fs_vfs_rename,
1006 .getattr = v9fs_vfs_getattr_dotl,
1007 .setattr = v9fs_vfs_setattr_dotl,
1008 .setxattr = generic_setxattr,
1009 .getxattr = generic_getxattr,
1010 .removexattr = generic_removexattr,
1011 .listxattr = v9fs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02001012 .get_acl = v9fs_iop_get_acl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001013};
1014
1015const struct inode_operations v9fs_file_inode_operations_dotl = {
1016 .getattr = v9fs_vfs_getattr_dotl,
1017 .setattr = v9fs_vfs_setattr_dotl,
1018 .setxattr = generic_setxattr,
1019 .getxattr = generic_getxattr,
1020 .removexattr = generic_removexattr,
1021 .listxattr = v9fs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02001022 .get_acl = v9fs_iop_get_acl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001023};
1024
1025const struct inode_operations v9fs_symlink_inode_operations_dotl = {
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +05301026 .readlink = generic_readlink,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001027 .follow_link = v9fs_vfs_follow_link_dotl,
1028 .put_link = v9fs_vfs_put_link,
1029 .getattr = v9fs_vfs_getattr_dotl,
1030 .setattr = v9fs_vfs_setattr_dotl,
1031 .setxattr = generic_setxattr,
1032 .getxattr = generic_getxattr,
1033 .removexattr = generic_removexattr,
1034 .listxattr = v9fs_listxattr,
1035};