patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / fs / cifs / link.c
1 /*
2  *   fs/cifs/link.c
3  *
4  *   Copyright (C) International Business Machines  Corp., 2002,2003
5  *   Author(s): Steve French (sfrench@us.ibm.com)
6  *
7  *   This library is free software; you can redistribute it and/or modify
8  *   it under the terms of the GNU Lesser General Public License as published
9  *   by the Free Software Foundation; either version 2.1 of the License, or
10  *   (at your option) any later version.
11  *
12  *   This library is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
15  *   the GNU Lesser General Public License for more details.
16  *
17  *   You should have received a copy of the GNU Lesser General Public License
18  *   along with this library; if not, write to the Free Software
19  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  */
21 #include <linux/fs.h>
22 #include <linux/stat.h>
23 #include "cifsfs.h"
24 #include "cifspdu.h"
25 #include "cifsglob.h"
26 #include "cifsproto.h"
27 #include "cifs_debug.h"
28 #include "cifs_fs_sb.h"
29
30 int
31 cifs_hardlink(struct dentry *old_file, struct inode *inode,
32               struct dentry *direntry)
33 {
34         int rc = -EACCES;
35         int xid;
36         char *fromName = NULL;
37         char *toName = NULL;
38         struct cifs_sb_info *cifs_sb_target;
39         struct cifsTconInfo *pTcon;
40         struct cifsInodeInfo *cifsInode;
41
42         xid = GetXid();
43
44         cifs_sb_target = CIFS_SB(inode->i_sb);
45         pTcon = cifs_sb_target->tcon;
46
47 /* No need to check for cross device links since server will do that
48    BB note DFS case in future though (when we may have to check) */
49
50         down(&inode->i_sb->s_vfs_rename_sem);
51         fromName = build_path_from_dentry(old_file);
52         toName = build_path_from_dentry(direntry);
53         up(&inode->i_sb->s_vfs_rename_sem);
54         if((fromName == NULL) || (toName == NULL)) {
55                 rc = -ENOMEM;
56                 goto cifs_hl_exit;
57         }
58
59         if (cifs_sb_target->tcon->ses->capabilities & CAP_UNIX)
60                 rc = CIFSUnixCreateHardLink(xid, pTcon, fromName, toName,
61                                             cifs_sb_target->local_nls);
62         else {
63                 rc = CIFSCreateHardLink(xid, pTcon, fromName, toName,
64                                         cifs_sb_target->local_nls);
65                 if(rc == -EIO)
66                         rc = -EOPNOTSUPP;  
67         }
68
69 /* if (!rc)     */
70         {
71                 /*   renew_parental_timestamps(old_file);
72                    inode->i_nlink++;
73                    mark_inode_dirty(inode);
74                    d_instantiate(direntry, inode); */
75                 /* BB add call to either mark inode dirty or refresh its data and timestamp to current time */
76         }
77         d_drop(direntry);       /* force new lookup from server */
78         cifsInode = CIFS_I(old_file->d_inode);
79         cifsInode->time = 0;    /* will force revalidate to go get info when needed */
80
81 cifs_hl_exit:
82         if (fromName)
83                 kfree(fromName);
84         if (toName)
85                 kfree(toName);
86         FreeXid(xid);
87         return rc;
88 }
89
90 int
91 cifs_follow_link(struct dentry *direntry, struct nameidata *nd)
92 {
93         struct inode *inode = direntry->d_inode;
94         int rc = -EACCES;
95         int xid;
96         char *full_path = NULL;
97         char * target_path;
98         struct cifs_sb_info *cifs_sb;
99         struct cifsTconInfo *pTcon;
100
101         xid = GetXid();
102
103         down(&direntry->d_sb->s_vfs_rename_sem);
104         full_path = build_path_from_dentry(direntry);
105         up(&direntry->d_sb->s_vfs_rename_sem);
106
107         if(full_path == NULL) {
108                 FreeXid(xid);
109                 return -ENOMEM;
110         }
111         cFYI(1, ("Full path: %s inode = 0x%p", full_path, inode));
112         cifs_sb = CIFS_SB(inode->i_sb);
113         pTcon = cifs_sb->tcon;
114         target_path = kmalloc(PATH_MAX, GFP_KERNEL);
115         if(target_path == NULL) {
116                 if (full_path)
117                         kfree(full_path);
118                 FreeXid(xid);
119                 return -ENOMEM;
120         }
121         /* can not call the following line due to EFAULT in vfs_readlink which is presumably expecting a user space buffer */
122         /* length = cifs_readlink(direntry,target_path, sizeof(target_path) - 1);    */
123
124 /* BB add read reparse point symlink code and Unix extensions symlink code here BB */
125         if (pTcon->ses->capabilities & CAP_UNIX)
126                 rc = CIFSSMBUnixQuerySymLink(xid, pTcon, full_path,
127                                              target_path,
128                                              PATH_MAX-1,
129                                              cifs_sb->local_nls);
130         else {
131                 /* rc = CIFSSMBQueryReparseLinkInfo */
132                 /* BB Add code to Query ReparsePoint info */
133         }
134         /* BB Anything else to do to handle recursive links? */
135         /* BB Should we be using page symlink ops here? */
136
137         if (rc == 0) {
138
139 /* BB Add special case check for Samba DFS symlinks */
140
141                 target_path[PATH_MAX-1] = 0;
142                 rc = vfs_follow_link(nd, target_path);
143         }
144         /* else EACCESS */
145
146         if (target_path)
147                 kfree(target_path);
148         if (full_path)
149                 kfree(full_path);
150         FreeXid(xid);
151         return rc;
152 }
153
154 int
155 cifs_symlink(struct inode *inode, struct dentry *direntry, const char *symname)
156 {
157         int rc = -EOPNOTSUPP;
158         int xid;
159         struct cifs_sb_info *cifs_sb;
160         struct cifsTconInfo *pTcon;
161         char *full_path = NULL;
162         struct inode *newinode = NULL;
163
164         xid = GetXid();
165
166         cifs_sb = CIFS_SB(inode->i_sb);
167         pTcon = cifs_sb->tcon;
168
169         down(&inode->i_sb->s_vfs_rename_sem);
170         full_path = build_path_from_dentry(direntry);
171         up(&inode->i_sb->s_vfs_rename_sem);
172
173         if(full_path == NULL) {
174                 FreeXid(xid);
175                 return -ENOMEM;
176         }
177
178         cFYI(1, ("Full path: %s ", full_path));
179         cFYI(1, ("symname is %s", symname));
180
181         /* BB what if DFS and this volume is on different share? BB */
182         if (cifs_sb->tcon->ses->capabilities & CAP_UNIX)
183                 rc = CIFSUnixCreateSymLink(xid, pTcon, full_path, symname,
184                                            cifs_sb->local_nls);
185         /* else
186            rc = CIFSCreateReparseSymLink(xid, pTcon, fromName, toName,cifs_sb_target->local_nls); */
187
188         if (rc == 0) {
189                 if (pTcon->ses->capabilities & CAP_UNIX)
190                         rc = cifs_get_inode_info_unix(&newinode, full_path,
191                                                       inode->i_sb);
192                 else
193                         rc = cifs_get_inode_info(&newinode, full_path, NULL,
194                                                  inode->i_sb);
195
196                 if (rc != 0) {
197                         cFYI(1,
198                              ("Create symlink worked but get_inode_info failed with rc = %d ",
199                               rc));
200                 } else {
201                         direntry->d_op = &cifs_dentry_ops;
202                         d_instantiate(direntry, newinode);
203                 }
204         }
205
206         if (full_path)
207                 kfree(full_path);
208         FreeXid(xid);
209         return rc;
210 }
211
212 int
213 cifs_readlink(struct dentry *direntry, char __user *pBuffer, int buflen)
214 {
215         struct inode *inode = direntry->d_inode;
216         int rc = -EACCES;
217         int xid;
218         int oplock = FALSE;
219         struct cifs_sb_info *cifs_sb;
220         struct cifsTconInfo *pTcon;
221         char *full_path = NULL;
222         char *tmp_path =  NULL;
223         char * tmpbuffer;
224         unsigned char * referrals = NULL;
225         int num_referrals = 0;
226         int len;
227         __u16 fid;
228
229         xid = GetXid();
230         cifs_sb = CIFS_SB(inode->i_sb);
231         pTcon = cifs_sb->tcon;
232
233 /* BB would it be safe against deadlock to grab this sem 
234       even though rename itself grabs the sem and calls lookup? */
235 /*       down(&inode->i_sb->s_vfs_rename_sem);*/
236         full_path = build_path_from_dentry(direntry);
237 /*       up(&inode->i_sb->s_vfs_rename_sem);*/
238
239         if(full_path == NULL) {
240                 FreeXid(xid);
241                 return -ENOMEM;
242         }
243
244         cFYI(1,
245              ("Full path: %s inode = 0x%p pBuffer = 0x%p buflen = %d",
246               full_path, inode, pBuffer, buflen));
247         if(buflen > PATH_MAX)
248                 len = PATH_MAX;
249         else
250                 len = buflen;
251         tmpbuffer = kmalloc(len,GFP_KERNEL);   
252         if(tmpbuffer == NULL) {
253                 if (full_path)
254                         kfree(full_path);
255                 FreeXid(xid);
256                 return -ENOMEM;
257         }
258
259 /* BB add read reparse point symlink code and Unix extensions symlink code here BB */
260         if (cifs_sb->tcon->ses->capabilities & CAP_UNIX)
261                 rc = CIFSSMBUnixQuerySymLink(xid, pTcon, full_path,
262                                 tmpbuffer,
263                                 len - 1,
264                                 cifs_sb->local_nls);
265         else {
266                 rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN, GENERIC_READ,
267                                 OPEN_REPARSE_POINT,&fid, &oplock, NULL, cifs_sb->local_nls);
268                 if(!rc) {
269                         rc = CIFSSMBQueryReparseLinkInfo(xid, pTcon, full_path,
270                                 tmpbuffer,
271                                 len - 1, 
272                                 fid,
273                                 cifs_sb->local_nls);
274                         if(CIFSSMBClose(xid, pTcon, fid)) {
275                                 cFYI(1,("Error closing junction point (open for ioctl)"));
276                         }
277                         if(rc == -EIO) {
278                                 /* Query if DFS Junction */
279                                 tmp_path =
280                                         kmalloc(MAX_TREE_SIZE + MAX_PATHCONF + 1,
281                                                 GFP_KERNEL);
282                                 if (tmp_path) {
283                                         strncpy(tmp_path, pTcon->treeName, MAX_TREE_SIZE);
284                                         strncat(tmp_path, full_path, MAX_PATHCONF);
285                                         rc = get_dfs_path(xid, pTcon->ses, tmp_path,
286                                                 cifs_sb->local_nls, &num_referrals, &referrals);
287                                         cFYI(1,("Get DFS for %s rc = %d ",tmp_path, rc));
288                                         if((num_referrals == 0) && (rc == 0))
289                                                 rc = -EACCES;
290                                         else {
291                                                 cFYI(1,("num referral: %d",num_referrals));
292                                                 if(referrals) {
293                                                         cFYI(1,("referral string: %s ",referrals));
294                                                         strncpy(tmpbuffer, referrals, len-1);                            
295                                                 }
296                                         }
297                                         if(referrals)
298                                                 kfree(referrals);
299                                         kfree(tmp_path);
300                                         if(referrals) {
301                                                 kfree(referrals);
302                                         }
303                                 }
304                                 /* BB add code like else decode referrals then memcpy to
305                                   tmpbuffer and free referrals string array BB */
306                         }
307                 }
308         }
309         /* BB Anything else to do to handle recursive links? */
310         /* BB Should we be using page ops here? */
311
312         /* BB null terminate returned string in pBuffer? BB */
313         if (rc == 0) {
314                 rc = vfs_readlink(direntry, pBuffer, len, tmpbuffer);
315                 cFYI(1,
316                      ("vfs_readlink called from cifs_readlink returned %d",
317                       rc));
318         }
319
320         if (tmpbuffer) {
321                 kfree(tmpbuffer);
322         }
323         if (full_path) {
324                 kfree(full_path);
325         }
326         FreeXid(xid);
327         return rc;
328 }