1 /*
2 * fs/cifs/link.c
3 *
4 * Copyright (C) International Business Machines Corp., 2002,2008
5 * 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>
23 #include <linux/slab.h>
24 #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"
31 #include "cifs_unicode.h"
32 #include "smb2proto.h"
33
34 /*
35 * M-F Symlink Functions - Begin
36 */
37
38 #define CIFS_MF_SYMLINK_LEN_OFFSET (4+1)
39 #define CIFS_MF_SYMLINK_MD5_OFFSET (CIFS_MF_SYMLINK_LEN_OFFSET+(4+1))
40 #define CIFS_MF_SYMLINK_LINK_OFFSET (CIFS_MF_SYMLINK_MD5_OFFSET+(32+1))
41 #define CIFS_MF_SYMLINK_LINK_MAXLEN (1024)
42 #define CIFS_MF_SYMLINK_FILE_SIZE \
43 (CIFS_MF_SYMLINK_LINK_OFFSET + CIFS_MF_SYMLINK_LINK_MAXLEN)
44
45 #define CIFS_MF_SYMLINK_LEN_FORMAT "XSym\n%04u\n"
46 #define CIFS_MF_SYMLINK_MD5_FORMAT "%16phN\n"
47 #define CIFS_MF_SYMLINK_MD5_ARGS(md5_hash) md5_hash
48
49 static int
symlink_hash(unsigned int link_len,const char * link_str,u8 * md5_hash)50 symlink_hash(unsigned int link_len, const char *link_str, u8 *md5_hash)
51 {
52 int rc;
53 struct crypto_shash *md5 = NULL;
54 struct sdesc *sdescmd5 = NULL;
55
56 rc = cifs_alloc_hash("md5", &md5, &sdescmd5);
57 if (rc)
58 goto symlink_hash_err;
59
60 rc = crypto_shash_init(&sdescmd5->shash);
61 if (rc) {
62 cifs_dbg(VFS, "%s: Could not init md5 shash\n", __func__);
63 goto symlink_hash_err;
64 }
65 rc = crypto_shash_update(&sdescmd5->shash, link_str, link_len);
66 if (rc) {
67 cifs_dbg(VFS, "%s: Could not update with link_str\n", __func__);
68 goto symlink_hash_err;
69 }
70 rc = crypto_shash_final(&sdescmd5->shash, md5_hash);
71 if (rc)
72 cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__);
73
74 symlink_hash_err:
75 cifs_free_hash(&md5, &sdescmd5);
76 return rc;
77 }
78
79 static int
parse_mf_symlink(const u8 * buf,unsigned int buf_len,unsigned int * _link_len,char ** _link_str)80 parse_mf_symlink(const u8 *buf, unsigned int buf_len, unsigned int *_link_len,
81 char **_link_str)
82 {
83 int rc;
84 unsigned int link_len;
85 const char *md5_str1;
86 const char *link_str;
87 u8 md5_hash[16];
88 char md5_str2[34];
89
90 if (buf_len != CIFS_MF_SYMLINK_FILE_SIZE)
91 return -EINVAL;
92
93 md5_str1 = (const char *)&buf[CIFS_MF_SYMLINK_MD5_OFFSET];
94 link_str = (const char *)&buf[CIFS_MF_SYMLINK_LINK_OFFSET];
95
96 rc = sscanf(buf, CIFS_MF_SYMLINK_LEN_FORMAT, &link_len);
97 if (rc != 1)
98 return -EINVAL;
99
100 if (link_len > CIFS_MF_SYMLINK_LINK_MAXLEN)
101 return -EINVAL;
102
103 rc = symlink_hash(link_len, link_str, md5_hash);
104 if (rc) {
105 cifs_dbg(FYI, "%s: MD5 hash failure: %d\n", __func__, rc);
106 return rc;
107 }
108
109 scnprintf(md5_str2, sizeof(md5_str2),
110 CIFS_MF_SYMLINK_MD5_FORMAT,
111 CIFS_MF_SYMLINK_MD5_ARGS(md5_hash));
112
113 if (strncmp(md5_str1, md5_str2, 17) != 0)
114 return -EINVAL;
115
116 if (_link_str) {
117 *_link_str = kstrndup(link_str, link_len, GFP_KERNEL);
118 if (!*_link_str)
119 return -ENOMEM;
120 }
121
122 *_link_len = link_len;
123 return 0;
124 }
125
126 static int
format_mf_symlink(u8 * buf,unsigned int buf_len,const char * link_str)127 format_mf_symlink(u8 *buf, unsigned int buf_len, const char *link_str)
128 {
129 int rc;
130 unsigned int link_len;
131 unsigned int ofs;
132 u8 md5_hash[16];
133
134 if (buf_len != CIFS_MF_SYMLINK_FILE_SIZE)
135 return -EINVAL;
136
137 link_len = strlen(link_str);
138
139 if (link_len > CIFS_MF_SYMLINK_LINK_MAXLEN)
140 return -ENAMETOOLONG;
141
142 rc = symlink_hash(link_len, link_str, md5_hash);
143 if (rc) {
144 cifs_dbg(FYI, "%s: MD5 hash failure: %d\n", __func__, rc);
145 return rc;
146 }
147
148 scnprintf(buf, buf_len,
149 CIFS_MF_SYMLINK_LEN_FORMAT CIFS_MF_SYMLINK_MD5_FORMAT,
150 link_len,
151 CIFS_MF_SYMLINK_MD5_ARGS(md5_hash));
152
153 ofs = CIFS_MF_SYMLINK_LINK_OFFSET;
154 memcpy(buf + ofs, link_str, link_len);
155
156 ofs += link_len;
157 if (ofs < CIFS_MF_SYMLINK_FILE_SIZE) {
158 buf[ofs] = '\n';
159 ofs++;
160 }
161
162 while (ofs < CIFS_MF_SYMLINK_FILE_SIZE) {
163 buf[ofs] = ' ';
164 ofs++;
165 }
166
167 return 0;
168 }
169
170 bool
couldbe_mf_symlink(const struct cifs_fattr * fattr)171 couldbe_mf_symlink(const struct cifs_fattr *fattr)
172 {
173 if (!S_ISREG(fattr->cf_mode))
174 /* it's not a symlink */
175 return false;
176
177 if (fattr->cf_eof != CIFS_MF_SYMLINK_FILE_SIZE)
178 /* it's not a symlink */
179 return false;
180
181 return true;
182 }
183
184 static int
create_mf_symlink(const unsigned int xid,struct cifs_tcon * tcon,struct cifs_sb_info * cifs_sb,const char * fromName,const char * toName)185 create_mf_symlink(const unsigned int xid, struct cifs_tcon *tcon,
186 struct cifs_sb_info *cifs_sb, const char *fromName,
187 const char *toName)
188 {
189 int rc;
190 u8 *buf;
191 unsigned int bytes_written = 0;
192
193 buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL);
194 if (!buf)
195 return -ENOMEM;
196
197 rc = format_mf_symlink(buf, CIFS_MF_SYMLINK_FILE_SIZE, toName);
198 if (rc)
199 goto out;
200
201 if (tcon->ses->server->ops->create_mf_symlink)
202 rc = tcon->ses->server->ops->create_mf_symlink(xid, tcon,
203 cifs_sb, fromName, buf, &bytes_written);
204 else
205 rc = -EOPNOTSUPP;
206
207 if (rc)
208 goto out;
209
210 if (bytes_written != CIFS_MF_SYMLINK_FILE_SIZE)
211 rc = -EIO;
212 out:
213 kfree(buf);
214 return rc;
215 }
216
217 static int
query_mf_symlink(const unsigned int xid,struct cifs_tcon * tcon,struct cifs_sb_info * cifs_sb,const unsigned char * path,char ** symlinkinfo)218 query_mf_symlink(const unsigned int xid, struct cifs_tcon *tcon,
219 struct cifs_sb_info *cifs_sb, const unsigned char *path,
220 char **symlinkinfo)
221 {
222 int rc;
223 u8 *buf = NULL;
224 unsigned int link_len = 0;
225 unsigned int bytes_read = 0;
226
227 buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL);
228 if (!buf)
229 return -ENOMEM;
230
231 if (tcon->ses->server->ops->query_mf_symlink)
232 rc = tcon->ses->server->ops->query_mf_symlink(xid, tcon,
233 cifs_sb, path, buf, &bytes_read);
234 else
235 rc = -ENOSYS;
236
237 if (rc)
238 goto out;
239
240 if (bytes_read == 0) { /* not a symlink */
241 rc = -EINVAL;
242 goto out;
243 }
244
245 rc = parse_mf_symlink(buf, bytes_read, &link_len, symlinkinfo);
246 out:
247 kfree(buf);
248 return rc;
249 }
250
251 int
check_mf_symlink(unsigned int xid,struct cifs_tcon * tcon,struct cifs_sb_info * cifs_sb,struct cifs_fattr * fattr,const unsigned char * path)252 check_mf_symlink(unsigned int xid, struct cifs_tcon *tcon,
253 struct cifs_sb_info *cifs_sb, struct cifs_fattr *fattr,
254 const unsigned char *path)
255 {
256 int rc;
257 u8 *buf = NULL;
258 unsigned int link_len = 0;
259 unsigned int bytes_read = 0;
260
261 if (!couldbe_mf_symlink(fattr))
262 /* it's not a symlink */
263 return 0;
264
265 buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL);
266 if (!buf)
267 return -ENOMEM;
268
269 if (tcon->ses->server->ops->query_mf_symlink)
270 rc = tcon->ses->server->ops->query_mf_symlink(xid, tcon,
271 cifs_sb, path, buf, &bytes_read);
272 else
273 rc = -ENOSYS;
274
275 if (rc)
276 goto out;
277
278 if (bytes_read == 0) /* not a symlink */
279 goto out;
280
281 rc = parse_mf_symlink(buf, bytes_read, &link_len, NULL);
282 if (rc == -EINVAL) {
283 /* it's not a symlink */
284 rc = 0;
285 goto out;
286 }
287
288 if (rc != 0)
289 goto out;
290
291 /* it is a symlink */
292 fattr->cf_eof = link_len;
293 fattr->cf_mode &= ~S_IFMT;
294 fattr->cf_mode |= S_IFLNK | S_IRWXU | S_IRWXG | S_IRWXO;
295 fattr->cf_dtype = DT_LNK;
296 out:
297 kfree(buf);
298 return rc;
299 }
300
301 /*
302 * SMB 1.0 Protocol specific functions
303 */
304
305 int
cifs_query_mf_symlink(unsigned int xid,struct cifs_tcon * tcon,struct cifs_sb_info * cifs_sb,const unsigned char * path,char * pbuf,unsigned int * pbytes_read)306 cifs_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)
309 {
310 int rc;
311 int oplock = 0;
312 struct cifs_fid fid;
313 struct cifs_open_parms oparms;
314 struct cifs_io_parms io_parms = {0};
315 int buf_type = CIFS_NO_BUFFER;
316 FILE_ALL_INFO file_info;
317
318 oparms.tcon = tcon;
319 oparms.cifs_sb = cifs_sb;
320 oparms.desired_access = GENERIC_READ;
321 oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR);
322 oparms.disposition = FILE_OPEN;
323 oparms.path = path;
324 oparms.fid = &fid;
325 oparms.reconnect = false;
326
327 rc = CIFS_open(xid, &oparms, &oplock, &file_info);
328 if (rc)
329 return rc;
330
331 if (file_info.EndOfFile != cpu_to_le64(CIFS_MF_SYMLINK_FILE_SIZE)) {
332 rc = -ENOENT;
333 /* it's not a symlink */
334 goto out;
335 }
336
337 io_parms.netfid = fid.netfid;
338 io_parms.pid = current->tgid;
339 io_parms.tcon = tcon;
340 io_parms.offset = 0;
341 io_parms.length = CIFS_MF_SYMLINK_FILE_SIZE;
342
343 rc = CIFSSMBRead(xid, &io_parms, pbytes_read, &pbuf, &buf_type);
344 out:
345 CIFSSMBClose(xid, tcon, fid.netfid);
346 return rc;
347 }
348
349 int
cifs_create_mf_symlink(unsigned int xid,struct cifs_tcon * tcon,struct cifs_sb_info * cifs_sb,const unsigned char * path,char * pbuf,unsigned int * pbytes_written)350 cifs_create_mf_symlink(unsigned int xid, struct cifs_tcon *tcon,
351 struct cifs_sb_info *cifs_sb, const unsigned char *path,
352 char *pbuf, unsigned int *pbytes_written)
353 {
354 int rc;
355 int oplock = 0;
356 struct cifs_fid fid;
357 struct cifs_open_parms oparms;
358 struct cifs_io_parms io_parms = {0};
359
360 oparms.tcon = tcon;
361 oparms.cifs_sb = cifs_sb;
362 oparms.desired_access = GENERIC_WRITE;
363 oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR);
364 oparms.disposition = FILE_CREATE;
365 oparms.path = path;
366 oparms.fid = &fid;
367 oparms.reconnect = false;
368
369 rc = CIFS_open(xid, &oparms, &oplock, NULL);
370 if (rc)
371 return rc;
372
373 io_parms.netfid = fid.netfid;
374 io_parms.pid = current->tgid;
375 io_parms.tcon = tcon;
376 io_parms.offset = 0;
377 io_parms.length = CIFS_MF_SYMLINK_FILE_SIZE;
378
379 rc = CIFSSMBWrite(xid, &io_parms, pbytes_written, pbuf);
380 CIFSSMBClose(xid, tcon, fid.netfid);
381 return rc;
382 }
383
384 /*
385 * SMB 2.1/SMB3 Protocol specific functions
386 */
387 int
smb3_query_mf_symlink(unsigned int xid,struct cifs_tcon * tcon,struct cifs_sb_info * cifs_sb,const unsigned char * path,char * pbuf,unsigned int * pbytes_read)388 smb3_query_mf_symlink(unsigned int xid, struct cifs_tcon *tcon,
389 struct cifs_sb_info *cifs_sb, const unsigned char *path,
390 char *pbuf, unsigned int *pbytes_read)
391 {
392 int rc;
393 struct cifs_fid fid;
394 struct cifs_open_parms oparms;
395 struct cifs_io_parms io_parms = {0};
396 int buf_type = CIFS_NO_BUFFER;
397 __le16 *utf16_path;
398 __u8 oplock = SMB2_OPLOCK_LEVEL_NONE;
399 struct smb2_file_all_info *pfile_info = NULL;
400
401 oparms.tcon = tcon;
402 oparms.cifs_sb = cifs_sb;
403 oparms.desired_access = GENERIC_READ;
404 oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR);
405 oparms.disposition = FILE_OPEN;
406 oparms.fid = &fid;
407 oparms.reconnect = false;
408
409 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb);
410 if (utf16_path == NULL)
411 return -ENOMEM;
412
413 pfile_info = kzalloc(sizeof(struct smb2_file_all_info) + PATH_MAX * 2,
414 GFP_KERNEL);
415
416 if (pfile_info == NULL) {
417 kfree(utf16_path);
418 return -ENOMEM;
419 }
420
421 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, pfile_info, NULL,
422 NULL, NULL);
423 if (rc)
424 goto qmf_out_open_fail;
425
426 if (pfile_info->EndOfFile != cpu_to_le64(CIFS_MF_SYMLINK_FILE_SIZE)) {
427 /* it's not a symlink */
428 rc = -ENOENT; /* Is there a better rc to return? */
429 goto qmf_out;
430 }
431
432 io_parms.netfid = fid.netfid;
433 io_parms.pid = current->tgid;
434 io_parms.tcon = tcon;
435 io_parms.offset = 0;
436 io_parms.length = CIFS_MF_SYMLINK_FILE_SIZE;
437 io_parms.persistent_fid = fid.persistent_fid;
438 io_parms.volatile_fid = fid.volatile_fid;
439 rc = SMB2_read(xid, &io_parms, pbytes_read, &pbuf, &buf_type);
440 qmf_out:
441 SMB2_close(xid, tcon, fid.persistent_fid, fid.volatile_fid);
442 qmf_out_open_fail:
443 kfree(utf16_path);
444 kfree(pfile_info);
445 return rc;
446 }
447
448 int
smb3_create_mf_symlink(unsigned int xid,struct cifs_tcon * tcon,struct cifs_sb_info * cifs_sb,const unsigned char * path,char * pbuf,unsigned int * pbytes_written)449 smb3_create_mf_symlink(unsigned int xid, struct cifs_tcon *tcon,
450 struct cifs_sb_info *cifs_sb, const unsigned char *path,
451 char *pbuf, unsigned int *pbytes_written)
452 {
453 int rc;
454 struct cifs_fid fid;
455 struct cifs_open_parms oparms;
456 struct cifs_io_parms io_parms = {0};
457 __le16 *utf16_path;
458 __u8 oplock = SMB2_OPLOCK_LEVEL_NONE;
459 struct kvec iov[2];
460
461 cifs_dbg(FYI, "%s: path: %s\n", __func__, path);
462
463 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb);
464 if (!utf16_path)
465 return -ENOMEM;
466
467 oparms.tcon = tcon;
468 oparms.cifs_sb = cifs_sb;
469 oparms.desired_access = GENERIC_WRITE;
470 oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR);
471 oparms.disposition = FILE_CREATE;
472 oparms.fid = &fid;
473 oparms.reconnect = false;
474
475 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL,
476 NULL, NULL);
477 if (rc) {
478 kfree(utf16_path);
479 return rc;
480 }
481
482 io_parms.netfid = fid.netfid;
483 io_parms.pid = current->tgid;
484 io_parms.tcon = tcon;
485 io_parms.offset = 0;
486 io_parms.length = CIFS_MF_SYMLINK_FILE_SIZE;
487 io_parms.persistent_fid = fid.persistent_fid;
488 io_parms.volatile_fid = fid.volatile_fid;
489
490 /* iov[0] is reserved for smb header */
491 iov[1].iov_base = pbuf;
492 iov[1].iov_len = CIFS_MF_SYMLINK_FILE_SIZE;
493
494 rc = SMB2_write(xid, &io_parms, pbytes_written, iov, 1);
495
496 /* Make sure we wrote all of the symlink data */
497 if ((rc == 0) && (*pbytes_written != CIFS_MF_SYMLINK_FILE_SIZE))
498 rc = -EIO;
499
500 SMB2_close(xid, tcon, fid.persistent_fid, fid.volatile_fid);
501
502 kfree(utf16_path);
503 return rc;
504 }
505
506 /*
507 * M-F Symlink Functions - End
508 */
509
510 int
cifs_hardlink(struct dentry * old_file,struct inode * inode,struct dentry * direntry)511 cifs_hardlink(struct dentry *old_file, struct inode *inode,
512 struct dentry *direntry)
513 {
514 int rc = -EACCES;
515 unsigned int xid;
516 char *from_name = NULL;
517 char *to_name = NULL;
518 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
519 struct tcon_link *tlink;
520 struct cifs_tcon *tcon;
521 struct TCP_Server_Info *server;
522 struct cifsInodeInfo *cifsInode;
523
524 tlink = cifs_sb_tlink(cifs_sb);
525 if (IS_ERR(tlink))
526 return PTR_ERR(tlink);
527 tcon = tlink_tcon(tlink);
528
529 xid = get_xid();
530
531 from_name = build_path_from_dentry(old_file);
532 to_name = build_path_from_dentry(direntry);
533 if ((from_name == NULL) || (to_name == NULL)) {
534 rc = -ENOMEM;
535 goto cifs_hl_exit;
536 }
537
538 if (tcon->unix_ext)
539 rc = CIFSUnixCreateHardLink(xid, tcon, from_name, to_name,
540 cifs_sb->local_nls,
541 cifs_remap(cifs_sb));
542 else {
543 server = tcon->ses->server;
544 if (!server->ops->create_hardlink) {
545 rc = -ENOSYS;
546 goto cifs_hl_exit;
547 }
548 rc = server->ops->create_hardlink(xid, tcon, from_name, to_name,
549 cifs_sb);
550 if ((rc == -EIO) || (rc == -EINVAL))
551 rc = -EOPNOTSUPP;
552 }
553
554 d_drop(direntry); /* force new lookup from server of target */
555
556 /*
557 * if source file is cached (oplocked) revalidate will not go to server
558 * until the file is closed or oplock broken so update nlinks locally
559 */
560 if (d_really_is_positive(old_file)) {
561 cifsInode = CIFS_I(d_inode(old_file));
562 if (rc == 0) {
563 spin_lock(&d_inode(old_file)->i_lock);
564 inc_nlink(d_inode(old_file));
565 spin_unlock(&d_inode(old_file)->i_lock);
566
567 /*
568 * parent dir timestamps will update from srv within a
569 * second, would it really be worth it to set the parent
570 * dir cifs inode time to zero to force revalidate
571 * (faster) for it too?
572 */
573 }
574 /*
575 * if not oplocked will force revalidate to get info on source
576 * file from srv. Note Samba server prior to 4.2 has bug -
577 * not updating src file ctime on hardlinks but Windows servers
578 * handle it properly
579 */
580 cifsInode->time = 0;
581
582 /*
583 * Will update parent dir timestamps from srv within a second.
584 * Would it really be worth it to set the parent dir (cifs
585 * inode) time field to zero to force revalidate on parent
586 * directory faster ie
587 *
588 * CIFS_I(inode)->time = 0;
589 */
590 }
591
592 cifs_hl_exit:
593 kfree(from_name);
594 kfree(to_name);
595 free_xid(xid);
596 cifs_put_tlink(tlink);
597 return rc;
598 }
599
600 const char *
cifs_get_link(struct dentry * direntry,struct inode * inode,struct delayed_call * done)601 cifs_get_link(struct dentry *direntry, struct inode *inode,
602 struct delayed_call *done)
603 {
604 int rc = -ENOMEM;
605 unsigned int xid;
606 char *full_path = NULL;
607 char *target_path = NULL;
608 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
609 struct tcon_link *tlink = NULL;
610 struct cifs_tcon *tcon;
611 struct TCP_Server_Info *server;
612
613 if (!direntry)
614 return ERR_PTR(-ECHILD);
615
616 xid = get_xid();
617
618 tlink = cifs_sb_tlink(cifs_sb);
619 if (IS_ERR(tlink)) {
620 free_xid(xid);
621 return ERR_CAST(tlink);
622 }
623 tcon = tlink_tcon(tlink);
624 server = tcon->ses->server;
625
626 full_path = build_path_from_dentry(direntry);
627 if (!full_path) {
628 free_xid(xid);
629 cifs_put_tlink(tlink);
630 return ERR_PTR(-ENOMEM);
631 }
632
633 cifs_dbg(FYI, "Full path: %s inode = 0x%p\n", full_path, inode);
634
635 rc = -EACCES;
636 /*
637 * First try Minshall+French Symlinks, if configured
638 * and fallback to UNIX Extensions Symlinks.
639 */
640 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
641 rc = query_mf_symlink(xid, tcon, cifs_sb, full_path,
642 &target_path);
643
644 if (rc != 0 && server->ops->query_symlink) {
645 struct cifsInodeInfo *cifsi = CIFS_I(inode);
646 bool reparse_point = false;
647
648 if (cifsi->cifsAttrs & ATTR_REPARSE)
649 reparse_point = true;
650
651 rc = server->ops->query_symlink(xid, tcon, cifs_sb, full_path,
652 &target_path, reparse_point);
653 }
654
655 kfree(full_path);
656 free_xid(xid);
657 cifs_put_tlink(tlink);
658 if (rc != 0) {
659 kfree(target_path);
660 return ERR_PTR(rc);
661 }
662 set_delayed_call(done, kfree_link, target_path);
663 return target_path;
664 }
665
666 int
cifs_symlink(struct inode * inode,struct dentry * direntry,const char * symname)667 cifs_symlink(struct inode *inode, struct dentry *direntry, const char *symname)
668 {
669 int rc = -EOPNOTSUPP;
670 unsigned int xid;
671 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
672 struct tcon_link *tlink;
673 struct cifs_tcon *pTcon;
674 char *full_path = NULL;
675 struct inode *newinode = NULL;
676
677 xid = get_xid();
678
679 tlink = cifs_sb_tlink(cifs_sb);
680 if (IS_ERR(tlink)) {
681 rc = PTR_ERR(tlink);
682 goto symlink_exit;
683 }
684 pTcon = tlink_tcon(tlink);
685
686 full_path = build_path_from_dentry(direntry);
687 if (full_path == NULL) {
688 rc = -ENOMEM;
689 goto symlink_exit;
690 }
691
692 cifs_dbg(FYI, "Full path: %s\n", full_path);
693 cifs_dbg(FYI, "symname is %s\n", symname);
694
695 /* BB what if DFS and this volume is on different share? BB */
696 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
697 rc = create_mf_symlink(xid, pTcon, cifs_sb, full_path, symname);
698 else if (pTcon->unix_ext)
699 rc = CIFSUnixCreateSymLink(xid, pTcon, full_path, symname,
700 cifs_sb->local_nls,
701 cifs_remap(cifs_sb));
702 /* else
703 rc = CIFSCreateReparseSymLink(xid, pTcon, fromName, toName,
704 cifs_sb_target->local_nls); */
705
706 if (rc == 0) {
707 if (pTcon->posix_extensions)
708 rc = smb311_posix_get_inode_info(&newinode, full_path, inode->i_sb, xid);
709 else if (pTcon->unix_ext)
710 rc = cifs_get_inode_info_unix(&newinode, full_path,
711 inode->i_sb, xid);
712 else
713 rc = cifs_get_inode_info(&newinode, full_path, NULL,
714 inode->i_sb, xid, NULL);
715
716 if (rc != 0) {
717 cifs_dbg(FYI, "Create symlink ok, getinodeinfo fail rc = %d\n",
718 rc);
719 } else {
720 d_instantiate(direntry, newinode);
721 }
722 }
723 symlink_exit:
724 kfree(full_path);
725 cifs_put_tlink(tlink);
726 free_xid(xid);
727 return rc;
728 }
729