KVM: x86: correctly print #AC in traces
[pandora-kernel.git] / fs / 9p / vfs_inode_dotl.c
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
50 static int
51 v9fs_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
60 static 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
77 static 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_u.d_alias);
85         spin_unlock(&inode->i_lock);
86         return dentry;
87 }
88
89 static int v9fs_test_inode_dotl(struct inode *inode, void *data)
90 {
91         struct v9fs_inode *v9inode = V9FS_I(inode);
92         struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
93
94         /* don't match inode of different type */
95         if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT))
96                 return 0;
97
98         if (inode->i_generation != st->st_gen)
99                 return 0;
100
101         /* compare qid details */
102         if (memcmp(&v9inode->qid.version,
103                    &st->qid.version, sizeof(v9inode->qid.version)))
104                 return 0;
105
106         if (v9inode->qid.type != st->qid.type)
107                 return 0;
108         return 1;
109 }
110
111 /* Always get a new inode */
112 static int v9fs_test_new_inode_dotl(struct inode *inode, void *data)
113 {
114         return 0;
115 }
116
117 static int v9fs_set_inode_dotl(struct inode *inode,  void *data)
118 {
119         struct v9fs_inode *v9inode = V9FS_I(inode);
120         struct p9_stat_dotl *st = (struct p9_stat_dotl *)data;
121
122         memcpy(&v9inode->qid, &st->qid, sizeof(st->qid));
123         inode->i_generation = st->st_gen;
124         return 0;
125 }
126
127 static struct inode *v9fs_qid_iget_dotl(struct super_block *sb,
128                                         struct p9_qid *qid,
129                                         struct p9_fid *fid,
130                                         struct p9_stat_dotl *st,
131                                         int new)
132 {
133         int retval;
134         unsigned long i_ino;
135         struct inode *inode;
136         struct v9fs_session_info *v9ses = sb->s_fs_info;
137         int (*test)(struct inode *, void *);
138
139         if (new)
140                 test = v9fs_test_new_inode_dotl;
141         else
142                 test = v9fs_test_inode_dotl;
143
144         i_ino = v9fs_qid2ino(qid);
145         inode = iget5_locked(sb, i_ino, test, v9fs_set_inode_dotl, st);
146         if (!inode)
147                 return ERR_PTR(-ENOMEM);
148         if (!(inode->i_state & I_NEW))
149                 return inode;
150         /*
151          * initialize the inode with the stat info
152          * FIXME!! we may need support for stale inodes
153          * later.
154          */
155         inode->i_ino = i_ino;
156         retval = v9fs_init_inode(v9ses, inode,
157                                  st->st_mode, new_decode_dev(st->st_rdev));
158         if (retval)
159                 goto error;
160
161         v9fs_stat2inode_dotl(st, inode);
162 #ifdef CONFIG_9P_FSCACHE
163         v9fs_cache_inode_get_cookie(inode);
164 #endif
165         retval = v9fs_get_acl(inode, fid);
166         if (retval)
167                 goto error;
168
169         unlock_new_inode(inode);
170         return inode;
171 error:
172         iget_failed(inode);
173         return ERR_PTR(retval);
174
175 }
176
177 struct inode *
178 v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid,
179                          struct super_block *sb, int new)
180 {
181         struct p9_stat_dotl *st;
182         struct inode *inode = NULL;
183
184         st = p9_client_getattr_dotl(fid, P9_STATS_BASIC | P9_STATS_GEN);
185         if (IS_ERR(st))
186                 return ERR_CAST(st);
187
188         inode = v9fs_qid_iget_dotl(sb, &st->qid, fid, st, new);
189         kfree(st);
190         return inode;
191 }
192
193 struct dotl_openflag_map {
194         int open_flag;
195         int dotl_flag;
196 };
197
198 static int v9fs_mapped_dotl_flags(int flags)
199 {
200         int i;
201         int rflags = 0;
202         struct dotl_openflag_map dotl_oflag_map[] = {
203                 { O_CREAT,      P9_DOTL_CREATE },
204                 { O_EXCL,       P9_DOTL_EXCL },
205                 { O_NOCTTY,     P9_DOTL_NOCTTY },
206                 { O_TRUNC,      P9_DOTL_TRUNC },
207                 { O_APPEND,     P9_DOTL_APPEND },
208                 { O_NONBLOCK,   P9_DOTL_NONBLOCK },
209                 { O_DSYNC,      P9_DOTL_DSYNC },
210                 { FASYNC,       P9_DOTL_FASYNC },
211                 { O_DIRECT,     P9_DOTL_DIRECT },
212                 { O_LARGEFILE,  P9_DOTL_LARGEFILE },
213                 { O_DIRECTORY,  P9_DOTL_DIRECTORY },
214                 { O_NOFOLLOW,   P9_DOTL_NOFOLLOW },
215                 { O_NOATIME,    P9_DOTL_NOATIME },
216                 { O_CLOEXEC,    P9_DOTL_CLOEXEC },
217                 { O_SYNC,       P9_DOTL_SYNC},
218         };
219         for (i = 0; i < ARRAY_SIZE(dotl_oflag_map); i++) {
220                 if (flags & dotl_oflag_map[i].open_flag)
221                         rflags |= dotl_oflag_map[i].dotl_flag;
222         }
223         return rflags;
224 }
225
226 /**
227  * v9fs_open_to_dotl_flags- convert Linux specific open flags to
228  * plan 9 open flag.
229  * @flags: flags to convert
230  */
231 int v9fs_open_to_dotl_flags(int flags)
232 {
233         int rflags = 0;
234
235         /*
236          * We have same bits for P9_DOTL_READONLY, P9_DOTL_WRONLY
237          * and P9_DOTL_NOACCESS
238          */
239         rflags |= flags & O_ACCMODE;
240         rflags |= v9fs_mapped_dotl_flags(flags);
241
242         return rflags;
243 }
244
245 /**
246  * v9fs_vfs_create_dotl - VFS hook to create files for 9P2000.L protocol.
247  * @dir: directory inode that is being created
248  * @dentry:  dentry that is being deleted
249  * @mode: create permissions
250  * @nd: path information
251  *
252  */
253
254 static int
255 v9fs_vfs_create_dotl(struct inode *dir, struct dentry *dentry, int omode,
256                 struct nameidata *nd)
257 {
258         int err = 0;
259         gid_t gid;
260         int flags;
261         umode_t mode;
262         char *name = NULL;
263         struct file *filp;
264         struct p9_qid qid;
265         struct inode *inode;
266         struct p9_fid *fid = NULL;
267         struct v9fs_inode *v9inode;
268         struct p9_fid *dfid, *ofid, *inode_fid;
269         struct v9fs_session_info *v9ses;
270         struct posix_acl *pacl = NULL, *dacl = NULL;
271
272         v9ses = v9fs_inode2v9ses(dir);
273         if (nd)
274                 flags = nd->intent.open.flags;
275         else {
276                 /*
277                  * create call without LOOKUP_OPEN is due
278                  * to mknod of regular files. So use mknod
279                  * operation.
280                  */
281                 return v9fs_vfs_mknod_dotl(dir, dentry, omode, 0);
282         }
283
284         name = (char *) dentry->d_name.name;
285         P9_DPRINTK(P9_DEBUG_VFS, "v9fs_vfs_create_dotl: name:%s flags:0x%x "
286                         "mode:0x%x\n", name, flags, omode);
287
288         dfid = v9fs_fid_lookup(dentry->d_parent);
289         if (IS_ERR(dfid)) {
290                 err = PTR_ERR(dfid);
291                 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
292                 return err;
293         }
294
295         /* clone a fid to use for creation */
296         ofid = p9_client_walk(dfid, 0, NULL, 1);
297         if (IS_ERR(ofid)) {
298                 err = PTR_ERR(ofid);
299                 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
300                 return err;
301         }
302
303         gid = v9fs_get_fsgid_for_create(dir);
304
305         mode = omode;
306         /* Update mode based on ACL value */
307         err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
308         if (err) {
309                 P9_DPRINTK(P9_DEBUG_VFS,
310                            "Failed to get acl values in creat %d\n", err);
311                 goto error;
312         }
313         err = p9_client_create_dotl(ofid, name, v9fs_open_to_dotl_flags(flags),
314                                     mode, gid, &qid);
315         if (err < 0) {
316                 P9_DPRINTK(P9_DEBUG_VFS,
317                                 "p9_client_open_dotl failed in creat %d\n",
318                                 err);
319                 goto error;
320         }
321         v9fs_invalidate_inode_attr(dir);
322
323         /* instantiate inode and assign the unopened fid to the dentry */
324         fid = p9_client_walk(dfid, 1, &name, 1);
325         if (IS_ERR(fid)) {
326                 err = PTR_ERR(fid);
327                 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
328                 fid = NULL;
329                 goto error;
330         }
331         inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
332         if (IS_ERR(inode)) {
333                 err = PTR_ERR(inode);
334                 P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n", err);
335                 goto error;
336         }
337         err = v9fs_fid_add(dentry, fid);
338         if (err < 0)
339                 goto error;
340         d_instantiate(dentry, inode);
341
342         /* Now set the ACL based on the default value */
343         v9fs_set_create_acl(dentry, &dacl, &pacl);
344
345         v9inode = V9FS_I(inode);
346         mutex_lock(&v9inode->v_mutex);
347         if (v9ses->cache && !v9inode->writeback_fid &&
348             ((flags & O_ACCMODE) != O_RDONLY)) {
349                 /*
350                  * clone a fid and add it to writeback_fid
351                  * we do it during open time instead of
352                  * page dirty time via write_begin/page_mkwrite
353                  * because we want write after unlink usecase
354                  * to work.
355                  */
356                 inode_fid = v9fs_writeback_fid(dentry);
357                 if (IS_ERR(inode_fid)) {
358                         err = PTR_ERR(inode_fid);
359                         mutex_unlock(&v9inode->v_mutex);
360                         goto err_clunk_old_fid;
361                 }
362                 v9inode->writeback_fid = (void *) inode_fid;
363         }
364         mutex_unlock(&v9inode->v_mutex);
365         /* Since we are opening a file, assign the open fid to the file */
366         filp = lookup_instantiate_filp(nd, dentry, generic_file_open);
367         if (IS_ERR(filp)) {
368                 err = PTR_ERR(filp);
369                 goto err_clunk_old_fid;
370         }
371         filp->private_data = ofid;
372 #ifdef CONFIG_9P_FSCACHE
373         if (v9ses->cache)
374                 v9fs_cache_inode_set_cookie(inode, filp);
375 #endif
376         return 0;
377
378 error:
379         if (fid)
380                 p9_client_clunk(fid);
381 err_clunk_old_fid:
382         if (ofid)
383                 p9_client_clunk(ofid);
384         v9fs_set_create_acl(NULL, &dacl, &pacl);
385         return err;
386 }
387
388 /**
389  * v9fs_vfs_mkdir_dotl - VFS mkdir hook to create a directory
390  * @dir:  inode that is being unlinked
391  * @dentry: dentry that is being unlinked
392  * @mode: mode for new directory
393  *
394  */
395
396 static int v9fs_vfs_mkdir_dotl(struct inode *dir,
397                                struct dentry *dentry, int omode)
398 {
399         int err;
400         struct v9fs_session_info *v9ses;
401         struct p9_fid *fid = NULL, *dfid = NULL;
402         gid_t gid;
403         char *name;
404         umode_t mode;
405         struct inode *inode;
406         struct p9_qid qid;
407         struct dentry *dir_dentry;
408         struct posix_acl *dacl = NULL, *pacl = NULL;
409
410         P9_DPRINTK(P9_DEBUG_VFS, "name %s\n", dentry->d_name.name);
411         err = 0;
412         v9ses = v9fs_inode2v9ses(dir);
413
414         omode |= S_IFDIR;
415         if (dir->i_mode & S_ISGID)
416                 omode |= S_ISGID;
417
418         dir_dentry = v9fs_dentry_from_dir_inode(dir);
419         dfid = v9fs_fid_lookup(dir_dentry);
420         if (IS_ERR(dfid)) {
421                 err = PTR_ERR(dfid);
422                 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
423                 dfid = NULL;
424                 goto error;
425         }
426
427         gid = v9fs_get_fsgid_for_create(dir);
428         mode = omode;
429         /* Update mode based on ACL value */
430         err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
431         if (err) {
432                 P9_DPRINTK(P9_DEBUG_VFS,
433                            "Failed to get acl values in mkdir %d\n", err);
434                 goto error;
435         }
436         name = (char *) dentry->d_name.name;
437         err = p9_client_mkdir_dotl(dfid, name, mode, gid, &qid);
438         if (err < 0)
439                 goto error;
440
441         /* instantiate inode and assign the unopened fid to the dentry */
442         if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
443                 fid = p9_client_walk(dfid, 1, &name, 1);
444                 if (IS_ERR(fid)) {
445                         err = PTR_ERR(fid);
446                         P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
447                                 err);
448                         fid = NULL;
449                         goto error;
450                 }
451
452                 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
453                 if (IS_ERR(inode)) {
454                         err = PTR_ERR(inode);
455                         P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n",
456                                 err);
457                         goto error;
458                 }
459                 err = v9fs_fid_add(dentry, fid);
460                 if (err < 0)
461                         goto error;
462                 d_instantiate(dentry, inode);
463                 fid = NULL;
464         } else {
465                 /*
466                  * Not in cached mode. No need to populate
467                  * inode with stat. We need to get an inode
468                  * so that we can set the acl with dentry
469                  */
470                 inode = v9fs_get_inode(dir->i_sb, mode, 0);
471                 if (IS_ERR(inode)) {
472                         err = PTR_ERR(inode);
473                         goto error;
474                 }
475                 d_instantiate(dentry, inode);
476         }
477         /* Now set the ACL based on the default value */
478         v9fs_set_create_acl(dentry, &dacl, &pacl);
479         inc_nlink(dir);
480         v9fs_invalidate_inode_attr(dir);
481 error:
482         if (fid)
483                 p9_client_clunk(fid);
484         v9fs_set_create_acl(NULL, &dacl, &pacl);
485         return err;
486 }
487
488 static int
489 v9fs_vfs_getattr_dotl(struct vfsmount *mnt, struct dentry *dentry,
490                  struct kstat *stat)
491 {
492         int err;
493         struct v9fs_session_info *v9ses;
494         struct p9_fid *fid;
495         struct p9_stat_dotl *st;
496
497         P9_DPRINTK(P9_DEBUG_VFS, "dentry: %p\n", dentry);
498         err = -EPERM;
499         v9ses = v9fs_dentry2v9ses(dentry);
500         if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
501                 generic_fillattr(dentry->d_inode, stat);
502                 return 0;
503         }
504         fid = v9fs_fid_lookup(dentry);
505         if (IS_ERR(fid))
506                 return PTR_ERR(fid);
507
508         /* Ask for all the fields in stat structure. Server will return
509          * whatever it supports
510          */
511
512         st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
513         if (IS_ERR(st))
514                 return PTR_ERR(st);
515
516         v9fs_stat2inode_dotl(st, dentry->d_inode);
517         generic_fillattr(dentry->d_inode, stat);
518         /* Change block size to what the server returned */
519         stat->blksize = st->st_blksize;
520
521         kfree(st);
522         return 0;
523 }
524
525 /**
526  * v9fs_vfs_setattr_dotl - set file metadata
527  * @dentry: file whose metadata to set
528  * @iattr: metadata assignment structure
529  *
530  */
531
532 int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
533 {
534         int retval;
535         struct v9fs_session_info *v9ses;
536         struct p9_fid *fid;
537         struct p9_iattr_dotl p9attr;
538
539         P9_DPRINTK(P9_DEBUG_VFS, "\n");
540
541         retval = inode_change_ok(dentry->d_inode, iattr);
542         if (retval)
543                 return retval;
544
545         p9attr.valid = iattr->ia_valid;
546         p9attr.mode = iattr->ia_mode;
547         p9attr.uid = iattr->ia_uid;
548         p9attr.gid = iattr->ia_gid;
549         p9attr.size = iattr->ia_size;
550         p9attr.atime_sec = iattr->ia_atime.tv_sec;
551         p9attr.atime_nsec = iattr->ia_atime.tv_nsec;
552         p9attr.mtime_sec = iattr->ia_mtime.tv_sec;
553         p9attr.mtime_nsec = iattr->ia_mtime.tv_nsec;
554
555         retval = -EPERM;
556         v9ses = v9fs_dentry2v9ses(dentry);
557         fid = v9fs_fid_lookup(dentry);
558         if (IS_ERR(fid))
559                 return PTR_ERR(fid);
560
561         /* Write all dirty data */
562         if (S_ISREG(dentry->d_inode->i_mode))
563                 filemap_write_and_wait(dentry->d_inode->i_mapping);
564
565         retval = p9_client_setattr(fid, &p9attr);
566         if (retval < 0)
567                 return retval;
568
569         if ((iattr->ia_valid & ATTR_SIZE) &&
570             iattr->ia_size != i_size_read(dentry->d_inode))
571                 truncate_setsize(dentry->d_inode, iattr->ia_size);
572
573         v9fs_invalidate_inode_attr(dentry->d_inode);
574         setattr_copy(dentry->d_inode, iattr);
575         mark_inode_dirty(dentry->d_inode);
576         if (iattr->ia_valid & ATTR_MODE) {
577                 /* We also want to update ACL when we update mode bits */
578                 retval = v9fs_acl_chmod(dentry);
579                 if (retval < 0)
580                         return retval;
581         }
582         return 0;
583 }
584
585 /**
586  * v9fs_stat2inode_dotl - populate an inode structure with stat info
587  * @stat: stat structure
588  * @inode: inode to populate
589  * @sb: superblock of filesystem
590  *
591  */
592
593 void
594 v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode)
595 {
596         mode_t mode;
597         struct v9fs_inode *v9inode = V9FS_I(inode);
598
599         if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
600                 inode->i_atime.tv_sec = stat->st_atime_sec;
601                 inode->i_atime.tv_nsec = stat->st_atime_nsec;
602                 inode->i_mtime.tv_sec = stat->st_mtime_sec;
603                 inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
604                 inode->i_ctime.tv_sec = stat->st_ctime_sec;
605                 inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
606                 inode->i_uid = stat->st_uid;
607                 inode->i_gid = stat->st_gid;
608                 set_nlink(inode, stat->st_nlink);
609
610                 mode = stat->st_mode & S_IALLUGO;
611                 mode |= inode->i_mode & ~S_IALLUGO;
612                 inode->i_mode = mode;
613
614                 i_size_write(inode, stat->st_size);
615                 inode->i_blocks = stat->st_blocks;
616         } else {
617                 if (stat->st_result_mask & P9_STATS_ATIME) {
618                         inode->i_atime.tv_sec = stat->st_atime_sec;
619                         inode->i_atime.tv_nsec = stat->st_atime_nsec;
620                 }
621                 if (stat->st_result_mask & P9_STATS_MTIME) {
622                         inode->i_mtime.tv_sec = stat->st_mtime_sec;
623                         inode->i_mtime.tv_nsec = stat->st_mtime_nsec;
624                 }
625                 if (stat->st_result_mask & P9_STATS_CTIME) {
626                         inode->i_ctime.tv_sec = stat->st_ctime_sec;
627                         inode->i_ctime.tv_nsec = stat->st_ctime_nsec;
628                 }
629                 if (stat->st_result_mask & P9_STATS_UID)
630                         inode->i_uid = stat->st_uid;
631                 if (stat->st_result_mask & P9_STATS_GID)
632                         inode->i_gid = stat->st_gid;
633                 if (stat->st_result_mask & P9_STATS_NLINK)
634                         set_nlink(inode, stat->st_nlink);
635                 if (stat->st_result_mask & P9_STATS_MODE) {
636                         inode->i_mode = stat->st_mode;
637                         if ((S_ISBLK(inode->i_mode)) ||
638                                                 (S_ISCHR(inode->i_mode)))
639                                 init_special_inode(inode, inode->i_mode,
640                                                                 inode->i_rdev);
641                 }
642                 if (stat->st_result_mask & P9_STATS_RDEV)
643                         inode->i_rdev = new_decode_dev(stat->st_rdev);
644                 if (stat->st_result_mask & P9_STATS_SIZE)
645                         i_size_write(inode, stat->st_size);
646                 if (stat->st_result_mask & P9_STATS_BLOCKS)
647                         inode->i_blocks = stat->st_blocks;
648         }
649         if (stat->st_result_mask & P9_STATS_GEN)
650                 inode->i_generation = stat->st_gen;
651
652         /* Currently we don't support P9_STATS_BTIME and P9_STATS_DATA_VERSION
653          * because the inode structure does not have fields for them.
654          */
655         v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
656 }
657
658 static int
659 v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry,
660                 const char *symname)
661 {
662         int err;
663         gid_t gid;
664         char *name;
665         struct p9_qid qid;
666         struct inode *inode;
667         struct p9_fid *dfid;
668         struct p9_fid *fid = NULL;
669         struct v9fs_session_info *v9ses;
670
671         name = (char *) dentry->d_name.name;
672         P9_DPRINTK(P9_DEBUG_VFS, "v9fs_vfs_symlink_dotl : %lu,%s,%s\n",
673                         dir->i_ino, name, symname);
674         v9ses = v9fs_inode2v9ses(dir);
675
676         dfid = v9fs_fid_lookup(dentry->d_parent);
677         if (IS_ERR(dfid)) {
678                 err = PTR_ERR(dfid);
679                 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
680                 return err;
681         }
682
683         gid = v9fs_get_fsgid_for_create(dir);
684
685         /* Server doesn't alter fid on TSYMLINK. Hence no need to clone it. */
686         err = p9_client_symlink(dfid, name, (char *)symname, gid, &qid);
687
688         if (err < 0) {
689                 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_symlink failed %d\n", err);
690                 goto error;
691         }
692
693         v9fs_invalidate_inode_attr(dir);
694         if (v9ses->cache) {
695                 /* Now walk from the parent so we can get an unopened fid. */
696                 fid = p9_client_walk(dfid, 1, &name, 1);
697                 if (IS_ERR(fid)) {
698                         err = PTR_ERR(fid);
699                         P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
700                                         err);
701                         fid = NULL;
702                         goto error;
703                 }
704
705                 /* instantiate inode and assign the unopened fid to dentry */
706                 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
707                 if (IS_ERR(inode)) {
708                         err = PTR_ERR(inode);
709                         P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n",
710                                         err);
711                         goto error;
712                 }
713                 err = v9fs_fid_add(dentry, fid);
714                 if (err < 0)
715                         goto error;
716                 d_instantiate(dentry, inode);
717                 fid = NULL;
718         } else {
719                 /* Not in cached mode. No need to populate inode with stat */
720                 inode = v9fs_get_inode(dir->i_sb, S_IFLNK, 0);
721                 if (IS_ERR(inode)) {
722                         err = PTR_ERR(inode);
723                         goto error;
724                 }
725                 d_instantiate(dentry, inode);
726         }
727
728 error:
729         if (fid)
730                 p9_client_clunk(fid);
731
732         return err;
733 }
734
735 /**
736  * v9fs_vfs_link_dotl - create a hardlink for dotl
737  * @old_dentry: dentry for file to link to
738  * @dir: inode destination for new link
739  * @dentry: dentry for link
740  *
741  */
742
743 static int
744 v9fs_vfs_link_dotl(struct dentry *old_dentry, struct inode *dir,
745                 struct dentry *dentry)
746 {
747         int err;
748         char *name;
749         struct dentry *dir_dentry;
750         struct p9_fid *dfid, *oldfid;
751         struct v9fs_session_info *v9ses;
752
753         P9_DPRINTK(P9_DEBUG_VFS, "dir ino: %lu, old_name: %s, new_name: %s\n",
754                         dir->i_ino, old_dentry->d_name.name,
755                         dentry->d_name.name);
756
757         v9ses = v9fs_inode2v9ses(dir);
758         dir_dentry = v9fs_dentry_from_dir_inode(dir);
759         dfid = v9fs_fid_lookup(dir_dentry);
760         if (IS_ERR(dfid))
761                 return PTR_ERR(dfid);
762
763         oldfid = v9fs_fid_lookup(old_dentry);
764         if (IS_ERR(oldfid))
765                 return PTR_ERR(oldfid);
766
767         name = (char *) dentry->d_name.name;
768
769         err = p9_client_link(dfid, oldfid, (char *)dentry->d_name.name);
770
771         if (err < 0) {
772                 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_link failed %d\n", err);
773                 return err;
774         }
775
776         v9fs_invalidate_inode_attr(dir);
777         if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
778                 /* Get the latest stat info from server. */
779                 struct p9_fid *fid;
780                 fid = v9fs_fid_lookup(old_dentry);
781                 if (IS_ERR(fid))
782                         return PTR_ERR(fid);
783
784                 v9fs_refresh_inode_dotl(fid, old_dentry->d_inode);
785         }
786         ihold(old_dentry->d_inode);
787         d_instantiate(dentry, old_dentry->d_inode);
788
789         return err;
790 }
791
792 /**
793  * v9fs_vfs_mknod_dotl - create a special file
794  * @dir: inode destination for new link
795  * @dentry: dentry for file
796  * @mode: mode for creation
797  * @rdev: device associated with special file
798  *
799  */
800 static int
801 v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, int omode,
802                 dev_t rdev)
803 {
804         int err;
805         gid_t gid;
806         char *name;
807         umode_t mode;
808         struct v9fs_session_info *v9ses;
809         struct p9_fid *fid = NULL, *dfid = NULL;
810         struct inode *inode;
811         struct p9_qid qid;
812         struct dentry *dir_dentry;
813         struct posix_acl *dacl = NULL, *pacl = NULL;
814
815         P9_DPRINTK(P9_DEBUG_VFS,
816                 " %lu,%s mode: %x MAJOR: %u MINOR: %u\n", dir->i_ino,
817                 dentry->d_name.name, omode, MAJOR(rdev), MINOR(rdev));
818
819         if (!new_valid_dev(rdev))
820                 return -EINVAL;
821
822         v9ses = v9fs_inode2v9ses(dir);
823         dir_dentry = v9fs_dentry_from_dir_inode(dir);
824         dfid = v9fs_fid_lookup(dir_dentry);
825         if (IS_ERR(dfid)) {
826                 err = PTR_ERR(dfid);
827                 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
828                 dfid = NULL;
829                 goto error;
830         }
831
832         gid = v9fs_get_fsgid_for_create(dir);
833         mode = omode;
834         /* Update mode based on ACL value */
835         err = v9fs_acl_mode(dir, &mode, &dacl, &pacl);
836         if (err) {
837                 P9_DPRINTK(P9_DEBUG_VFS,
838                            "Failed to get acl values in mknod %d\n", err);
839                 goto error;
840         }
841         name = (char *) dentry->d_name.name;
842
843         err = p9_client_mknod_dotl(dfid, name, mode, rdev, gid, &qid);
844         if (err < 0)
845                 goto error;
846
847         v9fs_invalidate_inode_attr(dir);
848         /* instantiate inode and assign the unopened fid to the dentry */
849         if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
850                 fid = p9_client_walk(dfid, 1, &name, 1);
851                 if (IS_ERR(fid)) {
852                         err = PTR_ERR(fid);
853                         P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n",
854                                 err);
855                         fid = NULL;
856                         goto error;
857                 }
858
859                 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb);
860                 if (IS_ERR(inode)) {
861                         err = PTR_ERR(inode);
862                         P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n",
863                                 err);
864                         goto error;
865                 }
866                 err = v9fs_fid_add(dentry, fid);
867                 if (err < 0)
868                         goto error;
869                 d_instantiate(dentry, inode);
870                 fid = NULL;
871         } else {
872                 /*
873                  * Not in cached mode. No need to populate inode with stat.
874                  * socket syscall returns a fd, so we need instantiate
875                  */
876                 inode = v9fs_get_inode(dir->i_sb, mode, rdev);
877                 if (IS_ERR(inode)) {
878                         err = PTR_ERR(inode);
879                         goto error;
880                 }
881                 d_instantiate(dentry, inode);
882         }
883         /* Now set the ACL based on the default value */
884         v9fs_set_create_acl(dentry, &dacl, &pacl);
885 error:
886         if (fid)
887                 p9_client_clunk(fid);
888         v9fs_set_create_acl(NULL, &dacl, &pacl);
889         return err;
890 }
891
892 /**
893  * v9fs_vfs_follow_link_dotl - follow a symlink path
894  * @dentry: dentry for symlink
895  * @nd: nameidata
896  *
897  */
898
899 static void *
900 v9fs_vfs_follow_link_dotl(struct dentry *dentry, struct nameidata *nd)
901 {
902         int retval;
903         struct p9_fid *fid;
904         char *link = __getname();
905         char *target;
906
907         P9_DPRINTK(P9_DEBUG_VFS, "%s\n", dentry->d_name.name);
908
909         if (!link) {
910                 link = ERR_PTR(-ENOMEM);
911                 goto ndset;
912         }
913         fid = v9fs_fid_lookup(dentry);
914         if (IS_ERR(fid)) {
915                 __putname(link);
916                 link = ERR_CAST(fid);
917                 goto ndset;
918         }
919         retval = p9_client_readlink(fid, &target);
920         if (!retval) {
921                 strcpy(link, target);
922                 kfree(target);
923                 goto ndset;
924         }
925         __putname(link);
926         link = ERR_PTR(retval);
927 ndset:
928         nd_set_link(nd, link);
929         return NULL;
930 }
931
932 int v9fs_refresh_inode_dotl(struct p9_fid *fid, struct inode *inode)
933 {
934         loff_t i_size;
935         struct p9_stat_dotl *st;
936         struct v9fs_session_info *v9ses;
937
938         v9ses = v9fs_inode2v9ses(inode);
939         st = p9_client_getattr_dotl(fid, P9_STATS_ALL);
940         if (IS_ERR(st))
941                 return PTR_ERR(st);
942         /*
943          * Don't update inode if the file type is different
944          */
945         if ((inode->i_mode & S_IFMT) != (st->st_mode & S_IFMT))
946                 goto out;
947
948         spin_lock(&inode->i_lock);
949         /*
950          * We don't want to refresh inode->i_size,
951          * because we may have cached data
952          */
953         i_size = inode->i_size;
954         v9fs_stat2inode_dotl(st, inode);
955         if (v9ses->cache)
956                 inode->i_size = i_size;
957         spin_unlock(&inode->i_lock);
958 out:
959         kfree(st);
960         return 0;
961 }
962
963 const struct inode_operations v9fs_dir_inode_operations_dotl = {
964         .create = v9fs_vfs_create_dotl,
965         .lookup = v9fs_vfs_lookup,
966         .link = v9fs_vfs_link_dotl,
967         .symlink = v9fs_vfs_symlink_dotl,
968         .unlink = v9fs_vfs_unlink,
969         .mkdir = v9fs_vfs_mkdir_dotl,
970         .rmdir = v9fs_vfs_rmdir,
971         .mknod = v9fs_vfs_mknod_dotl,
972         .rename = v9fs_vfs_rename,
973         .getattr = v9fs_vfs_getattr_dotl,
974         .setattr = v9fs_vfs_setattr_dotl,
975         .setxattr = generic_setxattr,
976         .getxattr = generic_getxattr,
977         .removexattr = generic_removexattr,
978         .listxattr = v9fs_listxattr,
979         .get_acl = v9fs_iop_get_acl,
980 };
981
982 const struct inode_operations v9fs_file_inode_operations_dotl = {
983         .getattr = v9fs_vfs_getattr_dotl,
984         .setattr = v9fs_vfs_setattr_dotl,
985         .setxattr = generic_setxattr,
986         .getxattr = generic_getxattr,
987         .removexattr = generic_removexattr,
988         .listxattr = v9fs_listxattr,
989         .get_acl = v9fs_iop_get_acl,
990 };
991
992 const struct inode_operations v9fs_symlink_inode_operations_dotl = {
993         .readlink = generic_readlink,
994         .follow_link = v9fs_vfs_follow_link_dotl,
995         .put_link = v9fs_vfs_put_link,
996         .getattr = v9fs_vfs_getattr_dotl,
997         .setattr = v9fs_vfs_setattr_dotl,
998         .setxattr = generic_setxattr,
999         .getxattr = generic_getxattr,
1000         .removexattr = generic_removexattr,
1001         .listxattr = v9fs_listxattr,
1002 };