Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/link.c |
| 3 | * |
Steve French | 366781c | 2008-01-25 10:12:41 +0000 | [diff] [blame] | 4 | * Copyright (C) International Business Machines Corp., 2002,2008 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 23 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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" |
Stefan Metzmacher | c69c1b6 | 2010-07-31 09:14:16 +0200 | [diff] [blame] | 31 | |
| 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 | |
| 48 | static int |
Steve French | 93c100c | 2011-01-25 19:28:43 +0000 | [diff] [blame] | 49 | symlink_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 Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 57 | if (IS_ERR(md5)) { |
Jeff Layton | ffeb414 | 2011-01-29 07:03:02 -0500 | [diff] [blame] | 58 | rc = PTR_ERR(md5); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 59 | cifs_dbg(VFS, "%s: Crypto md5 allocation error %d\n", |
| 60 | __func__, rc); |
Jeff Layton | ffeb414 | 2011-01-29 07:03:02 -0500 | [diff] [blame] | 61 | return rc; |
Steve French | 93c100c | 2011-01-25 19:28:43 +0000 | [diff] [blame] | 62 | } |
| 63 | size = sizeof(struct shash_desc) + crypto_shash_descsize(md5); |
| 64 | sdescmd5 = kmalloc(size, GFP_KERNEL); |
| 65 | if (!sdescmd5) { |
| 66 | rc = -ENOMEM; |
Steve French | 93c100c | 2011-01-25 19:28:43 +0000 | [diff] [blame] | 67 | 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 Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 74 | cifs_dbg(VFS, "%s: Could not init md5 shash\n", __func__); |
Steve French | 93c100c | 2011-01-25 19:28:43 +0000 | [diff] [blame] | 75 | goto symlink_hash_err; |
| 76 | } |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 77 | rc = crypto_shash_update(&sdescmd5->shash, link_str, link_len); |
| 78 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 79 | cifs_dbg(VFS, "%s: Could not update with link_str\n", __func__); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 80 | goto symlink_hash_err; |
| 81 | } |
Steve French | 93c100c | 2011-01-25 19:28:43 +0000 | [diff] [blame] | 82 | rc = crypto_shash_final(&sdescmd5->shash, md5_hash); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 83 | if (rc) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 84 | cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__); |
Steve French | 93c100c | 2011-01-25 19:28:43 +0000 | [diff] [blame] | 85 | |
| 86 | symlink_hash_err: |
| 87 | crypto_free_shash(md5); |
| 88 | kfree(sdescmd5); |
| 89 | |
| 90 | return rc; |
| 91 | } |
| 92 | |
| 93 | static int |
Sachin Prabhu | cb084b1 | 2013-11-25 17:09:50 +0000 | [diff] [blame] | 94 | parse_mf_symlink(const u8 *buf, unsigned int buf_len, unsigned int *_link_len, |
| 95 | char **_link_str) |
Stefan Metzmacher | c69c1b6 | 2010-07-31 09:14:16 +0200 | [diff] [blame] | 96 | { |
| 97 | int rc; |
| 98 | unsigned int link_len; |
| 99 | const char *md5_str1; |
| 100 | const char *link_str; |
Stefan Metzmacher | c69c1b6 | 2010-07-31 09:14:16 +0200 | [diff] [blame] | 101 | 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 French | 93c100c | 2011-01-25 19:28:43 +0000 | [diff] [blame] | 114 | rc = symlink_hash(link_len, link_str, md5_hash); |
| 115 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 116 | cifs_dbg(FYI, "%s: MD5 hash failure: %d\n", __func__, rc); |
Steve French | 93c100c | 2011-01-25 19:28:43 +0000 | [diff] [blame] | 117 | return rc; |
| 118 | } |
Stefan Metzmacher | c69c1b6 | 2010-07-31 09:14:16 +0200 | [diff] [blame] | 119 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
Stefan Metzmacher | 0fd43ae | 2010-08-05 21:13:44 +0200 | [diff] [blame] | 137 | static int |
Sachin Prabhu | cb084b1 | 2013-11-25 17:09:50 +0000 | [diff] [blame] | 138 | format_mf_symlink(u8 *buf, unsigned int buf_len, const char *link_str) |
Stefan Metzmacher | 18bddd1 | 2010-08-03 11:24:22 +0200 | [diff] [blame] | 139 | { |
Steve French | 93c100c | 2011-01-25 19:28:43 +0000 | [diff] [blame] | 140 | int rc; |
Stefan Metzmacher | 18bddd1 | 2010-08-03 11:24:22 +0200 | [diff] [blame] | 141 | unsigned int link_len; |
| 142 | unsigned int ofs; |
Stefan Metzmacher | 18bddd1 | 2010-08-03 11:24:22 +0200 | [diff] [blame] | 143 | 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 French | 93c100c | 2011-01-25 19:28:43 +0000 | [diff] [blame] | 153 | rc = symlink_hash(link_len, link_str, md5_hash); |
| 154 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 155 | cifs_dbg(FYI, "%s: MD5 hash failure: %d\n", __func__, rc); |
Steve French | 93c100c | 2011-01-25 19:28:43 +0000 | [diff] [blame] | 156 | return rc; |
| 157 | } |
Stefan Metzmacher | 18bddd1 | 2010-08-03 11:24:22 +0200 | [diff] [blame] | 158 | |
| 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 Metzmacher | 8713d01 | 2010-08-05 21:15:22 +0200 | [diff] [blame] | 181 | static int |
Sachin Prabhu | cb084b1 | 2013-11-25 17:09:50 +0000 | [diff] [blame] | 182 | create_mf_symlink(const unsigned int xid, struct cifs_tcon *tcon, |
Sachin Prabhu | cbb0aba | 2013-11-25 17:09:52 +0000 | [diff] [blame^] | 183 | struct cifs_sb_info *cifs_sb, const char *fromName, |
| 184 | const char *toName) |
Stefan Metzmacher | 8713d01 | 2010-08-05 21:15:22 +0200 | [diff] [blame] | 185 | { |
| 186 | int rc; |
Stefan Metzmacher | 8713d01 | 2010-08-05 21:15:22 +0200 | [diff] [blame] | 187 | u8 *buf; |
| 188 | unsigned int bytes_written = 0; |
| 189 | |
| 190 | buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL); |
| 191 | if (!buf) |
| 192 | return -ENOMEM; |
| 193 | |
Sachin Prabhu | cb084b1 | 2013-11-25 17:09:50 +0000 | [diff] [blame] | 194 | rc = format_mf_symlink(buf, CIFS_MF_SYMLINK_FILE_SIZE, toName); |
Sachin Prabhu | cbb0aba | 2013-11-25 17:09:52 +0000 | [diff] [blame^] | 195 | if (rc) |
| 196 | goto out; |
Stefan Metzmacher | 8713d01 | 2010-08-05 21:15:22 +0200 | [diff] [blame] | 197 | |
Sachin Prabhu | cbb0aba | 2013-11-25 17:09:52 +0000 | [diff] [blame^] | 198 | rc = tcon->ses->server->ops->create_mf_symlink(xid, tcon, cifs_sb, |
| 199 | fromName, buf, &bytes_written); |
| 200 | if (rc) |
| 201 | goto out; |
Stefan Metzmacher | 8713d01 | 2010-08-05 21:15:22 +0200 | [diff] [blame] | 202 | |
| 203 | if (bytes_written != CIFS_MF_SYMLINK_FILE_SIZE) |
Sachin Prabhu | cbb0aba | 2013-11-25 17:09:52 +0000 | [diff] [blame^] | 204 | rc = -EIO; |
| 205 | out: |
| 206 | kfree(buf); |
| 207 | return rc; |
Stefan Metzmacher | 8713d01 | 2010-08-05 21:15:22 +0200 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | static int |
Sachin Prabhu | cb084b1 | 2013-11-25 17:09:50 +0000 | [diff] [blame] | 211 | query_mf_symlink(const unsigned int xid, struct cifs_tcon *tcon, |
Sachin Prabhu | 8205d1b | 2013-11-25 17:09:51 +0000 | [diff] [blame] | 212 | struct cifs_sb_info *cifs_sb, const unsigned char *path, |
| 213 | char **symlinkinfo) |
Stefan Metzmacher | 0fd43ae | 2010-08-05 21:13:44 +0200 | [diff] [blame] | 214 | { |
| 215 | int rc; |
Sachin Prabhu | 8205d1b | 2013-11-25 17:09:51 +0000 | [diff] [blame] | 216 | u8 *buf = NULL; |
Stefan Metzmacher | 0fd43ae | 2010-08-05 21:13:44 +0200 | [diff] [blame] | 217 | unsigned int link_len = 0; |
Sachin Prabhu | 8205d1b | 2013-11-25 17:09:51 +0000 | [diff] [blame] | 218 | unsigned int bytes_read = 0; |
Stefan Metzmacher | 0fd43ae | 2010-08-05 21:13:44 +0200 | [diff] [blame] | 219 | |
| 220 | buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL); |
| 221 | if (!buf) |
| 222 | return -ENOMEM; |
Stefan Metzmacher | 0fd43ae | 2010-08-05 21:13:44 +0200 | [diff] [blame] | 223 | |
Sachin Prabhu | 8205d1b | 2013-11-25 17:09:51 +0000 | [diff] [blame] | 224 | if (tcon->ses->server->ops->query_mf_symlink) |
| 225 | rc = tcon->ses->server->ops->query_mf_symlink(xid, tcon, |
| 226 | cifs_sb, path, buf, &bytes_read); |
| 227 | else |
| 228 | rc = -ENOSYS; |
| 229 | |
| 230 | if (rc) |
| 231 | goto out; |
| 232 | |
| 233 | if (bytes_read == 0) { /* not a symlink */ |
| 234 | rc = -EINVAL; |
| 235 | goto out; |
Stefan Metzmacher | 0fd43ae | 2010-08-05 21:13:44 +0200 | [diff] [blame] | 236 | } |
| 237 | |
Sachin Prabhu | cb084b1 | 2013-11-25 17:09:50 +0000 | [diff] [blame] | 238 | rc = parse_mf_symlink(buf, bytes_read, &link_len, symlinkinfo); |
Sachin Prabhu | 8205d1b | 2013-11-25 17:09:51 +0000 | [diff] [blame] | 239 | out: |
Stefan Metzmacher | 0fd43ae | 2010-08-05 21:13:44 +0200 | [diff] [blame] | 240 | kfree(buf); |
Sachin Prabhu | 8205d1b | 2013-11-25 17:09:51 +0000 | [diff] [blame] | 241 | return rc; |
Stefan Metzmacher | 0fd43ae | 2010-08-05 21:13:44 +0200 | [diff] [blame] | 242 | } |
| 243 | |
Stefan Metzmacher | 8bfb50a | 2010-07-31 09:15:10 +0200 | [diff] [blame] | 244 | bool |
Sachin Prabhu | cb084b1 | 2013-11-25 17:09:50 +0000 | [diff] [blame] | 245 | couldbe_mf_symlink(const struct cifs_fattr *fattr) |
Stefan Metzmacher | 8bfb50a | 2010-07-31 09:15:10 +0200 | [diff] [blame] | 246 | { |
| 247 | if (!(fattr->cf_mode & S_IFREG)) |
| 248 | /* it's not a symlink */ |
| 249 | return false; |
| 250 | |
| 251 | if (fattr->cf_eof != CIFS_MF_SYMLINK_FILE_SIZE) |
| 252 | /* it's not a symlink */ |
| 253 | return false; |
| 254 | |
| 255 | return true; |
| 256 | } |
| 257 | |
| 258 | int |
Sachin Prabhu | b5be1a1 | 2013-11-25 17:09:49 +0000 | [diff] [blame] | 259 | cifs_query_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, |
| 260 | struct cifs_sb_info *cifs_sb, const unsigned char *path, |
| 261 | char *pbuf, unsigned int *pbytes_read) |
Stefan Metzmacher | 8bfb50a | 2010-07-31 09:15:10 +0200 | [diff] [blame] | 262 | { |
| 263 | int rc; |
| 264 | int oplock = 0; |
| 265 | __u16 netfid = 0; |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 266 | struct cifs_io_parms io_parms; |
Stefan Metzmacher | 8bfb50a | 2010-07-31 09:15:10 +0200 | [diff] [blame] | 267 | int buf_type = CIFS_NO_BUFFER; |
Stefan Metzmacher | 8bfb50a | 2010-07-31 09:15:10 +0200 | [diff] [blame] | 268 | FILE_ALL_INFO file_info; |
| 269 | |
Sachin Prabhu | b5be1a1 | 2013-11-25 17:09:49 +0000 | [diff] [blame] | 270 | rc = CIFSSMBOpen(xid, tcon, path, FILE_OPEN, GENERIC_READ, |
Stefan Metzmacher | 8bfb50a | 2010-07-31 09:15:10 +0200 | [diff] [blame] | 271 | CREATE_NOT_DIR, &netfid, &oplock, &file_info, |
| 272 | cifs_sb->local_nls, |
| 273 | cifs_sb->mnt_cifs_flags & |
| 274 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Sachin Prabhu | b5be1a1 | 2013-11-25 17:09:49 +0000 | [diff] [blame] | 275 | if (rc) |
Steve French | 1b24408 | 2013-07-11 19:17:40 -0500 | [diff] [blame] | 276 | return rc; |
Stefan Metzmacher | 8bfb50a | 2010-07-31 09:15:10 +0200 | [diff] [blame] | 277 | |
Sachin Prabhu | b5be1a1 | 2013-11-25 17:09:49 +0000 | [diff] [blame] | 278 | if (file_info.EndOfFile != cpu_to_le64(CIFS_MF_SYMLINK_FILE_SIZE)) |
Stefan Metzmacher | 8bfb50a | 2010-07-31 09:15:10 +0200 | [diff] [blame] | 279 | /* it's not a symlink */ |
Sachin Prabhu | b5be1a1 | 2013-11-25 17:09:49 +0000 | [diff] [blame] | 280 | goto out; |
Stefan Metzmacher | 8bfb50a | 2010-07-31 09:15:10 +0200 | [diff] [blame] | 281 | |
Steve French | 1b24408 | 2013-07-11 19:17:40 -0500 | [diff] [blame] | 282 | io_parms.netfid = netfid; |
| 283 | io_parms.pid = current->tgid; |
Sachin Prabhu | b5be1a1 | 2013-11-25 17:09:49 +0000 | [diff] [blame] | 284 | io_parms.tcon = tcon; |
Steve French | 1b24408 | 2013-07-11 19:17:40 -0500 | [diff] [blame] | 285 | io_parms.offset = 0; |
| 286 | io_parms.length = CIFS_MF_SYMLINK_FILE_SIZE; |
| 287 | |
| 288 | rc = CIFSSMBRead(xid, &io_parms, pbytes_read, &pbuf, &buf_type); |
Sachin Prabhu | b5be1a1 | 2013-11-25 17:09:49 +0000 | [diff] [blame] | 289 | out: |
| 290 | CIFSSMBClose(xid, tcon, netfid); |
Steve French | 1b24408 | 2013-07-11 19:17:40 -0500 | [diff] [blame] | 291 | return rc; |
| 292 | } |
| 293 | |
Steve French | 1b24408 | 2013-07-11 19:17:40 -0500 | [diff] [blame] | 294 | int |
Sachin Prabhu | cbb0aba | 2013-11-25 17:09:52 +0000 | [diff] [blame^] | 295 | cifs_create_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, |
| 296 | struct cifs_sb_info *cifs_sb, const unsigned char *path, |
| 297 | char *pbuf, unsigned int *pbytes_written) |
| 298 | { |
| 299 | int rc; |
| 300 | int oplock = 0; |
| 301 | __u16 netfid = 0; |
| 302 | struct cifs_io_parms io_parms; |
| 303 | int create_options = CREATE_NOT_DIR; |
| 304 | |
| 305 | if (backup_cred(cifs_sb)) |
| 306 | create_options |= CREATE_OPEN_BACKUP_INTENT; |
| 307 | |
| 308 | rc = CIFSSMBOpen(xid, tcon, path, FILE_CREATE, GENERIC_WRITE, |
| 309 | create_options, &netfid, &oplock, NULL, |
| 310 | cifs_sb->local_nls, |
| 311 | cifs_sb->mnt_cifs_flags & |
| 312 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 313 | if (rc) |
| 314 | return rc; |
| 315 | |
| 316 | io_parms.netfid = netfid; |
| 317 | io_parms.pid = current->tgid; |
| 318 | io_parms.tcon = tcon; |
| 319 | io_parms.offset = 0; |
| 320 | io_parms.length = CIFS_MF_SYMLINK_FILE_SIZE; |
| 321 | |
| 322 | rc = CIFSSMBWrite(xid, &io_parms, pbytes_written, pbuf, NULL, 0); |
| 323 | CIFSSMBClose(xid, tcon, netfid); |
| 324 | return rc; |
| 325 | } |
| 326 | |
| 327 | int |
Sachin Prabhu | cb084b1 | 2013-11-25 17:09:50 +0000 | [diff] [blame] | 328 | check_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, |
| 329 | struct cifs_sb_info *cifs_sb, struct cifs_fattr *fattr, |
| 330 | const unsigned char *path) |
Steve French | 1b24408 | 2013-07-11 19:17:40 -0500 | [diff] [blame] | 331 | { |
Sachin Prabhu | 750b8de | 2013-11-25 17:09:48 +0000 | [diff] [blame] | 332 | int rc; |
Steve French | 1b24408 | 2013-07-11 19:17:40 -0500 | [diff] [blame] | 333 | u8 *buf = NULL; |
| 334 | unsigned int link_len = 0; |
| 335 | unsigned int bytes_read = 0; |
Steve French | 1b24408 | 2013-07-11 19:17:40 -0500 | [diff] [blame] | 336 | |
Sachin Prabhu | cb084b1 | 2013-11-25 17:09:50 +0000 | [diff] [blame] | 337 | if (!couldbe_mf_symlink(fattr)) |
Steve French | 1b24408 | 2013-07-11 19:17:40 -0500 | [diff] [blame] | 338 | /* it's not a symlink */ |
| 339 | return 0; |
| 340 | |
Stefan Metzmacher | 8bfb50a | 2010-07-31 09:15:10 +0200 | [diff] [blame] | 341 | buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL); |
Sachin Prabhu | 750b8de | 2013-11-25 17:09:48 +0000 | [diff] [blame] | 342 | if (!buf) |
| 343 | return -ENOMEM; |
Stefan Metzmacher | 8bfb50a | 2010-07-31 09:15:10 +0200 | [diff] [blame] | 344 | |
Sachin Prabhu | 750b8de | 2013-11-25 17:09:48 +0000 | [diff] [blame] | 345 | if (tcon->ses->server->ops->query_mf_symlink) |
Sachin Prabhu | b5be1a1 | 2013-11-25 17:09:49 +0000 | [diff] [blame] | 346 | rc = tcon->ses->server->ops->query_mf_symlink(xid, tcon, |
| 347 | cifs_sb, path, buf, &bytes_read); |
Steve French | 1b24408 | 2013-07-11 19:17:40 -0500 | [diff] [blame] | 348 | else |
Sachin Prabhu | 750b8de | 2013-11-25 17:09:48 +0000 | [diff] [blame] | 349 | rc = -ENOSYS; |
Steve French | 1b24408 | 2013-07-11 19:17:40 -0500 | [diff] [blame] | 350 | |
Sachin Prabhu | 750b8de | 2013-11-25 17:09:48 +0000 | [diff] [blame] | 351 | if (rc) |
Steve French | 1b24408 | 2013-07-11 19:17:40 -0500 | [diff] [blame] | 352 | goto out; |
| 353 | |
| 354 | if (bytes_read == 0) /* not a symlink */ |
| 355 | goto out; |
Stefan Metzmacher | 8bfb50a | 2010-07-31 09:15:10 +0200 | [diff] [blame] | 356 | |
Sachin Prabhu | cb084b1 | 2013-11-25 17:09:50 +0000 | [diff] [blame] | 357 | rc = parse_mf_symlink(buf, bytes_read, &link_len, NULL); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 358 | if (rc == -EINVAL) { |
Stefan Metzmacher | 8bfb50a | 2010-07-31 09:15:10 +0200 | [diff] [blame] | 359 | /* it's not a symlink */ |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 360 | rc = 0; |
| 361 | goto out; |
| 362 | } |
| 363 | |
Stefan Metzmacher | 8bfb50a | 2010-07-31 09:15:10 +0200 | [diff] [blame] | 364 | if (rc != 0) |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 365 | goto out; |
Stefan Metzmacher | 8bfb50a | 2010-07-31 09:15:10 +0200 | [diff] [blame] | 366 | |
| 367 | /* it is a symlink */ |
| 368 | fattr->cf_eof = link_len; |
| 369 | fattr->cf_mode &= ~S_IFMT; |
| 370 | fattr->cf_mode |= S_IFLNK | S_IRWXU | S_IRWXG | S_IRWXO; |
| 371 | fattr->cf_dtype = DT_LNK; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 372 | out: |
Steve French | 1b24408 | 2013-07-11 19:17:40 -0500 | [diff] [blame] | 373 | kfree(buf); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 374 | return rc; |
Stefan Metzmacher | 8bfb50a | 2010-07-31 09:15:10 +0200 | [diff] [blame] | 375 | } |
| 376 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | int |
| 378 | cifs_hardlink(struct dentry *old_file, struct inode *inode, |
| 379 | struct dentry *direntry) |
| 380 | { |
| 381 | int rc = -EACCES; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 382 | unsigned int xid; |
Steve French | d6e906f | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 383 | char *from_name = NULL; |
| 384 | char *to_name = NULL; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 385 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 386 | struct tcon_link *tlink; |
Steve French | d6e906f | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 387 | struct cifs_tcon *tcon; |
| 388 | struct TCP_Server_Info *server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | struct cifsInodeInfo *cifsInode; |
| 390 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 391 | tlink = cifs_sb_tlink(cifs_sb); |
| 392 | if (IS_ERR(tlink)) |
| 393 | return PTR_ERR(tlink); |
Steve French | d6e906f | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 394 | tcon = tlink_tcon(tlink); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 395 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 396 | xid = get_xid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
Steve French | d6e906f | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 398 | from_name = build_path_from_dentry(old_file); |
| 399 | to_name = build_path_from_dentry(direntry); |
| 400 | if ((from_name == NULL) || (to_name == NULL)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | rc = -ENOMEM; |
| 402 | goto cifs_hl_exit; |
| 403 | } |
| 404 | |
Steve French | d6e906f | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 405 | if (tcon->unix_ext) |
| 406 | rc = CIFSUnixCreateHardLink(xid, tcon, from_name, to_name, |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 407 | cifs_sb->local_nls, |
| 408 | cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 409 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | else { |
Steve French | d6e906f | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 411 | server = tcon->ses->server; |
Christian Engelmayer | abf9767 | 2014-01-11 01:57:22 +0100 | [diff] [blame] | 412 | if (!server->ops->create_hardlink) { |
| 413 | rc = -ENOSYS; |
| 414 | goto cifs_hl_exit; |
| 415 | } |
Steve French | d6e906f | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 416 | rc = server->ops->create_hardlink(xid, tcon, from_name, to_name, |
| 417 | cifs_sb); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 418 | if ((rc == -EIO) || (rc == -EINVAL)) |
| 419 | rc = -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | } |
| 421 | |
Steve French | 31ec35d | 2006-11-16 20:54:20 +0000 | [diff] [blame] | 422 | d_drop(direntry); /* force new lookup from server of target */ |
| 423 | |
Steve French | d6e906f | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 424 | /* |
| 425 | * if source file is cached (oplocked) revalidate will not go to server |
| 426 | * until the file is closed or oplock broken so update nlinks locally |
| 427 | */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 428 | if (old_file->d_inode) { |
Steve French | 31ec35d | 2006-11-16 20:54:20 +0000 | [diff] [blame] | 429 | cifsInode = CIFS_I(old_file->d_inode); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 430 | if (rc == 0) { |
Steve French | b7ca692 | 2012-08-03 08:43:01 -0500 | [diff] [blame] | 431 | spin_lock(&old_file->d_inode->i_lock); |
Miklos Szeredi | 6d6b77f | 2011-10-28 14:13:28 +0200 | [diff] [blame] | 432 | inc_nlink(old_file->d_inode); |
Steve French | b7ca692 | 2012-08-03 08:43:01 -0500 | [diff] [blame] | 433 | spin_unlock(&old_file->d_inode->i_lock); |
Steve French | d6e906f | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 434 | /* |
| 435 | * BB should we make this contingent on superblock flag |
| 436 | * NOATIME? |
| 437 | */ |
| 438 | /* old_file->d_inode->i_ctime = CURRENT_TIME; */ |
| 439 | /* |
| 440 | * parent dir timestamps will update from srv within a |
| 441 | * second, would it really be worth it to set the parent |
| 442 | * dir cifs inode time to zero to force revalidate |
| 443 | * (faster) for it too? |
| 444 | */ |
Steve French | 31ec35d | 2006-11-16 20:54:20 +0000 | [diff] [blame] | 445 | } |
Steve French | d6e906f | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 446 | /* |
| 447 | * if not oplocked will force revalidate to get info on source |
| 448 | * file from srv |
| 449 | */ |
Steve French | 31ec35d | 2006-11-16 20:54:20 +0000 | [diff] [blame] | 450 | cifsInode->time = 0; |
| 451 | |
Steve French | d6e906f | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 452 | /* |
| 453 | * Will update parent dir timestamps from srv within a second. |
| 454 | * Would it really be worth it to set the parent dir (cifs |
| 455 | * inode) time field to zero to force revalidate on parent |
| 456 | * directory faster ie |
| 457 | * |
| 458 | * CIFS_I(inode)->time = 0; |
| 459 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | |
| 462 | cifs_hl_exit: |
Steve French | d6e906f | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 463 | kfree(from_name); |
| 464 | kfree(to_name); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 465 | free_xid(xid); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 466 | cifs_put_tlink(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | return rc; |
| 468 | } |
| 469 | |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 470 | void * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | cifs_follow_link(struct dentry *direntry, struct nameidata *nd) |
| 472 | { |
| 473 | struct inode *inode = direntry->d_inode; |
Jeff Layton | 8b6427a | 2009-05-19 09:57:03 -0400 | [diff] [blame] | 474 | int rc = -ENOMEM; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 475 | unsigned int xid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | char *full_path = NULL; |
Jeff Layton | 8b6427a | 2009-05-19 09:57:03 -0400 | [diff] [blame] | 477 | char *target_path = NULL; |
| 478 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 479 | struct tcon_link *tlink = NULL; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 480 | struct cifs_tcon *tcon; |
Pavel Shilovsky | b42bf88 | 2013-08-14 19:25:21 +0400 | [diff] [blame] | 481 | struct TCP_Server_Info *server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 483 | xid = get_xid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 485 | tlink = cifs_sb_tlink(cifs_sb); |
| 486 | if (IS_ERR(tlink)) { |
| 487 | rc = PTR_ERR(tlink); |
| 488 | tlink = NULL; |
| 489 | goto out; |
| 490 | } |
| 491 | tcon = tlink_tcon(tlink); |
Pavel Shilovsky | b42bf88 | 2013-08-14 19:25:21 +0400 | [diff] [blame] | 492 | server = tcon->ses->server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | |
Jeff Layton | 8b6427a | 2009-05-19 09:57:03 -0400 | [diff] [blame] | 494 | full_path = build_path_from_dentry(direntry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | if (!full_path) |
Jeff Layton | 460b969 | 2009-04-30 07:17:56 -0400 | [diff] [blame] | 496 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 498 | cifs_dbg(FYI, "Full path: %s inode = 0x%p\n", full_path, inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | |
Stefan Metzmacher | 1b12b9c | 2010-08-05 21:19:56 +0200 | [diff] [blame] | 500 | rc = -EACCES; |
| 501 | /* |
| 502 | * First try Minshall+French Symlinks, if configured |
| 503 | * and fallback to UNIX Extensions Symlinks. |
| 504 | */ |
| 505 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) |
Sachin Prabhu | 8205d1b | 2013-11-25 17:09:51 +0000 | [diff] [blame] | 506 | rc = query_mf_symlink(xid, tcon, cifs_sb, full_path, |
| 507 | &target_path); |
Stefan Metzmacher | 1b12b9c | 2010-08-05 21:19:56 +0200 | [diff] [blame] | 508 | |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 509 | if ((rc != 0) && cap_unix(tcon->ses)) |
Stefan Metzmacher | 1b12b9c | 2010-08-05 21:19:56 +0200 | [diff] [blame] | 510 | rc = CIFSSMBUnixQuerySymLink(xid, tcon, full_path, &target_path, |
| 511 | cifs_sb->local_nls); |
Pavel Shilovsky | b42bf88 | 2013-08-14 19:25:21 +0400 | [diff] [blame] | 512 | else if (rc != 0 && server->ops->query_symlink) |
| 513 | rc = server->ops->query_symlink(xid, tcon, full_path, |
| 514 | &target_path, cifs_sb); |
Stefan Metzmacher | 1b12b9c | 2010-08-05 21:19:56 +0200 | [diff] [blame] | 515 | |
Jeff Layton | 8b6427a | 2009-05-19 09:57:03 -0400 | [diff] [blame] | 516 | kfree(full_path); |
| 517 | out: |
Jeff Layton | 460b969 | 2009-04-30 07:17:56 -0400 | [diff] [blame] | 518 | if (rc != 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | kfree(target_path); |
| 520 | target_path = ERR_PTR(rc); |
| 521 | } |
| 522 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 523 | free_xid(xid); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 524 | if (tlink) |
| 525 | cifs_put_tlink(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | nd_set_link(nd, target_path); |
Jeff Layton | 460b969 | 2009-04-30 07:17:56 -0400 | [diff] [blame] | 527 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | int |
| 531 | cifs_symlink(struct inode *inode, struct dentry *direntry, const char *symname) |
| 532 | { |
| 533 | int rc = -EOPNOTSUPP; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 534 | unsigned int xid; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 535 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 536 | struct tcon_link *tlink; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 537 | struct cifs_tcon *pTcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | char *full_path = NULL; |
| 539 | struct inode *newinode = NULL; |
| 540 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 541 | xid = get_xid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 543 | tlink = cifs_sb_tlink(cifs_sb); |
| 544 | if (IS_ERR(tlink)) { |
| 545 | rc = PTR_ERR(tlink); |
| 546 | goto symlink_exit; |
| 547 | } |
| 548 | pTcon = tlink_tcon(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 550 | full_path = build_path_from_dentry(direntry); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 551 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 552 | rc = -ENOMEM; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 553 | goto symlink_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | } |
| 555 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 556 | cifs_dbg(FYI, "Full path: %s\n", full_path); |
| 557 | cifs_dbg(FYI, "symname is %s\n", symname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | |
| 559 | /* BB what if DFS and this volume is on different share? BB */ |
Stefan Metzmacher | 1b12b9c | 2010-08-05 21:19:56 +0200 | [diff] [blame] | 560 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) |
Sachin Prabhu | cbb0aba | 2013-11-25 17:09:52 +0000 | [diff] [blame^] | 561 | rc = create_mf_symlink(xid, pTcon, cifs_sb, full_path, symname); |
Stefan Metzmacher | 1b12b9c | 2010-08-05 21:19:56 +0200 | [diff] [blame] | 562 | else if (pTcon->unix_ext) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | rc = CIFSUnixCreateSymLink(xid, pTcon, full_path, symname, |
| 564 | cifs_sb->local_nls); |
| 565 | /* else |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 566 | rc = CIFSCreateReparseSymLink(xid, pTcon, fromName, toName, |
| 567 | cifs_sb_target->local_nls); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | |
| 569 | if (rc == 0) { |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 570 | if (pTcon->unix_ext) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | rc = cifs_get_inode_info_unix(&newinode, full_path, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 572 | inode->i_sb, xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | else |
| 574 | rc = cifs_get_inode_info(&newinode, full_path, NULL, |
Steve French | 8b1327f | 2008-03-14 22:37:16 +0000 | [diff] [blame] | 575 | inode->i_sb, xid, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | |
| 577 | if (rc != 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 578 | cifs_dbg(FYI, "Create symlink ok, getinodeinfo fail rc = %d\n", |
| 579 | rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | d_instantiate(direntry, newinode); |
| 582 | } |
| 583 | } |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 584 | symlink_exit: |
Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 585 | kfree(full_path); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 586 | cifs_put_tlink(tlink); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 587 | free_xid(xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | return rc; |
| 589 | } |