blob: 81bb4c2a0b82dd0f6b1335e9db463896109ad455 [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
51v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, int omode,
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
71/**
72 * v9fs_dentry_from_dir_inode - helper function to get the dentry from
73 * dir inode.
74 *
75 */
76
77static struct dentry *v9fs_dentry_from_dir_inode(struct inode *inode)
78{
79 struct dentry *dentry;
80
81 spin_lock(&inode->i_lock);
82 /* Directory should have only one entry. */
83 BUG_ON(S_ISDIR(inode->i_mode) && !list_is_singular(&inode->i_dentry));
84 dentry = list_entry(inode->i_dentry.next, struct dentry, d_alias);
85 spin_unlock(&inode->i_lock);
86 return dentry;
87}
88
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +053089static struct inode *v9fs_qid_iget_dotl(struct super_block *sb,
90 struct p9_qid *qid,
91 struct p9_fid *fid,
92 struct p9_stat_dotl *st)
93{
94 int retval;
95 unsigned long i_ino;
96 struct inode *inode;
97 struct v9fs_session_info *v9ses = sb->s_fs_info;
98
99 i_ino = v9fs_qid2ino(qid);
100 inode = iget_locked(sb, i_ino);
101 if (!inode)
102 return ERR_PTR(-ENOMEM);
103 if (!(inode->i_state & I_NEW))
104 return inode;
105 /*
106 * initialize the inode with the stat info
107 * FIXME!! we may need support for stale inodes
108 * later.
109 */
110 retval = v9fs_init_inode(v9ses, inode, st->st_mode);
111 if (retval)
112 goto error;
113
114 v9fs_stat2inode_dotl(st, inode);
115#ifdef CONFIG_9P_FSCACHE
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530116 v9fs_fscache_set_key(inode, &st->qid);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530117 v9fs_cache_inode_get_cookie(inode);
118#endif
119 retval = v9fs_get_acl(inode, fid);
120 if (retval)
121 goto error;
122
123 unlock_new_inode(inode);
124 return inode;
125error:
126 unlock_new_inode(inode);
127 iput(inode);
128 return ERR_PTR(retval);
129
130}
131
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600132struct inode *
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530133v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid,
134 struct super_block *sb)
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600135{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600136 struct p9_stat_dotl *st;
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530137 struct inode *inode = NULL;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600138
139 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC);
140 if (IS_ERR(st))
141 return ERR_CAST(st);
142
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530143 inode = v9fs_qid_iget_dotl(sb, &st->qid, fid, st);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600144 kfree(st);
Aneesh Kumar K.V5ffc0cb2011-02-28 17:04:01 +0530145 return inode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600146}
147
148/**
149 * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
150 * @dir: directory inode that is being created
151 * @dentry: dentry that is being deleted
152 * @mode: create permissions
153 * @nd: path information
154 *
155 */
156
157static int
158v9fs_vfs_create_dotl(struct inode *dir, struct dentry *dentry, int omode,
159 struct nameidata *nd)
160{
161 int err = 0;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600162 gid_t gid;
163 int flags;
164 mode_t mode;
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530165 char *name = NULL;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600166 struct file *filp;
167 struct p9_qid qid;
168 struct inode *inode;
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530169 struct p9_fid *fid = NULL;
170 struct v9fs_inode *v9inode;
171 struct p9_fid *dfid, *ofid, *inode_fid;
172 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600173 struct posix_acl *pacl = NULL, *dacl = NULL;
174
175 v9ses = v9fs_inode2v9ses(dir);
176 if (nd && nd->flags & LOOKUP_OPEN)
177 flags = nd->intent.open.flags - 1;
178 else {
179 /*
180 * create call without LOOKUP_OPEN is due
181 * to mknod of regular files. So use mknod
182 * operation.
183 */
184 return v9fs_vfs_mknod_dotl(dir, dentry, omode, 0);
185 }
186
187 name = (char *) dentry->d_name.name;
188 P9_DPRINTK(P9_DEBUG_VFS, "v9fs_vfs_create_dotl: name:%s flags:0x%x "
189 "mode:0x%x\n", name, flags, omode);
190
191 dfid = v9fs_fid_lookup(dentry->d_parent);
192 if (IS_ERR(dfid)) {
193 err = PTR_ERR(dfid);
194 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
195 return err;
196 }
197
198 /* clone a fid to use for creation */
199 ofid = p9_client_walk(dfid, 0, NULL, 1);
200 if (IS_ERR(ofid)) {
201 err = PTR_ERR(ofid);
202 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
203 return err;
204 }
205
206 gid = v9fs_get_fsgid_for_create(dir);
207
208 mode = omode;
209 /* Update mode based on ACL value */
210 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
211 if (err) {
212 P9_DPRINTK(P9_DEBUG_VFS,
213 "Failed to get acl values in creat %d\n", err);
214 goto error;
215 }
216 err = p9_client_create_dotl(ofid, name, flags, mode, gid, &qid);
217 if (err < 0) {
218 P9_DPRINTK(P9_DEBUG_VFS,
219 "p9_client_open_dotl failed in creat %d\n",
220 err);
221 goto error;
222 }
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530223 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600224
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600225 /* instantiate inode and assign the unopened fid to the dentry */
226 fid = p9_client_walk(dfid, 1, &name, 1);
227 if (IS_ERR(fid)) {
228 err = PTR_ERR(fid);
Eric Van Hensbergenc25a61f2011-01-11 09:49:03 -0600229 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600230 fid = NULL;
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600231 goto error;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600232 }
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530233 inode = v9fs_get_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600234 if (IS_ERR(inode)) {
235 err = PTR_ERR(inode);
236 P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n", err);
237 goto error;
238 }
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600239 d_instantiate(dentry, inode);
240 err = v9fs_fid_add(dentry, fid);
241 if (err < 0)
242 goto error;
243
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600244 /* Now set the ACL based on the default value */
245 v9fs_set_create_acl(dentry, dacl, pacl);
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530246
247 v9inode = V9FS_I(inode);
248 if (v9ses->cache && !v9inode->writeback_fid) {
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530249 /*
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530250 * clone a fid and add it to writeback_fid
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530251 * we do it during open time instead of
252 * page dirty time via write_begin/page_mkwrite
253 * because we want write after unlink usecase
254 * to work.
255 */
256 inode_fid = v9fs_writeback_fid(dentry);
257 if (IS_ERR(inode_fid)) {
258 err = PTR_ERR(inode_fid);
259 goto error;
260 }
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530261 v9inode->writeback_fid = (void *) inode_fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530262 }
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600263 /* Since we are opening a file, assign the open fid to the file */
264 filp = lookup_instantiate_filp(nd, dentry, generic_file_open);
265 if (IS_ERR(filp)) {
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600266 p9_client_clunk(ofid);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600267 return PTR_ERR(filp);
268 }
269 filp->private_data = ofid;
Aneesh Kumar K.V46848de2011-02-28 17:03:55 +0530270#ifdef CONFIG_9P_FSCACHE
271 if (v9ses->cache)
272 v9fs_cache_inode_set_cookie(inode, filp);
273#endif
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600274 return 0;
275
276error:
277 if (ofid)
278 p9_client_clunk(ofid);
279 if (fid)
280 p9_client_clunk(fid);
281 return err;
282}
283
284/**
285 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
286 * @dir: inode that is being unlinked
287 * @dentry: dentry that is being unlinked
288 * @mode: mode for new directory
289 *
290 */
291
292static int v9fs_vfs_mkdir_dotl(struct inode *dir,
293 struct dentry *dentry, int omode)
294{
295 int err;
296 struct v9fs_session_info *v9ses;
297 struct p9_fid *fid = NULL, *dfid = NULL;
298 gid_t gid;
299 char *name;
300 mode_t mode;
301 struct inode *inode;
302 struct p9_qid qid;
303 struct dentry *dir_dentry;
304 struct posix_acl *dacl = NULL, *pacl = NULL;
305
306 P9_DPRINTK(P9_DEBUG_VFS, "name %s\n", dentry->d_name.name);
307 err = 0;
308 v9ses = v9fs_inode2v9ses(dir);
309
310 omode |= S_IFDIR;
311 if (dir->i_mode & S_ISGID)
312 omode |= S_ISGID;
313
314 dir_dentry = v9fs_dentry_from_dir_inode(dir);
315 dfid = v9fs_fid_lookup(dir_dentry);
316 if (IS_ERR(dfid)) {
317 err = PTR_ERR(dfid);
318 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
319 dfid = NULL;
320 goto error;
321 }
322
323 gid = v9fs_get_fsgid_for_create(dir);
324 mode = omode;
325 /* Update mode based on ACL value */
326 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
327 if (err) {
328 P9_DPRINTK(P9_DEBUG_VFS,
329 "Failed to get acl values in mkdir %d\n", err);
330 goto error;
331 }
332 name = (char *) dentry->d_name.name;
333 err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
334 if (err < 0)
335 goto error;
336
337 /* instantiate inode and assign the unopened fid to the dentry */
338 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
339 fid = p9_client_walk(dfid, 1, &name, 1);
340 if (IS_ERR(fid)) {
341 err = PTR_ERR(fid);
342 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
343 err);
344 fid = NULL;
345 goto error;
346 }
347
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530348 inode = v9fs_get_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600349 if (IS_ERR(inode)) {
350 err = PTR_ERR(inode);
351 P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n",
352 err);
353 goto error;
354 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600355 d_instantiate(dentry, inode);
356 err = v9fs_fid_add(dentry, fid);
357 if (err < 0)
358 goto error;
359 fid = NULL;
360 } else {
361 /*
362 * Not in cached mode. No need to populate
363 * inode with stat. We need to get an inode
364 * so that we can set the acl with dentry
365 */
366 inode = v9fs_get_inode(dir->i_sb, mode);
367 if (IS_ERR(inode)) {
368 err = PTR_ERR(inode);
369 goto error;
370 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600371 d_instantiate(dentry, inode);
372 }
373 /* Now set the ACL based on the default value */
374 v9fs_set_create_acl(dentry, dacl, pacl);
Aneesh Kumar K.Vb271ec42011-02-28 17:04:05 +0530375 inc_nlink(dir);
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530376 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600377error:
378 if (fid)
379 p9_client_clunk(fid);
380 return err;
381}
382
383static int
384v9fs_vfs_getattr_dotl(struct vfsmount *mnt, struct dentry *dentry,
385 struct kstat *stat)
386{
387 int err;
388 struct v9fs_session_info *v9ses;
389 struct p9_fid *fid;
390 struct p9_stat_dotl *st;
391
392 P9_DPRINTK(P9_DEBUG_VFS, "dentry: %p\n", dentry);
393 err = -EPERM;
394 v9ses = v9fs_inode2v9ses(dentry->d_inode);
Aneesh Kumar K.Va1211902011-02-28 17:04:01 +0530395 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
396 generic_fillattr(dentry->d_inode, stat);
397 return 0;
398 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600399 fid = v9fs_fid_lookup(dentry);
400 if (IS_ERR(fid))
401 return PTR_ERR(fid);
402
403 /* Ask for all the fields in stat structure. Server will return
404 * whatever it supports
405 */
406
407 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
408 if (IS_ERR(st))
409 return PTR_ERR(st);
410
411 v9fs_stat2inode_dotl(st, dentry->d_inode);
412 generic_fillattr(dentry->d_inode, stat);
413 /* Change block size to what the server returned */
414 stat->blksize = st->st_blksize;
415
416 kfree(st);
417 return 0;
418}
419
420/**
421 * v9fs_vfs_setattr_dotl - set file metadata
422 * @dentry: file whose metadata to set
423 * @iattr: metadata assignment structure
424 *
425 */
426
427int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
428{
429 int retval;
430 struct v9fs_session_info *v9ses;
431 struct p9_fid *fid;
432 struct p9_iattr_dotl p9attr;
433
434 P9_DPRINTK(P9_DEBUG_VFS, "\n");
435
436 retval = inode_change_ok(dentry->d_inode, iattr);
437 if (retval)
438 return retval;
439
440 p9attr.valid = iattr->ia_valid;
441 p9attr.mode = iattr->ia_mode;
442 p9attr.uid = iattr->ia_uid;
443 p9attr.gid = iattr->ia_gid;
444 p9attr.size = iattr->ia_size;
445 p9attr.atime_sec = iattr->ia_atime.tv_sec;
446 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
447 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
448 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
449
450 retval = -EPERM;
451 v9ses = v9fs_inode2v9ses(dentry->d_inode);
452 fid = v9fs_fid_lookup(dentry);
453 if (IS_ERR(fid))
454 return PTR_ERR(fid);
455
456 retval = p9_client_setattr(fid, &p9attr);
457 if (retval < 0)
458 return retval;
459
Aneesh Kumar K.V3bc86de2011-02-28 17:04:07 +0530460 v9fs_invalidate_inode_attr(dentry->d_inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600461 if ((iattr->ia_valid & ATTR_SIZE) &&
462 iattr->ia_size != i_size_read(dentry->d_inode)) {
463 retval = vmtruncate(dentry->d_inode, iattr->ia_size);
464 if (retval)
465 return retval;
466 }
467
468 setattr_copy(dentry->d_inode, iattr);
469 mark_inode_dirty(dentry->d_inode);
470 if (iattr->ia_valid & ATTR_MODE) {
471 /* We also want to update ACL when we update mode bits */
472 retval = v9fs_acl_chmod(dentry);
473 if (retval < 0)
474 return retval;
475 }
476 return 0;
477}
478
479/**
480 * v9fs_stat2inode_dotl - populate an inode structure with stat info
481 * @stat: stat structure
482 * @inode: inode to populate
483 * @sb: superblock of filesystem
484 *
485 */
486
487void
488v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode)
489{
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530490 struct v9fs_inode *v9inode = V9FS_I(inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600491
492 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
493 inode->i_atime.tv_sec = stat->st_atime_sec;
494 inode->i_atime.tv_nsec = stat->st_atime_nsec;
495 inode->i_mtime.tv_sec = stat->st_mtime_sec;
496 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
497 inode->i_ctime.tv_sec = stat->st_ctime_sec;
498 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
499 inode->i_uid = stat->st_uid;
500 inode->i_gid = stat->st_gid;
501 inode->i_nlink = stat->st_nlink;
502 inode->i_mode = stat->st_mode;
503 inode->i_rdev = new_decode_dev(stat->st_rdev);
504
505 if ((S_ISBLK(inode->i_mode)) || (S_ISCHR(inode->i_mode)))
506 init_special_inode(inode, inode->i_mode, inode->i_rdev);
507
508 i_size_write(inode, stat->st_size);
509 inode->i_blocks = stat->st_blocks;
510 } else {
511 if (stat->st_result_mask & P9_STATS_ATIME) {
512 inode->i_atime.tv_sec = stat->st_atime_sec;
513 inode->i_atime.tv_nsec = stat->st_atime_nsec;
514 }
515 if (stat->st_result_mask & P9_STATS_MTIME) {
516 inode->i_mtime.tv_sec = stat->st_mtime_sec;
517 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
518 }
519 if (stat->st_result_mask & P9_STATS_CTIME) {
520 inode->i_ctime.tv_sec = stat->st_ctime_sec;
521 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
522 }
523 if (stat->st_result_mask & P9_STATS_UID)
524 inode->i_uid = stat->st_uid;
525 if (stat->st_result_mask & P9_STATS_GID)
526 inode->i_gid = stat->st_gid;
527 if (stat->st_result_mask & P9_STATS_NLINK)
528 inode->i_nlink = stat->st_nlink;
529 if (stat->st_result_mask & P9_STATS_MODE) {
530 inode->i_mode = stat->st_mode;
531 if ((S_ISBLK(inode->i_mode)) ||
532 (S_ISCHR(inode->i_mode)))
533 init_special_inode(inode, inode->i_mode,
534 inode->i_rdev);
535 }
536 if (stat->st_result_mask & P9_STATS_RDEV)
537 inode->i_rdev = new_decode_dev(stat->st_rdev);
538 if (stat->st_result_mask & P9_STATS_SIZE)
539 i_size_write(inode, stat->st_size);
540 if (stat->st_result_mask & P9_STATS_BLOCKS)
541 inode->i_blocks = stat->st_blocks;
542 }
543 if (stat->st_result_mask & P9_STATS_GEN)
544 inode->i_generation = stat->st_gen;
545
546 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
547 * because the inode structure does not have fields for them.
548 */
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530549 v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600550}
551
552static int
553v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry,
554 const char *symname)
555{
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600556 int err;
557 gid_t gid;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530558 char *name;
559 struct p9_qid qid;
560 struct inode *inode;
561 struct p9_fid *dfid;
562 struct p9_fid *fid = NULL;
563 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600564
565 name = (char *) dentry->d_name.name;
566 P9_DPRINTK(P9_DEBUG_VFS, "v9fs_vfs_symlink_dotl : %lu,%s,%s\n",
567 dir->i_ino, name, symname);
568 v9ses = v9fs_inode2v9ses(dir);
569
570 dfid = v9fs_fid_lookup(dentry->d_parent);
571 if (IS_ERR(dfid)) {
572 err = PTR_ERR(dfid);
573 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
574 return err;
575 }
576
577 gid = v9fs_get_fsgid_for_create(dir);
578
579 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
580 err = p9_client_symlink(dfid, name, (char *)symname, gid, &qid);
581
582 if (err < 0) {
583 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
584 goto error;
585 }
586
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530587 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600588 if (v9ses->cache) {
589 /* Now walk from the parent so we can get an unopened fid. */
590 fid = p9_client_walk(dfid, 1, &name, 1);
591 if (IS_ERR(fid)) {
592 err = PTR_ERR(fid);
593 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
594 err);
595 fid = NULL;
596 goto error;
597 }
598
599 /* instantiate inode and assign the unopened fid to dentry */
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530600 inode = v9fs_get_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600601 if (IS_ERR(inode)) {
602 err = PTR_ERR(inode);
603 P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n",
604 err);
605 goto error;
606 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600607 d_instantiate(dentry, inode);
608 err = v9fs_fid_add(dentry, fid);
609 if (err < 0)
610 goto error;
611 fid = NULL;
612 } else {
613 /* Not in cached mode. No need to populate inode with stat */
614 inode = v9fs_get_inode(dir->i_sb, S_IFLNK);
615 if (IS_ERR(inode)) {
616 err = PTR_ERR(inode);
617 goto error;
618 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600619 d_instantiate(dentry, inode);
620 }
621
622error:
623 if (fid)
624 p9_client_clunk(fid);
625
626 return err;
627}
628
629/**
630 * v9fs_vfs_link_dotl - create a hardlink for dotl
631 * @old_dentry: dentry for file to link to
632 * @dir: inode destination for new link
633 * @dentry: dentry for link
634 *
635 */
636
637static int
638v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
639 struct dentry *dentry)
640{
641 int err;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600642 char *name;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600643 struct dentry *dir_dentry;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530644 struct p9_fid *dfid, *oldfid;
645 struct v9fs_session_info *v9ses;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600646
647 P9_DPRINTK(P9_DEBUG_VFS, "dir ino: %lu, old_name: %s, new_name: %s\n",
648 dir->i_ino, old_dentry->d_name.name,
649 dentry->d_name.name);
650
651 v9ses = v9fs_inode2v9ses(dir);
652 dir_dentry = v9fs_dentry_from_dir_inode(dir);
653 dfid = v9fs_fid_lookup(dir_dentry);
654 if (IS_ERR(dfid))
655 return PTR_ERR(dfid);
656
657 oldfid = v9fs_fid_lookup(old_dentry);
658 if (IS_ERR(oldfid))
659 return PTR_ERR(oldfid);
660
661 name = (char *) dentry->d_name.name;
662
663 err = p9_client_link(dfid, oldfid, (char *)dentry->d_name.name);
664
665 if (err < 0) {
666 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
667 return err;
668 }
669
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530670 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600671 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
672 /* Get the latest stat info from server. */
673 struct p9_fid *fid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600674 fid = v9fs_fid_lookup(old_dentry);
675 if (IS_ERR(fid))
676 return PTR_ERR(fid);
677
Aneesh Kumar K.Vc06c0662011-02-28 17:04:09 +0530678 v9fs_refresh_inode_dotl(fid, old_dentry->d_inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600679 }
Aneesh Kumar K.V20656a42011-02-28 17:03:55 +0530680 ihold(old_dentry->d_inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600681 d_instantiate(dentry, old_dentry->d_inode);
682
683 return err;
684}
685
686/**
687 * v9fs_vfs_mknod_dotl - create a special file
688 * @dir: inode destination for new link
689 * @dentry: dentry for file
690 * @mode: mode for creation
691 * @rdev: device associated with special file
692 *
693 */
694static int
695v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, int omode,
696 dev_t rdev)
697{
698 int err;
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530699 gid_t gid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600700 char *name;
701 mode_t mode;
702 struct v9fs_session_info *v9ses;
703 struct p9_fid *fid = NULL, *dfid = NULL;
704 struct inode *inode;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600705 struct p9_qid qid;
706 struct dentry *dir_dentry;
707 struct posix_acl *dacl = NULL, *pacl = NULL;
708
709 P9_DPRINTK(P9_DEBUG_VFS,
710 " %lu,%s mode: %x MAJOR: %u MINOR: %u\n", dir->i_ino,
711 dentry->d_name.name, omode, MAJOR(rdev), MINOR(rdev));
712
713 if (!new_valid_dev(rdev))
714 return -EINVAL;
715
716 v9ses = v9fs_inode2v9ses(dir);
717 dir_dentry = v9fs_dentry_from_dir_inode(dir);
718 dfid = v9fs_fid_lookup(dir_dentry);
719 if (IS_ERR(dfid)) {
720 err = PTR_ERR(dfid);
721 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
722 dfid = NULL;
723 goto error;
724 }
725
726 gid = v9fs_get_fsgid_for_create(dir);
727 mode = omode;
728 /* Update mode based on ACL value */
729 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
730 if (err) {
731 P9_DPRINTK(P9_DEBUG_VFS,
732 "Failed to get acl values in mknod %d\n", err);
733 goto error;
734 }
735 name = (char *) dentry->d_name.name;
736
737 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
738 if (err < 0)
739 goto error;
740
Aneesh Kumar K.Vd28c61f2011-02-28 17:04:08 +0530741 v9fs_invalidate_inode_attr(dir);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600742 /* instantiate inode and assign the unopened fid to the dentry */
743 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
744 fid = p9_client_walk(dfid, 1, &name, 1);
745 if (IS_ERR(fid)) {
746 err = PTR_ERR(fid);
747 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
748 err);
749 fid = NULL;
750 goto error;
751 }
752
Aneesh Kumar K.Va78ce052011-02-28 17:04:02 +0530753 inode = v9fs_get_inode_from_fid(v9ses, fid, dir->i_sb);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600754 if (IS_ERR(inode)) {
755 err = PTR_ERR(inode);
756 P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n",
757 err);
758 goto error;
759 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600760 d_instantiate(dentry, inode);
761 err = v9fs_fid_add(dentry, fid);
762 if (err < 0)
763 goto error;
764 fid = NULL;
765 } else {
766 /*
767 * Not in cached mode. No need to populate inode with stat.
768 * socket syscall returns a fd, so we need instantiate
769 */
770 inode = v9fs_get_inode(dir->i_sb, mode);
771 if (IS_ERR(inode)) {
772 err = PTR_ERR(inode);
773 goto error;
774 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600775 d_instantiate(dentry, inode);
776 }
777 /* Now set the ACL based on the default value */
778 v9fs_set_create_acl(dentry, dacl, pacl);
779error:
780 if (fid)
781 p9_client_clunk(fid);
782 return err;
783}
784
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600785/**
786 * v9fs_vfs_follow_link_dotl - follow a symlink path
787 * @dentry: dentry for symlink
788 * @nd: nameidata
789 *
790 */
791
792static void *
793v9fs_vfs_follow_link_dotl(struct dentry *dentry, struct nameidata *nd)
794{
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530795 int retval;
796 struct p9_fid *fid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600797 char *link = __getname();
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530798 char *target;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600799
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530800 P9_DPRINTK(P9_DEBUG_VFS, "%s\n", dentry->d_name.name);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600801
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530802 if (!link) {
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600803 link = ERR_PTR(-ENOMEM);
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530804 goto ndset;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600805 }
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530806 fid = v9fs_fid_lookup(dentry);
807 if (IS_ERR(fid)) {
808 __putname(link);
809 link = ERR_PTR(PTR_ERR(fid));
810 goto ndset;
811 }
812 retval = p9_client_readlink(fid, &target);
813 if (!retval) {
814 strcpy(link, target);
815 kfree(target);
816 goto ndset;
817 }
818 __putname(link);
819 link = ERR_PTR(retval);
820ndset:
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600821 nd_set_link(nd, link);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600822 return NULL;
823}
824
Aneesh Kumar K.Vb3cbea02011-02-28 17:04:06 +0530825int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode)
826{
827 loff_t i_size;
828 struct p9_stat_dotl *st;
829 struct v9fs_session_info *v9ses;
830
831 v9ses = v9fs_inode2v9ses(inode);
832 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
833 if (IS_ERR(st))
834 return PTR_ERR(st);
835
836 spin_lock(&inode->i_lock);
837 /*
838 * We don't want to refresh inode->i_size,
839 * because we may have cached data
840 */
841 i_size = inode->i_size;
842 v9fs_stat2inode_dotl(st, inode);
843 if (v9ses->cache)
844 inode->i_size = i_size;
845 spin_unlock(&inode->i_lock);
846 kfree(st);
847 return 0;
848}
849
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600850const struct inode_operations v9fs_dir_inode_operations_dotl = {
851 .create = v9fs_vfs_create_dotl,
852 .lookup = v9fs_vfs_lookup,
853 .link = v9fs_vfs_link_dotl,
854 .symlink = v9fs_vfs_symlink_dotl,
855 .unlink = v9fs_vfs_unlink,
856 .mkdir = v9fs_vfs_mkdir_dotl,
857 .rmdir = v9fs_vfs_rmdir,
858 .mknod = v9fs_vfs_mknod_dotl,
859 .rename = v9fs_vfs_rename,
860 .getattr = v9fs_vfs_getattr_dotl,
861 .setattr = v9fs_vfs_setattr_dotl,
862 .setxattr = generic_setxattr,
863 .getxattr = generic_getxattr,
864 .removexattr = generic_removexattr,
865 .listxattr = v9fs_listxattr,
866 .check_acl = v9fs_check_acl,
867};
868
869const struct inode_operations v9fs_file_inode_operations_dotl = {
870 .getattr = v9fs_vfs_getattr_dotl,
871 .setattr = v9fs_vfs_setattr_dotl,
872 .setxattr = generic_setxattr,
873 .getxattr = generic_getxattr,
874 .removexattr = generic_removexattr,
875 .listxattr = v9fs_listxattr,
876 .check_acl = v9fs_check_acl,
877};
878
879const struct inode_operations v9fs_symlink_inode_operations_dotl = {
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530880 .readlink = generic_readlink,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600881 .follow_link = v9fs_vfs_follow_link_dotl,
882 .put_link = v9fs_vfs_put_link,
883 .getattr = v9fs_vfs_getattr_dotl,
884 .setattr = v9fs_vfs_setattr_dotl,
885 .setxattr = generic_setxattr,
886 .getxattr = generic_getxattr,
887 .removexattr = generic_removexattr,
888 .listxattr = v9fs_listxattr,
889};