blob: a6089ea53ad7e8e0cf8e4ed6a823b2c12cf55147 [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);
Shyam Prasad N49bd49f2021-11-05 19:03:57 +000097 kfree(buf_to_free->workstation_name);
Waiman Long453431a2020-08-06 23:18:13 -070098 kfree_sensitive(buf_to_free->auth_key.response);
Aurelien Aptelb6f0dd52018-06-14 15:43:18 +020099 kfree(buf_to_free->iface_list);
Waiman Long453431a2020-08-06 23:18:13 -0700100 kfree_sensitive(buf_to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
Steve French96daf2b2011-05-27 04:34:02 +0000103struct cifs_tcon *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104tconInfoAlloc(void)
105{
Steve French96daf2b2011-05-27 04:34:02 +0000106 struct cifs_tcon *ret_buf;
Joe Perches0544b322018-12-20 23:50:48 -0600107
108 ret_buf = kzalloc(sizeof(*ret_buf), GFP_KERNEL);
109 if (!ret_buf)
110 return NULL;
111 ret_buf->crfid.fid = kzalloc(sizeof(*ret_buf->crfid.fid), GFP_KERNEL);
112 if (!ret_buf->crfid.fid) {
113 kfree(ret_buf);
114 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
Joe Perches0544b322018-12-20 23:50:48 -0600116
117 atomic_inc(&tconInfoAllocCount);
118 ret_buf->tidStatus = CifsNew;
119 ++ret_buf->tc_count;
120 INIT_LIST_HEAD(&ret_buf->openFileList);
121 INIT_LIST_HEAD(&ret_buf->tcon_list);
122 spin_lock_init(&ret_buf->open_file_lock);
123 mutex_init(&ret_buf->crfid.fid_mutex);
124 spin_lock_init(&ret_buf->stat_lock);
125 atomic_set(&ret_buf->num_local_opens, 0);
126 atomic_set(&ret_buf->num_remote_opens, 0);
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return ret_buf;
129}
130
131void
Steve French96daf2b2011-05-27 04:34:02 +0000132tconInfoFree(struct cifs_tcon *buf_to_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
134 if (buf_to_free == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500135 cifs_dbg(FYI, "Null buffer passed to tconInfoFree\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return;
137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 atomic_dec(&tconInfoAllocCount);
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800139 kfree(buf_to_free->nativeFileSystem);
Waiman Long453431a2020-08-06 23:18:13 -0700140 kfree_sensitive(buf_to_free->password);
Ronnie Sahlberga93864d2018-06-14 06:48:35 +1000141 kfree(buf_to_free->crfid.fid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 kfree(buf_to_free);
143}
144
145struct smb_hdr *
146cifs_buf_get(void)
147{
148 struct smb_hdr *ret_buf = NULL;
Pavel Shilovsky3792c172012-01-12 22:40:50 +0400149 /*
150 * SMB2 header is bigger than CIFS one - no problems to clean some
151 * more bytes for CIFS.
152 */
Ronnie Sahlberg0d35e382021-11-05 08:39:01 +0900153 size_t buf_size = sizeof(struct smb2_hdr);
Steve French2a38e122017-07-08 18:48:15 -0500154
Pavel Shilovsky3792c172012-01-12 22:40:50 +0400155 /*
156 * We could use negotiated size instead of max_msgsize -
157 * but it may be more efficient to always alloc same size
158 * albeit slightly larger than necessary and maxbuffersize
159 * defaults to this and can not be bigger.
160 */
Pekka Enberg232087c2008-09-15 13:22:54 +0300161 ret_buf = mempool_alloc(cifs_req_poolp, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 /* clear the first few header bytes */
164 /* for most paths, more is cleared in header_assemble */
NeilBrowna6f74e82017-04-10 12:08:53 +1000165 memset(ret_buf, 0, buf_size + 3);
166 atomic_inc(&bufAllocCount);
Steve French4498eed52005-12-03 13:58:57 -0800167#ifdef CONFIG_CIFS_STATS2
NeilBrowna6f74e82017-04-10 12:08:53 +1000168 atomic_inc(&totBufAllocCount);
Steve French4498eed52005-12-03 13:58:57 -0800169#endif /* CONFIG_CIFS_STATS2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 return ret_buf;
172}
173
174void
175cifs_buf_release(void *buf_to_free)
176{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 if (buf_to_free == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500178 /* cifs_dbg(FYI, "Null buffer passed to cifs_buf_release\n");*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return;
180 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000181 mempool_free(buf_to_free, cifs_req_poolp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 atomic_dec(&bufAllocCount);
184 return;
185}
186
187struct smb_hdr *
188cifs_small_buf_get(void)
189{
190 struct smb_hdr *ret_buf = NULL;
191
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000192/* We could use negotiated size instead of max_msgsize -
193 but it may be more efficient to always alloc same size
194 albeit slightly larger than necessary and maxbuffersize
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 defaults to this and can not be bigger */
Pekka Enberg232087c2008-09-15 13:22:54 +0300196 ret_buf = mempool_alloc(cifs_sm_req_poolp, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 /* No need to clear memory here, cleared in header assemble */
198 /* memset(ret_buf, 0, sizeof(struct smb_hdr) + 27);*/
NeilBrowna6f74e82017-04-10 12:08:53 +1000199 atomic_inc(&smBufAllocCount);
Steve French4498eed52005-12-03 13:58:57 -0800200#ifdef CONFIG_CIFS_STATS2
NeilBrowna6f74e82017-04-10 12:08:53 +1000201 atomic_inc(&totSmBufAllocCount);
Steve French4498eed52005-12-03 13:58:57 -0800202#endif /* CONFIG_CIFS_STATS2 */
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return ret_buf;
205}
206
207void
208cifs_small_buf_release(void *buf_to_free)
209{
210
211 if (buf_to_free == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500212 cifs_dbg(FYI, "Null buffer passed to cifs_small_buf_release\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return;
214 }
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000215 mempool_free(buf_to_free, cifs_sm_req_poolp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 atomic_dec(&smBufAllocCount);
218 return;
219}
220
Sachin Prabhu6d81ed12014-06-16 15:35:24 +0100221void
222free_rsp_buf(int resp_buftype, void *rsp)
223{
224 if (resp_buftype == CIFS_SMALL_BUFFER)
225 cifs_small_buf_release(rsp);
226 else if (resp_buftype == CIFS_LARGE_BUFFER)
227 cifs_buf_release(rsp);
228}
229
Steve French1982c342005-08-17 12:38:22 -0700230/* NB: MID can not be set if treeCon not passed in, in that
231 case it is responsbility of caller to set the mid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232void
233header_assemble(struct smb_hdr *buffer, char smb_command /* command */ ,
Steve French96daf2b2011-05-27 04:34:02 +0000234 const struct cifs_tcon *treeCon, int word_count
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 /* length of fixed section (word count) in two byte units */)
236{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 char *temp = (char *) buffer;
238
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000239 memset(temp, 0, 256); /* bigger than MAX_CIFS_HDR_SIZE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000241 buffer->smb_buf_length = cpu_to_be32(
Steve French630f3f0c2007-10-25 21:17:17 +0000242 (2 * word_count) + sizeof(struct smb_hdr) -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 4 /* RFC 1001 length field does not count */ +
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000244 2 /* for bcc field itself */) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 buffer->Protocol[0] = 0xFF;
247 buffer->Protocol[1] = 'S';
248 buffer->Protocol[2] = 'M';
249 buffer->Protocol[3] = 'B';
250 buffer->Command = smb_command;
251 buffer->Flags = 0x00; /* case sensitive */
252 buffer->Flags2 = SMBFLG2_KNOWS_LONG_NAMES;
253 buffer->Pid = cpu_to_le16((__u16)current->tgid);
254 buffer->PidHigh = cpu_to_le16((__u16)(current->tgid >> 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (treeCon) {
256 buffer->Tid = treeCon->tid;
257 if (treeCon->ses) {
258 if (treeCon->ses->capabilities & CAP_UNICODE)
259 buffer->Flags2 |= SMBFLG2_UNICODE;
Steve Frenchad7a2922008-02-07 23:25:02 +0000260 if (treeCon->ses->capabilities & CAP_STATUS32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 buffer->Flags2 |= SMBFLG2_ERR_STATUS;
Steve Frenchad7a2922008-02-07 23:25:02 +0000262
Steve French1982c342005-08-17 12:38:22 -0700263 /* Uid is not converted */
264 buffer->Uid = treeCon->ses->Suid;
Steve French1db1aa92021-09-23 18:52:40 -0500265 if (treeCon->ses->server)
266 buffer->Mid = get_next_mid(treeCon->ses->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268 if (treeCon->Flags & SMB_SHARE_IS_IN_DFS)
269 buffer->Flags2 |= SMBFLG2_DFS;
Steve Frenchd3485d32005-08-19 11:04:29 -0700270 if (treeCon->nocase)
271 buffer->Flags |= SMBFLG_CASELESS;
Steve French790fe572007-07-07 19:25:05 +0000272 if ((treeCon->ses) && (treeCon->ses->server))
Jeff Layton38d77c52013-05-26 07:01:00 -0400273 if (treeCon->ses->server->sign)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
275 }
276
277/* endian conversion of flags is now done just before sending */
278 buffer->WordCount = (char) word_count;
279 return;
280}
281
Steve French2cd646a2006-09-28 19:43:08 +0000282static int
Tim Gardner944d6f12013-10-16 09:09:49 -0600283check_smb_hdr(struct smb_hdr *smb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Jeff Layton68abaff2011-01-28 15:05:42 -0500285 /* does it have the right SMB "signature" ? */
286 if (*(__le32 *) smb->Protocol != cpu_to_le32(0x424d53ff)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500287 cifs_dbg(VFS, "Bad protocol string signature header 0x%x\n",
288 *(unsigned int *)smb->Protocol);
Jeff Layton68abaff2011-01-28 15:05:42 -0500289 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
Jeff Layton68abaff2011-01-28 15:05:42 -0500291
Jeff Layton68abaff2011-01-28 15:05:42 -0500292 /* if it's a response then accept */
293 if (smb->Flags & SMBFLG_RESPONSE)
294 return 0;
295
296 /* only one valid case where server sends us request */
297 if (smb->Command == SMB_COM_LOCKING_ANDX)
298 return 0;
299
Tim Gardner3d378d32013-11-02 12:50:34 -0500300 cifs_dbg(VFS, "Server sent request, not response. mid=%u\n",
301 get_mid(smb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return 1;
303}
304
305int
Steve French373512e2015-12-18 13:05:30 -0600306checkSMB(char *buf, unsigned int total_read, struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400308 struct smb_hdr *smb = (struct smb_hdr *)buf;
Jeff Layton376b43f2011-10-11 06:41:32 -0400309 __u32 rfclen = be32_to_cpu(smb->smb_buf_length);
Steve French190fdeb2005-10-10 11:48:26 -0700310 __u32 clc_len; /* calculated length */
Joe Perchesf96637b2013-05-04 22:12:25 -0500311 cifs_dbg(FYI, "checkSMB Length: 0x%x, smb_buf_length: 0x%x\n",
312 total_read, rfclen);
Steve Frenchd103e162006-10-12 17:49:24 +0000313
Jeff Layton376b43f2011-10-11 06:41:32 -0400314 /* is this frame too small to even get to a BCC? */
315 if (total_read < 2 + sizeof(struct smb_hdr)) {
316 if ((total_read >= sizeof(struct smb_hdr) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 && (smb->Status.CifsError != 0)) {
Jeff Layton376b43f2011-10-11 06:41:32 -0400318 /* it's an error return */
Steve Frenchd103e162006-10-12 17:49:24 +0000319 smb->WordCount = 0;
320 /* some error cases do not return wct and bcc */
321 return 0;
Jeff Layton376b43f2011-10-11 06:41:32 -0400322 } else if ((total_read == sizeof(struct smb_hdr) + 1) &&
Steve Frenchd103e162006-10-12 17:49:24 +0000323 (smb->WordCount == 0)) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000324 char *tmp = (char *)smb;
Steve Frenchd103e162006-10-12 17:49:24 +0000325 /* Need to work around a bug in two servers here */
326 /* First, check if the part of bcc they sent was zero */
327 if (tmp[sizeof(struct smb_hdr)] == 0) {
328 /* some servers return only half of bcc
329 * on simple responses (wct, bcc both zero)
330 * in particular have seen this on
331 * ulogoffX and FindClose. This leaves
332 * one byte of bcc potentially unitialized
333 */
334 /* zero rest of bcc */
335 tmp[sizeof(struct smb_hdr)+1] = 0;
Steve French46c79a62006-03-02 00:07:08 +0000336 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
Joe Perchesf96637b2013-05-04 22:12:25 -0500338 cifs_dbg(VFS, "rcvd invalid byte count (bcc)\n");
Steve Frenchd103e162006-10-12 17:49:24 +0000339 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -0500340 cifs_dbg(VFS, "Length less than smb header size\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
Jeff Layton376b43f2011-10-11 06:41:32 -0400342 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344
Jeff Layton376b43f2011-10-11 06:41:32 -0400345 /* otherwise, there is enough to get to the BCC */
Tim Gardner944d6f12013-10-16 09:09:49 -0600346 if (check_smb_hdr(smb))
Jeff Layton376b43f2011-10-11 06:41:32 -0400347 return -EIO;
Ronnie Sahlberg9ec672b2018-04-22 15:30:12 -0600348 clc_len = smbCalcSize(smb, server);
Steve French184ed212006-02-24 06:15:11 +0000349
Jeff Layton376b43f2011-10-11 06:41:32 -0400350 if (4 + rfclen != total_read) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500351 cifs_dbg(VFS, "Length read does not match RFC1001 length %d\n",
352 rfclen);
Jeff Layton376b43f2011-10-11 06:41:32 -0400353 return -EIO;
Steve French184ed212006-02-24 06:15:11 +0000354 }
355
Jeff Layton376b43f2011-10-11 06:41:32 -0400356 if (4 + rfclen != clc_len) {
Tim Gardner3d378d32013-11-02 12:50:34 -0500357 __u16 mid = get_mid(smb);
Steve French184ed212006-02-24 06:15:11 +0000358 /* check if bcc wrapped around for large read responses */
Jeff Layton376b43f2011-10-11 06:41:32 -0400359 if ((rfclen > 64 * 1024) && (rfclen > clc_len)) {
Steve French184ed212006-02-24 06:15:11 +0000360 /* check if lengths match mod 64K */
Jeff Layton376b43f2011-10-11 06:41:32 -0400361 if (((4 + rfclen) & 0xFFFF) == (clc_len & 0xFFFF))
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000362 return 0; /* bcc wrapped */
Steve French184ed212006-02-24 06:15:11 +0000363 }
Joe Perchesf96637b2013-05-04 22:12:25 -0500364 cifs_dbg(FYI, "Calculated size %u vs length %u mismatch for mid=%u\n",
Tim Gardner3d378d32013-11-02 12:50:34 -0500365 clc_len, 4 + rfclen, mid);
Jeff Layton62846442011-01-31 09:14:17 -0500366
Jeff Layton376b43f2011-10-11 06:41:32 -0400367 if (4 + rfclen < clc_len) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500368 cifs_dbg(VFS, "RFC1001 size %u smaller than SMB for mid=%u\n",
Tim Gardner3d378d32013-11-02 12:50:34 -0500369 rfclen, mid);
Jeff Layton376b43f2011-10-11 06:41:32 -0400370 return -EIO;
371 } else if (rfclen > clc_len + 512) {
Jeff Layton62846442011-01-31 09:14:17 -0500372 /*
373 * Some servers (Windows XP in particular) send more
374 * data than the lengths in the SMB packet would
375 * indicate on certain calls (byte range locks and
376 * trans2 find first calls in particular). While the
377 * client can handle such a frame by ignoring the
378 * trailing data, we choose limit the amount of extra
379 * data to 512 bytes.
380 */
Joe Perchesf96637b2013-05-04 22:12:25 -0500381 cifs_dbg(VFS, "RFC1001 size %u more than 512 bytes larger than SMB for mid=%u\n",
Tim Gardner3d378d32013-11-02 12:50:34 -0500382 rfclen, mid);
Jeff Layton376b43f2011-10-11 06:41:32 -0400383 return -EIO;
Steve French46c79a62006-03-02 00:07:08 +0000384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
Steve French20962432005-09-21 22:05:57 -0700386 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
Steve French4b18f2a2008-04-29 00:06:05 +0000388
389bool
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400390is_valid_oplock_break(char *buffer, struct TCP_Server_Info *srv)
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000391{
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400392 struct smb_hdr *buf = (struct smb_hdr *)buffer;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000393 struct smb_com_lock_req *pSMB = (struct smb_com_lock_req *)buf;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500394 struct list_head *tmp, *tmp1, *tmp2;
Steve French96daf2b2011-05-27 04:34:02 +0000395 struct cifs_ses *ses;
396 struct cifs_tcon *tcon;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500397 struct cifsInodeInfo *pCifsInode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 struct cifsFileInfo *netfile;
399
Joe Perchesf96637b2013-05-04 22:12:25 -0500400 cifs_dbg(FYI, "Checking for oplock break or dnotify response\n");
Steve French790fe572007-07-07 19:25:05 +0000401 if ((pSMB->hdr.Command == SMB_COM_NT_TRANSACT) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 (pSMB->hdr.Flags & SMBFLG_RESPONSE)) {
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000403 struct smb_com_transaction_change_notify_rsp *pSMBr =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 (struct smb_com_transaction_change_notify_rsp *)buf;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000405 struct file_notify_information *pnotify;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 __u32 data_offset = 0;
Dan Carpenter097f5862018-09-06 12:47:01 +0300407 size_t len = srv->total_read - sizeof(pSMBr->hdr.smb_buf_length);
408
Jeff Layton820a8032011-05-04 08:05:26 -0400409 if (get_bcc(buf) > sizeof(struct file_notify_information)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 data_offset = le32_to_cpu(pSMBr->DataOffset);
411
Dan Carpenter097f5862018-09-06 12:47:01 +0300412 if (data_offset >
413 len - sizeof(struct file_notify_information)) {
Joe Perchesa0a30362020-04-14 22:42:53 -0700414 cifs_dbg(FYI, "Invalid data_offset %u\n",
Dan Carpenter097f5862018-09-06 12:47:01 +0300415 data_offset);
416 return true;
417 }
Steve French39798772006-05-31 22:40:51 +0000418 pnotify = (struct file_notify_information *)
419 ((char *)&pSMBr->hdr.Protocol + data_offset);
Joe Perchesf96637b2013-05-04 22:12:25 -0500420 cifs_dbg(FYI, "dnotify on %s Action: 0x%x\n",
Joe Perchesb6b38f72010-04-21 03:50:45 +0000421 pnotify->FileName, pnotify->Action);
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000422 /* cifs_dump_mem("Rcvd notify Data: ",buf,
Steve French39798772006-05-31 22:40:51 +0000423 sizeof(struct smb_hdr)+60); */
Steve French4b18f2a2008-04-29 00:06:05 +0000424 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
Steve French790fe572007-07-07 19:25:05 +0000426 if (pSMBr->hdr.Status.CifsError) {
Steve French59b04c52014-08-02 21:16:48 -0500427 cifs_dbg(FYI, "notify err 0x%x\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500428 pSMBr->hdr.Status.CifsError);
Steve French4b18f2a2008-04-29 00:06:05 +0000429 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
Steve French4b18f2a2008-04-29 00:06:05 +0000431 return false;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000432 }
Steve French790fe572007-07-07 19:25:05 +0000433 if (pSMB->hdr.Command != SMB_COM_LOCKING_ANDX)
Steve French4b18f2a2008-04-29 00:06:05 +0000434 return false;
Steve French790fe572007-07-07 19:25:05 +0000435 if (pSMB->hdr.Flags & SMBFLG_RESPONSE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /* no sense logging error on invalid handle on oplock
437 break - harmless race between close request and oplock
438 break response is expected from time to time writing out
439 large dirty files cached on the client */
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000440 if ((NT_STATUS_INVALID_HANDLE) ==
441 le32_to_cpu(pSMB->hdr.Status.CifsError)) {
Joe Perchesa0a30362020-04-14 22:42:53 -0700442 cifs_dbg(FYI, "Invalid handle on oplock break\n");
Steve French4b18f2a2008-04-29 00:06:05 +0000443 return true;
Steve Frenchfb8c4b12007-07-10 01:16:18 +0000444 } else if (ERRbadfid ==
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 le16_to_cpu(pSMB->hdr.Status.DosError.Error)) {
Steve French4b18f2a2008-04-29 00:06:05 +0000446 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 } else {
Steve French4b18f2a2008-04-29 00:06:05 +0000448 return false; /* on valid oplock brk we get "request" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450 }
Steve French790fe572007-07-07 19:25:05 +0000451 if (pSMB->hdr.WordCount != 8)
Steve French4b18f2a2008-04-29 00:06:05 +0000452 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Steve French59b04c52014-08-02 21:16:48 -0500454 cifs_dbg(FYI, "oplock type 0x%x level 0x%x\n",
Joe Perchesb6b38f72010-04-21 03:50:45 +0000455 pSMB->LockType, pSMB->OplockLevel);
Steve French790fe572007-07-07 19:25:05 +0000456 if (!(pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE))
Steve French4b18f2a2008-04-29 00:06:05 +0000457 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 /* look up tcon based on tid & uid */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530460 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500461 list_for_each(tmp, &srv->smb_ses_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000462 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500463 list_for_each(tmp1, &ses->tcon_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000464 tcon = list_entry(tmp1, struct cifs_tcon, tcon_list);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500465 if (tcon->tid != buf->Tid)
466 continue;
467
Pavel Shilovsky44c58182012-05-28 14:16:31 +0400468 cifs_stats_inc(&tcon->stats.cifs_stats.num_oplock_brks);
Steve French3afca262016-09-22 18:58:16 -0500469 spin_lock(&tcon->open_file_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500470 list_for_each(tmp2, &tcon->openFileList) {
471 netfile = list_entry(tmp2, struct cifsFileInfo,
Steve French57337e42005-04-28 22:41:10 -0700472 tlist);
Pavel Shilovsky4b4de762012-09-18 16:20:26 -0700473 if (pSMB->Fid != netfile->fid.netfid)
Jeff Laytonf1987b42008-11-15 11:12:47 -0500474 continue;
475
Joe Perchesf96637b2013-05-04 22:12:25 -0500476 cifs_dbg(FYI, "file id match, oplock break\n");
David Howells2b0143b2015-03-17 22:25:59 +0000477 pCifsInode = CIFS_I(d_inode(netfile->dentry));
Tejun Heo9b646972010-07-20 22:09:02 +0200478
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000479 set_bit(CIFS_INODE_PENDING_OPLOCK_BREAK,
480 &pCifsInode->flags);
481
Pavel Shilovsky9bd45402019-10-29 16:51:19 -0700482 netfile->oplock_epoch = 0;
483 netfile->oplock_level = pSMB->OplockLevel;
Tejun Heo9b646972010-07-20 22:09:02 +0200484 netfile->oplock_break_cancelled = false;
Pavel Shilovsky9bd45402019-10-29 16:51:19 -0700485 cifs_queue_oplock_break(netfile);
Tejun Heo9b646972010-07-20 22:09:02 +0200486
Steve French3afca262016-09-22 18:58:16 -0500487 spin_unlock(&tcon->open_file_lock);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530488 spin_unlock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500489 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
Steve French3afca262016-09-22 18:58:16 -0500491 spin_unlock(&tcon->open_file_lock);
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530492 spin_unlock(&cifs_tcp_ses_lock);
Joe Perchesf96637b2013-05-04 22:12:25 -0500493 cifs_dbg(FYI, "No matching file for oplock break\n");
Steve French4b18f2a2008-04-29 00:06:05 +0000494 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530497 spin_unlock(&cifs_tcp_ses_lock);
Joe Perchesf96637b2013-05-04 22:12:25 -0500498 cifs_dbg(FYI, "Can not process oplock break for non-existent connection\n");
Steve French4b18f2a2008-04-29 00:06:05 +0000499 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
502void
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400503dump_smb(void *buf, int smb_buf_length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (traceSMB == 0)
506 return;
507
Andy Shevchenko55d83e02014-08-27 16:49:43 +0300508 print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_NONE, 8, 2, buf,
509 smb_buf_length, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
Steve French6a0b4822005-04-28 22:41:05 -0700511
Jeff Laytonec06aed2009-11-06 14:18:29 -0500512void
513cifs_autodisable_serverino(struct cifs_sb_info *cifs_sb)
514{
515 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
Aurelien Aptel5fc7fcd2018-11-16 16:13:25 +0100516 struct cifs_tcon *tcon = NULL;
517
518 if (cifs_sb->master_tlink)
519 tcon = cifs_sb_master_tcon(cifs_sb);
520
Suresh Jayaramanf534dc92009-11-16 12:03:16 +0530521 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_SERVER_INUM;
Paulo Alcantara (SUSE)29fbeb72019-06-18 16:16:02 -0300522 cifs_sb->mnt_cifs_serverino_autodisabled = true;
Joe Perchesa0a30362020-04-14 22:42:53 -0700523 cifs_dbg(VFS, "Autodisabling the use of server inode numbers on %s\n",
Aurelien Aptel5fc7fcd2018-11-16 16:13:25 +0100524 tcon ? tcon->treeName : "new server");
Joe Perchesa0a30362020-04-14 22:42:53 -0700525 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 +0100526 cifs_dbg(VFS, "Hardlinks will not be recognized on this mount. Consider mounting with the \"noserverino\" option to silence this message.\n");
527
Jeff Laytonec06aed2009-11-06 14:18:29 -0500528 }
529}
Pavel Shilovskye66673e2010-11-02 12:00:42 +0300530
Pavel Shilovskyc6723622010-11-03 10:58:57 +0300531void cifs_set_oplock_level(struct cifsInodeInfo *cinode, __u32 oplock)
Pavel Shilovskye66673e2010-11-02 12:00:42 +0300532{
Pavel Shilovskyc6723622010-11-03 10:58:57 +0300533 oplock &= 0xF;
Pavel Shilovskye66673e2010-11-02 12:00:42 +0300534
Pavel Shilovskyc6723622010-11-03 10:58:57 +0300535 if (oplock == OPLOCK_EXCLUSIVE) {
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400536 cinode->oplock = CIFS_CACHE_WRITE_FLG | CIFS_CACHE_READ_FLG;
Joe Perchesf96637b2013-05-04 22:12:25 -0500537 cifs_dbg(FYI, "Exclusive Oplock granted on inode %p\n",
538 &cinode->vfs_inode);
Pavel Shilovskyc6723622010-11-03 10:58:57 +0300539 } else if (oplock == OPLOCK_READ) {
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400540 cinode->oplock = CIFS_CACHE_READ_FLG;
Joe Perchesf96637b2013-05-04 22:12:25 -0500541 cifs_dbg(FYI, "Level II Oplock granted on inode %p\n",
542 &cinode->vfs_inode);
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400543 } else
544 cinode->oplock = 0;
Pavel Shilovskye66673e2010-11-02 12:00:42 +0300545}
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500546
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000547/*
548 * We wait for oplock breaks to be processed before we attempt to perform
549 * writes.
550 */
551int cifs_get_writer(struct cifsInodeInfo *cinode)
552{
553 int rc;
554
555start:
556 rc = wait_on_bit(&cinode->flags, CIFS_INODE_PENDING_OPLOCK_BREAK,
NeilBrown74316202014-07-07 15:16:04 +1000557 TASK_KILLABLE);
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000558 if (rc)
559 return rc;
560
561 spin_lock(&cinode->writers_lock);
562 if (!cinode->writers)
563 set_bit(CIFS_INODE_PENDING_WRITERS, &cinode->flags);
564 cinode->writers++;
565 /* Check to see if we have started servicing an oplock break */
566 if (test_bit(CIFS_INODE_PENDING_OPLOCK_BREAK, &cinode->flags)) {
567 cinode->writers--;
568 if (cinode->writers == 0) {
569 clear_bit(CIFS_INODE_PENDING_WRITERS, &cinode->flags);
570 wake_up_bit(&cinode->flags, CIFS_INODE_PENDING_WRITERS);
571 }
572 spin_unlock(&cinode->writers_lock);
573 goto start;
574 }
575 spin_unlock(&cinode->writers_lock);
576 return 0;
577}
578
579void cifs_put_writer(struct cifsInodeInfo *cinode)
580{
581 spin_lock(&cinode->writers_lock);
582 cinode->writers--;
583 if (cinode->writers == 0) {
584 clear_bit(CIFS_INODE_PENDING_WRITERS, &cinode->flags);
585 wake_up_bit(&cinode->flags, CIFS_INODE_PENDING_WRITERS);
586 }
587 spin_unlock(&cinode->writers_lock);
588}
589
Aurelien Aptelb98749c2019-03-29 10:49:12 +0100590/**
591 * cifs_queue_oplock_break - queue the oplock break handler for cfile
David Howells03ab9cb2021-09-20 13:14:15 +0100592 * @cfile: The file to break the oplock on
Aurelien Aptelb98749c2019-03-29 10:49:12 +0100593 *
594 * This function is called from the demultiplex thread when it
595 * receives an oplock break for @cfile.
596 *
597 * Assumes the tcon->open_file_lock is held.
598 * Assumes cfile->file_info_lock is NOT held.
599 */
600void cifs_queue_oplock_break(struct cifsFileInfo *cfile)
601{
602 /*
603 * Bump the handle refcount now while we hold the
604 * open_file_lock to enforce the validity of it for the oplock
605 * break handler. The matching put is done at the end of the
606 * handler.
607 */
608 cifsFileInfo_get(cfile);
609
610 queue_work(cifsoplockd_wq, &cfile->oplock_break);
611}
612
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000613void cifs_done_oplock_break(struct cifsInodeInfo *cinode)
614{
615 clear_bit(CIFS_INODE_PENDING_OPLOCK_BREAK, &cinode->flags);
616 wake_up_bit(&cinode->flags, CIFS_INODE_PENDING_OPLOCK_BREAK);
617}
618
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500619bool
620backup_cred(struct cifs_sb_info *cifs_sb)
621{
622 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPUID) {
Ronnie Sahlberg8401e932020-12-12 13:40:50 -0600623 if (uid_eq(cifs_sb->ctx->backupuid, current_fsuid()))
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500624 return true;
625 }
626 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPGID) {
Ronnie Sahlberg8401e932020-12-12 13:40:50 -0600627 if (in_group_p(cifs_sb->ctx->backupgid))
Shirish Pargaonkar3d3ea8e2011-09-26 09:56:44 -0500628 return true;
629 }
630
631 return false;
632}
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700633
634void
635cifs_del_pending_open(struct cifs_pending_open *open)
636{
Steve French3afca262016-09-22 18:58:16 -0500637 spin_lock(&tlink_tcon(open->tlink)->open_file_lock);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700638 list_del(&open->olist);
Steve French3afca262016-09-22 18:58:16 -0500639 spin_unlock(&tlink_tcon(open->tlink)->open_file_lock);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700640}
641
642void
643cifs_add_pending_open_locked(struct cifs_fid *fid, struct tcon_link *tlink,
644 struct cifs_pending_open *open)
645{
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700646 memcpy(open->lease_key, fid->lease_key, SMB2_LEASE_KEY_SIZE);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700647 open->oplock = CIFS_OPLOCK_NO_CHANGE;
648 open->tlink = tlink;
649 fid->pending_open = open;
650 list_add_tail(&open->olist, &tlink_tcon(tlink)->pending_opens);
651}
652
653void
654cifs_add_pending_open(struct cifs_fid *fid, struct tcon_link *tlink,
655 struct cifs_pending_open *open)
656{
Steve French3afca262016-09-22 18:58:16 -0500657 spin_lock(&tlink_tcon(tlink)->open_file_lock);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700658 cifs_add_pending_open_locked(fid, tlink, open);
Steve French3afca262016-09-22 18:58:16 -0500659 spin_unlock(&tlink_tcon(open->tlink)->open_file_lock);
Pavel Shilovsky233839b2012-09-19 06:22:45 -0700660}
Aurelien Aptel4ecce922017-02-13 16:03:47 +0100661
Rohith Surabattula860b69a2021-05-05 10:56:47 +0000662/*
663 * Critical section which runs after acquiring deferred_lock.
Rohith Surabattula9687c852021-05-20 16:45:01 +0000664 * As there is no reference count on cifs_deferred_close, pdclose
665 * should not be used outside deferred_lock.
Rohith Surabattula860b69a2021-05-05 10:56:47 +0000666 */
Rohith Surabattulac3f207a2021-04-13 00:26:42 -0500667bool
668cifs_is_deferred_close(struct cifsFileInfo *cfile, struct cifs_deferred_close **pdclose)
669{
670 struct cifs_deferred_close *dclose;
671
672 list_for_each_entry(dclose, &CIFS_I(d_inode(cfile->dentry))->deferred_closes, dlist) {
673 if ((dclose->netfid == cfile->fid.netfid) &&
674 (dclose->persistent_fid == cfile->fid.persistent_fid) &&
675 (dclose->volatile_fid == cfile->fid.volatile_fid)) {
676 *pdclose = dclose;
677 return true;
678 }
679 }
680 return false;
681}
682
Rohith Surabattula860b69a2021-05-05 10:56:47 +0000683/*
684 * Critical section which runs after acquiring deferred_lock.
685 */
Rohith Surabattulac3f207a2021-04-13 00:26:42 -0500686void
687cifs_add_deferred_close(struct cifsFileInfo *cfile, struct cifs_deferred_close *dclose)
688{
689 bool is_deferred = false;
690 struct cifs_deferred_close *pdclose;
691
692 is_deferred = cifs_is_deferred_close(cfile, &pdclose);
693 if (is_deferred) {
694 kfree(dclose);
695 return;
696 }
697
698 dclose->tlink = cfile->tlink;
699 dclose->netfid = cfile->fid.netfid;
700 dclose->persistent_fid = cfile->fid.persistent_fid;
701 dclose->volatile_fid = cfile->fid.volatile_fid;
702 list_add_tail(&dclose->dlist, &CIFS_I(d_inode(cfile->dentry))->deferred_closes);
703}
704
Rohith Surabattula860b69a2021-05-05 10:56:47 +0000705/*
706 * Critical section which runs after acquiring deferred_lock.
707 */
Rohith Surabattulac3f207a2021-04-13 00:26:42 -0500708void
709cifs_del_deferred_close(struct cifsFileInfo *cfile)
710{
711 bool is_deferred = false;
712 struct cifs_deferred_close *dclose;
713
714 is_deferred = cifs_is_deferred_close(cfile, &dclose);
715 if (!is_deferred)
716 return;
717 list_del(&dclose->dlist);
718 kfree(dclose);
719}
720
721void
722cifs_close_deferred_file(struct cifsInodeInfo *cifs_inode)
723{
724 struct cifsFileInfo *cfile = NULL;
Rohith Surabattula9e992752021-08-09 09:32:46 +0000725 struct file_list *tmp_list, *tmp_next_list;
726 struct list_head file_head;
Rohith Surabattula41535702021-07-29 07:45:29 +0000727
728 if (cifs_inode == NULL)
729 return;
Rohith Surabattulac3f207a2021-04-13 00:26:42 -0500730
Rohith Surabattula9e992752021-08-09 09:32:46 +0000731 INIT_LIST_HEAD(&file_head);
732 spin_lock(&cifs_inode->open_file_lock);
Rohith Surabattulac3f207a2021-04-13 00:26:42 -0500733 list_for_each_entry(cfile, &cifs_inode->openFileList, flist) {
Rohith Surabattula41535702021-07-29 07:45:29 +0000734 if (delayed_work_pending(&cfile->deferred)) {
Rohith Surabattula9e992752021-08-09 09:32:46 +0000735 if (cancel_delayed_work(&cfile->deferred)) {
736 tmp_list = kmalloc(sizeof(struct file_list), GFP_ATOMIC);
737 if (tmp_list == NULL)
Rohith Surabattula71826b02021-09-17 17:29:42 +0000738 break;
Rohith Surabattula9e992752021-08-09 09:32:46 +0000739 tmp_list->cfile = cfile;
740 list_add_tail(&tmp_list->list, &file_head);
741 }
Rohith Surabattula41535702021-07-29 07:45:29 +0000742 }
Rohith Surabattulac3f207a2021-04-13 00:26:42 -0500743 }
Rohith Surabattula9e992752021-08-09 09:32:46 +0000744 spin_unlock(&cifs_inode->open_file_lock);
745
746 list_for_each_entry_safe(tmp_list, tmp_next_list, &file_head, list) {
747 _cifsFileInfo_put(tmp_list->cfile, true, false);
748 list_del(&tmp_list->list);
749 kfree(tmp_list);
750 }
Rohith Surabattulac3f207a2021-04-13 00:26:42 -0500751}
752
Rohith Surabattula78c09632021-04-19 19:02:03 +0000753void
754cifs_close_all_deferred_files(struct cifs_tcon *tcon)
755{
756 struct cifsFileInfo *cfile;
Rohith Surabattula78c09632021-04-19 19:02:03 +0000757 struct list_head *tmp;
Rohith Surabattula9e992752021-08-09 09:32:46 +0000758 struct file_list *tmp_list, *tmp_next_list;
759 struct list_head file_head;
Rohith Surabattula78c09632021-04-19 19:02:03 +0000760
Rohith Surabattula9e992752021-08-09 09:32:46 +0000761 INIT_LIST_HEAD(&file_head);
Rohith Surabattula78c09632021-04-19 19:02:03 +0000762 spin_lock(&tcon->open_file_lock);
763 list_for_each(tmp, &tcon->openFileList) {
764 cfile = list_entry(tmp, struct cifsFileInfo, tlist);
Rohith Surabattula9687c852021-05-20 16:45:01 +0000765 if (delayed_work_pending(&cfile->deferred)) {
Rohith Surabattula9e992752021-08-09 09:32:46 +0000766 if (cancel_delayed_work(&cfile->deferred)) {
767 tmp_list = kmalloc(sizeof(struct file_list), GFP_ATOMIC);
768 if (tmp_list == NULL)
Rohith Surabattula71826b02021-09-17 17:29:42 +0000769 break;
Rohith Surabattula9e992752021-08-09 09:32:46 +0000770 tmp_list->cfile = cfile;
771 list_add_tail(&tmp_list->list, &file_head);
772 }
Rohith Surabattula9687c852021-05-20 16:45:01 +0000773 }
Rohith Surabattula78c09632021-04-19 19:02:03 +0000774 }
775 spin_unlock(&tcon->open_file_lock);
Rohith Surabattula9e992752021-08-09 09:32:46 +0000776
777 list_for_each_entry_safe(tmp_list, tmp_next_list, &file_head, list) {
778 _cifsFileInfo_put(tmp_list->cfile, true, false);
779 list_del(&tmp_list->list);
780 kfree(tmp_list);
781 }
Rohith Surabattula78c09632021-04-19 19:02:03 +0000782}
Rohith Surabattulae3fc0652021-09-17 18:14:26 +0000783void
784cifs_close_deferred_file_under_dentry(struct cifs_tcon *tcon, const char *path)
785{
786 struct cifsFileInfo *cfile;
787 struct list_head *tmp;
788 struct file_list *tmp_list, *tmp_next_list;
789 struct list_head file_head;
790 void *page;
791 const char *full_path;
792
793 INIT_LIST_HEAD(&file_head);
794 page = alloc_dentry_path();
795 spin_lock(&tcon->open_file_lock);
796 list_for_each(tmp, &tcon->openFileList) {
797 cfile = list_entry(tmp, struct cifsFileInfo, tlist);
798 full_path = build_path_from_dentry(cfile->dentry, page);
799 if (strstr(full_path, path)) {
800 if (delayed_work_pending(&cfile->deferred)) {
801 if (cancel_delayed_work(&cfile->deferred)) {
802 tmp_list = kmalloc(sizeof(struct file_list), GFP_ATOMIC);
803 if (tmp_list == NULL)
804 break;
805 tmp_list->cfile = cfile;
806 list_add_tail(&tmp_list->list, &file_head);
807 }
808 }
809 }
810 }
811 spin_unlock(&tcon->open_file_lock);
812
813 list_for_each_entry_safe(tmp_list, tmp_next_list, &file_head, list) {
814 _cifsFileInfo_put(tmp_list->cfile, true, false);
815 list_del(&tmp_list->list);
816 kfree(tmp_list);
817 }
818 free_dentry_path(page);
819}
Rohith Surabattula78c09632021-04-19 19:02:03 +0000820
Aurelien Aptel4ecce922017-02-13 16:03:47 +0100821/* parses DFS refferal V3 structure
822 * caller is responsible for freeing target_nodes
823 * returns:
824 * - on success - 0
825 * - on failure - errno
826 */
827int
828parse_dfs_referrals(struct get_dfs_referral_rsp *rsp, u32 rsp_size,
829 unsigned int *num_of_nodes,
830 struct dfs_info3_param **target_nodes,
831 const struct nls_table *nls_codepage, int remap,
832 const char *searchName, bool is_unicode)
833{
834 int i, rc = 0;
835 char *data_end;
836 struct dfs_referral_level_3 *ref;
837
838 *num_of_nodes = le16_to_cpu(rsp->NumberOfReferrals);
839
840 if (*num_of_nodes < 1) {
841 cifs_dbg(VFS, "num_referrals: must be at least > 0, but we get num_referrals = %d\n",
842 *num_of_nodes);
843 rc = -EINVAL;
844 goto parse_DFS_referrals_exit;
845 }
846
847 ref = (struct dfs_referral_level_3 *) &(rsp->referrals);
848 if (ref->VersionNumber != cpu_to_le16(3)) {
849 cifs_dbg(VFS, "Referrals of V%d version are not supported, should be V3\n",
850 le16_to_cpu(ref->VersionNumber));
851 rc = -EINVAL;
852 goto parse_DFS_referrals_exit;
853 }
854
855 /* get the upper boundary of the resp buffer */
856 data_end = (char *)rsp + rsp_size;
857
858 cifs_dbg(FYI, "num_referrals: %d dfs flags: 0x%x ...\n",
859 *num_of_nodes, le32_to_cpu(rsp->DFSFlags));
860
861 *target_nodes = kcalloc(*num_of_nodes, sizeof(struct dfs_info3_param),
862 GFP_KERNEL);
863 if (*target_nodes == NULL) {
864 rc = -ENOMEM;
865 goto parse_DFS_referrals_exit;
866 }
867
868 /* collect necessary data from referrals */
869 for (i = 0; i < *num_of_nodes; i++) {
870 char *temp;
871 int max_len;
872 struct dfs_info3_param *node = (*target_nodes)+i;
873
874 node->flags = le32_to_cpu(rsp->DFSFlags);
875 if (is_unicode) {
876 __le16 *tmp = kmalloc(strlen(searchName)*2 + 2,
877 GFP_KERNEL);
878 if (tmp == NULL) {
879 rc = -ENOMEM;
880 goto parse_DFS_referrals_exit;
881 }
882 cifsConvertToUTF16((__le16 *) tmp, searchName,
883 PATH_MAX, nls_codepage, remap);
884 node->path_consumed = cifs_utf16_bytes(tmp,
885 le16_to_cpu(rsp->PathConsumed),
886 nls_codepage);
887 kfree(tmp);
888 } else
889 node->path_consumed = le16_to_cpu(rsp->PathConsumed);
890
891 node->server_type = le16_to_cpu(ref->ServerType);
892 node->ref_flag = le16_to_cpu(ref->ReferralEntryFlags);
893
894 /* copy DfsPath */
895 temp = (char *)ref + le16_to_cpu(ref->DfsPathOffset);
896 max_len = data_end - temp;
897 node->path_name = cifs_strndup_from_utf16(temp, max_len,
898 is_unicode, nls_codepage);
899 if (!node->path_name) {
900 rc = -ENOMEM;
901 goto parse_DFS_referrals_exit;
902 }
903
904 /* copy link target UNC */
905 temp = (char *)ref + le16_to_cpu(ref->NetworkAddressOffset);
906 max_len = data_end - temp;
907 node->node_name = cifs_strndup_from_utf16(temp, max_len,
908 is_unicode, nls_codepage);
909 if (!node->node_name) {
910 rc = -ENOMEM;
911 goto parse_DFS_referrals_exit;
912 }
913
Paulo Alcantarae7b602f2018-11-14 15:38:51 -0200914 node->ttl = le32_to_cpu(ref->TimeToLive);
915
Aurelien Aptel4ecce922017-02-13 16:03:47 +0100916 ref++;
917 }
918
919parse_DFS_referrals_exit:
920 if (rc) {
921 free_dfs_info_array(*target_nodes, *num_of_nodes);
922 *target_nodes = NULL;
923 *num_of_nodes = 0;
924 }
925 return rc;
926}
Pavel Shilovskyccf7f402017-04-25 11:52:29 -0700927
928struct cifs_aio_ctx *
929cifs_aio_ctx_alloc(void)
930{
931 struct cifs_aio_ctx *ctx;
932
Jérôme Glisse13f59382019-04-10 15:37:47 -0400933 /*
934 * Must use kzalloc to initialize ctx->bv to NULL and ctx->direct_io
935 * to false so that we know when we have to unreference pages within
936 * cifs_aio_ctx_release()
937 */
Pavel Shilovskyccf7f402017-04-25 11:52:29 -0700938 ctx = kzalloc(sizeof(struct cifs_aio_ctx), GFP_KERNEL);
939 if (!ctx)
940 return NULL;
941
942 INIT_LIST_HEAD(&ctx->list);
943 mutex_init(&ctx->aio_mutex);
944 init_completion(&ctx->done);
945 kref_init(&ctx->refcount);
946 return ctx;
947}
948
949void
950cifs_aio_ctx_release(struct kref *refcount)
951{
952 struct cifs_aio_ctx *ctx = container_of(refcount,
953 struct cifs_aio_ctx, refcount);
954
955 cifsFileInfo_put(ctx->cfile);
Jérôme Glisse13f59382019-04-10 15:37:47 -0400956
957 /*
958 * ctx->bv is only set if setup_aio_ctx_iter() was call successfuly
959 * which means that iov_iter_get_pages() was a success and thus that
960 * we have taken reference on pages.
961 */
962 if (ctx->bv) {
963 unsigned i;
964
965 for (i = 0; i < ctx->npages; i++) {
966 if (ctx->should_dirty)
967 set_page_dirty(ctx->bv[i].bv_page);
968 put_page(ctx->bv[i].bv_page);
969 }
970 kvfree(ctx->bv);
971 }
972
Pavel Shilovskyccf7f402017-04-25 11:52:29 -0700973 kfree(ctx);
974}
975
976#define CIFS_AIO_KMALLOC_LIMIT (1024 * 1024)
977
978int
979setup_aio_ctx_iter(struct cifs_aio_ctx *ctx, struct iov_iter *iter, int rw)
980{
981 ssize_t rc;
982 unsigned int cur_npages;
983 unsigned int npages = 0;
984 unsigned int i;
985 size_t len;
986 size_t count = iov_iter_count(iter);
987 unsigned int saved_len;
988 size_t start;
989 unsigned int max_pages = iov_iter_npages(iter, INT_MAX);
990 struct page **pages = NULL;
991 struct bio_vec *bv = NULL;
992
David Howells00e23702018-10-22 13:07:28 +0100993 if (iov_iter_is_kvec(iter)) {
Gustavo A. R. Silvabf1028a2020-06-15 17:41:12 -0500994 memcpy(&ctx->iter, iter, sizeof(*iter));
Pavel Shilovskyccf7f402017-04-25 11:52:29 -0700995 ctx->len = count;
996 iov_iter_advance(iter, count);
997 return 0;
998 }
999
Gustavo A. R. Silvabf1028a2020-06-15 17:41:12 -05001000 if (array_size(max_pages, sizeof(*bv)) <= CIFS_AIO_KMALLOC_LIMIT)
1001 bv = kmalloc_array(max_pages, sizeof(*bv), GFP_KERNEL);
Pavel Shilovskyccf7f402017-04-25 11:52:29 -07001002
1003 if (!bv) {
Gustavo A. R. Silvabf1028a2020-06-15 17:41:12 -05001004 bv = vmalloc(array_size(max_pages, sizeof(*bv)));
Pavel Shilovskyccf7f402017-04-25 11:52:29 -07001005 if (!bv)
1006 return -ENOMEM;
1007 }
1008
Gustavo A. R. Silvabf1028a2020-06-15 17:41:12 -05001009 if (array_size(max_pages, sizeof(*pages)) <= CIFS_AIO_KMALLOC_LIMIT)
1010 pages = kmalloc_array(max_pages, sizeof(*pages), GFP_KERNEL);
Pavel Shilovskyccf7f402017-04-25 11:52:29 -07001011
1012 if (!pages) {
Gustavo A. R. Silvabf1028a2020-06-15 17:41:12 -05001013 pages = vmalloc(array_size(max_pages, sizeof(*pages)));
Colin Ian Kingecf34112017-05-17 19:24:15 +01001014 if (!pages) {
Pavel Shilovskyccf7f402017-04-25 11:52:29 -07001015 kvfree(bv);
1016 return -ENOMEM;
1017 }
1018 }
1019
1020 saved_len = count;
1021
1022 while (count && npages < max_pages) {
1023 rc = iov_iter_get_pages(iter, pages, count, max_pages, &start);
1024 if (rc < 0) {
Joe Perchesa0a30362020-04-14 22:42:53 -07001025 cifs_dbg(VFS, "Couldn't get user pages (rc=%zd)\n", rc);
Pavel Shilovskyccf7f402017-04-25 11:52:29 -07001026 break;
1027 }
1028
1029 if (rc > count) {
1030 cifs_dbg(VFS, "get pages rc=%zd more than %zu\n", rc,
1031 count);
1032 break;
1033 }
1034
1035 iov_iter_advance(iter, rc);
1036 count -= rc;
1037 rc += start;
1038 cur_npages = DIV_ROUND_UP(rc, PAGE_SIZE);
1039
1040 if (npages + cur_npages > max_pages) {
1041 cifs_dbg(VFS, "out of vec array capacity (%u vs %u)\n",
1042 npages + cur_npages, max_pages);
1043 break;
1044 }
1045
1046 for (i = 0; i < cur_npages; i++) {
1047 len = rc > PAGE_SIZE ? PAGE_SIZE : rc;
1048 bv[npages + i].bv_page = pages[i];
1049 bv[npages + i].bv_offset = start;
1050 bv[npages + i].bv_len = len - start;
1051 rc -= len;
1052 start = 0;
1053 }
1054
1055 npages += cur_npages;
1056 }
1057
1058 kvfree(pages);
1059 ctx->bv = bv;
1060 ctx->len = saved_len - count;
1061 ctx->npages = npages;
David Howellsaa563d72018-10-20 00:57:56 +01001062 iov_iter_bvec(&ctx->iter, rw, ctx->bv, npages, ctx->len);
Pavel Shilovskyccf7f402017-04-25 11:52:29 -07001063 return 0;
1064}
Aurelien Aptel82fb82b2018-02-16 19:19:27 +01001065
1066/**
1067 * cifs_alloc_hash - allocate hash and hash context together
David Howells03ab9cb2021-09-20 13:14:15 +01001068 * @name: The name of the crypto hash algo
1069 * @shash: Where to put the pointer to the hash algo
1070 * @sdesc: Where to put the pointer to the hash descriptor
Aurelien Aptel82fb82b2018-02-16 19:19:27 +01001071 *
1072 * The caller has to make sure @sdesc is initialized to either NULL or
1073 * a valid context. Both can be freed via cifs_free_hash().
1074 */
1075int
1076cifs_alloc_hash(const char *name,
1077 struct crypto_shash **shash, struct sdesc **sdesc)
1078{
1079 int rc = 0;
1080 size_t size;
1081
1082 if (*sdesc != NULL)
1083 return 0;
1084
1085 *shash = crypto_alloc_shash(name, 0, 0);
1086 if (IS_ERR(*shash)) {
Joe Perchesa0a30362020-04-14 22:42:53 -07001087 cifs_dbg(VFS, "Could not allocate crypto %s\n", name);
Aurelien Aptel82fb82b2018-02-16 19:19:27 +01001088 rc = PTR_ERR(*shash);
1089 *shash = NULL;
1090 *sdesc = NULL;
1091 return rc;
1092 }
1093
1094 size = sizeof(struct shash_desc) + crypto_shash_descsize(*shash);
1095 *sdesc = kmalloc(size, GFP_KERNEL);
1096 if (*sdesc == NULL) {
1097 cifs_dbg(VFS, "no memory left to allocate crypto %s\n", name);
1098 crypto_free_shash(*shash);
1099 *shash = NULL;
1100 return -ENOMEM;
1101 }
1102
1103 (*sdesc)->shash.tfm = *shash;
Aurelien Aptel82fb82b2018-02-16 19:19:27 +01001104 return 0;
1105}
1106
1107/**
1108 * cifs_free_hash - free hash and hash context together
David Howells03ab9cb2021-09-20 13:14:15 +01001109 * @shash: Where to find the pointer to the hash algo
1110 * @sdesc: Where to find the pointer to the hash descriptor
Aurelien Aptel82fb82b2018-02-16 19:19:27 +01001111 *
1112 * Freeing a NULL hash or context is safe.
1113 */
1114void
1115cifs_free_hash(struct crypto_shash **shash, struct sdesc **sdesc)
1116{
1117 kfree(*sdesc);
1118 *sdesc = NULL;
1119 if (*shash)
1120 crypto_free_shash(*shash);
1121 *shash = NULL;
1122}
Long Li7b7f2bd2018-05-30 12:47:58 -07001123
1124/**
1125 * rqst_page_get_length - obtain the length and offset for a page in smb_rqst
David Howells03ab9cb2021-09-20 13:14:15 +01001126 * @rqst: The request descriptor
1127 * @page: The index of the page to query
1128 * @len: Where to store the length for this page:
1129 * @offset: Where to store the offset for this page
Long Li7b7f2bd2018-05-30 12:47:58 -07001130 */
1131void rqst_page_get_length(struct smb_rqst *rqst, unsigned int page,
1132 unsigned int *len, unsigned int *offset)
1133{
1134 *len = rqst->rq_pagesz;
1135 *offset = (page == 0) ? rqst->rq_offset : 0;
1136
1137 if (rqst->rq_npages == 1 || page == rqst->rq_npages-1)
1138 *len = rqst->rq_tailsz;
1139 else if (page == 0)
1140 *len = rqst->rq_pagesz - rqst->rq_offset;
1141}
Paulo Alcantaraa3a53b72018-11-14 17:20:31 -02001142
1143void extract_unc_hostname(const char *unc, const char **h, size_t *len)
1144{
1145 const char *end;
1146
1147 /* skip initial slashes */
1148 while (*unc && (*unc == '\\' || *unc == '/'))
1149 unc++;
1150
1151 end = unc;
1152
1153 while (*end && !(*end == '\\' || *end == '/'))
1154 end++;
1155
1156 *h = unc;
1157 *len = end - unc;
1158}
Ronnie Sahlberg340625e2019-08-27 09:30:14 +10001159
1160/**
1161 * copy_path_name - copy src path to dst, possibly truncating
David Howells03ab9cb2021-09-20 13:14:15 +01001162 * @dst: The destination buffer
1163 * @src: The source name
Ronnie Sahlberg340625e2019-08-27 09:30:14 +10001164 *
1165 * returns number of bytes written (including trailing nul)
1166 */
1167int copy_path_name(char *dst, const char *src)
1168{
1169 int name_len;
1170
1171 /*
1172 * PATH_MAX includes nul, so if strlen(src) >= PATH_MAX it
1173 * will truncate and strlen(dst) will be PATH_MAX-1
1174 */
1175 name_len = strscpy(dst, src, PATH_MAX);
1176 if (WARN_ON_ONCE(name_len < 0))
1177 name_len = PATH_MAX-1;
1178
1179 /* we count the trailing nul */
1180 name_len++;
1181 return name_len;
1182}
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001183
1184struct super_cb_data {
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001185 void *data;
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001186 struct super_block *sb;
1187};
1188
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001189static void tcp_super_cb(struct super_block *sb, void *arg)
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001190{
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001191 struct super_cb_data *sd = arg;
1192 struct TCP_Server_Info *server = sd->data;
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001193 struct cifs_sb_info *cifs_sb;
1194 struct cifs_tcon *tcon;
1195
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001196 if (sd->sb)
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001197 return;
1198
1199 cifs_sb = CIFS_SB(sb);
1200 tcon = cifs_sb_master_tcon(cifs_sb);
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001201 if (tcon->ses->server == server)
1202 sd->sb = sb;
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001203}
1204
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001205static struct super_block *__cifs_get_super(void (*f)(struct super_block *, void *),
1206 void *data)
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001207{
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001208 struct super_cb_data sd = {
1209 .data = data,
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001210 .sb = NULL,
1211 };
1212
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001213 iterate_supers_type(&cifs_fs_type, f, &sd);
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001214
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001215 if (!sd.sb)
1216 return ERR_PTR(-EINVAL);
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001217 /*
1218 * Grab an active reference in order to prevent automounts (DFS links)
1219 * of expiring and then freeing up our cifs superblock pointer while
1220 * we're doing failover.
1221 */
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001222 cifs_sb_active(sd.sb);
1223 return sd.sb;
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001224}
1225
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001226static void __cifs_put_super(struct super_block *sb)
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001227{
1228 if (!IS_ERR_OR_NULL(sb))
1229 cifs_sb_deactive(sb);
1230}
1231
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001232struct super_block *cifs_get_tcp_super(struct TCP_Server_Info *server)
1233{
1234 return __cifs_get_super(tcp_super_cb, server);
1235}
1236
1237void cifs_put_tcp_super(struct super_block *sb)
1238{
1239 __cifs_put_super(sb);
1240}
1241
1242#ifdef CONFIG_CIFS_DFS_UPCALL
Paulo Alcantarae4af35f2020-05-19 15:38:28 -03001243int match_target_ip(struct TCP_Server_Info *server,
1244 const char *share, size_t share_len,
1245 bool *result)
1246{
1247 int rc;
1248 char *target, *tip = NULL;
1249 struct sockaddr tipaddr;
1250
1251 *result = false;
1252
1253 target = kzalloc(share_len + 3, GFP_KERNEL);
1254 if (!target) {
1255 rc = -ENOMEM;
1256 goto out;
1257 }
1258
1259 scnprintf(target, share_len + 3, "\\\\%.*s", (int)share_len, share);
1260
1261 cifs_dbg(FYI, "%s: target name: %s\n", __func__, target + 2);
1262
Shyam Prasad N506c1da2021-05-18 15:05:50 +00001263 rc = dns_resolve_server_name_to_ip(target, &tip, NULL);
Paulo Alcantarae4af35f2020-05-19 15:38:28 -03001264 if (rc < 0)
1265 goto out;
1266
1267 cifs_dbg(FYI, "%s: target ip: %s\n", __func__, tip);
1268
1269 if (!cifs_convert_address(&tipaddr, tip, strlen(tip))) {
1270 cifs_dbg(VFS, "%s: failed to convert target ip address\n",
1271 __func__);
1272 rc = -EINVAL;
1273 goto out;
1274 }
1275
1276 *result = cifs_match_ipaddr((struct sockaddr *)&server->dstaddr,
1277 &tipaddr);
1278 cifs_dbg(FYI, "%s: ip addresses match: %u\n", __func__, *result);
1279 rc = 0;
1280
1281out:
1282 kfree(target);
1283 kfree(tip);
1284
1285 return rc;
1286}
1287
Paulo Alcantarac88f7dc2021-11-03 13:53:29 -03001288int cifs_update_super_prepath(struct cifs_sb_info *cifs_sb, char *prefix)
Paulo Alcantara3786f4b2020-04-20 19:43:04 -03001289{
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001290 kfree(cifs_sb->prepath);
1291
Paulo Alcantara7548e1d2020-07-21 09:36:42 -03001292 if (prefix && *prefix) {
Al Viro8d767222021-03-05 15:02:34 -05001293 cifs_sb->prepath = kstrdup(prefix, GFP_ATOMIC);
Paulo Alcantarac88f7dc2021-11-03 13:53:29 -03001294 if (!cifs_sb->prepath)
1295 return -ENOMEM;
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001296
1297 convert_delimiter(cifs_sb->prepath, CIFS_DIR_SEP(cifs_sb));
1298 } else
1299 cifs_sb->prepath = NULL;
1300
1301 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
Paulo Alcantarac88f7dc2021-11-03 13:53:29 -03001302 return 0;
Paulo Alcantara (SUSE)bacd7042020-02-20 19:49:34 -03001303}
Paulo Alcantarac88f7dc2021-11-03 13:53:29 -03001304#endif