1 // SPDX-License-Identifier: LGPL-2.1
4 * Copyright (C) International Business Machines Corp., 2002,2008
9 #include <linux/stat.h>
10 #include <linux/slab.h>
11 #include <linux/namei.h>
15 #include "cifsproto.h"
16 #include "cifs_debug.h"
17 #include "cifs_fs_sb.h"
18 #include "cifs_unicode.h"
19 #include "smb2proto.h"
20 #include "cifs_ioctl.h"
23 * M-F Symlink Functions - Begin
26 #define CIFS_MF_SYMLINK_LEN_OFFSET (4+1)
27 #define CIFS_MF_SYMLINK_MD5_OFFSET (CIFS_MF_SYMLINK_LEN_OFFSET+(4+1))
28 #define CIFS_MF_SYMLINK_LINK_OFFSET (CIFS_MF_SYMLINK_MD5_OFFSET+(32+1))
29 #define CIFS_MF_SYMLINK_LINK_MAXLEN (1024)
30 #define CIFS_MF_SYMLINK_FILE_SIZE \
31 (CIFS_MF_SYMLINK_LINK_OFFSET + CIFS_MF_SYMLINK_LINK_MAXLEN)
33 #define CIFS_MF_SYMLINK_LEN_FORMAT "XSym\n%04u\n"
34 #define CIFS_MF_SYMLINK_MD5_FORMAT "%16phN\n"
35 #define CIFS_MF_SYMLINK_MD5_ARGS(md5_hash) md5_hash
38 symlink_hash(unsigned int link_len, const char *link_str, u8 *md5_hash)
41 struct crypto_shash *md5 = NULL;
42 struct sdesc *sdescmd5 = NULL;
44 rc = cifs_alloc_hash("md5", &md5, &sdescmd5);
46 goto symlink_hash_err;
48 rc = crypto_shash_init(&sdescmd5->shash);
50 cifs_dbg(VFS, "%s: Could not init md5 shash\n", __func__);
51 goto symlink_hash_err;
53 rc = crypto_shash_update(&sdescmd5->shash, link_str, link_len);
55 cifs_dbg(VFS, "%s: Could not update with link_str\n", __func__);
56 goto symlink_hash_err;
58 rc = crypto_shash_final(&sdescmd5->shash, md5_hash);
60 cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__);
63 cifs_free_hash(&md5, &sdescmd5);
68 parse_mf_symlink(const u8 *buf, unsigned int buf_len, unsigned int *_link_len,
72 unsigned int link_len;
78 if (buf_len != CIFS_MF_SYMLINK_FILE_SIZE)
81 md5_str1 = (const char *)&buf[CIFS_MF_SYMLINK_MD5_OFFSET];
82 link_str = (const char *)&buf[CIFS_MF_SYMLINK_LINK_OFFSET];
84 rc = sscanf(buf, CIFS_MF_SYMLINK_LEN_FORMAT, &link_len);
88 if (link_len > CIFS_MF_SYMLINK_LINK_MAXLEN)
91 rc = symlink_hash(link_len, link_str, md5_hash);
93 cifs_dbg(FYI, "%s: MD5 hash failure: %d\n", __func__, rc);
97 scnprintf(md5_str2, sizeof(md5_str2),
98 CIFS_MF_SYMLINK_MD5_FORMAT,
99 CIFS_MF_SYMLINK_MD5_ARGS(md5_hash));
101 if (strncmp(md5_str1, md5_str2, 17) != 0)
105 *_link_str = kstrndup(link_str, link_len, GFP_KERNEL);
110 *_link_len = link_len;
115 format_mf_symlink(u8 *buf, unsigned int buf_len, const char *link_str)
118 unsigned int link_len;
122 if (buf_len != CIFS_MF_SYMLINK_FILE_SIZE)
125 link_len = strlen(link_str);
127 if (link_len > CIFS_MF_SYMLINK_LINK_MAXLEN)
128 return -ENAMETOOLONG;
130 rc = symlink_hash(link_len, link_str, md5_hash);
132 cifs_dbg(FYI, "%s: MD5 hash failure: %d\n", __func__, rc);
136 scnprintf(buf, buf_len,
137 CIFS_MF_SYMLINK_LEN_FORMAT CIFS_MF_SYMLINK_MD5_FORMAT,
139 CIFS_MF_SYMLINK_MD5_ARGS(md5_hash));
141 ofs = CIFS_MF_SYMLINK_LINK_OFFSET;
142 memcpy(buf + ofs, link_str, link_len);
145 if (ofs < CIFS_MF_SYMLINK_FILE_SIZE) {
150 while (ofs < CIFS_MF_SYMLINK_FILE_SIZE) {
159 couldbe_mf_symlink(const struct cifs_fattr *fattr)
161 if (!S_ISREG(fattr->cf_mode))
162 /* it's not a symlink */
165 if (fattr->cf_eof != CIFS_MF_SYMLINK_FILE_SIZE)
166 /* it's not a symlink */
173 create_mf_symlink(const unsigned int xid, struct cifs_tcon *tcon,
174 struct cifs_sb_info *cifs_sb, const char *fromName,
179 unsigned int bytes_written = 0;
181 buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL);
185 rc = format_mf_symlink(buf, CIFS_MF_SYMLINK_FILE_SIZE, toName);
189 if (tcon->ses->server->ops->create_mf_symlink)
190 rc = tcon->ses->server->ops->create_mf_symlink(xid, tcon,
191 cifs_sb, fromName, buf, &bytes_written);
198 if (bytes_written != CIFS_MF_SYMLINK_FILE_SIZE)
206 query_mf_symlink(const unsigned int xid, struct cifs_tcon *tcon,
207 struct cifs_sb_info *cifs_sb, const unsigned char *path,
212 unsigned int link_len = 0;
213 unsigned int bytes_read = 0;
215 buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL);
219 if (tcon->ses->server->ops->query_mf_symlink)
220 rc = tcon->ses->server->ops->query_mf_symlink(xid, tcon,
221 cifs_sb, path, buf, &bytes_read);
228 if (bytes_read == 0) { /* not a symlink */
233 rc = parse_mf_symlink(buf, bytes_read, &link_len, symlinkinfo);
240 check_mf_symlink(unsigned int xid, struct cifs_tcon *tcon,
241 struct cifs_sb_info *cifs_sb, struct cifs_fattr *fattr,
242 const unsigned char *path)
246 unsigned int link_len = 0;
247 unsigned int bytes_read = 0;
249 if (!couldbe_mf_symlink(fattr))
250 /* it's not a symlink */
253 buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL);
257 if (tcon->ses->server->ops->query_mf_symlink)
258 rc = tcon->ses->server->ops->query_mf_symlink(xid, tcon,
259 cifs_sb, path, buf, &bytes_read);
266 if (bytes_read == 0) /* not a symlink */
269 rc = parse_mf_symlink(buf, bytes_read, &link_len, NULL);
271 /* it's not a symlink */
279 /* it is a symlink */
280 fattr->cf_eof = link_len;
281 fattr->cf_mode &= ~S_IFMT;
282 fattr->cf_mode |= S_IFLNK | S_IRWXU | S_IRWXG | S_IRWXO;
283 fattr->cf_dtype = DT_LNK;
290 * SMB 1.0 Protocol specific functions
294 cifs_query_mf_symlink(unsigned int xid, struct cifs_tcon *tcon,
295 struct cifs_sb_info *cifs_sb, const unsigned char *path,
296 char *pbuf, unsigned int *pbytes_read)
301 struct cifs_open_parms oparms;
302 struct cifs_io_parms io_parms = {0};
303 int buf_type = CIFS_NO_BUFFER;
304 FILE_ALL_INFO file_info;
307 oparms.cifs_sb = cifs_sb;
308 oparms.desired_access = GENERIC_READ;
309 oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR);
310 oparms.disposition = FILE_OPEN;
313 oparms.reconnect = false;
315 rc = CIFS_open(xid, &oparms, &oplock, &file_info);
319 if (file_info.EndOfFile != cpu_to_le64(CIFS_MF_SYMLINK_FILE_SIZE)) {
321 /* it's not a symlink */
325 io_parms.netfid = fid.netfid;
326 io_parms.pid = current->tgid;
327 io_parms.tcon = tcon;
329 io_parms.length = CIFS_MF_SYMLINK_FILE_SIZE;
331 rc = CIFSSMBRead(xid, &io_parms, pbytes_read, &pbuf, &buf_type);
333 CIFSSMBClose(xid, tcon, fid.netfid);
338 cifs_create_mf_symlink(unsigned int xid, struct cifs_tcon *tcon,
339 struct cifs_sb_info *cifs_sb, const unsigned char *path,
340 char *pbuf, unsigned int *pbytes_written)
345 struct cifs_open_parms oparms;
346 struct cifs_io_parms io_parms = {0};
349 oparms.cifs_sb = cifs_sb;
350 oparms.desired_access = GENERIC_WRITE;
351 oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR);
352 oparms.disposition = FILE_CREATE;
355 oparms.reconnect = false;
357 rc = CIFS_open(xid, &oparms, &oplock, NULL);
361 io_parms.netfid = fid.netfid;
362 io_parms.pid = current->tgid;
363 io_parms.tcon = tcon;
365 io_parms.length = CIFS_MF_SYMLINK_FILE_SIZE;
367 rc = CIFSSMBWrite(xid, &io_parms, pbytes_written, pbuf);
368 CIFSSMBClose(xid, tcon, fid.netfid);
373 * SMB 2.1/SMB3 Protocol specific functions
376 smb3_query_mf_symlink(unsigned int xid, struct cifs_tcon *tcon,
377 struct cifs_sb_info *cifs_sb, const unsigned char *path,
378 char *pbuf, unsigned int *pbytes_read)
382 struct cifs_open_parms oparms;
383 struct cifs_io_parms io_parms = {0};
384 int buf_type = CIFS_NO_BUFFER;
386 __u8 oplock = SMB2_OPLOCK_LEVEL_NONE;
387 struct smb2_file_all_info *pfile_info = NULL;
390 oparms.cifs_sb = cifs_sb;
391 oparms.desired_access = GENERIC_READ;
392 oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR);
393 oparms.disposition = FILE_OPEN;
395 oparms.reconnect = false;
397 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb);
398 if (utf16_path == NULL)
401 pfile_info = kzalloc(sizeof(struct smb2_file_all_info) + PATH_MAX * 2,
404 if (pfile_info == NULL) {
409 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, pfile_info, NULL,
412 goto qmf_out_open_fail;
414 if (pfile_info->EndOfFile != cpu_to_le64(CIFS_MF_SYMLINK_FILE_SIZE)) {
415 /* it's not a symlink */
416 rc = -ENOENT; /* Is there a better rc to return? */
420 io_parms.netfid = fid.netfid;
421 io_parms.pid = current->tgid;
422 io_parms.tcon = tcon;
424 io_parms.length = CIFS_MF_SYMLINK_FILE_SIZE;
425 io_parms.persistent_fid = fid.persistent_fid;
426 io_parms.volatile_fid = fid.volatile_fid;
427 rc = SMB2_read(xid, &io_parms, pbytes_read, &pbuf, &buf_type);
429 SMB2_close(xid, tcon, fid.persistent_fid, fid.volatile_fid);
437 smb3_create_mf_symlink(unsigned int xid, struct cifs_tcon *tcon,
438 struct cifs_sb_info *cifs_sb, const unsigned char *path,
439 char *pbuf, unsigned int *pbytes_written)
443 struct cifs_open_parms oparms;
444 struct cifs_io_parms io_parms = {0};
446 __u8 oplock = SMB2_OPLOCK_LEVEL_NONE;
449 cifs_dbg(FYI, "%s: path: %s\n", __func__, path);
451 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb);
456 oparms.cifs_sb = cifs_sb;
457 oparms.desired_access = GENERIC_WRITE;
458 oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR);
459 oparms.disposition = FILE_CREATE;
461 oparms.reconnect = false;
463 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL,
470 io_parms.netfid = fid.netfid;
471 io_parms.pid = current->tgid;
472 io_parms.tcon = tcon;
474 io_parms.length = CIFS_MF_SYMLINK_FILE_SIZE;
475 io_parms.persistent_fid = fid.persistent_fid;
476 io_parms.volatile_fid = fid.volatile_fid;
478 /* iov[0] is reserved for smb header */
479 iov[1].iov_base = pbuf;
480 iov[1].iov_len = CIFS_MF_SYMLINK_FILE_SIZE;
482 rc = SMB2_write(xid, &io_parms, pbytes_written, iov, 1);
484 /* Make sure we wrote all of the symlink data */
485 if ((rc == 0) && (*pbytes_written != CIFS_MF_SYMLINK_FILE_SIZE))
488 SMB2_close(xid, tcon, fid.persistent_fid, fid.volatile_fid);
495 * M-F Symlink Functions - End
499 cifs_hardlink(struct dentry *old_file, struct inode *inode,
500 struct dentry *direntry)
504 const char *from_name, *to_name;
506 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
507 struct tcon_link *tlink;
508 struct cifs_tcon *tcon;
509 struct TCP_Server_Info *server;
510 struct cifsInodeInfo *cifsInode;
512 if (unlikely(cifs_forced_shutdown(cifs_sb)))
515 tlink = cifs_sb_tlink(cifs_sb);
517 return PTR_ERR(tlink);
518 tcon = tlink_tcon(tlink);
521 page1 = alloc_dentry_path();
522 page2 = alloc_dentry_path();
524 from_name = build_path_from_dentry(old_file, page1);
525 if (IS_ERR(from_name)) {
526 rc = PTR_ERR(from_name);
529 to_name = build_path_from_dentry(direntry, page2);
530 if (IS_ERR(to_name)) {
531 rc = PTR_ERR(to_name);
536 rc = CIFSUnixCreateHardLink(xid, tcon, from_name, to_name,
538 cifs_remap(cifs_sb));
540 server = tcon->ses->server;
541 if (!server->ops->create_hardlink) {
545 rc = server->ops->create_hardlink(xid, tcon, from_name, to_name,
547 if ((rc == -EIO) || (rc == -EINVAL))
551 d_drop(direntry); /* force new lookup from server of target */
554 * if source file is cached (oplocked) revalidate will not go to server
555 * until the file is closed or oplock broken so update nlinks locally
557 if (d_really_is_positive(old_file)) {
558 cifsInode = CIFS_I(d_inode(old_file));
560 spin_lock(&d_inode(old_file)->i_lock);
561 inc_nlink(d_inode(old_file));
562 spin_unlock(&d_inode(old_file)->i_lock);
565 * parent dir timestamps will update from srv within a
566 * second, would it really be worth it to set the parent
567 * dir cifs inode time to zero to force revalidate
568 * (faster) for it too?
572 * if not oplocked will force revalidate to get info on source
573 * file from srv. Note Samba server prior to 4.2 has bug -
574 * not updating src file ctime on hardlinks but Windows servers
580 * Will update parent dir timestamps from srv within a second.
581 * Would it really be worth it to set the parent dir (cifs
582 * inode) time field to zero to force revalidate on parent
583 * directory faster ie
585 * CIFS_I(inode)->time = 0;
590 free_dentry_path(page1);
591 free_dentry_path(page2);
593 cifs_put_tlink(tlink);
598 cifs_get_link(struct dentry *direntry, struct inode *inode,
599 struct delayed_call *done)
603 const char *full_path;
605 char *target_path = NULL;
606 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
607 struct tcon_link *tlink = NULL;
608 struct cifs_tcon *tcon;
609 struct TCP_Server_Info *server;
612 return ERR_PTR(-ECHILD);
616 tlink = cifs_sb_tlink(cifs_sb);
619 return ERR_CAST(tlink);
621 tcon = tlink_tcon(tlink);
622 server = tcon->ses->server;
624 page = alloc_dentry_path();
625 full_path = build_path_from_dentry(direntry, page);
626 if (IS_ERR(full_path)) {
628 cifs_put_tlink(tlink);
629 free_dentry_path(page);
630 return ERR_CAST(full_path);
633 cifs_dbg(FYI, "Full path: %s inode = 0x%p\n", full_path, inode);
637 * First try Minshall+French Symlinks, if configured
638 * and fallback to UNIX Extensions Symlinks.
640 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
641 rc = query_mf_symlink(xid, tcon, cifs_sb, full_path,
644 if (rc != 0 && server->ops->query_symlink) {
645 struct cifsInodeInfo *cifsi = CIFS_I(inode);
646 bool reparse_point = false;
648 if (cifsi->cifsAttrs & ATTR_REPARSE)
649 reparse_point = true;
651 rc = server->ops->query_symlink(xid, tcon, cifs_sb, full_path,
652 &target_path, reparse_point);
655 free_dentry_path(page);
657 cifs_put_tlink(tlink);
662 set_delayed_call(done, kfree_link, target_path);
667 cifs_symlink(struct user_namespace *mnt_userns, struct inode *inode,
668 struct dentry *direntry, const char *symname)
670 int rc = -EOPNOTSUPP;
672 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
673 struct tcon_link *tlink;
674 struct cifs_tcon *pTcon;
675 const char *full_path;
677 struct inode *newinode = NULL;
679 if (unlikely(cifs_forced_shutdown(cifs_sb)))
682 page = alloc_dentry_path();
688 tlink = cifs_sb_tlink(cifs_sb);
693 pTcon = tlink_tcon(tlink);
695 full_path = build_path_from_dentry(direntry, page);
696 if (IS_ERR(full_path)) {
697 rc = PTR_ERR(full_path);
701 cifs_dbg(FYI, "Full path: %s\n", full_path);
702 cifs_dbg(FYI, "symname is %s\n", symname);
704 /* BB what if DFS and this volume is on different share? BB */
705 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
706 rc = create_mf_symlink(xid, pTcon, cifs_sb, full_path, symname);
707 else if (pTcon->unix_ext)
708 rc = CIFSUnixCreateSymLink(xid, pTcon, full_path, symname,
710 cifs_remap(cifs_sb));
712 rc = CIFSCreateReparseSymLink(xid, pTcon, fromName, toName,
713 cifs_sb_target->local_nls); */
716 if (pTcon->posix_extensions)
717 rc = smb311_posix_get_inode_info(&newinode, full_path, inode->i_sb, xid);
718 else if (pTcon->unix_ext)
719 rc = cifs_get_inode_info_unix(&newinode, full_path,
722 rc = cifs_get_inode_info(&newinode, full_path, NULL,
723 inode->i_sb, xid, NULL);
726 cifs_dbg(FYI, "Create symlink ok, getinodeinfo fail rc = %d\n",
729 d_instantiate(direntry, newinode);
733 free_dentry_path(page);
734 cifs_put_tlink(tlink);