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