kill opendata->{mnt,dentry}
[deliverable/linux.git] / fs / 9p / vfs_inode_dotl.c
CommitLineData
53c06f4e
AK
1/*
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
1a67aafb 51v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
53c06f4e
AK
52 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
fd2421f5
AK
71static 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
ed80fcfa
AK
93/* Always get a new inode */
94static int v9fs_test_new_inode_dotl(struct inode *inode, void *data)
95{
96 return 0;
97}
98
fd2421f5
AK
99static 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
5ffc0cb3
AK
109static struct inode *v9fs_qid_iget_dotl(struct super_block *sb,
110 struct p9_qid *qid,
111 struct p9_fid *fid,
ed80fcfa
AK
112 struct p9_stat_dotl *st,
113 int new)
5ffc0cb3
AK
114{
115 int retval;
116 unsigned long i_ino;
117 struct inode *inode;
118 struct v9fs_session_info *v9ses = sb->s_fs_info;
ed80fcfa
AK
119 int (*test)(struct inode *, void *);
120
121 if (new)
122 test = v9fs_test_new_inode_dotl;
123 else
124 test = v9fs_test_inode_dotl;
5ffc0cb3
AK
125
126 i_ino = v9fs_qid2ino(qid);
ed80fcfa 127 inode = iget5_locked(sb, i_ino, test, v9fs_set_inode_dotl, st);
5ffc0cb3
AK
128 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 */
fd2421f5 137 inode->i_ino = i_ino;
45089142
AK
138 retval = v9fs_init_inode(v9ses, inode,
139 st->st_mode, new_decode_dev(st->st_rdev));
5ffc0cb3
AK
140 if (retval)
141 goto error;
142
143 v9fs_stat2inode_dotl(st, inode);
144#ifdef CONFIG_9P_FSCACHE
5ffc0cb3
AK
145 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
53c06f4e 160struct inode *
a78ce05d 161v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid,
ed80fcfa 162 struct super_block *sb, int new)
53c06f4e 163{
53c06f4e 164 struct p9_stat_dotl *st;
5ffc0cb3 165 struct inode *inode = NULL;
53c06f4e 166
fd2421f5 167 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC | P9_STATS_GEN);
53c06f4e
AK
168 if (IS_ERR(st))
169 return ERR_CAST(st);
170
ed80fcfa 171 inode = v9fs_qid_iget_dotl(sb, &st->qid, fid, st, new);
53c06f4e 172 kfree(st);
5ffc0cb3 173 return inode;
53c06f4e
AK
174}
175
f88657ce
AK
176struct 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
53c06f4e
AK
228/**
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
53c06f4e
AK
233 *
234 */
235
236static int
4acdaf27 237v9fs_vfs_create_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
53c06f4e 238 struct nameidata *nd)
e43ae79c
MS
239{
240 return v9fs_vfs_mknod_dotl(dir, dentry, omode, 0);
241}
242
d9585277 243static int
e43ae79c
MS
244v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
245 struct opendata *od, unsigned flags, umode_t omode,
47237687 246 int *opened)
53c06f4e
AK
247{
248 int err = 0;
53c06f4e 249 gid_t gid;
d3fb6120 250 umode_t mode;
6b39f6d2 251 char *name = NULL;
53c06f4e
AK
252 struct file *filp;
253 struct p9_qid qid;
254 struct inode *inode;
6b39f6d2
AK
255 struct p9_fid *fid = NULL;
256 struct v9fs_inode *v9inode;
257 struct p9_fid *dfid, *ofid, *inode_fid;
258 struct v9fs_session_info *v9ses;
53c06f4e 259 struct posix_acl *pacl = NULL, *dacl = NULL;
e43ae79c 260 struct dentry *res = NULL;
53c06f4e 261
e43ae79c
MS
262 if (d_unhashed(dentry)) {
263 res = v9fs_vfs_lookup(dir, dentry, NULL);
264 if (IS_ERR(res))
d9585277 265 return PTR_ERR(res);
e43ae79c
MS
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);
d9585277 274 return 1;
53c06f4e
AK
275 }
276
e43ae79c
MS
277 v9ses = v9fs_inode2v9ses(dir);
278
53c06f4e 279 name = (char *) dentry->d_name.name;
609eac1c 280 p9_debug(P9_DEBUG_VFS, "name:%s flags:0x%x mode:0x%hx\n",
5d385153 281 name, flags, omode);
53c06f4e
AK
282
283 dfid = v9fs_fid_lookup(dentry->d_parent);
284 if (IS_ERR(dfid)) {
285 err = PTR_ERR(dfid);
5d385153 286 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
d9585277 287 goto out;
53c06f4e
AK
288 }
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);
5d385153 294 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
d9585277 295 goto out;
53c06f4e
AK
296 }
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) {
5d385153
JP
304 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in creat %d\n",
305 err);
53c06f4e
AK
306 goto error;
307 }
f88657ce
AK
308 err = p9_client_create_dotl(ofid, name, v9fs_open_to_dotl_flags(flags),
309 mode, gid, &qid);
53c06f4e 310 if (err < 0) {
5d385153
JP
311 p9_debug(P9_DEBUG_VFS, "p9_client_open_dotl failed in creat %d\n",
312 err);
53c06f4e
AK
313 goto error;
314 }
d28c61f0 315 v9fs_invalidate_inode_attr(dir);
53c06f4e 316
af7542fc
AK
317 /* 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);
5d385153 321 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
53c06f4e 322 fid = NULL;
af7542fc 323 goto error;
53c06f4e 324 }
ed80fcfa 325 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
af7542fc
AK
326 if (IS_ERR(inode)) {
327 err = PTR_ERR(inode);
5d385153 328 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n", err);
af7542fc
AK
329 goto error;
330 }
af7542fc
AK
331 err = v9fs_fid_add(dentry, fid);
332 if (err < 0)
333 goto error;
5441ae5e 334 d_instantiate(dentry, inode);
af7542fc 335
53c06f4e 336 /* Now set the ACL based on the default value */
1ec95bf3 337 v9fs_set_create_acl(dentry, &dacl, &pacl);
6b39f6d2
AK
338
339 v9inode = V9FS_I(inode);
5a7e0a8c 340 mutex_lock(&v9inode->v_mutex);
7add697a
AK
341 if (v9ses->cache && !v9inode->writeback_fid &&
342 ((flags & O_ACCMODE) != O_RDONLY)) {
3cf387d7 343 /*
6b39f6d2 344 * clone a fid and add it to writeback_fid
3cf387d7
AK
345 * 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);
5a7e0a8c 353 mutex_unlock(&v9inode->v_mutex);
398c4f0e 354 goto err_clunk_old_fid;
3cf387d7 355 }
6b39f6d2 356 v9inode->writeback_fid = (void *) inode_fid;
3cf387d7 357 }
5a7e0a8c 358 mutex_unlock(&v9inode->v_mutex);
af7542fc 359 /* Since we are opening a file, assign the open fid to the file */
47237687 360 filp = finish_open(od, dentry, generic_file_open, opened);
af7542fc 361 if (IS_ERR(filp)) {
398c4f0e
AK
362 err = PTR_ERR(filp);
363 goto err_clunk_old_fid;
af7542fc
AK
364 }
365 filp->private_data = ofid;
46848de0
AK
366#ifdef CONFIG_9P_FSCACHE
367 if (v9ses->cache)
368 v9fs_cache_inode_set_cookie(inode, filp);
369#endif
47237687 370 *opened |= FILE_CREATED;
e43ae79c
MS
371out:
372 dput(res);
d9585277 373 return err;
53c06f4e
AK
374
375error:
53c06f4e
AK
376 if (fid)
377 p9_client_clunk(fid);
398c4f0e
AK
378err_clunk_old_fid:
379 if (ofid)
380 p9_client_clunk(ofid);
1ec95bf3 381 v9fs_set_create_acl(NULL, &dacl, &pacl);
e43ae79c 382 goto out;
53c06f4e
AK
383}
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,
18bb1db3 394 struct dentry *dentry, umode_t omode)
53c06f4e
AK
395{
396 int err;
397 struct v9fs_session_info *v9ses;
398 struct p9_fid *fid = NULL, *dfid = NULL;
399 gid_t gid;
400 char *name;
d3fb6120 401 umode_t mode;
53c06f4e
AK
402 struct inode *inode;
403 struct p9_qid qid;
404 struct dentry *dir_dentry;
405 struct posix_acl *dacl = NULL, *pacl = NULL;
406
5d385153 407 p9_debug(P9_DEBUG_VFS, "name %s\n", dentry->d_name.name);
53c06f4e
AK
408 err = 0;
409 v9ses = v9fs_inode2v9ses(dir);
410
411 omode |= S_IFDIR;
412 if (dir->i_mode & S_ISGID)
413 omode |= S_ISGID;
414
af569596 415 dir_dentry = dentry->d_parent;
53c06f4e
AK
416 dfid = v9fs_fid_lookup(dir_dentry);
417 if (IS_ERR(dfid)) {
418 err = PTR_ERR(dfid);
5d385153 419 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
53c06f4e
AK
420 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) {
5d385153
JP
429 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mkdir %d\n",
430 err);
53c06f4e
AK
431 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
438 /* instantiate inode and assign the unopened fid to the dentry */
439 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
440 fid = p9_client_walk(dfid, 1, &name, 1);
441 if (IS_ERR(fid)) {
442 err = PTR_ERR(fid);
5d385153
JP
443 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
444 err);
53c06f4e
AK
445 fid = NULL;
446 goto error;
447 }
448
ed80fcfa 449 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
53c06f4e
AK
450 if (IS_ERR(inode)) {
451 err = PTR_ERR(inode);
5d385153
JP
452 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
453 err);
53c06f4e
AK
454 goto error;
455 }
53c06f4e
AK
456 err = v9fs_fid_add(dentry, fid);
457 if (err < 0)
458 goto error;
5441ae5e 459 d_instantiate(dentry, inode);
53c06f4e
AK
460 fid = NULL;
461 } else {
462 /*
463 * Not in cached mode. No need to populate
464 * inode with stat. We need to get an inode
465 * so that we can set the acl with dentry
466 */
45089142 467 inode = v9fs_get_inode(dir->i_sb, mode, 0);
53c06f4e
AK
468 if (IS_ERR(inode)) {
469 err = PTR_ERR(inode);
470 goto error;
471 }
53c06f4e
AK
472 d_instantiate(dentry, inode);
473 }
474 /* Now set the ACL based on the default value */
1ec95bf3 475 v9fs_set_create_acl(dentry, &dacl, &pacl);
b271ec47 476 inc_nlink(dir);
d28c61f0 477 v9fs_invalidate_inode_attr(dir);
53c06f4e
AK
478error:
479 if (fid)
480 p9_client_clunk(fid);
1ec95bf3 481 v9fs_set_create_acl(NULL, &dacl, &pacl);
53c06f4e
AK
482 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
5d385153 494 p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
53c06f4e 495 err = -EPERM;
42869c8a 496 v9ses = v9fs_dentry2v9ses(dentry);
a1211908
AK
497 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
498 generic_fillattr(dentry->d_inode, stat);
499 return 0;
500 }
53c06f4e
AK
501 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
f766619d
AK
522/*
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
53c06f4e
AK
562/**
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;
575
5d385153 576 p9_debug(P9_DEBUG_VFS, "\n");
53c06f4e
AK
577
578 retval = inode_change_ok(dentry->d_inode, iattr);
579 if (retval)
580 return retval;
581
f766619d 582 p9attr.valid = v9fs_mapped_iattr_valid(iattr->ia_valid);
53c06f4e
AK
583 p9attr.mode = iattr->ia_mode;
584 p9attr.uid = iattr->ia_uid;
585 p9attr.gid = iattr->ia_gid;
586 p9attr.size = iattr->ia_size;
587 p9attr.atime_sec = iattr->ia_atime.tv_sec;
588 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
589 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
590 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
591
592 retval = -EPERM;
42869c8a 593 v9ses = v9fs_dentry2v9ses(dentry);
53c06f4e
AK
594 fid = v9fs_fid_lookup(dentry);
595 if (IS_ERR(fid))
596 return PTR_ERR(fid);
597
3dc5436a
AK
598 /* Write all dirty data */
599 if (S_ISREG(dentry->d_inode->i_mode))
600 filemap_write_and_wait(dentry->d_inode->i_mapping);
601
f10fc50f
AK
602 retval = p9_client_setattr(fid, &p9attr);
603 if (retval < 0)
604 return retval;
53c06f4e 605
059c138b
AK
606 if ((iattr->ia_valid & ATTR_SIZE) &&
607 iattr->ia_size != i_size_read(dentry->d_inode))
608 truncate_setsize(dentry->d_inode, iattr->ia_size);
609
610 v9fs_invalidate_inode_attr(dentry->d_inode);
53c06f4e
AK
611 setattr_copy(dentry->d_inode, iattr);
612 mark_inode_dirty(dentry->d_inode);
613 if (iattr->ia_valid & ATTR_MODE) {
614 /* We also want to update ACL when we update mode bits */
615 retval = v9fs_acl_chmod(dentry);
616 if (retval < 0)
617 return retval;
618 }
619 return 0;
620}
621
622/**
623 * v9fs_stat2inode_dotl - populate an inode structure with stat info
624 * @stat: stat structure
625 * @inode: inode to populate
626 * @sb: superblock of filesystem
627 *
628 */
629
630void
631v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode)
632{
3eda0de6 633 umode_t mode;
b3cbea03 634 struct v9fs_inode *v9inode = V9FS_I(inode);
53c06f4e
AK
635
636 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
637 inode->i_atime.tv_sec = stat->st_atime_sec;
638 inode->i_atime.tv_nsec = stat->st_atime_nsec;
639 inode->i_mtime.tv_sec = stat->st_mtime_sec;
640 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
641 inode->i_ctime.tv_sec = stat->st_ctime_sec;
642 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
643 inode->i_uid = stat->st_uid;
644 inode->i_gid = stat->st_gid;
bfe86848 645 set_nlink(inode, stat->st_nlink);
53c06f4e 646
45089142
AK
647 mode = stat->st_mode & S_IALLUGO;
648 mode |= inode->i_mode & ~S_IALLUGO;
649 inode->i_mode = mode;
53c06f4e
AK
650
651 i_size_write(inode, stat->st_size);
652 inode->i_blocks = stat->st_blocks;
653 } else {
654 if (stat->st_result_mask & P9_STATS_ATIME) {
655 inode->i_atime.tv_sec = stat->st_atime_sec;
656 inode->i_atime.tv_nsec = stat->st_atime_nsec;
657 }
658 if (stat->st_result_mask & P9_STATS_MTIME) {
659 inode->i_mtime.tv_sec = stat->st_mtime_sec;
660 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
661 }
662 if (stat->st_result_mask & P9_STATS_CTIME) {
663 inode->i_ctime.tv_sec = stat->st_ctime_sec;
664 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
665 }
666 if (stat->st_result_mask & P9_STATS_UID)
667 inode->i_uid = stat->st_uid;
668 if (stat->st_result_mask & P9_STATS_GID)
669 inode->i_gid = stat->st_gid;
670 if (stat->st_result_mask & P9_STATS_NLINK)
bfe86848 671 set_nlink(inode, stat->st_nlink);
53c06f4e
AK
672 if (stat->st_result_mask & P9_STATS_MODE) {
673 inode->i_mode = stat->st_mode;
674 if ((S_ISBLK(inode->i_mode)) ||
675 (S_ISCHR(inode->i_mode)))
676 init_special_inode(inode, inode->i_mode,
677 inode->i_rdev);
678 }
679 if (stat->st_result_mask & P9_STATS_RDEV)
680 inode->i_rdev = new_decode_dev(stat->st_rdev);
681 if (stat->st_result_mask & P9_STATS_SIZE)
682 i_size_write(inode, stat->st_size);
683 if (stat->st_result_mask & P9_STATS_BLOCKS)
684 inode->i_blocks = stat->st_blocks;
685 }
686 if (stat->st_result_mask & P9_STATS_GEN)
fd2421f5 687 inode->i_generation = stat->st_gen;
53c06f4e
AK
688
689 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
690 * because the inode structure does not have fields for them.
691 */
b3cbea03 692 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
53c06f4e
AK
693}
694
695static int
696v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry,
697 const char *symname)
698{
53c06f4e
AK
699 int err;
700 gid_t gid;
d28c61f0
AK
701 char *name;
702 struct p9_qid qid;
703 struct inode *inode;
704 struct p9_fid *dfid;
705 struct p9_fid *fid = NULL;
706 struct v9fs_session_info *v9ses;
53c06f4e
AK
707
708 name = (char *) dentry->d_name.name;
5d385153 709 p9_debug(P9_DEBUG_VFS, "%lu,%s,%s\n", dir->i_ino, name, symname);
53c06f4e
AK
710 v9ses = v9fs_inode2v9ses(dir);
711
712 dfid = v9fs_fid_lookup(dentry->d_parent);
713 if (IS_ERR(dfid)) {
714 err = PTR_ERR(dfid);
5d385153 715 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
53c06f4e
AK
716 return err;
717 }
718
719 gid = v9fs_get_fsgid_for_create(dir);
720
721 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
722 err = p9_client_symlink(dfid, name, (char *)symname, gid, &qid);
723
724 if (err < 0) {
5d385153 725 p9_debug(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
53c06f4e
AK
726 goto error;
727 }
728
d28c61f0 729 v9fs_invalidate_inode_attr(dir);
53c06f4e
AK
730 if (v9ses->cache) {
731 /* Now walk from the parent so we can get an unopened fid. */
732 fid = p9_client_walk(dfid, 1, &name, 1);
733 if (IS_ERR(fid)) {
734 err = PTR_ERR(fid);
5d385153
JP
735 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
736 err);
53c06f4e
AK
737 fid = NULL;
738 goto error;
739 }
740
741 /* instantiate inode and assign the unopened fid to dentry */
ed80fcfa 742 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
53c06f4e
AK
743 if (IS_ERR(inode)) {
744 err = PTR_ERR(inode);
5d385153
JP
745 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
746 err);
53c06f4e
AK
747 goto error;
748 }
53c06f4e
AK
749 err = v9fs_fid_add(dentry, fid);
750 if (err < 0)
751 goto error;
5441ae5e 752 d_instantiate(dentry, inode);
53c06f4e
AK
753 fid = NULL;
754 } else {
755 /* Not in cached mode. No need to populate inode with stat */
45089142 756 inode = v9fs_get_inode(dir->i_sb, S_IFLNK, 0);
53c06f4e
AK
757 if (IS_ERR(inode)) {
758 err = PTR_ERR(inode);
759 goto error;
760 }
53c06f4e
AK
761 d_instantiate(dentry, inode);
762 }
763
764error:
765 if (fid)
766 p9_client_clunk(fid);
767
768 return err;
769}
770
771/**
772 * v9fs_vfs_link_dotl - create a hardlink for dotl
773 * @old_dentry: dentry for file to link to
774 * @dir: inode destination for new link
775 * @dentry: dentry for link
776 *
777 */
778
779static int
780v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
781 struct dentry *dentry)
782{
783 int err;
53c06f4e 784 char *name;
53c06f4e 785 struct dentry *dir_dentry;
d28c61f0
AK
786 struct p9_fid *dfid, *oldfid;
787 struct v9fs_session_info *v9ses;
53c06f4e 788
5d385153
JP
789 p9_debug(P9_DEBUG_VFS, "dir ino: %lu, old_name: %s, new_name: %s\n",
790 dir->i_ino, old_dentry->d_name.name, dentry->d_name.name);
53c06f4e
AK
791
792 v9ses = v9fs_inode2v9ses(dir);
af569596 793 dir_dentry = dentry->d_parent;
53c06f4e
AK
794 dfid = v9fs_fid_lookup(dir_dentry);
795 if (IS_ERR(dfid))
796 return PTR_ERR(dfid);
797
798 oldfid = v9fs_fid_lookup(old_dentry);
799 if (IS_ERR(oldfid))
800 return PTR_ERR(oldfid);
801
802 name = (char *) dentry->d_name.name;
803
804 err = p9_client_link(dfid, oldfid, (char *)dentry->d_name.name);
805
806 if (err < 0) {
5d385153 807 p9_debug(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
53c06f4e
AK
808 return err;
809 }
810
d28c61f0 811 v9fs_invalidate_inode_attr(dir);
53c06f4e
AK
812 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
813 /* Get the latest stat info from server. */
814 struct p9_fid *fid;
53c06f4e
AK
815 fid = v9fs_fid_lookup(old_dentry);
816 if (IS_ERR(fid))
817 return PTR_ERR(fid);
818
c06c066a 819 v9fs_refresh_inode_dotl(fid, old_dentry->d_inode);
53c06f4e 820 }
20656a49 821 ihold(old_dentry->d_inode);
53c06f4e
AK
822 d_instantiate(dentry, old_dentry->d_inode);
823
824 return err;
825}
826
827/**
828 * v9fs_vfs_mknod_dotl - create a special file
829 * @dir: inode destination for new link
830 * @dentry: dentry for file
831 * @mode: mode for creation
832 * @rdev: device associated with special file
833 *
834 */
835static int
1a67aafb 836v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
53c06f4e
AK
837 dev_t rdev)
838{
839 int err;
d28c61f0 840 gid_t gid;
53c06f4e 841 char *name;
d3fb6120 842 umode_t mode;
53c06f4e
AK
843 struct v9fs_session_info *v9ses;
844 struct p9_fid *fid = NULL, *dfid = NULL;
845 struct inode *inode;
53c06f4e
AK
846 struct p9_qid qid;
847 struct dentry *dir_dentry;
848 struct posix_acl *dacl = NULL, *pacl = NULL;
849
609eac1c 850 p9_debug(P9_DEBUG_VFS, " %lu,%s mode: %hx MAJOR: %u MINOR: %u\n",
5d385153
JP
851 dir->i_ino, dentry->d_name.name, omode,
852 MAJOR(rdev), MINOR(rdev));
53c06f4e
AK
853
854 if (!new_valid_dev(rdev))
855 return -EINVAL;
856
857 v9ses = v9fs_inode2v9ses(dir);
af569596 858 dir_dentry = dentry->d_parent;
53c06f4e
AK
859 dfid = v9fs_fid_lookup(dir_dentry);
860 if (IS_ERR(dfid)) {
861 err = PTR_ERR(dfid);
5d385153 862 p9_debug(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
53c06f4e
AK
863 dfid = NULL;
864 goto error;
865 }
866
867 gid = v9fs_get_fsgid_for_create(dir);
868 mode = omode;
869 /* Update mode based on ACL value */
870 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
871 if (err) {
5d385153
JP
872 p9_debug(P9_DEBUG_VFS, "Failed to get acl values in mknod %d\n",
873 err);
53c06f4e
AK
874 goto error;
875 }
876 name = (char *) dentry->d_name.name;
877
878 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
879 if (err < 0)
880 goto error;
881
d28c61f0 882 v9fs_invalidate_inode_attr(dir);
53c06f4e
AK
883 /* instantiate inode and assign the unopened fid to the dentry */
884 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
885 fid = p9_client_walk(dfid, 1, &name, 1);
886 if (IS_ERR(fid)) {
887 err = PTR_ERR(fid);
5d385153
JP
888 p9_debug(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
889 err);
53c06f4e
AK
890 fid = NULL;
891 goto error;
892 }
893
ed80fcfa 894 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
53c06f4e
AK
895 if (IS_ERR(inode)) {
896 err = PTR_ERR(inode);
5d385153
JP
897 p9_debug(P9_DEBUG_VFS, "inode creation failed %d\n",
898 err);
53c06f4e
AK
899 goto error;
900 }
53c06f4e
AK
901 err = v9fs_fid_add(dentry, fid);
902 if (err < 0)
903 goto error;
5441ae5e 904 d_instantiate(dentry, inode);
53c06f4e
AK
905 fid = NULL;
906 } else {
907 /*
908 * Not in cached mode. No need to populate inode with stat.
909 * socket syscall returns a fd, so we need instantiate
910 */
45089142 911 inode = v9fs_get_inode(dir->i_sb, mode, rdev);
53c06f4e
AK
912 if (IS_ERR(inode)) {
913 err = PTR_ERR(inode);
914 goto error;
915 }
53c06f4e
AK
916 d_instantiate(dentry, inode);
917 }
918 /* Now set the ACL based on the default value */
1ec95bf3 919 v9fs_set_create_acl(dentry, &dacl, &pacl);
53c06f4e
AK
920error:
921 if (fid)
922 p9_client_clunk(fid);
1ec95bf3 923 v9fs_set_create_acl(NULL, &dacl, &pacl);
53c06f4e
AK
924 return err;
925}
926
53c06f4e
AK
927/**
928 * v9fs_vfs_follow_link_dotl - follow a symlink path
929 * @dentry: dentry for symlink
930 * @nd: nameidata
931 *
932 */
933
934static void *
935v9fs_vfs_follow_link_dotl(struct dentry *dentry, struct nameidata *nd)
936{
31b6ceac
MK
937 int retval;
938 struct p9_fid *fid;
53c06f4e 939 char *link = __getname();
31b6ceac 940 char *target;
53c06f4e 941
5d385153 942 p9_debug(P9_DEBUG_VFS, "%s\n", dentry->d_name.name);
53c06f4e 943
31b6ceac 944 if (!link) {
53c06f4e 945 link = ERR_PTR(-ENOMEM);
31b6ceac 946 goto ndset;
53c06f4e 947 }
31b6ceac
MK
948 fid = v9fs_fid_lookup(dentry);
949 if (IS_ERR(fid)) {
950 __putname(link);
936bb2d7 951 link = ERR_CAST(fid);
31b6ceac
MK
952 goto ndset;
953 }
954 retval = p9_client_readlink(fid, &target);
955 if (!retval) {
956 strcpy(link, target);
957 kfree(target);
958 goto ndset;
959 }
960 __putname(link);
961 link = ERR_PTR(retval);
962ndset:
53c06f4e 963 nd_set_link(nd, link);
53c06f4e
AK
964 return NULL;
965}
966
b3cbea03
AK
967int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode)
968{
969 loff_t i_size;
970 struct p9_stat_dotl *st;
971 struct v9fs_session_info *v9ses;
972
973 v9ses = v9fs_inode2v9ses(inode);
974 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
975 if (IS_ERR(st))
976 return PTR_ERR(st);
45089142
AK
977 /*
978 * Don't update inode if the file type is different
979 */
980 if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT))
981 goto out;
b3cbea03
AK
982
983 spin_lock(&inode->i_lock);
984 /*
985 * We don't want to refresh inode->i_size,
986 * because we may have cached data
987 */
988 i_size = inode->i_size;
989 v9fs_stat2inode_dotl(st, inode);
990 if (v9ses->cache)
991 inode->i_size = i_size;
992 spin_unlock(&inode->i_lock);
45089142 993out:
b3cbea03
AK
994 kfree(st);
995 return 0;
996}
997
53c06f4e
AK
998const struct inode_operations v9fs_dir_inode_operations_dotl = {
999 .create = v9fs_vfs_create_dotl,
e43ae79c 1000 .atomic_open = v9fs_vfs_atomic_open_dotl,
53c06f4e
AK
1001 .lookup = v9fs_vfs_lookup,
1002 .link = v9fs_vfs_link_dotl,
1003 .symlink = v9fs_vfs_symlink_dotl,
1004 .unlink = v9fs_vfs_unlink,
1005 .mkdir = v9fs_vfs_mkdir_dotl,
1006 .rmdir = v9fs_vfs_rmdir,
1007 .mknod = v9fs_vfs_mknod_dotl,
1008 .rename = v9fs_vfs_rename,
1009 .getattr = v9fs_vfs_getattr_dotl,
1010 .setattr = v9fs_vfs_setattr_dotl,
1011 .setxattr = generic_setxattr,
1012 .getxattr = generic_getxattr,
1013 .removexattr = generic_removexattr,
1014 .listxattr = v9fs_listxattr,
4e34e719 1015 .get_acl = v9fs_iop_get_acl,
53c06f4e
AK
1016};
1017
1018const struct inode_operations v9fs_file_inode_operations_dotl = {
1019 .getattr = v9fs_vfs_getattr_dotl,
1020 .setattr = v9fs_vfs_setattr_dotl,
1021 .setxattr = generic_setxattr,
1022 .getxattr = generic_getxattr,
1023 .removexattr = generic_removexattr,
1024 .listxattr = v9fs_listxattr,
4e34e719 1025 .get_acl = v9fs_iop_get_acl,
53c06f4e
AK
1026};
1027
1028const struct inode_operations v9fs_symlink_inode_operations_dotl = {
31b6ceac 1029 .readlink = generic_readlink,
53c06f4e
AK
1030 .follow_link = v9fs_vfs_follow_link_dotl,
1031 .put_link = v9fs_vfs_put_link,
1032 .getattr = v9fs_vfs_getattr_dotl,
1033 .setattr = v9fs_vfs_setattr_dotl,
1034 .setxattr = generic_setxattr,
1035 .getxattr = generic_getxattr,
1036 .removexattr = generic_removexattr,
1037 .listxattr = v9fs_listxattr,
1038};
This page took 0.154154 seconds and 5 git commands to generate.