blob: 500bc77a786e72601b5d3bd0851d80e0fb7ba73c [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,
Stefan Metzmacher0fd43ae2010-08-05 21:13:44 +0200240 const unsigned char *searchName, char **symlinkinfo,
241 const struct nls_table *nls_codepage, int remap)
242{
243 int rc;
244 int oplock = 0;
245 __u16 netfid = 0;
246 u8 *buf;
247 char *pbuf;
248 unsigned int bytes_read = 0;
249 int buf_type = CIFS_NO_BUFFER;
250 unsigned int link_len = 0;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +0000251 struct cifs_io_parms io_parms;
Stefan Metzmacher0fd43ae2010-08-05 21:13:44 +0200252 FILE_ALL_INFO file_info;
253
254 rc = CIFSSMBOpen(xid, tcon, searchName, FILE_OPEN, GENERIC_READ,
255 CREATE_NOT_DIR, &netfid, &oplock, &file_info,
256 nls_codepage, remap);
257 if (rc != 0)
258 return rc;
259
Steve French5443d132011-03-13 05:08:25 +0000260 if (file_info.EndOfFile != cpu_to_le64(CIFS_MF_SYMLINK_FILE_SIZE)) {
Stefan Metzmacher0fd43ae2010-08-05 21:13:44 +0200261 CIFSSMBClose(xid, tcon, netfid);
262 /* it's not a symlink */
263 return -EINVAL;
264 }
265
266 buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL);
267 if (!buf)
268 return -ENOMEM;
269 pbuf = buf;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +0000270 io_parms.netfid = netfid;
271 io_parms.pid = current->tgid;
272 io_parms.tcon = tcon;
273 io_parms.offset = 0;
274 io_parms.length = CIFS_MF_SYMLINK_FILE_SIZE;
Stefan Metzmacher0fd43ae2010-08-05 21:13:44 +0200275
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +0000276 rc = CIFSSMBRead(xid, &io_parms, &bytes_read, &pbuf, &buf_type);
Stefan Metzmacher0fd43ae2010-08-05 21:13:44 +0200277 CIFSSMBClose(xid, tcon, netfid);
278 if (rc != 0) {
279 kfree(buf);
280 return rc;
281 }
282
Sachin Prabhucb084b12013-11-25 17:09:50 +0000283 rc = parse_mf_symlink(buf, bytes_read, &link_len, symlinkinfo);
Stefan Metzmacher0fd43ae2010-08-05 21:13:44 +0200284 kfree(buf);
285 if (rc != 0)
286 return rc;
287
288 return 0;
289}
290
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200291bool
Sachin Prabhucb084b12013-11-25 17:09:50 +0000292couldbe_mf_symlink(const struct cifs_fattr *fattr)
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200293{
294 if (!(fattr->cf_mode & S_IFREG))
295 /* it's not a symlink */
296 return false;
297
298 if (fattr->cf_eof != CIFS_MF_SYMLINK_FILE_SIZE)
299 /* it's not a symlink */
300 return false;
301
302 return true;
303}
304
305int
Sachin Prabhub5be1a12013-11-25 17:09:49 +0000306cifs_query_mf_symlink(unsigned int xid, struct cifs_tcon *tcon,
307 struct cifs_sb_info *cifs_sb, const unsigned char *path,
308 char *pbuf, unsigned int *pbytes_read)
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200309{
310 int rc;
311 int oplock = 0;
312 __u16 netfid = 0;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +0000313 struct cifs_io_parms io_parms;
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200314 int buf_type = CIFS_NO_BUFFER;
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200315 FILE_ALL_INFO file_info;
316
Sachin Prabhub5be1a12013-11-25 17:09:49 +0000317 rc = CIFSSMBOpen(xid, tcon, path, FILE_OPEN, GENERIC_READ,
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200318 CREATE_NOT_DIR, &netfid, &oplock, &file_info,
319 cifs_sb->local_nls,
320 cifs_sb->mnt_cifs_flags &
321 CIFS_MOUNT_MAP_SPECIAL_CHR);
Sachin Prabhub5be1a12013-11-25 17:09:49 +0000322 if (rc)
Steve French1b244082013-07-11 19:17:40 -0500323 return rc;
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200324
Sachin Prabhub5be1a12013-11-25 17:09:49 +0000325 if (file_info.EndOfFile != cpu_to_le64(CIFS_MF_SYMLINK_FILE_SIZE))
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200326 /* it's not a symlink */
Sachin Prabhub5be1a12013-11-25 17:09:49 +0000327 goto out;
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200328
Steve French1b244082013-07-11 19:17:40 -0500329 io_parms.netfid = netfid;
330 io_parms.pid = current->tgid;
Sachin Prabhub5be1a12013-11-25 17:09:49 +0000331 io_parms.tcon = tcon;
Steve French1b244082013-07-11 19:17:40 -0500332 io_parms.offset = 0;
333 io_parms.length = CIFS_MF_SYMLINK_FILE_SIZE;
334
335 rc = CIFSSMBRead(xid, &io_parms, pbytes_read, &pbuf, &buf_type);
Sachin Prabhub5be1a12013-11-25 17:09:49 +0000336out:
337 CIFSSMBClose(xid, tcon, netfid);
Steve French1b244082013-07-11 19:17:40 -0500338 return rc;
339}
340
Steve French1b244082013-07-11 19:17:40 -0500341int
Sachin Prabhucb084b12013-11-25 17:09:50 +0000342check_mf_symlink(unsigned int xid, struct cifs_tcon *tcon,
343 struct cifs_sb_info *cifs_sb, struct cifs_fattr *fattr,
344 const unsigned char *path)
Steve French1b244082013-07-11 19:17:40 -0500345{
Sachin Prabhu750b8de2013-11-25 17:09:48 +0000346 int rc;
Steve French1b244082013-07-11 19:17:40 -0500347 u8 *buf = NULL;
348 unsigned int link_len = 0;
349 unsigned int bytes_read = 0;
Steve French1b244082013-07-11 19:17:40 -0500350
Sachin Prabhucb084b12013-11-25 17:09:50 +0000351 if (!couldbe_mf_symlink(fattr))
Steve French1b244082013-07-11 19:17:40 -0500352 /* it's not a symlink */
353 return 0;
354
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200355 buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL);
Sachin Prabhu750b8de2013-11-25 17:09:48 +0000356 if (!buf)
357 return -ENOMEM;
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200358
Sachin Prabhu750b8de2013-11-25 17:09:48 +0000359 if (tcon->ses->server->ops->query_mf_symlink)
Sachin Prabhub5be1a12013-11-25 17:09:49 +0000360 rc = tcon->ses->server->ops->query_mf_symlink(xid, tcon,
361 cifs_sb, path, buf, &bytes_read);
Steve French1b244082013-07-11 19:17:40 -0500362 else
Sachin Prabhu750b8de2013-11-25 17:09:48 +0000363 rc = -ENOSYS;
Steve French1b244082013-07-11 19:17:40 -0500364
Sachin Prabhu750b8de2013-11-25 17:09:48 +0000365 if (rc)
Steve French1b244082013-07-11 19:17:40 -0500366 goto out;
367
368 if (bytes_read == 0) /* not a symlink */
369 goto out;
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200370
Sachin Prabhucb084b12013-11-25 17:09:50 +0000371 rc = parse_mf_symlink(buf, bytes_read, &link_len, NULL);
Jeff Layton7ffec372010-09-29 19:51:11 -0400372 if (rc == -EINVAL) {
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200373 /* it's not a symlink */
Jeff Layton7ffec372010-09-29 19:51:11 -0400374 rc = 0;
375 goto out;
376 }
377
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200378 if (rc != 0)
Jeff Layton7ffec372010-09-29 19:51:11 -0400379 goto out;
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200380
381 /* it is a symlink */
382 fattr->cf_eof = link_len;
383 fattr->cf_mode &= ~S_IFMT;
384 fattr->cf_mode |= S_IFLNK | S_IRWXU | S_IRWXG | S_IRWXO;
385 fattr->cf_dtype = DT_LNK;
Jeff Layton7ffec372010-09-29 19:51:11 -0400386out:
Steve French1b244082013-07-11 19:17:40 -0500387 kfree(buf);
Jeff Layton7ffec372010-09-29 19:51:11 -0400388 return rc;
Stefan Metzmacher8bfb50a2010-07-31 09:15:10 +0200389}
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391int
392cifs_hardlink(struct dentry *old_file, struct inode *inode,
393 struct dentry *direntry)
394{
395 int rc = -EACCES;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400396 unsigned int xid;
Steve Frenchd6e906f2012-09-18 16:20:31 -0700397 char *from_name = NULL;
398 char *to_name = NULL;
Jeff Layton7ffec372010-09-29 19:51:11 -0400399 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
400 struct tcon_link *tlink;
Steve Frenchd6e906f2012-09-18 16:20:31 -0700401 struct cifs_tcon *tcon;
402 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 struct cifsInodeInfo *cifsInode;
404
Jeff Layton7ffec372010-09-29 19:51:11 -0400405 tlink = cifs_sb_tlink(cifs_sb);
406 if (IS_ERR(tlink))
407 return PTR_ERR(tlink);
Steve Frenchd6e906f2012-09-18 16:20:31 -0700408 tcon = tlink_tcon(tlink);
Jeff Layton7ffec372010-09-29 19:51:11 -0400409
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400410 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Steve Frenchd6e906f2012-09-18 16:20:31 -0700412 from_name = build_path_from_dentry(old_file);
413 to_name = build_path_from_dentry(direntry);
414 if ((from_name == NULL) || (to_name == NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 rc = -ENOMEM;
416 goto cifs_hl_exit;
417 }
418
Steve Frenchd6e906f2012-09-18 16:20:31 -0700419 if (tcon->unix_ext)
420 rc = CIFSUnixCreateHardLink(xid, tcon, from_name, to_name,
Jeff Layton7ffec372010-09-29 19:51:11 -0400421 cifs_sb->local_nls,
422 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700423 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 else {
Steve Frenchd6e906f2012-09-18 16:20:31 -0700425 server = tcon->ses->server;
Christian Engelmayerabf97672014-01-11 01:57:22 +0100426 if (!server->ops->create_hardlink) {
427 rc = -ENOSYS;
428 goto cifs_hl_exit;
429 }
Steve Frenchd6e906f2012-09-18 16:20:31 -0700430 rc = server->ops->create_hardlink(xid, tcon, from_name, to_name,
431 cifs_sb);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000432 if ((rc == -EIO) || (rc == -EINVAL))
433 rc = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
435
Steve French31ec35d2006-11-16 20:54:20 +0000436 d_drop(direntry); /* force new lookup from server of target */
437
Steve Frenchd6e906f2012-09-18 16:20:31 -0700438 /*
439 * if source file is cached (oplocked) revalidate will not go to server
440 * until the file is closed or oplock broken so update nlinks locally
441 */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000442 if (old_file->d_inode) {
Steve French31ec35d2006-11-16 20:54:20 +0000443 cifsInode = CIFS_I(old_file->d_inode);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000444 if (rc == 0) {
Steve Frenchb7ca6922012-08-03 08:43:01 -0500445 spin_lock(&old_file->d_inode->i_lock);
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200446 inc_nlink(old_file->d_inode);
Steve Frenchb7ca6922012-08-03 08:43:01 -0500447 spin_unlock(&old_file->d_inode->i_lock);
Steve Frenchd6e906f2012-09-18 16:20:31 -0700448 /*
449 * BB should we make this contingent on superblock flag
450 * NOATIME?
451 */
452 /* old_file->d_inode->i_ctime = CURRENT_TIME; */
453 /*
454 * parent dir timestamps will update from srv within a
455 * second, would it really be worth it to set the parent
456 * dir cifs inode time to zero to force revalidate
457 * (faster) for it too?
458 */
Steve French31ec35d2006-11-16 20:54:20 +0000459 }
Steve Frenchd6e906f2012-09-18 16:20:31 -0700460 /*
461 * if not oplocked will force revalidate to get info on source
462 * file from srv
463 */
Steve French31ec35d2006-11-16 20:54:20 +0000464 cifsInode->time = 0;
465
Steve Frenchd6e906f2012-09-18 16:20:31 -0700466 /*
467 * Will update parent dir timestamps from srv within a second.
468 * Would it really be worth it to set the parent dir (cifs
469 * inode) time field to zero to force revalidate on parent
470 * directory faster ie
471 *
472 * CIFS_I(inode)->time = 0;
473 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476cifs_hl_exit:
Steve Frenchd6e906f2012-09-18 16:20:31 -0700477 kfree(from_name);
478 kfree(to_name);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400479 free_xid(xid);
Jeff Layton7ffec372010-09-29 19:51:11 -0400480 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return rc;
482}
483
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700484void *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485cifs_follow_link(struct dentry *direntry, struct nameidata *nd)
486{
487 struct inode *inode = direntry->d_inode;
Jeff Layton8b6427a2009-05-19 09:57:03 -0400488 int rc = -ENOMEM;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400489 unsigned int xid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 char *full_path = NULL;
Jeff Layton8b6427a2009-05-19 09:57:03 -0400491 char *target_path = NULL;
492 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
Jeff Layton7ffec372010-09-29 19:51:11 -0400493 struct tcon_link *tlink = NULL;
Steve French96daf2b2011-05-27 04:34:02 +0000494 struct cifs_tcon *tcon;
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400495 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400497 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Jeff Layton7ffec372010-09-29 19:51:11 -0400499 tlink = cifs_sb_tlink(cifs_sb);
500 if (IS_ERR(tlink)) {
501 rc = PTR_ERR(tlink);
502 tlink = NULL;
503 goto out;
504 }
505 tcon = tlink_tcon(tlink);
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400506 server = tcon->ses->server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Jeff Layton8b6427a2009-05-19 09:57:03 -0400508 full_path = build_path_from_dentry(direntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (!full_path)
Jeff Layton460b9692009-04-30 07:17:56 -0400510 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Joe Perchesf96637b2013-05-04 22:12:25 -0500512 cifs_dbg(FYI, "Full path: %s inode = 0x%p\n", full_path, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200514 rc = -EACCES;
515 /*
516 * First try Minshall+French Symlinks, if configured
517 * and fallback to UNIX Extensions Symlinks.
518 */
519 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
Sachin Prabhucb084b12013-11-25 17:09:50 +0000520 rc = query_mf_symlink(xid, tcon, full_path, &target_path,
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200521 cifs_sb->local_nls,
522 cifs_sb->mnt_cifs_flags &
523 CIFS_MOUNT_MAP_SPECIAL_CHR);
524
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400525 if ((rc != 0) && cap_unix(tcon->ses))
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200526 rc = CIFSSMBUnixQuerySymLink(xid, tcon, full_path, &target_path,
527 cifs_sb->local_nls);
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400528 else if (rc != 0 && server->ops->query_symlink)
529 rc = server->ops->query_symlink(xid, tcon, full_path,
530 &target_path, cifs_sb);
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200531
Jeff Layton8b6427a2009-05-19 09:57:03 -0400532 kfree(full_path);
533out:
Jeff Layton460b9692009-04-30 07:17:56 -0400534 if (rc != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 kfree(target_path);
536 target_path = ERR_PTR(rc);
537 }
538
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400539 free_xid(xid);
Jeff Layton7ffec372010-09-29 19:51:11 -0400540 if (tlink)
541 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 nd_set_link(nd, target_path);
Jeff Layton460b9692009-04-30 07:17:56 -0400543 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
546int
547cifs_symlink(struct inode *inode, struct dentry *direntry, const char *symname)
548{
549 int rc = -EOPNOTSUPP;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400550 unsigned int xid;
Jeff Layton7ffec372010-09-29 19:51:11 -0400551 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
552 struct tcon_link *tlink;
Steve French96daf2b2011-05-27 04:34:02 +0000553 struct cifs_tcon *pTcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 char *full_path = NULL;
555 struct inode *newinode = NULL;
556
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400557 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Jeff Layton7ffec372010-09-29 19:51:11 -0400559 tlink = cifs_sb_tlink(cifs_sb);
560 if (IS_ERR(tlink)) {
561 rc = PTR_ERR(tlink);
562 goto symlink_exit;
563 }
564 pTcon = tlink_tcon(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Steve French7f573562005-08-30 11:32:14 -0700566 full_path = build_path_from_dentry(direntry);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000567 if (full_path == NULL) {
Suresh Jayaraman0f3bc092009-06-25 18:12:34 +0530568 rc = -ENOMEM;
Jeff Layton7ffec372010-09-29 19:51:11 -0400569 goto symlink_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571
Joe Perchesf96637b2013-05-04 22:12:25 -0500572 cifs_dbg(FYI, "Full path: %s\n", full_path);
573 cifs_dbg(FYI, "symname is %s\n", symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 /* BB what if DFS and this volume is on different share? BB */
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200576 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
Sachin Prabhucb084b12013-11-25 17:09:50 +0000577 rc = create_mf_symlink(xid, pTcon, full_path, symname,
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500578 cifs_sb);
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200579 else if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 rc = CIFSUnixCreateSymLink(xid, pTcon, full_path, symname,
581 cifs_sb->local_nls);
582 /* else
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000583 rc = CIFSCreateReparseSymLink(xid, pTcon, fromName, toName,
584 cifs_sb_target->local_nls); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 if (rc == 0) {
Steve Frenchc18c8422007-07-18 23:21:09 +0000587 if (pTcon->unix_ext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 rc = cifs_get_inode_info_unix(&newinode, full_path,
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000589 inode->i_sb, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 else
591 rc = cifs_get_inode_info(&newinode, full_path, NULL,
Steve French8b1327f2008-03-14 22:37:16 +0000592 inode->i_sb, xid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 if (rc != 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500595 cifs_dbg(FYI, "Create symlink ok, getinodeinfo fail rc = %d\n",
596 rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 d_instantiate(direntry, newinode);
599 }
600 }
Jeff Layton7ffec372010-09-29 19:51:11 -0400601symlink_exit:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800602 kfree(full_path);
Jeff Layton7ffec372010-09-29 19:51:11 -0400603 cifs_put_tlink(tlink);
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400604 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return rc;
606}