blob: 77dbd55795d81a484cefe2842b0047fee16ec67b [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
32#define CIFS_MF_SYMLINK_LEN_OFFSET (4+1)
33#define CIFS_MF_SYMLINK_MD5_OFFSET (CIFS_MF_SYMLINK_LEN_OFFSET+(4+1))
34#define CIFS_MF_SYMLINK_LINK_OFFSET (CIFS_MF_SYMLINK_MD5_OFFSET+(32+1))
35#define CIFS_MF_SYMLINK_LINK_MAXLEN (1024)
36#define CIFS_MF_SYMLINK_FILE_SIZE \
37 (CIFS_MF_SYMLINK_LINK_OFFSET + CIFS_MF_SYMLINK_LINK_MAXLEN)
38
39#define CIFS_MF_SYMLINK_LEN_FORMAT "XSym\n%04u\n"
40#define CIFS_MF_SYMLINK_MD5_FORMAT \
41 "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n"
42#define CIFS_MF_SYMLINK_MD5_ARGS(md5_hash) \
43 md5_hash[0], md5_hash[1], md5_hash[2], md5_hash[3], \
44 md5_hash[4], md5_hash[5], md5_hash[6], md5_hash[7], \
45 md5_hash[8], md5_hash[9], md5_hash[10], md5_hash[11],\
46 md5_hash[12], md5_hash[13], md5_hash[14], md5_hash[15]
47
48static int
Steve French93c100c2011-01-25 19:28:43 +000049symlink_hash(unsigned int link_len, const char *link_str, u8 *md5_hash)
50{
51 int rc;
52 unsigned int size;
53 struct crypto_shash *md5;
54 struct sdesc *sdescmd5;
55
56 md5 = crypto_alloc_shash("md5", 0, 0);
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -060057 if (IS_ERR(md5)) {
Jeff Laytonffeb4142011-01-29 07:03:02 -050058 rc = PTR_ERR(md5);
Joe Perchesf96637b2013-05-04 22:12:25 -050059 cifs_dbg(VFS, "%s: Crypto md5 allocation error %d\n",
60 __func__, rc);
Jeff Laytonffeb4142011-01-29 07:03:02 -050061 return rc;
Steve French93c100c2011-01-25 19:28:43 +000062 }
63 size = sizeof(struct shash_desc) + crypto_shash_descsize(md5);
64 sdescmd5 = kmalloc(size, GFP_KERNEL);
65 if (!sdescmd5) {
66 rc = -ENOMEM;
Steve French93c100c2011-01-25 19:28:43 +000067 goto symlink_hash_err;
68 }
69 sdescmd5->shash.tfm = md5;
70 sdescmd5->shash.flags = 0x0;
71
72 rc = crypto_shash_init(&sdescmd5->shash);
73 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -050074 cifs_dbg(VFS, "%s: Could not init md5 shash\n", __func__);
Steve French93c100c2011-01-25 19:28:43 +000075 goto symlink_hash_err;
76 }
Shirish Pargaonkar14cae322011-06-20 16:14:03 -050077 rc = crypto_shash_update(&sdescmd5->shash, link_str, link_len);
78 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -050079 cifs_dbg(VFS, "%s: Could not update with link_str\n", __func__);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -050080 goto symlink_hash_err;
81 }
Steve French93c100c2011-01-25 19:28:43 +000082 rc = crypto_shash_final(&sdescmd5->shash, md5_hash);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -050083 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -050084 cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__);
Steve French93c100c2011-01-25 19:28:43 +000085
86symlink_hash_err:
87 crypto_free_shash(md5);
88 kfree(sdescmd5);
89
90 return rc;
91}
92
93static int
Sachin Prabhucb084b12013-11-25 17:09:50 +000094parse_mf_symlink(const u8 *buf, unsigned int buf_len, unsigned int *_link_len,
95 char **_link_str)
Stefan Metzmacherc69c1b62010-07-31 09:14:16 +020096{
97 int rc;
98 unsigned int link_len;
99 const char *md5_str1;
100 const char *link_str;
Stefan Metzmacherc69c1b62010-07-31 09:14:16 +0200101 u8 md5_hash[16];
102 char md5_str2[34];
103
104 if (buf_len != CIFS_MF_SYMLINK_FILE_SIZE)
105 return -EINVAL;
106
107 md5_str1 = (const char *)&buf[CIFS_MF_SYMLINK_MD5_OFFSET];
108 link_str = (const char *)&buf[CIFS_MF_SYMLINK_LINK_OFFSET];
109
110 rc = sscanf(buf, CIFS_MF_SYMLINK_LEN_FORMAT, &link_len);
111 if (rc != 1)
112 return -EINVAL;
113
Steve French93c100c2011-01-25 19:28:43 +0000114 rc = symlink_hash(link_len, link_str, md5_hash);
115 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500116 cifs_dbg(FYI, "%s: MD5 hash failure: %d\n", __func__, rc);
Steve French93c100c2011-01-25 19:28:43 +0000117 return rc;
118 }
Stefan Metzmacherc69c1b62010-07-31 09:14:16 +0200119
120 snprintf(md5_str2, sizeof(md5_str2),
121 CIFS_MF_SYMLINK_MD5_FORMAT,
122 CIFS_MF_SYMLINK_MD5_ARGS(md5_hash));
123
124 if (strncmp(md5_str1, md5_str2, 17) != 0)
125 return -EINVAL;
126
127 if (_link_str) {
128 *_link_str = kstrndup(link_str, link_len, GFP_KERNEL);
129 if (!*_link_str)
130 return -ENOMEM;
131 }
132
133 *_link_len = link_len;
134 return 0;
135}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Stefan Metzmacher0fd43ae2010-08-05 21:13:44 +0200137static int
Sachin Prabhucb084b12013-11-25 17:09:50 +0000138format_mf_symlink(u8 *buf, unsigned int buf_len, const char *link_str)
Stefan Metzmacher18bddd12010-08-03 11:24:22 +0200139{
Steve French93c100c2011-01-25 19:28:43 +0000140 int rc;
Stefan Metzmacher18bddd12010-08-03 11:24:22 +0200141 unsigned int link_len;
142 unsigned int ofs;
Stefan Metzmacher18bddd12010-08-03 11:24:22 +0200143 u8 md5_hash[16];
144
145 if (buf_len != CIFS_MF_SYMLINK_FILE_SIZE)
146 return -EINVAL;
147
148 link_len = strlen(link_str);
149
150 if (link_len > CIFS_MF_SYMLINK_LINK_MAXLEN)
151 return -ENAMETOOLONG;
152
Steve French93c100c2011-01-25 19:28:43 +0000153 rc = symlink_hash(link_len, link_str, md5_hash);
154 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500155 cifs_dbg(FYI, "%s: MD5 hash failure: %d\n", __func__, rc);
Steve French93c100c2011-01-25 19:28:43 +0000156 return rc;
157 }
Stefan Metzmacher18bddd12010-08-03 11:24:22 +0200158
159 snprintf(buf, buf_len,
160 CIFS_MF_SYMLINK_LEN_FORMAT CIFS_MF_SYMLINK_MD5_FORMAT,
161 link_len,
162 CIFS_MF_SYMLINK_MD5_ARGS(md5_hash));
163
164 ofs = CIFS_MF_SYMLINK_LINK_OFFSET;
165 memcpy(buf + ofs, link_str, link_len);
166
167 ofs += link_len;
168 if (ofs < CIFS_MF_SYMLINK_FILE_SIZE) {
169 buf[ofs] = '\n';
170 ofs++;
171 }
172
173 while (ofs < CIFS_MF_SYMLINK_FILE_SIZE) {
174 buf[ofs] = ' ';
175 ofs++;
176 }
177
178 return 0;
179}
180
Stefan Metzmacher8713d012010-08-05 21:15:22 +0200181static int
Sachin Prabhucb084b12013-11-25 17:09:50 +0000182create_mf_symlink(const unsigned int xid, struct cifs_tcon *tcon,
Stefan Metzmacher8713d012010-08-05 21:15:22 +0200183 const char *fromName, const char *toName,
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500184 struct cifs_sb_info *cifs_sb)
Stefan Metzmacher8713d012010-08-05 21:15:22 +0200185{
186 int rc;
187 int oplock = 0;
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500188 int remap;
189 int create_options = CREATE_NOT_DIR;
Stefan Metzmacher8713d012010-08-05 21:15:22 +0200190 __u16 netfid = 0;
191 u8 *buf;
192 unsigned int bytes_written = 0;
Pavel Shilovskyfa2989f2011-05-26 10:01:59 +0400193 struct cifs_io_parms io_parms;
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500194 struct nls_table *nls_codepage;
195
196 nls_codepage = cifs_sb->local_nls;
197 remap = cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR;
Stefan Metzmacher8713d012010-08-05 21:15:22 +0200198
199 buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL);
200 if (!buf)
201 return -ENOMEM;
202
Sachin Prabhucb084b12013-11-25 17:09:50 +0000203 rc = format_mf_symlink(buf, CIFS_MF_SYMLINK_FILE_SIZE, toName);
Stefan Metzmacher8713d012010-08-05 21:15:22 +0200204 if (rc != 0) {
205 kfree(buf);
206 return rc;
207 }
208
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500209 if (backup_cred(cifs_sb))
210 create_options |= CREATE_OPEN_BACKUP_INTENT;
211
Stefan Metzmacher8713d012010-08-05 21:15:22 +0200212 rc = CIFSSMBOpen(xid, tcon, fromName, FILE_CREATE, GENERIC_WRITE,
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500213 create_options, &netfid, &oplock, NULL,
Stefan Metzmacher8713d012010-08-05 21:15:22 +0200214 nls_codepage, remap);
215 if (rc != 0) {
216 kfree(buf);
217 return rc;
218 }
219
Pavel Shilovskyfa2989f2011-05-26 10:01:59 +0400220 io_parms.netfid = netfid;
221 io_parms.pid = current->tgid;
222 io_parms.tcon = tcon;
223 io_parms.offset = 0;
224 io_parms.length = CIFS_MF_SYMLINK_FILE_SIZE;
225
226 rc = CIFSSMBWrite(xid, &io_parms, &bytes_written, buf, NULL, 0);
Stefan Metzmacher8713d012010-08-05 21:15:22 +0200227 CIFSSMBClose(xid, tcon, netfid);
228 kfree(buf);
229 if (rc != 0)
230 return rc;
231
232 if (bytes_written != CIFS_MF_SYMLINK_FILE_SIZE)
233 return -EIO;
234
235 return 0;
236}
237
238static int
Sachin Prabhucb084b12013-11-25 17:09:50 +0000239query_mf_symlink(const unsigned int xid, struct cifs_tcon *tcon,
Sachin Prabhu8205d1b2013-11-25 17:09:51 +0000240 struct cifs_sb_info *cifs_sb, const unsigned char *path,
241 char **symlinkinfo)
Stefan Metzmacher0fd43ae2010-08-05 21:13:44 +0200242{
243 int rc;
Sachin Prabhu8205d1b2013-11-25 17:09:51 +0000244 u8 *buf = NULL;
Stefan Metzmacher0fd43ae2010-08-05 21:13:44 +0200245 unsigned int link_len = 0;
Sachin Prabhu8205d1b2013-11-25 17:09:51 +0000246 unsigned int bytes_read = 0;
Stefan Metzmacher0fd43ae2010-08-05 21:13:44 +0200247
248 buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL);
249 if (!buf)
250 return -ENOMEM;
Stefan Metzmacher0fd43ae2010-08-05 21:13:44 +0200251
Sachin Prabhu8205d1b2013-11-25 17:09:51 +0000252 if (tcon->ses->server->ops->query_mf_symlink)
253 rc = tcon->ses->server->ops->query_mf_symlink(xid, tcon,
254 cifs_sb, path, buf, &bytes_read);
255 else
256 rc = -ENOSYS;
257
258 if (rc)
259 goto out;
260
261 if (bytes_read == 0) { /* not a symlink */
262 rc = -EINVAL;
263 goto out;
Stefan Metzmacher0fd43ae2010-08-05 21:13:44 +0200264 }
265
Sachin Prabhucb084b12013-11-25 17:09:50 +0000266 rc = parse_mf_symlink(buf, bytes_read, &link_len, symlinkinfo);
Sachin Prabhu8205d1b2013-11-25 17:09:51 +0000267out:
Stefan Metzmacher0fd43ae2010-08-05 21:13:44 +0200268 kfree(buf);
Sachin Prabhu8205d1b2013-11-25 17:09:51 +0000269 return rc;
Stefan Metzmacher0fd43ae2010-08-05 21:13:44 +0200270}
271
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200272bool
Sachin Prabhucb084b12013-11-25 17:09:50 +0000273couldbe_mf_symlink(const struct cifs_fattr *fattr)
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200274{
275 if (!(fattr->cf_mode & S_IFREG))
276 /* it's not a symlink */
277 return false;
278
279 if (fattr->cf_eof != CIFS_MF_SYMLINK_FILE_SIZE)
280 /* it's not a symlink */
281 return false;
282
283 return true;
284}
285
286int
Sachin Prabhub5be1a12013-11-25 17:09:49 +0000287cifs_query_mf_symlink(unsigned int xid, struct cifs_tcon *tcon,
288 struct cifs_sb_info *cifs_sb, const unsigned char *path,
289 char *pbuf, unsigned int *pbytes_read)
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200290{
291 int rc;
292 int oplock = 0;
293 __u16 netfid = 0;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +0000294 struct cifs_io_parms io_parms;
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200295 int buf_type = CIFS_NO_BUFFER;
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200296 FILE_ALL_INFO file_info;
297
Sachin Prabhub5be1a12013-11-25 17:09:49 +0000298 rc = CIFSSMBOpen(xid, tcon, path, FILE_OPEN, GENERIC_READ,
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200299 CREATE_NOT_DIR, &netfid, &oplock, &file_info,
300 cifs_sb->local_nls,
301 cifs_sb->mnt_cifs_flags &
302 CIFS_MOUNT_MAP_SPECIAL_CHR);
Sachin Prabhub5be1a12013-11-25 17:09:49 +0000303 if (rc)
Steve French1b244082013-07-11 19:17:40 -0500304 return rc;
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200305
Sachin Prabhub5be1a12013-11-25 17:09:49 +0000306 if (file_info.EndOfFile != cpu_to_le64(CIFS_MF_SYMLINK_FILE_SIZE))
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200307 /* it's not a symlink */
Sachin Prabhub5be1a12013-11-25 17:09:49 +0000308 goto out;
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200309
Steve French1b244082013-07-11 19:17:40 -0500310 io_parms.netfid = netfid;
311 io_parms.pid = current->tgid;
Sachin Prabhub5be1a12013-11-25 17:09:49 +0000312 io_parms.tcon = tcon;
Steve French1b244082013-07-11 19:17:40 -0500313 io_parms.offset = 0;
314 io_parms.length = CIFS_MF_SYMLINK_FILE_SIZE;
315
316 rc = CIFSSMBRead(xid, &io_parms, pbytes_read, &pbuf, &buf_type);
Sachin Prabhub5be1a12013-11-25 17:09:49 +0000317out:
318 CIFSSMBClose(xid, tcon, netfid);
Steve French1b244082013-07-11 19:17:40 -0500319 return rc;
320}
321
Steve French1b244082013-07-11 19:17:40 -0500322int
Sachin Prabhucb084b12013-11-25 17:09:50 +0000323check_mf_symlink(unsigned int xid, struct cifs_tcon *tcon,
324 struct cifs_sb_info *cifs_sb, struct cifs_fattr *fattr,
325 const unsigned char *path)
Steve French1b244082013-07-11 19:17:40 -0500326{
Sachin Prabhu750b8de2013-11-25 17:09:48 +0000327 int rc;
Steve French1b244082013-07-11 19:17:40 -0500328 u8 *buf = NULL;
329 unsigned int link_len = 0;
330 unsigned int bytes_read = 0;
Steve French1b244082013-07-11 19:17:40 -0500331
Sachin Prabhucb084b12013-11-25 17:09:50 +0000332 if (!couldbe_mf_symlink(fattr))
Steve French1b244082013-07-11 19:17:40 -0500333 /* it's not a symlink */
334 return 0;
335
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200336 buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL);
Sachin Prabhu750b8de2013-11-25 17:09:48 +0000337 if (!buf)
338 return -ENOMEM;
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200339
Sachin Prabhu750b8de2013-11-25 17:09:48 +0000340 if (tcon->ses->server->ops->query_mf_symlink)
Sachin Prabhub5be1a12013-11-25 17:09:49 +0000341 rc = tcon->ses->server->ops->query_mf_symlink(xid, tcon,
342 cifs_sb, path, buf, &bytes_read);
Steve French1b244082013-07-11 19:17:40 -0500343 else
Sachin Prabhu750b8de2013-11-25 17:09:48 +0000344 rc = -ENOSYS;
Steve French1b244082013-07-11 19:17:40 -0500345
Sachin Prabhu750b8de2013-11-25 17:09:48 +0000346 if (rc)
Steve French1b244082013-07-11 19:17:40 -0500347 goto out;
348
349 if (bytes_read == 0) /* not a symlink */
350 goto out;
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200351
Sachin Prabhucb084b12013-11-25 17:09:50 +0000352 rc = parse_mf_symlink(buf, bytes_read, &link_len, NULL);
Jeff Layton7ffec372010-09-29 19:51:11 -0400353 if (rc == -EINVAL) {
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200354 /* it's not a symlink */
Jeff Layton7ffec372010-09-29 19:51:11 -0400355 rc = 0;
356 goto out;
357 }
358
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200359 if (rc != 0)
Jeff Layton7ffec372010-09-29 19:51:11 -0400360 goto out;
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200361
362 /* it is a symlink */
363 fattr->cf_eof = link_len;
364 fattr->cf_mode &= ~S_IFMT;
365 fattr->cf_mode |= S_IFLNK | S_IRWXU | S_IRWXG | S_IRWXO;
366 fattr->cf_dtype = DT_LNK;
Jeff Layton7ffec372010-09-29 19:51:11 -0400367out:
Steve French1b244082013-07-11 19:17:40 -0500368 kfree(buf);
Jeff Layton7ffec372010-09-29 19:51:11 -0400369 return rc;
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200370}
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372int
373cifs_hardlink(struct dentry *old_file, struct inode *inode,
374 struct dentry *direntry)
375{
376 int rc = -EACCES;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400377 unsigned int xid;
Steve Frenchd6e906f2012-09-18 16:20:31 -0700378 char *from_name = NULL;
379 char *to_name = NULL;
Jeff Layton7ffec372010-09-29 19:51:11 -0400380 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
381 struct tcon_link *tlink;
Steve Frenchd6e906f2012-09-18 16:20:31 -0700382 struct cifs_tcon *tcon;
383 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 struct cifsInodeInfo *cifsInode;
385
Jeff Layton7ffec372010-09-29 19:51:11 -0400386 tlink = cifs_sb_tlink(cifs_sb);
387 if (IS_ERR(tlink))
388 return PTR_ERR(tlink);
Steve Frenchd6e906f2012-09-18 16:20:31 -0700389 tcon = tlink_tcon(tlink);
Jeff Layton7ffec372010-09-29 19:51:11 -0400390
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400391 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Steve Frenchd6e906f2012-09-18 16:20:31 -0700393 from_name = build_path_from_dentry(old_file);
394 to_name = build_path_from_dentry(direntry);
395 if ((from_name == NULL) || (to_name == NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 rc = -ENOMEM;
397 goto cifs_hl_exit;
398 }
399
Steve Frenchd6e906f2012-09-18 16:20:31 -0700400 if (tcon->unix_ext)
401 rc = CIFSUnixCreateHardLink(xid, tcon, from_name, to_name,
Jeff Layton7ffec372010-09-29 19:51:11 -0400402 cifs_sb->local_nls,
403 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700404 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 else {
Steve Frenchd6e906f2012-09-18 16:20:31 -0700406 server = tcon->ses->server;
Christian Engelmayerabf97672014-01-11 01:57:22 +0100407 if (!server->ops->create_hardlink) {
408 rc = -ENOSYS;
409 goto cifs_hl_exit;
410 }
Steve Frenchd6e906f2012-09-18 16:20:31 -0700411 rc = server->ops->create_hardlink(xid, tcon, from_name, to_name,
412 cifs_sb);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000413 if ((rc == -EIO) || (rc == -EINVAL))
414 rc = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416
Steve French31ec35d2006-11-16 20:54:20 +0000417 d_drop(direntry); /* force new lookup from server of target */
418
Steve Frenchd6e906f2012-09-18 16:20:31 -0700419 /*
420 * if source file is cached (oplocked) revalidate will not go to server
421 * until the file is closed or oplock broken so update nlinks locally
422 */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000423 if (old_file->d_inode) {
Steve French31ec35d2006-11-16 20:54:20 +0000424 cifsInode = CIFS_I(old_file->d_inode);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000425 if (rc == 0) {
Steve Frenchb7ca6922012-08-03 08:43:01 -0500426 spin_lock(&old_file->d_inode->i_lock);
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200427 inc_nlink(old_file->d_inode);
Steve Frenchb7ca6922012-08-03 08:43:01 -0500428 spin_unlock(&old_file->d_inode->i_lock);
Steve Frenchd6e906f2012-09-18 16:20:31 -0700429 /*
430 * BB should we make this contingent on superblock flag
431 * NOATIME?
432 */
433 /* old_file->d_inode->i_ctime = CURRENT_TIME; */
434 /*
435 * parent dir timestamps will update from srv within a
436 * second, would it really be worth it to set the parent
437 * dir cifs inode time to zero to force revalidate
438 * (faster) for it too?
439 */
Steve French31ec35d2006-11-16 20:54:20 +0000440 }
Steve Frenchd6e906f2012-09-18 16:20:31 -0700441 /*
442 * if not oplocked will force revalidate to get info on source
443 * file from srv
444 */
Steve French31ec35d2006-11-16 20:54:20 +0000445 cifsInode->time = 0;
446
Steve Frenchd6e906f2012-09-18 16:20:31 -0700447 /*
448 * Will update parent dir timestamps from srv within a second.
449 * Would it really be worth it to set the parent dir (cifs
450 * inode) time field to zero to force revalidate on parent
451 * directory faster ie
452 *
453 * CIFS_I(inode)->time = 0;
454 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457cifs_hl_exit:
Steve Frenchd6e906f2012-09-18 16:20:31 -0700458 kfree(from_name);
459 kfree(to_name);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400460 free_xid(xid);
Jeff Layton7ffec372010-09-29 19:51:11 -0400461 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return rc;
463}
464
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700465void *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466cifs_follow_link(struct dentry *direntry, struct nameidata *nd)
467{
468 struct inode *inode = direntry->d_inode;
Jeff Layton8b6427a2009-05-19 09:57:03 -0400469 int rc = -ENOMEM;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400470 unsigned int xid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 char *full_path = NULL;
Jeff Layton8b6427a2009-05-19 09:57:03 -0400472 char *target_path = NULL;
473 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -0400474 struct tcon_link *tlink = NULL;
Steve French96daf2b2011-05-27 04:34:02 +0000475 struct cifs_tcon *tcon;
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400476 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400478 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Jeff Layton7ffec372010-09-29 19:51:11 -0400480 tlink = cifs_sb_tlink(cifs_sb);
481 if (IS_ERR(tlink)) {
482 rc = PTR_ERR(tlink);
483 tlink = NULL;
484 goto out;
485 }
486 tcon = tlink_tcon(tlink);
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400487 server = tcon->ses->server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Jeff Layton8b6427a2009-05-19 09:57:03 -0400489 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (!full_path)
Jeff Layton460b9692009-04-30 07:17:56 -0400491 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Joe Perchesf96637b2013-05-04 22:12:25 -0500493 cifs_dbg(FYI, "Full path: %s inode = 0x%p\n", full_path, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200495 rc = -EACCES;
496 /*
497 * First try Minshall+French Symlinks, if configured
498 * and fallback to UNIX Extensions Symlinks.
499 */
500 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
Sachin Prabhu8205d1b2013-11-25 17:09:51 +0000501 rc = query_mf_symlink(xid, tcon, cifs_sb, full_path,
502 &target_path);
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200503
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400504 if ((rc != 0) && cap_unix(tcon->ses))
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200505 rc = CIFSSMBUnixQuerySymLink(xid, tcon, full_path, &target_path,
506 cifs_sb->local_nls);
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400507 else if (rc != 0 && server->ops->query_symlink)
508 rc = server->ops->query_symlink(xid, tcon, full_path,
509 &target_path, cifs_sb);
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200510
Jeff Layton8b6427a2009-05-19 09:57:03 -0400511 kfree(full_path);
512out:
Jeff Layton460b9692009-04-30 07:17:56 -0400513 if (rc != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 kfree(target_path);
515 target_path = ERR_PTR(rc);
516 }
517
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400518 free_xid(xid);
Jeff Layton7ffec372010-09-29 19:51:11 -0400519 if (tlink)
520 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 nd_set_link(nd, target_path);
Jeff Layton460b9692009-04-30 07:17:56 -0400522 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
525int
526cifs_symlink(struct inode *inode, struct dentry *direntry, const char *symname)
527{
528 int rc = -EOPNOTSUPP;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400529 unsigned int xid;
Jeff Layton7ffec372010-09-29 19:51:11 -0400530 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
531 struct tcon_link *tlink;
Steve French96daf2b2011-05-27 04:34:02 +0000532 struct cifs_tcon *pTcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 char *full_path = NULL;
534 struct inode *newinode = NULL;
535
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400536 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Jeff Layton7ffec372010-09-29 19:51:11 -0400538 tlink = cifs_sb_tlink(cifs_sb);
539 if (IS_ERR(tlink)) {
540 rc = PTR_ERR(tlink);
541 goto symlink_exit;
542 }
543 pTcon = tlink_tcon(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Steve French7f573562005-08-30 11:32:14 -0700545 full_path = build_path_from_dentry(direntry);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000546 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +0530547 rc = -ENOMEM;
Jeff Layton7ffec372010-09-29 19:51:11 -0400548 goto symlink_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
550
Joe Perchesf96637b2013-05-04 22:12:25 -0500551 cifs_dbg(FYI, "Full path: %s\n", full_path);
552 cifs_dbg(FYI, "symname is %s\n", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 /* BB what if DFS and this volume is on different share? BB */
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200555 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
Sachin Prabhucb084b12013-11-25 17:09:50 +0000556 rc = create_mf_symlink(xid, pTcon, full_path, symname,
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500557 cifs_sb);
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200558 else if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 rc = CIFSUnixCreateSymLink(xid, pTcon, full_path, symname,
560 cifs_sb->local_nls);
561 /* else
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000562 rc = CIFSCreateReparseSymLink(xid, pTcon, fromName, toName,
563 cifs_sb_target->local_nls); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 if (rc == 0) {
Steve Frenchc18c8422007-07-18 23:21:09 +0000566 if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 rc = cifs_get_inode_info_unix(&newinode, full_path,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000568 inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 else
570 rc = cifs_get_inode_info(&newinode, full_path, NULL,
Steve French8b1327f2008-03-14 22:37:16 +0000571 inode->i_sb, xid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 if (rc != 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500574 cifs_dbg(FYI, "Create symlink ok, getinodeinfo fail rc = %d\n",
575 rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 d_instantiate(direntry, newinode);
578 }
579 }
Jeff Layton7ffec372010-09-29 19:51:11 -0400580symlink_exit:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800581 kfree(full_path);
Jeff Layton7ffec372010-09-29 19:51:11 -0400582 cifs_put_tlink(tlink);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400583 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return rc;
585}