ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / fs / smbfs / symlink.c
1 /*
2  *  symlink.c
3  *
4  *  Copyright (C) 2002 by John Newbigin
5  *
6  *  Please add a note about your changes to smbfs in the ChangeLog file.
7  */
8
9 #include <linux/sched.h>
10 #include <linux/kernel.h>
11 #include <linux/errno.h>
12 #include <linux/fcntl.h>
13 #include <linux/stat.h>
14 #include <linux/mm.h>
15 #include <linux/slab.h>
16 #include <linux/pagemap.h>
17 #include <linux/smp_lock.h>
18 #include <linux/net.h>
19
20 #include <asm/uaccess.h>
21 #include <asm/system.h>
22
23 #include <linux/smbno.h>
24 #include <linux/smb_fs.h>
25
26 #include "smb_debug.h"
27 #include "proto.h"
28
29 int smb_read_link(struct dentry *dentry, char *buffer, int len)
30 {
31         char link[256];         /* FIXME: pain ... */
32         int r;
33         DEBUG1("read link buffer len = %d\n", len);
34
35         r = smb_proc_read_link(server_from_dentry(dentry), dentry, link,
36                                sizeof(link) - 1);
37         if (r < 0)
38                 return -ENOENT;
39         return vfs_readlink(dentry, buffer, len, link);
40 }
41
42 int smb_symlink(struct inode *inode, struct dentry *dentry, const char *oldname)
43 {
44         DEBUG1("create symlink %s -> %s/%s\n", oldname, DENTRY_PATH(dentry));
45
46         return smb_proc_symlink(server_from_dentry(dentry), dentry, oldname);
47 }
48
49 int smb_follow_link(struct dentry *dentry, struct nameidata *nd)
50 {
51         char link[256];         /* FIXME: pain ... */
52         int len;
53         DEBUG1("followlink of %s/%s\n", DENTRY_PATH(dentry));
54
55         len = smb_proc_read_link(server_from_dentry(dentry), dentry, link,
56                                  sizeof(link) - 1);
57         if(len < 0)
58                 return -ENOENT;
59
60         link[len] = 0;
61         return vfs_follow_link(nd, link);
62 }
63
64
65 struct inode_operations smb_link_inode_operations =
66 {
67         .readlink       = smb_read_link,
68         .follow_link    = smb_follow_link,
69 };