blob: a354fe2cb234991abd9f504decc8d6ff22f4341b [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
243static struct file *
244v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
245 struct opendata *od, unsigned flags, umode_t omode,
246 bool *created)
247{
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 file *filp;
253 struct p9_qid qid;
254 struct inode *inode;
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530255 struct p9_fid *fid = NULL;
256 struct v9fs_inode *v9inode;
257 struct p9_fid *dfid, *ofid, *inode_fid;
258 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600259 struct posix_acl *pacl = NULL, *dacl = NULL;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200260 struct dentry *res = NULL;
261
262 if (d_unhashed(dentry)) {
263 res = v9fs_vfs_lookup(dir, dentry, NULL);
264 if (IS_ERR(res))
265 return ERR_CAST(res);
266
267 if (res)
268 dentry = res;
269 }
270
271 /* Only creates */
272 if (!(flags & O_CREAT) || dentry->d_inode) {
273 finish_no_open(od, res);
274 return NULL;
275 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600276
277 v9ses = v9fs_inode2v9ses(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600278
279 name = (char *) dentry->d_name.name;
Linus Torvalds609eac12012-01-10 15:09:01 -0800280 p9_debug(P9_DEBUG_VFS, "name:%s flags:0x%x mode:0x%hx\n",
Joe Perches5d385152011-11-28 10:40:46 -0800281 name, flags, omode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600282
283 dfid = v9fs_fid_lookup(dentry->d_parent);
284 if (IS_ERR(dfid)) {
285 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800286 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200287 goto err_return;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600288 }
289
290 /* clone a fid to use for creation */
291 ofid = p9_client_walk(dfid, 0, NULL, 1);
292 if (IS_ERR(ofid)) {
293 err = PTR_ERR(ofid);
Joe Perches5d385152011-11-28 10:40:46 -0800294 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200295 goto err_return;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600296 }
297
298 gid = v9fs_get_fsgid_for_create(dir);
299
300 mode = omode;
301 /* Update mode based on ACL value */
302 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
303 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800304 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in creat %d\n",
305 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600306 goto error;
307 }
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +0530308 err = p9_client_create_dotl(ofid, name, v9fs_open_to_dotl_flags(flags),
309 mode, gid, &qid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600310 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800311 p9_debug(P9_DEBUG_VFS, "p9_client_open_dotl failed in creat %d\n",
312 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600313 goto error;
314 }
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530315 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600316
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600317 /* instantiate inode and assign the unopened fid to the dentry */
318 fid = p9_client_walk(dfid, 1, &name, 1);
319 if (IS_ERR(fid)) {
320 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800321 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600322 fid = NULL;
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600323 goto error;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600324 }
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530325 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600326 if (IS_ERR(inode)) {
327 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800328 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", err);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600329 goto error;
330 }
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600331 err = v9fs_fid_add(dentry, fid);
332 if (err < 0)
333 goto error;
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000334 d_instantiate(dentry, inode);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600335
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600336 /* Now set the ACL based on the default value */
Al Viro1ec95bf2011-07-23 02:28:13 -0400337 v9fs_set_create_acl(dentry, &dacl, &pacl);
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530338
339 v9inode = V9FS_I(inode);
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530340 mutex_lock(&v9inode->v_mutex);
Aneesh Kumar K.V7add6972011-03-08 16:39:49 +0530341 if (v9ses->cache && !v9inode->writeback_fid &&
342 ((flags & O_ACCMODE) != O_RDONLY)) {
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530343 /*
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530344 * clone a fid and add it to writeback_fid
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530345 * we do it during open time instead of
346 * page dirty time via write_begin/page_mkwrite
347 * because we want write after unlink usecase
348 * to work.
349 */
350 inode_fid = v9fs_writeback_fid(dentry);
351 if (IS_ERR(inode_fid)) {
352 err = PTR_ERR(inode_fid);
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530353 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000354 goto err_clunk_old_fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530355 }
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530356 v9inode->writeback_fid = (void *) inode_fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530357 }
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530358 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600359 /* Since we are opening a file, assign the open fid to the file */
Miklos Szeredie43ae792012-06-05 15:10:26 +0200360 filp = finish_open(od, dentry, generic_file_open);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600361 if (IS_ERR(filp)) {
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000362 err = PTR_ERR(filp);
363 goto err_clunk_old_fid;
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600364 }
365 filp->private_data = ofid;
Aneesh Kumar K.V46848de2011-02-28 17:03:55 +0530366#ifdef CONFIG_9P_FSCACHE
367 if (v9ses->cache)
368 v9fs_cache_inode_set_cookie(inode, filp);
369#endif
Miklos Szeredie43ae792012-06-05 15:10:26 +0200370 *created = true;
371out:
372 dput(res);
373 return filp;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600374
375error:
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600376 if (fid)
377 p9_client_clunk(fid);
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000378err_clunk_old_fid:
379 if (ofid)
380 p9_client_clunk(ofid);
Al Viro1ec95bf2011-07-23 02:28:13 -0400381 v9fs_set_create_acl(NULL, &dacl, &pacl);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200382err_return:
383 filp = ERR_PTR(err);
384 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600385}
386
387/**
388 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
389 * @dir: inode that is being unlinked
390 * @dentry: dentry that is being unlinked
391 * @mode: mode for new directory
392 *
393 */
394
395static int v9fs_vfs_mkdir_dotl(struct inode *dir,
Al Viro18bb1db2011-07-26 01:41:39 -0400396 struct dentry *dentry, umode_t omode)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600397{
398 int err;
399 struct v9fs_session_info *v9ses;
400 struct p9_fid *fid = NULL, *dfid = NULL;
401 gid_t gid;
402 char *name;
Al Virod3fb6122011-07-23 18:37:50 -0400403 umode_t mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600404 struct inode *inode;
405 struct p9_qid qid;
406 struct dentry *dir_dentry;
407 struct posix_acl *dacl = NULL, *pacl = NULL;
408
Joe Perches5d385152011-11-28 10:40:46 -0800409 p9_debug(P9_DEBUG_VFS, "name %s\n", dentry->d_name.name);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600410 err = 0;
411 v9ses = v9fs_inode2v9ses(dir);
412
413 omode |= S_IFDIR;
414 if (dir->i_mode & S_ISGID)
415 omode |= S_ISGID;
416
Al Viroaf569592012-04-02 20:02:53 -0400417 dir_dentry = dentry->d_parent;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600418 dfid = v9fs_fid_lookup(dir_dentry);
419 if (IS_ERR(dfid)) {
420 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800421 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600422 dfid = NULL;
423 goto error;
424 }
425
426 gid = v9fs_get_fsgid_for_create(dir);
427 mode = omode;
428 /* Update mode based on ACL value */
429 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
430 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800431 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mkdir %d\n",
432 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600433 goto error;
434 }
435 name = (char *) dentry->d_name.name;
436 err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
437 if (err < 0)
438 goto error;
439
440 /* instantiate inode and assign the unopened fid to the dentry */
441 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
442 fid = p9_client_walk(dfid, 1, &name, 1);
443 if (IS_ERR(fid)) {
444 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800445 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
446 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600447 fid = NULL;
448 goto error;
449 }
450
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530451 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600452 if (IS_ERR(inode)) {
453 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800454 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
455 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600456 goto error;
457 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600458 err = v9fs_fid_add(dentry, fid);
459 if (err < 0)
460 goto error;
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000461 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600462 fid = NULL;
463 } else {
464 /*
465 * Not in cached mode. No need to populate
466 * inode with stat. We need to get an inode
467 * so that we can set the acl with dentry
468 */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000469 inode = v9fs_get_inode(dir->i_sb, mode, 0);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600470 if (IS_ERR(inode)) {
471 err = PTR_ERR(inode);
472 goto error;
473 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600474 d_instantiate(dentry, inode);
475 }
476 /* Now set the ACL based on the default value */
Al Viro1ec95bf2011-07-23 02:28:13 -0400477 v9fs_set_create_acl(dentry, &dacl, &pacl);
Aneesh Kumar K.Vb271ec42011-02-28 17:04:05 +0530478 inc_nlink(dir);
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530479 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600480error:
481 if (fid)
482 p9_client_clunk(fid);
Al Viro1ec95bf2011-07-23 02:28:13 -0400483 v9fs_set_create_acl(NULL, &dacl, &pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600484 return err;
485}
486
487static int
488v9fs_vfs_getattr_dotl(struct vfsmount *mnt, struct dentry *dentry,
489 struct kstat *stat)
490{
491 int err;
492 struct v9fs_session_info *v9ses;
493 struct p9_fid *fid;
494 struct p9_stat_dotl *st;
495
Joe Perches5d385152011-11-28 10:40:46 -0800496 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600497 err = -EPERM;
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +0530498 v9ses = v9fs_dentry2v9ses(dentry);
Aneesh Kumar K.Va1211902011-02-28 17:04:01 +0530499 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
500 generic_fillattr(dentry->d_inode, stat);
501 return 0;
502 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600503 fid = v9fs_fid_lookup(dentry);
504 if (IS_ERR(fid))
505 return PTR_ERR(fid);
506
507 /* Ask for all the fields in stat structure. Server will return
508 * whatever it supports
509 */
510
511 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
512 if (IS_ERR(st))
513 return PTR_ERR(st);
514
515 v9fs_stat2inode_dotl(st, dentry->d_inode);
516 generic_fillattr(dentry->d_inode, stat);
517 /* Change block size to what the server returned */
518 stat->blksize = st->st_blksize;
519
520 kfree(st);
521 return 0;
522}
523
Aneesh Kumar K.Vf7666192011-12-18 23:03:13 +0530524/*
525 * Attribute flags.
526 */
527#define P9_ATTR_MODE (1 << 0)
528#define P9_ATTR_UID (1 << 1)
529#define P9_ATTR_GID (1 << 2)
530#define P9_ATTR_SIZE (1 << 3)
531#define P9_ATTR_ATIME (1 << 4)
532#define P9_ATTR_MTIME (1 << 5)
533#define P9_ATTR_CTIME (1 << 6)
534#define P9_ATTR_ATIME_SET (1 << 7)
535#define P9_ATTR_MTIME_SET (1 << 8)
536
537struct dotl_iattr_map {
538 int iattr_valid;
539 int p9_iattr_valid;
540};
541
542static int v9fs_mapped_iattr_valid(int iattr_valid)
543{
544 int i;
545 int p9_iattr_valid = 0;
546 struct dotl_iattr_map dotl_iattr_map[] = {
547 { ATTR_MODE, P9_ATTR_MODE },
548 { ATTR_UID, P9_ATTR_UID },
549 { ATTR_GID, P9_ATTR_GID },
550 { ATTR_SIZE, P9_ATTR_SIZE },
551 { ATTR_ATIME, P9_ATTR_ATIME },
552 { ATTR_MTIME, P9_ATTR_MTIME },
553 { ATTR_CTIME, P9_ATTR_CTIME },
554 { ATTR_ATIME_SET, P9_ATTR_ATIME_SET },
555 { ATTR_MTIME_SET, P9_ATTR_MTIME_SET },
556 };
557 for (i = 0; i < ARRAY_SIZE(dotl_iattr_map); i++) {
558 if (iattr_valid & dotl_iattr_map[i].iattr_valid)
559 p9_iattr_valid |= dotl_iattr_map[i].p9_iattr_valid;
560 }
561 return p9_iattr_valid;
562}
563
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600564/**
565 * v9fs_vfs_setattr_dotl - set file metadata
566 * @dentry: file whose metadata to set
567 * @iattr: metadata assignment structure
568 *
569 */
570
571int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
572{
573 int retval;
574 struct v9fs_session_info *v9ses;
575 struct p9_fid *fid;
576 struct p9_iattr_dotl p9attr;
577
Joe Perches5d385152011-11-28 10:40:46 -0800578 p9_debug(P9_DEBUG_VFS, "\n");
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600579
580 retval = inode_change_ok(dentry->d_inode, iattr);
581 if (retval)
582 return retval;
583
Aneesh Kumar K.Vf7666192011-12-18 23:03:13 +0530584 p9attr.valid = v9fs_mapped_iattr_valid(iattr->ia_valid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600585 p9attr.mode = iattr->ia_mode;
586 p9attr.uid = iattr->ia_uid;
587 p9attr.gid = iattr->ia_gid;
588 p9attr.size = iattr->ia_size;
589 p9attr.atime_sec = iattr->ia_atime.tv_sec;
590 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
591 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
592 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
593
594 retval = -EPERM;
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +0530595 v9ses = v9fs_dentry2v9ses(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600596 fid = v9fs_fid_lookup(dentry);
597 if (IS_ERR(fid))
598 return PTR_ERR(fid);
599
Aneesh Kumar K.V3dc54362011-02-28 17:04:11 +0530600 /* Write all dirty data */
601 if (S_ISREG(dentry->d_inode->i_mode))
602 filemap_write_and_wait(dentry->d_inode->i_mapping);
603
Aneesh Kumar K.Vf10fc502011-02-28 17:04:10 +0530604 retval = p9_client_setattr(fid, &p9attr);
605 if (retval < 0)
606 return retval;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600607
Aneesh Kumar K.V059c1382011-03-08 16:39:48 +0530608 if ((iattr->ia_valid & ATTR_SIZE) &&
609 iattr->ia_size != i_size_read(dentry->d_inode))
610 truncate_setsize(dentry->d_inode, iattr->ia_size);
611
612 v9fs_invalidate_inode_attr(dentry->d_inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600613 setattr_copy(dentry->d_inode, iattr);
614 mark_inode_dirty(dentry->d_inode);
615 if (iattr->ia_valid & ATTR_MODE) {
616 /* We also want to update ACL when we update mode bits */
617 retval = v9fs_acl_chmod(dentry);
618 if (retval < 0)
619 return retval;
620 }
621 return 0;
622}
623
624/**
625 * v9fs_stat2inode_dotl - populate an inode structure with stat info
626 * @stat: stat structure
627 * @inode: inode to populate
628 * @sb: superblock of filesystem
629 *
630 */
631
632void
633v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode)
634{
Al Viro3eda0de2011-07-26 02:53:22 -0400635 umode_t mode;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530636 struct v9fs_inode *v9inode = V9FS_I(inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600637
638 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
639 inode->i_atime.tv_sec = stat->st_atime_sec;
640 inode->i_atime.tv_nsec = stat->st_atime_nsec;
641 inode->i_mtime.tv_sec = stat->st_mtime_sec;
642 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
643 inode->i_ctime.tv_sec = stat->st_ctime_sec;
644 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
645 inode->i_uid = stat->st_uid;
646 inode->i_gid = stat->st_gid;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200647 set_nlink(inode, stat->st_nlink);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600648
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000649 mode = stat->st_mode & S_IALLUGO;
650 mode |= inode->i_mode & ~S_IALLUGO;
651 inode->i_mode = mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600652
653 i_size_write(inode, stat->st_size);
654 inode->i_blocks = stat->st_blocks;
655 } else {
656 if (stat->st_result_mask & P9_STATS_ATIME) {
657 inode->i_atime.tv_sec = stat->st_atime_sec;
658 inode->i_atime.tv_nsec = stat->st_atime_nsec;
659 }
660 if (stat->st_result_mask & P9_STATS_MTIME) {
661 inode->i_mtime.tv_sec = stat->st_mtime_sec;
662 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
663 }
664 if (stat->st_result_mask & P9_STATS_CTIME) {
665 inode->i_ctime.tv_sec = stat->st_ctime_sec;
666 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
667 }
668 if (stat->st_result_mask & P9_STATS_UID)
669 inode->i_uid = stat->st_uid;
670 if (stat->st_result_mask & P9_STATS_GID)
671 inode->i_gid = stat->st_gid;
672 if (stat->st_result_mask & P9_STATS_NLINK)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200673 set_nlink(inode, stat->st_nlink);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600674 if (stat->st_result_mask & P9_STATS_MODE) {
675 inode->i_mode = stat->st_mode;
676 if ((S_ISBLK(inode->i_mode)) ||
677 (S_ISCHR(inode->i_mode)))
678 init_special_inode(inode, inode->i_mode,
679 inode->i_rdev);
680 }
681 if (stat->st_result_mask & P9_STATS_RDEV)
682 inode->i_rdev = new_decode_dev(stat->st_rdev);
683 if (stat->st_result_mask & P9_STATS_SIZE)
684 i_size_write(inode, stat->st_size);
685 if (stat->st_result_mask & P9_STATS_BLOCKS)
686 inode->i_blocks = stat->st_blocks;
687 }
688 if (stat->st_result_mask & P9_STATS_GEN)
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000689 inode->i_generation = stat->st_gen;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600690
691 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
692 * because the inode structure does not have fields for them.
693 */
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530694 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600695}
696
697static int
698v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry,
699 const char *symname)
700{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600701 int err;
702 gid_t gid;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530703 char *name;
704 struct p9_qid qid;
705 struct inode *inode;
706 struct p9_fid *dfid;
707 struct p9_fid *fid = NULL;
708 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600709
710 name = (char *) dentry->d_name.name;
Joe Perches5d385152011-11-28 10:40:46 -0800711 p9_debug(P9_DEBUG_VFS, "%lu,%s,%s\n", dir->i_ino, name, symname);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600712 v9ses = v9fs_inode2v9ses(dir);
713
714 dfid = v9fs_fid_lookup(dentry->d_parent);
715 if (IS_ERR(dfid)) {
716 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800717 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600718 return err;
719 }
720
721 gid = v9fs_get_fsgid_for_create(dir);
722
723 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
724 err = p9_client_symlink(dfid, name, (char *)symname, gid, &qid);
725
726 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800727 p9_debug(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600728 goto error;
729 }
730
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530731 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600732 if (v9ses->cache) {
733 /* Now walk from the parent so we can get an unopened fid. */
734 fid = p9_client_walk(dfid, 1, &name, 1);
735 if (IS_ERR(fid)) {
736 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800737 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
738 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600739 fid = NULL;
740 goto error;
741 }
742
743 /* instantiate inode and assign the unopened fid to dentry */
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530744 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600745 if (IS_ERR(inode)) {
746 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800747 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
748 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600749 goto error;
750 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600751 err = v9fs_fid_add(dentry, fid);
752 if (err < 0)
753 goto error;
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000754 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600755 fid = NULL;
756 } else {
757 /* Not in cached mode. No need to populate inode with stat */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000758 inode = v9fs_get_inode(dir->i_sb, S_IFLNK, 0);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600759 if (IS_ERR(inode)) {
760 err = PTR_ERR(inode);
761 goto error;
762 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600763 d_instantiate(dentry, inode);
764 }
765
766error:
767 if (fid)
768 p9_client_clunk(fid);
769
770 return err;
771}
772
773/**
774 * v9fs_vfs_link_dotl - create a hardlink for dotl
775 * @old_dentry: dentry for file to link to
776 * @dir: inode destination for new link
777 * @dentry: dentry for link
778 *
779 */
780
781static int
782v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
783 struct dentry *dentry)
784{
785 int err;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600786 char *name;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600787 struct dentry *dir_dentry;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530788 struct p9_fid *dfid, *oldfid;
789 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600790
Joe Perches5d385152011-11-28 10:40:46 -0800791 p9_debug(P9_DEBUG_VFS, "dir ino: %lu, old_name: %s, new_name: %s\n",
792 dir->i_ino, old_dentry->d_name.name, dentry->d_name.name);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600793
794 v9ses = v9fs_inode2v9ses(dir);
Al Viroaf569592012-04-02 20:02:53 -0400795 dir_dentry = dentry->d_parent;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600796 dfid = v9fs_fid_lookup(dir_dentry);
797 if (IS_ERR(dfid))
798 return PTR_ERR(dfid);
799
800 oldfid = v9fs_fid_lookup(old_dentry);
801 if (IS_ERR(oldfid))
802 return PTR_ERR(oldfid);
803
804 name = (char *) dentry->d_name.name;
805
806 err = p9_client_link(dfid, oldfid, (char *)dentry->d_name.name);
807
808 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800809 p9_debug(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600810 return err;
811 }
812
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530813 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600814 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
815 /* Get the latest stat info from server. */
816 struct p9_fid *fid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600817 fid = v9fs_fid_lookup(old_dentry);
818 if (IS_ERR(fid))
819 return PTR_ERR(fid);
820
Aneesh Kumar K.Vc06c0662011-02-28 17:04:09 +0530821 v9fs_refresh_inode_dotl(fid, old_dentry->d_inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600822 }
Aneesh Kumar K.V20656a42011-02-28 17:03:55 +0530823 ihold(old_dentry->d_inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600824 d_instantiate(dentry, old_dentry->d_inode);
825
826 return err;
827}
828
829/**
830 * v9fs_vfs_mknod_dotl - create a special file
831 * @dir: inode destination for new link
832 * @dentry: dentry for file
833 * @mode: mode for creation
834 * @rdev: device associated with special file
835 *
836 */
837static int
Al Viro1a67aaf2011-07-26 01:52:52 -0400838v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600839 dev_t rdev)
840{
841 int err;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530842 gid_t gid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600843 char *name;
Al Virod3fb6122011-07-23 18:37:50 -0400844 umode_t mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600845 struct v9fs_session_info *v9ses;
846 struct p9_fid *fid = NULL, *dfid = NULL;
847 struct inode *inode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600848 struct p9_qid qid;
849 struct dentry *dir_dentry;
850 struct posix_acl *dacl = NULL, *pacl = NULL;
851
Linus Torvalds609eac12012-01-10 15:09:01 -0800852 p9_debug(P9_DEBUG_VFS, " %lu,%s mode: %hx MAJOR: %u MINOR: %u\n",
Joe Perches5d385152011-11-28 10:40:46 -0800853 dir->i_ino, dentry->d_name.name, omode,
854 MAJOR(rdev), MINOR(rdev));
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600855
856 if (!new_valid_dev(rdev))
857 return -EINVAL;
858
859 v9ses = v9fs_inode2v9ses(dir);
Al Viroaf569592012-04-02 20:02:53 -0400860 dir_dentry = dentry->d_parent;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600861 dfid = v9fs_fid_lookup(dir_dentry);
862 if (IS_ERR(dfid)) {
863 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800864 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600865 dfid = NULL;
866 goto error;
867 }
868
869 gid = v9fs_get_fsgid_for_create(dir);
870 mode = omode;
871 /* Update mode based on ACL value */
872 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
873 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800874 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mknod %d\n",
875 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600876 goto error;
877 }
878 name = (char *) dentry->d_name.name;
879
880 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
881 if (err < 0)
882 goto error;
883
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530884 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600885 /* instantiate inode and assign the unopened fid to the dentry */
886 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
887 fid = p9_client_walk(dfid, 1, &name, 1);
888 if (IS_ERR(fid)) {
889 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800890 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
891 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600892 fid = NULL;
893 goto error;
894 }
895
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530896 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600897 if (IS_ERR(inode)) {
898 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800899 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
900 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600901 goto error;
902 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600903 err = v9fs_fid_add(dentry, fid);
904 if (err < 0)
905 goto error;
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000906 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600907 fid = NULL;
908 } else {
909 /*
910 * Not in cached mode. No need to populate inode with stat.
911 * socket syscall returns a fd, so we need instantiate
912 */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000913 inode = v9fs_get_inode(dir->i_sb, mode, rdev);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600914 if (IS_ERR(inode)) {
915 err = PTR_ERR(inode);
916 goto error;
917 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600918 d_instantiate(dentry, inode);
919 }
920 /* Now set the ACL based on the default value */
Al Viro1ec95bf2011-07-23 02:28:13 -0400921 v9fs_set_create_acl(dentry, &dacl, &pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600922error:
923 if (fid)
924 p9_client_clunk(fid);
Al Viro1ec95bf2011-07-23 02:28:13 -0400925 v9fs_set_create_acl(NULL, &dacl, &pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600926 return err;
927}
928
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600929/**
930 * v9fs_vfs_follow_link_dotl - follow a symlink path
931 * @dentry: dentry for symlink
932 * @nd: nameidata
933 *
934 */
935
936static void *
937v9fs_vfs_follow_link_dotl(struct dentry *dentry, struct nameidata *nd)
938{
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530939 int retval;
940 struct p9_fid *fid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600941 char *link = __getname();
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530942 char *target;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600943
Joe Perches5d385152011-11-28 10:40:46 -0800944 p9_debug(P9_DEBUG_VFS, "%s\n", dentry->d_name.name);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600945
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530946 if (!link) {
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600947 link = ERR_PTR(-ENOMEM);
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530948 goto ndset;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600949 }
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530950 fid = v9fs_fid_lookup(dentry);
951 if (IS_ERR(fid)) {
952 __putname(link);
Aneesh Kumar K.V936bb2d2011-03-24 23:04:41 +0530953 link = ERR_CAST(fid);
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530954 goto ndset;
955 }
956 retval = p9_client_readlink(fid, &target);
957 if (!retval) {
958 strcpy(link, target);
959 kfree(target);
960 goto ndset;
961 }
962 __putname(link);
963 link = ERR_PTR(retval);
964ndset:
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600965 nd_set_link(nd, link);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600966 return NULL;
967}
968
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530969int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode)
970{
971 loff_t i_size;
972 struct p9_stat_dotl *st;
973 struct v9fs_session_info *v9ses;
974
975 v9ses = v9fs_inode2v9ses(inode);
976 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
977 if (IS_ERR(st))
978 return PTR_ERR(st);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000979 /*
980 * Don't update inode if the file type is different
981 */
982 if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT))
983 goto out;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530984
985 spin_lock(&inode->i_lock);
986 /*
987 * We don't want to refresh inode->i_size,
988 * because we may have cached data
989 */
990 i_size = inode->i_size;
991 v9fs_stat2inode_dotl(st, inode);
992 if (v9ses->cache)
993 inode->i_size = i_size;
994 spin_unlock(&inode->i_lock);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000995out:
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530996 kfree(st);
997 return 0;
998}
999
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001000const struct inode_operations v9fs_dir_inode_operations_dotl = {
1001 .create = v9fs_vfs_create_dotl,
Miklos Szeredie43ae792012-06-05 15:10:26 +02001002 .atomic_open = v9fs_vfs_atomic_open_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001003 .lookup = v9fs_vfs_lookup,
1004 .link = v9fs_vfs_link_dotl,
1005 .symlink = v9fs_vfs_symlink_dotl,
1006 .unlink = v9fs_vfs_unlink,
1007 .mkdir = v9fs_vfs_mkdir_dotl,
1008 .rmdir = v9fs_vfs_rmdir,
1009 .mknod = v9fs_vfs_mknod_dotl,
1010 .rename = v9fs_vfs_rename,
1011 .getattr = v9fs_vfs_getattr_dotl,
1012 .setattr = v9fs_vfs_setattr_dotl,
1013 .setxattr = generic_setxattr,
1014 .getxattr = generic_getxattr,
1015 .removexattr = generic_removexattr,
1016 .listxattr = v9fs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02001017 .get_acl = v9fs_iop_get_acl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001018};
1019
1020const struct inode_operations v9fs_file_inode_operations_dotl = {
1021 .getattr = v9fs_vfs_getattr_dotl,
1022 .setattr = v9fs_vfs_setattr_dotl,
1023 .setxattr = generic_setxattr,
1024 .getxattr = generic_getxattr,
1025 .removexattr = generic_removexattr,
1026 .listxattr = v9fs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02001027 .get_acl = v9fs_iop_get_acl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001028};
1029
1030const struct inode_operations v9fs_symlink_inode_operations_dotl = {
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +05301031 .readlink = generic_readlink,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001032 .follow_link = v9fs_vfs_follow_link_dotl,
1033 .put_link = v9fs_vfs_put_link,
1034 .getattr = v9fs_vfs_getattr_dotl,
1035 .setattr = v9fs_vfs_setattr_dotl,
1036 .setxattr = generic_setxattr,
1037 .getxattr = generic_getxattr,
1038 .removexattr = generic_removexattr,
1039 .listxattr = v9fs_listxattr,
1040};