blob: 265f5834498adc28ac2d61d7d4f100c74e9f2425 [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
89struct inode *
90v9fs_inode_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid,
91 struct super_block *sb)
92{
93 struct inode *ret = NULL;
94 int err;
95 struct p9_stat_dotl *st;
96
97 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC);
98 if (IS_ERR(st))
99 return ERR_CAST(st);
100
101 ret = v9fs_get_inode(sb, st->st_mode);
102 if (IS_ERR(ret)) {
103 err = PTR_ERR(ret);
104 goto error;
105 }
106
107 v9fs_stat2inode_dotl(st, ret);
108 ret->i_ino = v9fs_qid2ino(&st->qid);
109#ifdef CONFIG_9P_FSCACHE
110 v9fs_vcookie_set_qid(ret, &st->qid);
111 v9fs_cache_inode_get_cookie(ret);
112#endif
113 err = v9fs_get_acl(ret, fid);
114 if (err) {
115 iput(ret);
116 goto error;
117 }
118 kfree(st);
119 return ret;
120error:
121 kfree(st);
122 return ERR_PTR(err);
123}
124
125/**
126 * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
127 * @dir: directory inode that is being created
128 * @dentry: dentry that is being deleted
129 * @mode: create permissions
130 * @nd: path information
131 *
132 */
133
134static int
135v9fs_vfs_create_dotl(struct inode *dir, struct dentry *dentry, int omode,
136 struct nameidata *nd)
137{
138 int err = 0;
139 char *name = NULL;
140 gid_t gid;
141 int flags;
142 mode_t mode;
143 struct v9fs_session_info *v9ses;
144 struct p9_fid *fid = NULL;
145 struct p9_fid *dfid, *ofid;
146 struct file *filp;
147 struct p9_qid qid;
148 struct inode *inode;
149 struct posix_acl *pacl = NULL, *dacl = NULL;
150
151 v9ses = v9fs_inode2v9ses(dir);
152 if (nd && nd->flags & LOOKUP_OPEN)
153 flags = nd->intent.open.flags - 1;
154 else {
155 /*
156 * create call without LOOKUP_OPEN is due
157 * to mknod of regular files. So use mknod
158 * operation.
159 */
160 return v9fs_vfs_mknod_dotl(dir, dentry, omode, 0);
161 }
162
163 name = (char *) dentry->d_name.name;
164 P9_DPRINTK(P9_DEBUG_VFS, "v9fs_vfs_create_dotl: name:%s flags:0x%x "
165 "mode:0x%x\n", name, flags, omode);
166
167 dfid = v9fs_fid_lookup(dentry->d_parent);
168 if (IS_ERR(dfid)) {
169 err = PTR_ERR(dfid);
170 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
171 return err;
172 }
173
174 /* clone a fid to use for creation */
175 ofid = p9_client_walk(dfid, 0, NULL, 1);
176 if (IS_ERR(ofid)) {
177 err = PTR_ERR(ofid);
178 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
179 return err;
180 }
181
182 gid = v9fs_get_fsgid_for_create(dir);
183
184 mode = omode;
185 /* Update mode based on ACL value */
186 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
187 if (err) {
188 P9_DPRINTK(P9_DEBUG_VFS,
189 "Failed to get acl values in creat %d\n", err);
190 goto error;
191 }
192 err = p9_client_create_dotl(ofid, name, flags, mode, gid, &qid);
193 if (err < 0) {
194 P9_DPRINTK(P9_DEBUG_VFS,
195 "p9_client_open_dotl failed in creat %d\n",
196 err);
197 goto error;
198 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600199
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600200 /* instantiate inode and assign the unopened fid to the dentry */
201 fid = p9_client_walk(dfid, 1, &name, 1);
202 if (IS_ERR(fid)) {
203 err = PTR_ERR(fid);
Eric Van Hensbergenc25a61f2011-01-11 09:49:03 -0600204 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600205 fid = NULL;
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600206 goto error;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600207 }
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600208 inode = v9fs_inode_from_fid(v9ses, fid, dir->i_sb);
209 if (IS_ERR(inode)) {
210 err = PTR_ERR(inode);
211 P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n", err);
212 goto error;
213 }
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600214 d_instantiate(dentry, inode);
215 err = v9fs_fid_add(dentry, fid);
216 if (err < 0)
217 goto error;
218
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600219 /* Now set the ACL based on the default value */
220 v9fs_set_create_acl(dentry, dacl, pacl);
221
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600222 /* Since we are opening a file, assign the open fid to the file */
223 filp = lookup_instantiate_filp(nd, dentry, generic_file_open);
224 if (IS_ERR(filp)) {
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600225 p9_client_clunk(ofid);
Aneesh Kumar K.Vaf7542f2011-01-10 14:22:21 -0600226 return PTR_ERR(filp);
227 }
228 filp->private_data = ofid;
Aneesh Kumar K.V46848de2011-02-28 17:03:55 +0530229#ifdef CONFIG_9P_FSCACHE
230 if (v9ses->cache)
231 v9fs_cache_inode_set_cookie(inode, filp);
232#endif
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600233 return 0;
234
235error:
236 if (ofid)
237 p9_client_clunk(ofid);
238 if (fid)
239 p9_client_clunk(fid);
240 return err;
241}
242
243/**
244 * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
245 * @dir: inode that is being unlinked
246 * @dentry: dentry that is being unlinked
247 * @mode: mode for new directory
248 *
249 */
250
251static int v9fs_vfs_mkdir_dotl(struct inode *dir,
252 struct dentry *dentry, int omode)
253{
254 int err;
255 struct v9fs_session_info *v9ses;
256 struct p9_fid *fid = NULL, *dfid = NULL;
257 gid_t gid;
258 char *name;
259 mode_t mode;
260 struct inode *inode;
261 struct p9_qid qid;
262 struct dentry *dir_dentry;
263 struct posix_acl *dacl = NULL, *pacl = NULL;
264
265 P9_DPRINTK(P9_DEBUG_VFS, "name %s\n", dentry->d_name.name);
266 err = 0;
267 v9ses = v9fs_inode2v9ses(dir);
268
269 omode |= S_IFDIR;
270 if (dir->i_mode & S_ISGID)
271 omode |= S_ISGID;
272
273 dir_dentry = v9fs_dentry_from_dir_inode(dir);
274 dfid = v9fs_fid_lookup(dir_dentry);
275 if (IS_ERR(dfid)) {
276 err = PTR_ERR(dfid);
277 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
278 dfid = NULL;
279 goto error;
280 }
281
282 gid = v9fs_get_fsgid_for_create(dir);
283 mode = omode;
284 /* Update mode based on ACL value */
285 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
286 if (err) {
287 P9_DPRINTK(P9_DEBUG_VFS,
288 "Failed to get acl values in mkdir %d\n", err);
289 goto error;
290 }
291 name = (char *) dentry->d_name.name;
292 err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
293 if (err < 0)
294 goto error;
295
296 /* instantiate inode and assign the unopened fid to the dentry */
297 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
298 fid = p9_client_walk(dfid, 1, &name, 1);
299 if (IS_ERR(fid)) {
300 err = PTR_ERR(fid);
301 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
302 err);
303 fid = NULL;
304 goto error;
305 }
306
307 inode = v9fs_inode_from_fid(v9ses, fid, dir->i_sb);
308 if (IS_ERR(inode)) {
309 err = PTR_ERR(inode);
310 P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n",
311 err);
312 goto error;
313 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600314 d_instantiate(dentry, inode);
315 err = v9fs_fid_add(dentry, fid);
316 if (err < 0)
317 goto error;
318 fid = NULL;
319 } else {
320 /*
321 * Not in cached mode. No need to populate
322 * inode with stat. We need to get an inode
323 * so that we can set the acl with dentry
324 */
325 inode = v9fs_get_inode(dir->i_sb, mode);
326 if (IS_ERR(inode)) {
327 err = PTR_ERR(inode);
328 goto error;
329 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600330 d_instantiate(dentry, inode);
331 }
332 /* Now set the ACL based on the default value */
333 v9fs_set_create_acl(dentry, dacl, pacl);
334
335error:
336 if (fid)
337 p9_client_clunk(fid);
338 return err;
339}
340
341static int
342v9fs_vfs_getattr_dotl(struct vfsmount *mnt, struct dentry *dentry,
343 struct kstat *stat)
344{
345 int err;
346 struct v9fs_session_info *v9ses;
347 struct p9_fid *fid;
348 struct p9_stat_dotl *st;
349
350 P9_DPRINTK(P9_DEBUG_VFS, "dentry: %p\n", dentry);
351 err = -EPERM;
352 v9ses = v9fs_inode2v9ses(dentry->d_inode);
353 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE)
354 return simple_getattr(mnt, dentry, stat);
355
356 fid = v9fs_fid_lookup(dentry);
357 if (IS_ERR(fid))
358 return PTR_ERR(fid);
359
360 /* Ask for all the fields in stat structure. Server will return
361 * whatever it supports
362 */
363
364 st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
365 if (IS_ERR(st))
366 return PTR_ERR(st);
367
368 v9fs_stat2inode_dotl(st, dentry->d_inode);
369 generic_fillattr(dentry->d_inode, stat);
370 /* Change block size to what the server returned */
371 stat->blksize = st->st_blksize;
372
373 kfree(st);
374 return 0;
375}
376
377/**
378 * v9fs_vfs_setattr_dotl - set file metadata
379 * @dentry: file whose metadata to set
380 * @iattr: metadata assignment structure
381 *
382 */
383
384int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
385{
386 int retval;
387 struct v9fs_session_info *v9ses;
388 struct p9_fid *fid;
389 struct p9_iattr_dotl p9attr;
390
391 P9_DPRINTK(P9_DEBUG_VFS, "\n");
392
393 retval = inode_change_ok(dentry->d_inode, iattr);
394 if (retval)
395 return retval;
396
397 p9attr.valid = iattr->ia_valid;
398 p9attr.mode = iattr->ia_mode;
399 p9attr.uid = iattr->ia_uid;
400 p9attr.gid = iattr->ia_gid;
401 p9attr.size = iattr->ia_size;
402 p9attr.atime_sec = iattr->ia_atime.tv_sec;
403 p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
404 p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
405 p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
406
407 retval = -EPERM;
408 v9ses = v9fs_inode2v9ses(dentry->d_inode);
409 fid = v9fs_fid_lookup(dentry);
410 if (IS_ERR(fid))
411 return PTR_ERR(fid);
412
413 retval = p9_client_setattr(fid, &p9attr);
414 if (retval < 0)
415 return retval;
416
417 if ((iattr->ia_valid & ATTR_SIZE) &&
418 iattr->ia_size != i_size_read(dentry->d_inode)) {
419 retval = vmtruncate(dentry->d_inode, iattr->ia_size);
420 if (retval)
421 return retval;
422 }
423
424 setattr_copy(dentry->d_inode, iattr);
425 mark_inode_dirty(dentry->d_inode);
426 if (iattr->ia_valid & ATTR_MODE) {
427 /* We also want to update ACL when we update mode bits */
428 retval = v9fs_acl_chmod(dentry);
429 if (retval < 0)
430 return retval;
431 }
432 return 0;
433}
434
435/**
436 * v9fs_stat2inode_dotl - populate an inode structure with stat info
437 * @stat: stat structure
438 * @inode: inode to populate
439 * @sb: superblock of filesystem
440 *
441 */
442
443void
444v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode)
445{
446
447 if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
448 inode->i_atime.tv_sec = stat->st_atime_sec;
449 inode->i_atime.tv_nsec = stat->st_atime_nsec;
450 inode->i_mtime.tv_sec = stat->st_mtime_sec;
451 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
452 inode->i_ctime.tv_sec = stat->st_ctime_sec;
453 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
454 inode->i_uid = stat->st_uid;
455 inode->i_gid = stat->st_gid;
456 inode->i_nlink = stat->st_nlink;
457 inode->i_mode = stat->st_mode;
458 inode->i_rdev = new_decode_dev(stat->st_rdev);
459
460 if ((S_ISBLK(inode->i_mode)) || (S_ISCHR(inode->i_mode)))
461 init_special_inode(inode, inode->i_mode, inode->i_rdev);
462
463 i_size_write(inode, stat->st_size);
464 inode->i_blocks = stat->st_blocks;
465 } else {
466 if (stat->st_result_mask & P9_STATS_ATIME) {
467 inode->i_atime.tv_sec = stat->st_atime_sec;
468 inode->i_atime.tv_nsec = stat->st_atime_nsec;
469 }
470 if (stat->st_result_mask & P9_STATS_MTIME) {
471 inode->i_mtime.tv_sec = stat->st_mtime_sec;
472 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
473 }
474 if (stat->st_result_mask & P9_STATS_CTIME) {
475 inode->i_ctime.tv_sec = stat->st_ctime_sec;
476 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
477 }
478 if (stat->st_result_mask & P9_STATS_UID)
479 inode->i_uid = stat->st_uid;
480 if (stat->st_result_mask & P9_STATS_GID)
481 inode->i_gid = stat->st_gid;
482 if (stat->st_result_mask & P9_STATS_NLINK)
483 inode->i_nlink = stat->st_nlink;
484 if (stat->st_result_mask & P9_STATS_MODE) {
485 inode->i_mode = stat->st_mode;
486 if ((S_ISBLK(inode->i_mode)) ||
487 (S_ISCHR(inode->i_mode)))
488 init_special_inode(inode, inode->i_mode,
489 inode->i_rdev);
490 }
491 if (stat->st_result_mask & P9_STATS_RDEV)
492 inode->i_rdev = new_decode_dev(stat->st_rdev);
493 if (stat->st_result_mask & P9_STATS_SIZE)
494 i_size_write(inode, stat->st_size);
495 if (stat->st_result_mask & P9_STATS_BLOCKS)
496 inode->i_blocks = stat->st_blocks;
497 }
498 if (stat->st_result_mask & P9_STATS_GEN)
499 inode->i_generation = stat->st_gen;
500
501 /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
502 * because the inode structure does not have fields for them.
503 */
504}
505
506static int
507v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry,
508 const char *symname)
509{
510 struct v9fs_session_info *v9ses;
511 struct p9_fid *dfid;
512 struct p9_fid *fid = NULL;
513 struct inode *inode;
514 struct p9_qid qid;
515 char *name;
516 int err;
517 gid_t gid;
518
519 name = (char *) dentry->d_name.name;
520 P9_DPRINTK(P9_DEBUG_VFS, "v9fs_vfs_symlink_dotl : %lu,%s,%s\n",
521 dir->i_ino, name, symname);
522 v9ses = v9fs_inode2v9ses(dir);
523
524 dfid = v9fs_fid_lookup(dentry->d_parent);
525 if (IS_ERR(dfid)) {
526 err = PTR_ERR(dfid);
527 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
528 return err;
529 }
530
531 gid = v9fs_get_fsgid_for_create(dir);
532
533 /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
534 err = p9_client_symlink(dfid, name, (char *)symname, gid, &qid);
535
536 if (err < 0) {
537 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
538 goto error;
539 }
540
541 if (v9ses->cache) {
542 /* Now walk from the parent so we can get an unopened fid. */
543 fid = p9_client_walk(dfid, 1, &name, 1);
544 if (IS_ERR(fid)) {
545 err = PTR_ERR(fid);
546 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
547 err);
548 fid = NULL;
549 goto error;
550 }
551
552 /* instantiate inode and assign the unopened fid to dentry */
553 inode = v9fs_inode_from_fid(v9ses, fid, dir->i_sb);
554 if (IS_ERR(inode)) {
555 err = PTR_ERR(inode);
556 P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n",
557 err);
558 goto error;
559 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600560 d_instantiate(dentry, inode);
561 err = v9fs_fid_add(dentry, fid);
562 if (err < 0)
563 goto error;
564 fid = NULL;
565 } else {
566 /* Not in cached mode. No need to populate inode with stat */
567 inode = v9fs_get_inode(dir->i_sb, S_IFLNK);
568 if (IS_ERR(inode)) {
569 err = PTR_ERR(inode);
570 goto error;
571 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600572 d_instantiate(dentry, inode);
573 }
574
575error:
576 if (fid)
577 p9_client_clunk(fid);
578
579 return err;
580}
581
582/**
583 * v9fs_vfs_link_dotl - create a hardlink for dotl
584 * @old_dentry: dentry for file to link to
585 * @dir: inode destination for new link
586 * @dentry: dentry for link
587 *
588 */
589
590static int
591v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
592 struct dentry *dentry)
593{
594 int err;
595 struct p9_fid *dfid, *oldfid;
596 char *name;
597 struct v9fs_session_info *v9ses;
598 struct dentry *dir_dentry;
599
600 P9_DPRINTK(P9_DEBUG_VFS, "dir ino: %lu, old_name: %s, new_name: %s\n",
601 dir->i_ino, old_dentry->d_name.name,
602 dentry->d_name.name);
603
604 v9ses = v9fs_inode2v9ses(dir);
605 dir_dentry = v9fs_dentry_from_dir_inode(dir);
606 dfid = v9fs_fid_lookup(dir_dentry);
607 if (IS_ERR(dfid))
608 return PTR_ERR(dfid);
609
610 oldfid = v9fs_fid_lookup(old_dentry);
611 if (IS_ERR(oldfid))
612 return PTR_ERR(oldfid);
613
614 name = (char *) dentry->d_name.name;
615
616 err = p9_client_link(dfid, oldfid, (char *)dentry->d_name.name);
617
618 if (err < 0) {
619 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
620 return err;
621 }
622
623 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
624 /* Get the latest stat info from server. */
625 struct p9_fid *fid;
626 struct p9_stat_dotl *st;
627
628 fid = v9fs_fid_lookup(old_dentry);
629 if (IS_ERR(fid))
630 return PTR_ERR(fid);
631
632 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC);
633 if (IS_ERR(st))
634 return PTR_ERR(st);
635
636 v9fs_stat2inode_dotl(st, old_dentry->d_inode);
637
638 kfree(st);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600639 }
Aneesh Kumar K.V20656a42011-02-28 17:03:55 +0530640 ihold(old_dentry->d_inode);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600641 d_instantiate(dentry, old_dentry->d_inode);
642
643 return err;
644}
645
646/**
647 * v9fs_vfs_mknod_dotl - create a special file
648 * @dir: inode destination for new link
649 * @dentry: dentry for file
650 * @mode: mode for creation
651 * @rdev: device associated with special file
652 *
653 */
654static int
655v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, int omode,
656 dev_t rdev)
657{
658 int err;
659 char *name;
660 mode_t mode;
661 struct v9fs_session_info *v9ses;
662 struct p9_fid *fid = NULL, *dfid = NULL;
663 struct inode *inode;
664 gid_t gid;
665 struct p9_qid qid;
666 struct dentry *dir_dentry;
667 struct posix_acl *dacl = NULL, *pacl = NULL;
668
669 P9_DPRINTK(P9_DEBUG_VFS,
670 " %lu,%s mode: %x MAJOR: %u MINOR: %u\n", dir->i_ino,
671 dentry->d_name.name, omode, MAJOR(rdev), MINOR(rdev));
672
673 if (!new_valid_dev(rdev))
674 return -EINVAL;
675
676 v9ses = v9fs_inode2v9ses(dir);
677 dir_dentry = v9fs_dentry_from_dir_inode(dir);
678 dfid = v9fs_fid_lookup(dir_dentry);
679 if (IS_ERR(dfid)) {
680 err = PTR_ERR(dfid);
681 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
682 dfid = NULL;
683 goto error;
684 }
685
686 gid = v9fs_get_fsgid_for_create(dir);
687 mode = omode;
688 /* Update mode based on ACL value */
689 err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
690 if (err) {
691 P9_DPRINTK(P9_DEBUG_VFS,
692 "Failed to get acl values in mknod %d\n", err);
693 goto error;
694 }
695 name = (char *) dentry->d_name.name;
696
697 err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
698 if (err < 0)
699 goto error;
700
701 /* instantiate inode and assign the unopened fid to the dentry */
702 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
703 fid = p9_client_walk(dfid, 1, &name, 1);
704 if (IS_ERR(fid)) {
705 err = PTR_ERR(fid);
706 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
707 err);
708 fid = NULL;
709 goto error;
710 }
711
712 inode = v9fs_inode_from_fid(v9ses, fid, dir->i_sb);
713 if (IS_ERR(inode)) {
714 err = PTR_ERR(inode);
715 P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n",
716 err);
717 goto error;
718 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600719 d_instantiate(dentry, inode);
720 err = v9fs_fid_add(dentry, fid);
721 if (err < 0)
722 goto error;
723 fid = NULL;
724 } else {
725 /*
726 * Not in cached mode. No need to populate inode with stat.
727 * socket syscall returns a fd, so we need instantiate
728 */
729 inode = v9fs_get_inode(dir->i_sb, mode);
730 if (IS_ERR(inode)) {
731 err = PTR_ERR(inode);
732 goto error;
733 }
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600734 d_instantiate(dentry, inode);
735 }
736 /* Now set the ACL based on the default value */
737 v9fs_set_create_acl(dentry, dacl, pacl);
738error:
739 if (fid)
740 p9_client_clunk(fid);
741 return err;
742}
743
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600744/**
745 * v9fs_vfs_follow_link_dotl - follow a symlink path
746 * @dentry: dentry for symlink
747 * @nd: nameidata
748 *
749 */
750
751static void *
752v9fs_vfs_follow_link_dotl(struct dentry *dentry, struct nameidata *nd)
753{
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530754 int retval;
755 struct p9_fid *fid;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600756 char *link = __getname();
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530757 char *target;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600758
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530759 P9_DPRINTK(P9_DEBUG_VFS, "%s\n", dentry->d_name.name);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600760
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530761 if (!link) {
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600762 link = ERR_PTR(-ENOMEM);
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530763 goto ndset;
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600764 }
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530765 fid = v9fs_fid_lookup(dentry);
766 if (IS_ERR(fid)) {
767 __putname(link);
768 link = ERR_PTR(PTR_ERR(fid));
769 goto ndset;
770 }
771 retval = p9_client_readlink(fid, &target);
772 if (!retval) {
773 strcpy(link, target);
774 kfree(target);
775 goto ndset;
776 }
777 __putname(link);
778 link = ERR_PTR(retval);
779ndset:
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600780 nd_set_link(nd, link);
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600781 return NULL;
782}
783
784const struct inode_operations v9fs_dir_inode_operations_dotl = {
785 .create = v9fs_vfs_create_dotl,
786 .lookup = v9fs_vfs_lookup,
787 .link = v9fs_vfs_link_dotl,
788 .symlink = v9fs_vfs_symlink_dotl,
789 .unlink = v9fs_vfs_unlink,
790 .mkdir = v9fs_vfs_mkdir_dotl,
791 .rmdir = v9fs_vfs_rmdir,
792 .mknod = v9fs_vfs_mknod_dotl,
793 .rename = v9fs_vfs_rename,
794 .getattr = v9fs_vfs_getattr_dotl,
795 .setattr = v9fs_vfs_setattr_dotl,
796 .setxattr = generic_setxattr,
797 .getxattr = generic_getxattr,
798 .removexattr = generic_removexattr,
799 .listxattr = v9fs_listxattr,
800 .check_acl = v9fs_check_acl,
801};
802
803const struct inode_operations v9fs_file_inode_operations_dotl = {
804 .getattr = v9fs_vfs_getattr_dotl,
805 .setattr = v9fs_vfs_setattr_dotl,
806 .setxattr = generic_setxattr,
807 .getxattr = generic_getxattr,
808 .removexattr = generic_removexattr,
809 .listxattr = v9fs_listxattr,
810 .check_acl = v9fs_check_acl,
811};
812
813const struct inode_operations v9fs_symlink_inode_operations_dotl = {
M. Mohan Kumar31b6cea2011-01-08 07:28:46 +0530814 .readlink = generic_readlink,
Aneesh Kumar K.V53c06f42011-01-10 13:51:47 -0600815 .follow_link = v9fs_vfs_follow_link_dotl,
816 .put_link = v9fs_vfs_put_link,
817 .getattr = v9fs_vfs_getattr_dotl,
818 .setattr = v9fs_vfs_setattr_dotl,
819 .setxattr = generic_setxattr,
820 .getxattr = generic_getxattr,
821 .removexattr = generic_removexattr,
822 .listxattr = v9fs_listxattr,
823};