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