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