1 /*
2 * fs/cifs/smb2pdu.c
3 *
4 * Copyright (C) International Business Machines Corp., 2009, 2013
5 * Etersoft, 2012
6 * Author(s): Steve French (sfrench@us.ibm.com)
7 * Pavel Shilovsky (pshilovsky@samba.org) 2012
8 *
9 * Contains the routines for constructing the SMB2 PDUs themselves
10 *
11 * This library is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License as published
13 * by the Free Software Foundation; either version 2.1 of the License, or
14 * (at your option) any later version.
15 *
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
19 * the GNU Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * along with this library; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
26 /* SMB2 PDU handling routines here - except for leftovers (eg session setup) */
27 /* Note that there are handle based routines which must be */
28 /* treated slightly differently for reconnection purposes since we never */
29 /* want to reuse a stale file handle and only the caller knows the file info */
30
31 #include <linux/fs.h>
32 #include <linux/kernel.h>
33 #include <linux/vfs.h>
34 #include <linux/task_io_accounting_ops.h>
35 #include <linux/uaccess.h>
36 #include <linux/uuid.h>
37 #include <linux/pagemap.h>
38 #include <linux/xattr.h>
39 #include "smb2pdu.h"
40 #include "cifsglob.h"
41 #include "cifsacl.h"
42 #include "cifsproto.h"
43 #include "smb2proto.h"
44 #include "cifs_unicode.h"
45 #include "cifs_debug.h"
46 #include "ntlmssp.h"
47 #include "smb2status.h"
48 #include "smb2glob.h"
49 #include "cifspdu.h"
50 #include "cifs_spnego.h"
51 #include "smbdirect.h"
52 #include "trace.h"
53 #ifdef CONFIG_CIFS_DFS_UPCALL
54 #include "dfs_cache.h"
55 #endif
56
57 /*
58 * The following table defines the expected "StructureSize" of SMB2 requests
59 * in order by SMB2 command. This is similar to "wct" in SMB/CIFS requests.
60 *
61 * Note that commands are defined in smb2pdu.h in le16 but the array below is
62 * indexed by command in host byte order.
63 */
64 static const int smb2_req_struct_sizes[NUMBER_OF_SMB2_COMMANDS] = {
65 /* SMB2_NEGOTIATE */ 36,
66 /* SMB2_SESSION_SETUP */ 25,
67 /* SMB2_LOGOFF */ 4,
68 /* SMB2_TREE_CONNECT */ 9,
69 /* SMB2_TREE_DISCONNECT */ 4,
70 /* SMB2_CREATE */ 57,
71 /* SMB2_CLOSE */ 24,
72 /* SMB2_FLUSH */ 24,
73 /* SMB2_READ */ 49,
74 /* SMB2_WRITE */ 49,
75 /* SMB2_LOCK */ 48,
76 /* SMB2_IOCTL */ 57,
77 /* SMB2_CANCEL */ 4,
78 /* SMB2_ECHO */ 4,
79 /* SMB2_QUERY_DIRECTORY */ 33,
80 /* SMB2_CHANGE_NOTIFY */ 32,
81 /* SMB2_QUERY_INFO */ 41,
82 /* SMB2_SET_INFO */ 33,
83 /* SMB2_OPLOCK_BREAK */ 24 /* BB this is 36 for LEASE_BREAK variant */
84 };
85
smb3_encryption_required(const struct cifs_tcon * tcon)86 int smb3_encryption_required(const struct cifs_tcon *tcon)
87 {
88 if (!tcon)
89 return 0;
90 if ((tcon->ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) ||
91 (tcon->share_flags & SHI1005_FLAGS_ENCRYPT_DATA))
92 return 1;
93 if (tcon->seal &&
94 (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION))
95 return 1;
96 return 0;
97 }
98
99 static void
smb2_hdr_assemble(struct smb2_sync_hdr * shdr,__le16 smb2_cmd,const struct cifs_tcon * tcon)100 smb2_hdr_assemble(struct smb2_sync_hdr *shdr, __le16 smb2_cmd,
101 const struct cifs_tcon *tcon)
102 {
103 shdr->ProtocolId = SMB2_PROTO_NUMBER;
104 shdr->StructureSize = cpu_to_le16(64);
105 shdr->Command = smb2_cmd;
106 if (tcon && tcon->ses && tcon->ses->server) {
107 struct TCP_Server_Info *server = tcon->ses->server;
108
109 spin_lock(&server->req_lock);
110 /* Request up to 10 credits but don't go over the limit. */
111 if (server->credits >= server->max_credits)
112 shdr->CreditRequest = cpu_to_le16(0);
113 else
114 shdr->CreditRequest = cpu_to_le16(
115 min_t(int, server->max_credits -
116 server->credits, 10));
117 spin_unlock(&server->req_lock);
118 } else {
119 shdr->CreditRequest = cpu_to_le16(2);
120 }
121 shdr->ProcessId = cpu_to_le32((__u16)current->tgid);
122
123 if (!tcon)
124 goto out;
125
126 /* GLOBAL_CAP_LARGE_MTU will only be set if dialect > SMB2.02 */
127 /* See sections 2.2.4 and 3.2.4.1.5 of MS-SMB2 */
128 if ((tcon->ses) && (tcon->ses->server) &&
129 (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_LARGE_MTU))
130 shdr->CreditCharge = cpu_to_le16(1);
131 /* else CreditCharge MBZ */
132
133 shdr->TreeId = tcon->tid;
134 /* Uid is not converted */
135 if (tcon->ses)
136 shdr->SessionId = tcon->ses->Suid;
137
138 /*
139 * If we would set SMB2_FLAGS_DFS_OPERATIONS on open we also would have
140 * to pass the path on the Open SMB prefixed by \\server\share.
141 * Not sure when we would need to do the augmented path (if ever) and
142 * setting this flag breaks the SMB2 open operation since it is
143 * illegal to send an empty path name (without \\server\share prefix)
144 * when the DFS flag is set in the SMB open header. We could
145 * consider setting the flag on all operations other than open
146 * but it is safer to net set it for now.
147 */
148 /* if (tcon->share_flags & SHI1005_FLAGS_DFS)
149 shdr->Flags |= SMB2_FLAGS_DFS_OPERATIONS; */
150
151 if (tcon->ses && tcon->ses->server && tcon->ses->server->sign &&
152 !smb3_encryption_required(tcon))
153 shdr->Flags |= SMB2_FLAGS_SIGNED;
154 out:
155 return;
156 }
157
158 #ifdef CONFIG_CIFS_DFS_UPCALL
__smb2_reconnect(const struct nls_table * nlsc,struct cifs_tcon * tcon)159 static int __smb2_reconnect(const struct nls_table *nlsc,
160 struct cifs_tcon *tcon)
161 {
162 int rc;
163 struct dfs_cache_tgt_list tl;
164 struct dfs_cache_tgt_iterator *it = NULL;
165 char *tree;
166 const char *tcp_host;
167 size_t tcp_host_len;
168 const char *dfs_host;
169 size_t dfs_host_len;
170
171 tree = kzalloc(MAX_TREE_SIZE, GFP_KERNEL);
172 if (!tree)
173 return -ENOMEM;
174
175 if (tcon->ipc) {
176 scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$",
177 tcon->ses->server->hostname);
178 rc = SMB2_tcon(0, tcon->ses, tree, tcon, nlsc);
179 goto out;
180 }
181
182 if (!tcon->dfs_path) {
183 rc = SMB2_tcon(0, tcon->ses, tcon->treeName, tcon, nlsc);
184 goto out;
185 }
186
187 rc = dfs_cache_noreq_find(tcon->dfs_path + 1, NULL, &tl);
188 if (rc)
189 goto out;
190
191 extract_unc_hostname(tcon->ses->server->hostname, &tcp_host,
192 &tcp_host_len);
193
194 for (it = dfs_cache_get_tgt_iterator(&tl); it;
195 it = dfs_cache_get_next_tgt(&tl, it)) {
196 const char *tgt = dfs_cache_get_tgt_name(it);
197
198 extract_unc_hostname(tgt, &dfs_host, &dfs_host_len);
199
200 if (dfs_host_len != tcp_host_len
201 || strncasecmp(dfs_host, tcp_host, dfs_host_len) != 0) {
202 cifs_dbg(FYI, "%s: skipping %.*s, doesn't match %.*s",
203 __func__,
204 (int)dfs_host_len, dfs_host,
205 (int)tcp_host_len, tcp_host);
206 continue;
207 }
208
209 scnprintf(tree, MAX_TREE_SIZE, "\\%s", tgt);
210
211 rc = SMB2_tcon(0, tcon->ses, tree, tcon, nlsc);
212 if (!rc)
213 break;
214 if (rc == -EREMOTE)
215 break;
216 }
217
218 if (!rc) {
219 if (it)
220 rc = dfs_cache_noreq_update_tgthint(tcon->dfs_path + 1,
221 it);
222 else
223 rc = -ENOENT;
224 }
225 dfs_cache_free_tgts(&tl);
226 out:
227 kfree(tree);
228 return rc;
229 }
230 #else
__smb2_reconnect(const struct nls_table * nlsc,struct cifs_tcon * tcon)231 static inline int __smb2_reconnect(const struct nls_table *nlsc,
232 struct cifs_tcon *tcon)
233 {
234 return SMB2_tcon(0, tcon->ses, tcon->treeName, tcon, nlsc);
235 }
236 #endif
237
238 static int
smb2_reconnect(__le16 smb2_command,struct cifs_tcon * tcon)239 smb2_reconnect(__le16 smb2_command, struct cifs_tcon *tcon)
240 {
241 int rc;
242 struct nls_table *nls_codepage;
243 struct cifs_ses *ses;
244 struct TCP_Server_Info *server;
245 int retries;
246
247 /*
248 * SMB2s NegProt, SessSetup, Logoff do not have tcon yet so
249 * check for tcp and smb session status done differently
250 * for those three - in the calling routine.
251 */
252 if (tcon == NULL)
253 return 0;
254
255 if (smb2_command == SMB2_TREE_CONNECT || smb2_command == SMB2_IOCTL)
256 return 0;
257
258 if (tcon->tidStatus == CifsExiting) {
259 /*
260 * only tree disconnect, open, and write,
261 * (and ulogoff which does not have tcon)
262 * are allowed as we start force umount.
263 */
264 if ((smb2_command != SMB2_WRITE) &&
265 (smb2_command != SMB2_CREATE) &&
266 (smb2_command != SMB2_TREE_DISCONNECT)) {
267 cifs_dbg(FYI, "can not send cmd %d while umounting\n",
268 smb2_command);
269 return -ENODEV;
270 }
271 }
272 if ((!tcon->ses) || (tcon->ses->status == CifsExiting) ||
273 (!tcon->ses->server))
274 return -EIO;
275
276 ses = tcon->ses;
277 server = ses->server;
278
279 retries = server->nr_targets;
280
281 /*
282 * Give demultiplex thread up to 10 seconds to each target available for
283 * reconnect -- should be greater than cifs socket timeout which is 7
284 * seconds.
285 */
286 while (server->tcpStatus == CifsNeedReconnect) {
287 /*
288 * Return to caller for TREE_DISCONNECT and LOGOFF and CLOSE
289 * here since they are implicitly done when session drops.
290 */
291 switch (smb2_command) {
292 /*
293 * BB Should we keep oplock break and add flush to exceptions?
294 */
295 case SMB2_TREE_DISCONNECT:
296 case SMB2_CANCEL:
297 case SMB2_CLOSE:
298 case SMB2_OPLOCK_BREAK:
299 return -EAGAIN;
300 }
301
302 rc = wait_event_interruptible_timeout(server->response_q,
303 (server->tcpStatus != CifsNeedReconnect),
304 10 * HZ);
305 if (rc < 0) {
306 cifs_dbg(FYI, "%s: aborting reconnect due to a received"
307 " signal by the process\n", __func__);
308 return -ERESTARTSYS;
309 }
310
311 /* are we still trying to reconnect? */
312 if (server->tcpStatus != CifsNeedReconnect)
313 break;
314
315 if (--retries)
316 continue;
317
318 /*
319 * on "soft" mounts we wait once. Hard mounts keep
320 * retrying until process is killed or server comes
321 * back on-line
322 */
323 if (!tcon->retry) {
324 cifs_dbg(FYI, "gave up waiting on reconnect in smb_init\n");
325 return -EHOSTDOWN;
326 }
327 retries = server->nr_targets;
328 }
329
330 if (!tcon->ses->need_reconnect && !tcon->need_reconnect)
331 return 0;
332
333 nls_codepage = load_nls_default();
334
335 /*
336 * need to prevent multiple threads trying to simultaneously reconnect
337 * the same SMB session
338 */
339 mutex_lock(&tcon->ses->session_mutex);
340
341 /*
342 * Recheck after acquire mutex. If another thread is negotiating
343 * and the server never sends an answer the socket will be closed
344 * and tcpStatus set to reconnect.
345 */
346 if (server->tcpStatus == CifsNeedReconnect) {
347 rc = -EHOSTDOWN;
348 mutex_unlock(&tcon->ses->session_mutex);
349 goto out;
350 }
351
352 rc = cifs_negotiate_protocol(0, tcon->ses);
353 if (!rc && tcon->ses->need_reconnect)
354 rc = cifs_setup_session(0, tcon->ses, nls_codepage);
355
356 if (rc || !tcon->need_reconnect) {
357 mutex_unlock(&tcon->ses->session_mutex);
358 goto out;
359 }
360
361 cifs_mark_open_files_invalid(tcon);
362 if (tcon->use_persistent)
363 tcon->need_reopen_files = true;
364
365 rc = __smb2_reconnect(nls_codepage, tcon);
366 mutex_unlock(&tcon->ses->session_mutex);
367
368 cifs_dbg(FYI, "reconnect tcon rc = %d\n", rc);
369 if (rc) {
370 /* If sess reconnected but tcon didn't, something strange ... */
371 printk_once(KERN_WARNING "reconnect tcon failed rc = %d\n", rc);
372 goto out;
373 }
374
375 if (smb2_command != SMB2_INTERNAL_CMD)
376 queue_delayed_work(cifsiod_wq, &server->reconnect, 0);
377
378 atomic_inc(&tconInfoReconnectCount);
379 out:
380 /*
381 * Check if handle based operation so we know whether we can continue
382 * or not without returning to caller to reset file handle.
383 */
384 /*
385 * BB Is flush done by server on drop of tcp session? Should we special
386 * case it and skip above?
387 */
388 switch (smb2_command) {
389 case SMB2_FLUSH:
390 case SMB2_READ:
391 case SMB2_WRITE:
392 case SMB2_LOCK:
393 case SMB2_IOCTL:
394 case SMB2_QUERY_DIRECTORY:
395 case SMB2_CHANGE_NOTIFY:
396 case SMB2_QUERY_INFO:
397 case SMB2_SET_INFO:
398 rc = -EAGAIN;
399 }
400 unload_nls(nls_codepage);
401 return rc;
402 }
403
404 static void
fill_small_buf(__le16 smb2_command,struct cifs_tcon * tcon,void * buf,unsigned int * total_len)405 fill_small_buf(__le16 smb2_command, struct cifs_tcon *tcon, void *buf,
406 unsigned int *total_len)
407 {
408 struct smb2_sync_pdu *spdu = (struct smb2_sync_pdu *)buf;
409 /* lookup word count ie StructureSize from table */
410 __u16 parmsize = smb2_req_struct_sizes[le16_to_cpu(smb2_command)];
411
412 /*
413 * smaller than SMALL_BUFFER_SIZE but bigger than fixed area of
414 * largest operations (Create)
415 */
416 memset(buf, 0, 256);
417
418 smb2_hdr_assemble(&spdu->sync_hdr, smb2_command, tcon);
419 spdu->StructureSize2 = cpu_to_le16(parmsize);
420
421 *total_len = parmsize + sizeof(struct smb2_sync_hdr);
422 }
423
424 /*
425 * Allocate and return pointer to an SMB request hdr, and set basic
426 * SMB information in the SMB header. If the return code is zero, this
427 * function must have filled in request_buf pointer.
428 */
429 static int
smb2_plain_req_init(__le16 smb2_command,struct cifs_tcon * tcon,void ** request_buf,unsigned int * total_len)430 smb2_plain_req_init(__le16 smb2_command, struct cifs_tcon *tcon,
431 void **request_buf, unsigned int *total_len)
432 {
433 int rc;
434
435 rc = smb2_reconnect(smb2_command, tcon);
436 if (rc)
437 return rc;
438
439 /* BB eventually switch this to SMB2 specific small buf size */
440 if (smb2_command == SMB2_SET_INFO)
441 *request_buf = cifs_buf_get();
442 else
443 *request_buf = cifs_small_buf_get();
444 if (*request_buf == NULL) {
445 /* BB should we add a retry in here if not a writepage? */
446 return -ENOMEM;
447 }
448
449 fill_small_buf(smb2_command, tcon,
450 (struct smb2_sync_hdr *)(*request_buf),
451 total_len);
452
453 if (tcon != NULL) {
454 uint16_t com_code = le16_to_cpu(smb2_command);
455 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_sent[com_code]);
456 cifs_stats_inc(&tcon->num_smbs_sent);
457 }
458
459 return rc;
460 }
461
462 /* For explanation of negotiate contexts see MS-SMB2 section 2.2.3.1 */
463
464 static void
build_preauth_ctxt(struct smb2_preauth_neg_context * pneg_ctxt)465 build_preauth_ctxt(struct smb2_preauth_neg_context *pneg_ctxt)
466 {
467 pneg_ctxt->ContextType = SMB2_PREAUTH_INTEGRITY_CAPABILITIES;
468 pneg_ctxt->DataLength = cpu_to_le16(38);
469 pneg_ctxt->HashAlgorithmCount = cpu_to_le16(1);
470 pneg_ctxt->SaltLength = cpu_to_le16(SMB311_SALT_SIZE);
471 get_random_bytes(pneg_ctxt->Salt, SMB311_SALT_SIZE);
472 pneg_ctxt->HashAlgorithms = SMB2_PREAUTH_INTEGRITY_SHA512;
473 }
474
475 static void
build_compression_ctxt(struct smb2_compression_capabilities_context * pneg_ctxt)476 build_compression_ctxt(struct smb2_compression_capabilities_context *pneg_ctxt)
477 {
478 pneg_ctxt->ContextType = SMB2_COMPRESSION_CAPABILITIES;
479 pneg_ctxt->DataLength =
480 cpu_to_le16(sizeof(struct smb2_compression_capabilities_context)
481 - sizeof(struct smb2_neg_context));
482 pneg_ctxt->CompressionAlgorithmCount = cpu_to_le16(3);
483 pneg_ctxt->CompressionAlgorithms[0] = SMB3_COMPRESS_LZ77;
484 pneg_ctxt->CompressionAlgorithms[1] = SMB3_COMPRESS_LZ77_HUFF;
485 pneg_ctxt->CompressionAlgorithms[2] = SMB3_COMPRESS_LZNT1;
486 }
487
488 static void
build_encrypt_ctxt(struct smb2_encryption_neg_context * pneg_ctxt)489 build_encrypt_ctxt(struct smb2_encryption_neg_context *pneg_ctxt)
490 {
491 pneg_ctxt->ContextType = SMB2_ENCRYPTION_CAPABILITIES;
492 pneg_ctxt->DataLength = cpu_to_le16(6); /* Cipher Count + two ciphers */
493 pneg_ctxt->CipherCount = cpu_to_le16(2);
494 pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES128_GCM;
495 pneg_ctxt->Ciphers[1] = SMB2_ENCRYPTION_AES128_CCM;
496 }
497
498 static unsigned int
build_netname_ctxt(struct smb2_netname_neg_context * pneg_ctxt,char * hostname)499 build_netname_ctxt(struct smb2_netname_neg_context *pneg_ctxt, char *hostname)
500 {
501 struct nls_table *cp = load_nls_default();
502
503 pneg_ctxt->ContextType = SMB2_NETNAME_NEGOTIATE_CONTEXT_ID;
504
505 /* copy up to max of first 100 bytes of server name to NetName field */
506 pneg_ctxt->DataLength = cpu_to_le16(2 * cifs_strtoUTF16(pneg_ctxt->NetName, hostname, 100, cp));
507 /* context size is DataLength + minimal smb2_neg_context */
508 return DIV_ROUND_UP(le16_to_cpu(pneg_ctxt->DataLength) +
509 sizeof(struct smb2_neg_context), 8) * 8;
510 }
511
512 static void
build_posix_ctxt(struct smb2_posix_neg_context * pneg_ctxt)513 build_posix_ctxt(struct smb2_posix_neg_context *pneg_ctxt)
514 {
515 pneg_ctxt->ContextType = SMB2_POSIX_EXTENSIONS_AVAILABLE;
516 pneg_ctxt->DataLength = cpu_to_le16(POSIX_CTXT_DATA_LEN);
517 /* SMB2_CREATE_TAG_POSIX is "0x93AD25509CB411E7B42383DE968BCD7C" */
518 pneg_ctxt->Name[0] = 0x93;
519 pneg_ctxt->Name[1] = 0xAD;
520 pneg_ctxt->Name[2] = 0x25;
521 pneg_ctxt->Name[3] = 0x50;
522 pneg_ctxt->Name[4] = 0x9C;
523 pneg_ctxt->Name[5] = 0xB4;
524 pneg_ctxt->Name[6] = 0x11;
525 pneg_ctxt->Name[7] = 0xE7;
526 pneg_ctxt->Name[8] = 0xB4;
527 pneg_ctxt->Name[9] = 0x23;
528 pneg_ctxt->Name[10] = 0x83;
529 pneg_ctxt->Name[11] = 0xDE;
530 pneg_ctxt->Name[12] = 0x96;
531 pneg_ctxt->Name[13] = 0x8B;
532 pneg_ctxt->Name[14] = 0xCD;
533 pneg_ctxt->Name[15] = 0x7C;
534 }
535
536 static void
assemble_neg_contexts(struct smb2_negotiate_req * req,struct TCP_Server_Info * server,unsigned int * total_len)537 assemble_neg_contexts(struct smb2_negotiate_req *req,
538 struct TCP_Server_Info *server, unsigned int *total_len)
539 {
540 char *pneg_ctxt = (char *)req;
541 unsigned int ctxt_len;
542
543 if (*total_len > 200) {
544 /* In case length corrupted don't want to overrun smb buffer */
545 cifs_server_dbg(VFS, "Bad frame length assembling neg contexts\n");
546 return;
547 }
548
549 /*
550 * round up total_len of fixed part of SMB3 negotiate request to 8
551 * byte boundary before adding negotiate contexts
552 */
553 *total_len = roundup(*total_len, 8);
554
555 pneg_ctxt = (*total_len) + (char *)req;
556 req->NegotiateContextOffset = cpu_to_le32(*total_len);
557
558 build_preauth_ctxt((struct smb2_preauth_neg_context *)pneg_ctxt);
559 ctxt_len = DIV_ROUND_UP(sizeof(struct smb2_preauth_neg_context), 8) * 8;
560 *total_len += ctxt_len;
561 pneg_ctxt += ctxt_len;
562
563 build_encrypt_ctxt((struct smb2_encryption_neg_context *)pneg_ctxt);
564 ctxt_len = DIV_ROUND_UP(sizeof(struct smb2_encryption_neg_context), 8) * 8;
565 *total_len += ctxt_len;
566 pneg_ctxt += ctxt_len;
567
568 if (server->compress_algorithm) {
569 build_compression_ctxt((struct smb2_compression_capabilities_context *)
570 pneg_ctxt);
571 ctxt_len = DIV_ROUND_UP(
572 sizeof(struct smb2_compression_capabilities_context),
573 8) * 8;
574 *total_len += ctxt_len;
575 pneg_ctxt += ctxt_len;
576 req->NegotiateContextCount = cpu_to_le16(5);
577 } else
578 req->NegotiateContextCount = cpu_to_le16(4);
579
580 ctxt_len = build_netname_ctxt((struct smb2_netname_neg_context *)pneg_ctxt,
581 server->hostname);
582 *total_len += ctxt_len;
583 pneg_ctxt += ctxt_len;
584
585 build_posix_ctxt((struct smb2_posix_neg_context *)pneg_ctxt);
586 *total_len += sizeof(struct smb2_posix_neg_context);
587 }
588
decode_preauth_context(struct smb2_preauth_neg_context * ctxt)589 static void decode_preauth_context(struct smb2_preauth_neg_context *ctxt)
590 {
591 unsigned int len = le16_to_cpu(ctxt->DataLength);
592
593 /* If invalid preauth context warn but use what we requested, SHA-512 */
594 if (len < MIN_PREAUTH_CTXT_DATA_LEN) {
595 printk_once(KERN_WARNING "server sent bad preauth context\n");
596 return;
597 }
598 if (le16_to_cpu(ctxt->HashAlgorithmCount) != 1)
599 printk_once(KERN_WARNING "illegal SMB3 hash algorithm count\n");
600 if (ctxt->HashAlgorithms != SMB2_PREAUTH_INTEGRITY_SHA512)
601 printk_once(KERN_WARNING "unknown SMB3 hash algorithm\n");
602 }
603
decode_compress_ctx(struct TCP_Server_Info * server,struct smb2_compression_capabilities_context * ctxt)604 static void decode_compress_ctx(struct TCP_Server_Info *server,
605 struct smb2_compression_capabilities_context *ctxt)
606 {
607 unsigned int len = le16_to_cpu(ctxt->DataLength);
608
609 /* sizeof compress context is a one element compression capbility struct */
610 if (len < 10) {
611 printk_once(KERN_WARNING "server sent bad compression cntxt\n");
612 return;
613 }
614 if (le16_to_cpu(ctxt->CompressionAlgorithmCount) != 1) {
615 printk_once(KERN_WARNING "illegal SMB3 compress algorithm count\n");
616 return;
617 }
618 if (le16_to_cpu(ctxt->CompressionAlgorithms[0]) > 3) {
619 printk_once(KERN_WARNING "unknown compression algorithm\n");
620 return;
621 }
622 server->compress_algorithm = ctxt->CompressionAlgorithms[0];
623 }
624
decode_encrypt_ctx(struct TCP_Server_Info * server,struct smb2_encryption_neg_context * ctxt)625 static int decode_encrypt_ctx(struct TCP_Server_Info *server,
626 struct smb2_encryption_neg_context *ctxt)
627 {
628 unsigned int len = le16_to_cpu(ctxt->DataLength);
629
630 cifs_dbg(FYI, "decode SMB3.11 encryption neg context of len %d\n", len);
631 if (len < MIN_ENCRYPT_CTXT_DATA_LEN) {
632 printk_once(KERN_WARNING "server sent bad crypto ctxt len\n");
633 return -EINVAL;
634 }
635
636 if (le16_to_cpu(ctxt->CipherCount) != 1) {
637 printk_once(KERN_WARNING "illegal SMB3.11 cipher count\n");
638 return -EINVAL;
639 }
640 cifs_dbg(FYI, "SMB311 cipher type:%d\n", le16_to_cpu(ctxt->Ciphers[0]));
641 if ((ctxt->Ciphers[0] != SMB2_ENCRYPTION_AES128_CCM) &&
642 (ctxt->Ciphers[0] != SMB2_ENCRYPTION_AES128_GCM)) {
643 printk_once(KERN_WARNING "invalid SMB3.11 cipher returned\n");
644 return -EINVAL;
645 }
646 server->cipher_type = ctxt->Ciphers[0];
647 server->capabilities |= SMB2_GLOBAL_CAP_ENCRYPTION;
648 return 0;
649 }
650
smb311_decode_neg_context(struct smb2_negotiate_rsp * rsp,struct TCP_Server_Info * server,unsigned int len_of_smb)651 static int smb311_decode_neg_context(struct smb2_negotiate_rsp *rsp,
652 struct TCP_Server_Info *server,
653 unsigned int len_of_smb)
654 {
655 struct smb2_neg_context *pctx;
656 unsigned int offset = le32_to_cpu(rsp->NegotiateContextOffset);
657 unsigned int ctxt_cnt = le16_to_cpu(rsp->NegotiateContextCount);
658 unsigned int len_of_ctxts, i;
659 int rc = 0;
660
661 cifs_dbg(FYI, "decoding %d negotiate contexts\n", ctxt_cnt);
662 if (len_of_smb <= offset) {
663 cifs_server_dbg(VFS, "Invalid response: negotiate context offset\n");
664 return -EINVAL;
665 }
666
667 len_of_ctxts = len_of_smb - offset;
668
669 for (i = 0; i < ctxt_cnt; i++) {
670 int clen;
671 /* check that offset is not beyond end of SMB */
672 if (len_of_ctxts == 0)
673 break;
674
675 if (len_of_ctxts < sizeof(struct smb2_neg_context))
676 break;
677
678 pctx = (struct smb2_neg_context *)(offset + (char *)rsp);
679 clen = le16_to_cpu(pctx->DataLength);
680 if (clen > len_of_ctxts)
681 break;
682
683 if (pctx->ContextType == SMB2_PREAUTH_INTEGRITY_CAPABILITIES)
684 decode_preauth_context(
685 (struct smb2_preauth_neg_context *)pctx);
686 else if (pctx->ContextType == SMB2_ENCRYPTION_CAPABILITIES)
687 rc = decode_encrypt_ctx(server,
688 (struct smb2_encryption_neg_context *)pctx);
689 else if (pctx->ContextType == SMB2_COMPRESSION_CAPABILITIES)
690 decode_compress_ctx(server,
691 (struct smb2_compression_capabilities_context *)pctx);
692 else if (pctx->ContextType == SMB2_POSIX_EXTENSIONS_AVAILABLE)
693 server->posix_ext_supported = true;
694 else
695 cifs_server_dbg(VFS, "unknown negcontext of type %d ignored\n",
696 le16_to_cpu(pctx->ContextType));
697
698 if (rc)
699 break;
700 /* offsets must be 8 byte aligned */
701 clen = (clen + 7) & ~0x7;
702 offset += clen + sizeof(struct smb2_neg_context);
703 len_of_ctxts -= clen;
704 }
705 return rc;
706 }
707
708 static struct create_posix *
create_posix_buf(umode_t mode)709 create_posix_buf(umode_t mode)
710 {
711 struct create_posix *buf;
712
713 buf = kzalloc(sizeof(struct create_posix),
714 GFP_KERNEL);
715 if (!buf)
716 return NULL;
717
718 buf->ccontext.DataOffset =
719 cpu_to_le16(offsetof(struct create_posix, Mode));
720 buf->ccontext.DataLength = cpu_to_le32(4);
721 buf->ccontext.NameOffset =
722 cpu_to_le16(offsetof(struct create_posix, Name));
723 buf->ccontext.NameLength = cpu_to_le16(16);
724
725 /* SMB2_CREATE_TAG_POSIX is "0x93AD25509CB411E7B42383DE968BCD7C" */
726 buf->Name[0] = 0x93;
727 buf->Name[1] = 0xAD;
728 buf->Name[2] = 0x25;
729 buf->Name[3] = 0x50;
730 buf->Name[4] = 0x9C;
731 buf->Name[5] = 0xB4;
732 buf->Name[6] = 0x11;
733 buf->Name[7] = 0xE7;
734 buf->Name[8] = 0xB4;
735 buf->Name[9] = 0x23;
736 buf->Name[10] = 0x83;
737 buf->Name[11] = 0xDE;
738 buf->Name[12] = 0x96;
739 buf->Name[13] = 0x8B;
740 buf->Name[14] = 0xCD;
741 buf->Name[15] = 0x7C;
742 buf->Mode = cpu_to_le32(mode);
743 cifs_dbg(FYI, "mode on posix create 0%o", mode);
744 return buf;
745 }
746
747 static int
add_posix_context(struct kvec * iov,unsigned int * num_iovec,umode_t mode)748 add_posix_context(struct kvec *iov, unsigned int *num_iovec, umode_t mode)
749 {
750 struct smb2_create_req *req = iov[0].iov_base;
751 unsigned int num = *num_iovec;
752
753 iov[num].iov_base = create_posix_buf(mode);
754 if (mode == ACL_NO_MODE)
755 cifs_dbg(FYI, "illegal mode\n");
756 if (iov[num].iov_base == NULL)
757 return -ENOMEM;
758 iov[num].iov_len = sizeof(struct create_posix);
759 if (!req->CreateContextsOffset)
760 req->CreateContextsOffset = cpu_to_le32(
761 sizeof(struct smb2_create_req) +
762 iov[num - 1].iov_len);
763 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_posix));
764 *num_iovec = num + 1;
765 return 0;
766 }
767
768
769 /*
770 *
771 * SMB2 Worker functions follow:
772 *
773 * The general structure of the worker functions is:
774 * 1) Call smb2_init (assembles SMB2 header)
775 * 2) Initialize SMB2 command specific fields in fixed length area of SMB
776 * 3) Call smb_sendrcv2 (sends request on socket and waits for response)
777 * 4) Decode SMB2 command specific fields in the fixed length area
778 * 5) Decode variable length data area (if any for this SMB2 command type)
779 * 6) Call free smb buffer
780 * 7) return
781 *
782 */
783
784 int
SMB2_negotiate(const unsigned int xid,struct cifs_ses * ses)785 SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses)
786 {
787 struct smb_rqst rqst;
788 struct smb2_negotiate_req *req;
789 struct smb2_negotiate_rsp *rsp;
790 struct kvec iov[1];
791 struct kvec rsp_iov;
792 int rc = 0;
793 int resp_buftype;
794 struct TCP_Server_Info *server = ses->server;
795 int blob_offset, blob_length;
796 char *security_blob;
797 int flags = CIFS_NEG_OP;
798 unsigned int total_len;
799
800 cifs_dbg(FYI, "Negotiate protocol\n");
801
802 if (!server) {
803 WARN(1, "%s: server is NULL!\n", __func__);
804 return -EIO;
805 }
806
807 rc = smb2_plain_req_init(SMB2_NEGOTIATE, NULL, (void **) &req, &total_len);
808 if (rc)
809 return rc;
810
811 req->sync_hdr.SessionId = 0;
812
813 memset(server->preauth_sha_hash, 0, SMB2_PREAUTH_HASH_SIZE);
814 memset(ses->preauth_sha_hash, 0, SMB2_PREAUTH_HASH_SIZE);
815
816 if (strcmp(ses->server->vals->version_string,
817 SMB3ANY_VERSION_STRING) == 0) {
818 req->Dialects[0] = cpu_to_le16(SMB30_PROT_ID);
819 req->Dialects[1] = cpu_to_le16(SMB302_PROT_ID);
820 req->DialectCount = cpu_to_le16(2);
821 total_len += 4;
822 } else if (strcmp(server->vals->version_string,
823 SMBDEFAULT_VERSION_STRING) == 0) {
824 req->Dialects[0] = cpu_to_le16(SMB21_PROT_ID);
825 req->Dialects[1] = cpu_to_le16(SMB30_PROT_ID);
826 req->Dialects[2] = cpu_to_le16(SMB302_PROT_ID);
827 req->Dialects[3] = cpu_to_le16(SMB311_PROT_ID);
828 req->DialectCount = cpu_to_le16(4);
829 total_len += 8;
830 } else {
831 /* otherwise send specific dialect */
832 req->Dialects[0] = cpu_to_le16(ses->server->vals->protocol_id);
833 req->DialectCount = cpu_to_le16(1);
834 total_len += 2;
835 }
836
837 /* only one of SMB2 signing flags may be set in SMB2 request */
838 if (ses->sign)
839 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
840 else if (global_secflags & CIFSSEC_MAY_SIGN)
841 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
842 else
843 req->SecurityMode = 0;
844
845 req->Capabilities = cpu_to_le32(server->vals->req_capabilities);
846
847 /* ClientGUID must be zero for SMB2.02 dialect */
848 if (server->vals->protocol_id == SMB20_PROT_ID)
849 memset(req->ClientGUID, 0, SMB2_CLIENT_GUID_SIZE);
850 else {
851 memcpy(req->ClientGUID, server->client_guid,
852 SMB2_CLIENT_GUID_SIZE);
853 if ((server->vals->protocol_id == SMB311_PROT_ID) ||
854 (strcmp(server->vals->version_string,
855 SMBDEFAULT_VERSION_STRING) == 0))
856 assemble_neg_contexts(req, server, &total_len);
857 }
858 iov[0].iov_base = (char *)req;
859 iov[0].iov_len = total_len;
860
861 memset(&rqst, 0, sizeof(struct smb_rqst));
862 rqst.rq_iov = iov;
863 rqst.rq_nvec = 1;
864
865 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
866 cifs_small_buf_release(req);
867 rsp = (struct smb2_negotiate_rsp *)rsp_iov.iov_base;
868 /*
869 * No tcon so can't do
870 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
871 */
872 if (rc == -EOPNOTSUPP) {
873 cifs_server_dbg(VFS, "Dialect not supported by server. Consider "
874 "specifying vers=1.0 or vers=2.0 on mount for accessing"
875 " older servers\n");
876 goto neg_exit;
877 } else if (rc != 0)
878 goto neg_exit;
879
880 if (strcmp(server->vals->version_string,
881 SMB3ANY_VERSION_STRING) == 0) {
882 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID)) {
883 cifs_server_dbg(VFS,
884 "SMB2 dialect returned but not requested\n");
885 return -EIO;
886 } else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID)) {
887 cifs_server_dbg(VFS,
888 "SMB2.1 dialect returned but not requested\n");
889 return -EIO;
890 }
891 } else if (strcmp(server->vals->version_string,
892 SMBDEFAULT_VERSION_STRING) == 0) {
893 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID)) {
894 cifs_server_dbg(VFS,
895 "SMB2 dialect returned but not requested\n");
896 return -EIO;
897 } else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID)) {
898 /* ops set to 3.0 by default for default so update */
899 server->ops = &smb21_operations;
900 server->vals = &smb21_values;
901 } else if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID)) {
902 server->ops = &smb311_operations;
903 server->vals = &smb311_values;
904 }
905 } else if (le16_to_cpu(rsp->DialectRevision) !=
906 server->vals->protocol_id) {
907 /* if requested single dialect ensure returned dialect matched */
908 cifs_server_dbg(VFS, "Illegal 0x%x dialect returned: not requested\n",
909 le16_to_cpu(rsp->DialectRevision));
910 return -EIO;
911 }
912
913 cifs_dbg(FYI, "mode 0x%x\n", rsp->SecurityMode);
914
915 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID))
916 cifs_dbg(FYI, "negotiated smb2.0 dialect\n");
917 else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID))
918 cifs_dbg(FYI, "negotiated smb2.1 dialect\n");
919 else if (rsp->DialectRevision == cpu_to_le16(SMB30_PROT_ID))
920 cifs_dbg(FYI, "negotiated smb3.0 dialect\n");
921 else if (rsp->DialectRevision == cpu_to_le16(SMB302_PROT_ID))
922 cifs_dbg(FYI, "negotiated smb3.02 dialect\n");
923 else if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID))
924 cifs_dbg(FYI, "negotiated smb3.1.1 dialect\n");
925 else {
926 cifs_server_dbg(VFS, "Illegal dialect returned by server 0x%x\n",
927 le16_to_cpu(rsp->DialectRevision));
928 rc = -EIO;
929 goto neg_exit;
930 }
931 server->dialect = le16_to_cpu(rsp->DialectRevision);
932
933 /*
934 * Keep a copy of the hash after negprot. This hash will be
935 * the starting hash value for all sessions made from this
936 * server.
937 */
938 memcpy(server->preauth_sha_hash, ses->preauth_sha_hash,
939 SMB2_PREAUTH_HASH_SIZE);
940
941 /* SMB2 only has an extended negflavor */
942 server->negflavor = CIFS_NEGFLAVOR_EXTENDED;
943 /* set it to the maximum buffer size value we can send with 1 credit */
944 server->maxBuf = min_t(unsigned int, le32_to_cpu(rsp->MaxTransactSize),
945 SMB2_MAX_BUFFER_SIZE);
946 server->max_read = le32_to_cpu(rsp->MaxReadSize);
947 server->max_write = le32_to_cpu(rsp->MaxWriteSize);
948 server->sec_mode = le16_to_cpu(rsp->SecurityMode);
949 if ((server->sec_mode & SMB2_SEC_MODE_FLAGS_ALL) != server->sec_mode)
950 cifs_dbg(FYI, "Server returned unexpected security mode 0x%x\n",
951 server->sec_mode);
952 server->capabilities = le32_to_cpu(rsp->Capabilities);
953 /* Internal types */
954 server->capabilities |= SMB2_NT_FIND | SMB2_LARGE_FILES;
955
956 security_blob = smb2_get_data_area_len(&blob_offset, &blob_length,
957 (struct smb2_sync_hdr *)rsp);
958 /*
959 * See MS-SMB2 section 2.2.4: if no blob, client picks default which
960 * for us will be
961 * ses->sectype = RawNTLMSSP;
962 * but for time being this is our only auth choice so doesn't matter.
963 * We just found a server which sets blob length to zero expecting raw.
964 */
965 if (blob_length == 0) {
966 cifs_dbg(FYI, "missing security blob on negprot\n");
967 server->sec_ntlmssp = true;
968 }
969
970 rc = cifs_enable_signing(server, ses->sign);
971 if (rc)
972 goto neg_exit;
973 if (blob_length) {
974 rc = decode_negTokenInit(security_blob, blob_length, server);
975 if (rc == 1)
976 rc = 0;
977 else if (rc == 0)
978 rc = -EIO;
979 }
980
981 if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID)) {
982 if (rsp->NegotiateContextCount)
983 rc = smb311_decode_neg_context(rsp, server,
984 rsp_iov.iov_len);
985 else
986 cifs_server_dbg(VFS, "Missing expected negotiate contexts\n");
987 }
988 neg_exit:
989 free_rsp_buf(resp_buftype, rsp);
990 return rc;
991 }
992
smb3_validate_negotiate(const unsigned int xid,struct cifs_tcon * tcon)993 int smb3_validate_negotiate(const unsigned int xid, struct cifs_tcon *tcon)
994 {
995 int rc;
996 struct validate_negotiate_info_req *pneg_inbuf;
997 struct validate_negotiate_info_rsp *pneg_rsp = NULL;
998 u32 rsplen;
999 u32 inbuflen; /* max of 4 dialects */
1000 struct TCP_Server_Info *server = tcon->ses->server;
1001
1002 cifs_dbg(FYI, "validate negotiate\n");
1003
1004 /* In SMB3.11 preauth integrity supersedes validate negotiate */
1005 if (server->dialect == SMB311_PROT_ID)
1006 return 0;
1007
1008 /*
1009 * validation ioctl must be signed, so no point sending this if we
1010 * can not sign it (ie are not known user). Even if signing is not
1011 * required (enabled but not negotiated), in those cases we selectively
1012 * sign just this, the first and only signed request on a connection.
1013 * Having validation of negotiate info helps reduce attack vectors.
1014 */
1015 if (tcon->ses->session_flags & SMB2_SESSION_FLAG_IS_GUEST)
1016 return 0; /* validation requires signing */
1017
1018 if (tcon->ses->user_name == NULL) {
1019 cifs_dbg(FYI, "Can't validate negotiate: null user mount\n");
1020 return 0; /* validation requires signing */
1021 }
1022
1023 if (tcon->ses->session_flags & SMB2_SESSION_FLAG_IS_NULL)
1024 cifs_tcon_dbg(VFS, "Unexpected null user (anonymous) auth flag sent by server\n");
1025
1026 pneg_inbuf = kmalloc(sizeof(*pneg_inbuf), GFP_NOFS);
1027 if (!pneg_inbuf)
1028 return -ENOMEM;
1029
1030 pneg_inbuf->Capabilities =
1031 cpu_to_le32(server->vals->req_capabilities);
1032 memcpy(pneg_inbuf->Guid, server->client_guid,
1033 SMB2_CLIENT_GUID_SIZE);
1034
1035 if (tcon->ses->sign)
1036 pneg_inbuf->SecurityMode =
1037 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
1038 else if (global_secflags & CIFSSEC_MAY_SIGN)
1039 pneg_inbuf->SecurityMode =
1040 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
1041 else
1042 pneg_inbuf->SecurityMode = 0;
1043
1044
1045 if (strcmp(server->vals->version_string,
1046 SMB3ANY_VERSION_STRING) == 0) {
1047 pneg_inbuf->Dialects[0] = cpu_to_le16(SMB30_PROT_ID);
1048 pneg_inbuf->Dialects[1] = cpu_to_le16(SMB302_PROT_ID);
1049 pneg_inbuf->DialectCount = cpu_to_le16(2);
1050 /* structure is big enough for 3 dialects, sending only 2 */
1051 inbuflen = sizeof(*pneg_inbuf) -
1052 (2 * sizeof(pneg_inbuf->Dialects[0]));
1053 } else if (strcmp(server->vals->version_string,
1054 SMBDEFAULT_VERSION_STRING) == 0) {
1055 pneg_inbuf->Dialects[0] = cpu_to_le16(SMB21_PROT_ID);
1056 pneg_inbuf->Dialects[1] = cpu_to_le16(SMB30_PROT_ID);
1057 pneg_inbuf->Dialects[2] = cpu_to_le16(SMB302_PROT_ID);
1058 pneg_inbuf->Dialects[3] = cpu_to_le16(SMB311_PROT_ID);
1059 pneg_inbuf->DialectCount = cpu_to_le16(4);
1060 /* structure is big enough for 3 dialects */
1061 inbuflen = sizeof(*pneg_inbuf);
1062 } else {
1063 /* otherwise specific dialect was requested */
1064 pneg_inbuf->Dialects[0] =
1065 cpu_to_le16(server->vals->protocol_id);
1066 pneg_inbuf->DialectCount = cpu_to_le16(1);
1067 /* structure is big enough for 3 dialects, sending only 1 */
1068 inbuflen = sizeof(*pneg_inbuf) -
1069 sizeof(pneg_inbuf->Dialects[0]) * 2;
1070 }
1071
1072 rc = SMB2_ioctl(xid, tcon, NO_FILE_ID, NO_FILE_ID,
1073 FSCTL_VALIDATE_NEGOTIATE_INFO, true /* is_fsctl */,
1074 (char *)pneg_inbuf, inbuflen, CIFSMaxBufSize,
1075 (char **)&pneg_rsp, &rsplen);
1076 if (rc == -EOPNOTSUPP) {
1077 /*
1078 * Old Windows versions or Netapp SMB server can return
1079 * not supported error. Client should accept it.
1080 */
1081 cifs_tcon_dbg(VFS, "Server does not support validate negotiate\n");
1082 rc = 0;
1083 goto out_free_inbuf;
1084 } else if (rc != 0) {
1085 cifs_tcon_dbg(VFS, "validate protocol negotiate failed: %d\n", rc);
1086 rc = -EIO;
1087 goto out_free_inbuf;
1088 }
1089
1090 rc = -EIO;
1091 if (rsplen != sizeof(*pneg_rsp)) {
1092 cifs_tcon_dbg(VFS, "invalid protocol negotiate response size: %d\n",
1093 rsplen);
1094
1095 /* relax check since Mac returns max bufsize allowed on ioctl */
1096 if (rsplen > CIFSMaxBufSize || rsplen < sizeof(*pneg_rsp))
1097 goto out_free_rsp;
1098 }
1099
1100 /* check validate negotiate info response matches what we got earlier */
1101 if (pneg_rsp->Dialect != cpu_to_le16(server->dialect))
1102 goto vneg_out;
1103
1104 if (pneg_rsp->SecurityMode != cpu_to_le16(server->sec_mode))
1105 goto vneg_out;
1106
1107 /* do not validate server guid because not saved at negprot time yet */
1108
1109 if ((le32_to_cpu(pneg_rsp->Capabilities) | SMB2_NT_FIND |
1110 SMB2_LARGE_FILES) != server->capabilities)
1111 goto vneg_out;
1112
1113 /* validate negotiate successful */
1114 rc = 0;
1115 cifs_dbg(FYI, "validate negotiate info successful\n");
1116 goto out_free_rsp;
1117
1118 vneg_out:
1119 cifs_tcon_dbg(VFS, "protocol revalidation - security settings mismatch\n");
1120 out_free_rsp:
1121 kfree(pneg_rsp);
1122 out_free_inbuf:
1123 kfree(pneg_inbuf);
1124 return rc;
1125 }
1126
1127 enum securityEnum
smb2_select_sectype(struct TCP_Server_Info * server,enum securityEnum requested)1128 smb2_select_sectype(struct TCP_Server_Info *server, enum securityEnum requested)
1129 {
1130 switch (requested) {
1131 case Kerberos:
1132 case RawNTLMSSP:
1133 return requested;
1134 case NTLMv2:
1135 return RawNTLMSSP;
1136 case Unspecified:
1137 if (server->sec_ntlmssp &&
1138 (global_secflags & CIFSSEC_MAY_NTLMSSP))
1139 return RawNTLMSSP;
1140 if ((server->sec_kerberos || server->sec_mskerberos) &&
1141 (global_secflags & CIFSSEC_MAY_KRB5))
1142 return Kerberos;
1143 /* Fallthrough */
1144 default:
1145 return Unspecified;
1146 }
1147 }
1148
1149 struct SMB2_sess_data {
1150 unsigned int xid;
1151 struct cifs_ses *ses;
1152 struct nls_table *nls_cp;
1153 void (*func)(struct SMB2_sess_data *);
1154 int result;
1155 u64 previous_session;
1156
1157 /* we will send the SMB in three pieces:
1158 * a fixed length beginning part, an optional
1159 * SPNEGO blob (which can be zero length), and a
1160 * last part which will include the strings
1161 * and rest of bcc area. This allows us to avoid
1162 * a large buffer 17K allocation
1163 */
1164 int buf0_type;
1165 struct kvec iov[2];
1166 };
1167
1168 static int
SMB2_sess_alloc_buffer(struct SMB2_sess_data * sess_data)1169 SMB2_sess_alloc_buffer(struct SMB2_sess_data *sess_data)
1170 {
1171 int rc;
1172 struct cifs_ses *ses = sess_data->ses;
1173 struct smb2_sess_setup_req *req;
1174 struct TCP_Server_Info *server = ses->server;
1175 unsigned int total_len;
1176
1177 rc = smb2_plain_req_init(SMB2_SESSION_SETUP, NULL, (void **) &req,
1178 &total_len);
1179 if (rc)
1180 return rc;
1181
1182 /* First session, not a reauthenticate */
1183 req->sync_hdr.SessionId = 0;
1184
1185 /* if reconnect, we need to send previous sess id, otherwise it is 0 */
1186 req->PreviousSessionId = sess_data->previous_session;
1187
1188 req->Flags = 0; /* MBZ */
1189
1190 /* enough to enable echos and oplocks and one max size write */
1191 req->sync_hdr.CreditRequest = cpu_to_le16(130);
1192
1193 /* only one of SMB2 signing flags may be set in SMB2 request */
1194 if (server->sign)
1195 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_REQUIRED;
1196 else if (global_secflags & CIFSSEC_MAY_SIGN) /* one flag unlike MUST_ */
1197 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED;
1198 else
1199 req->SecurityMode = 0;
1200
1201 #ifdef CONFIG_CIFS_DFS_UPCALL
1202 req->Capabilities = cpu_to_le32(SMB2_GLOBAL_CAP_DFS);
1203 #else
1204 req->Capabilities = 0;
1205 #endif /* DFS_UPCALL */
1206
1207 req->Channel = 0; /* MBZ */
1208
1209 sess_data->iov[0].iov_base = (char *)req;
1210 /* 1 for pad */
1211 sess_data->iov[0].iov_len = total_len - 1;
1212 /*
1213 * This variable will be used to clear the buffer
1214 * allocated above in case of any error in the calling function.
1215 */
1216 sess_data->buf0_type = CIFS_SMALL_BUFFER;
1217
1218 return 0;
1219 }
1220
1221 static void
SMB2_sess_free_buffer(struct SMB2_sess_data * sess_data)1222 SMB2_sess_free_buffer(struct SMB2_sess_data *sess_data)
1223 {
1224 free_rsp_buf(sess_data->buf0_type, sess_data->iov[0].iov_base);
1225 sess_data->buf0_type = CIFS_NO_BUFFER;
1226 }
1227
1228 static int
SMB2_sess_sendreceive(struct SMB2_sess_data * sess_data)1229 SMB2_sess_sendreceive(struct SMB2_sess_data *sess_data)
1230 {
1231 int rc;
1232 struct smb_rqst rqst;
1233 struct smb2_sess_setup_req *req = sess_data->iov[0].iov_base;
1234 struct kvec rsp_iov = { NULL, 0 };
1235
1236 /* Testing shows that buffer offset must be at location of Buffer[0] */
1237 req->SecurityBufferOffset =
1238 cpu_to_le16(sizeof(struct smb2_sess_setup_req) - 1 /* pad */);
1239 req->SecurityBufferLength = cpu_to_le16(sess_data->iov[1].iov_len);
1240
1241 memset(&rqst, 0, sizeof(struct smb_rqst));
1242 rqst.rq_iov = sess_data->iov;
1243 rqst.rq_nvec = 2;
1244
1245 /* BB add code to build os and lm fields */
1246 rc = cifs_send_recv(sess_data->xid, sess_data->ses,
1247 &rqst,
1248 &sess_data->buf0_type,
1249 CIFS_LOG_ERROR | CIFS_NEG_OP, &rsp_iov);
1250 cifs_small_buf_release(sess_data->iov[0].iov_base);
1251 memcpy(&sess_data->iov[0], &rsp_iov, sizeof(struct kvec));
1252
1253 return rc;
1254 }
1255
1256 static int
SMB2_sess_establish_session(struct SMB2_sess_data * sess_data)1257 SMB2_sess_establish_session(struct SMB2_sess_data *sess_data)
1258 {
1259 int rc = 0;
1260 struct cifs_ses *ses = sess_data->ses;
1261
1262 mutex_lock(&ses->server->srv_mutex);
1263 if (ses->server->ops->generate_signingkey) {
1264 rc = ses->server->ops->generate_signingkey(ses);
1265 if (rc) {
1266 cifs_dbg(FYI,
1267 "SMB3 session key generation failed\n");
1268 mutex_unlock(&ses->server->srv_mutex);
1269 return rc;
1270 }
1271 }
1272 if (!ses->server->session_estab) {
1273 ses->server->sequence_number = 0x2;
1274 ses->server->session_estab = true;
1275 }
1276 mutex_unlock(&ses->server->srv_mutex);
1277
1278 cifs_dbg(FYI, "SMB2/3 session established successfully\n");
1279 spin_lock(&GlobalMid_Lock);
1280 ses->status = CifsGood;
1281 ses->need_reconnect = false;
1282 spin_unlock(&GlobalMid_Lock);
1283 return rc;
1284 }
1285
1286 #ifdef CONFIG_CIFS_UPCALL
1287 static void
SMB2_auth_kerberos(struct SMB2_sess_data * sess_data)1288 SMB2_auth_kerberos(struct SMB2_sess_data *sess_data)
1289 {
1290 int rc;
1291 struct cifs_ses *ses = sess_data->ses;
1292 struct cifs_spnego_msg *msg;
1293 struct key *spnego_key = NULL;
1294 struct smb2_sess_setup_rsp *rsp = NULL;
1295
1296 rc = SMB2_sess_alloc_buffer(sess_data);
1297 if (rc)
1298 goto out;
1299
1300 spnego_key = cifs_get_spnego_key(ses);
1301 if (IS_ERR(spnego_key)) {
1302 rc = PTR_ERR(spnego_key);
1303 spnego_key = NULL;
1304 goto out;
1305 }
1306
1307 msg = spnego_key->payload.data[0];
1308 /*
1309 * check version field to make sure that cifs.upcall is
1310 * sending us a response in an expected form
1311 */
1312 if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
1313 cifs_dbg(VFS,
1314 "bad cifs.upcall version. Expected %d got %d",
1315 CIFS_SPNEGO_UPCALL_VERSION, msg->version);
1316 rc = -EKEYREJECTED;
1317 goto out_put_spnego_key;
1318 }
1319
1320 ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len,
1321 GFP_KERNEL);
1322 if (!ses->auth_key.response) {
1323 cifs_dbg(VFS,
1324 "Kerberos can't allocate (%u bytes) memory",
1325 msg->sesskey_len);
1326 rc = -ENOMEM;
1327 goto out_put_spnego_key;
1328 }
1329 ses->auth_key.len = msg->sesskey_len;
1330
1331 sess_data->iov[1].iov_base = msg->data + msg->sesskey_len;
1332 sess_data->iov[1].iov_len = msg->secblob_len;
1333
1334 rc = SMB2_sess_sendreceive(sess_data);
1335 if (rc)
1336 goto out_put_spnego_key;
1337
1338 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
1339 ses->Suid = rsp->sync_hdr.SessionId;
1340
1341 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
1342
1343 rc = SMB2_sess_establish_session(sess_data);
1344 out_put_spnego_key:
1345 key_invalidate(spnego_key);
1346 key_put(spnego_key);
1347 out:
1348 sess_data->result = rc;
1349 sess_data->func = NULL;
1350 SMB2_sess_free_buffer(sess_data);
1351 }
1352 #else
1353 static void
SMB2_auth_kerberos(struct SMB2_sess_data * sess_data)1354 SMB2_auth_kerberos(struct SMB2_sess_data *sess_data)
1355 {
1356 cifs_dbg(VFS, "Kerberos negotiated but upcall support disabled!\n");
1357 sess_data->result = -EOPNOTSUPP;
1358 sess_data->func = NULL;
1359 }
1360 #endif
1361
1362 static void
1363 SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data);
1364
1365 static void
SMB2_sess_auth_rawntlmssp_negotiate(struct SMB2_sess_data * sess_data)1366 SMB2_sess_auth_rawntlmssp_negotiate(struct SMB2_sess_data *sess_data)
1367 {
1368 int rc;
1369 struct cifs_ses *ses = sess_data->ses;
1370 struct smb2_sess_setup_rsp *rsp = NULL;
1371 char *ntlmssp_blob = NULL;
1372 bool use_spnego = false; /* else use raw ntlmssp */
1373 u16 blob_length = 0;
1374
1375 /*
1376 * If memory allocation is successful, caller of this function
1377 * frees it.
1378 */
1379 ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
1380 if (!ses->ntlmssp) {
1381 rc = -ENOMEM;
1382 goto out_err;
1383 }
1384 ses->ntlmssp->sesskey_per_smbsess = true;
1385
1386 rc = SMB2_sess_alloc_buffer(sess_data);
1387 if (rc)
1388 goto out_err;
1389
1390 ntlmssp_blob = kmalloc(sizeof(struct _NEGOTIATE_MESSAGE),
1391 GFP_KERNEL);
1392 if (ntlmssp_blob == NULL) {
1393 rc = -ENOMEM;
1394 goto out;
1395 }
1396
1397 build_ntlmssp_negotiate_blob(ntlmssp_blob, ses);
1398 if (use_spnego) {
1399 /* BB eventually need to add this */
1400 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
1401 rc = -EOPNOTSUPP;
1402 goto out;
1403 } else {
1404 blob_length = sizeof(struct _NEGOTIATE_MESSAGE);
1405 /* with raw NTLMSSP we don't encapsulate in SPNEGO */
1406 }
1407 sess_data->iov[1].iov_base = ntlmssp_blob;
1408 sess_data->iov[1].iov_len = blob_length;
1409
1410 rc = SMB2_sess_sendreceive(sess_data);
1411 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
1412
1413 /* If true, rc here is expected and not an error */
1414 if (sess_data->buf0_type != CIFS_NO_BUFFER &&
1415 rsp->sync_hdr.Status == STATUS_MORE_PROCESSING_REQUIRED)
1416 rc = 0;
1417
1418 if (rc)
1419 goto out;
1420
1421 if (offsetof(struct smb2_sess_setup_rsp, Buffer) !=
1422 le16_to_cpu(rsp->SecurityBufferOffset)) {
1423 cifs_dbg(VFS, "Invalid security buffer offset %d\n",
1424 le16_to_cpu(rsp->SecurityBufferOffset));
1425 rc = -EIO;
1426 goto out;
1427 }
1428 rc = decode_ntlmssp_challenge(rsp->Buffer,
1429 le16_to_cpu(rsp->SecurityBufferLength), ses);
1430 if (rc)
1431 goto out;
1432
1433 cifs_dbg(FYI, "rawntlmssp session setup challenge phase\n");
1434
1435
1436 ses->Suid = rsp->sync_hdr.SessionId;
1437 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
1438
1439 out:
1440 kfree(ntlmssp_blob);
1441 SMB2_sess_free_buffer(sess_data);
1442 if (!rc) {
1443 sess_data->result = 0;
1444 sess_data->func = SMB2_sess_auth_rawntlmssp_authenticate;
1445 return;
1446 }
1447 out_err:
1448 kfree(ses->ntlmssp);
1449 ses->ntlmssp = NULL;
1450 sess_data->result = rc;
1451 sess_data->func = NULL;
1452 }
1453
1454 static void
SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data * sess_data)1455 SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data)
1456 {
1457 int rc;
1458 struct cifs_ses *ses = sess_data->ses;
1459 struct smb2_sess_setup_req *req;
1460 struct smb2_sess_setup_rsp *rsp = NULL;
1461 unsigned char *ntlmssp_blob = NULL;
1462 bool use_spnego = false; /* else use raw ntlmssp */
1463 u16 blob_length = 0;
1464
1465 rc = SMB2_sess_alloc_buffer(sess_data);
1466 if (rc)
1467 goto out;
1468
1469 req = (struct smb2_sess_setup_req *) sess_data->iov[0].iov_base;
1470 req->sync_hdr.SessionId = ses->Suid;
1471
1472 rc = build_ntlmssp_auth_blob(&ntlmssp_blob, &blob_length, ses,
1473 sess_data->nls_cp);
1474 if (rc) {
1475 cifs_dbg(FYI, "build_ntlmssp_auth_blob failed %d\n", rc);
1476 goto out;
1477 }
1478
1479 if (use_spnego) {
1480 /* BB eventually need to add this */
1481 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
1482 rc = -EOPNOTSUPP;
1483 goto out;
1484 }
1485 sess_data->iov[1].iov_base = ntlmssp_blob;
1486 sess_data->iov[1].iov_len = blob_length;
1487
1488 rc = SMB2_sess_sendreceive(sess_data);
1489 if (rc)
1490 goto out;
1491
1492 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
1493
1494 ses->Suid = rsp->sync_hdr.SessionId;
1495 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
1496
1497 rc = SMB2_sess_establish_session(sess_data);
1498 out:
1499 kfree(ntlmssp_blob);
1500 SMB2_sess_free_buffer(sess_data);
1501 kfree(ses->ntlmssp);
1502 ses->ntlmssp = NULL;
1503 sess_data->result = rc;
1504 sess_data->func = NULL;
1505 }
1506
1507 static int
SMB2_select_sec(struct cifs_ses * ses,struct SMB2_sess_data * sess_data)1508 SMB2_select_sec(struct cifs_ses *ses, struct SMB2_sess_data *sess_data)
1509 {
1510 int type;
1511
1512 type = smb2_select_sectype(ses->server, ses->sectype);
1513 cifs_dbg(FYI, "sess setup type %d\n", type);
1514 if (type == Unspecified) {
1515 cifs_dbg(VFS,
1516 "Unable to select appropriate authentication method!");
1517 return -EINVAL;
1518 }
1519
1520 switch (type) {
1521 case Kerberos:
1522 sess_data->func = SMB2_auth_kerberos;
1523 break;
1524 case RawNTLMSSP:
1525 sess_data->func = SMB2_sess_auth_rawntlmssp_negotiate;
1526 break;
1527 default:
1528 cifs_dbg(VFS, "secType %d not supported!\n", type);
1529 return -EOPNOTSUPP;
1530 }
1531
1532 return 0;
1533 }
1534
1535 int
SMB2_sess_setup(const unsigned int xid,struct cifs_ses * ses,const struct nls_table * nls_cp)1536 SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses,
1537 const struct nls_table *nls_cp)
1538 {
1539 int rc = 0;
1540 struct TCP_Server_Info *server = ses->server;
1541 struct SMB2_sess_data *sess_data;
1542
1543 cifs_dbg(FYI, "Session Setup\n");
1544
1545 if (!server) {
1546 WARN(1, "%s: server is NULL!\n", __func__);
1547 return -EIO;
1548 }
1549
1550 sess_data = kzalloc(sizeof(struct SMB2_sess_data), GFP_KERNEL);
1551 if (!sess_data)
1552 return -ENOMEM;
1553
1554 rc = SMB2_select_sec(ses, sess_data);
1555 if (rc)
1556 goto out;
1557 sess_data->xid = xid;
1558 sess_data->ses = ses;
1559 sess_data->buf0_type = CIFS_NO_BUFFER;
1560 sess_data->nls_cp = (struct nls_table *) nls_cp;
1561 sess_data->previous_session = ses->Suid;
1562
1563 /*
1564 * Initialize the session hash with the server one.
1565 */
1566 memcpy(ses->preauth_sha_hash, ses->server->preauth_sha_hash,
1567 SMB2_PREAUTH_HASH_SIZE);
1568
1569 while (sess_data->func)
1570 sess_data->func(sess_data);
1571
1572 if ((ses->session_flags & SMB2_SESSION_FLAG_IS_GUEST) && (ses->sign))
1573 cifs_server_dbg(VFS, "signing requested but authenticated as guest\n");
1574 rc = sess_data->result;
1575 out:
1576 kfree(sess_data);
1577 return rc;
1578 }
1579
1580 int
SMB2_logoff(const unsigned int xid,struct cifs_ses * ses)1581 SMB2_logoff(const unsigned int xid, struct cifs_ses *ses)
1582 {
1583 struct smb_rqst rqst;
1584 struct smb2_logoff_req *req; /* response is also trivial struct */
1585 int rc = 0;
1586 struct TCP_Server_Info *server;
1587 int flags = 0;
1588 unsigned int total_len;
1589 struct kvec iov[1];
1590 struct kvec rsp_iov;
1591 int resp_buf_type;
1592
1593 cifs_dbg(FYI, "disconnect session %p\n", ses);
1594
1595 if (ses && (ses->server))
1596 server = ses->server;
1597 else
1598 return -EIO;
1599
1600 /* no need to send SMB logoff if uid already closed due to reconnect */
1601 if (ses->need_reconnect)
1602 goto smb2_session_already_dead;
1603
1604 rc = smb2_plain_req_init(SMB2_LOGOFF, NULL, (void **) &req, &total_len);
1605 if (rc)
1606 return rc;
1607
1608 /* since no tcon, smb2_init can not do this, so do here */
1609 req->sync_hdr.SessionId = ses->Suid;
1610
1611 if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA)
1612 flags |= CIFS_TRANSFORM_REQ;
1613 else if (server->sign)
1614 req->sync_hdr.Flags |= SMB2_FLAGS_SIGNED;
1615
1616 flags |= CIFS_NO_RSP_BUF;
1617
1618 iov[0].iov_base = (char *)req;
1619 iov[0].iov_len = total_len;
1620
1621 memset(&rqst, 0, sizeof(struct smb_rqst));
1622 rqst.rq_iov = iov;
1623 rqst.rq_nvec = 1;
1624
1625 rc = cifs_send_recv(xid, ses, &rqst, &resp_buf_type, flags, &rsp_iov);
1626 cifs_small_buf_release(req);
1627 /*
1628 * No tcon so can't do
1629 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
1630 */
1631
1632 smb2_session_already_dead:
1633 return rc;
1634 }
1635
cifs_stats_fail_inc(struct cifs_tcon * tcon,uint16_t code)1636 static inline void cifs_stats_fail_inc(struct cifs_tcon *tcon, uint16_t code)
1637 {
1638 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_failed[code]);
1639 }
1640
1641 #define MAX_SHARENAME_LENGTH (255 /* server */ + 80 /* share */ + 1 /* NULL */)
1642
1643 /* These are similar values to what Windows uses */
init_copy_chunk_defaults(struct cifs_tcon * tcon)1644 static inline void init_copy_chunk_defaults(struct cifs_tcon *tcon)
1645 {
1646 tcon->max_chunks = 256;
1647 tcon->max_bytes_chunk = 1048576;
1648 tcon->max_bytes_copy = 16777216;
1649 }
1650
1651 int
SMB2_tcon(const unsigned int xid,struct cifs_ses * ses,const char * tree,struct cifs_tcon * tcon,const struct nls_table * cp)1652 SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree,
1653 struct cifs_tcon *tcon, const struct nls_table *cp)
1654 {
1655 struct smb_rqst rqst;
1656 struct smb2_tree_connect_req *req;
1657 struct smb2_tree_connect_rsp *rsp = NULL;
1658 struct kvec iov[2];
1659 struct kvec rsp_iov = { NULL, 0 };
1660 int rc = 0;
1661 int resp_buftype;
1662 int unc_path_len;
1663 __le16 *unc_path = NULL;
1664 int flags = 0;
1665 unsigned int total_len;
1666 struct TCP_Server_Info *server = ses->server;
1667
1668 cifs_dbg(FYI, "TCON\n");
1669
1670 if (!server || !tree)
1671 return -EIO;
1672
1673 unc_path = kmalloc(MAX_SHARENAME_LENGTH * 2, GFP_KERNEL);
1674 if (unc_path == NULL)
1675 return -ENOMEM;
1676
1677 unc_path_len = cifs_strtoUTF16(unc_path, tree, strlen(tree), cp) + 1;
1678 unc_path_len *= 2;
1679 if (unc_path_len < 2) {
1680 kfree(unc_path);
1681 return -EINVAL;
1682 }
1683
1684 /* SMB2 TREE_CONNECT request must be called with TreeId == 0 */
1685 tcon->tid = 0;
1686 atomic_set(&tcon->num_remote_opens, 0);
1687 rc = smb2_plain_req_init(SMB2_TREE_CONNECT, tcon, (void **) &req,
1688 &total_len);
1689 if (rc) {
1690 kfree(unc_path);
1691 return rc;
1692 }
1693
1694 if (smb3_encryption_required(tcon))
1695 flags |= CIFS_TRANSFORM_REQ;
1696
1697 iov[0].iov_base = (char *)req;
1698 /* 1 for pad */
1699 iov[0].iov_len = total_len - 1;
1700
1701 /* Testing shows that buffer offset must be at location of Buffer[0] */
1702 req->PathOffset = cpu_to_le16(sizeof(struct smb2_tree_connect_req)
1703 - 1 /* pad */);
1704 req->PathLength = cpu_to_le16(unc_path_len - 2);
1705 iov[1].iov_base = unc_path;
1706 iov[1].iov_len = unc_path_len;
1707
1708 /*
1709 * 3.11 tcon req must be signed if not encrypted. See MS-SMB2 3.2.4.1.1
1710 * unless it is guest or anonymous user. See MS-SMB2 3.2.5.3.1
1711 * (Samba servers don't always set the flag so also check if null user)
1712 */
1713 if ((server->dialect == SMB311_PROT_ID) &&
1714 !smb3_encryption_required(tcon) &&
1715 !(ses->session_flags &
1716 (SMB2_SESSION_FLAG_IS_GUEST|SMB2_SESSION_FLAG_IS_NULL)) &&
1717 ((ses->user_name != NULL) || (ses->sectype == Kerberos)))
1718 req->sync_hdr.Flags |= SMB2_FLAGS_SIGNED;
1719
1720 memset(&rqst, 0, sizeof(struct smb_rqst));
1721 rqst.rq_iov = iov;
1722 rqst.rq_nvec = 2;
1723
1724 /* Need 64 for max size write so ask for more in case not there yet */
1725 req->sync_hdr.CreditRequest = cpu_to_le16(64);
1726
1727 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
1728 cifs_small_buf_release(req);
1729 rsp = (struct smb2_tree_connect_rsp *)rsp_iov.iov_base;
1730 trace_smb3_tcon(xid, tcon->tid, ses->Suid, tree, rc);
1731 if (rc != 0) {
1732 if (tcon) {
1733 cifs_stats_fail_inc(tcon, SMB2_TREE_CONNECT_HE);
1734 tcon->need_reconnect = true;
1735 }
1736 goto tcon_error_exit;
1737 }
1738
1739 switch (rsp->ShareType) {
1740 case SMB2_SHARE_TYPE_DISK:
1741 cifs_dbg(FYI, "connection to disk share\n");
1742 break;
1743 case SMB2_SHARE_TYPE_PIPE:
1744 tcon->pipe = true;
1745 cifs_dbg(FYI, "connection to pipe share\n");
1746 break;
1747 case SMB2_SHARE_TYPE_PRINT:
1748 tcon->print = true;
1749 cifs_dbg(FYI, "connection to printer\n");
1750 break;
1751 default:
1752 cifs_server_dbg(VFS, "unknown share type %d\n", rsp->ShareType);
1753 rc = -EOPNOTSUPP;
1754 goto tcon_error_exit;
1755 }
1756
1757 tcon->share_flags = le32_to_cpu(rsp->ShareFlags);
1758 tcon->capabilities = rsp->Capabilities; /* we keep caps little endian */
1759 tcon->maximal_access = le32_to_cpu(rsp->MaximalAccess);
1760 tcon->tidStatus = CifsGood;
1761 tcon->need_reconnect = false;
1762 tcon->tid = rsp->sync_hdr.TreeId;
1763 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
1764
1765 if ((rsp->Capabilities & SMB2_SHARE_CAP_DFS) &&
1766 ((tcon->share_flags & SHI1005_FLAGS_DFS) == 0))
1767 cifs_tcon_dbg(VFS, "DFS capability contradicts DFS flag\n");
1768
1769 if (tcon->seal &&
1770 !(server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION))
1771 cifs_tcon_dbg(VFS, "Encryption is requested but not supported\n");
1772
1773 init_copy_chunk_defaults(tcon);
1774 if (server->ops->validate_negotiate)
1775 rc = server->ops->validate_negotiate(xid, tcon);
1776 tcon_exit:
1777
1778 free_rsp_buf(resp_buftype, rsp);
1779 kfree(unc_path);
1780 return rc;
1781
1782 tcon_error_exit:
1783 if (rsp && rsp->sync_hdr.Status == STATUS_BAD_NETWORK_NAME) {
1784 cifs_tcon_dbg(VFS, "BAD_NETWORK_NAME: %s\n", tree);
1785 }
1786 goto tcon_exit;
1787 }
1788
1789 int
SMB2_tdis(const unsigned int xid,struct cifs_tcon * tcon)1790 SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon)
1791 {
1792 struct smb_rqst rqst;
1793 struct smb2_tree_disconnect_req *req; /* response is trivial */
1794 int rc = 0;
1795 struct cifs_ses *ses = tcon->ses;
1796 int flags = 0;
1797 unsigned int total_len;
1798 struct kvec iov[1];
1799 struct kvec rsp_iov;
1800 int resp_buf_type;
1801
1802 cifs_dbg(FYI, "Tree Disconnect\n");
1803
1804 if (!ses || !(ses->server))
1805 return -EIO;
1806
1807 if ((tcon->need_reconnect) || (tcon->ses->need_reconnect))
1808 return 0;
1809
1810 rc = smb2_plain_req_init(SMB2_TREE_DISCONNECT, tcon, (void **) &req,
1811 &total_len);
1812 if (rc)
1813 return rc;
1814
1815 if (smb3_encryption_required(tcon))
1816 flags |= CIFS_TRANSFORM_REQ;
1817
1818 flags |= CIFS_NO_RSP_BUF;
1819
1820 iov[0].iov_base = (char *)req;
1821 iov[0].iov_len = total_len;
1822
1823 memset(&rqst, 0, sizeof(struct smb_rqst));
1824 rqst.rq_iov = iov;
1825 rqst.rq_nvec = 1;
1826
1827 rc = cifs_send_recv(xid, ses, &rqst, &resp_buf_type, flags, &rsp_iov);
1828 cifs_small_buf_release(req);
1829 if (rc)
1830 cifs_stats_fail_inc(tcon, SMB2_TREE_DISCONNECT_HE);
1831
1832 return rc;
1833 }
1834
1835
1836 static struct create_durable *
create_durable_buf(void)1837 create_durable_buf(void)
1838 {
1839 struct create_durable *buf;
1840
1841 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
1842 if (!buf)
1843 return NULL;
1844
1845 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1846 (struct create_durable, Data));
1847 buf->ccontext.DataLength = cpu_to_le32(16);
1848 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1849 (struct create_durable, Name));
1850 buf->ccontext.NameLength = cpu_to_le16(4);
1851 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DHnQ" */
1852 buf->Name[0] = 'D';
1853 buf->Name[1] = 'H';
1854 buf->Name[2] = 'n';
1855 buf->Name[3] = 'Q';
1856 return buf;
1857 }
1858
1859 static struct create_durable *
create_reconnect_durable_buf(struct cifs_fid * fid)1860 create_reconnect_durable_buf(struct cifs_fid *fid)
1861 {
1862 struct create_durable *buf;
1863
1864 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
1865 if (!buf)
1866 return NULL;
1867
1868 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1869 (struct create_durable, Data));
1870 buf->ccontext.DataLength = cpu_to_le32(16);
1871 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1872 (struct create_durable, Name));
1873 buf->ccontext.NameLength = cpu_to_le16(4);
1874 buf->Data.Fid.PersistentFileId = fid->persistent_fid;
1875 buf->Data.Fid.VolatileFileId = fid->volatile_fid;
1876 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT is "DHnC" */
1877 buf->Name[0] = 'D';
1878 buf->Name[1] = 'H';
1879 buf->Name[2] = 'n';
1880 buf->Name[3] = 'C';
1881 return buf;
1882 }
1883
1884 static void
parse_query_id_ctxt(struct create_context * cc,struct smb2_file_all_info * buf)1885 parse_query_id_ctxt(struct create_context *cc, struct smb2_file_all_info *buf)
1886 {
1887 struct create_on_disk_id *pdisk_id = (struct create_on_disk_id *)cc;
1888
1889 cifs_dbg(FYI, "parse query id context 0x%llx 0x%llx\n",
1890 pdisk_id->DiskFileId, pdisk_id->VolumeId);
1891 buf->IndexNumber = pdisk_id->DiskFileId;
1892 }
1893
1894 void
smb2_parse_contexts(struct TCP_Server_Info * server,struct smb2_create_rsp * rsp,unsigned int * epoch,char * lease_key,__u8 * oplock,struct smb2_file_all_info * buf)1895 smb2_parse_contexts(struct TCP_Server_Info *server,
1896 struct smb2_create_rsp *rsp,
1897 unsigned int *epoch, char *lease_key, __u8 *oplock,
1898 struct smb2_file_all_info *buf)
1899 {
1900 char *data_offset;
1901 struct create_context *cc;
1902 unsigned int next;
1903 unsigned int remaining;
1904 char *name;
1905
1906 *oplock = 0;
1907 data_offset = (char *)rsp + le32_to_cpu(rsp->CreateContextsOffset);
1908 remaining = le32_to_cpu(rsp->CreateContextsLength);
1909 cc = (struct create_context *)data_offset;
1910
1911 /* Initialize inode number to 0 in case no valid data in qfid context */
1912 if (buf)
1913 buf->IndexNumber = 0;
1914
1915 while (remaining >= sizeof(struct create_context)) {
1916 name = le16_to_cpu(cc->NameOffset) + (char *)cc;
1917 if (le16_to_cpu(cc->NameLength) == 4 &&
1918 strncmp(name, SMB2_CREATE_REQUEST_LEASE, 4) == 0)
1919 *oplock = server->ops->parse_lease_buf(cc, epoch,
1920 lease_key);
1921 else if (buf && (le16_to_cpu(cc->NameLength) == 4) &&
1922 strncmp(name, SMB2_CREATE_QUERY_ON_DISK_ID, 4) == 0)
1923 parse_query_id_ctxt(cc, buf);
1924
1925 next = le32_to_cpu(cc->Next);
1926 if (!next)
1927 break;
1928 remaining -= next;
1929 cc = (struct create_context *)((char *)cc + next);
1930 }
1931
1932 if (rsp->OplockLevel != SMB2_OPLOCK_LEVEL_LEASE)
1933 *oplock = rsp->OplockLevel;
1934
1935 return;
1936 }
1937
1938 static int
add_lease_context(struct TCP_Server_Info * server,struct kvec * iov,unsigned int * num_iovec,u8 * lease_key,__u8 * oplock)1939 add_lease_context(struct TCP_Server_Info *server, struct kvec *iov,
1940 unsigned int *num_iovec, u8 *lease_key, __u8 *oplock)
1941 {
1942 struct smb2_create_req *req = iov[0].iov_base;
1943 unsigned int num = *num_iovec;
1944
1945 iov[num].iov_base = server->ops->create_lease_buf(lease_key, *oplock);
1946 if (iov[num].iov_base == NULL)
1947 return -ENOMEM;
1948 iov[num].iov_len = server->vals->create_lease_size;
1949 req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_LEASE;
1950 if (!req->CreateContextsOffset)
1951 req->CreateContextsOffset = cpu_to_le32(
1952 sizeof(struct smb2_create_req) +
1953 iov[num - 1].iov_len);
1954 le32_add_cpu(&req->CreateContextsLength,
1955 server->vals->create_lease_size);
1956 *num_iovec = num + 1;
1957 return 0;
1958 }
1959
1960 static struct create_durable_v2 *
create_durable_v2_buf(struct cifs_open_parms * oparms)1961 create_durable_v2_buf(struct cifs_open_parms *oparms)
1962 {
1963 struct cifs_fid *pfid = oparms->fid;
1964 struct create_durable_v2 *buf;
1965
1966 buf = kzalloc(sizeof(struct create_durable_v2), GFP_KERNEL);
1967 if (!buf)
1968 return NULL;
1969
1970 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1971 (struct create_durable_v2, dcontext));
1972 buf->ccontext.DataLength = cpu_to_le32(sizeof(struct durable_context_v2));
1973 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1974 (struct create_durable_v2, Name));
1975 buf->ccontext.NameLength = cpu_to_le16(4);
1976
1977 /*
1978 * NB: Handle timeout defaults to 0, which allows server to choose
1979 * (most servers default to 120 seconds) and most clients default to 0.
1980 * This can be overridden at mount ("handletimeout=") if the user wants
1981 * a different persistent (or resilient) handle timeout for all opens
1982 * opens on a particular SMB3 mount.
1983 */
1984 buf->dcontext.Timeout = cpu_to_le32(oparms->tcon->handle_timeout);
1985 buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
1986 generate_random_uuid(buf->dcontext.CreateGuid);
1987 memcpy(pfid->create_guid, buf->dcontext.CreateGuid, 16);
1988
1989 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DH2Q" */
1990 buf->Name[0] = 'D';
1991 buf->Name[1] = 'H';
1992 buf->Name[2] = '2';
1993 buf->Name[3] = 'Q';
1994 return buf;
1995 }
1996
1997 static struct create_durable_handle_reconnect_v2 *
create_reconnect_durable_v2_buf(struct cifs_fid * fid)1998 create_reconnect_durable_v2_buf(struct cifs_fid *fid)
1999 {
2000 struct create_durable_handle_reconnect_v2 *buf;
2001
2002 buf = kzalloc(sizeof(struct create_durable_handle_reconnect_v2),
2003 GFP_KERNEL);
2004 if (!buf)
2005 return NULL;
2006
2007 buf->ccontext.DataOffset =
2008 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
2009 dcontext));
2010 buf->ccontext.DataLength =
2011 cpu_to_le32(sizeof(struct durable_reconnect_context_v2));
2012 buf->ccontext.NameOffset =
2013 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
2014 Name));
2015 buf->ccontext.NameLength = cpu_to_le16(4);
2016
2017 buf->dcontext.Fid.PersistentFileId = fid->persistent_fid;
2018 buf->dcontext.Fid.VolatileFileId = fid->volatile_fid;
2019 buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
2020 memcpy(buf->dcontext.CreateGuid, fid->create_guid, 16);
2021
2022 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2 is "DH2C" */
2023 buf->Name[0] = 'D';
2024 buf->Name[1] = 'H';
2025 buf->Name[2] = '2';
2026 buf->Name[3] = 'C';
2027 return buf;
2028 }
2029
2030 static int
add_durable_v2_context(struct kvec * iov,unsigned int * num_iovec,struct cifs_open_parms * oparms)2031 add_durable_v2_context(struct kvec *iov, unsigned int *num_iovec,
2032 struct cifs_open_parms *oparms)
2033 {
2034 struct smb2_create_req *req = iov[0].iov_base;
2035 unsigned int num = *num_iovec;
2036
2037 iov[num].iov_base = create_durable_v2_buf(oparms);
2038 if (iov[num].iov_base == NULL)
2039 return -ENOMEM;
2040 iov[num].iov_len = sizeof(struct create_durable_v2);
2041 if (!req->CreateContextsOffset)
2042 req->CreateContextsOffset =
2043 cpu_to_le32(sizeof(struct smb2_create_req) +
2044 iov[1].iov_len);
2045 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable_v2));
2046 *num_iovec = num + 1;
2047 return 0;
2048 }
2049
2050 static int
add_durable_reconnect_v2_context(struct kvec * iov,unsigned int * num_iovec,struct cifs_open_parms * oparms)2051 add_durable_reconnect_v2_context(struct kvec *iov, unsigned int *num_iovec,
2052 struct cifs_open_parms *oparms)
2053 {
2054 struct smb2_create_req *req = iov[0].iov_base;
2055 unsigned int num = *num_iovec;
2056
2057 /* indicate that we don't need to relock the file */
2058 oparms->reconnect = false;
2059
2060 iov[num].iov_base = create_reconnect_durable_v2_buf(oparms->fid);
2061 if (iov[num].iov_base == NULL)
2062 return -ENOMEM;
2063 iov[num].iov_len = sizeof(struct create_durable_handle_reconnect_v2);
2064 if (!req->CreateContextsOffset)
2065 req->CreateContextsOffset =
2066 cpu_to_le32(sizeof(struct smb2_create_req) +
2067 iov[1].iov_len);
2068 le32_add_cpu(&req->CreateContextsLength,
2069 sizeof(struct create_durable_handle_reconnect_v2));
2070 *num_iovec = num + 1;
2071 return 0;
2072 }
2073
2074 static int
add_durable_context(struct kvec * iov,unsigned int * num_iovec,struct cifs_open_parms * oparms,bool use_persistent)2075 add_durable_context(struct kvec *iov, unsigned int *num_iovec,
2076 struct cifs_open_parms *oparms, bool use_persistent)
2077 {
2078 struct smb2_create_req *req = iov[0].iov_base;
2079 unsigned int num = *num_iovec;
2080
2081 if (use_persistent) {
2082 if (oparms->reconnect)
2083 return add_durable_reconnect_v2_context(iov, num_iovec,
2084 oparms);
2085 else
2086 return add_durable_v2_context(iov, num_iovec, oparms);
2087 }
2088
2089 if (oparms->reconnect) {
2090 iov[num].iov_base = create_reconnect_durable_buf(oparms->fid);
2091 /* indicate that we don't need to relock the file */
2092 oparms->reconnect = false;
2093 } else
2094 iov[num].iov_base = create_durable_buf();
2095 if (iov[num].iov_base == NULL)
2096 return -ENOMEM;
2097 iov[num].iov_len = sizeof(struct create_durable);
2098 if (!req->CreateContextsOffset)
2099 req->CreateContextsOffset =
2100 cpu_to_le32(sizeof(struct smb2_create_req) +
2101 iov[1].iov_len);
2102 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable));
2103 *num_iovec = num + 1;
2104 return 0;
2105 }
2106
2107 /* See MS-SMB2 2.2.13.2.7 */
2108 static struct crt_twarp_ctxt *
create_twarp_buf(__u64 timewarp)2109 create_twarp_buf(__u64 timewarp)
2110 {
2111 struct crt_twarp_ctxt *buf;
2112
2113 buf = kzalloc(sizeof(struct crt_twarp_ctxt), GFP_KERNEL);
2114 if (!buf)
2115 return NULL;
2116
2117 buf->ccontext.DataOffset = cpu_to_le16(offsetof
2118 (struct crt_twarp_ctxt, Timestamp));
2119 buf->ccontext.DataLength = cpu_to_le32(8);
2120 buf->ccontext.NameOffset = cpu_to_le16(offsetof
2121 (struct crt_twarp_ctxt, Name));
2122 buf->ccontext.NameLength = cpu_to_le16(4);
2123 /* SMB2_CREATE_TIMEWARP_TOKEN is "TWrp" */
2124 buf->Name[0] = 'T';
2125 buf->Name[1] = 'W';
2126 buf->Name[2] = 'r';
2127 buf->Name[3] = 'p';
2128 buf->Timestamp = cpu_to_le64(timewarp);
2129 return buf;
2130 }
2131
2132 /* See MS-SMB2 2.2.13.2.7 */
2133 static int
add_twarp_context(struct kvec * iov,unsigned int * num_iovec,__u64 timewarp)2134 add_twarp_context(struct kvec *iov, unsigned int *num_iovec, __u64 timewarp)
2135 {
2136 struct smb2_create_req *req = iov[0].iov_base;
2137 unsigned int num = *num_iovec;
2138
2139 iov[num].iov_base = create_twarp_buf(timewarp);
2140 if (iov[num].iov_base == NULL)
2141 return -ENOMEM;
2142 iov[num].iov_len = sizeof(struct crt_twarp_ctxt);
2143 if (!req->CreateContextsOffset)
2144 req->CreateContextsOffset = cpu_to_le32(
2145 sizeof(struct smb2_create_req) +
2146 iov[num - 1].iov_len);
2147 le32_add_cpu(&req->CreateContextsLength, sizeof(struct crt_twarp_ctxt));
2148 *num_iovec = num + 1;
2149 return 0;
2150 }
2151
2152 static struct crt_query_id_ctxt *
create_query_id_buf(void)2153 create_query_id_buf(void)
2154 {
2155 struct crt_query_id_ctxt *buf;
2156
2157 buf = kzalloc(sizeof(struct crt_query_id_ctxt), GFP_KERNEL);
2158 if (!buf)
2159 return NULL;
2160
2161 buf->ccontext.DataOffset = cpu_to_le16(0);
2162 buf->ccontext.DataLength = cpu_to_le32(0);
2163 buf->ccontext.NameOffset = cpu_to_le16(offsetof
2164 (struct crt_query_id_ctxt, Name));
2165 buf->ccontext.NameLength = cpu_to_le16(4);
2166 /* SMB2_CREATE_QUERY_ON_DISK_ID is "QFid" */
2167 buf->Name[0] = 'Q';
2168 buf->Name[1] = 'F';
2169 buf->Name[2] = 'i';
2170 buf->Name[3] = 'd';
2171 return buf;
2172 }
2173
2174 /* See MS-SMB2 2.2.13.2.9 */
2175 static int
add_query_id_context(struct kvec * iov,unsigned int * num_iovec)2176 add_query_id_context(struct kvec *iov, unsigned int *num_iovec)
2177 {
2178 struct smb2_create_req *req = iov[0].iov_base;
2179 unsigned int num = *num_iovec;
2180
2181 iov[num].iov_base = create_query_id_buf();
2182 if (iov[num].iov_base == NULL)
2183 return -ENOMEM;
2184 iov[num].iov_len = sizeof(struct crt_query_id_ctxt);
2185 if (!req->CreateContextsOffset)
2186 req->CreateContextsOffset = cpu_to_le32(
2187 sizeof(struct smb2_create_req) +
2188 iov[num - 1].iov_len);
2189 le32_add_cpu(&req->CreateContextsLength, sizeof(struct crt_query_id_ctxt));
2190 *num_iovec = num + 1;
2191 return 0;
2192 }
2193
2194 static int
alloc_path_with_tree_prefix(__le16 ** out_path,int * out_size,int * out_len,const char * treename,const __le16 * path)2195 alloc_path_with_tree_prefix(__le16 **out_path, int *out_size, int *out_len,
2196 const char *treename, const __le16 *path)
2197 {
2198 int treename_len, path_len;
2199 struct nls_table *cp;
2200 const __le16 sep[] = {cpu_to_le16('\\'), cpu_to_le16(0x0000)};
2201
2202 /*
2203 * skip leading "\\"
2204 */
2205 treename_len = strlen(treename);
2206 if (treename_len < 2 || !(treename[0] == '\\' && treename[1] == '\\'))
2207 return -EINVAL;
2208
2209 treename += 2;
2210 treename_len -= 2;
2211
2212 path_len = UniStrnlen((wchar_t *)path, PATH_MAX);
2213
2214 /*
2215 * make room for one path separator between the treename and
2216 * path
2217 */
2218 *out_len = treename_len + 1 + path_len;
2219
2220 /*
2221 * final path needs to be null-terminated UTF16 with a
2222 * size aligned to 8
2223 */
2224
2225 *out_size = roundup((*out_len+1)*2, 8);
2226 *out_path = kzalloc(*out_size, GFP_KERNEL);
2227 if (!*out_path)
2228 return -ENOMEM;
2229
2230 cp = load_nls_default();
2231 cifs_strtoUTF16(*out_path, treename, treename_len, cp);
2232 UniStrcat(*out_path, sep);
2233 UniStrcat(*out_path, path);
2234 unload_nls(cp);
2235
2236 return 0;
2237 }
2238
smb311_posix_mkdir(const unsigned int xid,struct inode * inode,umode_t mode,struct cifs_tcon * tcon,const char * full_path,struct cifs_sb_info * cifs_sb)2239 int smb311_posix_mkdir(const unsigned int xid, struct inode *inode,
2240 umode_t mode, struct cifs_tcon *tcon,
2241 const char *full_path,
2242 struct cifs_sb_info *cifs_sb)
2243 {
2244 struct smb_rqst rqst;
2245 struct smb2_create_req *req;
2246 struct smb2_create_rsp *rsp = NULL;
2247 struct cifs_ses *ses = tcon->ses;
2248 struct kvec iov[3]; /* make sure at least one for each open context */
2249 struct kvec rsp_iov = {NULL, 0};
2250 int resp_buftype;
2251 int uni_path_len;
2252 __le16 *copy_path = NULL;
2253 int copy_size;
2254 int rc = 0;
2255 unsigned int n_iov = 2;
2256 __u32 file_attributes = 0;
2257 char *pc_buf = NULL;
2258 int flags = 0;
2259 unsigned int total_len;
2260 __le16 *utf16_path = NULL;
2261
2262 cifs_dbg(FYI, "mkdir\n");
2263
2264 /* resource #1: path allocation */
2265 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb);
2266 if (!utf16_path)
2267 return -ENOMEM;
2268
2269 if (!ses || !(ses->server)) {
2270 rc = -EIO;
2271 goto err_free_path;
2272 }
2273
2274 /* resource #2: request */
2275 rc = smb2_plain_req_init(SMB2_CREATE, tcon, (void **) &req, &total_len);
2276 if (rc)
2277 goto err_free_path;
2278
2279
2280 if (smb3_encryption_required(tcon))
2281 flags |= CIFS_TRANSFORM_REQ;
2282
2283 req->ImpersonationLevel = IL_IMPERSONATION;
2284 req->DesiredAccess = cpu_to_le32(FILE_WRITE_ATTRIBUTES);
2285 /* File attributes ignored on open (used in create though) */
2286 req->FileAttributes = cpu_to_le32(file_attributes);
2287 req->ShareAccess = FILE_SHARE_ALL_LE;
2288 req->CreateDisposition = cpu_to_le32(FILE_CREATE);
2289 req->CreateOptions = cpu_to_le32(CREATE_NOT_FILE);
2290
2291 iov[0].iov_base = (char *)req;
2292 /* -1 since last byte is buf[0] which is sent below (path) */
2293 iov[0].iov_len = total_len - 1;
2294
2295 req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req));
2296
2297 /* [MS-SMB2] 2.2.13 NameOffset:
2298 * If SMB2_FLAGS_DFS_OPERATIONS is set in the Flags field of
2299 * the SMB2 header, the file name includes a prefix that will
2300 * be processed during DFS name normalization as specified in
2301 * section 3.3.5.9. Otherwise, the file name is relative to
2302 * the share that is identified by the TreeId in the SMB2
2303 * header.
2304 */
2305 if (tcon->share_flags & SHI1005_FLAGS_DFS) {
2306 int name_len;
2307
2308 req->sync_hdr.Flags |= SMB2_FLAGS_DFS_OPERATIONS;
2309 rc = alloc_path_with_tree_prefix(©_path, ©_size,
2310 &name_len,
2311 tcon->treeName, utf16_path);
2312 if (rc)
2313 goto err_free_req;
2314
2315 req->NameLength = cpu_to_le16(name_len * 2);
2316 uni_path_len = copy_size;
2317 /* free before overwriting resource */
2318 kfree(utf16_path);
2319 utf16_path = copy_path;
2320 } else {
2321 uni_path_len = (2 * UniStrnlen((wchar_t *)utf16_path, PATH_MAX)) + 2;
2322 /* MUST set path len (NameLength) to 0 opening root of share */
2323 req->NameLength = cpu_to_le16(uni_path_len - 2);
2324 if (uni_path_len % 8 != 0) {
2325 copy_size = roundup(uni_path_len, 8);
2326 copy_path = kzalloc(copy_size, GFP_KERNEL);
2327 if (!copy_path) {
2328 rc = -ENOMEM;
2329 goto err_free_req;
2330 }
2331 memcpy((char *)copy_path, (const char *)utf16_path,
2332 uni_path_len);
2333 uni_path_len = copy_size;
2334 /* free before overwriting resource */
2335 kfree(utf16_path);
2336 utf16_path = copy_path;
2337 }
2338 }
2339
2340 iov[1].iov_len = uni_path_len;
2341 iov[1].iov_base = utf16_path;
2342 req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_NONE;
2343
2344 if (tcon->posix_extensions) {
2345 /* resource #3: posix buf */
2346 rc = add_posix_context(iov, &n_iov, mode);
2347 if (rc)
2348 goto err_free_req;
2349 pc_buf = iov[n_iov-1].iov_base;
2350 }
2351
2352
2353 memset(&rqst, 0, sizeof(struct smb_rqst));
2354 rqst.rq_iov = iov;
2355 rqst.rq_nvec = n_iov;
2356
2357 /* no need to inc num_remote_opens because we close it just below */
2358 trace_smb3_posix_mkdir_enter(xid, tcon->tid, ses->Suid, CREATE_NOT_FILE,
2359 FILE_WRITE_ATTRIBUTES);
2360 /* resource #4: response buffer */
2361 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
2362 if (rc) {
2363 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
2364 trace_smb3_posix_mkdir_err(xid, tcon->tid, ses->Suid,
2365 CREATE_NOT_FILE,
2366 FILE_WRITE_ATTRIBUTES, rc);
2367 goto err_free_rsp_buf;
2368 }
2369
2370 rsp = (struct smb2_create_rsp *)rsp_iov.iov_base;
2371 trace_smb3_posix_mkdir_done(xid, rsp->PersistentFileId, tcon->tid,
2372 ses->Suid, CREATE_NOT_FILE,
2373 FILE_WRITE_ATTRIBUTES);
2374
2375 SMB2_close(xid, tcon, rsp->PersistentFileId, rsp->VolatileFileId);
2376
2377 /* Eventually save off posix specific response info and timestaps */
2378
2379 err_free_rsp_buf:
2380 free_rsp_buf(resp_buftype, rsp);
2381 kfree(pc_buf);
2382 err_free_req:
2383 cifs_small_buf_release(req);
2384 err_free_path:
2385 kfree(utf16_path);
2386 return rc;
2387 }
2388
2389 int
SMB2_open_init(struct cifs_tcon * tcon,struct smb_rqst * rqst,__u8 * oplock,struct cifs_open_parms * oparms,__le16 * path)2390 SMB2_open_init(struct cifs_tcon *tcon, struct smb_rqst *rqst, __u8 *oplock,
2391 struct cifs_open_parms *oparms, __le16 *path)
2392 {
2393 struct TCP_Server_Info *server = tcon->ses->server;
2394 struct smb2_create_req *req;
2395 unsigned int n_iov = 2;
2396 __u32 file_attributes = 0;
2397 int copy_size;
2398 int uni_path_len;
2399 unsigned int total_len;
2400 struct kvec *iov = rqst->rq_iov;
2401 __le16 *copy_path;
2402 int rc;
2403
2404 rc = smb2_plain_req_init(SMB2_CREATE, tcon, (void **) &req, &total_len);
2405 if (rc)
2406 return rc;
2407
2408 iov[0].iov_base = (char *)req;
2409 /* -1 since last byte is buf[0] which is sent below (path) */
2410 iov[0].iov_len = total_len - 1;
2411
2412 if (oparms->create_options & CREATE_OPTION_READONLY)
2413 file_attributes |= ATTR_READONLY;
2414 if (oparms->create_options & CREATE_OPTION_SPECIAL)
2415 file_attributes |= ATTR_SYSTEM;
2416
2417 req->ImpersonationLevel = IL_IMPERSONATION;
2418 req->DesiredAccess = cpu_to_le32(oparms->desired_access);
2419 /* File attributes ignored on open (used in create though) */
2420 req->FileAttributes = cpu_to_le32(file_attributes);
2421 req->ShareAccess = FILE_SHARE_ALL_LE;
2422
2423 req->CreateDisposition = cpu_to_le32(oparms->disposition);
2424 req->CreateOptions = cpu_to_le32(oparms->create_options & CREATE_OPTIONS_MASK);
2425 req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req));
2426
2427 /* [MS-SMB2] 2.2.13 NameOffset:
2428 * If SMB2_FLAGS_DFS_OPERATIONS is set in the Flags field of
2429 * the SMB2 header, the file name includes a prefix that will
2430 * be processed during DFS name normalization as specified in
2431 * section 3.3.5.9. Otherwise, the file name is relative to
2432 * the share that is identified by the TreeId in the SMB2
2433 * header.
2434 */
2435 if (tcon->share_flags & SHI1005_FLAGS_DFS) {
2436 int name_len;
2437
2438 req->sync_hdr.Flags |= SMB2_FLAGS_DFS_OPERATIONS;
2439 rc = alloc_path_with_tree_prefix(©_path, ©_size,
2440 &name_len,
2441 tcon->treeName, path);
2442 if (rc)
2443 return rc;
2444 req->NameLength = cpu_to_le16(name_len * 2);
2445 uni_path_len = copy_size;
2446 path = copy_path;
2447 } else {
2448 uni_path_len = (2 * UniStrnlen((wchar_t *)path, PATH_MAX)) + 2;
2449 /* MUST set path len (NameLength) to 0 opening root of share */
2450 req->NameLength = cpu_to_le16(uni_path_len - 2);
2451 copy_size = uni_path_len;
2452 if (copy_size % 8 != 0)
2453 copy_size = roundup(copy_size, 8);
2454 copy_path = kzalloc(copy_size, GFP_KERNEL);
2455 if (!copy_path)
2456 return -ENOMEM;
2457 memcpy((char *)copy_path, (const char *)path,
2458 uni_path_len);
2459 uni_path_len = copy_size;
2460 path = copy_path;
2461 }
2462
2463 iov[1].iov_len = uni_path_len;
2464 iov[1].iov_base = path;
2465
2466 if ((!server->oplocks) || (tcon->no_lease))
2467 *oplock = SMB2_OPLOCK_LEVEL_NONE;
2468
2469 if (!(server->capabilities & SMB2_GLOBAL_CAP_LEASING) ||
2470 *oplock == SMB2_OPLOCK_LEVEL_NONE)
2471 req->RequestedOplockLevel = *oplock;
2472 else if (!(server->capabilities & SMB2_GLOBAL_CAP_DIRECTORY_LEASING) &&
2473 (oparms->create_options & CREATE_NOT_FILE))
2474 req->RequestedOplockLevel = *oplock; /* no srv lease support */
2475 else {
2476 rc = add_lease_context(server, iov, &n_iov,
2477 oparms->fid->lease_key, oplock);
2478 if (rc)
2479 return rc;
2480 }
2481
2482 if (*oplock == SMB2_OPLOCK_LEVEL_BATCH) {
2483 /* need to set Next field of lease context if we request it */
2484 if (server->capabilities & SMB2_GLOBAL_CAP_LEASING) {
2485 struct create_context *ccontext =
2486 (struct create_context *)iov[n_iov-1].iov_base;
2487 ccontext->Next =
2488 cpu_to_le32(server->vals->create_lease_size);
2489 }
2490
2491 rc = add_durable_context(iov, &n_iov, oparms,
2492 tcon->use_persistent);
2493 if (rc)
2494 return rc;
2495 }
2496
2497 if (tcon->posix_extensions) {
2498 if (n_iov > 2) {
2499 struct create_context *ccontext =
2500 (struct create_context *)iov[n_iov-1].iov_base;
2501 ccontext->Next =
2502 cpu_to_le32(iov[n_iov-1].iov_len);
2503 }
2504
2505 rc = add_posix_context(iov, &n_iov, oparms->mode);
2506 if (rc)
2507 return rc;
2508 }
2509
2510 if (tcon->snapshot_time) {
2511 cifs_dbg(FYI, "adding snapshot context\n");
2512 if (n_iov > 2) {
2513 struct create_context *ccontext =
2514 (struct create_context *)iov[n_iov-1].iov_base;
2515 ccontext->Next =
2516 cpu_to_le32(iov[n_iov-1].iov_len);
2517 }
2518
2519 rc = add_twarp_context(iov, &n_iov, tcon->snapshot_time);
2520 if (rc)
2521 return rc;
2522 }
2523
2524 if ((oparms->disposition == FILE_CREATE) &&
2525 (oparms->mode != ACL_NO_MODE)) {
2526 if (n_iov > 2) {
2527 struct create_context *ccontext =
2528 (struct create_context *)iov[n_iov-1].iov_base;
2529 ccontext->Next =
2530 cpu_to_le32(iov[n_iov-1].iov_len);
2531 }
2532
2533 /* rc = add_sd_context(iov, &n_iov, oparms->mode); */
2534 if (rc)
2535 return rc;
2536 }
2537
2538 if (n_iov > 2) {
2539 struct create_context *ccontext =
2540 (struct create_context *)iov[n_iov-1].iov_base;
2541 ccontext->Next = cpu_to_le32(iov[n_iov-1].iov_len);
2542 }
2543 add_query_id_context(iov, &n_iov);
2544
2545 rqst->rq_nvec = n_iov;
2546 return 0;
2547 }
2548
2549 /* rq_iov[0] is the request and is released by cifs_small_buf_release().
2550 * All other vectors are freed by kfree().
2551 */
2552 void
SMB2_open_free(struct smb_rqst * rqst)2553 SMB2_open_free(struct smb_rqst *rqst)
2554 {
2555 int i;
2556
2557 if (rqst && rqst->rq_iov) {
2558 cifs_small_buf_release(rqst->rq_iov[0].iov_base);
2559 for (i = 1; i < rqst->rq_nvec; i++)
2560 if (rqst->rq_iov[i].iov_base != smb2_padding)
2561 kfree(rqst->rq_iov[i].iov_base);
2562 }
2563 }
2564
2565 int
SMB2_open(const unsigned int xid,struct cifs_open_parms * oparms,__le16 * path,__u8 * oplock,struct smb2_file_all_info * buf,struct kvec * err_iov,int * buftype)2566 SMB2_open(const unsigned int xid, struct cifs_open_parms *oparms, __le16 *path,
2567 __u8 *oplock, struct smb2_file_all_info *buf,
2568 struct kvec *err_iov, int *buftype)
2569 {
2570 struct smb_rqst rqst;
2571 struct smb2_create_rsp *rsp = NULL;
2572 struct TCP_Server_Info *server;
2573 struct cifs_tcon *tcon = oparms->tcon;
2574 struct cifs_ses *ses = tcon->ses;
2575 struct kvec iov[SMB2_CREATE_IOV_SIZE];
2576 struct kvec rsp_iov = {NULL, 0};
2577 int resp_buftype = CIFS_NO_BUFFER;
2578 int rc = 0;
2579 int flags = 0;
2580
2581 cifs_dbg(FYI, "create/open\n");
2582 if (ses && (ses->server))
2583 server = ses->server;
2584 else
2585 return -EIO;
2586
2587 if (smb3_encryption_required(tcon))
2588 flags |= CIFS_TRANSFORM_REQ;
2589
2590 memset(&rqst, 0, sizeof(struct smb_rqst));
2591 memset(&iov, 0, sizeof(iov));
2592 rqst.rq_iov = iov;
2593 rqst.rq_nvec = SMB2_CREATE_IOV_SIZE;
2594
2595 rc = SMB2_open_init(tcon, &rqst, oplock, oparms, path);
2596 if (rc)
2597 goto creat_exit;
2598
2599 trace_smb3_open_enter(xid, tcon->tid, tcon->ses->Suid,
2600 oparms->create_options, oparms->desired_access);
2601
2602 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags,
2603 &rsp_iov);
2604 rsp = (struct smb2_create_rsp *)rsp_iov.iov_base;
2605
2606 if (rc != 0) {
2607 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
2608 if (err_iov && rsp) {
2609 *err_iov = rsp_iov;
2610 *buftype = resp_buftype;
2611 resp_buftype = CIFS_NO_BUFFER;
2612 rsp = NULL;
2613 }
2614 trace_smb3_open_err(xid, tcon->tid, ses->Suid,
2615 oparms->create_options, oparms->desired_access, rc);
2616 if (rc == -EREMCHG) {
2617 printk_once(KERN_WARNING "server share %s deleted\n",
2618 tcon->treeName);
2619 tcon->need_reconnect = true;
2620 }
2621 goto creat_exit;
2622 } else
2623 trace_smb3_open_done(xid, rsp->PersistentFileId, tcon->tid,
2624 ses->Suid, oparms->create_options,
2625 oparms->desired_access);
2626
2627 atomic_inc(&tcon->num_remote_opens);
2628 oparms->fid->persistent_fid = rsp->PersistentFileId;
2629 oparms->fid->volatile_fid = rsp->VolatileFileId;
2630 #ifdef CONFIG_CIFS_DEBUG2
2631 oparms->fid->mid = le64_to_cpu(rsp->sync_hdr.MessageId);
2632 #endif /* CIFS_DEBUG2 */
2633
2634 if (buf) {
2635 memcpy(buf, &rsp->CreationTime, 32);
2636 buf->AllocationSize = rsp->AllocationSize;
2637 buf->EndOfFile = rsp->EndofFile;
2638 buf->Attributes = rsp->FileAttributes;
2639 buf->NumberOfLinks = cpu_to_le32(1);
2640 buf->DeletePending = 0;
2641 }
2642
2643
2644 smb2_parse_contexts(server, rsp, &oparms->fid->epoch,
2645 oparms->fid->lease_key, oplock, buf);
2646 creat_exit:
2647 SMB2_open_free(&rqst);
2648 free_rsp_buf(resp_buftype, rsp);
2649 return rc;
2650 }
2651
2652 int
SMB2_ioctl_init(struct cifs_tcon * tcon,struct smb_rqst * rqst,u64 persistent_fid,u64 volatile_fid,u32 opcode,bool is_fsctl,char * in_data,u32 indatalen,__u32 max_response_size)2653 SMB2_ioctl_init(struct cifs_tcon *tcon, struct smb_rqst *rqst,
2654 u64 persistent_fid, u64 volatile_fid, u32 opcode,
2655 bool is_fsctl, char *in_data, u32 indatalen,
2656 __u32 max_response_size)
2657 {
2658 struct smb2_ioctl_req *req;
2659 struct kvec *iov = rqst->rq_iov;
2660 unsigned int total_len;
2661 int rc;
2662 char *in_data_buf;
2663
2664 rc = smb2_plain_req_init(SMB2_IOCTL, tcon, (void **) &req, &total_len);
2665 if (rc)
2666 return rc;
2667
2668 if (indatalen) {
2669 /*
2670 * indatalen is usually small at a couple of bytes max, so
2671 * just allocate through generic pool
2672 */
2673 in_data_buf = kmemdup(in_data, indatalen, GFP_NOFS);
2674 if (!in_data_buf) {
2675 cifs_small_buf_release(req);
2676 return -ENOMEM;
2677 }
2678 }
2679
2680 req->CtlCode = cpu_to_le32(opcode);
2681 req->PersistentFileId = persistent_fid;
2682 req->VolatileFileId = volatile_fid;
2683
2684 iov[0].iov_base = (char *)req;
2685 /*
2686 * If no input data, the size of ioctl struct in
2687 * protocol spec still includes a 1 byte data buffer,
2688 * but if input data passed to ioctl, we do not
2689 * want to double count this, so we do not send
2690 * the dummy one byte of data in iovec[0] if sending
2691 * input data (in iovec[1]).
2692 */
2693 if (indatalen) {
2694 req->InputCount = cpu_to_le32(indatalen);
2695 /* do not set InputOffset if no input data */
2696 req->InputOffset =
2697 cpu_to_le32(offsetof(struct smb2_ioctl_req, Buffer));
2698 rqst->rq_nvec = 2;
2699 iov[0].iov_len = total_len - 1;
2700 iov[1].iov_base = in_data_buf;
2701 iov[1].iov_len = indatalen;
2702 } else {
2703 rqst->rq_nvec = 1;
2704 iov[0].iov_len = total_len;
2705 }
2706
2707 req->OutputOffset = 0;
2708 req->OutputCount = 0; /* MBZ */
2709
2710 /*
2711 * In most cases max_response_size is set to 16K (CIFSMaxBufSize)
2712 * We Could increase default MaxOutputResponse, but that could require
2713 * more credits. Windows typically sets this smaller, but for some
2714 * ioctls it may be useful to allow server to send more. No point
2715 * limiting what the server can send as long as fits in one credit
2716 * We can not handle more than CIFS_MAX_BUF_SIZE yet but may want
2717 * to increase this limit up in the future.
2718 * Note that for snapshot queries that servers like Azure expect that
2719 * the first query be minimal size (and just used to get the number/size
2720 * of previous versions) so response size must be specified as EXACTLY
2721 * sizeof(struct snapshot_array) which is 16 when rounded up to multiple
2722 * of eight bytes. Currently that is the only case where we set max
2723 * response size smaller.
2724 */
2725 req->MaxOutputResponse = cpu_to_le32(max_response_size);
2726
2727 if (is_fsctl)
2728 req->Flags = cpu_to_le32(SMB2_0_IOCTL_IS_FSCTL);
2729 else
2730 req->Flags = 0;
2731
2732 /* validate negotiate request must be signed - see MS-SMB2 3.2.5.5 */
2733 if (opcode == FSCTL_VALIDATE_NEGOTIATE_INFO)
2734 req->sync_hdr.Flags |= SMB2_FLAGS_SIGNED;
2735
2736 return 0;
2737 }
2738
2739 void
SMB2_ioctl_free(struct smb_rqst * rqst)2740 SMB2_ioctl_free(struct smb_rqst *rqst)
2741 {
2742 int i;
2743 if (rqst && rqst->rq_iov) {
2744 cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */
2745 for (i = 1; i < rqst->rq_nvec; i++)
2746 if (rqst->rq_iov[i].iov_base != smb2_padding)
2747 kfree(rqst->rq_iov[i].iov_base);
2748 }
2749 }
2750
2751
2752 /*
2753 * SMB2 IOCTL is used for both IOCTLs and FSCTLs
2754 */
2755 int
SMB2_ioctl(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid,u32 opcode,bool is_fsctl,char * in_data,u32 indatalen,u32 max_out_data_len,char ** out_data,u32 * plen)2756 SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
2757 u64 volatile_fid, u32 opcode, bool is_fsctl,
2758 char *in_data, u32 indatalen, u32 max_out_data_len,
2759 char **out_data, u32 *plen /* returned data len */)
2760 {
2761 struct smb_rqst rqst;
2762 struct smb2_ioctl_rsp *rsp = NULL;
2763 struct cifs_ses *ses;
2764 struct kvec iov[SMB2_IOCTL_IOV_SIZE];
2765 struct kvec rsp_iov = {NULL, 0};
2766 int resp_buftype = CIFS_NO_BUFFER;
2767 int rc = 0;
2768 int flags = 0;
2769 struct TCP_Server_Info *server;
2770
2771 cifs_dbg(FYI, "SMB2 IOCTL\n");
2772
2773 if (out_data != NULL)
2774 *out_data = NULL;
2775
2776 /* zero out returned data len, in case of error */
2777 if (plen)
2778 *plen = 0;
2779
2780 if (tcon)
2781 ses = tcon->ses;
2782 else
2783 return -EIO;
2784
2785 if (!ses)
2786 return -EIO;
2787 server = ses->server;
2788 if (!server)
2789 return -EIO;
2790
2791 if (smb3_encryption_required(tcon))
2792 flags |= CIFS_TRANSFORM_REQ;
2793
2794 memset(&rqst, 0, sizeof(struct smb_rqst));
2795 memset(&iov, 0, sizeof(iov));
2796 rqst.rq_iov = iov;
2797 rqst.rq_nvec = SMB2_IOCTL_IOV_SIZE;
2798
2799 rc = SMB2_ioctl_init(tcon, &rqst, persistent_fid, volatile_fid, opcode,
2800 is_fsctl, in_data, indatalen, max_out_data_len);
2801 if (rc)
2802 goto ioctl_exit;
2803
2804 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags,
2805 &rsp_iov);
2806 rsp = (struct smb2_ioctl_rsp *)rsp_iov.iov_base;
2807
2808 if (rc != 0)
2809 trace_smb3_fsctl_err(xid, persistent_fid, tcon->tid,
2810 ses->Suid, 0, opcode, rc);
2811
2812 if ((rc != 0) && (rc != -EINVAL) && (rc != -E2BIG)) {
2813 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
2814 goto ioctl_exit;
2815 } else if (rc == -EINVAL) {
2816 if ((opcode != FSCTL_SRV_COPYCHUNK_WRITE) &&
2817 (opcode != FSCTL_SRV_COPYCHUNK)) {
2818 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
2819 goto ioctl_exit;
2820 }
2821 } else if (rc == -E2BIG) {
2822 if (opcode != FSCTL_QUERY_ALLOCATED_RANGES) {
2823 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
2824 goto ioctl_exit;
2825 }
2826 }
2827
2828 /* check if caller wants to look at return data or just return rc */
2829 if ((plen == NULL) || (out_data == NULL))
2830 goto ioctl_exit;
2831
2832 *plen = le32_to_cpu(rsp->OutputCount);
2833
2834 /* We check for obvious errors in the output buffer length and offset */
2835 if (*plen == 0)
2836 goto ioctl_exit; /* server returned no data */
2837 else if (*plen > rsp_iov.iov_len || *plen > 0xFF00) {
2838 cifs_tcon_dbg(VFS, "srv returned invalid ioctl length: %d\n", *plen);
2839 *plen = 0;
2840 rc = -EIO;
2841 goto ioctl_exit;
2842 }
2843
2844 if (rsp_iov.iov_len - *plen < le32_to_cpu(rsp->OutputOffset)) {
2845 cifs_tcon_dbg(VFS, "Malformed ioctl resp: len %d offset %d\n", *plen,
2846 le32_to_cpu(rsp->OutputOffset));
2847 *plen = 0;
2848 rc = -EIO;
2849 goto ioctl_exit;
2850 }
2851
2852 *out_data = kmemdup((char *)rsp + le32_to_cpu(rsp->OutputOffset),
2853 *plen, GFP_KERNEL);
2854 if (*out_data == NULL) {
2855 rc = -ENOMEM;
2856 goto ioctl_exit;
2857 }
2858
2859 ioctl_exit:
2860 SMB2_ioctl_free(&rqst);
2861 free_rsp_buf(resp_buftype, rsp);
2862 return rc;
2863 }
2864
2865 /*
2866 * Individual callers to ioctl worker function follow
2867 */
2868
2869 int
SMB2_set_compression(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid)2870 SMB2_set_compression(const unsigned int xid, struct cifs_tcon *tcon,
2871 u64 persistent_fid, u64 volatile_fid)
2872 {
2873 int rc;
2874 struct compress_ioctl fsctl_input;
2875 char *ret_data = NULL;
2876
2877 fsctl_input.CompressionState =
2878 cpu_to_le16(COMPRESSION_FORMAT_DEFAULT);
2879
2880 rc = SMB2_ioctl(xid, tcon, persistent_fid, volatile_fid,
2881 FSCTL_SET_COMPRESSION, true /* is_fsctl */,
2882 (char *)&fsctl_input /* data input */,
2883 2 /* in data len */, CIFSMaxBufSize /* max out data */,
2884 &ret_data /* out data */, NULL);
2885
2886 cifs_dbg(FYI, "set compression rc %d\n", rc);
2887
2888 return rc;
2889 }
2890
2891 int
SMB2_close_init(struct cifs_tcon * tcon,struct smb_rqst * rqst,u64 persistent_fid,u64 volatile_fid)2892 SMB2_close_init(struct cifs_tcon *tcon, struct smb_rqst *rqst,
2893 u64 persistent_fid, u64 volatile_fid)
2894 {
2895 struct smb2_close_req *req;
2896 struct kvec *iov = rqst->rq_iov;
2897 unsigned int total_len;
2898 int rc;
2899
2900 rc = smb2_plain_req_init(SMB2_CLOSE, tcon, (void **) &req, &total_len);
2901 if (rc)
2902 return rc;
2903
2904 req->PersistentFileId = persistent_fid;
2905 req->VolatileFileId = volatile_fid;
2906 iov[0].iov_base = (char *)req;
2907 iov[0].iov_len = total_len;
2908
2909 return 0;
2910 }
2911
2912 void
SMB2_close_free(struct smb_rqst * rqst)2913 SMB2_close_free(struct smb_rqst *rqst)
2914 {
2915 if (rqst && rqst->rq_iov)
2916 cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */
2917 }
2918
2919 int
SMB2_close_flags(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid,int flags)2920 SMB2_close_flags(const unsigned int xid, struct cifs_tcon *tcon,
2921 u64 persistent_fid, u64 volatile_fid, int flags)
2922 {
2923 struct smb_rqst rqst;
2924 struct smb2_close_rsp *rsp = NULL;
2925 struct cifs_ses *ses = tcon->ses;
2926 struct kvec iov[1];
2927 struct kvec rsp_iov;
2928 int resp_buftype = CIFS_NO_BUFFER;
2929 int rc = 0;
2930
2931 cifs_dbg(FYI, "Close\n");
2932
2933 if (!ses || !(ses->server))
2934 return -EIO;
2935
2936 if (smb3_encryption_required(tcon))
2937 flags |= CIFS_TRANSFORM_REQ;
2938
2939 memset(&rqst, 0, sizeof(struct smb_rqst));
2940 memset(&iov, 0, sizeof(iov));
2941 rqst.rq_iov = iov;
2942 rqst.rq_nvec = 1;
2943
2944 trace_smb3_close_enter(xid, persistent_fid, tcon->tid, ses->Suid);
2945 rc = SMB2_close_init(tcon, &rqst, persistent_fid, volatile_fid);
2946 if (rc)
2947 goto close_exit;
2948
2949 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
2950 rsp = (struct smb2_close_rsp *)rsp_iov.iov_base;
2951
2952 if (rc != 0) {
2953 cifs_stats_fail_inc(tcon, SMB2_CLOSE_HE);
2954 trace_smb3_close_err(xid, persistent_fid, tcon->tid, ses->Suid,
2955 rc);
2956 goto close_exit;
2957 } else
2958 trace_smb3_close_done(xid, persistent_fid, tcon->tid,
2959 ses->Suid);
2960
2961 atomic_dec(&tcon->num_remote_opens);
2962
2963 /* BB FIXME - decode close response, update inode for caching */
2964
2965 close_exit:
2966 SMB2_close_free(&rqst);
2967 free_rsp_buf(resp_buftype, rsp);
2968 return rc;
2969 }
2970
2971 int
SMB2_close(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid)2972 SMB2_close(const unsigned int xid, struct cifs_tcon *tcon,
2973 u64 persistent_fid, u64 volatile_fid)
2974 {
2975 return SMB2_close_flags(xid, tcon, persistent_fid, volatile_fid, 0);
2976 }
2977
2978 int
smb2_validate_iov(unsigned int offset,unsigned int buffer_length,struct kvec * iov,unsigned int min_buf_size)2979 smb2_validate_iov(unsigned int offset, unsigned int buffer_length,
2980 struct kvec *iov, unsigned int min_buf_size)
2981 {
2982 unsigned int smb_len = iov->iov_len;
2983 char *end_of_smb = smb_len + (char *)iov->iov_base;
2984 char *begin_of_buf = offset + (char *)iov->iov_base;
2985 char *end_of_buf = begin_of_buf + buffer_length;
2986
2987
2988 if (buffer_length < min_buf_size) {
2989 cifs_dbg(VFS, "buffer length %d smaller than minimum size %d\n",
2990 buffer_length, min_buf_size);
2991 return -EINVAL;
2992 }
2993
2994 /* check if beyond RFC1001 maximum length */
2995 if ((smb_len > 0x7FFFFF) || (buffer_length > 0x7FFFFF)) {
2996 cifs_dbg(VFS, "buffer length %d or smb length %d too large\n",
2997 buffer_length, smb_len);
2998 return -EINVAL;
2999 }
3000
3001 if ((begin_of_buf > end_of_smb) || (end_of_buf > end_of_smb)) {
3002 cifs_dbg(VFS, "illegal server response, bad offset to data\n");
3003 return -EINVAL;
3004 }
3005
3006 return 0;
3007 }
3008
3009 /*
3010 * If SMB buffer fields are valid, copy into temporary buffer to hold result.
3011 * Caller must free buffer.
3012 */
3013 int
smb2_validate_and_copy_iov(unsigned int offset,unsigned int buffer_length,struct kvec * iov,unsigned int minbufsize,char * data)3014 smb2_validate_and_copy_iov(unsigned int offset, unsigned int buffer_length,
3015 struct kvec *iov, unsigned int minbufsize,
3016 char *data)
3017 {
3018 char *begin_of_buf = offset + (char *)iov->iov_base;
3019 int rc;
3020
3021 if (!data)
3022 return -EINVAL;
3023
3024 rc = smb2_validate_iov(offset, buffer_length, iov, minbufsize);
3025 if (rc)
3026 return rc;
3027
3028 memcpy(data, begin_of_buf, buffer_length);
3029
3030 return 0;
3031 }
3032
3033 int
SMB2_query_info_init(struct cifs_tcon * tcon,struct smb_rqst * rqst,u64 persistent_fid,u64 volatile_fid,u8 info_class,u8 info_type,u32 additional_info,size_t output_len,size_t input_len,void * input)3034 SMB2_query_info_init(struct cifs_tcon *tcon, struct smb_rqst *rqst,
3035 u64 persistent_fid, u64 volatile_fid,
3036 u8 info_class, u8 info_type, u32 additional_info,
3037 size_t output_len, size_t input_len, void *input)
3038 {
3039 struct smb2_query_info_req *req;
3040 struct kvec *iov = rqst->rq_iov;
3041 unsigned int total_len;
3042 int rc;
3043
3044 rc = smb2_plain_req_init(SMB2_QUERY_INFO, tcon, (void **) &req,
3045 &total_len);
3046 if (rc)
3047 return rc;
3048
3049 req->InfoType = info_type;
3050 req->FileInfoClass = info_class;
3051 req->PersistentFileId = persistent_fid;
3052 req->VolatileFileId = volatile_fid;
3053 req->AdditionalInformation = cpu_to_le32(additional_info);
3054
3055 req->OutputBufferLength = cpu_to_le32(output_len);
3056 if (input_len) {
3057 req->InputBufferLength = cpu_to_le32(input_len);
3058 /* total_len for smb query request never close to le16 max */
3059 req->InputBufferOffset = cpu_to_le16(total_len - 1);
3060 memcpy(req->Buffer, input, input_len);
3061 }
3062
3063 iov[0].iov_base = (char *)req;
3064 /* 1 for Buffer */
3065 iov[0].iov_len = total_len - 1 + input_len;
3066 return 0;
3067 }
3068
3069 void
SMB2_query_info_free(struct smb_rqst * rqst)3070 SMB2_query_info_free(struct smb_rqst *rqst)
3071 {
3072 if (rqst && rqst->rq_iov)
3073 cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */
3074 }
3075
3076 static int
query_info(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid,u8 info_class,u8 info_type,u32 additional_info,size_t output_len,size_t min_len,void ** data,u32 * dlen)3077 query_info(const unsigned int xid, struct cifs_tcon *tcon,
3078 u64 persistent_fid, u64 volatile_fid, u8 info_class, u8 info_type,
3079 u32 additional_info, size_t output_len, size_t min_len, void **data,
3080 u32 *dlen)
3081 {
3082 struct smb_rqst rqst;
3083 struct smb2_query_info_rsp *rsp = NULL;
3084 struct kvec iov[1];
3085 struct kvec rsp_iov;
3086 int rc = 0;
3087 int resp_buftype = CIFS_NO_BUFFER;
3088 struct cifs_ses *ses = tcon->ses;
3089 struct TCP_Server_Info *server;
3090 int flags = 0;
3091 bool allocated = false;
3092
3093 cifs_dbg(FYI, "Query Info\n");
3094
3095 if (!ses)
3096 return -EIO;
3097 server = ses->server;
3098 if (!server)
3099 return -EIO;
3100
3101 if (smb3_encryption_required(tcon))
3102 flags |= CIFS_TRANSFORM_REQ;
3103
3104 memset(&rqst, 0, sizeof(struct smb_rqst));
3105 memset(&iov, 0, sizeof(iov));
3106 rqst.rq_iov = iov;
3107 rqst.rq_nvec = 1;
3108
3109 rc = SMB2_query_info_init(tcon, &rqst, persistent_fid, volatile_fid,
3110 info_class, info_type, additional_info,
3111 output_len, 0, NULL);
3112 if (rc)
3113 goto qinf_exit;
3114
3115 trace_smb3_query_info_enter(xid, persistent_fid, tcon->tid,
3116 ses->Suid, info_class, (__u32)info_type);
3117
3118 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
3119 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
3120
3121 if (rc) {
3122 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
3123 trace_smb3_query_info_err(xid, persistent_fid, tcon->tid,
3124 ses->Suid, info_class, (__u32)info_type, rc);
3125 goto qinf_exit;
3126 }
3127
3128 trace_smb3_query_info_done(xid, persistent_fid, tcon->tid,
3129 ses->Suid, info_class, (__u32)info_type);
3130
3131 if (dlen) {
3132 *dlen = le32_to_cpu(rsp->OutputBufferLength);
3133 if (!*data) {
3134 *data = kmalloc(*dlen, GFP_KERNEL);
3135 if (!*data) {
3136 cifs_tcon_dbg(VFS,
3137 "Error %d allocating memory for acl\n",
3138 rc);
3139 *dlen = 0;
3140 rc = -ENOMEM;
3141 goto qinf_exit;
3142 }
3143 allocated = true;
3144 }
3145 }
3146
3147 rc = smb2_validate_and_copy_iov(le16_to_cpu(rsp->OutputBufferOffset),
3148 le32_to_cpu(rsp->OutputBufferLength),
3149 &rsp_iov, min_len, *data);
3150 if (rc && allocated) {
3151 kfree(*data);
3152 *data = NULL;
3153 *dlen = 0;
3154 }
3155
3156 qinf_exit:
3157 SMB2_query_info_free(&rqst);
3158 free_rsp_buf(resp_buftype, rsp);
3159 return rc;
3160 }
3161
SMB2_query_info(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid,struct smb2_file_all_info * data)3162 int SMB2_query_info(const unsigned int xid, struct cifs_tcon *tcon,
3163 u64 persistent_fid, u64 volatile_fid, struct smb2_file_all_info *data)
3164 {
3165 return query_info(xid, tcon, persistent_fid, volatile_fid,
3166 FILE_ALL_INFORMATION, SMB2_O_INFO_FILE, 0,
3167 sizeof(struct smb2_file_all_info) + PATH_MAX * 2,
3168 sizeof(struct smb2_file_all_info), (void **)&data,
3169 NULL);
3170 }
3171
3172 int
SMB2_query_acl(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid,void ** data,u32 * plen)3173 SMB2_query_acl(const unsigned int xid, struct cifs_tcon *tcon,
3174 u64 persistent_fid, u64 volatile_fid,
3175 void **data, u32 *plen)
3176 {
3177 __u32 additional_info = OWNER_SECINFO | GROUP_SECINFO | DACL_SECINFO;
3178 *plen = 0;
3179
3180 return query_info(xid, tcon, persistent_fid, volatile_fid,
3181 0, SMB2_O_INFO_SECURITY, additional_info,
3182 SMB2_MAX_BUFFER_SIZE, MIN_SEC_DESC_LEN, data, plen);
3183 }
3184
3185 int
SMB2_get_srv_num(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid,__le64 * uniqueid)3186 SMB2_get_srv_num(const unsigned int xid, struct cifs_tcon *tcon,
3187 u64 persistent_fid, u64 volatile_fid, __le64 *uniqueid)
3188 {
3189 return query_info(xid, tcon, persistent_fid, volatile_fid,
3190 FILE_INTERNAL_INFORMATION, SMB2_O_INFO_FILE, 0,
3191 sizeof(struct smb2_file_internal_info),
3192 sizeof(struct smb2_file_internal_info),
3193 (void **)&uniqueid, NULL);
3194 }
3195
3196 /*
3197 * CHANGE_NOTIFY Request is sent to get notifications on changes to a directory
3198 * See MS-SMB2 2.2.35 and 2.2.36
3199 */
3200
3201 static int
SMB2_notify_init(const unsigned int xid,struct smb_rqst * rqst,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid,u32 completion_filter,bool watch_tree)3202 SMB2_notify_init(const unsigned int xid, struct smb_rqst *rqst,
3203 struct cifs_tcon *tcon, u64 persistent_fid, u64 volatile_fid,
3204 u32 completion_filter, bool watch_tree)
3205 {
3206 struct smb2_change_notify_req *req;
3207 struct kvec *iov = rqst->rq_iov;
3208 unsigned int total_len;
3209 int rc;
3210
3211 rc = smb2_plain_req_init(SMB2_CHANGE_NOTIFY, tcon, (void **) &req, &total_len);
3212 if (rc)
3213 return rc;
3214
3215 req->PersistentFileId = persistent_fid;
3216 req->VolatileFileId = volatile_fid;
3217 req->OutputBufferLength =
3218 cpu_to_le32(SMB2_MAX_BUFFER_SIZE - MAX_SMB2_HDR_SIZE);
3219 req->CompletionFilter = cpu_to_le32(completion_filter);
3220 if (watch_tree)
3221 req->Flags = cpu_to_le16(SMB2_WATCH_TREE);
3222 else
3223 req->Flags = 0;
3224
3225 iov[0].iov_base = (char *)req;
3226 iov[0].iov_len = total_len;
3227
3228 return 0;
3229 }
3230
3231 int
SMB2_change_notify(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid,bool watch_tree,u32 completion_filter)3232 SMB2_change_notify(const unsigned int xid, struct cifs_tcon *tcon,
3233 u64 persistent_fid, u64 volatile_fid, bool watch_tree,
3234 u32 completion_filter)
3235 {
3236 struct cifs_ses *ses = tcon->ses;
3237 struct smb_rqst rqst;
3238 struct kvec iov[1];
3239 struct kvec rsp_iov = {NULL, 0};
3240 int resp_buftype = CIFS_NO_BUFFER;
3241 int flags = 0;
3242 int rc = 0;
3243
3244 cifs_dbg(FYI, "change notify\n");
3245 if (!ses || !(ses->server))
3246 return -EIO;
3247
3248 if (smb3_encryption_required(tcon))
3249 flags |= CIFS_TRANSFORM_REQ;
3250
3251 memset(&rqst, 0, sizeof(struct smb_rqst));
3252 memset(&iov, 0, sizeof(iov));
3253 rqst.rq_iov = iov;
3254 rqst.rq_nvec = 1;
3255
3256 rc = SMB2_notify_init(xid, &rqst, tcon, persistent_fid, volatile_fid,
3257 completion_filter, watch_tree);
3258 if (rc)
3259 goto cnotify_exit;
3260
3261 trace_smb3_notify_enter(xid, persistent_fid, tcon->tid, ses->Suid,
3262 (u8)watch_tree, completion_filter);
3263 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
3264
3265 if (rc != 0) {
3266 cifs_stats_fail_inc(tcon, SMB2_CHANGE_NOTIFY_HE);
3267 trace_smb3_notify_err(xid, persistent_fid, tcon->tid, ses->Suid,
3268 (u8)watch_tree, completion_filter, rc);
3269 } else
3270 trace_smb3_notify_done(xid, persistent_fid, tcon->tid,
3271 ses->Suid, (u8)watch_tree, completion_filter);
3272
3273 cnotify_exit:
3274 if (rqst.rq_iov)
3275 cifs_small_buf_release(rqst.rq_iov[0].iov_base); /* request */
3276 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
3277 return rc;
3278 }
3279
3280
3281
3282 /*
3283 * This is a no-op for now. We're not really interested in the reply, but
3284 * rather in the fact that the server sent one and that server->lstrp
3285 * gets updated.
3286 *
3287 * FIXME: maybe we should consider checking that the reply matches request?
3288 */
3289 static void
smb2_echo_callback(struct mid_q_entry * mid)3290 smb2_echo_callback(struct mid_q_entry *mid)
3291 {
3292 struct TCP_Server_Info *server = mid->callback_data;
3293 struct smb2_echo_rsp *rsp = (struct smb2_echo_rsp *)mid->resp_buf;
3294 struct cifs_credits credits = { .value = 0, .instance = 0 };
3295
3296 if (mid->mid_state == MID_RESPONSE_RECEIVED
3297 || mid->mid_state == MID_RESPONSE_MALFORMED) {
3298 credits.value = le16_to_cpu(rsp->sync_hdr.CreditRequest);
3299 credits.instance = server->reconnect_instance;
3300 }
3301
3302 DeleteMidQEntry(mid);
3303 add_credits(server, &credits, CIFS_ECHO_OP);
3304 }
3305
smb2_reconnect_server(struct work_struct * work)3306 void smb2_reconnect_server(struct work_struct *work)
3307 {
3308 struct TCP_Server_Info *server = container_of(work,
3309 struct TCP_Server_Info, reconnect.work);
3310 struct cifs_ses *ses;
3311 struct cifs_tcon *tcon, *tcon2;
3312 struct list_head tmp_list;
3313 int tcon_exist = false;
3314 int rc;
3315 int resched = false;
3316
3317
3318 /* Prevent simultaneous reconnects that can corrupt tcon->rlist list */
3319 mutex_lock(&server->reconnect_mutex);
3320
3321 INIT_LIST_HEAD(&tmp_list);
3322 cifs_dbg(FYI, "Need negotiate, reconnecting tcons\n");
3323
3324 spin_lock(&cifs_tcp_ses_lock);
3325 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
3326 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
3327 if (tcon->need_reconnect || tcon->need_reopen_files) {
3328 tcon->tc_count++;
3329 list_add_tail(&tcon->rlist, &tmp_list);
3330 tcon_exist = true;
3331 }
3332 }
3333 /*
3334 * IPC has the same lifetime as its session and uses its
3335 * refcount.
3336 */
3337 if (ses->tcon_ipc && ses->tcon_ipc->need_reconnect) {
3338 list_add_tail(&ses->tcon_ipc->rlist, &tmp_list);
3339 tcon_exist = true;
3340 ses->ses_count++;
3341 }
3342 }
3343 /*
3344 * Get the reference to server struct to be sure that the last call of
3345 * cifs_put_tcon() in the loop below won't release the server pointer.
3346 */
3347 if (tcon_exist)
3348 server->srv_count++;
3349
3350 spin_unlock(&cifs_tcp_ses_lock);
3351
3352 list_for_each_entry_safe(tcon, tcon2, &tmp_list, rlist) {
3353 rc = smb2_reconnect(SMB2_INTERNAL_CMD, tcon);
3354 if (!rc)
3355 cifs_reopen_persistent_handles(tcon);
3356 else
3357 resched = true;
3358 list_del_init(&tcon->rlist);
3359 if (tcon->ipc)
3360 cifs_put_smb_ses(tcon->ses);
3361 else
3362 cifs_put_tcon(tcon);
3363 }
3364
3365 cifs_dbg(FYI, "Reconnecting tcons finished\n");
3366 if (resched)
3367 queue_delayed_work(cifsiod_wq, &server->reconnect, 2 * HZ);
3368 mutex_unlock(&server->reconnect_mutex);
3369
3370 /* now we can safely release srv struct */
3371 if (tcon_exist)
3372 cifs_put_tcp_session(server, 1);
3373 }
3374
3375 int
SMB2_echo(struct TCP_Server_Info * server)3376 SMB2_echo(struct TCP_Server_Info *server)
3377 {
3378 struct smb2_echo_req *req;
3379 int rc = 0;
3380 struct kvec iov[1];
3381 struct smb_rqst rqst = { .rq_iov = iov,
3382 .rq_nvec = 1 };
3383 unsigned int total_len;
3384
3385 cifs_dbg(FYI, "In echo request\n");
3386
3387 if (server->tcpStatus == CifsNeedNegotiate) {
3388 /* No need to send echo on newly established connections */
3389 queue_delayed_work(cifsiod_wq, &server->reconnect, 0);
3390 return rc;
3391 }
3392
3393 rc = smb2_plain_req_init(SMB2_ECHO, NULL, (void **)&req, &total_len);
3394 if (rc)
3395 return rc;
3396
3397 req->sync_hdr.CreditRequest = cpu_to_le16(1);
3398
3399 iov[0].iov_len = total_len;
3400 iov[0].iov_base = (char *)req;
3401
3402 rc = cifs_call_async(server, &rqst, NULL, smb2_echo_callback, NULL,
3403 server, CIFS_ECHO_OP, NULL);
3404 if (rc)
3405 cifs_dbg(FYI, "Echo request failed: %d\n", rc);
3406
3407 cifs_small_buf_release(req);
3408 return rc;
3409 }
3410
3411 void
SMB2_flush_free(struct smb_rqst * rqst)3412 SMB2_flush_free(struct smb_rqst *rqst)
3413 {
3414 if (rqst && rqst->rq_iov)
3415 cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */
3416 }
3417
3418 int
SMB2_flush_init(const unsigned int xid,struct smb_rqst * rqst,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid)3419 SMB2_flush_init(const unsigned int xid, struct smb_rqst *rqst,
3420 struct cifs_tcon *tcon, u64 persistent_fid, u64 volatile_fid)
3421 {
3422 struct smb2_flush_req *req;
3423 struct kvec *iov = rqst->rq_iov;
3424 unsigned int total_len;
3425 int rc;
3426
3427 rc = smb2_plain_req_init(SMB2_FLUSH, tcon, (void **) &req, &total_len);
3428 if (rc)
3429 return rc;
3430
3431 req->PersistentFileId = persistent_fid;
3432 req->VolatileFileId = volatile_fid;
3433
3434 iov[0].iov_base = (char *)req;
3435 iov[0].iov_len = total_len;
3436
3437 return 0;
3438 }
3439
3440 int
SMB2_flush(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid)3441 SMB2_flush(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
3442 u64 volatile_fid)
3443 {
3444 struct cifs_ses *ses = tcon->ses;
3445 struct smb_rqst rqst;
3446 struct kvec iov[1];
3447 struct kvec rsp_iov = {NULL, 0};
3448 int resp_buftype = CIFS_NO_BUFFER;
3449 int flags = 0;
3450 int rc = 0;
3451
3452 cifs_dbg(FYI, "flush\n");
3453 if (!ses || !(ses->server))
3454 return -EIO;
3455
3456 if (smb3_encryption_required(tcon))
3457 flags |= CIFS_TRANSFORM_REQ;
3458
3459 memset(&rqst, 0, sizeof(struct smb_rqst));
3460 memset(&iov, 0, sizeof(iov));
3461 rqst.rq_iov = iov;
3462 rqst.rq_nvec = 1;
3463
3464 rc = SMB2_flush_init(xid, &rqst, tcon, persistent_fid, volatile_fid);
3465 if (rc)
3466 goto flush_exit;
3467
3468 trace_smb3_flush_enter(xid, persistent_fid, tcon->tid, ses->Suid);
3469 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
3470
3471 if (rc != 0) {
3472 cifs_stats_fail_inc(tcon, SMB2_FLUSH_HE);
3473 trace_smb3_flush_err(xid, persistent_fid, tcon->tid, ses->Suid,
3474 rc);
3475 } else
3476 trace_smb3_flush_done(xid, persistent_fid, tcon->tid,
3477 ses->Suid);
3478
3479 flush_exit:
3480 SMB2_flush_free(&rqst);
3481 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
3482 return rc;
3483 }
3484
3485 /*
3486 * To form a chain of read requests, any read requests after the first should
3487 * have the end_of_chain boolean set to true.
3488 */
3489 static int
smb2_new_read_req(void ** buf,unsigned int * total_len,struct cifs_io_parms * io_parms,struct cifs_readdata * rdata,unsigned int remaining_bytes,int request_type)3490 smb2_new_read_req(void **buf, unsigned int *total_len,
3491 struct cifs_io_parms *io_parms, struct cifs_readdata *rdata,
3492 unsigned int remaining_bytes, int request_type)
3493 {
3494 int rc = -EACCES;
3495 struct smb2_read_plain_req *req = NULL;
3496 struct smb2_sync_hdr *shdr;
3497 struct TCP_Server_Info *server;
3498
3499 rc = smb2_plain_req_init(SMB2_READ, io_parms->tcon, (void **) &req,
3500 total_len);
3501 if (rc)
3502 return rc;
3503
3504 server = io_parms->tcon->ses->server;
3505 if (server == NULL)
3506 return -ECONNABORTED;
3507
3508 shdr = &req->sync_hdr;
3509 shdr->ProcessId = cpu_to_le32(io_parms->pid);
3510
3511 req->PersistentFileId = io_parms->persistent_fid;
3512 req->VolatileFileId = io_parms->volatile_fid;
3513 req->ReadChannelInfoOffset = 0; /* reserved */
3514 req->ReadChannelInfoLength = 0; /* reserved */
3515 req->Channel = 0; /* reserved */
3516 req->MinimumCount = 0;
3517 req->Length = cpu_to_le32(io_parms->length);
3518 req->Offset = cpu_to_le64(io_parms->offset);
3519
3520 trace_smb3_read_enter(0 /* xid */,
3521 io_parms->persistent_fid,
3522 io_parms->tcon->tid, io_parms->tcon->ses->Suid,
3523 io_parms->offset, io_parms->length);
3524 #ifdef CONFIG_CIFS_SMB_DIRECT
3525 /*
3526 * If we want to do a RDMA write, fill in and append
3527 * smbd_buffer_descriptor_v1 to the end of read request
3528 */
3529 if (server->rdma && rdata && !server->sign &&
3530 rdata->bytes >= server->smbd_conn->rdma_readwrite_threshold) {
3531
3532 struct smbd_buffer_descriptor_v1 *v1;
3533 bool need_invalidate =
3534 io_parms->tcon->ses->server->dialect == SMB30_PROT_ID;
3535
3536 rdata->mr = smbd_register_mr(
3537 server->smbd_conn, rdata->pages,
3538 rdata->nr_pages, rdata->page_offset,
3539 rdata->tailsz, true, need_invalidate);
3540 if (!rdata->mr)
3541 return -EAGAIN;
3542
3543 req->Channel = SMB2_CHANNEL_RDMA_V1_INVALIDATE;
3544 if (need_invalidate)
3545 req->Channel = SMB2_CHANNEL_RDMA_V1;
3546 req->ReadChannelInfoOffset =
3547 cpu_to_le16(offsetof(struct smb2_read_plain_req, Buffer));
3548 req->ReadChannelInfoLength =
3549 cpu_to_le16(sizeof(struct smbd_buffer_descriptor_v1));
3550 v1 = (struct smbd_buffer_descriptor_v1 *) &req->Buffer[0];
3551 v1->offset = cpu_to_le64(rdata->mr->mr->iova);
3552 v1->token = cpu_to_le32(rdata->mr->mr->rkey);
3553 v1->length = cpu_to_le32(rdata->mr->mr->length);
3554
3555 *total_len += sizeof(*v1) - 1;
3556 }
3557 #endif
3558 if (request_type & CHAINED_REQUEST) {
3559 if (!(request_type & END_OF_CHAIN)) {
3560 /* next 8-byte aligned request */
3561 *total_len = DIV_ROUND_UP(*total_len, 8) * 8;
3562 shdr->NextCommand = cpu_to_le32(*total_len);
3563 } else /* END_OF_CHAIN */
3564 shdr->NextCommand = 0;
3565 if (request_type & RELATED_REQUEST) {
3566 shdr->Flags |= SMB2_FLAGS_RELATED_OPERATIONS;
3567 /*
3568 * Related requests use info from previous read request
3569 * in chain.
3570 */
3571 shdr->SessionId = 0xFFFFFFFF;
3572 shdr->TreeId = 0xFFFFFFFF;
3573 req->PersistentFileId = 0xFFFFFFFF;
3574 req->VolatileFileId = 0xFFFFFFFF;
3575 }
3576 }
3577 if (remaining_bytes > io_parms->length)
3578 req->RemainingBytes = cpu_to_le32(remaining_bytes);
3579 else
3580 req->RemainingBytes = 0;
3581
3582 *buf = req;
3583 return rc;
3584 }
3585
3586 static void
smb2_readv_callback(struct mid_q_entry * mid)3587 smb2_readv_callback(struct mid_q_entry *mid)
3588 {
3589 struct cifs_readdata *rdata = mid->callback_data;
3590 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
3591 struct TCP_Server_Info *server = tcon->ses->server;
3592 struct smb2_sync_hdr *shdr =
3593 (struct smb2_sync_hdr *)rdata->iov[0].iov_base;
3594 struct cifs_credits credits = { .value = 0, .instance = 0 };
3595 struct smb_rqst rqst = { .rq_iov = &rdata->iov[1],
3596 .rq_nvec = 1,
3597 .rq_pages = rdata->pages,
3598 .rq_offset = rdata->page_offset,
3599 .rq_npages = rdata->nr_pages,
3600 .rq_pagesz = rdata->pagesz,
3601 .rq_tailsz = rdata->tailsz };
3602
3603 cifs_dbg(FYI, "%s: mid=%llu state=%d result=%d bytes=%u\n",
3604 __func__, mid->mid, mid->mid_state, rdata->result,
3605 rdata->bytes);
3606
3607 switch (mid->mid_state) {
3608 case MID_RESPONSE_RECEIVED:
3609 credits.value = le16_to_cpu(shdr->CreditRequest);
3610 credits.instance = server->reconnect_instance;
3611 /* result already set, check signature */
3612 if (server->sign && !mid->decrypted) {
3613 int rc;
3614
3615 rc = smb2_verify_signature(&rqst, server);
3616 if (rc)
3617 cifs_tcon_dbg(VFS, "SMB signature verification returned error = %d\n",
3618 rc);
3619 }
3620 /* FIXME: should this be counted toward the initiating task? */
3621 task_io_account_read(rdata->got_bytes);
3622 cifs_stats_bytes_read(tcon, rdata->got_bytes);
3623 break;
3624 case MID_REQUEST_SUBMITTED:
3625 case MID_RETRY_NEEDED:
3626 rdata->result = -EAGAIN;
3627 if (server->sign && rdata->got_bytes)
3628 /* reset bytes number since we can not check a sign */
3629 rdata->got_bytes = 0;
3630 /* FIXME: should this be counted toward the initiating task? */
3631 task_io_account_read(rdata->got_bytes);
3632 cifs_stats_bytes_read(tcon, rdata->got_bytes);
3633 break;
3634 case MID_RESPONSE_MALFORMED:
3635 credits.value = le16_to_cpu(shdr->CreditRequest);
3636 credits.instance = server->reconnect_instance;
3637 /* fall through */
3638 default:
3639 rdata->result = -EIO;
3640 }
3641 #ifdef CONFIG_CIFS_SMB_DIRECT
3642 /*
3643 * If this rdata has a memmory registered, the MR can be freed
3644 * MR needs to be freed as soon as I/O finishes to prevent deadlock
3645 * because they have limited number and are used for future I/Os
3646 */
3647 if (rdata->mr) {
3648 smbd_deregister_mr(rdata->mr);
3649 rdata->mr = NULL;
3650 }
3651 #endif
3652 if (rdata->result && rdata->result != -ENODATA) {
3653 cifs_stats_fail_inc(tcon, SMB2_READ_HE);
3654 trace_smb3_read_err(0 /* xid */,
3655 rdata->cfile->fid.persistent_fid,
3656 tcon->tid, tcon->ses->Suid, rdata->offset,
3657 rdata->bytes, rdata->result);
3658 } else
3659 trace_smb3_read_done(0 /* xid */,
3660 rdata->cfile->fid.persistent_fid,
3661 tcon->tid, tcon->ses->Suid,
3662 rdata->offset, rdata->got_bytes);
3663
3664 queue_work(cifsiod_wq, &rdata->work);
3665 DeleteMidQEntry(mid);
3666 add_credits(server, &credits, 0);
3667 }
3668
3669 /* smb2_async_readv - send an async read, and set up mid to handle result */
3670 int
smb2_async_readv(struct cifs_readdata * rdata)3671 smb2_async_readv(struct cifs_readdata *rdata)
3672 {
3673 int rc, flags = 0;
3674 char *buf;
3675 struct smb2_sync_hdr *shdr;
3676 struct cifs_io_parms io_parms;
3677 struct smb_rqst rqst = { .rq_iov = rdata->iov,
3678 .rq_nvec = 1 };
3679 struct TCP_Server_Info *server;
3680 unsigned int total_len;
3681
3682 cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n",
3683 __func__, rdata->offset, rdata->bytes);
3684
3685 io_parms.tcon = tlink_tcon(rdata->cfile->tlink);
3686 io_parms.offset = rdata->offset;
3687 io_parms.length = rdata->bytes;
3688 io_parms.persistent_fid = rdata->cfile->fid.persistent_fid;
3689 io_parms.volatile_fid = rdata->cfile->fid.volatile_fid;
3690 io_parms.pid = rdata->pid;
3691
3692 server = io_parms.tcon->ses->server;
3693
3694 rc = smb2_new_read_req(
3695 (void **) &buf, &total_len, &io_parms, rdata, 0, 0);
3696 if (rc)
3697 return rc;
3698
3699 if (smb3_encryption_required(io_parms.tcon))
3700 flags |= CIFS_TRANSFORM_REQ;
3701
3702 rdata->iov[0].iov_base = buf;
3703 rdata->iov[0].iov_len = total_len;
3704
3705 shdr = (struct smb2_sync_hdr *)buf;
3706
3707 if (rdata->credits.value > 0) {
3708 shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(rdata->bytes,
3709 SMB2_MAX_BUFFER_SIZE));
3710 shdr->CreditRequest =
3711 cpu_to_le16(le16_to_cpu(shdr->CreditCharge) + 1);
3712
3713 rc = adjust_credits(server, &rdata->credits, rdata->bytes);
3714 if (rc)
3715 goto async_readv_out;
3716
3717 flags |= CIFS_HAS_CREDITS;
3718 }
3719
3720 kref_get(&rdata->refcount);
3721 rc = cifs_call_async(io_parms.tcon->ses->server, &rqst,
3722 cifs_readv_receive, smb2_readv_callback,
3723 smb3_handle_read_data, rdata, flags,
3724 &rdata->credits);
3725 if (rc) {
3726 kref_put(&rdata->refcount, cifs_readdata_release);
3727 cifs_stats_fail_inc(io_parms.tcon, SMB2_READ_HE);
3728 trace_smb3_read_err(0 /* xid */, io_parms.persistent_fid,
3729 io_parms.tcon->tid,
3730 io_parms.tcon->ses->Suid,
3731 io_parms.offset, io_parms.length, rc);
3732 }
3733
3734 async_readv_out:
3735 cifs_small_buf_release(buf);
3736 return rc;
3737 }
3738
3739 int
SMB2_read(const unsigned int xid,struct cifs_io_parms * io_parms,unsigned int * nbytes,char ** buf,int * buf_type)3740 SMB2_read(const unsigned int xid, struct cifs_io_parms *io_parms,
3741 unsigned int *nbytes, char **buf, int *buf_type)
3742 {
3743 struct smb_rqst rqst;
3744 int resp_buftype, rc;
3745 struct smb2_read_plain_req *req = NULL;
3746 struct smb2_read_rsp *rsp = NULL;
3747 struct kvec iov[1];
3748 struct kvec rsp_iov;
3749 unsigned int total_len;
3750 int flags = CIFS_LOG_ERROR;
3751 struct cifs_ses *ses = io_parms->tcon->ses;
3752
3753 *nbytes = 0;
3754 rc = smb2_new_read_req((void **)&req, &total_len, io_parms, NULL, 0, 0);
3755 if (rc)
3756 return rc;
3757
3758 if (smb3_encryption_required(io_parms->tcon))
3759 flags |= CIFS_TRANSFORM_REQ;
3760
3761 iov[0].iov_base = (char *)req;
3762 iov[0].iov_len = total_len;
3763
3764 memset(&rqst, 0, sizeof(struct smb_rqst));
3765 rqst.rq_iov = iov;
3766 rqst.rq_nvec = 1;
3767
3768 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
3769 rsp = (struct smb2_read_rsp *)rsp_iov.iov_base;
3770
3771 if (rc) {
3772 if (rc != -ENODATA) {
3773 cifs_stats_fail_inc(io_parms->tcon, SMB2_READ_HE);
3774 cifs_dbg(VFS, "Send error in read = %d\n", rc);
3775 trace_smb3_read_err(xid, req->PersistentFileId,
3776 io_parms->tcon->tid, ses->Suid,
3777 io_parms->offset, io_parms->length,
3778 rc);
3779 } else
3780 trace_smb3_read_done(xid, req->PersistentFileId,
3781 io_parms->tcon->tid, ses->Suid,
3782 io_parms->offset, 0);
3783 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
3784 cifs_small_buf_release(req);
3785 return rc == -ENODATA ? 0 : rc;
3786 } else
3787 trace_smb3_read_done(xid, req->PersistentFileId,
3788 io_parms->tcon->tid, ses->Suid,
3789 io_parms->offset, io_parms->length);
3790
3791 cifs_small_buf_release(req);
3792
3793 *nbytes = le32_to_cpu(rsp->DataLength);
3794 if ((*nbytes > CIFS_MAX_MSGSIZE) ||
3795 (*nbytes > io_parms->length)) {
3796 cifs_dbg(FYI, "bad length %d for count %d\n",
3797 *nbytes, io_parms->length);
3798 rc = -EIO;
3799 *nbytes = 0;
3800 }
3801
3802 if (*buf) {
3803 memcpy(*buf, (char *)rsp + rsp->DataOffset, *nbytes);
3804 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
3805 } else if (resp_buftype != CIFS_NO_BUFFER) {
3806 *buf = rsp_iov.iov_base;
3807 if (resp_buftype == CIFS_SMALL_BUFFER)
3808 *buf_type = CIFS_SMALL_BUFFER;
3809 else if (resp_buftype == CIFS_LARGE_BUFFER)
3810 *buf_type = CIFS_LARGE_BUFFER;
3811 }
3812 return rc;
3813 }
3814
3815 /*
3816 * Check the mid_state and signature on received buffer (if any), and queue the
3817 * workqueue completion task.
3818 */
3819 static void
smb2_writev_callback(struct mid_q_entry * mid)3820 smb2_writev_callback(struct mid_q_entry *mid)
3821 {
3822 struct cifs_writedata *wdata = mid->callback_data;
3823 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
3824 struct TCP_Server_Info *server = tcon->ses->server;
3825 unsigned int written;
3826 struct smb2_write_rsp *rsp = (struct smb2_write_rsp *)mid->resp_buf;
3827 struct cifs_credits credits = { .value = 0, .instance = 0 };
3828
3829 switch (mid->mid_state) {
3830 case MID_RESPONSE_RECEIVED:
3831 credits.value = le16_to_cpu(rsp->sync_hdr.CreditRequest);
3832 credits.instance = server->reconnect_instance;
3833 wdata->result = smb2_check_receive(mid, server, 0);
3834 if (wdata->result != 0)
3835 break;
3836
3837 written = le32_to_cpu(rsp->DataLength);
3838 /*
3839 * Mask off high 16 bits when bytes written as returned
3840 * by the server is greater than bytes requested by the
3841 * client. OS/2 servers are known to set incorrect
3842 * CountHigh values.
3843 */
3844 if (written > wdata->bytes)
3845 written &= 0xFFFF;
3846
3847 if (written < wdata->bytes)
3848 wdata->result = -ENOSPC;
3849 else
3850 wdata->bytes = written;
3851 break;
3852 case MID_REQUEST_SUBMITTED:
3853 case MID_RETRY_NEEDED:
3854 wdata->result = -EAGAIN;
3855 break;
3856 case MID_RESPONSE_MALFORMED:
3857 credits.value = le16_to_cpu(rsp->sync_hdr.CreditRequest);
3858 credits.instance = server->reconnect_instance;
3859 /* fall through */
3860 default:
3861 wdata->result = -EIO;
3862 break;
3863 }
3864 #ifdef CONFIG_CIFS_SMB_DIRECT
3865 /*
3866 * If this wdata has a memory registered, the MR can be freed
3867 * The number of MRs available is limited, it's important to recover
3868 * used MR as soon as I/O is finished. Hold MR longer in the later
3869 * I/O process can possibly result in I/O deadlock due to lack of MR
3870 * to send request on I/O retry
3871 */
3872 if (wdata->mr) {
3873 smbd_deregister_mr(wdata->mr);
3874 wdata->mr = NULL;
3875 }
3876 #endif
3877 if (wdata->result) {
3878 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
3879 trace_smb3_write_err(0 /* no xid */,
3880 wdata->cfile->fid.persistent_fid,
3881 tcon->tid, tcon->ses->Suid, wdata->offset,
3882 wdata->bytes, wdata->result);
3883 } else
3884 trace_smb3_write_done(0 /* no xid */,
3885 wdata->cfile->fid.persistent_fid,
3886 tcon->tid, tcon->ses->Suid,
3887 wdata->offset, wdata->bytes);
3888
3889 queue_work(cifsiod_wq, &wdata->work);
3890 DeleteMidQEntry(mid);
3891 add_credits(server, &credits, 0);
3892 }
3893
3894 /* smb2_async_writev - send an async write, and set up mid to handle result */
3895 int
smb2_async_writev(struct cifs_writedata * wdata,void (* release)(struct kref * kref))3896 smb2_async_writev(struct cifs_writedata *wdata,
3897 void (*release)(struct kref *kref))
3898 {
3899 int rc = -EACCES, flags = 0;
3900 struct smb2_write_req *req = NULL;
3901 struct smb2_sync_hdr *shdr;
3902 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
3903 struct TCP_Server_Info *server = tcon->ses->server;
3904 struct kvec iov[1];
3905 struct smb_rqst rqst = { };
3906 unsigned int total_len;
3907
3908 rc = smb2_plain_req_init(SMB2_WRITE, tcon, (void **) &req, &total_len);
3909 if (rc)
3910 return rc;
3911
3912 if (smb3_encryption_required(tcon))
3913 flags |= CIFS_TRANSFORM_REQ;
3914
3915 shdr = (struct smb2_sync_hdr *)req;
3916 shdr->ProcessId = cpu_to_le32(wdata->cfile->pid);
3917
3918 req->PersistentFileId = wdata->cfile->fid.persistent_fid;
3919 req->VolatileFileId = wdata->cfile->fid.volatile_fid;
3920 req->WriteChannelInfoOffset = 0;
3921 req->WriteChannelInfoLength = 0;
3922 req->Channel = 0;
3923 req->Offset = cpu_to_le64(wdata->offset);
3924 req->DataOffset = cpu_to_le16(
3925 offsetof(struct smb2_write_req, Buffer));
3926 req->RemainingBytes = 0;
3927
3928 trace_smb3_write_enter(0 /* xid */, wdata->cfile->fid.persistent_fid,
3929 tcon->tid, tcon->ses->Suid, wdata->offset, wdata->bytes);
3930 #ifdef CONFIG_CIFS_SMB_DIRECT
3931 /*
3932 * If we want to do a server RDMA read, fill in and append
3933 * smbd_buffer_descriptor_v1 to the end of write request
3934 */
3935 if (server->rdma && !server->sign && wdata->bytes >=
3936 server->smbd_conn->rdma_readwrite_threshold) {
3937
3938 struct smbd_buffer_descriptor_v1 *v1;
3939 bool need_invalidate = server->dialect == SMB30_PROT_ID;
3940
3941 wdata->mr = smbd_register_mr(
3942 server->smbd_conn, wdata->pages,
3943 wdata->nr_pages, wdata->page_offset,
3944 wdata->tailsz, false, need_invalidate);
3945 if (!wdata->mr) {
3946 rc = -EAGAIN;
3947 goto async_writev_out;
3948 }
3949 req->Length = 0;
3950 req->DataOffset = 0;
3951 if (wdata->nr_pages > 1)
3952 req->RemainingBytes =
3953 cpu_to_le32(
3954 (wdata->nr_pages - 1) * wdata->pagesz -
3955 wdata->page_offset + wdata->tailsz
3956 );
3957 else
3958 req->RemainingBytes = cpu_to_le32(wdata->tailsz);
3959 req->Channel = SMB2_CHANNEL_RDMA_V1_INVALIDATE;
3960 if (need_invalidate)
3961 req->Channel = SMB2_CHANNEL_RDMA_V1;
3962 req->WriteChannelInfoOffset =
3963 cpu_to_le16(offsetof(struct smb2_write_req, Buffer));
3964 req->WriteChannelInfoLength =
3965 cpu_to_le16(sizeof(struct smbd_buffer_descriptor_v1));
3966 v1 = (struct smbd_buffer_descriptor_v1 *) &req->Buffer[0];
3967 v1->offset = cpu_to_le64(wdata->mr->mr->iova);
3968 v1->token = cpu_to_le32(wdata->mr->mr->rkey);
3969 v1->length = cpu_to_le32(wdata->mr->mr->length);
3970 }
3971 #endif
3972 iov[0].iov_len = total_len - 1;
3973 iov[0].iov_base = (char *)req;
3974
3975 rqst.rq_iov = iov;
3976 rqst.rq_nvec = 1;
3977 rqst.rq_pages = wdata->pages;
3978 rqst.rq_offset = wdata->page_offset;
3979 rqst.rq_npages = wdata->nr_pages;
3980 rqst.rq_pagesz = wdata->pagesz;
3981 rqst.rq_tailsz = wdata->tailsz;
3982 #ifdef CONFIG_CIFS_SMB_DIRECT
3983 if (wdata->mr) {
3984 iov[0].iov_len += sizeof(struct smbd_buffer_descriptor_v1);
3985 rqst.rq_npages = 0;
3986 }
3987 #endif
3988 cifs_dbg(FYI, "async write at %llu %u bytes\n",
3989 wdata->offset, wdata->bytes);
3990
3991 #ifdef CONFIG_CIFS_SMB_DIRECT
3992 /* For RDMA read, I/O size is in RemainingBytes not in Length */
3993 if (!wdata->mr)
3994 req->Length = cpu_to_le32(wdata->bytes);
3995 #else
3996 req->Length = cpu_to_le32(wdata->bytes);
3997 #endif
3998
3999 if (wdata->credits.value > 0) {
4000 shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(wdata->bytes,
4001 SMB2_MAX_BUFFER_SIZE));
4002 shdr->CreditRequest =
4003 cpu_to_le16(le16_to_cpu(shdr->CreditCharge) + 1);
4004
4005 rc = adjust_credits(server, &wdata->credits, wdata->bytes);
4006 if (rc)
4007 goto async_writev_out;
4008
4009 flags |= CIFS_HAS_CREDITS;
4010 }
4011
4012 kref_get(&wdata->refcount);
4013 rc = cifs_call_async(server, &rqst, NULL, smb2_writev_callback, NULL,
4014 wdata, flags, &wdata->credits);
4015
4016 if (rc) {
4017 trace_smb3_write_err(0 /* no xid */, req->PersistentFileId,
4018 tcon->tid, tcon->ses->Suid, wdata->offset,
4019 wdata->bytes, rc);
4020 kref_put(&wdata->refcount, release);
4021 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
4022 }
4023
4024 async_writev_out:
4025 cifs_small_buf_release(req);
4026 return rc;
4027 }
4028
4029 /*
4030 * SMB2_write function gets iov pointer to kvec array with n_vec as a length.
4031 * The length field from io_parms must be at least 1 and indicates a number of
4032 * elements with data to write that begins with position 1 in iov array. All
4033 * data length is specified by count.
4034 */
4035 int
SMB2_write(const unsigned int xid,struct cifs_io_parms * io_parms,unsigned int * nbytes,struct kvec * iov,int n_vec)4036 SMB2_write(const unsigned int xid, struct cifs_io_parms *io_parms,
4037 unsigned int *nbytes, struct kvec *iov, int n_vec)
4038 {
4039 struct smb_rqst rqst;
4040 int rc = 0;
4041 struct smb2_write_req *req = NULL;
4042 struct smb2_write_rsp *rsp = NULL;
4043 int resp_buftype;
4044 struct kvec rsp_iov;
4045 int flags = 0;
4046 unsigned int total_len;
4047
4048 *nbytes = 0;
4049
4050 if (n_vec < 1)
4051 return rc;
4052
4053 rc = smb2_plain_req_init(SMB2_WRITE, io_parms->tcon, (void **) &req,
4054 &total_len);
4055 if (rc)
4056 return rc;
4057
4058 if (io_parms->tcon->ses->server == NULL)
4059 return -ECONNABORTED;
4060
4061 if (smb3_encryption_required(io_parms->tcon))
4062 flags |= CIFS_TRANSFORM_REQ;
4063
4064 req->sync_hdr.ProcessId = cpu_to_le32(io_parms->pid);
4065
4066 req->PersistentFileId = io_parms->persistent_fid;
4067 req->VolatileFileId = io_parms->volatile_fid;
4068 req->WriteChannelInfoOffset = 0;
4069 req->WriteChannelInfoLength = 0;
4070 req->Channel = 0;
4071 req->Length = cpu_to_le32(io_parms->length);
4072 req->Offset = cpu_to_le64(io_parms->offset);
4073 req->DataOffset = cpu_to_le16(
4074 offsetof(struct smb2_write_req, Buffer));
4075 req->RemainingBytes = 0;
4076
4077 trace_smb3_write_enter(xid, io_parms->persistent_fid,
4078 io_parms->tcon->tid, io_parms->tcon->ses->Suid,
4079 io_parms->offset, io_parms->length);
4080
4081 iov[0].iov_base = (char *)req;
4082 /* 1 for Buffer */
4083 iov[0].iov_len = total_len - 1;
4084
4085 memset(&rqst, 0, sizeof(struct smb_rqst));
4086 rqst.rq_iov = iov;
4087 rqst.rq_nvec = n_vec + 1;
4088
4089 rc = cifs_send_recv(xid, io_parms->tcon->ses, &rqst,
4090 &resp_buftype, flags, &rsp_iov);
4091 rsp = (struct smb2_write_rsp *)rsp_iov.iov_base;
4092
4093 if (rc) {
4094 trace_smb3_write_err(xid, req->PersistentFileId,
4095 io_parms->tcon->tid,
4096 io_parms->tcon->ses->Suid,
4097 io_parms->offset, io_parms->length, rc);
4098 cifs_stats_fail_inc(io_parms->tcon, SMB2_WRITE_HE);
4099 cifs_dbg(VFS, "Send error in write = %d\n", rc);
4100 } else {
4101 *nbytes = le32_to_cpu(rsp->DataLength);
4102 trace_smb3_write_done(xid, req->PersistentFileId,
4103 io_parms->tcon->tid,
4104 io_parms->tcon->ses->Suid,
4105 io_parms->offset, *nbytes);
4106 }
4107
4108 cifs_small_buf_release(req);
4109 free_rsp_buf(resp_buftype, rsp);
4110 return rc;
4111 }
4112
4113 static unsigned int
num_entries(char * bufstart,char * end_of_buf,char ** lastentry,size_t size)4114 num_entries(char *bufstart, char *end_of_buf, char **lastentry, size_t size)
4115 {
4116 int len;
4117 unsigned int entrycount = 0;
4118 unsigned int next_offset = 0;
4119 char *entryptr;
4120 FILE_DIRECTORY_INFO *dir_info;
4121
4122 if (bufstart == NULL)
4123 return 0;
4124
4125 entryptr = bufstart;
4126
4127 while (1) {
4128 if (entryptr + next_offset < entryptr ||
4129 entryptr + next_offset > end_of_buf ||
4130 entryptr + next_offset + size > end_of_buf) {
4131 cifs_dbg(VFS, "malformed search entry would overflow\n");
4132 break;
4133 }
4134
4135 entryptr = entryptr + next_offset;
4136 dir_info = (FILE_DIRECTORY_INFO *)entryptr;
4137
4138 len = le32_to_cpu(dir_info->FileNameLength);
4139 if (entryptr + len < entryptr ||
4140 entryptr + len > end_of_buf ||
4141 entryptr + len + size > end_of_buf) {
4142 cifs_dbg(VFS, "directory entry name would overflow frame end of buf %p\n",
4143 end_of_buf);
4144 break;
4145 }
4146
4147 *lastentry = entryptr;
4148 entrycount++;
4149
4150 next_offset = le32_to_cpu(dir_info->NextEntryOffset);
4151 if (!next_offset)
4152 break;
4153 }
4154
4155 return entrycount;
4156 }
4157
4158 /*
4159 * Readdir/FindFirst
4160 */
4161 int
SMB2_query_directory(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid,int index,struct cifs_search_info * srch_inf)4162 SMB2_query_directory(const unsigned int xid, struct cifs_tcon *tcon,
4163 u64 persistent_fid, u64 volatile_fid, int index,
4164 struct cifs_search_info *srch_inf)
4165 {
4166 struct smb_rqst rqst;
4167 struct smb2_query_directory_req *req;
4168 struct smb2_query_directory_rsp *rsp = NULL;
4169 struct kvec iov[2];
4170 struct kvec rsp_iov;
4171 int rc = 0;
4172 int len;
4173 int resp_buftype = CIFS_NO_BUFFER;
4174 unsigned char *bufptr;
4175 struct TCP_Server_Info *server;
4176 struct cifs_ses *ses = tcon->ses;
4177 __le16 asteriks = cpu_to_le16('*');
4178 char *end_of_smb;
4179 unsigned int output_size = CIFSMaxBufSize;
4180 size_t info_buf_size;
4181 int flags = 0;
4182 unsigned int total_len;
4183
4184 if (ses && (ses->server))
4185 server = ses->server;
4186 else
4187 return -EIO;
4188
4189 rc = smb2_plain_req_init(SMB2_QUERY_DIRECTORY, tcon, (void **) &req,
4190 &total_len);
4191 if (rc)
4192 return rc;
4193
4194 if (smb3_encryption_required(tcon))
4195 flags |= CIFS_TRANSFORM_REQ;
4196
4197 switch (srch_inf->info_level) {
4198 case SMB_FIND_FILE_DIRECTORY_INFO:
4199 req->FileInformationClass = FILE_DIRECTORY_INFORMATION;
4200 info_buf_size = sizeof(FILE_DIRECTORY_INFO) - 1;
4201 break;
4202 case SMB_FIND_FILE_ID_FULL_DIR_INFO:
4203 req->FileInformationClass = FILEID_FULL_DIRECTORY_INFORMATION;
4204 info_buf_size = sizeof(SEARCH_ID_FULL_DIR_INFO) - 1;
4205 break;
4206 default:
4207 cifs_tcon_dbg(VFS, "info level %u isn't supported\n",
4208 srch_inf->info_level);
4209 rc = -EINVAL;
4210 goto qdir_exit;
4211 }
4212
4213 req->FileIndex = cpu_to_le32(index);
4214 req->PersistentFileId = persistent_fid;
4215 req->VolatileFileId = volatile_fid;
4216
4217 len = 0x2;
4218 bufptr = req->Buffer;
4219 memcpy(bufptr, &asteriks, len);
4220
4221 req->FileNameOffset =
4222 cpu_to_le16(sizeof(struct smb2_query_directory_req) - 1);
4223 req->FileNameLength = cpu_to_le16(len);
4224 /*
4225 * BB could be 30 bytes or so longer if we used SMB2 specific
4226 * buffer lengths, but this is safe and close enough.
4227 */
4228 output_size = min_t(unsigned int, output_size, server->maxBuf);
4229 output_size = min_t(unsigned int, output_size, 2 << 15);
4230 req->OutputBufferLength = cpu_to_le32(output_size);
4231
4232 iov[0].iov_base = (char *)req;
4233 /* 1 for Buffer */
4234 iov[0].iov_len = total_len - 1;
4235
4236 iov[1].iov_base = (char *)(req->Buffer);
4237 iov[1].iov_len = len;
4238
4239 memset(&rqst, 0, sizeof(struct smb_rqst));
4240 rqst.rq_iov = iov;
4241 rqst.rq_nvec = 2;
4242
4243 trace_smb3_query_dir_enter(xid, persistent_fid, tcon->tid,
4244 tcon->ses->Suid, index, output_size);
4245
4246 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
4247 cifs_small_buf_release(req);
4248 rsp = (struct smb2_query_directory_rsp *)rsp_iov.iov_base;
4249
4250 if (rc) {
4251 if (rc == -ENODATA &&
4252 rsp->sync_hdr.Status == STATUS_NO_MORE_FILES) {
4253 trace_smb3_query_dir_done(xid, persistent_fid,
4254 tcon->tid, tcon->ses->Suid, index, 0);
4255 srch_inf->endOfSearch = true;
4256 rc = 0;
4257 } else {
4258 trace_smb3_query_dir_err(xid, persistent_fid, tcon->tid,
4259 tcon->ses->Suid, index, 0, rc);
4260 cifs_stats_fail_inc(tcon, SMB2_QUERY_DIRECTORY_HE);
4261 }
4262 goto qdir_exit;
4263 }
4264
4265 rc = smb2_validate_iov(le16_to_cpu(rsp->OutputBufferOffset),
4266 le32_to_cpu(rsp->OutputBufferLength), &rsp_iov,
4267 info_buf_size);
4268 if (rc) {
4269 trace_smb3_query_dir_err(xid, persistent_fid, tcon->tid,
4270 tcon->ses->Suid, index, 0, rc);
4271 goto qdir_exit;
4272 }
4273
4274 srch_inf->unicode = true;
4275
4276 if (srch_inf->ntwrk_buf_start) {
4277 if (srch_inf->smallBuf)
4278 cifs_small_buf_release(srch_inf->ntwrk_buf_start);
4279 else
4280 cifs_buf_release(srch_inf->ntwrk_buf_start);
4281 }
4282 srch_inf->ntwrk_buf_start = (char *)rsp;
4283 srch_inf->srch_entries_start = srch_inf->last_entry =
4284 (char *)rsp + le16_to_cpu(rsp->OutputBufferOffset);
4285 end_of_smb = rsp_iov.iov_len + (char *)rsp;
4286 srch_inf->entries_in_buffer =
4287 num_entries(srch_inf->srch_entries_start, end_of_smb,
4288 &srch_inf->last_entry, info_buf_size);
4289 srch_inf->index_of_last_entry += srch_inf->entries_in_buffer;
4290 cifs_dbg(FYI, "num entries %d last_index %lld srch start %p srch end %p\n",
4291 srch_inf->entries_in_buffer, srch_inf->index_of_last_entry,
4292 srch_inf->srch_entries_start, srch_inf->last_entry);
4293 if (resp_buftype == CIFS_LARGE_BUFFER)
4294 srch_inf->smallBuf = false;
4295 else if (resp_buftype == CIFS_SMALL_BUFFER)
4296 srch_inf->smallBuf = true;
4297 else
4298 cifs_tcon_dbg(VFS, "illegal search buffer type\n");
4299
4300 trace_smb3_query_dir_done(xid, persistent_fid, tcon->tid,
4301 tcon->ses->Suid, index, srch_inf->entries_in_buffer);
4302 return rc;
4303
4304 qdir_exit:
4305 free_rsp_buf(resp_buftype, rsp);
4306 return rc;
4307 }
4308
4309 int
SMB2_set_info_init(struct cifs_tcon * tcon,struct smb_rqst * rqst,u64 persistent_fid,u64 volatile_fid,u32 pid,u8 info_class,u8 info_type,u32 additional_info,void ** data,unsigned int * size)4310 SMB2_set_info_init(struct cifs_tcon *tcon, struct smb_rqst *rqst,
4311 u64 persistent_fid, u64 volatile_fid, u32 pid, u8 info_class,
4312 u8 info_type, u32 additional_info,
4313 void **data, unsigned int *size)
4314 {
4315 struct smb2_set_info_req *req;
4316 struct kvec *iov = rqst->rq_iov;
4317 unsigned int i, total_len;
4318 int rc;
4319
4320 rc = smb2_plain_req_init(SMB2_SET_INFO, tcon, (void **) &req, &total_len);
4321 if (rc)
4322 return rc;
4323
4324 req->sync_hdr.ProcessId = cpu_to_le32(pid);
4325 req->InfoType = info_type;
4326 req->FileInfoClass = info_class;
4327 req->PersistentFileId = persistent_fid;
4328 req->VolatileFileId = volatile_fid;
4329 req->AdditionalInformation = cpu_to_le32(additional_info);
4330
4331 req->BufferOffset =
4332 cpu_to_le16(sizeof(struct smb2_set_info_req) - 1);
4333 req->BufferLength = cpu_to_le32(*size);
4334
4335 memcpy(req->Buffer, *data, *size);
4336 total_len += *size;
4337
4338 iov[0].iov_base = (char *)req;
4339 /* 1 for Buffer */
4340 iov[0].iov_len = total_len - 1;
4341
4342 for (i = 1; i < rqst->rq_nvec; i++) {
4343 le32_add_cpu(&req->BufferLength, size[i]);
4344 iov[i].iov_base = (char *)data[i];
4345 iov[i].iov_len = size[i];
4346 }
4347
4348 return 0;
4349 }
4350
4351 void
SMB2_set_info_free(struct smb_rqst * rqst)4352 SMB2_set_info_free(struct smb_rqst *rqst)
4353 {
4354 if (rqst && rqst->rq_iov)
4355 cifs_buf_release(rqst->rq_iov[0].iov_base); /* request */
4356 }
4357
4358 static int
send_set_info(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid,u32 pid,u8 info_class,u8 info_type,u32 additional_info,unsigned int num,void ** data,unsigned int * size)4359 send_set_info(const unsigned int xid, struct cifs_tcon *tcon,
4360 u64 persistent_fid, u64 volatile_fid, u32 pid, u8 info_class,
4361 u8 info_type, u32 additional_info, unsigned int num,
4362 void **data, unsigned int *size)
4363 {
4364 struct smb_rqst rqst;
4365 struct smb2_set_info_rsp *rsp = NULL;
4366 struct kvec *iov;
4367 struct kvec rsp_iov;
4368 int rc = 0;
4369 int resp_buftype;
4370 struct cifs_ses *ses = tcon->ses;
4371 int flags = 0;
4372
4373 if (!ses || !(ses->server))
4374 return -EIO;
4375
4376 if (!num)
4377 return -EINVAL;
4378
4379 if (smb3_encryption_required(tcon))
4380 flags |= CIFS_TRANSFORM_REQ;
4381
4382 iov = kmalloc_array(num, sizeof(struct kvec), GFP_KERNEL);
4383 if (!iov)
4384 return -ENOMEM;
4385
4386 memset(&rqst, 0, sizeof(struct smb_rqst));
4387 rqst.rq_iov = iov;
4388 rqst.rq_nvec = num;
4389
4390 rc = SMB2_set_info_init(tcon, &rqst, persistent_fid, volatile_fid, pid,
4391 info_class, info_type, additional_info,
4392 data, size);
4393 if (rc) {
4394 kfree(iov);
4395 return rc;
4396 }
4397
4398
4399 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags,
4400 &rsp_iov);
4401 SMB2_set_info_free(&rqst);
4402 rsp = (struct smb2_set_info_rsp *)rsp_iov.iov_base;
4403
4404 if (rc != 0) {
4405 cifs_stats_fail_inc(tcon, SMB2_SET_INFO_HE);
4406 trace_smb3_set_info_err(xid, persistent_fid, tcon->tid,
4407 ses->Suid, info_class, (__u32)info_type, rc);
4408 }
4409
4410 free_rsp_buf(resp_buftype, rsp);
4411 kfree(iov);
4412 return rc;
4413 }
4414
4415 int
SMB2_set_eof(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid,u32 pid,__le64 * eof)4416 SMB2_set_eof(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
4417 u64 volatile_fid, u32 pid, __le64 *eof)
4418 {
4419 struct smb2_file_eof_info info;
4420 void *data;
4421 unsigned int size;
4422
4423 info.EndOfFile = *eof;
4424
4425 data = &info;
4426 size = sizeof(struct smb2_file_eof_info);
4427
4428 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
4429 pid, FILE_END_OF_FILE_INFORMATION, SMB2_O_INFO_FILE,
4430 0, 1, &data, &size);
4431 }
4432
4433 int
SMB2_set_acl(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid,struct cifs_ntsd * pnntsd,int pacllen,int aclflag)4434 SMB2_set_acl(const unsigned int xid, struct cifs_tcon *tcon,
4435 u64 persistent_fid, u64 volatile_fid,
4436 struct cifs_ntsd *pnntsd, int pacllen, int aclflag)
4437 {
4438 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
4439 current->tgid, 0, SMB2_O_INFO_SECURITY, aclflag,
4440 1, (void **)&pnntsd, &pacllen);
4441 }
4442
4443 int
SMB2_set_ea(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid,struct smb2_file_full_ea_info * buf,int len)4444 SMB2_set_ea(const unsigned int xid, struct cifs_tcon *tcon,
4445 u64 persistent_fid, u64 volatile_fid,
4446 struct smb2_file_full_ea_info *buf, int len)
4447 {
4448 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
4449 current->tgid, FILE_FULL_EA_INFORMATION, SMB2_O_INFO_FILE,
4450 0, 1, (void **)&buf, &len);
4451 }
4452
4453 int
SMB2_oplock_break(const unsigned int xid,struct cifs_tcon * tcon,const u64 persistent_fid,const u64 volatile_fid,__u8 oplock_level)4454 SMB2_oplock_break(const unsigned int xid, struct cifs_tcon *tcon,
4455 const u64 persistent_fid, const u64 volatile_fid,
4456 __u8 oplock_level)
4457 {
4458 struct smb_rqst rqst;
4459 int rc;
4460 struct smb2_oplock_break *req = NULL;
4461 struct cifs_ses *ses = tcon->ses;
4462 int flags = CIFS_OBREAK_OP;
4463 unsigned int total_len;
4464 struct kvec iov[1];
4465 struct kvec rsp_iov;
4466 int resp_buf_type;
4467
4468 cifs_dbg(FYI, "SMB2_oplock_break\n");
4469 rc = smb2_plain_req_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req,
4470 &total_len);
4471 if (rc)
4472 return rc;
4473
4474 if (smb3_encryption_required(tcon))
4475 flags |= CIFS_TRANSFORM_REQ;
4476
4477 req->VolatileFid = volatile_fid;
4478 req->PersistentFid = persistent_fid;
4479 req->OplockLevel = oplock_level;
4480 req->sync_hdr.CreditRequest = cpu_to_le16(1);
4481
4482 flags |= CIFS_NO_RSP_BUF;
4483
4484 iov[0].iov_base = (char *)req;
4485 iov[0].iov_len = total_len;
4486
4487 memset(&rqst, 0, sizeof(struct smb_rqst));
4488 rqst.rq_iov = iov;
4489 rqst.rq_nvec = 1;
4490
4491 rc = cifs_send_recv(xid, ses, &rqst, &resp_buf_type, flags, &rsp_iov);
4492 cifs_small_buf_release(req);
4493
4494 if (rc) {
4495 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
4496 cifs_dbg(FYI, "Send error in Oplock Break = %d\n", rc);
4497 }
4498
4499 return rc;
4500 }
4501
4502 void
smb2_copy_fs_info_to_kstatfs(struct smb2_fs_full_size_info * pfs_inf,struct kstatfs * kst)4503 smb2_copy_fs_info_to_kstatfs(struct smb2_fs_full_size_info *pfs_inf,
4504 struct kstatfs *kst)
4505 {
4506 kst->f_bsize = le32_to_cpu(pfs_inf->BytesPerSector) *
4507 le32_to_cpu(pfs_inf->SectorsPerAllocationUnit);
4508 kst->f_blocks = le64_to_cpu(pfs_inf->TotalAllocationUnits);
4509 kst->f_bfree = kst->f_bavail =
4510 le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits);
4511 return;
4512 }
4513
4514 static void
copy_posix_fs_info_to_kstatfs(FILE_SYSTEM_POSIX_INFO * response_data,struct kstatfs * kst)4515 copy_posix_fs_info_to_kstatfs(FILE_SYSTEM_POSIX_INFO *response_data,
4516 struct kstatfs *kst)
4517 {
4518 kst->f_bsize = le32_to_cpu(response_data->BlockSize);
4519 kst->f_blocks = le64_to_cpu(response_data->TotalBlocks);
4520 kst->f_bfree = le64_to_cpu(response_data->BlocksAvail);
4521 if (response_data->UserBlocksAvail == cpu_to_le64(-1))
4522 kst->f_bavail = kst->f_bfree;
4523 else
4524 kst->f_bavail = le64_to_cpu(response_data->UserBlocksAvail);
4525 if (response_data->TotalFileNodes != cpu_to_le64(-1))
4526 kst->f_files = le64_to_cpu(response_data->TotalFileNodes);
4527 if (response_data->FreeFileNodes != cpu_to_le64(-1))
4528 kst->f_ffree = le64_to_cpu(response_data->FreeFileNodes);
4529
4530 return;
4531 }
4532
4533 static int
build_qfs_info_req(struct kvec * iov,struct cifs_tcon * tcon,int level,int outbuf_len,u64 persistent_fid,u64 volatile_fid)4534 build_qfs_info_req(struct kvec *iov, struct cifs_tcon *tcon, int level,
4535 int outbuf_len, u64 persistent_fid, u64 volatile_fid)
4536 {
4537 int rc;
4538 struct smb2_query_info_req *req;
4539 unsigned int total_len;
4540
4541 cifs_dbg(FYI, "Query FSInfo level %d\n", level);
4542
4543 if ((tcon->ses == NULL) || (tcon->ses->server == NULL))
4544 return -EIO;
4545
4546 rc = smb2_plain_req_init(SMB2_QUERY_INFO, tcon, (void **) &req,
4547 &total_len);
4548 if (rc)
4549 return rc;
4550
4551 req->InfoType = SMB2_O_INFO_FILESYSTEM;
4552 req->FileInfoClass = level;
4553 req->PersistentFileId = persistent_fid;
4554 req->VolatileFileId = volatile_fid;
4555 /* 1 for pad */
4556 req->InputBufferOffset =
4557 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1);
4558 req->OutputBufferLength = cpu_to_le32(
4559 outbuf_len + sizeof(struct smb2_query_info_rsp) - 1);
4560
4561 iov->iov_base = (char *)req;
4562 iov->iov_len = total_len;
4563 return 0;
4564 }
4565
4566 int
SMB311_posix_qfs_info(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid,struct kstatfs * fsdata)4567 SMB311_posix_qfs_info(const unsigned int xid, struct cifs_tcon *tcon,
4568 u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
4569 {
4570 struct smb_rqst rqst;
4571 struct smb2_query_info_rsp *rsp = NULL;
4572 struct kvec iov;
4573 struct kvec rsp_iov;
4574 int rc = 0;
4575 int resp_buftype;
4576 struct cifs_ses *ses = tcon->ses;
4577 FILE_SYSTEM_POSIX_INFO *info = NULL;
4578 int flags = 0;
4579
4580 rc = build_qfs_info_req(&iov, tcon, FS_POSIX_INFORMATION,
4581 sizeof(FILE_SYSTEM_POSIX_INFO),
4582 persistent_fid, volatile_fid);
4583 if (rc)
4584 return rc;
4585
4586 if (smb3_encryption_required(tcon))
4587 flags |= CIFS_TRANSFORM_REQ;
4588
4589 memset(&rqst, 0, sizeof(struct smb_rqst));
4590 rqst.rq_iov = &iov;
4591 rqst.rq_nvec = 1;
4592
4593 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
4594 cifs_small_buf_release(iov.iov_base);
4595 if (rc) {
4596 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
4597 goto posix_qfsinf_exit;
4598 }
4599 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
4600
4601 info = (FILE_SYSTEM_POSIX_INFO *)(
4602 le16_to_cpu(rsp->OutputBufferOffset) + (char *)rsp);
4603 rc = smb2_validate_iov(le16_to_cpu(rsp->OutputBufferOffset),
4604 le32_to_cpu(rsp->OutputBufferLength), &rsp_iov,
4605 sizeof(FILE_SYSTEM_POSIX_INFO));
4606 if (!rc)
4607 copy_posix_fs_info_to_kstatfs(info, fsdata);
4608
4609 posix_qfsinf_exit:
4610 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
4611 return rc;
4612 }
4613
4614 int
SMB2_QFS_info(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid,struct kstatfs * fsdata)4615 SMB2_QFS_info(const unsigned int xid, struct cifs_tcon *tcon,
4616 u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
4617 {
4618 struct smb_rqst rqst;
4619 struct smb2_query_info_rsp *rsp = NULL;
4620 struct kvec iov;
4621 struct kvec rsp_iov;
4622 int rc = 0;
4623 int resp_buftype;
4624 struct cifs_ses *ses = tcon->ses;
4625 struct smb2_fs_full_size_info *info = NULL;
4626 int flags = 0;
4627
4628 rc = build_qfs_info_req(&iov, tcon, FS_FULL_SIZE_INFORMATION,
4629 sizeof(struct smb2_fs_full_size_info),
4630 persistent_fid, volatile_fid);
4631 if (rc)
4632 return rc;
4633
4634 if (smb3_encryption_required(tcon))
4635 flags |= CIFS_TRANSFORM_REQ;
4636
4637 memset(&rqst, 0, sizeof(struct smb_rqst));
4638 rqst.rq_iov = &iov;
4639 rqst.rq_nvec = 1;
4640
4641 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
4642 cifs_small_buf_release(iov.iov_base);
4643 if (rc) {
4644 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
4645 goto qfsinf_exit;
4646 }
4647 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
4648
4649 info = (struct smb2_fs_full_size_info *)(
4650 le16_to_cpu(rsp->OutputBufferOffset) + (char *)rsp);
4651 rc = smb2_validate_iov(le16_to_cpu(rsp->OutputBufferOffset),
4652 le32_to_cpu(rsp->OutputBufferLength), &rsp_iov,
4653 sizeof(struct smb2_fs_full_size_info));
4654 if (!rc)
4655 smb2_copy_fs_info_to_kstatfs(info, fsdata);
4656
4657 qfsinf_exit:
4658 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
4659 return rc;
4660 }
4661
4662 int
SMB2_QFS_attr(const unsigned int xid,struct cifs_tcon * tcon,u64 persistent_fid,u64 volatile_fid,int level)4663 SMB2_QFS_attr(const unsigned int xid, struct cifs_tcon *tcon,
4664 u64 persistent_fid, u64 volatile_fid, int level)
4665 {
4666 struct smb_rqst rqst;
4667 struct smb2_query_info_rsp *rsp = NULL;
4668 struct kvec iov;
4669 struct kvec rsp_iov;
4670 int rc = 0;
4671 int resp_buftype, max_len, min_len;
4672 struct cifs_ses *ses = tcon->ses;
4673 unsigned int rsp_len, offset;
4674 int flags = 0;
4675
4676 if (level == FS_DEVICE_INFORMATION) {
4677 max_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
4678 min_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
4679 } else if (level == FS_ATTRIBUTE_INFORMATION) {
4680 max_len = sizeof(FILE_SYSTEM_ATTRIBUTE_INFO);
4681 min_len = MIN_FS_ATTR_INFO_SIZE;
4682 } else if (level == FS_SECTOR_SIZE_INFORMATION) {
4683 max_len = sizeof(struct smb3_fs_ss_info);
4684 min_len = sizeof(struct smb3_fs_ss_info);
4685 } else if (level == FS_VOLUME_INFORMATION) {
4686 max_len = sizeof(struct smb3_fs_vol_info) + MAX_VOL_LABEL_LEN;
4687 min_len = sizeof(struct smb3_fs_vol_info);
4688 } else {
4689 cifs_dbg(FYI, "Invalid qfsinfo level %d\n", level);
4690 return -EINVAL;
4691 }
4692
4693 rc = build_qfs_info_req(&iov, tcon, level, max_len,
4694 persistent_fid, volatile_fid);
4695 if (rc)
4696 return rc;
4697
4698 if (smb3_encryption_required(tcon))
4699 flags |= CIFS_TRANSFORM_REQ;
4700
4701 memset(&rqst, 0, sizeof(struct smb_rqst));
4702 rqst.rq_iov = &iov;
4703 rqst.rq_nvec = 1;
4704
4705 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
4706 cifs_small_buf_release(iov.iov_base);
4707 if (rc) {
4708 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
4709 goto qfsattr_exit;
4710 }
4711 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
4712
4713 rsp_len = le32_to_cpu(rsp->OutputBufferLength);
4714 offset = le16_to_cpu(rsp->OutputBufferOffset);
4715 rc = smb2_validate_iov(offset, rsp_len, &rsp_iov, min_len);
4716 if (rc)
4717 goto qfsattr_exit;
4718
4719 if (level == FS_ATTRIBUTE_INFORMATION)
4720 memcpy(&tcon->fsAttrInfo, offset
4721 + (char *)rsp, min_t(unsigned int,
4722 rsp_len, max_len));
4723 else if (level == FS_DEVICE_INFORMATION)
4724 memcpy(&tcon->fsDevInfo, offset
4725 + (char *)rsp, sizeof(FILE_SYSTEM_DEVICE_INFO));
4726 else if (level == FS_SECTOR_SIZE_INFORMATION) {
4727 struct smb3_fs_ss_info *ss_info = (struct smb3_fs_ss_info *)
4728 (offset + (char *)rsp);
4729 tcon->ss_flags = le32_to_cpu(ss_info->Flags);
4730 tcon->perf_sector_size =
4731 le32_to_cpu(ss_info->PhysicalBytesPerSectorForPerf);
4732 } else if (level == FS_VOLUME_INFORMATION) {
4733 struct smb3_fs_vol_info *vol_info = (struct smb3_fs_vol_info *)
4734 (offset + (char *)rsp);
4735 tcon->vol_serial_number = vol_info->VolumeSerialNumber;
4736 tcon->vol_create_time = vol_info->VolumeCreationTime;
4737 }
4738
4739 qfsattr_exit:
4740 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
4741 return rc;
4742 }
4743
4744 int
smb2_lockv(const unsigned int xid,struct cifs_tcon * tcon,const __u64 persist_fid,const __u64 volatile_fid,const __u32 pid,const __u32 num_lock,struct smb2_lock_element * buf)4745 smb2_lockv(const unsigned int xid, struct cifs_tcon *tcon,
4746 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
4747 const __u32 num_lock, struct smb2_lock_element *buf)
4748 {
4749 struct smb_rqst rqst;
4750 int rc = 0;
4751 struct smb2_lock_req *req = NULL;
4752 struct kvec iov[2];
4753 struct kvec rsp_iov;
4754 int resp_buf_type;
4755 unsigned int count;
4756 int flags = CIFS_NO_RSP_BUF;
4757 unsigned int total_len;
4758
4759 cifs_dbg(FYI, "smb2_lockv num lock %d\n", num_lock);
4760
4761 rc = smb2_plain_req_init(SMB2_LOCK, tcon, (void **) &req, &total_len);
4762 if (rc)
4763 return rc;
4764
4765 if (smb3_encryption_required(tcon))
4766 flags |= CIFS_TRANSFORM_REQ;
4767
4768 req->sync_hdr.ProcessId = cpu_to_le32(pid);
4769 req->LockCount = cpu_to_le16(num_lock);
4770
4771 req->PersistentFileId = persist_fid;
4772 req->VolatileFileId = volatile_fid;
4773
4774 count = num_lock * sizeof(struct smb2_lock_element);
4775
4776 iov[0].iov_base = (char *)req;
4777 iov[0].iov_len = total_len - sizeof(struct smb2_lock_element);
4778 iov[1].iov_base = (char *)buf;
4779 iov[1].iov_len = count;
4780
4781 cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
4782
4783 memset(&rqst, 0, sizeof(struct smb_rqst));
4784 rqst.rq_iov = iov;
4785 rqst.rq_nvec = 2;
4786
4787 rc = cifs_send_recv(xid, tcon->ses, &rqst, &resp_buf_type, flags,
4788 &rsp_iov);
4789 cifs_small_buf_release(req);
4790 if (rc) {
4791 cifs_dbg(FYI, "Send error in smb2_lockv = %d\n", rc);
4792 cifs_stats_fail_inc(tcon, SMB2_LOCK_HE);
4793 trace_smb3_lock_err(xid, persist_fid, tcon->tid,
4794 tcon->ses->Suid, rc);
4795 }
4796
4797 return rc;
4798 }
4799
4800 int
SMB2_lock(const unsigned int xid,struct cifs_tcon * tcon,const __u64 persist_fid,const __u64 volatile_fid,const __u32 pid,const __u64 length,const __u64 offset,const __u32 lock_flags,const bool wait)4801 SMB2_lock(const unsigned int xid, struct cifs_tcon *tcon,
4802 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
4803 const __u64 length, const __u64 offset, const __u32 lock_flags,
4804 const bool wait)
4805 {
4806 struct smb2_lock_element lock;
4807
4808 lock.Offset = cpu_to_le64(offset);
4809 lock.Length = cpu_to_le64(length);
4810 lock.Flags = cpu_to_le32(lock_flags);
4811 if (!wait && lock_flags != SMB2_LOCKFLAG_UNLOCK)
4812 lock.Flags |= cpu_to_le32(SMB2_LOCKFLAG_FAIL_IMMEDIATELY);
4813
4814 return smb2_lockv(xid, tcon, persist_fid, volatile_fid, pid, 1, &lock);
4815 }
4816
4817 int
SMB2_lease_break(const unsigned int xid,struct cifs_tcon * tcon,__u8 * lease_key,const __le32 lease_state)4818 SMB2_lease_break(const unsigned int xid, struct cifs_tcon *tcon,
4819 __u8 *lease_key, const __le32 lease_state)
4820 {
4821 struct smb_rqst rqst;
4822 int rc;
4823 struct smb2_lease_ack *req = NULL;
4824 struct cifs_ses *ses = tcon->ses;
4825 int flags = CIFS_OBREAK_OP;
4826 unsigned int total_len;
4827 struct kvec iov[1];
4828 struct kvec rsp_iov;
4829 int resp_buf_type;
4830 __u64 *please_key_high;
4831 __u64 *please_key_low;
4832
4833 cifs_dbg(FYI, "SMB2_lease_break\n");
4834 rc = smb2_plain_req_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req,
4835 &total_len);
4836 if (rc)
4837 return rc;
4838
4839 if (smb3_encryption_required(tcon))
4840 flags |= CIFS_TRANSFORM_REQ;
4841
4842 req->sync_hdr.CreditRequest = cpu_to_le16(1);
4843 req->StructureSize = cpu_to_le16(36);
4844 total_len += 12;
4845
4846 memcpy(req->LeaseKey, lease_key, 16);
4847 req->LeaseState = lease_state;
4848
4849 flags |= CIFS_NO_RSP_BUF;
4850
4851 iov[0].iov_base = (char *)req;
4852 iov[0].iov_len = total_len;
4853
4854 memset(&rqst, 0, sizeof(struct smb_rqst));
4855 rqst.rq_iov = iov;
4856 rqst.rq_nvec = 1;
4857
4858 rc = cifs_send_recv(xid, ses, &rqst, &resp_buf_type, flags, &rsp_iov);
4859 cifs_small_buf_release(req);
4860
4861 please_key_low = (__u64 *)lease_key;
4862 please_key_high = (__u64 *)(lease_key+8);
4863 if (rc) {
4864 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
4865 trace_smb3_lease_err(le32_to_cpu(lease_state), tcon->tid,
4866 ses->Suid, *please_key_low, *please_key_high, rc);
4867 cifs_dbg(FYI, "Send error in Lease Break = %d\n", rc);
4868 } else
4869 trace_smb3_lease_done(le32_to_cpu(lease_state), tcon->tid,
4870 ses->Suid, *please_key_low, *please_key_high);
4871
4872 return rc;
4873 }
4874