Defer close only when lease is enabled.
[linux-block.git] / fs / cifs / misc.c
CommitLineData
1da177e4
LT
1/*
2 * fs/cifs/misc.c
3 *
ad7a2926 4 * Copyright (C) International Business Machines Corp., 2002,2008
1da177e4
LT
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
fb8c4b14 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1da177e4
LT
20 */
21
22#include <linux/slab.h>
23#include <linux/ctype.h>
24#include <linux/mempool.h>
ccf7f408 25#include <linux/vmalloc.h>
1da177e4
LT
26#include "cifspdu.h"
27#include "cifsglob.h"
28#include "cifsproto.h"
29#include "cifs_debug.h"
30#include "smberr.h"
31#include "nterr.h"
6c91d362 32#include "cifs_unicode.h"
3792c173 33#include "smb2pdu.h"
bacd704a 34#include "cifsfs.h"
e4af35fa
PA
35#ifdef CONFIG_CIFS_DFS_UPCALL
36#include "dns_resolve.h"
37#endif
8401e936 38#include "fs_context.h"
1da177e4
LT
39
40extern mempool_t *cifs_sm_req_poolp;
41extern mempool_t *cifs_req_poolp;
1da177e4 42
fb8c4b14
SF
43/* The xid serves as a useful identifier for each incoming vfs request,
44 in a similar way to the mid which is useful to track each sent smb,
45 and CurrentXid can also provide a running counter (although it
46 will eventually wrap past zero) of the total vfs operations handled
1da177e4
LT
47 since the cifs fs was mounted */
48
49unsigned int
6d5786a3 50_get_xid(void)
1da177e4
LT
51{
52 unsigned int xid;
53
54 spin_lock(&GlobalMid_Lock);
55 GlobalTotalActiveXid++;
50c2f753
SF
56
57 /* keep high water mark for number of simultaneous ops in filesystem */
1da177e4 58 if (GlobalTotalActiveXid > GlobalMaxActiveXid)
50c2f753 59 GlobalMaxActiveXid = GlobalTotalActiveXid;
790fe579 60 if (GlobalTotalActiveXid > 65000)
f96637be 61 cifs_dbg(FYI, "warning: more than 65000 requests active\n");
1da177e4
LT
62 xid = GlobalCurrentXid++;
63 spin_unlock(&GlobalMid_Lock);
64 return xid;
65}
66
67void
6d5786a3 68_free_xid(unsigned int xid)
1da177e4
LT
69{
70 spin_lock(&GlobalMid_Lock);
790fe579 71 /* if (GlobalTotalActiveXid == 0)
1da177e4
LT
72 BUG(); */
73 GlobalTotalActiveXid--;
74 spin_unlock(&GlobalMid_Lock);
75}
76
96daf2b0 77struct cifs_ses *
1da177e4
LT
78sesInfoAlloc(void)
79{
96daf2b0 80 struct cifs_ses *ret_buf;
1da177e4 81
96daf2b0 82 ret_buf = kzalloc(sizeof(struct cifs_ses), GFP_KERNEL);
1da177e4 83 if (ret_buf) {
1da177e4
LT
84 atomic_inc(&sesInfoAllocCount);
85 ret_buf->status = CifsNew;
14fbf50d
JL
86 ++ret_buf->ses_count;
87 INIT_LIST_HEAD(&ret_buf->smb_ses_list);
f1987b44 88 INIT_LIST_HEAD(&ret_buf->tcon_list);
d7b619cf 89 mutex_init(&ret_buf->session_mutex);
b6f0dd5d 90 spin_lock_init(&ret_buf->iface_lock);
1da177e4
LT
91 }
92 return ret_buf;
93}
94
95void
96daf2b0 96sesInfoFree(struct cifs_ses *buf_to_free)
1da177e4
LT
97{
98 if (buf_to_free == NULL) {
f96637be 99 cifs_dbg(FYI, "Null buffer passed to sesInfoFree\n");
1da177e4
LT
100 return;
101 }
102
1da177e4 103 atomic_dec(&sesInfoAllocCount);
f99d49ad
JJ
104 kfree(buf_to_free->serverOS);
105 kfree(buf_to_free->serverDomain);
106 kfree(buf_to_free->serverNOS);
453431a5 107 kfree_sensitive(buf_to_free->password);
8727c8a8 108 kfree(buf_to_free->user_name);
3979877e 109 kfree(buf_to_free->domainName);
453431a5 110 kfree_sensitive(buf_to_free->auth_key.response);
b6f0dd5d 111 kfree(buf_to_free->iface_list);
453431a5 112 kfree_sensitive(buf_to_free);
1da177e4
LT
113}
114
96daf2b0 115struct cifs_tcon *
1da177e4
LT
116tconInfoAlloc(void)
117{
96daf2b0 118 struct cifs_tcon *ret_buf;
0544b324
JP
119
120 ret_buf = kzalloc(sizeof(*ret_buf), GFP_KERNEL);
121 if (!ret_buf)
122 return NULL;
123 ret_buf->crfid.fid = kzalloc(sizeof(*ret_buf->crfid.fid), GFP_KERNEL);
124 if (!ret_buf->crfid.fid) {
125 kfree(ret_buf);
126 return NULL;
1da177e4 127 }
0544b324
JP
128
129 atomic_inc(&tconInfoAllocCount);
130 ret_buf->tidStatus = CifsNew;
131 ++ret_buf->tc_count;
132 INIT_LIST_HEAD(&ret_buf->openFileList);
133 INIT_LIST_HEAD(&ret_buf->tcon_list);
134 spin_lock_init(&ret_buf->open_file_lock);
135 mutex_init(&ret_buf->crfid.fid_mutex);
136 spin_lock_init(&ret_buf->stat_lock);
137 atomic_set(&ret_buf->num_local_opens, 0);
138 atomic_set(&ret_buf->num_remote_opens, 0);
139
1da177e4
LT
140 return ret_buf;
141}
142
143void
96daf2b0 144tconInfoFree(struct cifs_tcon *buf_to_free)
1da177e4
LT
145{
146 if (buf_to_free == NULL) {
f96637be 147 cifs_dbg(FYI, "Null buffer passed to tconInfoFree\n");
1da177e4
LT
148 return;
149 }
1da177e4 150 atomic_dec(&tconInfoAllocCount);
f99d49ad 151 kfree(buf_to_free->nativeFileSystem);
453431a5 152 kfree_sensitive(buf_to_free->password);
a93864d9 153 kfree(buf_to_free->crfid.fid);
4a367dc0
PA
154#ifdef CONFIG_CIFS_DFS_UPCALL
155 kfree(buf_to_free->dfs_path);
156#endif
1da177e4
LT
157 kfree(buf_to_free);
158}
159
160struct smb_hdr *
161cifs_buf_get(void)
162{
163 struct smb_hdr *ret_buf = NULL;
3792c173
PS
164 /*
165 * SMB2 header is bigger than CIFS one - no problems to clean some
166 * more bytes for CIFS.
167 */
49f466bd 168 size_t buf_size = sizeof(struct smb2_sync_hdr);
2a38e120 169
3792c173
PS
170 /*
171 * We could use negotiated size instead of max_msgsize -
172 * but it may be more efficient to always alloc same size
173 * albeit slightly larger than necessary and maxbuffersize
174 * defaults to this and can not be bigger.
175 */
232087cb 176 ret_buf = mempool_alloc(cifs_req_poolp, GFP_NOFS);
1da177e4
LT
177
178 /* clear the first few header bytes */
179 /* for most paths, more is cleared in header_assemble */
a6f74e80
N
180 memset(ret_buf, 0, buf_size + 3);
181 atomic_inc(&bufAllocCount);
4498eed5 182#ifdef CONFIG_CIFS_STATS2
a6f74e80 183 atomic_inc(&totBufAllocCount);
4498eed5 184#endif /* CONFIG_CIFS_STATS2 */
1da177e4
LT
185
186 return ret_buf;
187}
188
189void
190cifs_buf_release(void *buf_to_free)
191{
1da177e4 192 if (buf_to_free == NULL) {
f96637be 193 /* cifs_dbg(FYI, "Null buffer passed to cifs_buf_release\n");*/
1da177e4
LT
194 return;
195 }
fb8c4b14 196 mempool_free(buf_to_free, cifs_req_poolp);
1da177e4
LT
197
198 atomic_dec(&bufAllocCount);
199 return;
200}
201
202struct smb_hdr *
203cifs_small_buf_get(void)
204{
205 struct smb_hdr *ret_buf = NULL;
206
fb8c4b14
SF
207/* We could use negotiated size instead of max_msgsize -
208 but it may be more efficient to always alloc same size
209 albeit slightly larger than necessary and maxbuffersize
1da177e4 210 defaults to this and can not be bigger */
232087cb 211 ret_buf = mempool_alloc(cifs_sm_req_poolp, GFP_NOFS);
1da177e4
LT
212 /* No need to clear memory here, cleared in header assemble */
213 /* memset(ret_buf, 0, sizeof(struct smb_hdr) + 27);*/
a6f74e80 214 atomic_inc(&smBufAllocCount);
4498eed5 215#ifdef CONFIG_CIFS_STATS2
a6f74e80 216 atomic_inc(&totSmBufAllocCount);
4498eed5
SF
217#endif /* CONFIG_CIFS_STATS2 */
218
1da177e4
LT
219 return ret_buf;
220}
221
222void
223cifs_small_buf_release(void *buf_to_free)
224{
225
226 if (buf_to_free == NULL) {
f96637be 227 cifs_dbg(FYI, "Null buffer passed to cifs_small_buf_release\n");
1da177e4
LT
228 return;
229 }
fb8c4b14 230 mempool_free(buf_to_free, cifs_sm_req_poolp);
1da177e4
LT
231
232 atomic_dec(&smBufAllocCount);
233 return;
234}
235
6d81ed1e
SP
236void
237free_rsp_buf(int resp_buftype, void *rsp)
238{
239 if (resp_buftype == CIFS_SMALL_BUFFER)
240 cifs_small_buf_release(rsp);
241 else if (resp_buftype == CIFS_LARGE_BUFFER)
242 cifs_buf_release(rsp);
243}
244
1982c344
SF
245/* NB: MID can not be set if treeCon not passed in, in that
246 case it is responsbility of caller to set the mid */
1da177e4
LT
247void
248header_assemble(struct smb_hdr *buffer, char smb_command /* command */ ,
96daf2b0 249 const struct cifs_tcon *treeCon, int word_count
1da177e4
LT
250 /* length of fixed section (word count) in two byte units */)
251{
1da177e4
LT
252 char *temp = (char *) buffer;
253
fb8c4b14 254 memset(temp, 0, 256); /* bigger than MAX_CIFS_HDR_SIZE */
1da177e4 255
be8e3b00 256 buffer->smb_buf_length = cpu_to_be32(
630f3f0c 257 (2 * word_count) + sizeof(struct smb_hdr) -
1da177e4 258 4 /* RFC 1001 length field does not count */ +
be8e3b00 259 2 /* for bcc field itself */) ;
1da177e4
LT
260
261 buffer->Protocol[0] = 0xFF;
262 buffer->Protocol[1] = 'S';
263 buffer->Protocol[2] = 'M';
264 buffer->Protocol[3] = 'B';
265 buffer->Command = smb_command;
266 buffer->Flags = 0x00; /* case sensitive */
267 buffer->Flags2 = SMBFLG2_KNOWS_LONG_NAMES;
268 buffer->Pid = cpu_to_le16((__u16)current->tgid);
269 buffer->PidHigh = cpu_to_le16((__u16)(current->tgid >> 16));
1da177e4
LT
270 if (treeCon) {
271 buffer->Tid = treeCon->tid;
272 if (treeCon->ses) {
273 if (treeCon->ses->capabilities & CAP_UNICODE)
274 buffer->Flags2 |= SMBFLG2_UNICODE;
ad7a2926 275 if (treeCon->ses->capabilities & CAP_STATUS32)
1da177e4 276 buffer->Flags2 |= SMBFLG2_ERR_STATUS;
ad7a2926 277
1982c344
SF
278 /* Uid is not converted */
279 buffer->Uid = treeCon->ses->Suid;
88257360 280 buffer->Mid = get_next_mid(treeCon->ses->server);
1da177e4
LT
281 }
282 if (treeCon->Flags & SMB_SHARE_IS_IN_DFS)
283 buffer->Flags2 |= SMBFLG2_DFS;
d3485d37
SF
284 if (treeCon->nocase)
285 buffer->Flags |= SMBFLG_CASELESS;
790fe579 286 if ((treeCon->ses) && (treeCon->ses->server))
38d77c50 287 if (treeCon->ses->server->sign)
1da177e4
LT
288 buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
289 }
290
291/* endian conversion of flags is now done just before sending */
292 buffer->WordCount = (char) word_count;
293 return;
294}
295
2cd646a2 296static int
944d6f1a 297check_smb_hdr(struct smb_hdr *smb)
1da177e4 298{
68abaffa
JL
299 /* does it have the right SMB "signature" ? */
300 if (*(__le32 *) smb->Protocol != cpu_to_le32(0x424d53ff)) {
f96637be
JP
301 cifs_dbg(VFS, "Bad protocol string signature header 0x%x\n",
302 *(unsigned int *)smb->Protocol);
68abaffa
JL
303 return 1;
304 }
305
68abaffa
JL
306 /* if it's a response then accept */
307 if (smb->Flags & SMBFLG_RESPONSE)
308 return 0;
309
310 /* only one valid case where server sends us request */
311 if (smb->Command == SMB_COM_LOCKING_ANDX)
312 return 0;
313
3d378d3f
TG
314 cifs_dbg(VFS, "Server sent request, not response. mid=%u\n",
315 get_mid(smb));
1da177e4
LT
316 return 1;
317}
318
319int
373512ec 320checkSMB(char *buf, unsigned int total_read, struct TCP_Server_Info *server)
1da177e4 321{
d4e4854f 322 struct smb_hdr *smb = (struct smb_hdr *)buf;
376b43f4 323 __u32 rfclen = be32_to_cpu(smb->smb_buf_length);
190fdeb8 324 __u32 clc_len; /* calculated length */
f96637be
JP
325 cifs_dbg(FYI, "checkSMB Length: 0x%x, smb_buf_length: 0x%x\n",
326 total_read, rfclen);
d103e164 327
376b43f4
JL
328 /* is this frame too small to even get to a BCC? */
329 if (total_read < 2 + sizeof(struct smb_hdr)) {
330 if ((total_read >= sizeof(struct smb_hdr) - 1)
1da177e4 331 && (smb->Status.CifsError != 0)) {
376b43f4 332 /* it's an error return */
d103e164
SF
333 smb->WordCount = 0;
334 /* some error cases do not return wct and bcc */
335 return 0;
376b43f4 336 } else if ((total_read == sizeof(struct smb_hdr) + 1) &&
d103e164 337 (smb->WordCount == 0)) {
fb8c4b14 338 char *tmp = (char *)smb;
d103e164
SF
339 /* Need to work around a bug in two servers here */
340 /* First, check if the part of bcc they sent was zero */
341 if (tmp[sizeof(struct smb_hdr)] == 0) {
342 /* some servers return only half of bcc
343 * on simple responses (wct, bcc both zero)
344 * in particular have seen this on
345 * ulogoffX and FindClose. This leaves
346 * one byte of bcc potentially unitialized
347 */
348 /* zero rest of bcc */
349 tmp[sizeof(struct smb_hdr)+1] = 0;
46c79a64 350 return 0;
1da177e4 351 }
f96637be 352 cifs_dbg(VFS, "rcvd invalid byte count (bcc)\n");
d103e164 353 } else {
f96637be 354 cifs_dbg(VFS, "Length less than smb header size\n");
1da177e4 355 }
376b43f4 356 return -EIO;
1da177e4
LT
357 }
358
376b43f4 359 /* otherwise, there is enough to get to the BCC */
944d6f1a 360 if (check_smb_hdr(smb))
376b43f4 361 return -EIO;
9ec672bd 362 clc_len = smbCalcSize(smb, server);
184ed211 363
376b43f4 364 if (4 + rfclen != total_read) {
f96637be
JP
365 cifs_dbg(VFS, "Length read does not match RFC1001 length %d\n",
366 rfclen);
376b43f4 367 return -EIO;
184ed211
SF
368 }
369
376b43f4 370 if (4 + rfclen != clc_len) {
3d378d3f 371 __u16 mid = get_mid(smb);
184ed211 372 /* check if bcc wrapped around for large read responses */
376b43f4 373 if ((rfclen > 64 * 1024) && (rfclen > clc_len)) {
184ed211 374 /* check if lengths match mod 64K */
376b43f4 375 if (((4 + rfclen) & 0xFFFF) == (clc_len & 0xFFFF))
fb8c4b14 376 return 0; /* bcc wrapped */
184ed211 377 }
f96637be 378 cifs_dbg(FYI, "Calculated size %u vs length %u mismatch for mid=%u\n",
3d378d3f 379 clc_len, 4 + rfclen, mid);
6284644e 380
376b43f4 381 if (4 + rfclen < clc_len) {
f96637be 382 cifs_dbg(VFS, "RFC1001 size %u smaller than SMB for mid=%u\n",
3d378d3f 383 rfclen, mid);
376b43f4
JL
384 return -EIO;
385 } else if (rfclen > clc_len + 512) {
6284644e
JL
386 /*
387 * Some servers (Windows XP in particular) send more
388 * data than the lengths in the SMB packet would
389 * indicate on certain calls (byte range locks and
390 * trans2 find first calls in particular). While the
391 * client can handle such a frame by ignoring the
392 * trailing data, we choose limit the amount of extra
393 * data to 512 bytes.
394 */
f96637be 395 cifs_dbg(VFS, "RFC1001 size %u more than 512 bytes larger than SMB for mid=%u\n",
3d378d3f 396 rfclen, mid);
376b43f4 397 return -EIO;
46c79a64 398 }
1da177e4 399 }
20962438 400 return 0;
1da177e4 401}
4b18f2a9
SF
402
403bool
d4e4854f 404is_valid_oplock_break(char *buffer, struct TCP_Server_Info *srv)
fb8c4b14 405{
d4e4854f 406 struct smb_hdr *buf = (struct smb_hdr *)buffer;
fb8c4b14 407 struct smb_com_lock_req *pSMB = (struct smb_com_lock_req *)buf;
f1987b44 408 struct list_head *tmp, *tmp1, *tmp2;
96daf2b0
SF
409 struct cifs_ses *ses;
410 struct cifs_tcon *tcon;
f1987b44 411 struct cifsInodeInfo *pCifsInode;
1da177e4
LT
412 struct cifsFileInfo *netfile;
413
f96637be 414 cifs_dbg(FYI, "Checking for oplock break or dnotify response\n");
790fe579 415 if ((pSMB->hdr.Command == SMB_COM_NT_TRANSACT) &&
1da177e4 416 (pSMB->hdr.Flags & SMBFLG_RESPONSE)) {
fb8c4b14 417 struct smb_com_transaction_change_notify_rsp *pSMBr =
1da177e4 418 (struct smb_com_transaction_change_notify_rsp *)buf;
fb8c4b14 419 struct file_notify_information *pnotify;
1da177e4 420 __u32 data_offset = 0;
097f5863
DC
421 size_t len = srv->total_read - sizeof(pSMBr->hdr.smb_buf_length);
422
820a803f 423 if (get_bcc(buf) > sizeof(struct file_notify_information)) {
1da177e4
LT
424 data_offset = le32_to_cpu(pSMBr->DataOffset);
425
097f5863
DC
426 if (data_offset >
427 len - sizeof(struct file_notify_information)) {
a0a3036b 428 cifs_dbg(FYI, "Invalid data_offset %u\n",
097f5863
DC
429 data_offset);
430 return true;
431 }
3979877e
SF
432 pnotify = (struct file_notify_information *)
433 ((char *)&pSMBr->hdr.Protocol + data_offset);
f96637be 434 cifs_dbg(FYI, "dnotify on %s Action: 0x%x\n",
b6b38f70 435 pnotify->FileName, pnotify->Action);
fb8c4b14 436 /* cifs_dump_mem("Rcvd notify Data: ",buf,
3979877e 437 sizeof(struct smb_hdr)+60); */
4b18f2a9 438 return true;
1da177e4 439 }
790fe579 440 if (pSMBr->hdr.Status.CifsError) {
59b04c5d 441 cifs_dbg(FYI, "notify err 0x%x\n",
f96637be 442 pSMBr->hdr.Status.CifsError);
4b18f2a9 443 return true;
1da177e4 444 }
4b18f2a9 445 return false;
fb8c4b14 446 }
790fe579 447 if (pSMB->hdr.Command != SMB_COM_LOCKING_ANDX)
4b18f2a9 448 return false;
790fe579 449 if (pSMB->hdr.Flags & SMBFLG_RESPONSE) {
1da177e4
LT
450 /* no sense logging error on invalid handle on oplock
451 break - harmless race between close request and oplock
452 break response is expected from time to time writing out
453 large dirty files cached on the client */
fb8c4b14
SF
454 if ((NT_STATUS_INVALID_HANDLE) ==
455 le32_to_cpu(pSMB->hdr.Status.CifsError)) {
a0a3036b 456 cifs_dbg(FYI, "Invalid handle on oplock break\n");
4b18f2a9 457 return true;
fb8c4b14 458 } else if (ERRbadfid ==
1da177e4 459 le16_to_cpu(pSMB->hdr.Status.DosError.Error)) {
4b18f2a9 460 return true;
1da177e4 461 } else {
4b18f2a9 462 return false; /* on valid oplock brk we get "request" */
1da177e4
LT
463 }
464 }
790fe579 465 if (pSMB->hdr.WordCount != 8)
4b18f2a9 466 return false;
1da177e4 467
59b04c5d 468 cifs_dbg(FYI, "oplock type 0x%x level 0x%x\n",
b6b38f70 469 pSMB->LockType, pSMB->OplockLevel);
790fe579 470 if (!(pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE))
4b18f2a9 471 return false;
1da177e4
LT
472
473 /* look up tcon based on tid & uid */
3f9bcca7 474 spin_lock(&cifs_tcp_ses_lock);
f1987b44 475 list_for_each(tmp, &srv->smb_ses_list) {
96daf2b0 476 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
f1987b44 477 list_for_each(tmp1, &ses->tcon_list) {
96daf2b0 478 tcon = list_entry(tmp1, struct cifs_tcon, tcon_list);
f1987b44
JL
479 if (tcon->tid != buf->Tid)
480 continue;
481
44c58186 482 cifs_stats_inc(&tcon->stats.cifs_stats.num_oplock_brks);
3afca265 483 spin_lock(&tcon->open_file_lock);
f1987b44
JL
484 list_for_each(tmp2, &tcon->openFileList) {
485 netfile = list_entry(tmp2, struct cifsFileInfo,
57337e42 486 tlist);
4b4de76e 487 if (pSMB->Fid != netfile->fid.netfid)
f1987b44
JL
488 continue;
489
f96637be 490 cifs_dbg(FYI, "file id match, oplock break\n");
2b0143b5 491 pCifsInode = CIFS_I(d_inode(netfile->dentry));
9b646972 492
c11f1df5
SP
493 set_bit(CIFS_INODE_PENDING_OPLOCK_BREAK,
494 &pCifsInode->flags);
495
9bd45408
PS
496 netfile->oplock_epoch = 0;
497 netfile->oplock_level = pSMB->OplockLevel;
9b646972 498 netfile->oplock_break_cancelled = false;
9bd45408 499 cifs_queue_oplock_break(netfile);
9b646972 500
3afca265 501 spin_unlock(&tcon->open_file_lock);
3f9bcca7 502 spin_unlock(&cifs_tcp_ses_lock);
f1987b44 503 return true;
1da177e4 504 }
3afca265 505 spin_unlock(&tcon->open_file_lock);
3f9bcca7 506 spin_unlock(&cifs_tcp_ses_lock);
f96637be 507 cifs_dbg(FYI, "No matching file for oplock break\n");
4b18f2a9 508 return true;
1da177e4
LT
509 }
510 }
3f9bcca7 511 spin_unlock(&cifs_tcp_ses_lock);
f96637be 512 cifs_dbg(FYI, "Can not process oplock break for non-existent connection\n");
4b18f2a9 513 return true;
1da177e4
LT
514}
515
516void
792af7b0 517dump_smb(void *buf, int smb_buf_length)
1da177e4 518{
1da177e4
LT
519 if (traceSMB == 0)
520 return;
521
55d83e0d
AS
522 print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_NONE, 8, 2, buf,
523 smb_buf_length, true);
1da177e4 524}
6a0b4824 525
ec06aedd
JL
526void
527cifs_autodisable_serverino(struct cifs_sb_info *cifs_sb)
528{
529 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
5fc7fcd0
AA
530 struct cifs_tcon *tcon = NULL;
531
532 if (cifs_sb->master_tlink)
533 tcon = cifs_sb_master_tcon(cifs_sb);
534
f534dc99 535 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_SERVER_INUM;
29fbeb7a 536 cifs_sb->mnt_cifs_serverino_autodisabled = true;
a0a3036b 537 cifs_dbg(VFS, "Autodisabling the use of server inode numbers on %s\n",
5fc7fcd0 538 tcon ? tcon->treeName : "new server");
a0a3036b 539 cifs_dbg(VFS, "The server doesn't seem to support them properly or the files might be on different servers (DFS)\n");
5fc7fcd0
AA
540 cifs_dbg(VFS, "Hardlinks will not be recognized on this mount. Consider mounting with the \"noserverino\" option to silence this message.\n");
541
ec06aedd
JL
542 }
543}
e66673e3 544
c6723628 545void cifs_set_oplock_level(struct cifsInodeInfo *cinode, __u32 oplock)
e66673e3 546{
c6723628 547 oplock &= 0xF;
e66673e3 548
c6723628 549 if (oplock == OPLOCK_EXCLUSIVE) {
18cceb6a 550 cinode->oplock = CIFS_CACHE_WRITE_FLG | CIFS_CACHE_READ_FLG;
f96637be
JP
551 cifs_dbg(FYI, "Exclusive Oplock granted on inode %p\n",
552 &cinode->vfs_inode);
c6723628 553 } else if (oplock == OPLOCK_READ) {
18cceb6a 554 cinode->oplock = CIFS_CACHE_READ_FLG;
f96637be
JP
555 cifs_dbg(FYI, "Level II Oplock granted on inode %p\n",
556 &cinode->vfs_inode);
18cceb6a
PS
557 } else
558 cinode->oplock = 0;
e66673e3 559}
3d3ea8e6 560
c11f1df5
SP
561/*
562 * We wait for oplock breaks to be processed before we attempt to perform
563 * writes.
564 */
565int cifs_get_writer(struct cifsInodeInfo *cinode)
566{
567 int rc;
568
569start:
570 rc = wait_on_bit(&cinode->flags, CIFS_INODE_PENDING_OPLOCK_BREAK,
74316201 571 TASK_KILLABLE);
c11f1df5
SP
572 if (rc)
573 return rc;
574
575 spin_lock(&cinode->writers_lock);
576 if (!cinode->writers)
577 set_bit(CIFS_INODE_PENDING_WRITERS, &cinode->flags);
578 cinode->writers++;
579 /* Check to see if we have started servicing an oplock break */
580 if (test_bit(CIFS_INODE_PENDING_OPLOCK_BREAK, &cinode->flags)) {
581 cinode->writers--;
582 if (cinode->writers == 0) {
583 clear_bit(CIFS_INODE_PENDING_WRITERS, &cinode->flags);
584 wake_up_bit(&cinode->flags, CIFS_INODE_PENDING_WRITERS);
585 }
586 spin_unlock(&cinode->writers_lock);
587 goto start;
588 }
589 spin_unlock(&cinode->writers_lock);
590 return 0;
591}
592
593void cifs_put_writer(struct cifsInodeInfo *cinode)
594{
595 spin_lock(&cinode->writers_lock);
596 cinode->writers--;
597 if (cinode->writers == 0) {
598 clear_bit(CIFS_INODE_PENDING_WRITERS, &cinode->flags);
599 wake_up_bit(&cinode->flags, CIFS_INODE_PENDING_WRITERS);
600 }
601 spin_unlock(&cinode->writers_lock);
602}
603
b98749ca
AA
604/**
605 * cifs_queue_oplock_break - queue the oplock break handler for cfile
606 *
607 * This function is called from the demultiplex thread when it
608 * receives an oplock break for @cfile.
609 *
610 * Assumes the tcon->open_file_lock is held.
611 * Assumes cfile->file_info_lock is NOT held.
612 */
613void cifs_queue_oplock_break(struct cifsFileInfo *cfile)
614{
615 /*
616 * Bump the handle refcount now while we hold the
617 * open_file_lock to enforce the validity of it for the oplock
618 * break handler. The matching put is done at the end of the
619 * handler.
620 */
621 cifsFileInfo_get(cfile);
622
623 queue_work(cifsoplockd_wq, &cfile->oplock_break);
624}
625
c11f1df5
SP
626void cifs_done_oplock_break(struct cifsInodeInfo *cinode)
627{
628 clear_bit(CIFS_INODE_PENDING_OPLOCK_BREAK, &cinode->flags);
629 wake_up_bit(&cinode->flags, CIFS_INODE_PENDING_OPLOCK_BREAK);
630}
631
3d3ea8e6
SP
632bool
633backup_cred(struct cifs_sb_info *cifs_sb)
634{
635 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPUID) {
8401e936 636 if (uid_eq(cifs_sb->ctx->backupuid, current_fsuid()))
3d3ea8e6
SP
637 return true;
638 }
639 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPGID) {
8401e936 640 if (in_group_p(cifs_sb->ctx->backupgid))
3d3ea8e6
SP
641 return true;
642 }
643
644 return false;
645}
233839b1
PS
646
647void
648cifs_del_pending_open(struct cifs_pending_open *open)
649{
3afca265 650 spin_lock(&tlink_tcon(open->tlink)->open_file_lock);
233839b1 651 list_del(&open->olist);
3afca265 652 spin_unlock(&tlink_tcon(open->tlink)->open_file_lock);
233839b1
PS
653}
654
655void
656cifs_add_pending_open_locked(struct cifs_fid *fid, struct tcon_link *tlink,
657 struct cifs_pending_open *open)
658{
233839b1 659 memcpy(open->lease_key, fid->lease_key, SMB2_LEASE_KEY_SIZE);
233839b1
PS
660 open->oplock = CIFS_OPLOCK_NO_CHANGE;
661 open->tlink = tlink;
662 fid->pending_open = open;
663 list_add_tail(&open->olist, &tlink_tcon(tlink)->pending_opens);
664}
665
666void
667cifs_add_pending_open(struct cifs_fid *fid, struct tcon_link *tlink,
668 struct cifs_pending_open *open)
669{
3afca265 670 spin_lock(&tlink_tcon(tlink)->open_file_lock);
233839b1 671 cifs_add_pending_open_locked(fid, tlink, open);
3afca265 672 spin_unlock(&tlink_tcon(open->tlink)->open_file_lock);
233839b1 673}
4ecce920 674
860b69a9
RS
675/*
676 * Critical section which runs after acquiring deferred_lock.
677 */
c3f207ab
RS
678bool
679cifs_is_deferred_close(struct cifsFileInfo *cfile, struct cifs_deferred_close **pdclose)
680{
681 struct cifs_deferred_close *dclose;
682
683 list_for_each_entry(dclose, &CIFS_I(d_inode(cfile->dentry))->deferred_closes, dlist) {
684 if ((dclose->netfid == cfile->fid.netfid) &&
685 (dclose->persistent_fid == cfile->fid.persistent_fid) &&
686 (dclose->volatile_fid == cfile->fid.volatile_fid)) {
687 *pdclose = dclose;
688 return true;
689 }
690 }
691 return false;
692}
693
860b69a9
RS
694/*
695 * Critical section which runs after acquiring deferred_lock.
696 */
c3f207ab
RS
697void
698cifs_add_deferred_close(struct cifsFileInfo *cfile, struct cifs_deferred_close *dclose)
699{
700 bool is_deferred = false;
701 struct cifs_deferred_close *pdclose;
702
703 is_deferred = cifs_is_deferred_close(cfile, &pdclose);
704 if (is_deferred) {
705 kfree(dclose);
706 return;
707 }
708
709 dclose->tlink = cfile->tlink;
710 dclose->netfid = cfile->fid.netfid;
711 dclose->persistent_fid = cfile->fid.persistent_fid;
712 dclose->volatile_fid = cfile->fid.volatile_fid;
713 list_add_tail(&dclose->dlist, &CIFS_I(d_inode(cfile->dentry))->deferred_closes);
714}
715
860b69a9
RS
716/*
717 * Critical section which runs after acquiring deferred_lock.
718 */
c3f207ab
RS
719void
720cifs_del_deferred_close(struct cifsFileInfo *cfile)
721{
722 bool is_deferred = false;
723 struct cifs_deferred_close *dclose;
724
725 is_deferred = cifs_is_deferred_close(cfile, &dclose);
726 if (!is_deferred)
727 return;
728 list_del(&dclose->dlist);
729 kfree(dclose);
730}
731
732void
733cifs_close_deferred_file(struct cifsInodeInfo *cifs_inode)
734{
735 struct cifsFileInfo *cfile = NULL;
736 struct cifs_deferred_close *dclose;
737
738 list_for_each_entry(cfile, &cifs_inode->openFileList, flist) {
739 spin_lock(&cifs_inode->deferred_lock);
740 if (cifs_is_deferred_close(cfile, &dclose))
741 mod_delayed_work(deferredclose_wq, &cfile->deferred, 0);
742 spin_unlock(&cifs_inode->deferred_lock);
743 }
744}
745
78c09634
RS
746void
747cifs_close_all_deferred_files(struct cifs_tcon *tcon)
748{
749 struct cifsFileInfo *cfile;
78c09634
RS
750 struct list_head *tmp;
751
752 spin_lock(&tcon->open_file_lock);
753 list_for_each(tmp, &tcon->openFileList) {
754 cfile = list_entry(tmp, struct cifsFileInfo, tlist);
78c09634
RS
755 if (delayed_work_pending(&cfile->deferred))
756 mod_delayed_work(deferredclose_wq, &cfile->deferred, 0);
757 }
758 spin_unlock(&tcon->open_file_lock);
759}
760
4ecce920
AA
761/* parses DFS refferal V3 structure
762 * caller is responsible for freeing target_nodes
763 * returns:
764 * - on success - 0
765 * - on failure - errno
766 */
767int
768parse_dfs_referrals(struct get_dfs_referral_rsp *rsp, u32 rsp_size,
769 unsigned int *num_of_nodes,
770 struct dfs_info3_param **target_nodes,
771 const struct nls_table *nls_codepage, int remap,
772 const char *searchName, bool is_unicode)
773{
774 int i, rc = 0;
775 char *data_end;
776 struct dfs_referral_level_3 *ref;
777
778 *num_of_nodes = le16_to_cpu(rsp->NumberOfReferrals);
779
780 if (*num_of_nodes < 1) {
781 cifs_dbg(VFS, "num_referrals: must be at least > 0, but we get num_referrals = %d\n",
782 *num_of_nodes);
783 rc = -EINVAL;
784 goto parse_DFS_referrals_exit;
785 }
786
787 ref = (struct dfs_referral_level_3 *) &(rsp->referrals);
788 if (ref->VersionNumber != cpu_to_le16(3)) {
789 cifs_dbg(VFS, "Referrals of V%d version are not supported, should be V3\n",
790 le16_to_cpu(ref->VersionNumber));
791 rc = -EINVAL;
792 goto parse_DFS_referrals_exit;
793 }
794
795 /* get the upper boundary of the resp buffer */
796 data_end = (char *)rsp + rsp_size;
797
798 cifs_dbg(FYI, "num_referrals: %d dfs flags: 0x%x ...\n",
799 *num_of_nodes, le32_to_cpu(rsp->DFSFlags));
800
801 *target_nodes = kcalloc(*num_of_nodes, sizeof(struct dfs_info3_param),
802 GFP_KERNEL);
803 if (*target_nodes == NULL) {
804 rc = -ENOMEM;
805 goto parse_DFS_referrals_exit;
806 }
807
808 /* collect necessary data from referrals */
809 for (i = 0; i < *num_of_nodes; i++) {
810 char *temp;
811 int max_len;
812 struct dfs_info3_param *node = (*target_nodes)+i;
813
814 node->flags = le32_to_cpu(rsp->DFSFlags);
815 if (is_unicode) {
816 __le16 *tmp = kmalloc(strlen(searchName)*2 + 2,
817 GFP_KERNEL);
818 if (tmp == NULL) {
819 rc = -ENOMEM;
820 goto parse_DFS_referrals_exit;
821 }
822 cifsConvertToUTF16((__le16 *) tmp, searchName,
823 PATH_MAX, nls_codepage, remap);
824 node->path_consumed = cifs_utf16_bytes(tmp,
825 le16_to_cpu(rsp->PathConsumed),
826 nls_codepage);
827 kfree(tmp);
828 } else
829 node->path_consumed = le16_to_cpu(rsp->PathConsumed);
830
831 node->server_type = le16_to_cpu(ref->ServerType);
832 node->ref_flag = le16_to_cpu(ref->ReferralEntryFlags);
833
834 /* copy DfsPath */
835 temp = (char *)ref + le16_to_cpu(ref->DfsPathOffset);
836 max_len = data_end - temp;
837 node->path_name = cifs_strndup_from_utf16(temp, max_len,
838 is_unicode, nls_codepage);
839 if (!node->path_name) {
840 rc = -ENOMEM;
841 goto parse_DFS_referrals_exit;
842 }
843
844 /* copy link target UNC */
845 temp = (char *)ref + le16_to_cpu(ref->NetworkAddressOffset);
846 max_len = data_end - temp;
847 node->node_name = cifs_strndup_from_utf16(temp, max_len,
848 is_unicode, nls_codepage);
849 if (!node->node_name) {
850 rc = -ENOMEM;
851 goto parse_DFS_referrals_exit;
852 }
853
e7b602f4
PA
854 node->ttl = le32_to_cpu(ref->TimeToLive);
855
4ecce920
AA
856 ref++;
857 }
858
859parse_DFS_referrals_exit:
860 if (rc) {
861 free_dfs_info_array(*target_nodes, *num_of_nodes);
862 *target_nodes = NULL;
863 *num_of_nodes = 0;
864 }
865 return rc;
866}
ccf7f408
PS
867
868struct cifs_aio_ctx *
869cifs_aio_ctx_alloc(void)
870{
871 struct cifs_aio_ctx *ctx;
872
13f5938d
JG
873 /*
874 * Must use kzalloc to initialize ctx->bv to NULL and ctx->direct_io
875 * to false so that we know when we have to unreference pages within
876 * cifs_aio_ctx_release()
877 */
ccf7f408
PS
878 ctx = kzalloc(sizeof(struct cifs_aio_ctx), GFP_KERNEL);
879 if (!ctx)
880 return NULL;
881
882 INIT_LIST_HEAD(&ctx->list);
883 mutex_init(&ctx->aio_mutex);
884 init_completion(&ctx->done);
885 kref_init(&ctx->refcount);
886 return ctx;
887}
888
889void
890cifs_aio_ctx_release(struct kref *refcount)
891{
892 struct cifs_aio_ctx *ctx = container_of(refcount,
893 struct cifs_aio_ctx, refcount);
894
895 cifsFileInfo_put(ctx->cfile);
13f5938d
JG
896
897 /*
898 * ctx->bv is only set if setup_aio_ctx_iter() was call successfuly
899 * which means that iov_iter_get_pages() was a success and thus that
900 * we have taken reference on pages.
901 */
902 if (ctx->bv) {
903 unsigned i;
904
905 for (i = 0; i < ctx->npages; i++) {
906 if (ctx->should_dirty)
907 set_page_dirty(ctx->bv[i].bv_page);
908 put_page(ctx->bv[i].bv_page);
909 }
910 kvfree(ctx->bv);
911 }
912
ccf7f408
PS
913 kfree(ctx);
914}
915
916#define CIFS_AIO_KMALLOC_LIMIT (1024 * 1024)
917
918int
919setup_aio_ctx_iter(struct cifs_aio_ctx *ctx, struct iov_iter *iter, int rw)
920{
921 ssize_t rc;
922 unsigned int cur_npages;
923 unsigned int npages = 0;
924 unsigned int i;
925 size_t len;
926 size_t count = iov_iter_count(iter);
927 unsigned int saved_len;
928 size_t start;
929 unsigned int max_pages = iov_iter_npages(iter, INT_MAX);
930 struct page **pages = NULL;
931 struct bio_vec *bv = NULL;
932
00e23707 933 if (iov_iter_is_kvec(iter)) {
bf1028a4 934 memcpy(&ctx->iter, iter, sizeof(*iter));
ccf7f408
PS
935 ctx->len = count;
936 iov_iter_advance(iter, count);
937 return 0;
938 }
939
bf1028a4
GS
940 if (array_size(max_pages, sizeof(*bv)) <= CIFS_AIO_KMALLOC_LIMIT)
941 bv = kmalloc_array(max_pages, sizeof(*bv), GFP_KERNEL);
ccf7f408
PS
942
943 if (!bv) {
bf1028a4 944 bv = vmalloc(array_size(max_pages, sizeof(*bv)));
ccf7f408
PS
945 if (!bv)
946 return -ENOMEM;
947 }
948
bf1028a4
GS
949 if (array_size(max_pages, sizeof(*pages)) <= CIFS_AIO_KMALLOC_LIMIT)
950 pages = kmalloc_array(max_pages, sizeof(*pages), GFP_KERNEL);
ccf7f408
PS
951
952 if (!pages) {
bf1028a4 953 pages = vmalloc(array_size(max_pages, sizeof(*pages)));
ecf3411a 954 if (!pages) {
ccf7f408
PS
955 kvfree(bv);
956 return -ENOMEM;
957 }
958 }
959
960 saved_len = count;
961
962 while (count && npages < max_pages) {
963 rc = iov_iter_get_pages(iter, pages, count, max_pages, &start);
964 if (rc < 0) {
a0a3036b 965 cifs_dbg(VFS, "Couldn't get user pages (rc=%zd)\n", rc);
ccf7f408
PS
966 break;
967 }
968
969 if (rc > count) {
970 cifs_dbg(VFS, "get pages rc=%zd more than %zu\n", rc,
971 count);
972 break;
973 }
974
975 iov_iter_advance(iter, rc);
976 count -= rc;
977 rc += start;
978 cur_npages = DIV_ROUND_UP(rc, PAGE_SIZE);
979
980 if (npages + cur_npages > max_pages) {
981 cifs_dbg(VFS, "out of vec array capacity (%u vs %u)\n",
982 npages + cur_npages, max_pages);
983 break;
984 }
985
986 for (i = 0; i < cur_npages; i++) {
987 len = rc > PAGE_SIZE ? PAGE_SIZE : rc;
988 bv[npages + i].bv_page = pages[i];
989 bv[npages + i].bv_offset = start;
990 bv[npages + i].bv_len = len - start;
991 rc -= len;
992 start = 0;
993 }
994
995 npages += cur_npages;
996 }
997
998 kvfree(pages);
999 ctx->bv = bv;
1000 ctx->len = saved_len - count;
1001 ctx->npages = npages;
aa563d7b 1002 iov_iter_bvec(&ctx->iter, rw, ctx->bv, npages, ctx->len);
ccf7f408
PS
1003 return 0;
1004}
82fb82be
AA
1005
1006/**
1007 * cifs_alloc_hash - allocate hash and hash context together
1008 *
1009 * The caller has to make sure @sdesc is initialized to either NULL or
1010 * a valid context. Both can be freed via cifs_free_hash().
1011 */
1012int
1013cifs_alloc_hash(const char *name,
1014 struct crypto_shash **shash, struct sdesc **sdesc)
1015{
1016 int rc = 0;
1017 size_t size;
1018
1019 if (*sdesc != NULL)
1020 return 0;
1021
1022 *shash = crypto_alloc_shash(name, 0, 0);
1023 if (IS_ERR(*shash)) {
a0a3036b 1024 cifs_dbg(VFS, "Could not allocate crypto %s\n", name);
82fb82be
AA
1025 rc = PTR_ERR(*shash);
1026 *shash = NULL;
1027 *sdesc = NULL;
1028 return rc;
1029 }
1030
1031 size = sizeof(struct shash_desc) + crypto_shash_descsize(*shash);
1032 *sdesc = kmalloc(size, GFP_KERNEL);
1033 if (*sdesc == NULL) {
1034 cifs_dbg(VFS, "no memory left to allocate crypto %s\n", name);
1035 crypto_free_shash(*shash);
1036 *shash = NULL;
1037 return -ENOMEM;
1038 }
1039
1040 (*sdesc)->shash.tfm = *shash;
82fb82be
AA
1041 return 0;
1042}
1043
1044/**
1045 * cifs_free_hash - free hash and hash context together
1046 *
1047 * Freeing a NULL hash or context is safe.
1048 */
1049void
1050cifs_free_hash(struct crypto_shash **shash, struct sdesc **sdesc)
1051{
1052 kfree(*sdesc);
1053 *sdesc = NULL;
1054 if (*shash)
1055 crypto_free_shash(*shash);
1056 *shash = NULL;
1057}
7b7f2bdf
LL
1058
1059/**
1060 * rqst_page_get_length - obtain the length and offset for a page in smb_rqst
1061 * Input: rqst - a smb_rqst, page - a page index for rqst
1062 * Output: *len - the length for this page, *offset - the offset for this page
1063 */
1064void rqst_page_get_length(struct smb_rqst *rqst, unsigned int page,
1065 unsigned int *len, unsigned int *offset)
1066{
1067 *len = rqst->rq_pagesz;
1068 *offset = (page == 0) ? rqst->rq_offset : 0;
1069
1070 if (rqst->rq_npages == 1 || page == rqst->rq_npages-1)
1071 *len = rqst->rq_tailsz;
1072 else if (page == 0)
1073 *len = rqst->rq_pagesz - rqst->rq_offset;
1074}
a3a53b76
PA
1075
1076void extract_unc_hostname(const char *unc, const char **h, size_t *len)
1077{
1078 const char *end;
1079
1080 /* skip initial slashes */
1081 while (*unc && (*unc == '\\' || *unc == '/'))
1082 unc++;
1083
1084 end = unc;
1085
1086 while (*end && !(*end == '\\' || *end == '/'))
1087 end++;
1088
1089 *h = unc;
1090 *len = end - unc;
1091}
340625e6
RS
1092
1093/**
1094 * copy_path_name - copy src path to dst, possibly truncating
1095 *
1096 * returns number of bytes written (including trailing nul)
1097 */
1098int copy_path_name(char *dst, const char *src)
1099{
1100 int name_len;
1101
1102 /*
1103 * PATH_MAX includes nul, so if strlen(src) >= PATH_MAX it
1104 * will truncate and strlen(dst) will be PATH_MAX-1
1105 */
1106 name_len = strscpy(dst, src, PATH_MAX);
1107 if (WARN_ON_ONCE(name_len < 0))
1108 name_len = PATH_MAX-1;
1109
1110 /* we count the trailing nul */
1111 name_len++;
1112 return name_len;
1113}
bacd704a
PAS
1114
1115struct super_cb_data {
3786f4bd 1116 void *data;
bacd704a
PAS
1117 struct super_block *sb;
1118};
1119
3786f4bd 1120static void tcp_super_cb(struct super_block *sb, void *arg)
bacd704a 1121{
3786f4bd
PA
1122 struct super_cb_data *sd = arg;
1123 struct TCP_Server_Info *server = sd->data;
bacd704a
PAS
1124 struct cifs_sb_info *cifs_sb;
1125 struct cifs_tcon *tcon;
1126
3786f4bd 1127 if (sd->sb)
bacd704a
PAS
1128 return;
1129
1130 cifs_sb = CIFS_SB(sb);
1131 tcon = cifs_sb_master_tcon(cifs_sb);
3786f4bd
PA
1132 if (tcon->ses->server == server)
1133 sd->sb = sb;
bacd704a
PAS
1134}
1135
3786f4bd
PA
1136static struct super_block *__cifs_get_super(void (*f)(struct super_block *, void *),
1137 void *data)
bacd704a 1138{
3786f4bd
PA
1139 struct super_cb_data sd = {
1140 .data = data,
bacd704a
PAS
1141 .sb = NULL,
1142 };
1143
3786f4bd 1144 iterate_supers_type(&cifs_fs_type, f, &sd);
bacd704a 1145
3786f4bd
PA
1146 if (!sd.sb)
1147 return ERR_PTR(-EINVAL);
bacd704a
PAS
1148 /*
1149 * Grab an active reference in order to prevent automounts (DFS links)
1150 * of expiring and then freeing up our cifs superblock pointer while
1151 * we're doing failover.
1152 */
3786f4bd
PA
1153 cifs_sb_active(sd.sb);
1154 return sd.sb;
bacd704a
PAS
1155}
1156
3786f4bd 1157static void __cifs_put_super(struct super_block *sb)
bacd704a
PAS
1158{
1159 if (!IS_ERR_OR_NULL(sb))
1160 cifs_sb_deactive(sb);
1161}
1162
3786f4bd
PA
1163struct super_block *cifs_get_tcp_super(struct TCP_Server_Info *server)
1164{
1165 return __cifs_get_super(tcp_super_cb, server);
1166}
1167
1168void cifs_put_tcp_super(struct super_block *sb)
1169{
1170 __cifs_put_super(sb);
1171}
1172
1173#ifdef CONFIG_CIFS_DFS_UPCALL
e4af35fa
PA
1174int match_target_ip(struct TCP_Server_Info *server,
1175 const char *share, size_t share_len,
1176 bool *result)
1177{
1178 int rc;
1179 char *target, *tip = NULL;
1180 struct sockaddr tipaddr;
1181
1182 *result = false;
1183
1184 target = kzalloc(share_len + 3, GFP_KERNEL);
1185 if (!target) {
1186 rc = -ENOMEM;
1187 goto out;
1188 }
1189
1190 scnprintf(target, share_len + 3, "\\\\%.*s", (int)share_len, share);
1191
1192 cifs_dbg(FYI, "%s: target name: %s\n", __func__, target + 2);
1193
1194 rc = dns_resolve_server_name_to_ip(target, &tip);
1195 if (rc < 0)
1196 goto out;
1197
1198 cifs_dbg(FYI, "%s: target ip: %s\n", __func__, tip);
1199
1200 if (!cifs_convert_address(&tipaddr, tip, strlen(tip))) {
1201 cifs_dbg(VFS, "%s: failed to convert target ip address\n",
1202 __func__);
1203 rc = -EINVAL;
1204 goto out;
1205 }
1206
1207 *result = cifs_match_ipaddr((struct sockaddr *)&server->dstaddr,
1208 &tipaddr);
1209 cifs_dbg(FYI, "%s: ip addresses match: %u\n", __func__, *result);
1210 rc = 0;
1211
1212out:
1213 kfree(target);
1214 kfree(tip);
1215
1216 return rc;
1217}
1218
3786f4bd
PA
1219static void tcon_super_cb(struct super_block *sb, void *arg)
1220{
1221 struct super_cb_data *sd = arg;
1222 struct cifs_tcon *tcon = sd->data;
1223 struct cifs_sb_info *cifs_sb;
1224
1225 if (sd->sb)
1226 return;
1227
1228 cifs_sb = CIFS_SB(sb);
1229 if (tcon->dfs_path && cifs_sb->origin_fullpath &&
1230 !strcasecmp(tcon->dfs_path, cifs_sb->origin_fullpath))
1231 sd->sb = sb;
1232}
1233
1234static inline struct super_block *cifs_get_tcon_super(struct cifs_tcon *tcon)
1235{
1236 return __cifs_get_super(tcon_super_cb, tcon);
1237}
1238
1239static inline void cifs_put_tcon_super(struct super_block *sb)
1240{
1241 __cifs_put_super(sb);
1242}
1243#else
1244static inline struct super_block *cifs_get_tcon_super(struct cifs_tcon *tcon)
1245{
1246 return ERR_PTR(-EOPNOTSUPP);
1247}
1248
1249static inline void cifs_put_tcon_super(struct super_block *sb)
1250{
1251}
1252#endif
1253
7548e1da 1254int update_super_prepath(struct cifs_tcon *tcon, char *prefix)
bacd704a
PAS
1255{
1256 struct super_block *sb;
1257 struct cifs_sb_info *cifs_sb;
1258 int rc = 0;
1259
3786f4bd 1260 sb = cifs_get_tcon_super(tcon);
bacd704a
PAS
1261 if (IS_ERR(sb))
1262 return PTR_ERR(sb);
1263
1264 cifs_sb = CIFS_SB(sb);
1265
1266 kfree(cifs_sb->prepath);
1267
7548e1da 1268 if (prefix && *prefix) {
8d767223 1269 cifs_sb->prepath = kstrdup(prefix, GFP_ATOMIC);
bacd704a
PAS
1270 if (!cifs_sb->prepath) {
1271 rc = -ENOMEM;
1272 goto out;
1273 }
1274
1275 convert_delimiter(cifs_sb->prepath, CIFS_DIR_SEP(cifs_sb));
1276 } else
1277 cifs_sb->prepath = NULL;
1278
1279 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
1280
1281out:
3786f4bd 1282 cifs_put_tcon_super(sb);
bacd704a
PAS
1283 return rc;
1284}