4 * Copyright (C) International Business Machines Corp., 2002,2008
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.
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.
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
22 #include <linux/stat.h>
23 #include <linux/slab.h>
24 #include <linux/namei.h>
28 #include "cifsproto.h"
29 #include "cifs_debug.h"
30 #include "cifs_fs_sb.h"
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)
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]
50 CIFSParseMFSymlink(const u8 *buf,
52 unsigned int *_link_len,
56 unsigned int link_len;
59 struct MD5Context md5_ctx;
63 if (buf_len != CIFS_MF_SYMLINK_FILE_SIZE)
66 md5_str1 = (const char *)&buf[CIFS_MF_SYMLINK_MD5_OFFSET];
67 link_str = (const char *)&buf[CIFS_MF_SYMLINK_LINK_OFFSET];
69 rc = sscanf(buf, CIFS_MF_SYMLINK_LEN_FORMAT, &link_len);
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);
77 snprintf(md5_str2, sizeof(md5_str2),
78 CIFS_MF_SYMLINK_MD5_FORMAT,
79 CIFS_MF_SYMLINK_MD5_ARGS(md5_hash));
81 if (strncmp(md5_str1, md5_str2, 17) != 0)
85 *_link_str = kstrndup(link_str, link_len, GFP_KERNEL);
90 *_link_len = link_len;
95 CIFSFormatMFSymlink(u8 *buf, unsigned int buf_len, const char *link_str)
97 unsigned int link_len;
99 struct MD5Context md5_ctx;
102 if (buf_len != CIFS_MF_SYMLINK_FILE_SIZE)
105 link_len = strlen(link_str);
107 if (link_len > CIFS_MF_SYMLINK_LINK_MAXLEN)
108 return -ENAMETOOLONG;
110 cifs_MD5_init(&md5_ctx);
111 cifs_MD5_update(&md5_ctx, (const u8 *)link_str, link_len);
112 cifs_MD5_final(md5_hash, &md5_ctx);
114 snprintf(buf, buf_len,
115 CIFS_MF_SYMLINK_LEN_FORMAT CIFS_MF_SYMLINK_MD5_FORMAT,
117 CIFS_MF_SYMLINK_MD5_ARGS(md5_hash));
119 ofs = CIFS_MF_SYMLINK_LINK_OFFSET;
120 memcpy(buf + ofs, link_str, link_len);
123 if (ofs < CIFS_MF_SYMLINK_FILE_SIZE) {
128 while (ofs < CIFS_MF_SYMLINK_FILE_SIZE) {
137 CIFSCreateMFSymLink(const int xid, struct cifsTconInfo *tcon,
138 const char *fromName, const char *toName,
139 const struct nls_table *nls_codepage, int remap)
145 unsigned int bytes_written = 0;
147 buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL);
151 rc = CIFSFormatMFSymlink(buf, CIFS_MF_SYMLINK_FILE_SIZE, toName);
157 rc = CIFSSMBOpen(xid, tcon, fromName, FILE_CREATE, GENERIC_WRITE,
158 CREATE_NOT_DIR, &netfid, &oplock, NULL,
159 nls_codepage, remap);
165 rc = CIFSSMBWrite(xid, tcon, netfid,
166 CIFS_MF_SYMLINK_FILE_SIZE /* length */,
168 &bytes_written, buf, NULL, 0);
169 CIFSSMBClose(xid, tcon, netfid);
174 if (bytes_written != CIFS_MF_SYMLINK_FILE_SIZE)
181 CIFSQueryMFSymLink(const int xid, struct cifsTconInfo *tcon,
182 const unsigned char *searchName, char **symlinkinfo,
183 const struct nls_table *nls_codepage, int remap)
190 unsigned int bytes_read = 0;
191 int buf_type = CIFS_NO_BUFFER;
192 unsigned int link_len = 0;
193 FILE_ALL_INFO file_info;
195 rc = CIFSSMBOpen(xid, tcon, searchName, FILE_OPEN, GENERIC_READ,
196 CREATE_NOT_DIR, &netfid, &oplock, &file_info,
197 nls_codepage, remap);
201 if (file_info.EndOfFile != CIFS_MF_SYMLINK_FILE_SIZE) {
202 CIFSSMBClose(xid, tcon, netfid);
203 /* it's not a symlink */
207 buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL);
212 rc = CIFSSMBRead(xid, tcon, netfid,
213 CIFS_MF_SYMLINK_FILE_SIZE /* length */,
215 &bytes_read, &pbuf, &buf_type);
216 CIFSSMBClose(xid, tcon, netfid);
222 rc = CIFSParseMFSymlink(buf, bytes_read, &link_len, symlinkinfo);
231 CIFSCouldBeMFSymlink(const struct cifs_fattr *fattr)
233 if (!(fattr->cf_mode & S_IFREG))
234 /* it's not a symlink */
237 if (fattr->cf_eof != CIFS_MF_SYMLINK_FILE_SIZE)
238 /* it's not a symlink */
245 CIFSCheckMFSymlink(struct cifs_fattr *fattr,
246 const unsigned char *path,
247 struct cifs_sb_info *cifs_sb, int xid)
252 struct tcon_link *tlink;
253 struct cifsTconInfo *pTcon;
256 unsigned int bytes_read = 0;
257 int buf_type = CIFS_NO_BUFFER;
258 unsigned int link_len = 0;
259 FILE_ALL_INFO file_info;
261 if (!CIFSCouldBeMFSymlink(fattr))
262 /* it's not a symlink */
265 tlink = cifs_sb_tlink(cifs_sb);
267 return PTR_ERR(tlink);
268 pTcon = tlink_tcon(tlink);
270 rc = CIFSSMBOpen(xid, pTcon, path, FILE_OPEN, GENERIC_READ,
271 CREATE_NOT_DIR, &netfid, &oplock, &file_info,
273 cifs_sb->mnt_cifs_flags &
274 CIFS_MOUNT_MAP_SPECIAL_CHR);
278 if (file_info.EndOfFile != CIFS_MF_SYMLINK_FILE_SIZE) {
279 CIFSSMBClose(xid, pTcon, netfid);
280 /* it's not a symlink */
284 buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL);
291 rc = CIFSSMBRead(xid, pTcon, netfid,
292 CIFS_MF_SYMLINK_FILE_SIZE /* length */,
294 &bytes_read, &pbuf, &buf_type);
295 CIFSSMBClose(xid, pTcon, netfid);
301 rc = CIFSParseMFSymlink(buf, bytes_read, &link_len, NULL);
304 /* it's not a symlink */
312 /* it is a symlink */
313 fattr->cf_eof = link_len;
314 fattr->cf_mode &= ~S_IFMT;
315 fattr->cf_mode |= S_IFLNK | S_IRWXU | S_IRWXG | S_IRWXO;
316 fattr->cf_dtype = DT_LNK;
318 cifs_put_tlink(tlink);
323 cifs_hardlink(struct dentry *old_file, struct inode *inode,
324 struct dentry *direntry)
328 char *fromName = NULL;
330 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
331 struct tcon_link *tlink;
332 struct cifsTconInfo *pTcon;
333 struct cifsInodeInfo *cifsInode;
335 tlink = cifs_sb_tlink(cifs_sb);
337 return PTR_ERR(tlink);
338 pTcon = tlink_tcon(tlink);
342 fromName = build_path_from_dentry(old_file);
343 toName = build_path_from_dentry(direntry);
344 if ((fromName == NULL) || (toName == NULL)) {
350 rc = CIFSUnixCreateHardLink(xid, pTcon, fromName, toName,
352 cifs_sb->mnt_cifs_flags &
353 CIFS_MOUNT_MAP_SPECIAL_CHR);
355 rc = CIFSCreateHardLink(xid, pTcon, fromName, toName,
357 cifs_sb->mnt_cifs_flags &
358 CIFS_MOUNT_MAP_SPECIAL_CHR);
359 if ((rc == -EIO) || (rc == -EINVAL))
363 d_drop(direntry); /* force new lookup from server of target */
365 /* if source file is cached (oplocked) revalidate will not go to server
366 until the file is closed or oplock broken so update nlinks locally */
367 if (old_file->d_inode) {
368 cifsInode = CIFS_I(old_file->d_inode);
370 old_file->d_inode->i_nlink++;
371 /* BB should we make this contingent on superblock flag NOATIME? */
372 /* old_file->d_inode->i_ctime = CURRENT_TIME;*/
373 /* parent dir timestamps will update from srv
374 within a second, would it really be worth it
375 to set the parent dir cifs inode time to zero
376 to force revalidate (faster) for it too? */
378 /* if not oplocked will force revalidate to get info
379 on source file from srv */
382 /* Will update parent dir timestamps from srv within a second.
383 Would it really be worth it to set the parent dir (cifs
384 inode) time field to zero to force revalidate on parent
386 CIFS_I(inode)->time = 0; */
393 cifs_put_tlink(tlink);
398 cifs_follow_link(struct dentry *direntry, struct nameidata *nd)
400 struct inode *inode = direntry->d_inode;
403 char *full_path = NULL;
404 char *target_path = NULL;
405 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
406 struct tcon_link *tlink = NULL;
407 struct cifsTconInfo *tcon;
411 tlink = cifs_sb_tlink(cifs_sb);
417 tcon = tlink_tcon(tlink);
420 * For now, we just handle symlinks with unix extensions enabled.
421 * Eventually we should handle NTFS reparse points, and MacOS
422 * symlink support. For instance...
424 * rc = CIFSSMBQueryReparseLinkInfo(...)
426 * For now, just return -EACCES when the server doesn't support posix
427 * extensions. Note that we still allow querying symlinks when posix
428 * extensions are manually disabled. We could disable these as well
429 * but there doesn't seem to be any harm in allowing the client to
432 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
433 && !(tcon->ses->capabilities & CAP_UNIX)) {
438 full_path = build_path_from_dentry(direntry);
442 cFYI(1, "Full path: %s inode = 0x%p", full_path, inode);
446 * First try Minshall+French Symlinks, if configured
447 * and fallback to UNIX Extensions Symlinks.
449 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
450 rc = CIFSQueryMFSymLink(xid, tcon, full_path, &target_path,
452 cifs_sb->mnt_cifs_flags &
453 CIFS_MOUNT_MAP_SPECIAL_CHR);
455 if ((rc != 0) && (tcon->ses->capabilities & CAP_UNIX))
456 rc = CIFSSMBUnixQuerySymLink(xid, tcon, full_path, &target_path,
463 target_path = ERR_PTR(rc);
468 cifs_put_tlink(tlink);
469 nd_set_link(nd, target_path);
474 cifs_symlink(struct inode *inode, struct dentry *direntry, const char *symname)
476 int rc = -EOPNOTSUPP;
478 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
479 struct tcon_link *tlink;
480 struct cifsTconInfo *pTcon;
481 char *full_path = NULL;
482 struct inode *newinode = NULL;
486 tlink = cifs_sb_tlink(cifs_sb);
491 pTcon = tlink_tcon(tlink);
493 full_path = build_path_from_dentry(direntry);
494 if (full_path == NULL) {
499 cFYI(1, "Full path: %s", full_path);
500 cFYI(1, "symname is %s", symname);
502 /* BB what if DFS and this volume is on different share? BB */
503 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
504 rc = CIFSCreateMFSymLink(xid, pTcon, full_path, symname,
506 cifs_sb->mnt_cifs_flags &
507 CIFS_MOUNT_MAP_SPECIAL_CHR);
508 else if (pTcon->unix_ext)
509 rc = CIFSUnixCreateSymLink(xid, pTcon, full_path, symname,
512 rc = CIFSCreateReparseSymLink(xid, pTcon, fromName, toName,
513 cifs_sb_target->local_nls); */
517 rc = cifs_get_inode_info_unix(&newinode, full_path,
520 rc = cifs_get_inode_info(&newinode, full_path, NULL,
521 inode->i_sb, xid, NULL);
524 cFYI(1, "Create symlink ok, getinodeinfo fail rc = %d",
528 direntry->d_op = &cifs_ci_dentry_ops;
530 direntry->d_op = &cifs_dentry_ops;
531 d_instantiate(direntry, newinode);
536 cifs_put_tlink(tlink);
541 void cifs_put_link(struct dentry *direntry, struct nameidata *nd, void *cookie)
543 char *p = nd_get_link(nd);