blob: 12eb491d4c523fcc0c4eb71293b6a86e5a6b3255 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/link.c
3 *
Steve French366781c2008-01-25 10:12:41 +00004 * Copyright (C) International Business Machines Corp., 2002,2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/namei.h>
25#include "cifsfs.h"
26#include "cifspdu.h"
27#include "cifsglob.h"
28#include "cifsproto.h"
29#include "cifs_debug.h"
30#include "cifs_fs_sb.h"
Stefan Metzmacherc69c1b62010-07-31 09:14:16 +020031#include "md5.h"
32
33#define CIFS_MF_SYMLINK_LEN_OFFSET (4+1)
34#define CIFS_MF_SYMLINK_MD5_OFFSET (CIFS_MF_SYMLINK_LEN_OFFSET+(4+1))
35#define CIFS_MF_SYMLINK_LINK_OFFSET (CIFS_MF_SYMLINK_MD5_OFFSET+(32+1))
36#define CIFS_MF_SYMLINK_LINK_MAXLEN (1024)
37#define CIFS_MF_SYMLINK_FILE_SIZE \
38 (CIFS_MF_SYMLINK_LINK_OFFSET + CIFS_MF_SYMLINK_LINK_MAXLEN)
39
40#define CIFS_MF_SYMLINK_LEN_FORMAT "XSym\n%04u\n"
41#define CIFS_MF_SYMLINK_MD5_FORMAT \
42 "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n"
43#define CIFS_MF_SYMLINK_MD5_ARGS(md5_hash) \
44 md5_hash[0], md5_hash[1], md5_hash[2], md5_hash[3], \
45 md5_hash[4], md5_hash[5], md5_hash[6], md5_hash[7], \
46 md5_hash[8], md5_hash[9], md5_hash[10], md5_hash[11],\
47 md5_hash[12], md5_hash[13], md5_hash[14], md5_hash[15]
48
49static int
50CIFSParseMFSymlink(const u8 *buf,
51 unsigned int buf_len,
52 unsigned int *_link_len,
53 char **_link_str)
54{
55 int rc;
56 unsigned int link_len;
57 const char *md5_str1;
58 const char *link_str;
59 struct MD5Context md5_ctx;
60 u8 md5_hash[16];
61 char md5_str2[34];
62
63 if (buf_len != CIFS_MF_SYMLINK_FILE_SIZE)
64 return -EINVAL;
65
66 md5_str1 = (const char *)&buf[CIFS_MF_SYMLINK_MD5_OFFSET];
67 link_str = (const char *)&buf[CIFS_MF_SYMLINK_LINK_OFFSET];
68
69 rc = sscanf(buf, CIFS_MF_SYMLINK_LEN_FORMAT, &link_len);
70 if (rc != 1)
71 return -EINVAL;
72
73 cifs_MD5_init(&md5_ctx);
74 cifs_MD5_update(&md5_ctx, (const u8 *)link_str, link_len);
75 cifs_MD5_final(md5_hash, &md5_ctx);
76
77 snprintf(md5_str2, sizeof(md5_str2),
78 CIFS_MF_SYMLINK_MD5_FORMAT,
79 CIFS_MF_SYMLINK_MD5_ARGS(md5_hash));
80
81 if (strncmp(md5_str1, md5_str2, 17) != 0)
82 return -EINVAL;
83
84 if (_link_str) {
85 *_link_str = kstrndup(link_str, link_len, GFP_KERNEL);
86 if (!*_link_str)
87 return -ENOMEM;
88 }
89
90 *_link_len = link_len;
91 return 0;
92}
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94int
95cifs_hardlink(struct dentry *old_file, struct inode *inode,
96 struct dentry *direntry)
97{
98 int rc = -EACCES;
99 int xid;
100 char *fromName = NULL;
101 char *toName = NULL;
102 struct cifs_sb_info *cifs_sb_target;
103 struct cifsTconInfo *pTcon;
104 struct cifsInodeInfo *cifsInode;
105
106 xid = GetXid();
107
108 cifs_sb_target = CIFS_SB(inode->i_sb);
109 pTcon = cifs_sb_target->tcon;
110
111/* No need to check for cross device links since server will do that
112 BB note DFS case in future though (when we may have to check) */
113
Steve French7f573562005-08-30 11:32:14 -0700114 fromName = build_path_from_dentry(old_file);
115 toName = build_path_from_dentry(direntry);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000116 if ((fromName == NULL) || (toName == NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 rc = -ENOMEM;
118 goto cifs_hl_exit;
119 }
120
Steve Frenchc18c8422007-07-18 23:21:09 +0000121/* if (cifs_sb_target->tcon->ses->capabilities & CAP_UNIX)*/
122 if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 rc = CIFSUnixCreateHardLink(xid, pTcon, fromName, toName,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000124 cifs_sb_target->local_nls,
Steve French737b7582005-04-28 22:41:06 -0700125 cifs_sb_target->mnt_cifs_flags &
126 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 else {
128 rc = CIFSCreateHardLink(xid, pTcon, fromName, toName,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000129 cifs_sb_target->local_nls,
Steve French737b7582005-04-28 22:41:06 -0700130 cifs_sb_target->mnt_cifs_flags &
131 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000132 if ((rc == -EIO) || (rc == -EINVAL))
133 rc = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135
Steve French31ec35d2006-11-16 20:54:20 +0000136 d_drop(direntry); /* force new lookup from server of target */
137
138 /* if source file is cached (oplocked) revalidate will not go to server
139 until the file is closed or oplock broken so update nlinks locally */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000140 if (old_file->d_inode) {
Steve French31ec35d2006-11-16 20:54:20 +0000141 cifsInode = CIFS_I(old_file->d_inode);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000142 if (rc == 0) {
Steve French31ec35d2006-11-16 20:54:20 +0000143 old_file->d_inode->i_nlink++;
Steve French1b2b2122007-02-17 04:30:54 +0000144/* BB should we make this contingent on superblock flag NOATIME? */
145/* old_file->d_inode->i_ctime = CURRENT_TIME;*/
Steve French31ec35d2006-11-16 20:54:20 +0000146 /* parent dir timestamps will update from srv
147 within a second, would it really be worth it
148 to set the parent dir cifs inode time to zero
149 to force revalidate (faster) for it too? */
150 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000151 /* if not oplocked will force revalidate to get info
Steve French31ec35d2006-11-16 20:54:20 +0000152 on source file from srv */
153 cifsInode->time = 0;
154
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000155 /* Will update parent dir timestamps from srv within a second.
Steve French31ec35d2006-11-16 20:54:20 +0000156 Would it really be worth it to set the parent dir (cifs
157 inode) time field to zero to force revalidate on parent
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000158 directory faster ie
Steve French31ec35d2006-11-16 20:54:20 +0000159 CIFS_I(inode)->time = 0; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162cifs_hl_exit:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800163 kfree(fromName);
164 kfree(toName);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 FreeXid(xid);
166 return rc;
167}
168
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700169void *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170cifs_follow_link(struct dentry *direntry, struct nameidata *nd)
171{
172 struct inode *inode = direntry->d_inode;
Jeff Layton8b6427a2009-05-19 09:57:03 -0400173 int rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 int xid;
175 char *full_path = NULL;
Jeff Layton8b6427a2009-05-19 09:57:03 -0400176 char *target_path = NULL;
177 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
178 struct cifsTconInfo *tcon = cifs_sb->tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 xid = GetXid();
181
Jeff Layton8b6427a2009-05-19 09:57:03 -0400182 /*
183 * For now, we just handle symlinks with unix extensions enabled.
184 * Eventually we should handle NTFS reparse points, and MacOS
185 * symlink support. For instance...
186 *
187 * rc = CIFSSMBQueryReparseLinkInfo(...)
188 *
189 * For now, just return -EACCES when the server doesn't support posix
190 * extensions. Note that we still allow querying symlinks when posix
191 * extensions are manually disabled. We could disable these as well
192 * but there doesn't seem to be any harm in allowing the client to
193 * read them.
194 */
195 if (!(tcon->ses->capabilities & CAP_UNIX)) {
196 rc = -EACCES;
197 goto out;
198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Jeff Layton8b6427a2009-05-19 09:57:03 -0400200 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (!full_path)
Jeff Layton460b9692009-04-30 07:17:56 -0400202 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Joe Perchesb6b38f72010-04-21 03:50:45 +0000204 cFYI(1, "Full path: %s inode = 0x%p", full_path, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Jeff Layton8b6427a2009-05-19 09:57:03 -0400206 rc = CIFSSMBUnixQuerySymLink(xid, tcon, full_path, &target_path,
207 cifs_sb->local_nls);
208 kfree(full_path);
209out:
Jeff Layton460b9692009-04-30 07:17:56 -0400210 if (rc != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 kfree(target_path);
212 target_path = ERR_PTR(rc);
213 }
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 FreeXid(xid);
216 nd_set_link(nd, target_path);
Jeff Layton460b9692009-04-30 07:17:56 -0400217 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
220int
221cifs_symlink(struct inode *inode, struct dentry *direntry, const char *symname)
222{
223 int rc = -EOPNOTSUPP;
224 int xid;
225 struct cifs_sb_info *cifs_sb;
226 struct cifsTconInfo *pTcon;
227 char *full_path = NULL;
228 struct inode *newinode = NULL;
229
230 xid = GetXid();
231
232 cifs_sb = CIFS_SB(inode->i_sb);
233 pTcon = cifs_sb->tcon;
234
Steve French7f573562005-08-30 11:32:14 -0700235 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000237 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +0530238 rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 FreeXid(xid);
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +0530240 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
Joe Perchesb6b38f72010-04-21 03:50:45 +0000243 cFYI(1, "Full path: %s", full_path);
244 cFYI(1, "symname is %s", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 /* BB what if DFS and this volume is on different share? BB */
Steve Frenchc18c8422007-07-18 23:21:09 +0000247 if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 rc = CIFSUnixCreateSymLink(xid, pTcon, full_path, symname,
249 cifs_sb->local_nls);
250 /* else
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000251 rc = CIFSCreateReparseSymLink(xid, pTcon, fromName, toName,
252 cifs_sb_target->local_nls); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 if (rc == 0) {
Steve Frenchc18c8422007-07-18 23:21:09 +0000255 if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 rc = cifs_get_inode_info_unix(&newinode, full_path,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000257 inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 else
259 rc = cifs_get_inode_info(&newinode, full_path, NULL,
Steve French8b1327f2008-03-14 22:37:16 +0000260 inode->i_sb, xid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 if (rc != 0) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000263 cFYI(1, "Create symlink ok, getinodeinfo fail rc = %d",
264 rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 } else {
Steve Frenchb92327f2005-08-22 20:09:43 -0700266 if (pTcon->nocase)
267 direntry->d_op = &cifs_ci_dentry_ops;
268 else
269 direntry->d_op = &cifs_dentry_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 d_instantiate(direntry, newinode);
271 }
272 }
273
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800274 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 FreeXid(xid);
276 return rc;
277}
278
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700279void cifs_put_link(struct dentry *direntry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
281 char *p = nd_get_link(nd);
282 if (!IS_ERR(p))
283 kfree(p);
284}