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