blob: bb1185fff8cc4d6b760cf01c22a72e50f575c591 [file] [log] [blame]
Steve French929be902021-06-18 00:31:49 -05001// SPDX-License-Identifier: LGPL-2.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Steve Frenchad7a2922008-02-07 23:25:02 +00004 * Copyright (C) International Business Machines Corp., 2002,2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Steve French (sfrench@us.ibm.com)
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
9#include <linux/slab.h>
10#include <linux/ctype.h>
11#include <linux/mempool.h>
Pavel Shilovskyccf7f402017-04-25 11:52:29 -070012#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "cifspdu.h"
14#include "cifsglob.h"
15#include "cifsproto.h"
16#include "cifs_debug.h"
17#include "smberr.h"
18#include "nterr.h"
Steve French6c91d362005-04-28 22:41:06 -070019#include "cifs_unicode.h"
Pavel Shilovsky3792c172012-01-12 22:40:50 +040020#include "smb2pdu.h"
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -030021#include "cifsfs.h"
Paulo Alcantarae4af35f2020-05-19 15:38:28 -030022#ifdef CONFIG_CIFS_DFS_UPCALL
23#include "dns_resolve.h"
24#endif
Ronnie Sahlberg8401e932020-12-12 13:40:50 -060025#include "fs_context.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27extern mempool_t *cifs_sm_req_poolp;
28extern mempool_t *cifs_req_poolp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Steve Frenchfb8c4b12007-07-10 01:16:18 +000030/* The xid serves as a useful identifier for each incoming vfs request,
31 in a similar way to the mid which is useful to track each sent smb,
32 and CurrentXid can also provide a running counter (although it
33 will eventually wrap past zero) of the total vfs operations handled
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 since the cifs fs was mounted */
35
36unsigned int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +040037_get_xid(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
39 unsigned int xid;
40
41 spin_lock(&GlobalMid_Lock);
42 GlobalTotalActiveXid++;
Steve French50c2f752007-07-13 00:33:32 +000043
44 /* keep high water mark for number of simultaneous ops in filesystem */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 if (GlobalTotalActiveXid > GlobalMaxActiveXid)
Steve French50c2f752007-07-13 00:33:32 +000046 GlobalMaxActiveXid = GlobalTotalActiveXid;
Steve French790fe572007-07-07 19:25:05 +000047 if (GlobalTotalActiveXid > 65000)
Joe Perchesf96637b2013-05-04 22:12:25 -050048 cifs_dbg(FYI, "warning: more than 65000 requests active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 xid = GlobalCurrentXid++;
50 spin_unlock(&GlobalMid_Lock);
51 return xid;
52}
53
54void
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +040055_free_xid(unsigned int xid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 spin_lock(&GlobalMid_Lock);
Steve French790fe572007-07-07 19:25:05 +000058 /* if (GlobalTotalActiveXid == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 BUG(); */
60 GlobalTotalActiveXid--;
61 spin_unlock(&GlobalMid_Lock);
62}
63
Steve French96daf2b2011-05-27 04:34:02 +000064struct cifs_ses *
Linus Torvalds1da177e2005-04-16 15:20:36 -070065sesInfoAlloc(void)
66{
Steve French96daf2b2011-05-27 04:34:02 +000067 struct cifs_ses *ret_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Steve French96daf2b2011-05-27 04:34:02 +000069 ret_buf = kzalloc(sizeof(struct cifs_ses), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 if (ret_buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 atomic_inc(&sesInfoAllocCount);
72 ret_buf->status = CifsNew;
Jeff Layton14fbf502008-11-14 13:53:46 -050073 ++ret_buf->ses_count;
74 INIT_LIST_HEAD(&ret_buf->smb_ses_list);
Jeff Laytonf1987b42008-11-15 11:12:47 -050075 INIT_LIST_HEAD(&ret_buf->tcon_list);
Steve Frenchd7b619c2010-02-25 05:36:46 +000076 mutex_init(&ret_buf->session_mutex);
Aurelien Aptelb6f0dd52018-06-14 15:43:18 +020077 spin_lock_init(&ret_buf->iface_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 }
79 return ret_buf;
80}
81
82void
Steve French96daf2b2011-05-27 04:34:02 +000083sesInfoFree(struct cifs_ses *buf_to_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 if (buf_to_free == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -050086 cifs_dbg(FYI, "Null buffer passed to sesInfoFree\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return;
88 }
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 atomic_dec(&sesInfoAllocCount);
Jesper Juhlf99d49a2005-11-07 01:01:34 -080091 kfree(buf_to_free->serverOS);
92 kfree(buf_to_free->serverDomain);
93 kfree(buf_to_free->serverNOS);
Waiman Long453431a2020-08-06 23:18:13 -070094 kfree_sensitive(buf_to_free->password);
Steve French8727c8a2011-02-25 01:11:56 -060095 kfree(buf_to_free->user_name);
Steve French39798772006-05-31 22:40:51 +000096 kfree(buf_to_free->domainName);
Waiman Long453431a2020-08-06 23:18:13 -070097 kfree_sensitive(buf_to_free->auth_key.response);
Aurelien Aptelb6f0dd52018-06-14 15:43:18 +020098 kfree(buf_to_free->iface_list);
Waiman Long453431a2020-08-06 23:18:13 -070099 kfree_sensitive(buf_to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
Steve French96daf2b2011-05-27 04:34:02 +0000102struct cifs_tcon *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103tconInfoAlloc(void)
104{
Steve French96daf2b2011-05-27 04:34:02 +0000105 struct cifs_tcon *ret_buf;
Joe Perches0544b322018-12-20 23:50:48 -0600106
107 ret_buf = kzalloc(sizeof(*ret_buf), GFP_KERNEL);
108 if (!ret_buf)
109 return NULL;
110 ret_buf->crfid.fid = kzalloc(sizeof(*ret_buf->crfid.fid), GFP_KERNEL);
111 if (!ret_buf->crfid.fid) {
112 kfree(ret_buf);
113 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
Joe Perches0544b322018-12-20 23:50:48 -0600115
116 atomic_inc(&tconInfoAllocCount);
117 ret_buf->tidStatus = CifsNew;
118 ++ret_buf->tc_count;
119 INIT_LIST_HEAD(&ret_buf->openFileList);
120 INIT_LIST_HEAD(&ret_buf->tcon_list);
121 spin_lock_init(&ret_buf->open_file_lock);
122 mutex_init(&ret_buf->crfid.fid_mutex);
123 spin_lock_init(&ret_buf->stat_lock);
124 atomic_set(&ret_buf->num_local_opens, 0);
125 atomic_set(&ret_buf->num_remote_opens, 0);
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return ret_buf;
128}
129
130void
Steve French96daf2b2011-05-27 04:34:02 +0000131tconInfoFree(struct cifs_tcon *buf_to_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 if (buf_to_free == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500134 cifs_dbg(FYI, "Null buffer passed to tconInfoFree\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return;
136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 atomic_dec(&tconInfoAllocCount);
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800138 kfree(buf_to_free->nativeFileSystem);
Waiman Long453431a2020-08-06 23:18:13 -0700139 kfree_sensitive(buf_to_free->password);
Ronnie Sahlberga93864d2018-06-14 06:48:35 +1000140 kfree(buf_to_free->crfid.fid);
Paulo Alcantara4a367dc2018-11-14 16:53:52 -0200141#ifdef CONFIG_CIFS_DFS_UPCALL
142 kfree(buf_to_free->dfs_path);
143#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 kfree(buf_to_free);
145}
146
147struct smb_hdr *
148cifs_buf_get(void)
149{
150 struct smb_hdr *ret_buf = NULL;
Pavel Shilovsky3792c172012-01-12 22:40:50 +0400151 /*
152 * SMB2 header is bigger than CIFS one - no problems to clean some
153 * more bytes for CIFS.
154 */
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +1000155 size_t buf_size = sizeof(struct smb2_sync_hdr);
Steve French2a38e122017-07-08 18:48:15 -0500156
Pavel Shilovsky3792c172012-01-12 22:40:50 +0400157 /*
158 * We could use negotiated size instead of max_msgsize -
159 * but it may be more efficient to always alloc same size
160 * albeit slightly larger than necessary and maxbuffersize
161 * defaults to this and can not be bigger.
162 */
Pekka Enberg232087c2008-09-15 13:22:54 +0300163 ret_buf = mempool_alloc(cifs_req_poolp, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 /* clear the first few header bytes */
166 /* for most paths, more is cleared in header_assemble */
NeilBrowna6f74e82017-04-10 12:08:53 +1000167 memset(ret_buf, 0, buf_size + 3);
168 atomic_inc(&bufAllocCount);
Steve French4498eed52005-12-03 13:58:57 -0800169#ifdef CONFIG_CIFS_STATS2
NeilBrowna6f74e82017-04-10 12:08:53 +1000170 atomic_inc(&totBufAllocCount);
Steve French4498eed52005-12-03 13:58:57 -0800171#endif /* CONFIG_CIFS_STATS2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 return ret_buf;
174}
175
176void
177cifs_buf_release(void *buf_to_free)
178{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (buf_to_free == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500180 /* cifs_dbg(FYI, "Null buffer passed to cifs_buf_release\n");*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return;
182 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000183 mempool_free(buf_to_free, cifs_req_poolp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 atomic_dec(&bufAllocCount);
186 return;
187}
188
189struct smb_hdr *
190cifs_small_buf_get(void)
191{
192 struct smb_hdr *ret_buf = NULL;
193
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000194/* We could use negotiated size instead of max_msgsize -
195 but it may be more efficient to always alloc same size
196 albeit slightly larger than necessary and maxbuffersize
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 defaults to this and can not be bigger */
Pekka Enberg232087c2008-09-15 13:22:54 +0300198 ret_buf = mempool_alloc(cifs_sm_req_poolp, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 /* No need to clear memory here, cleared in header assemble */
200 /* memset(ret_buf, 0, sizeof(struct smb_hdr) + 27);*/
NeilBrowna6f74e82017-04-10 12:08:53 +1000201 atomic_inc(&smBufAllocCount);
Steve French4498eed52005-12-03 13:58:57 -0800202#ifdef CONFIG_CIFS_STATS2
NeilBrowna6f74e82017-04-10 12:08:53 +1000203 atomic_inc(&totSmBufAllocCount);
Steve French4498eed52005-12-03 13:58:57 -0800204#endif /* CONFIG_CIFS_STATS2 */
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return ret_buf;
207}
208
209void
210cifs_small_buf_release(void *buf_to_free)
211{
212
213 if (buf_to_free == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500214 cifs_dbg(FYI, "Null buffer passed to cifs_small_buf_release\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return;
216 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000217 mempool_free(buf_to_free, cifs_sm_req_poolp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 atomic_dec(&smBufAllocCount);
220 return;
221}
222
Sachin Prabhu6d81ed12014-06-16 15:35:24 +0100223void
224free_rsp_buf(int resp_buftype, void *rsp)
225{
226 if (resp_buftype == CIFS_SMALL_BUFFER)
227 cifs_small_buf_release(rsp);
228 else if (resp_buftype == CIFS_LARGE_BUFFER)
229 cifs_buf_release(rsp);
230}
231
Steve French1982c342005-08-17 12:38:22 -0700232/* NB: MID can not be set if treeCon not passed in, in that
233 case it is responsbility of caller to set the mid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234void
235header_assemble(struct smb_hdr *buffer, char smb_command /* command */ ,
Steve French96daf2b2011-05-27 04:34:02 +0000236 const struct cifs_tcon *treeCon, int word_count
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 /* length of fixed section (word count) in two byte units */)
238{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 char *temp = (char *) buffer;
240
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000241 memset(temp, 0, 256); /* bigger than MAX_CIFS_HDR_SIZE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000243 buffer->smb_buf_length = cpu_to_be32(
Steve French630f3f0c2007-10-25 21:17:17 +0000244 (2 * word_count) + sizeof(struct smb_hdr) -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 4 /* RFC 1001 length field does not count */ +
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000246 2 /* for bcc field itself */) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 buffer->Protocol[0] = 0xFF;
249 buffer->Protocol[1] = 'S';
250 buffer->Protocol[2] = 'M';
251 buffer->Protocol[3] = 'B';
252 buffer->Command = smb_command;
253 buffer->Flags = 0x00; /* case sensitive */
254 buffer->Flags2 = SMBFLG2_KNOWS_LONG_NAMES;
255 buffer->Pid = cpu_to_le16((__u16)current->tgid);
256 buffer->PidHigh = cpu_to_le16((__u16)(current->tgid >> 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (treeCon) {
258 buffer->Tid = treeCon->tid;
259 if (treeCon->ses) {
260 if (treeCon->ses->capabilities & CAP_UNICODE)
261 buffer->Flags2 |= SMBFLG2_UNICODE;
Steve Frenchad7a2922008-02-07 23:25:02 +0000262 if (treeCon->ses->capabilities & CAP_STATUS32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 buffer->Flags2 |= SMBFLG2_ERR_STATUS;
Steve Frenchad7a2922008-02-07 23:25:02 +0000264
Steve French1982c342005-08-17 12:38:22 -0700265 /* Uid is not converted */
266 buffer->Uid = treeCon->ses->Suid;
Steve French1db1aa92021-09-23 18:52:40 -0500267 if (treeCon->ses->server)
268 buffer->Mid = get_next_mid(treeCon->ses->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
270 if (treeCon->Flags & SMB_SHARE_IS_IN_DFS)
271 buffer->Flags2 |= SMBFLG2_DFS;
Steve Frenchd3485d32005-08-19 11:04:29 -0700272 if (treeCon->nocase)
273 buffer->Flags |= SMBFLG_CASELESS;
Steve French790fe572007-07-07 19:25:05 +0000274 if ((treeCon->ses) && (treeCon->ses->server))
Jeff Layton38d77c52013-05-26 07:01:00 -0400275 if (treeCon->ses->server->sign)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
277 }
278
279/* endian conversion of flags is now done just before sending */
280 buffer->WordCount = (char) word_count;
281 return;
282}
283
Steve French2cd646a2006-09-28 19:43:08 +0000284static int
Tim Gardner944d6f12013-10-16 09:09:49 -0600285check_smb_hdr(struct smb_hdr *smb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Jeff Layton68abaff2011-01-28 15:05:42 -0500287 /* does it have the right SMB "signature" ? */
288 if (*(__le32 *) smb->Protocol != cpu_to_le32(0x424d53ff)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500289 cifs_dbg(VFS, "Bad protocol string signature header 0x%x\n",
290 *(unsigned int *)smb->Protocol);
Jeff Layton68abaff2011-01-28 15:05:42 -0500291 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
Jeff Layton68abaff2011-01-28 15:05:42 -0500293
Jeff Layton68abaff2011-01-28 15:05:42 -0500294 /* if it's a response then accept */
295 if (smb->Flags & SMBFLG_RESPONSE)
296 return 0;
297
298 /* only one valid case where server sends us request */
299 if (smb->Command == SMB_COM_LOCKING_ANDX)
300 return 0;
301
Tim Gardner3d378d32013-11-02 12:50:34 -0500302 cifs_dbg(VFS, "Server sent request, not response. mid=%u\n",
303 get_mid(smb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return 1;
305}
306
307int
Steve French373512e2015-12-18 13:05:30 -0600308checkSMB(char *buf, unsigned int total_read, struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400310 struct smb_hdr *smb = (struct smb_hdr *)buf;
Jeff Layton376b43f2011-10-11 06:41:32 -0400311 __u32 rfclen = be32_to_cpu(smb->smb_buf_length);
Steve French190fdeb2005-10-10 11:48:26 -0700312 __u32 clc_len; /* calculated length */
Joe Perchesf96637b2013-05-04 22:12:25 -0500313 cifs_dbg(FYI, "checkSMB Length: 0x%x, smb_buf_length: 0x%x\n",
314 total_read, rfclen);
Steve Frenchd103e162006-10-12 17:49:24 +0000315
Jeff Layton376b43f2011-10-11 06:41:32 -0400316 /* is this frame too small to even get to a BCC? */
317 if (total_read < 2 + sizeof(struct smb_hdr)) {
318 if ((total_read >= sizeof(struct smb_hdr) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 && (smb->Status.CifsError != 0)) {
Jeff Layton376b43f2011-10-11 06:41:32 -0400320 /* it's an error return */
Steve Frenchd103e162006-10-12 17:49:24 +0000321 smb->WordCount = 0;
322 /* some error cases do not return wct and bcc */
323 return 0;
Jeff Layton376b43f2011-10-11 06:41:32 -0400324 } else if ((total_read == sizeof(struct smb_hdr) + 1) &&
Steve Frenchd103e162006-10-12 17:49:24 +0000325 (smb->WordCount == 0)) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000326 char *tmp = (char *)smb;
Steve Frenchd103e162006-10-12 17:49:24 +0000327 /* Need to work around a bug in two servers here */
328 /* First, check if the part of bcc they sent was zero */
329 if (tmp[sizeof(struct smb_hdr)] == 0) {
330 /* some servers return only half of bcc
331 * on simple responses (wct, bcc both zero)
332 * in particular have seen this on
333 * ulogoffX and FindClose. This leaves
334 * one byte of bcc potentially unitialized
335 */
336 /* zero rest of bcc */
337 tmp[sizeof(struct smb_hdr)+1] = 0;
Steve French46c79a62006-03-02 00:07:08 +0000338 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
Joe Perchesf96637b2013-05-04 22:12:25 -0500340 cifs_dbg(VFS, "rcvd invalid byte count (bcc)\n");
Steve Frenchd103e162006-10-12 17:49:24 +0000341 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -0500342 cifs_dbg(VFS, "Length less than smb header size\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
Jeff Layton376b43f2011-10-11 06:41:32 -0400344 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346
Jeff Layton376b43f2011-10-11 06:41:32 -0400347 /* otherwise, there is enough to get to the BCC */
Tim Gardner944d6f12013-10-16 09:09:49 -0600348 if (check_smb_hdr(smb))
Jeff Layton376b43f2011-10-11 06:41:32 -0400349 return -EIO;
Ronnie Sahlberg9ec672b2018-04-22 15:30:12 -0600350 clc_len = smbCalcSize(smb, server);
Steve French184ed212006-02-24 06:15:11 +0000351
Jeff Layton376b43f2011-10-11 06:41:32 -0400352 if (4 + rfclen != total_read) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500353 cifs_dbg(VFS, "Length read does not match RFC1001 length %d\n",
354 rfclen);
Jeff Layton376b43f2011-10-11 06:41:32 -0400355 return -EIO;
Steve French184ed212006-02-24 06:15:11 +0000356 }
357
Jeff Layton376b43f2011-10-11 06:41:32 -0400358 if (4 + rfclen != clc_len) {
Tim Gardner3d378d32013-11-02 12:50:34 -0500359 __u16 mid = get_mid(smb);
Steve French184ed212006-02-24 06:15:11 +0000360 /* check if bcc wrapped around for large read responses */
Jeff Layton376b43f2011-10-11 06:41:32 -0400361 if ((rfclen > 64 * 1024) && (rfclen > clc_len)) {
Steve French184ed212006-02-24 06:15:11 +0000362 /* check if lengths match mod 64K */
Jeff Layton376b43f2011-10-11 06:41:32 -0400363 if (((4 + rfclen) & 0xFFFF) == (clc_len & 0xFFFF))
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000364 return 0; /* bcc wrapped */
Steve French184ed212006-02-24 06:15:11 +0000365 }
Joe Perchesf96637b2013-05-04 22:12:25 -0500366 cifs_dbg(FYI, "Calculated size %u vs length %u mismatch for mid=%u\n",
Tim Gardner3d378d32013-11-02 12:50:34 -0500367 clc_len, 4 + rfclen, mid);
Jeff Layton62846442011-01-31 09:14:17 -0500368
Jeff Layton376b43f2011-10-11 06:41:32 -0400369 if (4 + rfclen < clc_len) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500370 cifs_dbg(VFS, "RFC1001 size %u smaller than SMB for mid=%u\n",
Tim Gardner3d378d32013-11-02 12:50:34 -0500371 rfclen, mid);
Jeff Layton376b43f2011-10-11 06:41:32 -0400372 return -EIO;
373 } else if (rfclen > clc_len + 512) {
Jeff Layton62846442011-01-31 09:14:17 -0500374 /*
375 * Some servers (Windows XP in particular) send more
376 * data than the lengths in the SMB packet would
377 * indicate on certain calls (byte range locks and
378 * trans2 find first calls in particular). While the
379 * client can handle such a frame by ignoring the
380 * trailing data, we choose limit the amount of extra
381 * data to 512 bytes.
382 */
Joe Perchesf96637b2013-05-04 22:12:25 -0500383 cifs_dbg(VFS, "RFC1001 size %u more than 512 bytes larger than SMB for mid=%u\n",
Tim Gardner3d378d32013-11-02 12:50:34 -0500384 rfclen, mid);
Jeff Layton376b43f2011-10-11 06:41:32 -0400385 return -EIO;
Steve French46c79a62006-03-02 00:07:08 +0000386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
Steve French20962432005-09-21 22:05:57 -0700388 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
Steve French4b18f2a2008-04-29 00:06:05 +0000390
391bool
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400392is_valid_oplock_break(char *buffer, struct TCP_Server_Info *srv)
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000393{
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400394 struct smb_hdr *buf = (struct smb_hdr *)buffer;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000395 struct smb_com_lock_req *pSMB = (struct smb_com_lock_req *)buf;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500396 struct list_head *tmp, *tmp1, *tmp2;
Steve French96daf2b2011-05-27 04:34:02 +0000397 struct cifs_ses *ses;
398 struct cifs_tcon *tcon;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500399 struct cifsInodeInfo *pCifsInode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 struct cifsFileInfo *netfile;
401
Joe Perchesf96637b2013-05-04 22:12:25 -0500402 cifs_dbg(FYI, "Checking for oplock break or dnotify response\n");
Steve French790fe572007-07-07 19:25:05 +0000403 if ((pSMB->hdr.Command == SMB_COM_NT_TRANSACT) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 (pSMB->hdr.Flags & SMBFLG_RESPONSE)) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000405 struct smb_com_transaction_change_notify_rsp *pSMBr =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 (struct smb_com_transaction_change_notify_rsp *)buf;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000407 struct file_notify_information *pnotify;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 __u32 data_offset = 0;
Dan Carpenter097f5862018-09-06 12:47:01 +0300409 size_t len = srv->total_read - sizeof(pSMBr->hdr.smb_buf_length);
410
Jeff Layton820a8032011-05-04 08:05:26 -0400411 if (get_bcc(buf) > sizeof(struct file_notify_information)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 data_offset = le32_to_cpu(pSMBr->DataOffset);
413
Dan Carpenter097f5862018-09-06 12:47:01 +0300414 if (data_offset >
415 len - sizeof(struct file_notify_information)) {
Joe Perchesa0a30362020-04-14 22:42:53 -0700416 cifs_dbg(FYI, "Invalid data_offset %u\n",
Dan Carpenter097f5862018-09-06 12:47:01 +0300417 data_offset);
418 return true;
419 }
Steve French39798772006-05-31 22:40:51 +0000420 pnotify = (struct file_notify_information *)
421 ((char *)&pSMBr->hdr.Protocol + data_offset);
Joe Perchesf96637b2013-05-04 22:12:25 -0500422 cifs_dbg(FYI, "dnotify on %s Action: 0x%x\n",
Joe Perchesb6b38f72010-04-21 03:50:45 +0000423 pnotify->FileName, pnotify->Action);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000424 /* cifs_dump_mem("Rcvd notify Data: ",buf,
Steve French39798772006-05-31 22:40:51 +0000425 sizeof(struct smb_hdr)+60); */
Steve French4b18f2a2008-04-29 00:06:05 +0000426 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
Steve French790fe572007-07-07 19:25:05 +0000428 if (pSMBr->hdr.Status.CifsError) {
Steve French59b04c52014-08-02 21:16:48 -0500429 cifs_dbg(FYI, "notify err 0x%x\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500430 pSMBr->hdr.Status.CifsError);
Steve French4b18f2a2008-04-29 00:06:05 +0000431 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
Steve French4b18f2a2008-04-29 00:06:05 +0000433 return false;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000434 }
Steve French790fe572007-07-07 19:25:05 +0000435 if (pSMB->hdr.Command != SMB_COM_LOCKING_ANDX)
Steve French4b18f2a2008-04-29 00:06:05 +0000436 return false;
Steve French790fe572007-07-07 19:25:05 +0000437 if (pSMB->hdr.Flags & SMBFLG_RESPONSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 /* no sense logging error on invalid handle on oplock
439 break - harmless race between close request and oplock
440 break response is expected from time to time writing out
441 large dirty files cached on the client */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000442 if ((NT_STATUS_INVALID_HANDLE) ==
443 le32_to_cpu(pSMB->hdr.Status.CifsError)) {
Joe Perchesa0a30362020-04-14 22:42:53 -0700444 cifs_dbg(FYI, "Invalid handle on oplock break\n");
Steve French4b18f2a2008-04-29 00:06:05 +0000445 return true;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000446 } else if (ERRbadfid ==
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 le16_to_cpu(pSMB->hdr.Status.DosError.Error)) {
Steve French4b18f2a2008-04-29 00:06:05 +0000448 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 } else {
Steve French4b18f2a2008-04-29 00:06:05 +0000450 return false; /* on valid oplock brk we get "request" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452 }
Steve French790fe572007-07-07 19:25:05 +0000453 if (pSMB->hdr.WordCount != 8)
Steve French4b18f2a2008-04-29 00:06:05 +0000454 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Steve French59b04c52014-08-02 21:16:48 -0500456 cifs_dbg(FYI, "oplock type 0x%x level 0x%x\n",
Joe Perchesb6b38f72010-04-21 03:50:45 +0000457 pSMB->LockType, pSMB->OplockLevel);
Steve French790fe572007-07-07 19:25:05 +0000458 if (!(pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE))
Steve French4b18f2a2008-04-29 00:06:05 +0000459 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 /* look up tcon based on tid & uid */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530462 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500463 list_for_each(tmp, &srv->smb_ses_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000464 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500465 list_for_each(tmp1, &ses->tcon_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000466 tcon = list_entry(tmp1, struct cifs_tcon, tcon_list);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500467 if (tcon->tid != buf->Tid)
468 continue;
469
Pavel Shilovsky44c58182012-05-28 14:16:31 +0400470 cifs_stats_inc(&tcon->stats.cifs_stats.num_oplock_brks);
Steve French3afca262016-09-22 18:58:16 -0500471 spin_lock(&tcon->open_file_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500472 list_for_each(tmp2, &tcon->openFileList) {
473 netfile = list_entry(tmp2, struct cifsFileInfo,
Steve French57337e42005-04-28 22:41:10 -0700474 tlist);
Pavel Shilovsky4b4de762012-09-18 16:20:26 -0700475 if (pSMB->Fid != netfile->fid.netfid)
Jeff Laytonf1987b42008-11-15 11:12:47 -0500476 continue;
477
Joe Perchesf96637b2013-05-04 22:12:25 -0500478 cifs_dbg(FYI, "file id match, oplock break\n");
David Howells2b0143b2015-03-17 22:25:59 +0000479 pCifsInode = CIFS_I(d_inode(netfile->dentry));
Tejun Heo9b646972010-07-20 22:09:02 +0200480
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000481 set_bit(CIFS_INODE_PENDING_OPLOCK_BREAK,
482 &pCifsInode->flags);
483
Pavel Shilovsky9bd45402019-10-29 16:51:19 -0700484 netfile->oplock_epoch = 0;
485 netfile->oplock_level = pSMB->OplockLevel;
Tejun Heo9b646972010-07-20 22:09:02 +0200486 netfile->oplock_break_cancelled = false;
Pavel Shilovsky9bd45402019-10-29 16:51:19 -0700487 cifs_queue_oplock_break(netfile);
Tejun Heo9b646972010-07-20 22:09:02 +0200488
Steve French3afca262016-09-22 18:58:16 -0500489 spin_unlock(&tcon->open_file_lock);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530490 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500491 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
Steve French3afca262016-09-22 18:58:16 -0500493 spin_unlock(&tcon->open_file_lock);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530494 spin_unlock(&cifs_tcp_ses_lock);
Joe Perchesf96637b2013-05-04 22:12:25 -0500495 cifs_dbg(FYI, "No matching file for oplock break\n");
Steve French4b18f2a2008-04-29 00:06:05 +0000496 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530499 spin_unlock(&cifs_tcp_ses_lock);
Joe Perchesf96637b2013-05-04 22:12:25 -0500500 cifs_dbg(FYI, "Can not process oplock break for non-existent connection\n");
Steve French4b18f2a2008-04-29 00:06:05 +0000501 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
504void
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400505dump_smb(void *buf, int smb_buf_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (traceSMB == 0)
508 return;
509
Andy Shevchenko55d83e02014-08-27 16:49:43 +0300510 print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_NONE, 8, 2, buf,
511 smb_buf_length, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
Steve French6a0b4822005-04-28 22:41:05 -0700513
Jeff Laytonec06aed2009-11-06 14:18:29 -0500514void
515cifs_autodisable_serverino(struct cifs_sb_info *cifs_sb)
516{
517 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
Aurelien Aptel5fc7fcd2018-11-16 16:13:25 +0100518 struct cifs_tcon *tcon = NULL;
519
520 if (cifs_sb->master_tlink)
521 tcon = cifs_sb_master_tcon(cifs_sb);
522
Suresh Jayaramanf534dc92009-11-16 12:03:16 +0530523 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_SERVER_INUM;
Paulo Alcantara (SUSE)29fbeb72019-06-18 16:16:02 -0300524 cifs_sb->mnt_cifs_serverino_autodisabled = true;
Joe Perchesa0a30362020-04-14 22:42:53 -0700525 cifs_dbg(VFS, "Autodisabling the use of server inode numbers on %s\n",
Aurelien Aptel5fc7fcd2018-11-16 16:13:25 +0100526 tcon ? tcon->treeName : "new server");
Joe Perchesa0a30362020-04-14 22:42:53 -0700527 cifs_dbg(VFS, "The server doesn't seem to support them properly or the files might be on different servers (DFS)\n");
Aurelien Aptel5fc7fcd2018-11-16 16:13:25 +0100528 cifs_dbg(VFS, "Hardlinks will not be recognized on this mount. Consider mounting with the \"noserverino\" option to silence this message.\n");
529
Jeff Laytonec06aed2009-11-06 14:18:29 -0500530 }
531}
Pavel Shilovskye66673e2010-11-02 12:00:42 +0300532
Pavel Shilovskyc6723622010-11-03 10:58:57 +0300533void cifs_set_oplock_level(struct cifsInodeInfo *cinode, __u32 oplock)
Pavel Shilovskye66673e2010-11-02 12:00:42 +0300534{
Pavel Shilovskyc6723622010-11-03 10:58:57 +0300535 oplock &= 0xF;
Pavel Shilovskye66673e2010-11-02 12:00:42 +0300536
Pavel Shilovskyc6723622010-11-03 10:58:57 +0300537 if (oplock == OPLOCK_EXCLUSIVE) {
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400538 cinode->oplock = CIFS_CACHE_WRITE_FLG | CIFS_CACHE_READ_FLG;
Joe Perchesf96637b2013-05-04 22:12:25 -0500539 cifs_dbg(FYI, "Exclusive Oplock granted on inode %p\n",
540 &cinode->vfs_inode);
Pavel Shilovskyc6723622010-11-03 10:58:57 +0300541 } else if (oplock == OPLOCK_READ) {
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400542 cinode->oplock = CIFS_CACHE_READ_FLG;
Joe Perchesf96637b2013-05-04 22:12:25 -0500543 cifs_dbg(FYI, "Level II Oplock granted on inode %p\n",
544 &cinode->vfs_inode);
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400545 } else
546 cinode->oplock = 0;
Pavel Shilovskye66673e2010-11-02 12:00:42 +0300547}
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500548
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000549/*
550 * We wait for oplock breaks to be processed before we attempt to perform
551 * writes.
552 */
553int cifs_get_writer(struct cifsInodeInfo *cinode)
554{
555 int rc;
556
557start:
558 rc = wait_on_bit(&cinode->flags, CIFS_INODE_PENDING_OPLOCK_BREAK,
NeilBrown74316202014-07-07 15:16:04 +1000559 TASK_KILLABLE);
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000560 if (rc)
561 return rc;
562
563 spin_lock(&cinode->writers_lock);
564 if (!cinode->writers)
565 set_bit(CIFS_INODE_PENDING_WRITERS, &cinode->flags);
566 cinode->writers++;
567 /* Check to see if we have started servicing an oplock break */
568 if (test_bit(CIFS_INODE_PENDING_OPLOCK_BREAK, &cinode->flags)) {
569 cinode->writers--;
570 if (cinode->writers == 0) {
571 clear_bit(CIFS_INODE_PENDING_WRITERS, &cinode->flags);
572 wake_up_bit(&cinode->flags, CIFS_INODE_PENDING_WRITERS);
573 }
574 spin_unlock(&cinode->writers_lock);
575 goto start;
576 }
577 spin_unlock(&cinode->writers_lock);
578 return 0;
579}
580
581void cifs_put_writer(struct cifsInodeInfo *cinode)
582{
583 spin_lock(&cinode->writers_lock);
584 cinode->writers--;
585 if (cinode->writers == 0) {
586 clear_bit(CIFS_INODE_PENDING_WRITERS, &cinode->flags);
587 wake_up_bit(&cinode->flags, CIFS_INODE_PENDING_WRITERS);
588 }
589 spin_unlock(&cinode->writers_lock);
590}
591
Aurelien Aptelb98749c2019-03-29 10:49:12 +0100592/**
593 * cifs_queue_oplock_break - queue the oplock break handler for cfile
David Howells03ab9cb2021-09-20 13:14:15 +0100594 * @cfile: The file to break the oplock on
Aurelien Aptelb98749c2019-03-29 10:49:12 +0100595 *
596 * This function is called from the demultiplex thread when it
597 * receives an oplock break for @cfile.
598 *
599 * Assumes the tcon->open_file_lock is held.
600 * Assumes cfile->file_info_lock is NOT held.
601 */
602void cifs_queue_oplock_break(struct cifsFileInfo *cfile)
603{
604 /*
605 * Bump the handle refcount now while we hold the
606 * open_file_lock to enforce the validity of it for the oplock
607 * break handler. The matching put is done at the end of the
608 * handler.
609 */
610 cifsFileInfo_get(cfile);
611
612 queue_work(cifsoplockd_wq, &cfile->oplock_break);
613}
614
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000615void cifs_done_oplock_break(struct cifsInodeInfo *cinode)
616{
617 clear_bit(CIFS_INODE_PENDING_OPLOCK_BREAK, &cinode->flags);
618 wake_up_bit(&cinode->flags, CIFS_INODE_PENDING_OPLOCK_BREAK);
619}
620
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500621bool
622backup_cred(struct cifs_sb_info *cifs_sb)
623{
624 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPUID) {
Ronnie Sahlberg8401e932020-12-12 13:40:50 -0600625 if (uid_eq(cifs_sb->ctx->backupuid, current_fsuid()))
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500626 return true;
627 }
628 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPGID) {
Ronnie Sahlberg8401e932020-12-12 13:40:50 -0600629 if (in_group_p(cifs_sb->ctx->backupgid))
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500630 return true;
631 }
632
633 return false;
634}
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700635
636void
637cifs_del_pending_open(struct cifs_pending_open *open)
638{
Steve French3afca262016-09-22 18:58:16 -0500639 spin_lock(&tlink_tcon(open->tlink)->open_file_lock);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700640 list_del(&open->olist);
Steve French3afca262016-09-22 18:58:16 -0500641 spin_unlock(&tlink_tcon(open->tlink)->open_file_lock);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700642}
643
644void
645cifs_add_pending_open_locked(struct cifs_fid *fid, struct tcon_link *tlink,
646 struct cifs_pending_open *open)
647{
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700648 memcpy(open->lease_key, fid->lease_key, SMB2_LEASE_KEY_SIZE);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700649 open->oplock = CIFS_OPLOCK_NO_CHANGE;
650 open->tlink = tlink;
651 fid->pending_open = open;
652 list_add_tail(&open->olist, &tlink_tcon(tlink)->pending_opens);
653}
654
655void
656cifs_add_pending_open(struct cifs_fid *fid, struct tcon_link *tlink,
657 struct cifs_pending_open *open)
658{
Steve French3afca262016-09-22 18:58:16 -0500659 spin_lock(&tlink_tcon(tlink)->open_file_lock);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700660 cifs_add_pending_open_locked(fid, tlink, open);
Steve French3afca262016-09-22 18:58:16 -0500661 spin_unlock(&tlink_tcon(open->tlink)->open_file_lock);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700662}
Aurelien Aptel4ecce922017-02-13 16:03:47 +0100663
Rohith Surabattula860b69a2021-05-05 10:56:47 +0000664/*
665 * Critical section which runs after acquiring deferred_lock.
Rohith Surabattula9687c852021-05-20 16:45:01 +0000666 * As there is no reference count on cifs_deferred_close, pdclose
667 * should not be used outside deferred_lock.
Rohith Surabattula860b69a2021-05-05 10:56:47 +0000668 */
Rohith Surabattulac3f207a2021-04-13 00:26:42 -0500669bool
670cifs_is_deferred_close(struct cifsFileInfo *cfile, struct cifs_deferred_close **pdclose)
671{
672 struct cifs_deferred_close *dclose;
673
674 list_for_each_entry(dclose, &CIFS_I(d_inode(cfile->dentry))->deferred_closes, dlist) {
675 if ((dclose->netfid == cfile->fid.netfid) &&
676 (dclose->persistent_fid == cfile->fid.persistent_fid) &&
677 (dclose->volatile_fid == cfile->fid.volatile_fid)) {
678 *pdclose = dclose;
679 return true;
680 }
681 }
682 return false;
683}
684
Rohith Surabattula860b69a2021-05-05 10:56:47 +0000685/*
686 * Critical section which runs after acquiring deferred_lock.
687 */
Rohith Surabattulac3f207a2021-04-13 00:26:42 -0500688void
689cifs_add_deferred_close(struct cifsFileInfo *cfile, struct cifs_deferred_close *dclose)
690{
691 bool is_deferred = false;
692 struct cifs_deferred_close *pdclose;
693
694 is_deferred = cifs_is_deferred_close(cfile, &pdclose);
695 if (is_deferred) {
696 kfree(dclose);
697 return;
698 }
699
700 dclose->tlink = cfile->tlink;
701 dclose->netfid = cfile->fid.netfid;
702 dclose->persistent_fid = cfile->fid.persistent_fid;
703 dclose->volatile_fid = cfile->fid.volatile_fid;
704 list_add_tail(&dclose->dlist, &CIFS_I(d_inode(cfile->dentry))->deferred_closes);
705}
706
Rohith Surabattula860b69a2021-05-05 10:56:47 +0000707/*
708 * Critical section which runs after acquiring deferred_lock.
709 */
Rohith Surabattulac3f207a2021-04-13 00:26:42 -0500710void
711cifs_del_deferred_close(struct cifsFileInfo *cfile)
712{
713 bool is_deferred = false;
714 struct cifs_deferred_close *dclose;
715
716 is_deferred = cifs_is_deferred_close(cfile, &dclose);
717 if (!is_deferred)
718 return;
719 list_del(&dclose->dlist);
720 kfree(dclose);
721}
722
723void
724cifs_close_deferred_file(struct cifsInodeInfo *cifs_inode)
725{
726 struct cifsFileInfo *cfile = NULL;
Rohith Surabattula9e992752021-08-09 09:32:46 +0000727 struct file_list *tmp_list, *tmp_next_list;
728 struct list_head file_head;
Rohith Surabattula41535702021-07-29 07:45:29 +0000729
730 if (cifs_inode == NULL)
731 return;
Rohith Surabattulac3f207a2021-04-13 00:26:42 -0500732
Rohith Surabattula9e992752021-08-09 09:32:46 +0000733 INIT_LIST_HEAD(&file_head);
734 spin_lock(&cifs_inode->open_file_lock);
Rohith Surabattulac3f207a2021-04-13 00:26:42 -0500735 list_for_each_entry(cfile, &cifs_inode->openFileList, flist) {
Rohith Surabattula41535702021-07-29 07:45:29 +0000736 if (delayed_work_pending(&cfile->deferred)) {
Rohith Surabattula9e992752021-08-09 09:32:46 +0000737 if (cancel_delayed_work(&cfile->deferred)) {
738 tmp_list = kmalloc(sizeof(struct file_list), GFP_ATOMIC);
739 if (tmp_list == NULL)
Rohith Surabattula71826b02021-09-17 17:29:42 +0000740 break;
Rohith Surabattula9e992752021-08-09 09:32:46 +0000741 tmp_list->cfile = cfile;
742 list_add_tail(&tmp_list->list, &file_head);
743 }
Rohith Surabattula41535702021-07-29 07:45:29 +0000744 }
Rohith Surabattulac3f207a2021-04-13 00:26:42 -0500745 }
Rohith Surabattula9e992752021-08-09 09:32:46 +0000746 spin_unlock(&cifs_inode->open_file_lock);
747
748 list_for_each_entry_safe(tmp_list, tmp_next_list, &file_head, list) {
749 _cifsFileInfo_put(tmp_list->cfile, true, false);
750 list_del(&tmp_list->list);
751 kfree(tmp_list);
752 }
Rohith Surabattulac3f207a2021-04-13 00:26:42 -0500753}
754
Rohith Surabattula78c09632021-04-19 19:02:03 +0000755void
756cifs_close_all_deferred_files(struct cifs_tcon *tcon)
757{
758 struct cifsFileInfo *cfile;
Rohith Surabattula78c09632021-04-19 19:02:03 +0000759 struct list_head *tmp;
Rohith Surabattula9e992752021-08-09 09:32:46 +0000760 struct file_list *tmp_list, *tmp_next_list;
761 struct list_head file_head;
Rohith Surabattula78c09632021-04-19 19:02:03 +0000762
Rohith Surabattula9e992752021-08-09 09:32:46 +0000763 INIT_LIST_HEAD(&file_head);
Rohith Surabattula78c09632021-04-19 19:02:03 +0000764 spin_lock(&tcon->open_file_lock);
765 list_for_each(tmp, &tcon->openFileList) {
766 cfile = list_entry(tmp, struct cifsFileInfo, tlist);
Rohith Surabattula9687c852021-05-20 16:45:01 +0000767 if (delayed_work_pending(&cfile->deferred)) {
Rohith Surabattula9e992752021-08-09 09:32:46 +0000768 if (cancel_delayed_work(&cfile->deferred)) {
769 tmp_list = kmalloc(sizeof(struct file_list), GFP_ATOMIC);
770 if (tmp_list == NULL)
Rohith Surabattula71826b02021-09-17 17:29:42 +0000771 break;
Rohith Surabattula9e992752021-08-09 09:32:46 +0000772 tmp_list->cfile = cfile;
773 list_add_tail(&tmp_list->list, &file_head);
774 }
Rohith Surabattula9687c852021-05-20 16:45:01 +0000775 }
Rohith Surabattula78c09632021-04-19 19:02:03 +0000776 }
777 spin_unlock(&tcon->open_file_lock);
Rohith Surabattula9e992752021-08-09 09:32:46 +0000778
779 list_for_each_entry_safe(tmp_list, tmp_next_list, &file_head, list) {
780 _cifsFileInfo_put(tmp_list->cfile, true, false);
781 list_del(&tmp_list->list);
782 kfree(tmp_list);
783 }
Rohith Surabattula78c09632021-04-19 19:02:03 +0000784}
Rohith Surabattulae3fc0652021-09-17 18:14:26 +0000785void
786cifs_close_deferred_file_under_dentry(struct cifs_tcon *tcon, const char *path)
787{
788 struct cifsFileInfo *cfile;
789 struct list_head *tmp;
790 struct file_list *tmp_list, *tmp_next_list;
791 struct list_head file_head;
792 void *page;
793 const char *full_path;
794
795 INIT_LIST_HEAD(&file_head);
796 page = alloc_dentry_path();
797 spin_lock(&tcon->open_file_lock);
798 list_for_each(tmp, &tcon->openFileList) {
799 cfile = list_entry(tmp, struct cifsFileInfo, tlist);
800 full_path = build_path_from_dentry(cfile->dentry, page);
801 if (strstr(full_path, path)) {
802 if (delayed_work_pending(&cfile->deferred)) {
803 if (cancel_delayed_work(&cfile->deferred)) {
804 tmp_list = kmalloc(sizeof(struct file_list), GFP_ATOMIC);
805 if (tmp_list == NULL)
806 break;
807 tmp_list->cfile = cfile;
808 list_add_tail(&tmp_list->list, &file_head);
809 }
810 }
811 }
812 }
813 spin_unlock(&tcon->open_file_lock);
814
815 list_for_each_entry_safe(tmp_list, tmp_next_list, &file_head, list) {
816 _cifsFileInfo_put(tmp_list->cfile, true, false);
817 list_del(&tmp_list->list);
818 kfree(tmp_list);
819 }
820 free_dentry_path(page);
821}
Rohith Surabattula78c09632021-04-19 19:02:03 +0000822
Aurelien Aptel4ecce922017-02-13 16:03:47 +0100823/* parses DFS refferal V3 structure
824 * caller is responsible for freeing target_nodes
825 * returns:
826 * - on success - 0
827 * - on failure - errno
828 */
829int
830parse_dfs_referrals(struct get_dfs_referral_rsp *rsp, u32 rsp_size,
831 unsigned int *num_of_nodes,
832 struct dfs_info3_param **target_nodes,
833 const struct nls_table *nls_codepage, int remap,
834 const char *searchName, bool is_unicode)
835{
836 int i, rc = 0;
837 char *data_end;
838 struct dfs_referral_level_3 *ref;
839
840 *num_of_nodes = le16_to_cpu(rsp->NumberOfReferrals);
841
842 if (*num_of_nodes < 1) {
843 cifs_dbg(VFS, "num_referrals: must be at least > 0, but we get num_referrals = %d\n",
844 *num_of_nodes);
845 rc = -EINVAL;
846 goto parse_DFS_referrals_exit;
847 }
848
849 ref = (struct dfs_referral_level_3 *) &(rsp->referrals);
850 if (ref->VersionNumber != cpu_to_le16(3)) {
851 cifs_dbg(VFS, "Referrals of V%d version are not supported, should be V3\n",
852 le16_to_cpu(ref->VersionNumber));
853 rc = -EINVAL;
854 goto parse_DFS_referrals_exit;
855 }
856
857 /* get the upper boundary of the resp buffer */
858 data_end = (char *)rsp + rsp_size;
859
860 cifs_dbg(FYI, "num_referrals: %d dfs flags: 0x%x ...\n",
861 *num_of_nodes, le32_to_cpu(rsp->DFSFlags));
862
863 *target_nodes = kcalloc(*num_of_nodes, sizeof(struct dfs_info3_param),
864 GFP_KERNEL);
865 if (*target_nodes == NULL) {
866 rc = -ENOMEM;
867 goto parse_DFS_referrals_exit;
868 }
869
870 /* collect necessary data from referrals */
871 for (i = 0; i < *num_of_nodes; i++) {
872 char *temp;
873 int max_len;
874 struct dfs_info3_param *node = (*target_nodes)+i;
875
876 node->flags = le32_to_cpu(rsp->DFSFlags);
877 if (is_unicode) {
878 __le16 *tmp = kmalloc(strlen(searchName)*2 + 2,
879 GFP_KERNEL);
880 if (tmp == NULL) {
881 rc = -ENOMEM;
882 goto parse_DFS_referrals_exit;
883 }
884 cifsConvertToUTF16((__le16 *) tmp, searchName,
885 PATH_MAX, nls_codepage, remap);
886 node->path_consumed = cifs_utf16_bytes(tmp,
887 le16_to_cpu(rsp->PathConsumed),
888 nls_codepage);
889 kfree(tmp);
890 } else
891 node->path_consumed = le16_to_cpu(rsp->PathConsumed);
892
893 node->server_type = le16_to_cpu(ref->ServerType);
894 node->ref_flag = le16_to_cpu(ref->ReferralEntryFlags);
895
896 /* copy DfsPath */
897 temp = (char *)ref + le16_to_cpu(ref->DfsPathOffset);
898 max_len = data_end - temp;
899 node->path_name = cifs_strndup_from_utf16(temp, max_len,
900 is_unicode, nls_codepage);
901 if (!node->path_name) {
902 rc = -ENOMEM;
903 goto parse_DFS_referrals_exit;
904 }
905
906 /* copy link target UNC */
907 temp = (char *)ref + le16_to_cpu(ref->NetworkAddressOffset);
908 max_len = data_end - temp;
909 node->node_name = cifs_strndup_from_utf16(temp, max_len,
910 is_unicode, nls_codepage);
911 if (!node->node_name) {
912 rc = -ENOMEM;
913 goto parse_DFS_referrals_exit;
914 }
915
Paulo Alcantarae7b602f2018-11-14 15:38:51 -0200916 node->ttl = le32_to_cpu(ref->TimeToLive);
917
Aurelien Aptel4ecce922017-02-13 16:03:47 +0100918 ref++;
919 }
920
921parse_DFS_referrals_exit:
922 if (rc) {
923 free_dfs_info_array(*target_nodes, *num_of_nodes);
924 *target_nodes = NULL;
925 *num_of_nodes = 0;
926 }
927 return rc;
928}
Pavel Shilovskyccf7f402017-04-25 11:52:29 -0700929
930struct cifs_aio_ctx *
931cifs_aio_ctx_alloc(void)
932{
933 struct cifs_aio_ctx *ctx;
934
Jérôme Glisse13f59382019-04-10 15:37:47 -0400935 /*
936 * Must use kzalloc to initialize ctx->bv to NULL and ctx->direct_io
937 * to false so that we know when we have to unreference pages within
938 * cifs_aio_ctx_release()
939 */
Pavel Shilovskyccf7f402017-04-25 11:52:29 -0700940 ctx = kzalloc(sizeof(struct cifs_aio_ctx), GFP_KERNEL);
941 if (!ctx)
942 return NULL;
943
944 INIT_LIST_HEAD(&ctx->list);
945 mutex_init(&ctx->aio_mutex);
946 init_completion(&ctx->done);
947 kref_init(&ctx->refcount);
948 return ctx;
949}
950
951void
952cifs_aio_ctx_release(struct kref *refcount)
953{
954 struct cifs_aio_ctx *ctx = container_of(refcount,
955 struct cifs_aio_ctx, refcount);
956
957 cifsFileInfo_put(ctx->cfile);
Jérôme Glisse13f59382019-04-10 15:37:47 -0400958
959 /*
960 * ctx->bv is only set if setup_aio_ctx_iter() was call successfuly
961 * which means that iov_iter_get_pages() was a success and thus that
962 * we have taken reference on pages.
963 */
964 if (ctx->bv) {
965 unsigned i;
966
967 for (i = 0; i < ctx->npages; i++) {
968 if (ctx->should_dirty)
969 set_page_dirty(ctx->bv[i].bv_page);
970 put_page(ctx->bv[i].bv_page);
971 }
972 kvfree(ctx->bv);
973 }
974
Pavel Shilovskyccf7f402017-04-25 11:52:29 -0700975 kfree(ctx);
976}
977
978#define CIFS_AIO_KMALLOC_LIMIT (1024 * 1024)
979
980int
981setup_aio_ctx_iter(struct cifs_aio_ctx *ctx, struct iov_iter *iter, int rw)
982{
983 ssize_t rc;
984 unsigned int cur_npages;
985 unsigned int npages = 0;
986 unsigned int i;
987 size_t len;
988 size_t count = iov_iter_count(iter);
989 unsigned int saved_len;
990 size_t start;
991 unsigned int max_pages = iov_iter_npages(iter, INT_MAX);
992 struct page **pages = NULL;
993 struct bio_vec *bv = NULL;
994
David Howells00e23702018-10-22 13:07:28 +0100995 if (iov_iter_is_kvec(iter)) {
Gustavo A. R. Silvabf1028a2020-06-15 17:41:12 -0500996 memcpy(&ctx->iter, iter, sizeof(*iter));
Pavel Shilovskyccf7f402017-04-25 11:52:29 -0700997 ctx->len = count;
998 iov_iter_advance(iter, count);
999 return 0;
1000 }
1001
Gustavo A. R. Silvabf1028a2020-06-15 17:41:12 -05001002 if (array_size(max_pages, sizeof(*bv)) <= CIFS_AIO_KMALLOC_LIMIT)
1003 bv = kmalloc_array(max_pages, sizeof(*bv), GFP_KERNEL);
Pavel Shilovskyccf7f402017-04-25 11:52:29 -07001004
1005 if (!bv) {
Gustavo A. R. Silvabf1028a2020-06-15 17:41:12 -05001006 bv = vmalloc(array_size(max_pages, sizeof(*bv)));
Pavel Shilovskyccf7f402017-04-25 11:52:29 -07001007 if (!bv)
1008 return -ENOMEM;
1009 }
1010
Gustavo A. R. Silvabf1028a2020-06-15 17:41:12 -05001011 if (array_size(max_pages, sizeof(*pages)) <= CIFS_AIO_KMALLOC_LIMIT)
1012 pages = kmalloc_array(max_pages, sizeof(*pages), GFP_KERNEL);
Pavel Shilovskyccf7f402017-04-25 11:52:29 -07001013
1014 if (!pages) {
Gustavo A. R. Silvabf1028a2020-06-15 17:41:12 -05001015 pages = vmalloc(array_size(max_pages, sizeof(*pages)));
Colin Ian Kingecf34112017-05-17 19:24:15 +01001016 if (!pages) {
Pavel Shilovskyccf7f402017-04-25 11:52:29 -07001017 kvfree(bv);
1018 return -ENOMEM;
1019 }
1020 }
1021
1022 saved_len = count;
1023
1024 while (count && npages < max_pages) {
1025 rc = iov_iter_get_pages(iter, pages, count, max_pages, &start);
1026 if (rc < 0) {
Joe Perchesa0a30362020-04-14 22:42:53 -07001027 cifs_dbg(VFS, "Couldn't get user pages (rc=%zd)\n", rc);
Pavel Shilovskyccf7f402017-04-25 11:52:29 -07001028 break;
1029 }
1030
1031 if (rc > count) {
1032 cifs_dbg(VFS, "get pages rc=%zd more than %zu\n", rc,
1033 count);
1034 break;
1035 }
1036
1037 iov_iter_advance(iter, rc);
1038 count -= rc;
1039 rc += start;
1040 cur_npages = DIV_ROUND_UP(rc, PAGE_SIZE);
1041
1042 if (npages + cur_npages > max_pages) {
1043 cifs_dbg(VFS, "out of vec array capacity (%u vs %u)\n",
1044 npages + cur_npages, max_pages);
1045 break;
1046 }
1047
1048 for (i = 0; i < cur_npages; i++) {
1049 len = rc > PAGE_SIZE ? PAGE_SIZE : rc;
1050 bv[npages + i].bv_page = pages[i];
1051 bv[npages + i].bv_offset = start;
1052 bv[npages + i].bv_len = len - start;
1053 rc -= len;
1054 start = 0;
1055 }
1056
1057 npages += cur_npages;
1058 }
1059
1060 kvfree(pages);
1061 ctx->bv = bv;
1062 ctx->len = saved_len - count;
1063 ctx->npages = npages;
David Howellsaa563d72018-10-20 00:57:56 +01001064 iov_iter_bvec(&ctx->iter, rw, ctx->bv, npages, ctx->len);
Pavel Shilovskyccf7f402017-04-25 11:52:29 -07001065 return 0;
1066}
Aurelien Aptel82fb82b2018-02-16 19:19:27 +01001067
1068/**
1069 * cifs_alloc_hash - allocate hash and hash context together
David Howells03ab9cb2021-09-20 13:14:15 +01001070 * @name: The name of the crypto hash algo
1071 * @shash: Where to put the pointer to the hash algo
1072 * @sdesc: Where to put the pointer to the hash descriptor
Aurelien Aptel82fb82b2018-02-16 19:19:27 +01001073 *
1074 * The caller has to make sure @sdesc is initialized to either NULL or
1075 * a valid context. Both can be freed via cifs_free_hash().
1076 */
1077int
1078cifs_alloc_hash(const char *name,
1079 struct crypto_shash **shash, struct sdesc **sdesc)
1080{
1081 int rc = 0;
1082 size_t size;
1083
1084 if (*sdesc != NULL)
1085 return 0;
1086
1087 *shash = crypto_alloc_shash(name, 0, 0);
1088 if (IS_ERR(*shash)) {
Joe Perchesa0a30362020-04-14 22:42:53 -07001089 cifs_dbg(VFS, "Could not allocate crypto %s\n", name);
Aurelien Aptel82fb82b2018-02-16 19:19:27 +01001090 rc = PTR_ERR(*shash);
1091 *shash = NULL;
1092 *sdesc = NULL;
1093 return rc;
1094 }
1095
1096 size = sizeof(struct shash_desc) + crypto_shash_descsize(*shash);
1097 *sdesc = kmalloc(size, GFP_KERNEL);
1098 if (*sdesc == NULL) {
1099 cifs_dbg(VFS, "no memory left to allocate crypto %s\n", name);
1100 crypto_free_shash(*shash);
1101 *shash = NULL;
1102 return -ENOMEM;
1103 }
1104
1105 (*sdesc)->shash.tfm = *shash;
Aurelien Aptel82fb82b2018-02-16 19:19:27 +01001106 return 0;
1107}
1108
1109/**
1110 * cifs_free_hash - free hash and hash context together
David Howells03ab9cb2021-09-20 13:14:15 +01001111 * @shash: Where to find the pointer to the hash algo
1112 * @sdesc: Where to find the pointer to the hash descriptor
Aurelien Aptel82fb82b2018-02-16 19:19:27 +01001113 *
1114 * Freeing a NULL hash or context is safe.
1115 */
1116void
1117cifs_free_hash(struct crypto_shash **shash, struct sdesc **sdesc)
1118{
1119 kfree(*sdesc);
1120 *sdesc = NULL;
1121 if (*shash)
1122 crypto_free_shash(*shash);
1123 *shash = NULL;
1124}
Long Li7b7f2bd2018-05-30 12:47:58 -07001125
1126/**
1127 * rqst_page_get_length - obtain the length and offset for a page in smb_rqst
David Howells03ab9cb2021-09-20 13:14:15 +01001128 * @rqst: The request descriptor
1129 * @page: The index of the page to query
1130 * @len: Where to store the length for this page:
1131 * @offset: Where to store the offset for this page
Long Li7b7f2bd2018-05-30 12:47:58 -07001132 */
1133void rqst_page_get_length(struct smb_rqst *rqst, unsigned int page,
1134 unsigned int *len, unsigned int *offset)
1135{
1136 *len = rqst->rq_pagesz;
1137 *offset = (page == 0) ? rqst->rq_offset : 0;
1138
1139 if (rqst->rq_npages == 1 || page == rqst->rq_npages-1)
1140 *len = rqst->rq_tailsz;
1141 else if (page == 0)
1142 *len = rqst->rq_pagesz - rqst->rq_offset;
1143}
Paulo Alcantaraa3a53b72018-11-14 17:20:31 -02001144
1145void extract_unc_hostname(const char *unc, const char **h, size_t *len)
1146{
1147 const char *end;
1148
1149 /* skip initial slashes */
1150 while (*unc && (*unc == '\\' || *unc == '/'))
1151 unc++;
1152
1153 end = unc;
1154
1155 while (*end && !(*end == '\\' || *end == '/'))
1156 end++;
1157
1158 *h = unc;
1159 *len = end - unc;
1160}
Ronnie Sahlberg340625e2019-08-27 09:30:14 +10001161
1162/**
1163 * copy_path_name - copy src path to dst, possibly truncating
David Howells03ab9cb2021-09-20 13:14:15 +01001164 * @dst: The destination buffer
1165 * @src: The source name
Ronnie Sahlberg340625e2019-08-27 09:30:14 +10001166 *
1167 * returns number of bytes written (including trailing nul)
1168 */
1169int copy_path_name(char *dst, const char *src)
1170{
1171 int name_len;
1172
1173 /*
1174 * PATH_MAX includes nul, so if strlen(src) >= PATH_MAX it
1175 * will truncate and strlen(dst) will be PATH_MAX-1
1176 */
1177 name_len = strscpy(dst, src, PATH_MAX);
1178 if (WARN_ON_ONCE(name_len < 0))
1179 name_len = PATH_MAX-1;
1180
1181 /* we count the trailing nul */
1182 name_len++;
1183 return name_len;
1184}
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001185
1186struct super_cb_data {
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001187 void *data;
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001188 struct super_block *sb;
1189};
1190
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001191static void tcp_super_cb(struct super_block *sb, void *arg)
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001192{
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001193 struct super_cb_data *sd = arg;
1194 struct TCP_Server_Info *server = sd->data;
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001195 struct cifs_sb_info *cifs_sb;
1196 struct cifs_tcon *tcon;
1197
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001198 if (sd->sb)
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001199 return;
1200
1201 cifs_sb = CIFS_SB(sb);
1202 tcon = cifs_sb_master_tcon(cifs_sb);
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001203 if (tcon->ses->server == server)
1204 sd->sb = sb;
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001205}
1206
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001207static struct super_block *__cifs_get_super(void (*f)(struct super_block *, void *),
1208 void *data)
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001209{
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001210 struct super_cb_data sd = {
1211 .data = data,
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001212 .sb = NULL,
1213 };
1214
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001215 iterate_supers_type(&cifs_fs_type, f, &sd);
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001216
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001217 if (!sd.sb)
1218 return ERR_PTR(-EINVAL);
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001219 /*
1220 * Grab an active reference in order to prevent automounts (DFS links)
1221 * of expiring and then freeing up our cifs superblock pointer while
1222 * we're doing failover.
1223 */
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001224 cifs_sb_active(sd.sb);
1225 return sd.sb;
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001226}
1227
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001228static void __cifs_put_super(struct super_block *sb)
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001229{
1230 if (!IS_ERR_OR_NULL(sb))
1231 cifs_sb_deactive(sb);
1232}
1233
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001234struct super_block *cifs_get_tcp_super(struct TCP_Server_Info *server)
1235{
1236 return __cifs_get_super(tcp_super_cb, server);
1237}
1238
1239void cifs_put_tcp_super(struct super_block *sb)
1240{
1241 __cifs_put_super(sb);
1242}
1243
1244#ifdef CONFIG_CIFS_DFS_UPCALL
Paulo Alcantarae4af35f2020-05-19 15:38:28 -03001245int match_target_ip(struct TCP_Server_Info *server,
1246 const char *share, size_t share_len,
1247 bool *result)
1248{
1249 int rc;
1250 char *target, *tip = NULL;
1251 struct sockaddr tipaddr;
1252
1253 *result = false;
1254
1255 target = kzalloc(share_len + 3, GFP_KERNEL);
1256 if (!target) {
1257 rc = -ENOMEM;
1258 goto out;
1259 }
1260
1261 scnprintf(target, share_len + 3, "\\\\%.*s", (int)share_len, share);
1262
1263 cifs_dbg(FYI, "%s: target name: %s\n", __func__, target + 2);
1264
Shyam Prasad N506c1da2021-05-18 15:05:50 +00001265 rc = dns_resolve_server_name_to_ip(target, &tip, NULL);
Paulo Alcantarae4af35f2020-05-19 15:38:28 -03001266 if (rc < 0)
1267 goto out;
1268
1269 cifs_dbg(FYI, "%s: target ip: %s\n", __func__, tip);
1270
1271 if (!cifs_convert_address(&tipaddr, tip, strlen(tip))) {
1272 cifs_dbg(VFS, "%s: failed to convert target ip address\n",
1273 __func__);
1274 rc = -EINVAL;
1275 goto out;
1276 }
1277
1278 *result = cifs_match_ipaddr((struct sockaddr *)&server->dstaddr,
1279 &tipaddr);
1280 cifs_dbg(FYI, "%s: ip addresses match: %u\n", __func__, *result);
1281 rc = 0;
1282
1283out:
1284 kfree(target);
1285 kfree(tip);
1286
1287 return rc;
1288}
1289
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001290static void tcon_super_cb(struct super_block *sb, void *arg)
1291{
1292 struct super_cb_data *sd = arg;
1293 struct cifs_tcon *tcon = sd->data;
1294 struct cifs_sb_info *cifs_sb;
1295
1296 if (sd->sb)
1297 return;
1298
1299 cifs_sb = CIFS_SB(sb);
1300 if (tcon->dfs_path && cifs_sb->origin_fullpath &&
1301 !strcasecmp(tcon->dfs_path, cifs_sb->origin_fullpath))
1302 sd->sb = sb;
1303}
1304
1305static inline struct super_block *cifs_get_tcon_super(struct cifs_tcon *tcon)
1306{
1307 return __cifs_get_super(tcon_super_cb, tcon);
1308}
1309
1310static inline void cifs_put_tcon_super(struct super_block *sb)
1311{
1312 __cifs_put_super(sb);
1313}
1314#else
1315static inline struct super_block *cifs_get_tcon_super(struct cifs_tcon *tcon)
1316{
1317 return ERR_PTR(-EOPNOTSUPP);
1318}
1319
1320static inline void cifs_put_tcon_super(struct super_block *sb)
1321{
1322}
1323#endif
1324
Paulo Alcantara7548e1d2020-07-21 09:36:42 -03001325int update_super_prepath(struct cifs_tcon *tcon, char *prefix)
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001326{
1327 struct super_block *sb;
1328 struct cifs_sb_info *cifs_sb;
1329 int rc = 0;
1330
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001331 sb = cifs_get_tcon_super(tcon);
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001332 if (IS_ERR(sb))
1333 return PTR_ERR(sb);
1334
1335 cifs_sb = CIFS_SB(sb);
1336
1337 kfree(cifs_sb->prepath);
1338
Paulo Alcantara7548e1d2020-07-21 09:36:42 -03001339 if (prefix && *prefix) {
Al Viro8d767222021-03-05 15:02:34 -05001340 cifs_sb->prepath = kstrdup(prefix, GFP_ATOMIC);
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001341 if (!cifs_sb->prepath) {
1342 rc = -ENOMEM;
1343 goto out;
1344 }
1345
1346 convert_delimiter(cifs_sb->prepath, CIFS_DIR_SEP(cifs_sb));
1347 } else
1348 cifs_sb->prepath = NULL;
1349
1350 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
1351
1352out:
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001353 cifs_put_tcon_super(sb);
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001354 return rc;
1355}