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