blob: 61e4fa70a6fa7751e85e68411e9d2ba3538b375e [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
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -080060static kgid_t v9fs_get_fsgid_for_create(struct inode *dir_inode)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -060061{
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 },
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +0530189 { O_APPEND, P9_DOTL_APPEND },
190 { O_NONBLOCK, P9_DOTL_NONBLOCK },
191 { O_DSYNC, P9_DOTL_DSYNC },
192 { FASYNC, P9_DOTL_FASYNC },
193 { O_DIRECT, P9_DOTL_DIRECT },
194 { O_LARGEFILE, P9_DOTL_LARGEFILE },
195 { O_DIRECTORY, P9_DOTL_DIRECTORY },
196 { O_NOFOLLOW, P9_DOTL_NOFOLLOW },
197 { O_NOATIME, P9_DOTL_NOATIME },
198 { O_CLOEXEC, P9_DOTL_CLOEXEC },
199 { O_SYNC, P9_DOTL_SYNC},
200 };
201 for (i = 0; i < ARRAY_SIZE(dotl_oflag_map); i++) {
202 if (flags & dotl_oflag_map[i].open_flag)
203 rflags |= dotl_oflag_map[i].dotl_flag;
204 }
205 return rflags;
206}
207
208/**
209 * v9fs_open_to_dotl_flags- convert Linux specific open flags to
210 * plan 9 open flag.
211 * @flags: flags to convert
212 */
213int v9fs_open_to_dotl_flags(int flags)
214{
215 int rflags = 0;
216
217 /*
218 * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY
219 * and P9_DOTL_NOACCESS
220 */
221 rflags |= flags & O_ACCMODE;
222 rflags |= v9fs_mapped_dotl_flags(flags);
223
224 return rflags;
225}
226
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600227/**
228 * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
229 * @dir: directory inode that is being created
230 * @dentry: dentry that is being deleted
231 * @mode: create permissions
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600232 *
233 */
234
235static int
Al Viro4acdaf22011-07-26 01:42:34 -0400236v9fs_vfs_create_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
Al Viroebfc3b42012-06-10 18:05:36 -0400237 bool excl)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600238{
Miklos Szeredie43ae792012-06-05 15:10:26 +0200239 return v9fs_vfs_mknod_dotl(dir, dentry, omode, 0);
240}
241
Al Virod9585272012-06-22 12:39:14 +0400242static int
Miklos Szeredie43ae792012-06-05 15:10:26 +0200243v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
Al Viro30d90492012-06-22 12:40:19 +0400244 struct file *file, unsigned flags, umode_t omode,
Al Viro47237682012-06-10 05:01:45 -0400245 int *opened)
Miklos Szeredie43ae792012-06-05 15:10:26 +0200246{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600247 int err = 0;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800248 kgid_t gid;
Al Virod3fb6122011-07-23 18:37:50 -0400249 umode_t mode;
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530250 char *name = NULL;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600251 struct p9_qid qid;
252 struct inode *inode;
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530253 struct p9_fid *fid = NULL;
254 struct v9fs_inode *v9inode;
255 struct p9_fid *dfid, *ofid, *inode_fid;
256 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600257 struct posix_acl *pacl = NULL, *dacl = NULL;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200258 struct dentry *res = NULL;
259
260 if (d_unhashed(dentry)) {
Al Viro00cd8dd2012-06-10 17:13:09 -0400261 res = v9fs_vfs_lookup(dir, dentry, 0);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200262 if (IS_ERR(res))
Al Virod9585272012-06-22 12:39:14 +0400263 return PTR_ERR(res);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200264
265 if (res)
266 dentry = res;
267 }
268
269 /* Only creates */
M. Mohan Kumarb6f4bee2013-02-05 14:25:05 +0530270 if (!(flags & O_CREAT))
271 return finish_no_open(file, res);
272 else if (dentry->d_inode) {
273 if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
274 return -EEXIST;
275 else
276 return finish_no_open(file, res);
277 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600278
279 v9ses = v9fs_inode2v9ses(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600280
281 name = (char *) dentry->d_name.name;
Linus Torvalds609eac12012-01-10 15:09:01 -0800282 p9_debug(P9_DEBUG_VFS, "name:%s flags:0x%x mode:0x%hx\n",
Joe Perches5d385152011-11-28 10:40:46 -0800283 name, flags, omode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600284
285 dfid = v9fs_fid_lookup(dentry->d_parent);
286 if (IS_ERR(dfid)) {
287 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800288 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400289 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600290 }
291
292 /* clone a fid to use for creation */
293 ofid = p9_client_walk(dfid, 0, NULL, 1);
294 if (IS_ERR(ofid)) {
295 err = PTR_ERR(ofid);
Joe Perches5d385152011-11-28 10:40:46 -0800296 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
Al Virod9585272012-06-22 12:39:14 +0400297 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600298 }
299
300 gid = v9fs_get_fsgid_for_create(dir);
301
302 mode = omode;
303 /* Update mode based on ACL value */
304 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
305 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800306 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in creat %d\n",
307 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600308 goto error;
309 }
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +0530310 err = p9_client_create_dotl(ofid, name, v9fs_open_to_dotl_flags(flags),
311 mode, gid, &qid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600312 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800313 p9_debug(P9_DEBUG_VFS, "p9_client_open_dotl failed in creat %d\n",
314 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600315 goto error;
316 }
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530317 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600318
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600319 /* instantiate inode and assign the unopened fid to the dentry */
320 fid = p9_client_walk(dfid, 1, &name, 1);
321 if (IS_ERR(fid)) {
322 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800323 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600324 fid = NULL;
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600325 goto error;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600326 }
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530327 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600328 if (IS_ERR(inode)) {
329 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800330 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", err);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600331 goto error;
332 }
Al Viro3592ac42013-01-31 13:45:39 -0500333 /* Now set the ACL based on the default value */
334 v9fs_set_create_acl(inode, fid, dacl, pacl);
335
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600336 err = v9fs_fid_add(dentry, fid);
337 if (err < 0)
338 goto error;
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000339 d_instantiate(dentry, inode);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600340
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530341 v9inode = V9FS_I(inode);
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530342 mutex_lock(&v9inode->v_mutex);
Aneesh Kumar K.V7add6972011-03-08 16:39:49 +0530343 if (v9ses->cache && !v9inode->writeback_fid &&
344 ((flags & O_ACCMODE) != O_RDONLY)) {
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530345 /*
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530346 * clone a fid and add it to writeback_fid
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530347 * we do it during open time instead of
348 * page dirty time via write_begin/page_mkwrite
349 * because we want write after unlink usecase
350 * to work.
351 */
352 inode_fid = v9fs_writeback_fid(dentry);
353 if (IS_ERR(inode_fid)) {
354 err = PTR_ERR(inode_fid);
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530355 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000356 goto err_clunk_old_fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530357 }
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530358 v9inode->writeback_fid = (void *) inode_fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530359 }
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530360 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600361 /* Since we are opening a file, assign the open fid to the file */
Al Viro30d90492012-06-22 12:40:19 +0400362 err = finish_open(file, dentry, generic_file_open, opened);
363 if (err)
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000364 goto err_clunk_old_fid;
Al Viro30d90492012-06-22 12:40:19 +0400365 file->private_data = ofid;
Aneesh Kumar K.V46848de2011-02-28 17:03:55 +0530366#ifdef CONFIG_9P_FSCACHE
367 if (v9ses->cache)
Al Viro30d90492012-06-22 12:40:19 +0400368 v9fs_cache_inode_set_cookie(inode, file);
Aneesh Kumar K.V46848de2011-02-28 17:03:55 +0530369#endif
Al Viro47237682012-06-10 05:01:45 -0400370 *opened |= FILE_CREATED;
Miklos Szeredie43ae792012-06-05 15:10:26 +0200371out:
Al Viro5fa63002013-01-31 13:31:23 -0500372 v9fs_put_acl(dacl, pacl);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200373 dput(res);
Al Virod9585272012-06-22 12:39:14 +0400374 return err;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600375
376error:
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600377 if (fid)
378 p9_client_clunk(fid);
Aneesh Kumar K.V398c4f02011-05-20 18:55:51 +0000379err_clunk_old_fid:
380 if (ofid)
381 p9_client_clunk(ofid);
Miklos Szeredie43ae792012-06-05 15:10:26 +0200382 goto out;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600383}
384
385/**
386 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
387 * @dir: inode that is being unlinked
388 * @dentry: dentry that is being unlinked
389 * @mode: mode for new directory
390 *
391 */
392
393static int v9fs_vfs_mkdir_dotl(struct inode *dir,
Al Viro18bb1db2011-07-26 01:41:39 -0400394 struct dentry *dentry, umode_t omode)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600395{
396 int err;
397 struct v9fs_session_info *v9ses;
398 struct p9_fid *fid = NULL, *dfid = NULL;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800399 kgid_t gid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600400 char *name;
Al Virod3fb6122011-07-23 18:37:50 -0400401 umode_t mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600402 struct inode *inode;
403 struct p9_qid qid;
404 struct dentry *dir_dentry;
405 struct posix_acl *dacl = NULL, *pacl = NULL;
406
Joe Perches5d385152011-11-28 10:40:46 -0800407 p9_debug(P9_DEBUG_VFS, "name %s\n", dentry->d_name.name);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600408 err = 0;
409 v9ses = v9fs_inode2v9ses(dir);
410
411 omode |= S_IFDIR;
412 if (dir->i_mode & S_ISGID)
413 omode |= S_ISGID;
414
Al Viroaf569592012-04-02 20:02:53 -0400415 dir_dentry = dentry->d_parent;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600416 dfid = v9fs_fid_lookup(dir_dentry);
417 if (IS_ERR(dfid)) {
418 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800419 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600420 dfid = NULL;
421 goto error;
422 }
423
424 gid = v9fs_get_fsgid_for_create(dir);
425 mode = omode;
426 /* Update mode based on ACL value */
427 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
428 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800429 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mkdir %d\n",
430 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600431 goto error;
432 }
433 name = (char *) dentry->d_name.name;
434 err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
435 if (err < 0)
436 goto error;
437
Al Viro3592ac42013-01-31 13:45:39 -0500438 fid = p9_client_walk(dfid, 1, &name, 1);
439 if (IS_ERR(fid)) {
440 err = PTR_ERR(fid);
441 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
442 err);
443 fid = NULL;
444 goto error;
445 }
446
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600447 /* instantiate inode and assign the unopened fid to the dentry */
448 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530449 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600450 if (IS_ERR(inode)) {
451 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800452 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
453 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600454 goto error;
455 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600456 err = v9fs_fid_add(dentry, fid);
457 if (err < 0)
458 goto error;
Al Viro3592ac42013-01-31 13:45:39 -0500459 v9fs_set_create_acl(inode, fid, dacl, pacl);
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000460 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600461 fid = NULL;
462 } else {
463 /*
464 * Not in cached mode. No need to populate
465 * inode with stat. We need to get an inode
466 * so that we can set the acl with dentry
467 */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000468 inode = v9fs_get_inode(dir->i_sb, mode, 0);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600469 if (IS_ERR(inode)) {
470 err = PTR_ERR(inode);
471 goto error;
472 }
Al Viro3592ac42013-01-31 13:45:39 -0500473 v9fs_set_create_acl(inode, fid, dacl, pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600474 d_instantiate(dentry, inode);
475 }
Aneesh Kumar K.Vb271ec42011-02-28 17:04:05 +0530476 inc_nlink(dir);
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530477 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600478error:
479 if (fid)
480 p9_client_clunk(fid);
Al Viro5fa63002013-01-31 13:31:23 -0500481 v9fs_put_acl(dacl, pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600482 return err;
483}
484
485static int
486v9fs_vfs_getattr_dotl(struct vfsmount *mnt, struct dentry *dentry,
487 struct kstat *stat)
488{
489 int err;
490 struct v9fs_session_info *v9ses;
491 struct p9_fid *fid;
492 struct p9_stat_dotl *st;
493
Joe Perches5d385152011-11-28 10:40:46 -0800494 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600495 err = -EPERM;
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +0530496 v9ses = v9fs_dentry2v9ses(dentry);
Aneesh Kumar K.Va1211902011-02-28 17:04:01 +0530497 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
498 generic_fillattr(dentry->d_inode, stat);
499 return 0;
500 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600501 fid = v9fs_fid_lookup(dentry);
502 if (IS_ERR(fid))
503 return PTR_ERR(fid);
504
505 /* Ask for all the fields in stat structure. Server will return
506 * whatever it supports
507 */
508
509 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
510 if (IS_ERR(st))
511 return PTR_ERR(st);
512
513 v9fs_stat2inode_dotl(st, dentry->d_inode);
514 generic_fillattr(dentry->d_inode, stat);
515 /* Change block size to what the server returned */
516 stat->blksize = st->st_blksize;
517
518 kfree(st);
519 return 0;
520}
521
Aneesh Kumar K.Vf7666192011-12-18 23:03:13 +0530522/*
523 * Attribute flags.
524 */
525#define P9_ATTR_MODE (1 << 0)
526#define P9_ATTR_UID (1 << 1)
527#define P9_ATTR_GID (1 << 2)
528#define P9_ATTR_SIZE (1 << 3)
529#define P9_ATTR_ATIME (1 << 4)
530#define P9_ATTR_MTIME (1 << 5)
531#define P9_ATTR_CTIME (1 << 6)
532#define P9_ATTR_ATIME_SET (1 << 7)
533#define P9_ATTR_MTIME_SET (1 << 8)
534
535struct dotl_iattr_map {
536 int iattr_valid;
537 int p9_iattr_valid;
538};
539
540static int v9fs_mapped_iattr_valid(int iattr_valid)
541{
542 int i;
543 int p9_iattr_valid = 0;
544 struct dotl_iattr_map dotl_iattr_map[] = {
545 { ATTR_MODE, P9_ATTR_MODE },
546 { ATTR_UID, P9_ATTR_UID },
547 { ATTR_GID, P9_ATTR_GID },
548 { ATTR_SIZE, P9_ATTR_SIZE },
549 { ATTR_ATIME, P9_ATTR_ATIME },
550 { ATTR_MTIME, P9_ATTR_MTIME },
551 { ATTR_CTIME, P9_ATTR_CTIME },
552 { ATTR_ATIME_SET, P9_ATTR_ATIME_SET },
553 { ATTR_MTIME_SET, P9_ATTR_MTIME_SET },
554 };
555 for (i = 0; i < ARRAY_SIZE(dotl_iattr_map); i++) {
556 if (iattr_valid & dotl_iattr_map[i].iattr_valid)
557 p9_iattr_valid |= dotl_iattr_map[i].p9_iattr_valid;
558 }
559 return p9_iattr_valid;
560}
561
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600562/**
563 * v9fs_vfs_setattr_dotl - set file metadata
564 * @dentry: file whose metadata to set
565 * @iattr: metadata assignment structure
566 *
567 */
568
569int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
570{
571 int retval;
572 struct v9fs_session_info *v9ses;
573 struct p9_fid *fid;
574 struct p9_iattr_dotl p9attr;
Al Virobe308f02013-01-31 12:58:16 -0500575 struct inode *inode = dentry->d_inode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600576
Joe Perches5d385152011-11-28 10:40:46 -0800577 p9_debug(P9_DEBUG_VFS, "\n");
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600578
Al Virobe308f02013-01-31 12:58:16 -0500579 retval = inode_change_ok(inode, iattr);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600580 if (retval)
581 return retval;
582
Aneesh Kumar K.Vf7666192011-12-18 23:03:13 +0530583 p9attr.valid = v9fs_mapped_iattr_valid(iattr->ia_valid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600584 p9attr.mode = iattr->ia_mode;
585 p9attr.uid = iattr->ia_uid;
586 p9attr.gid = iattr->ia_gid;
587 p9attr.size = iattr->ia_size;
588 p9attr.atime_sec = iattr->ia_atime.tv_sec;
589 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
590 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
591 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
592
593 retval = -EPERM;
Aneesh Kumar K.V42869c82011-03-08 16:39:50 +0530594 v9ses = v9fs_dentry2v9ses(dentry);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600595 fid = v9fs_fid_lookup(dentry);
596 if (IS_ERR(fid))
597 return PTR_ERR(fid);
598
Aneesh Kumar K.V3dc54362011-02-28 17:04:11 +0530599 /* Write all dirty data */
Al Virobe308f02013-01-31 12:58:16 -0500600 if (S_ISREG(inode->i_mode))
601 filemap_write_and_wait(inode->i_mapping);
Aneesh Kumar K.V3dc54362011-02-28 17:04:11 +0530602
Aneesh Kumar K.Vf10fc502011-02-28 17:04:10 +0530603 retval = p9_client_setattr(fid, &p9attr);
604 if (retval < 0)
605 return retval;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600606
Aneesh Kumar K.V059c1382011-03-08 16:39:48 +0530607 if ((iattr->ia_valid & ATTR_SIZE) &&
Al Virobe308f02013-01-31 12:58:16 -0500608 iattr->ia_size != i_size_read(inode))
609 truncate_setsize(inode, iattr->ia_size);
Aneesh Kumar K.V059c1382011-03-08 16:39:48 +0530610
Al Virobe308f02013-01-31 12:58:16 -0500611 v9fs_invalidate_inode_attr(inode);
612 setattr_copy(inode, iattr);
613 mark_inode_dirty(inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600614 if (iattr->ia_valid & ATTR_MODE) {
615 /* We also want to update ACL when we update mode bits */
Al Virobe308f02013-01-31 12:58:16 -0500616 retval = v9fs_acl_chmod(inode, fid);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600617 if (retval < 0)
618 return retval;
619 }
620 return 0;
621}
622
623/**
624 * v9fs_stat2inode_dotl - populate an inode structure with stat info
625 * @stat: stat structure
626 * @inode: inode to populate
627 * @sb: superblock of filesystem
628 *
629 */
630
631void
632v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode)
633{
Al Viro3eda0de2011-07-26 02:53:22 -0400634 umode_t mode;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530635 struct v9fs_inode *v9inode = V9FS_I(inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600636
637 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
638 inode->i_atime.tv_sec = stat->st_atime_sec;
639 inode->i_atime.tv_nsec = stat->st_atime_nsec;
640 inode->i_mtime.tv_sec = stat->st_mtime_sec;
641 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
642 inode->i_ctime.tv_sec = stat->st_ctime_sec;
643 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
644 inode->i_uid = stat->st_uid;
645 inode->i_gid = stat->st_gid;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200646 set_nlink(inode, stat->st_nlink);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600647
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000648 mode = stat->st_mode & S_IALLUGO;
649 mode |= inode->i_mode & ~S_IALLUGO;
650 inode->i_mode = mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600651
652 i_size_write(inode, stat->st_size);
653 inode->i_blocks = stat->st_blocks;
654 } else {
655 if (stat->st_result_mask & P9_STATS_ATIME) {
656 inode->i_atime.tv_sec = stat->st_atime_sec;
657 inode->i_atime.tv_nsec = stat->st_atime_nsec;
658 }
659 if (stat->st_result_mask & P9_STATS_MTIME) {
660 inode->i_mtime.tv_sec = stat->st_mtime_sec;
661 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
662 }
663 if (stat->st_result_mask & P9_STATS_CTIME) {
664 inode->i_ctime.tv_sec = stat->st_ctime_sec;
665 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
666 }
667 if (stat->st_result_mask & P9_STATS_UID)
668 inode->i_uid = stat->st_uid;
669 if (stat->st_result_mask & P9_STATS_GID)
670 inode->i_gid = stat->st_gid;
671 if (stat->st_result_mask & P9_STATS_NLINK)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200672 set_nlink(inode, stat->st_nlink);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600673 if (stat->st_result_mask & P9_STATS_MODE) {
674 inode->i_mode = stat->st_mode;
675 if ((S_ISBLK(inode->i_mode)) ||
676 (S_ISCHR(inode->i_mode)))
677 init_special_inode(inode, inode->i_mode,
678 inode->i_rdev);
679 }
680 if (stat->st_result_mask & P9_STATS_RDEV)
681 inode->i_rdev = new_decode_dev(stat->st_rdev);
682 if (stat->st_result_mask & P9_STATS_SIZE)
683 i_size_write(inode, stat->st_size);
684 if (stat->st_result_mask & P9_STATS_BLOCKS)
685 inode->i_blocks = stat->st_blocks;
686 }
687 if (stat->st_result_mask & P9_STATS_GEN)
Aneesh Kumar K.Vfd2421f2011-07-11 16:40:59 +0000688 inode->i_generation = stat->st_gen;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600689
690 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
691 * because the inode structure does not have fields for them.
692 */
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530693 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600694}
695
696static int
697v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry,
698 const char *symname)
699{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600700 int err;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800701 kgid_t gid;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530702 char *name;
703 struct p9_qid qid;
704 struct inode *inode;
705 struct p9_fid *dfid;
706 struct p9_fid *fid = NULL;
707 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600708
709 name = (char *) dentry->d_name.name;
Joe Perches5d385152011-11-28 10:40:46 -0800710 p9_debug(P9_DEBUG_VFS, "%lu,%s,%s\n", dir->i_ino, name, symname);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600711 v9ses = v9fs_inode2v9ses(dir);
712
713 dfid = v9fs_fid_lookup(dentry->d_parent);
714 if (IS_ERR(dfid)) {
715 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800716 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600717 return err;
718 }
719
720 gid = v9fs_get_fsgid_for_create(dir);
721
722 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
723 err = p9_client_symlink(dfid, name, (char *)symname, gid, &qid);
724
725 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800726 p9_debug(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600727 goto error;
728 }
729
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530730 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600731 if (v9ses->cache) {
732 /* Now walk from the parent so we can get an unopened fid. */
733 fid = p9_client_walk(dfid, 1, &name, 1);
734 if (IS_ERR(fid)) {
735 err = PTR_ERR(fid);
Joe Perches5d385152011-11-28 10:40:46 -0800736 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
737 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600738 fid = NULL;
739 goto error;
740 }
741
742 /* instantiate inode and assign the unopened fid to dentry */
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530743 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600744 if (IS_ERR(inode)) {
745 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800746 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
747 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600748 goto error;
749 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600750 err = v9fs_fid_add(dentry, fid);
751 if (err < 0)
752 goto error;
Aneesh Kumar K.V5441ae52011-07-25 18:06:32 +0000753 d_instantiate(dentry, inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600754 fid = NULL;
755 } else {
756 /* Not in cached mode. No need to populate inode with stat */
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000757 inode = v9fs_get_inode(dir->i_sb, S_IFLNK, 0);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600758 if (IS_ERR(inode)) {
759 err = PTR_ERR(inode);
760 goto error;
761 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600762 d_instantiate(dentry, inode);
763 }
764
765error:
766 if (fid)
767 p9_client_clunk(fid);
768
769 return err;
770}
771
772/**
773 * v9fs_vfs_link_dotl - create a hardlink for dotl
774 * @old_dentry: dentry for file to link to
775 * @dir: inode destination for new link
776 * @dentry: dentry for link
777 *
778 */
779
780static int
781v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
782 struct dentry *dentry)
783{
784 int err;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600785 char *name;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600786 struct dentry *dir_dentry;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530787 struct p9_fid *dfid, *oldfid;
788 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600789
Joe Perches5d385152011-11-28 10:40:46 -0800790 p9_debug(P9_DEBUG_VFS, "dir ino: %lu, old_name: %s, new_name: %s\n",
791 dir->i_ino, old_dentry->d_name.name, dentry->d_name.name);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600792
793 v9ses = v9fs_inode2v9ses(dir);
Al Viroaf569592012-04-02 20:02:53 -0400794 dir_dentry = dentry->d_parent;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600795 dfid = v9fs_fid_lookup(dir_dentry);
796 if (IS_ERR(dfid))
797 return PTR_ERR(dfid);
798
799 oldfid = v9fs_fid_lookup(old_dentry);
800 if (IS_ERR(oldfid))
801 return PTR_ERR(oldfid);
802
803 name = (char *) dentry->d_name.name;
804
805 err = p9_client_link(dfid, oldfid, (char *)dentry->d_name.name);
806
807 if (err < 0) {
Joe Perches5d385152011-11-28 10:40:46 -0800808 p9_debug(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600809 return err;
810 }
811
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530812 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600813 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
814 /* Get the latest stat info from server. */
815 struct p9_fid *fid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600816 fid = v9fs_fid_lookup(old_dentry);
817 if (IS_ERR(fid))
818 return PTR_ERR(fid);
819
Aneesh Kumar K.Vc06c0662011-02-28 17:04:09 +0530820 v9fs_refresh_inode_dotl(fid, old_dentry->d_inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600821 }
Aneesh Kumar K.V20656a42011-02-28 17:03:55 +0530822 ihold(old_dentry->d_inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600823 d_instantiate(dentry, old_dentry->d_inode);
824
825 return err;
826}
827
828/**
829 * v9fs_vfs_mknod_dotl - create a special file
830 * @dir: inode destination for new link
831 * @dentry: dentry for file
832 * @mode: mode for creation
833 * @rdev: device associated with special file
834 *
835 */
836static int
Al Viro1a67aaf2011-07-26 01:52:52 -0400837v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600838 dev_t rdev)
839{
840 int err;
Eric W. Biedermand4ef4e32013-01-30 12:08:21 -0800841 kgid_t gid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600842 char *name;
Al Virod3fb6122011-07-23 18:37:50 -0400843 umode_t mode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600844 struct v9fs_session_info *v9ses;
845 struct p9_fid *fid = NULL, *dfid = NULL;
846 struct inode *inode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600847 struct p9_qid qid;
848 struct dentry *dir_dentry;
849 struct posix_acl *dacl = NULL, *pacl = NULL;
850
Linus Torvalds609eac12012-01-10 15:09:01 -0800851 p9_debug(P9_DEBUG_VFS, " %lu,%s mode: %hx MAJOR: %u MINOR: %u\n",
Joe Perches5d385152011-11-28 10:40:46 -0800852 dir->i_ino, dentry->d_name.name, omode,
853 MAJOR(rdev), MINOR(rdev));
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600854
855 if (!new_valid_dev(rdev))
856 return -EINVAL;
857
858 v9ses = v9fs_inode2v9ses(dir);
Al Viroaf569592012-04-02 20:02:53 -0400859 dir_dentry = dentry->d_parent;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600860 dfid = v9fs_fid_lookup(dir_dentry);
861 if (IS_ERR(dfid)) {
862 err = PTR_ERR(dfid);
Joe Perches5d385152011-11-28 10:40:46 -0800863 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600864 dfid = NULL;
865 goto error;
866 }
867
868 gid = v9fs_get_fsgid_for_create(dir);
869 mode = omode;
870 /* Update mode based on ACL value */
871 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
872 if (err) {
Joe Perches5d385152011-11-28 10:40:46 -0800873 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mknod %d\n",
874 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600875 goto error;
876 }
877 name = (char *) dentry->d_name.name;
878
879 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
880 if (err < 0)
881 goto error;
882
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530883 v9fs_invalidate_inode_attr(dir);
Al Viro3592ac42013-01-31 13:45:39 -0500884 fid = p9_client_walk(dfid, 1, &name, 1);
885 if (IS_ERR(fid)) {
886 err = PTR_ERR(fid);
887 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
888 err);
889 fid = NULL;
890 goto error;
891 }
892
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600893 /* instantiate inode and assign the unopened fid to the dentry */
894 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
Aneesh Kumar K.Ved80fcf2011-07-06 16:32:31 +0530895 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600896 if (IS_ERR(inode)) {
897 err = PTR_ERR(inode);
Joe Perches5d385152011-11-28 10:40:46 -0800898 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
899 err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600900 goto error;
901 }
Al Viro3592ac42013-01-31 13:45:39 -0500902 v9fs_set_create_acl(inode, fid, dacl, pacl);
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 }
Al Viro3592ac42013-01-31 13:45:39 -0500918 v9fs_set_create_acl(inode, fid, dacl, pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600919 d_instantiate(dentry, inode);
920 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600921error:
922 if (fid)
923 p9_client_clunk(fid);
Al Viro5fa63002013-01-31 13:31:23 -0500924 v9fs_put_acl(dacl, pacl);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600925 return err;
926}
927
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600928/**
929 * v9fs_vfs_follow_link_dotl - follow a symlink path
930 * @dentry: dentry for symlink
931 * @nd: nameidata
932 *
933 */
934
935static void *
936v9fs_vfs_follow_link_dotl(struct dentry *dentry, struct nameidata *nd)
937{
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530938 int retval;
939 struct p9_fid *fid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600940 char *link = __getname();
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530941 char *target;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600942
Joe Perches5d385152011-11-28 10:40:46 -0800943 p9_debug(P9_DEBUG_VFS, "%s\n", dentry->d_name.name);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600944
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530945 if (!link) {
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600946 link = ERR_PTR(-ENOMEM);
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530947 goto ndset;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600948 }
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530949 fid = v9fs_fid_lookup(dentry);
950 if (IS_ERR(fid)) {
951 __putname(link);
Aneesh Kumar K.V936bb2d2011-03-24 23:04:41 +0530952 link = ERR_CAST(fid);
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530953 goto ndset;
954 }
955 retval = p9_client_readlink(fid, &target);
956 if (!retval) {
957 strcpy(link, target);
958 kfree(target);
959 goto ndset;
960 }
961 __putname(link);
962 link = ERR_PTR(retval);
963ndset:
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600964 nd_set_link(nd, link);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600965 return NULL;
966}
967
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530968int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode)
969{
970 loff_t i_size;
971 struct p9_stat_dotl *st;
972 struct v9fs_session_info *v9ses;
973
974 v9ses = v9fs_inode2v9ses(inode);
975 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
976 if (IS_ERR(st))
977 return PTR_ERR(st);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000978 /*
979 * Don't update inode if the file type is different
980 */
981 if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT))
982 goto out;
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530983
984 spin_lock(&inode->i_lock);
985 /*
986 * We don't want to refresh inode->i_size,
987 * because we may have cached data
988 */
989 i_size = inode->i_size;
990 v9fs_stat2inode_dotl(st, inode);
991 if (v9ses->cache)
992 inode->i_size = i_size;
993 spin_unlock(&inode->i_lock);
Aneesh Kumar K.V45089142011-07-25 18:06:33 +0000994out:
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530995 kfree(st);
996 return 0;
997}
998
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600999const struct inode_operations v9fs_dir_inode_operations_dotl = {
1000 .create = v9fs_vfs_create_dotl,
Miklos Szeredie43ae792012-06-05 15:10:26 +02001001 .atomic_open = v9fs_vfs_atomic_open_dotl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001002 .lookup = v9fs_vfs_lookup,
1003 .link = v9fs_vfs_link_dotl,
1004 .symlink = v9fs_vfs_symlink_dotl,
1005 .unlink = v9fs_vfs_unlink,
1006 .mkdir = v9fs_vfs_mkdir_dotl,
1007 .rmdir = v9fs_vfs_rmdir,
1008 .mknod = v9fs_vfs_mknod_dotl,
1009 .rename = v9fs_vfs_rename,
1010 .getattr = v9fs_vfs_getattr_dotl,
1011 .setattr = v9fs_vfs_setattr_dotl,
1012 .setxattr = generic_setxattr,
1013 .getxattr = generic_getxattr,
1014 .removexattr = generic_removexattr,
1015 .listxattr = v9fs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02001016 .get_acl = v9fs_iop_get_acl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001017};
1018
1019const struct inode_operations v9fs_file_inode_operations_dotl = {
1020 .getattr = v9fs_vfs_getattr_dotl,
1021 .setattr = v9fs_vfs_setattr_dotl,
1022 .setxattr = generic_setxattr,
1023 .getxattr = generic_getxattr,
1024 .removexattr = generic_removexattr,
1025 .listxattr = v9fs_listxattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02001026 .get_acl = v9fs_iop_get_acl,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001027};
1028
1029const struct inode_operations v9fs_symlink_inode_operations_dotl = {
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +05301030 .readlink = generic_readlink,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -06001031 .follow_link = v9fs_vfs_follow_link_dotl,
1032 .put_link = v9fs_vfs_put_link,
1033 .getattr = v9fs_vfs_getattr_dotl,
1034 .setattr = v9fs_vfs_setattr_dotl,
1035 .setxattr = generic_setxattr,
1036 .getxattr = generic_getxattr,
1037 .removexattr = generic_removexattr,
1038 .listxattr = v9fs_listxattr,
1039};