]> git.karo-electronics.de Git - mv-sheeva.git/blob - fs/9p/vfs_inode.c
fs/9p: When doing inode lookup compare qid details and inode mode bits.
[mv-sheeva.git] / fs / 9p / vfs_inode.c
1 /*
2  *  linux/fs/9p/vfs_inode.c
3  *
4  * This file contains vfs inode ops for the 9P2000 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 const struct inode_operations v9fs_dir_inode_operations;
51 static const struct inode_operations v9fs_dir_inode_operations_dotu;
52 static const struct inode_operations v9fs_file_inode_operations;
53 static const struct inode_operations v9fs_symlink_inode_operations;
54
55 /**
56  * unixmode2p9mode - convert unix mode bits to plan 9
57  * @v9ses: v9fs session information
58  * @mode: mode to convert
59  *
60  */
61
62 static int unixmode2p9mode(struct v9fs_session_info *v9ses, int mode)
63 {
64         int res;
65         res = mode & 0777;
66         if (S_ISDIR(mode))
67                 res |= P9_DMDIR;
68         if (v9fs_proto_dotu(v9ses)) {
69                 if (S_ISLNK(mode))
70                         res |= P9_DMSYMLINK;
71                 if (v9ses->nodev == 0) {
72                         if (S_ISSOCK(mode))
73                                 res |= P9_DMSOCKET;
74                         if (S_ISFIFO(mode))
75                                 res |= P9_DMNAMEDPIPE;
76                         if (S_ISBLK(mode))
77                                 res |= P9_DMDEVICE;
78                         if (S_ISCHR(mode))
79                                 res |= P9_DMDEVICE;
80                 }
81
82                 if ((mode & S_ISUID) == S_ISUID)
83                         res |= P9_DMSETUID;
84                 if ((mode & S_ISGID) == S_ISGID)
85                         res |= P9_DMSETGID;
86                 if ((mode & S_ISVTX) == S_ISVTX)
87                         res |= P9_DMSETVTX;
88                 if ((mode & P9_DMLINK))
89                         res |= P9_DMLINK;
90         }
91
92         return res;
93 }
94
95 /**
96  * p9mode2unixmode- convert plan9 mode bits to unix mode bits
97  * @v9ses: v9fs session information
98  * @mode: mode to convert
99  *
100  */
101
102 static int p9mode2unixmode(struct v9fs_session_info *v9ses, int mode)
103 {
104         int res;
105
106         res = mode & 0777;
107
108         if ((mode & P9_DMDIR) == P9_DMDIR)
109                 res |= S_IFDIR;
110         else if ((mode & P9_DMSYMLINK) && (v9fs_proto_dotu(v9ses)))
111                 res |= S_IFLNK;
112         else if ((mode & P9_DMSOCKET) && (v9fs_proto_dotu(v9ses))
113                  && (v9ses->nodev == 0))
114                 res |= S_IFSOCK;
115         else if ((mode & P9_DMNAMEDPIPE) && (v9fs_proto_dotu(v9ses))
116                  && (v9ses->nodev == 0))
117                 res |= S_IFIFO;
118         else if ((mode & P9_DMDEVICE) && (v9fs_proto_dotu(v9ses))
119                  && (v9ses->nodev == 0))
120                 res |= S_IFBLK;
121         else
122                 res |= S_IFREG;
123
124         if (v9fs_proto_dotu(v9ses)) {
125                 if ((mode & P9_DMSETUID) == P9_DMSETUID)
126                         res |= S_ISUID;
127
128                 if ((mode & P9_DMSETGID) == P9_DMSETGID)
129                         res |= S_ISGID;
130
131                 if ((mode & P9_DMSETVTX) == P9_DMSETVTX)
132                         res |= S_ISVTX;
133         }
134
135         return res;
136 }
137
138 /**
139  * v9fs_uflags2omode- convert posix open flags to plan 9 mode bits
140  * @uflags: flags to convert
141  * @extended: if .u extensions are active
142  */
143
144 int v9fs_uflags2omode(int uflags, int extended)
145 {
146         int ret;
147
148         ret = 0;
149         switch (uflags&3) {
150         default:
151         case O_RDONLY:
152                 ret = P9_OREAD;
153                 break;
154
155         case O_WRONLY:
156                 ret = P9_OWRITE;
157                 break;
158
159         case O_RDWR:
160                 ret = P9_ORDWR;
161                 break;
162         }
163
164         if (uflags & O_TRUNC)
165                 ret |= P9_OTRUNC;
166
167         if (extended) {
168                 if (uflags & O_EXCL)
169                         ret |= P9_OEXCL;
170
171                 if (uflags & O_APPEND)
172                         ret |= P9_OAPPEND;
173         }
174
175         return ret;
176 }
177
178 /**
179  * v9fs_blank_wstat - helper function to setup a 9P stat structure
180  * @wstat: structure to initialize
181  *
182  */
183
184 void
185 v9fs_blank_wstat(struct p9_wstat *wstat)
186 {
187         wstat->type = ~0;
188         wstat->dev = ~0;
189         wstat->qid.type = ~0;
190         wstat->qid.version = ~0;
191         *((long long *)&wstat->qid.path) = ~0;
192         wstat->mode = ~0;
193         wstat->atime = ~0;
194         wstat->mtime = ~0;
195         wstat->length = ~0;
196         wstat->name = NULL;
197         wstat->uid = NULL;
198         wstat->gid = NULL;
199         wstat->muid = NULL;
200         wstat->n_uid = ~0;
201         wstat->n_gid = ~0;
202         wstat->n_muid = ~0;
203         wstat->extension = NULL;
204 }
205
206 /**
207  * v9fs_alloc_inode - helper function to allocate an inode
208  *
209  */
210 struct inode *v9fs_alloc_inode(struct super_block *sb)
211 {
212         struct v9fs_inode *v9inode;
213         v9inode = (struct v9fs_inode *)kmem_cache_alloc(v9fs_inode_cache,
214                                                         GFP_KERNEL);
215         if (!v9inode)
216                 return NULL;
217 #ifdef CONFIG_9P_FSCACHE
218         v9inode->fscache = NULL;
219         spin_lock_init(&v9inode->fscache_lock);
220 #endif
221         v9inode->writeback_fid = NULL;
222         v9inode->cache_validity = 0;
223         mutex_init(&v9inode->v_mutex);
224         return &v9inode->vfs_inode;
225 }
226
227 /**
228  * v9fs_destroy_inode - destroy an inode
229  *
230  */
231
232 static void v9fs_i_callback(struct rcu_head *head)
233 {
234         struct inode *inode = container_of(head, struct inode, i_rcu);
235         INIT_LIST_HEAD(&inode->i_dentry);
236         kmem_cache_free(v9fs_inode_cache, V9FS_I(inode));
237 }
238
239 void v9fs_destroy_inode(struct inode *inode)
240 {
241         call_rcu(&inode->i_rcu, v9fs_i_callback);
242 }
243
244 int v9fs_init_inode(struct v9fs_session_info *v9ses,
245                     struct inode *inode, int mode)
246 {
247         int err = 0;
248
249         inode_init_owner(inode, NULL, mode);
250         inode->i_blocks = 0;
251         inode->i_rdev = 0;
252         inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
253         inode->i_mapping->a_ops = &v9fs_addr_operations;
254
255         switch (mode & S_IFMT) {
256         case S_IFIFO:
257         case S_IFBLK:
258         case S_IFCHR:
259         case S_IFSOCK:
260                 if (v9fs_proto_dotl(v9ses)) {
261                         inode->i_op = &v9fs_file_inode_operations_dotl;
262                         inode->i_fop = &v9fs_file_operations_dotl;
263                 } else if (v9fs_proto_dotu(v9ses)) {
264                         inode->i_op = &v9fs_file_inode_operations;
265                         inode->i_fop = &v9fs_file_operations;
266                 } else {
267                         P9_DPRINTK(P9_DEBUG_ERROR,
268                                    "special files without extended mode\n");
269                         err = -EINVAL;
270                         goto error;
271                 }
272                 init_special_inode(inode, inode->i_mode, inode->i_rdev);
273                 break;
274         case S_IFREG:
275                 if (v9fs_proto_dotl(v9ses)) {
276                         inode->i_op = &v9fs_file_inode_operations_dotl;
277                         if (v9ses->cache)
278                                 inode->i_fop =
279                                         &v9fs_cached_file_operations_dotl;
280                         else
281                                 inode->i_fop = &v9fs_file_operations_dotl;
282                 } else {
283                         inode->i_op = &v9fs_file_inode_operations;
284                         if (v9ses->cache)
285                                 inode->i_fop = &v9fs_cached_file_operations;
286                         else
287                                 inode->i_fop = &v9fs_file_operations;
288                 }
289
290                 break;
291         case S_IFLNK:
292                 if (!v9fs_proto_dotu(v9ses) && !v9fs_proto_dotl(v9ses)) {
293                         P9_DPRINTK(P9_DEBUG_ERROR, "extended modes used with "
294                                                 "legacy protocol.\n");
295                         err = -EINVAL;
296                         goto error;
297                 }
298
299                 if (v9fs_proto_dotl(v9ses))
300                         inode->i_op = &v9fs_symlink_inode_operations_dotl;
301                 else
302                         inode->i_op = &v9fs_symlink_inode_operations;
303
304                 break;
305         case S_IFDIR:
306                 inc_nlink(inode);
307                 if (v9fs_proto_dotl(v9ses))
308                         inode->i_op = &v9fs_dir_inode_operations_dotl;
309                 else if (v9fs_proto_dotu(v9ses))
310                         inode->i_op = &v9fs_dir_inode_operations_dotu;
311                 else
312                         inode->i_op = &v9fs_dir_inode_operations;
313
314                 if (v9fs_proto_dotl(v9ses))
315                         inode->i_fop = &v9fs_dir_operations_dotl;
316                 else
317                         inode->i_fop = &v9fs_dir_operations;
318
319                 break;
320         default:
321                 P9_DPRINTK(P9_DEBUG_ERROR, "BAD mode 0x%x S_IFMT 0x%x\n",
322                            mode, mode & S_IFMT);
323                 err = -EINVAL;
324                 goto error;
325         }
326 error:
327         return err;
328
329 }
330
331 /**
332  * v9fs_get_inode - helper function to setup an inode
333  * @sb: superblock
334  * @mode: mode to setup inode with
335  *
336  */
337
338 struct inode *v9fs_get_inode(struct super_block *sb, int mode)
339 {
340         int err;
341         struct inode *inode;
342         struct v9fs_session_info *v9ses = sb->s_fs_info;
343
344         P9_DPRINTK(P9_DEBUG_VFS, "super block: %p mode: %o\n", sb, mode);
345
346         inode = new_inode(sb);
347         if (!inode) {
348                 P9_EPRINTK(KERN_WARNING, "Problem allocating inode\n");
349                 return ERR_PTR(-ENOMEM);
350         }
351         err = v9fs_init_inode(v9ses, inode, mode);
352         if (err) {
353                 iput(inode);
354                 return ERR_PTR(err);
355         }
356         return inode;
357 }
358
359 /*
360 static struct v9fs_fid*
361 v9fs_clone_walk(struct v9fs_session_info *v9ses, u32 fid, struct dentry *dentry)
362 {
363         int err;
364         int nfid;
365         struct v9fs_fid *ret;
366         struct v9fs_fcall *fcall;
367
368         nfid = v9fs_get_idpool(&v9ses->fidpool);
369         if (nfid < 0) {
370                 eprintk(KERN_WARNING, "no free fids available\n");
371                 return ERR_PTR(-ENOSPC);
372         }
373
374         err = v9fs_t_walk(v9ses, fid, nfid, (char *) dentry->d_name.name,
375                 &fcall);
376
377         if (err < 0) {
378                 if (fcall && fcall->id == RWALK)
379                         goto clunk_fid;
380
381                 PRINT_FCALL_ERROR("walk error", fcall);
382                 v9fs_put_idpool(nfid, &v9ses->fidpool);
383                 goto error;
384         }
385
386         kfree(fcall);
387         fcall = NULL;
388         ret = v9fs_fid_create(v9ses, nfid);
389         if (!ret) {
390                 err = -ENOMEM;
391                 goto clunk_fid;
392         }
393
394         err = v9fs_fid_insert(ret, dentry);
395         if (err < 0) {
396                 v9fs_fid_destroy(ret);
397                 goto clunk_fid;
398         }
399
400         return ret;
401
402 clunk_fid:
403         v9fs_t_clunk(v9ses, nfid);
404
405 error:
406         kfree(fcall);
407         return ERR_PTR(err);
408 }
409 */
410
411
412 /**
413  * v9fs_clear_inode - release an inode
414  * @inode: inode to release
415  *
416  */
417 void v9fs_evict_inode(struct inode *inode)
418 {
419         struct v9fs_inode *v9inode = V9FS_I(inode);
420
421         truncate_inode_pages(inode->i_mapping, 0);
422         end_writeback(inode);
423         filemap_fdatawrite(inode->i_mapping);
424
425 #ifdef CONFIG_9P_FSCACHE
426         v9fs_cache_inode_put_cookie(inode);
427 #endif
428         /* clunk the fid stashed in writeback_fid */
429         if (v9inode->writeback_fid) {
430                 p9_client_clunk(v9inode->writeback_fid);
431                 v9inode->writeback_fid = NULL;
432         }
433 }
434
435 static int v9fs_test_inode(struct inode *inode, void *data)
436 {
437         int umode;
438         struct v9fs_inode *v9inode = V9FS_I(inode);
439         struct p9_wstat *st = (struct p9_wstat *)data;
440         struct v9fs_session_info *v9ses = v9fs_inode2v9ses(inode);
441
442         umode = p9mode2unixmode(v9ses, st->mode);
443         /* don't match inode of different type */
444         if ((inode->i_mode & S_IFMT) != (umode & S_IFMT))
445                 return 0;
446
447         /* compare qid details */
448         if (memcmp(&v9inode->qid.version,
449                    &st->qid.version, sizeof(v9inode->qid.version)))
450                 return 0;
451
452         if (v9inode->qid.type != st->qid.type)
453                 return 0;
454         return 1;
455 }
456
457 static int v9fs_set_inode(struct inode *inode,  void *data)
458 {
459         struct v9fs_inode *v9inode = V9FS_I(inode);
460         struct p9_wstat *st = (struct p9_wstat *)data;
461
462         memcpy(&v9inode->qid, &st->qid, sizeof(st->qid));
463         return 0;
464 }
465
466 static struct inode *v9fs_qid_iget(struct super_block *sb,
467                                    struct p9_qid *qid,
468                                    struct p9_wstat *st)
469 {
470         int retval, umode;
471         unsigned long i_ino;
472         struct inode *inode;
473         struct v9fs_session_info *v9ses = sb->s_fs_info;
474
475         i_ino = v9fs_qid2ino(qid);
476         inode = iget5_locked(sb, i_ino, v9fs_test_inode, v9fs_set_inode, st);
477         if (!inode)
478                 return ERR_PTR(-ENOMEM);
479         if (!(inode->i_state & I_NEW))
480                 return inode;
481         /*
482          * initialize the inode with the stat info
483          * FIXME!! we may need support for stale inodes
484          * later.
485          */
486         inode->i_ino = i_ino;
487         umode = p9mode2unixmode(v9ses, st->mode);
488         retval = v9fs_init_inode(v9ses, inode, umode);
489         if (retval)
490                 goto error;
491
492         v9fs_stat2inode(st, inode, sb);
493 #ifdef CONFIG_9P_FSCACHE
494         v9fs_cache_inode_get_cookie(inode);
495 #endif
496         unlock_new_inode(inode);
497         return inode;
498 error:
499         unlock_new_inode(inode);
500         iput(inode);
501         return ERR_PTR(retval);
502
503 }
504
505 struct inode *
506 v9fs_inode_from_fid(struct v9fs_session_info *v9ses, struct p9_fid *fid,
507                     struct super_block *sb)
508 {
509         struct p9_wstat *st;
510         struct inode *inode = NULL;
511
512         st = p9_client_stat(fid);
513         if (IS_ERR(st))
514                 return ERR_CAST(st);
515
516         inode = v9fs_qid_iget(sb, &st->qid, st);
517         p9stat_free(st);
518         kfree(st);
519         return inode;
520 }
521
522 /**
523  * v9fs_remove - helper function to remove files and directories
524  * @dir: directory inode that is being deleted
525  * @file:  dentry that is being deleted
526  * @rmdir: removing a directory
527  *
528  */
529
530 static int v9fs_remove(struct inode *dir, struct dentry *file, int rmdir)
531 {
532         int retval;
533         struct p9_fid *v9fid;
534         struct inode *file_inode;
535
536         P9_DPRINTK(P9_DEBUG_VFS, "inode: %p dentry: %p rmdir: %d\n", dir, file,
537                 rmdir);
538
539         file_inode = file->d_inode;
540         v9fid = v9fs_fid_clone(file);
541         if (IS_ERR(v9fid))
542                 return PTR_ERR(v9fid);
543
544         retval = p9_client_remove(v9fid);
545         if (!retval) {
546                 /*
547                  * directories on unlink should have zero
548                  * link count
549                  */
550                 if (rmdir) {
551                         clear_nlink(file_inode);
552                         drop_nlink(dir);
553                 } else
554                         drop_nlink(file_inode);
555
556                 v9fs_invalidate_inode_attr(file_inode);
557                 v9fs_invalidate_inode_attr(dir);
558         }
559         return retval;
560 }
561
562 /**
563  * v9fs_create - Create a file
564  * @v9ses: session information
565  * @dir: directory that dentry is being created in
566  * @dentry:  dentry that is being created
567  * @extension: 9p2000.u extension string to support devices, etc.
568  * @perm: create permissions
569  * @mode: open mode
570  *
571  */
572 static struct p9_fid *
573 v9fs_create(struct v9fs_session_info *v9ses, struct inode *dir,
574                 struct dentry *dentry, char *extension, u32 perm, u8 mode)
575 {
576         int err;
577         char *name;
578         struct p9_fid *dfid, *ofid, *fid;
579         struct inode *inode;
580
581         P9_DPRINTK(P9_DEBUG_VFS, "name %s\n", dentry->d_name.name);
582
583         err = 0;
584         ofid = NULL;
585         fid = NULL;
586         name = (char *) dentry->d_name.name;
587         dfid = v9fs_fid_lookup(dentry->d_parent);
588         if (IS_ERR(dfid)) {
589                 err = PTR_ERR(dfid);
590                 P9_DPRINTK(P9_DEBUG_VFS, "fid lookup failed %d\n", err);
591                 return ERR_PTR(err);
592         }
593
594         /* clone a fid to use for creation */
595         ofid = p9_client_walk(dfid, 0, NULL, 1);
596         if (IS_ERR(ofid)) {
597                 err = PTR_ERR(ofid);
598                 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
599                 return ERR_PTR(err);
600         }
601
602         err = p9_client_fcreate(ofid, name, perm, mode, extension);
603         if (err < 0) {
604                 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_fcreate failed %d\n", err);
605                 goto error;
606         }
607
608         /* now walk from the parent so we can get unopened fid */
609         fid = p9_client_walk(dfid, 1, &name, 1);
610         if (IS_ERR(fid)) {
611                 err = PTR_ERR(fid);
612                 P9_DPRINTK(P9_DEBUG_VFS, "p9_client_walk failed %d\n", err);
613                 fid = NULL;
614                 goto error;
615         }
616
617         /* instantiate inode and assign the unopened fid to the dentry */
618         inode = v9fs_get_inode_from_fid(v9ses, fid, dir->i_sb);
619         if (IS_ERR(inode)) {
620                 err = PTR_ERR(inode);
621                 P9_DPRINTK(P9_DEBUG_VFS, "inode creation failed %d\n", err);
622                 goto error;
623         }
624         d_instantiate(dentry, inode);
625         err = v9fs_fid_add(dentry, fid);
626         if (err < 0)
627                 goto error;
628
629         return ofid;
630
631 error:
632         if (ofid)
633                 p9_client_clunk(ofid);
634
635         if (fid)
636                 p9_client_clunk(fid);
637
638         return ERR_PTR(err);
639 }
640
641 /**
642  * v9fs_vfs_create - VFS hook to create files
643  * @dir: directory inode that is being created
644  * @dentry:  dentry that is being deleted
645  * @mode: create permissions
646  * @nd: path information
647  *
648  */
649
650 static int
651 v9fs_vfs_create(struct inode *dir, struct dentry *dentry, int mode,
652                 struct nameidata *nd)
653 {
654         int err;
655         u32 perm;
656         int flags;
657         struct file *filp;
658         struct v9fs_inode *v9inode;
659         struct v9fs_session_info *v9ses;
660         struct p9_fid *fid, *inode_fid;
661
662         err = 0;
663         fid = NULL;
664         v9ses = v9fs_inode2v9ses(dir);
665         perm = unixmode2p9mode(v9ses, mode);
666         if (nd)
667                 flags = nd->intent.open.flags;
668         else
669                 flags = O_RDWR;
670
671         fid = v9fs_create(v9ses, dir, dentry, NULL, perm,
672                                 v9fs_uflags2omode(flags,
673                                                 v9fs_proto_dotu(v9ses)));
674         if (IS_ERR(fid)) {
675                 err = PTR_ERR(fid);
676                 fid = NULL;
677                 goto error;
678         }
679
680         v9fs_invalidate_inode_attr(dir);
681         /* if we are opening a file, assign the open fid to the file */
682         if (nd) {
683                 v9inode = V9FS_I(dentry->d_inode);
684                 mutex_lock(&v9inode->v_mutex);
685                 if (v9ses->cache && !v9inode->writeback_fid &&
686                     ((flags & O_ACCMODE) != O_RDONLY)) {
687                         /*
688                          * clone a fid and add it to writeback_fid
689                          * we do it during open time instead of
690                          * page dirty time via write_begin/page_mkwrite
691                          * because we want write after unlink usecase
692                          * to work.
693                          */
694                         inode_fid = v9fs_writeback_fid(dentry);
695                         if (IS_ERR(inode_fid)) {
696                                 err = PTR_ERR(inode_fid);
697                                 mutex_unlock(&v9inode->v_mutex);
698                                 goto error;
699                         }
700                         v9inode->writeback_fid = (void *) inode_fid;
701                 }
702                 mutex_unlock(&v9inode->v_mutex);
703                 filp = lookup_instantiate_filp(nd, dentry, generic_file_open);
704                 if (IS_ERR(filp)) {
705                         err = PTR_ERR(filp);
706                         goto error;
707                 }
708
709                 filp->private_data = fid;
710 #ifdef CONFIG_9P_FSCACHE
711                 if (v9ses->cache)
712                         v9fs_cache_inode_set_cookie(dentry->d_inode, filp);
713 #endif
714         } else
715                 p9_client_clunk(fid);
716
717         return 0;
718
719 error:
720         if (fid)
721                 p9_client_clunk(fid);
722
723         return err;
724 }
725
726 /**
727  * v9fs_vfs_mkdir - VFS mkdir hook to create a directory
728  * @dir:  inode that is being unlinked
729  * @dentry: dentry that is being unlinked
730  * @mode: mode for new directory
731  *
732  */
733
734 static int v9fs_vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
735 {
736         int err;
737         u32 perm;
738         struct p9_fid *fid;
739         struct v9fs_session_info *v9ses;
740
741         P9_DPRINTK(P9_DEBUG_VFS, "name %s\n", dentry->d_name.name);
742         err = 0;
743         v9ses = v9fs_inode2v9ses(dir);
744         perm = unixmode2p9mode(v9ses, mode | S_IFDIR);
745         fid = v9fs_create(v9ses, dir, dentry, NULL, perm, P9_OREAD);
746         if (IS_ERR(fid)) {
747                 err = PTR_ERR(fid);
748                 fid = NULL;
749         } else {
750                 inc_nlink(dir);
751                 v9fs_invalidate_inode_attr(dir);
752         }
753
754         if (fid)
755                 p9_client_clunk(fid);
756
757         return err;
758 }
759
760 /**
761  * v9fs_vfs_lookup - VFS lookup hook to "walk" to a new inode
762  * @dir:  inode that is being walked from
763  * @dentry: dentry that is being walked to?
764  * @nameidata: path data
765  *
766  */
767
768 struct dentry *v9fs_vfs_lookup(struct inode *dir, struct dentry *dentry,
769                                       struct nameidata *nameidata)
770 {
771         struct super_block *sb;
772         struct v9fs_session_info *v9ses;
773         struct p9_fid *dfid, *fid;
774         struct inode *inode;
775         char *name;
776         int result = 0;
777
778         P9_DPRINTK(P9_DEBUG_VFS, "dir: %p dentry: (%s) %p nameidata: %p\n",
779                 dir, dentry->d_name.name, dentry, nameidata);
780
781         if (dentry->d_name.len > NAME_MAX)
782                 return ERR_PTR(-ENAMETOOLONG);
783
784         sb = dir->i_sb;
785         v9ses = v9fs_inode2v9ses(dir);
786         /* We can walk d_parent because we hold the dir->i_mutex */
787         dfid = v9fs_fid_lookup(dentry->d_parent);
788         if (IS_ERR(dfid))
789                 return ERR_CAST(dfid);
790
791         name = (char *) dentry->d_name.name;
792         fid = p9_client_walk(dfid, 1, &name, 1);
793         if (IS_ERR(fid)) {
794                 result = PTR_ERR(fid);
795                 if (result == -ENOENT) {
796                         inode = NULL;
797                         goto inst_out;
798                 }
799
800                 return ERR_PTR(result);
801         }
802
803         inode = v9fs_get_inode_from_fid(v9ses, fid, dir->i_sb);
804         if (IS_ERR(inode)) {
805                 result = PTR_ERR(inode);
806                 inode = NULL;
807                 goto error;
808         }
809
810         result = v9fs_fid_add(dentry, fid);
811         if (result < 0)
812                 goto error_iput;
813
814 inst_out:
815         d_add(dentry, inode);
816         return NULL;
817
818 error_iput:
819         iput(inode);
820 error:
821         p9_client_clunk(fid);
822
823         return ERR_PTR(result);
824 }
825
826 /**
827  * v9fs_vfs_unlink - VFS unlink hook to delete an inode
828  * @i:  inode that is being unlinked
829  * @d: dentry that is being unlinked
830  *
831  */
832
833 int v9fs_vfs_unlink(struct inode *i, struct dentry *d)
834 {
835         return v9fs_remove(i, d, 0);
836 }
837
838 /**
839  * v9fs_vfs_rmdir - VFS unlink hook to delete a directory
840  * @i:  inode that is being unlinked
841  * @d: dentry that is being unlinked
842  *
843  */
844
845 int v9fs_vfs_rmdir(struct inode *i, struct dentry *d)
846 {
847         return v9fs_remove(i, d, 1);
848 }
849
850 /**
851  * v9fs_vfs_rename - VFS hook to rename an inode
852  * @old_dir:  old dir inode
853  * @old_dentry: old dentry
854  * @new_dir: new dir inode
855  * @new_dentry: new dentry
856  *
857  */
858
859 int
860 v9fs_vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
861                 struct inode *new_dir, struct dentry *new_dentry)
862 {
863         int retval;
864         struct inode *old_inode;
865         struct inode *new_inode;
866         struct v9fs_session_info *v9ses;
867         struct p9_fid *oldfid;
868         struct p9_fid *olddirfid;
869         struct p9_fid *newdirfid;
870         struct p9_wstat wstat;
871
872         P9_DPRINTK(P9_DEBUG_VFS, "\n");
873         retval = 0;
874         old_inode = old_dentry->d_inode;
875         new_inode = new_dentry->d_inode;
876         v9ses = v9fs_inode2v9ses(old_inode);
877         oldfid = v9fs_fid_lookup(old_dentry);
878         if (IS_ERR(oldfid))
879                 return PTR_ERR(oldfid);
880
881         olddirfid = v9fs_fid_clone(old_dentry->d_parent);
882         if (IS_ERR(olddirfid)) {
883                 retval = PTR_ERR(olddirfid);
884                 goto done;
885         }
886
887         newdirfid = v9fs_fid_clone(new_dentry->d_parent);
888         if (IS_ERR(newdirfid)) {
889                 retval = PTR_ERR(newdirfid);
890                 goto clunk_olddir;
891         }
892
893         down_write(&v9ses->rename_sem);
894         if (v9fs_proto_dotl(v9ses)) {
895                 retval = p9_client_rename(oldfid, newdirfid,
896                                         (char *) new_dentry->d_name.name);
897                 if (retval != -ENOSYS)
898                         goto clunk_newdir;
899         }
900         if (old_dentry->d_parent != new_dentry->d_parent) {
901                 /*
902                  * 9P .u can only handle file rename in the same directory
903                  */
904
905                 P9_DPRINTK(P9_DEBUG_ERROR,
906                                 "old dir and new dir are different\n");
907                 retval = -EXDEV;
908                 goto clunk_newdir;
909         }
910         v9fs_blank_wstat(&wstat);
911         wstat.muid = v9ses->uname;
912         wstat.name = (char *) new_dentry->d_name.name;
913         retval = p9_client_wstat(oldfid, &wstat);
914
915 clunk_newdir:
916         if (!retval) {
917                 if (new_inode) {
918                         if (S_ISDIR(new_inode->i_mode))
919                                 clear_nlink(new_inode);
920                         else
921                                 drop_nlink(new_inode);
922                 }
923                 if (S_ISDIR(old_inode->i_mode)) {
924                         if (!new_inode)
925                                 inc_nlink(new_dir);
926                         drop_nlink(old_dir);
927                 }
928                 v9fs_invalidate_inode_attr(old_inode);
929                 v9fs_invalidate_inode_attr(old_dir);
930                 v9fs_invalidate_inode_attr(new_dir);
931
932                 /* successful rename */
933                 d_move(old_dentry, new_dentry);
934         }
935         up_write(&v9ses->rename_sem);
936         p9_client_clunk(newdirfid);
937
938 clunk_olddir:
939         p9_client_clunk(olddirfid);
940
941 done:
942         return retval;
943 }
944
945 /**
946  * v9fs_vfs_getattr - retrieve file metadata
947  * @mnt: mount information
948  * @dentry: file to get attributes on
949  * @stat: metadata structure to populate
950  *
951  */
952
953 static int
954 v9fs_vfs_getattr(struct vfsmount *mnt, struct dentry *dentry,
955                  struct kstat *stat)
956 {
957         int err;
958         struct v9fs_session_info *v9ses;
959         struct p9_fid *fid;
960         struct p9_wstat *st;
961
962         P9_DPRINTK(P9_DEBUG_VFS, "dentry: %p\n", dentry);
963         err = -EPERM;
964         v9ses = v9fs_dentry2v9ses(dentry);
965         if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
966                 generic_fillattr(dentry->d_inode, stat);
967                 return 0;
968         }
969         fid = v9fs_fid_lookup(dentry);
970         if (IS_ERR(fid))
971                 return PTR_ERR(fid);
972
973         st = p9_client_stat(fid);
974         if (IS_ERR(st))
975                 return PTR_ERR(st);
976
977         v9fs_stat2inode(st, dentry->d_inode, dentry->d_inode->i_sb);
978                 generic_fillattr(dentry->d_inode, stat);
979
980         p9stat_free(st);
981         kfree(st);
982         return 0;
983 }
984
985 /**
986  * v9fs_vfs_setattr - set file metadata
987  * @dentry: file whose metadata to set
988  * @iattr: metadata assignment structure
989  *
990  */
991
992 static int v9fs_vfs_setattr(struct dentry *dentry, struct iattr *iattr)
993 {
994         int retval;
995         struct v9fs_session_info *v9ses;
996         struct p9_fid *fid;
997         struct p9_wstat wstat;
998
999         P9_DPRINTK(P9_DEBUG_VFS, "\n");
1000         retval = inode_change_ok(dentry->d_inode, iattr);
1001         if (retval)
1002                 return retval;
1003
1004         retval = -EPERM;
1005         v9ses = v9fs_dentry2v9ses(dentry);
1006         fid = v9fs_fid_lookup(dentry);
1007         if(IS_ERR(fid))
1008                 return PTR_ERR(fid);
1009
1010         v9fs_blank_wstat(&wstat);
1011         if (iattr->ia_valid & ATTR_MODE)
1012                 wstat.mode = unixmode2p9mode(v9ses, iattr->ia_mode);
1013
1014         if (iattr->ia_valid & ATTR_MTIME)
1015                 wstat.mtime = iattr->ia_mtime.tv_sec;
1016
1017         if (iattr->ia_valid & ATTR_ATIME)
1018                 wstat.atime = iattr->ia_atime.tv_sec;
1019
1020         if (iattr->ia_valid & ATTR_SIZE)
1021                 wstat.length = iattr->ia_size;
1022
1023         if (v9fs_proto_dotu(v9ses)) {
1024                 if (iattr->ia_valid & ATTR_UID)
1025                         wstat.n_uid = iattr->ia_uid;
1026
1027                 if (iattr->ia_valid & ATTR_GID)
1028                         wstat.n_gid = iattr->ia_gid;
1029         }
1030
1031         /* Write all dirty data */
1032         if (S_ISREG(dentry->d_inode->i_mode))
1033                 filemap_write_and_wait(dentry->d_inode->i_mapping);
1034
1035         retval = p9_client_wstat(fid, &wstat);
1036         if (retval < 0)
1037                 return retval;
1038
1039         if ((iattr->ia_valid & ATTR_SIZE) &&
1040             iattr->ia_size != i_size_read(dentry->d_inode))
1041                 truncate_setsize(dentry->d_inode, iattr->ia_size);
1042
1043         v9fs_invalidate_inode_attr(dentry->d_inode);
1044
1045         setattr_copy(dentry->d_inode, iattr);
1046         mark_inode_dirty(dentry->d_inode);
1047         return 0;
1048 }
1049
1050 /**
1051  * v9fs_stat2inode - populate an inode structure with mistat info
1052  * @stat: Plan 9 metadata (mistat) structure
1053  * @inode: inode to populate
1054  * @sb: superblock of filesystem
1055  *
1056  */
1057
1058 void
1059 v9fs_stat2inode(struct p9_wstat *stat, struct inode *inode,
1060         struct super_block *sb)
1061 {
1062         char ext[32];
1063         char tag_name[14];
1064         unsigned int i_nlink;
1065         struct v9fs_session_info *v9ses = sb->s_fs_info;
1066         struct v9fs_inode *v9inode = V9FS_I(inode);
1067
1068         inode->i_nlink = 1;
1069
1070         inode->i_atime.tv_sec = stat->atime;
1071         inode->i_mtime.tv_sec = stat->mtime;
1072         inode->i_ctime.tv_sec = stat->mtime;
1073
1074         inode->i_uid = v9ses->dfltuid;
1075         inode->i_gid = v9ses->dfltgid;
1076
1077         if (v9fs_proto_dotu(v9ses)) {
1078                 inode->i_uid = stat->n_uid;
1079                 inode->i_gid = stat->n_gid;
1080         }
1081         if ((S_ISREG(inode->i_mode)) || (S_ISDIR(inode->i_mode))) {
1082                 if (v9fs_proto_dotu(v9ses) && (stat->extension[0] != '\0')) {
1083                         /*
1084                          * Hadlink support got added later to
1085                          * to the .u extension. So there can be
1086                          * server out there that doesn't support
1087                          * this even with .u extension. So check
1088                          * for non NULL stat->extension
1089                          */
1090                         strncpy(ext, stat->extension, sizeof(ext));
1091                         /* HARDLINKCOUNT %u */
1092                         sscanf(ext, "%13s %u", tag_name, &i_nlink);
1093                         if (!strncmp(tag_name, "HARDLINKCOUNT", 13))
1094                                 inode->i_nlink = i_nlink;
1095                 }
1096         }
1097         inode->i_mode = p9mode2unixmode(v9ses, stat->mode);
1098         if ((S_ISBLK(inode->i_mode)) || (S_ISCHR(inode->i_mode))) {
1099                 char type = 0;
1100                 int major = -1;
1101                 int minor = -1;
1102
1103                 strncpy(ext, stat->extension, sizeof(ext));
1104                 sscanf(ext, "%c %u %u", &type, &major, &minor);
1105                 switch (type) {
1106                 case 'c':
1107                         inode->i_mode &= ~S_IFBLK;
1108                         inode->i_mode |= S_IFCHR;
1109                         break;
1110                 case 'b':
1111                         break;
1112                 default:
1113                         P9_DPRINTK(P9_DEBUG_ERROR,
1114                                 "Unknown special type %c %s\n", type,
1115                                 stat->extension);
1116                 };
1117                 inode->i_rdev = MKDEV(major, minor);
1118                 init_special_inode(inode, inode->i_mode, inode->i_rdev);
1119         } else
1120                 inode->i_rdev = 0;
1121
1122         i_size_write(inode, stat->length);
1123
1124         /* not real number of blocks, but 512 byte ones ... */
1125         inode->i_blocks = (i_size_read(inode) + 512 - 1) >> 9;
1126         v9inode->cache_validity &= ~V9FS_INO_INVALID_ATTR;
1127 }
1128
1129 /**
1130  * v9fs_qid2ino - convert qid into inode number
1131  * @qid: qid to hash
1132  *
1133  * BUG: potential for inode number collisions?
1134  */
1135
1136 ino_t v9fs_qid2ino(struct p9_qid *qid)
1137 {
1138         u64 path = qid->path + 2;
1139         ino_t i = 0;
1140
1141         if (sizeof(ino_t) == sizeof(path))
1142                 memcpy(&i, &path, sizeof(ino_t));
1143         else
1144                 i = (ino_t) (path ^ (path >> 32));
1145
1146         return i;
1147 }
1148
1149 /**
1150  * v9fs_readlink - read a symlink's location (internal version)
1151  * @dentry: dentry for symlink
1152  * @buffer: buffer to load symlink location into
1153  * @buflen: length of buffer
1154  *
1155  */
1156
1157 static int v9fs_readlink(struct dentry *dentry, char *buffer, int buflen)
1158 {
1159         int retval;
1160
1161         struct v9fs_session_info *v9ses;
1162         struct p9_fid *fid;
1163         struct p9_wstat *st;
1164
1165         P9_DPRINTK(P9_DEBUG_VFS, " %s\n", dentry->d_name.name);
1166         retval = -EPERM;
1167         v9ses = v9fs_dentry2v9ses(dentry);
1168         fid = v9fs_fid_lookup(dentry);
1169         if (IS_ERR(fid))
1170                 return PTR_ERR(fid);
1171
1172         if (!v9fs_proto_dotu(v9ses))
1173                 return -EBADF;
1174
1175         st = p9_client_stat(fid);
1176         if (IS_ERR(st))
1177                 return PTR_ERR(st);
1178
1179         if (!(st->mode & P9_DMSYMLINK)) {
1180                 retval = -EINVAL;
1181                 goto done;
1182         }
1183
1184         /* copy extension buffer into buffer */
1185         strncpy(buffer, st->extension, buflen);
1186
1187         P9_DPRINTK(P9_DEBUG_VFS,
1188                 "%s -> %s (%s)\n", dentry->d_name.name, st->extension, buffer);
1189
1190         retval = strnlen(buffer, buflen);
1191 done:
1192         p9stat_free(st);
1193         kfree(st);
1194         return retval;
1195 }
1196
1197 /**
1198  * v9fs_vfs_follow_link - follow a symlink path
1199  * @dentry: dentry for symlink
1200  * @nd: nameidata
1201  *
1202  */
1203
1204 static void *v9fs_vfs_follow_link(struct dentry *dentry, struct nameidata *nd)
1205 {
1206         int len = 0;
1207         char *link = __getname();
1208
1209         P9_DPRINTK(P9_DEBUG_VFS, "%s n", dentry->d_name.name);
1210
1211         if (!link)
1212                 link = ERR_PTR(-ENOMEM);
1213         else {
1214                 len = v9fs_readlink(dentry, link, PATH_MAX);
1215
1216                 if (len < 0) {
1217                         __putname(link);
1218                         link = ERR_PTR(len);
1219                 } else
1220                         link[min(len, PATH_MAX-1)] = 0;
1221         }
1222         nd_set_link(nd, link);
1223
1224         return NULL;
1225 }
1226
1227 /**
1228  * v9fs_vfs_put_link - release a symlink path
1229  * @dentry: dentry for symlink
1230  * @nd: nameidata
1231  * @p: unused
1232  *
1233  */
1234
1235 void
1236 v9fs_vfs_put_link(struct dentry *dentry, struct nameidata *nd, void *p)
1237 {
1238         char *s = nd_get_link(nd);
1239
1240         P9_DPRINTK(P9_DEBUG_VFS, " %s %s\n", dentry->d_name.name,
1241                 IS_ERR(s) ? "<error>" : s);
1242         if (!IS_ERR(s))
1243                 __putname(s);
1244 }
1245
1246 /**
1247  * v9fs_vfs_mkspecial - create a special file
1248  * @dir: inode to create special file in
1249  * @dentry: dentry to create
1250  * @mode: mode to create special file
1251  * @extension: 9p2000.u format extension string representing special file
1252  *
1253  */
1254
1255 static int v9fs_vfs_mkspecial(struct inode *dir, struct dentry *dentry,
1256         int mode, const char *extension)
1257 {
1258         u32 perm;
1259         struct p9_fid *fid;
1260         struct v9fs_session_info *v9ses;
1261
1262         v9ses = v9fs_inode2v9ses(dir);
1263         if (!v9fs_proto_dotu(v9ses)) {
1264                 P9_DPRINTK(P9_DEBUG_ERROR, "not extended\n");
1265                 return -EPERM;
1266         }
1267
1268         perm = unixmode2p9mode(v9ses, mode);
1269         fid = v9fs_create(v9ses, dir, dentry, (char *) extension, perm,
1270                                                                 P9_OREAD);
1271         if (IS_ERR(fid))
1272                 return PTR_ERR(fid);
1273
1274         v9fs_invalidate_inode_attr(dir);
1275         p9_client_clunk(fid);
1276         return 0;
1277 }
1278
1279 /**
1280  * v9fs_vfs_symlink - helper function to create symlinks
1281  * @dir: directory inode containing symlink
1282  * @dentry: dentry for symlink
1283  * @symname: symlink data
1284  *
1285  * See Also: 9P2000.u RFC for more information
1286  *
1287  */
1288
1289 static int
1290 v9fs_vfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
1291 {
1292         P9_DPRINTK(P9_DEBUG_VFS, " %lu,%s,%s\n", dir->i_ino,
1293                                         dentry->d_name.name, symname);
1294
1295         return v9fs_vfs_mkspecial(dir, dentry, S_IFLNK, symname);
1296 }
1297
1298 /**
1299  * v9fs_vfs_link - create a hardlink
1300  * @old_dentry: dentry for file to link to
1301  * @dir: inode destination for new link
1302  * @dentry: dentry for link
1303  *
1304  */
1305
1306 static int
1307 v9fs_vfs_link(struct dentry *old_dentry, struct inode *dir,
1308               struct dentry *dentry)
1309 {
1310         int retval;
1311         char *name;
1312         struct p9_fid *oldfid;
1313
1314         P9_DPRINTK(P9_DEBUG_VFS,
1315                 " %lu,%s,%s\n", dir->i_ino, dentry->d_name.name,
1316                 old_dentry->d_name.name);
1317
1318         oldfid = v9fs_fid_clone(old_dentry);
1319         if (IS_ERR(oldfid))
1320                 return PTR_ERR(oldfid);
1321
1322         name = __getname();
1323         if (unlikely(!name)) {
1324                 retval = -ENOMEM;
1325                 goto clunk_fid;
1326         }
1327
1328         sprintf(name, "%d\n", oldfid->fid);
1329         retval = v9fs_vfs_mkspecial(dir, dentry, P9_DMLINK, name);
1330         __putname(name);
1331         if (!retval) {
1332                 v9fs_refresh_inode(oldfid, old_dentry->d_inode);
1333                 v9fs_invalidate_inode_attr(dir);
1334         }
1335 clunk_fid:
1336         p9_client_clunk(oldfid);
1337         return retval;
1338 }
1339
1340 /**
1341  * v9fs_vfs_mknod - create a special file
1342  * @dir: inode destination for new link
1343  * @dentry: dentry for file
1344  * @mode: mode for creation
1345  * @rdev: device associated with special file
1346  *
1347  */
1348
1349 static int
1350 v9fs_vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t rdev)
1351 {
1352         int retval;
1353         char *name;
1354
1355         P9_DPRINTK(P9_DEBUG_VFS,
1356                 " %lu,%s mode: %x MAJOR: %u MINOR: %u\n", dir->i_ino,
1357                 dentry->d_name.name, mode, MAJOR(rdev), MINOR(rdev));
1358
1359         if (!new_valid_dev(rdev))
1360                 return -EINVAL;
1361
1362         name = __getname();
1363         if (!name)
1364                 return -ENOMEM;
1365         /* build extension */
1366         if (S_ISBLK(mode))
1367                 sprintf(name, "b %u %u", MAJOR(rdev), MINOR(rdev));
1368         else if (S_ISCHR(mode))
1369                 sprintf(name, "c %u %u", MAJOR(rdev), MINOR(rdev));
1370         else if (S_ISFIFO(mode))
1371                 *name = 0;
1372         else if (S_ISSOCK(mode))
1373                 *name = 0;
1374         else {
1375                 __putname(name);
1376                 return -EINVAL;
1377         }
1378
1379         retval = v9fs_vfs_mkspecial(dir, dentry, mode, name);
1380         __putname(name);
1381
1382         return retval;
1383 }
1384
1385 int v9fs_refresh_inode(struct p9_fid *fid, struct inode *inode)
1386 {
1387         loff_t i_size;
1388         struct p9_wstat *st;
1389         struct v9fs_session_info *v9ses;
1390
1391         v9ses = v9fs_inode2v9ses(inode);
1392         st = p9_client_stat(fid);
1393         if (IS_ERR(st))
1394                 return PTR_ERR(st);
1395
1396         spin_lock(&inode->i_lock);
1397         /*
1398          * We don't want to refresh inode->i_size,
1399          * because we may have cached data
1400          */
1401         i_size = inode->i_size;
1402         v9fs_stat2inode(st, inode, inode->i_sb);
1403         if (v9ses->cache)
1404                 inode->i_size = i_size;
1405         spin_unlock(&inode->i_lock);
1406         p9stat_free(st);
1407         kfree(st);
1408         return 0;
1409 }
1410
1411 static const struct inode_operations v9fs_dir_inode_operations_dotu = {
1412         .create = v9fs_vfs_create,
1413         .lookup = v9fs_vfs_lookup,
1414         .symlink = v9fs_vfs_symlink,
1415         .link = v9fs_vfs_link,
1416         .unlink = v9fs_vfs_unlink,
1417         .mkdir = v9fs_vfs_mkdir,
1418         .rmdir = v9fs_vfs_rmdir,
1419         .mknod = v9fs_vfs_mknod,
1420         .rename = v9fs_vfs_rename,
1421         .getattr = v9fs_vfs_getattr,
1422         .setattr = v9fs_vfs_setattr,
1423 };
1424
1425 static const struct inode_operations v9fs_dir_inode_operations = {
1426         .create = v9fs_vfs_create,
1427         .lookup = v9fs_vfs_lookup,
1428         .unlink = v9fs_vfs_unlink,
1429         .mkdir = v9fs_vfs_mkdir,
1430         .rmdir = v9fs_vfs_rmdir,
1431         .mknod = v9fs_vfs_mknod,
1432         .rename = v9fs_vfs_rename,
1433         .getattr = v9fs_vfs_getattr,
1434         .setattr = v9fs_vfs_setattr,
1435 };
1436
1437 static const struct inode_operations v9fs_file_inode_operations = {
1438         .getattr = v9fs_vfs_getattr,
1439         .setattr = v9fs_vfs_setattr,
1440 };
1441
1442 static const struct inode_operations v9fs_symlink_inode_operations = {
1443         .readlink = generic_readlink,
1444         .follow_link = v9fs_vfs_follow_link,
1445         .put_link = v9fs_vfs_put_link,
1446         .getattr = v9fs_vfs_getattr,
1447         .setattr = v9fs_vfs_setattr,
1448 };
1449