smb2misc.c (26628B)
1// SPDX-License-Identifier: LGPL-2.1 2/* 3 * 4 * Copyright (C) International Business Machines Corp., 2002,2011 5 * Etersoft, 2012 6 * Author(s): Steve French (sfrench@us.ibm.com) 7 * Pavel Shilovsky (pshilovsky@samba.org) 2012 8 * 9 */ 10#include <linux/ctype.h> 11#include "cifsglob.h" 12#include "cifsproto.h" 13#include "smb2proto.h" 14#include "cifs_debug.h" 15#include "cifs_unicode.h" 16#include "smb2status.h" 17#include "smb2glob.h" 18#include "nterr.h" 19 20static int 21check_smb2_hdr(struct smb2_hdr *shdr, __u64 mid) 22{ 23 __u64 wire_mid = le64_to_cpu(shdr->MessageId); 24 25 /* 26 * Make sure that this really is an SMB, that it is a response, 27 * and that the message ids match. 28 */ 29 if ((shdr->ProtocolId == SMB2_PROTO_NUMBER) && 30 (mid == wire_mid)) { 31 if (shdr->Flags & SMB2_FLAGS_SERVER_TO_REDIR) 32 return 0; 33 else { 34 /* only one valid case where server sends us request */ 35 if (shdr->Command == SMB2_OPLOCK_BREAK) 36 return 0; 37 else 38 cifs_dbg(VFS, "Received Request not response\n"); 39 } 40 } else { /* bad signature or mid */ 41 if (shdr->ProtocolId != SMB2_PROTO_NUMBER) 42 cifs_dbg(VFS, "Bad protocol string signature header %x\n", 43 le32_to_cpu(shdr->ProtocolId)); 44 if (mid != wire_mid) 45 cifs_dbg(VFS, "Mids do not match: %llu and %llu\n", 46 mid, wire_mid); 47 } 48 cifs_dbg(VFS, "Bad SMB detected. The Mid=%llu\n", wire_mid); 49 return 1; 50} 51 52/* 53 * The following table defines the expected "StructureSize" of SMB2 responses 54 * in order by SMB2 command. This is similar to "wct" in SMB/CIFS responses. 55 * 56 * Note that commands are defined in smb2pdu.h in le16 but the array below is 57 * indexed by command in host byte order 58 */ 59static const __le16 smb2_rsp_struct_sizes[NUMBER_OF_SMB2_COMMANDS] = { 60 /* SMB2_NEGOTIATE */ cpu_to_le16(65), 61 /* SMB2_SESSION_SETUP */ cpu_to_le16(9), 62 /* SMB2_LOGOFF */ cpu_to_le16(4), 63 /* SMB2_TREE_CONNECT */ cpu_to_le16(16), 64 /* SMB2_TREE_DISCONNECT */ cpu_to_le16(4), 65 /* SMB2_CREATE */ cpu_to_le16(89), 66 /* SMB2_CLOSE */ cpu_to_le16(60), 67 /* SMB2_FLUSH */ cpu_to_le16(4), 68 /* SMB2_READ */ cpu_to_le16(17), 69 /* SMB2_WRITE */ cpu_to_le16(17), 70 /* SMB2_LOCK */ cpu_to_le16(4), 71 /* SMB2_IOCTL */ cpu_to_le16(49), 72 /* BB CHECK this ... not listed in documentation */ 73 /* SMB2_CANCEL */ cpu_to_le16(0), 74 /* SMB2_ECHO */ cpu_to_le16(4), 75 /* SMB2_QUERY_DIRECTORY */ cpu_to_le16(9), 76 /* SMB2_CHANGE_NOTIFY */ cpu_to_le16(9), 77 /* SMB2_QUERY_INFO */ cpu_to_le16(9), 78 /* SMB2_SET_INFO */ cpu_to_le16(2), 79 /* BB FIXME can also be 44 for lease break */ 80 /* SMB2_OPLOCK_BREAK */ cpu_to_le16(24) 81}; 82 83#define SMB311_NEGPROT_BASE_SIZE (sizeof(struct smb2_hdr) + sizeof(struct smb2_negotiate_rsp)) 84 85static __u32 get_neg_ctxt_len(struct smb2_hdr *hdr, __u32 len, 86 __u32 non_ctxlen) 87{ 88 __u16 neg_count; 89 __u32 nc_offset, size_of_pad_before_neg_ctxts; 90 struct smb2_negotiate_rsp *pneg_rsp = (struct smb2_negotiate_rsp *)hdr; 91 92 /* Negotiate contexts are only valid for latest dialect SMB3.11 */ 93 neg_count = le16_to_cpu(pneg_rsp->NegotiateContextCount); 94 if ((neg_count == 0) || 95 (pneg_rsp->DialectRevision != cpu_to_le16(SMB311_PROT_ID))) 96 return 0; 97 98 /* 99 * if SPNEGO blob present (ie the RFC2478 GSS info which indicates 100 * which security mechanisms the server supports) make sure that 101 * the negotiate contexts start after it 102 */ 103 nc_offset = le32_to_cpu(pneg_rsp->NegotiateContextOffset); 104 /* 105 * non_ctxlen is at least shdr->StructureSize + pdu->StructureSize2 106 * and the latter is 1 byte bigger than the fix-sized area of the 107 * NEGOTIATE response 108 */ 109 if (nc_offset + 1 < non_ctxlen) { 110 pr_warn_once("Invalid negotiate context offset %d\n", nc_offset); 111 return 0; 112 } else if (nc_offset + 1 == non_ctxlen) { 113 cifs_dbg(FYI, "no SPNEGO security blob in negprot rsp\n"); 114 size_of_pad_before_neg_ctxts = 0; 115 } else if (non_ctxlen == SMB311_NEGPROT_BASE_SIZE) 116 /* has padding, but no SPNEGO blob */ 117 size_of_pad_before_neg_ctxts = nc_offset - non_ctxlen + 1; 118 else 119 size_of_pad_before_neg_ctxts = nc_offset - non_ctxlen; 120 121 /* Verify that at least minimal negotiate contexts fit within frame */ 122 if (len < nc_offset + (neg_count * sizeof(struct smb2_neg_context))) { 123 pr_warn_once("negotiate context goes beyond end\n"); 124 return 0; 125 } 126 127 cifs_dbg(FYI, "length of negcontexts %d pad %d\n", 128 len - nc_offset, size_of_pad_before_neg_ctxts); 129 130 /* length of negcontexts including pad from end of sec blob to them */ 131 return (len - nc_offset) + size_of_pad_before_neg_ctxts; 132} 133 134int 135smb2_check_message(char *buf, unsigned int len, struct TCP_Server_Info *srvr) 136{ 137 struct smb2_hdr *shdr = (struct smb2_hdr *)buf; 138 struct smb2_pdu *pdu = (struct smb2_pdu *)shdr; 139 __u64 mid; 140 __u32 clc_len; /* calculated length */ 141 int command; 142 int pdu_size = sizeof(struct smb2_pdu); 143 int hdr_size = sizeof(struct smb2_hdr); 144 145 /* 146 * Add function to do table lookup of StructureSize by command 147 * ie Validate the wct via smb2_struct_sizes table above 148 */ 149 if (shdr->ProtocolId == SMB2_TRANSFORM_PROTO_NUM) { 150 struct smb2_transform_hdr *thdr = 151 (struct smb2_transform_hdr *)buf; 152 struct cifs_ses *ses = NULL; 153 struct cifs_ses *iter; 154 155 /* decrypt frame now that it is completely read in */ 156 spin_lock(&cifs_tcp_ses_lock); 157 list_for_each_entry(iter, &srvr->smb_ses_list, smb_ses_list) { 158 if (iter->Suid == le64_to_cpu(thdr->SessionId)) { 159 ses = iter; 160 break; 161 } 162 } 163 spin_unlock(&cifs_tcp_ses_lock); 164 if (!ses) { 165 cifs_dbg(VFS, "no decryption - session id not found\n"); 166 return 1; 167 } 168 } 169 170 mid = le64_to_cpu(shdr->MessageId); 171 if (len < pdu_size) { 172 if ((len >= hdr_size) 173 && (shdr->Status != 0)) { 174 pdu->StructureSize2 = 0; 175 /* 176 * As with SMB/CIFS, on some error cases servers may 177 * not return wct properly 178 */ 179 return 0; 180 } else { 181 cifs_dbg(VFS, "Length less than SMB header size\n"); 182 } 183 return 1; 184 } 185 if (len > CIFSMaxBufSize + MAX_SMB2_HDR_SIZE) { 186 cifs_dbg(VFS, "SMB length greater than maximum, mid=%llu\n", 187 mid); 188 return 1; 189 } 190 191 if (check_smb2_hdr(shdr, mid)) 192 return 1; 193 194 if (shdr->StructureSize != SMB2_HEADER_STRUCTURE_SIZE) { 195 cifs_dbg(VFS, "Invalid structure size %u\n", 196 le16_to_cpu(shdr->StructureSize)); 197 return 1; 198 } 199 200 command = le16_to_cpu(shdr->Command); 201 if (command >= NUMBER_OF_SMB2_COMMANDS) { 202 cifs_dbg(VFS, "Invalid SMB2 command %d\n", command); 203 return 1; 204 } 205 206 if (smb2_rsp_struct_sizes[command] != pdu->StructureSize2) { 207 if (command != SMB2_OPLOCK_BREAK_HE && (shdr->Status == 0 || 208 pdu->StructureSize2 != SMB2_ERROR_STRUCTURE_SIZE2_LE)) { 209 /* error packets have 9 byte structure size */ 210 cifs_dbg(VFS, "Invalid response size %u for command %d\n", 211 le16_to_cpu(pdu->StructureSize2), command); 212 return 1; 213 } else if (command == SMB2_OPLOCK_BREAK_HE 214 && (shdr->Status == 0) 215 && (le16_to_cpu(pdu->StructureSize2) != 44) 216 && (le16_to_cpu(pdu->StructureSize2) != 36)) { 217 /* special case for SMB2.1 lease break message */ 218 cifs_dbg(VFS, "Invalid response size %d for oplock break\n", 219 le16_to_cpu(pdu->StructureSize2)); 220 return 1; 221 } 222 } 223 224 clc_len = smb2_calc_size(buf, srvr); 225 226 if (shdr->Command == SMB2_NEGOTIATE) 227 clc_len += get_neg_ctxt_len(shdr, len, clc_len); 228 229 if (len != clc_len) { 230 cifs_dbg(FYI, "Calculated size %u length %u mismatch mid %llu\n", 231 clc_len, len, mid); 232 /* create failed on symlink */ 233 if (command == SMB2_CREATE_HE && 234 shdr->Status == STATUS_STOPPED_ON_SYMLINK) 235 return 0; 236 /* Windows 7 server returns 24 bytes more */ 237 if (clc_len + 24 == len && command == SMB2_OPLOCK_BREAK_HE) 238 return 0; 239 /* server can return one byte more due to implied bcc[0] */ 240 if (clc_len == len + 1) 241 return 0; 242 243 /* 244 * Some windows servers (win2016) will pad also the final 245 * PDU in a compound to 8 bytes. 246 */ 247 if (((clc_len + 7) & ~7) == len) 248 return 0; 249 250 /* 251 * MacOS server pads after SMB2.1 write response with 3 bytes 252 * of junk. Other servers match RFC1001 len to actual 253 * SMB2/SMB3 frame length (header + smb2 response specific data) 254 * Some windows servers also pad up to 8 bytes when compounding. 255 */ 256 if (clc_len < len) 257 return 0; 258 259 pr_warn_once( 260 "srv rsp too short, len %d not %d. cmd:%d mid:%llu\n", 261 len, clc_len, command, mid); 262 263 return 1; 264 } 265 return 0; 266} 267 268/* 269 * The size of the variable area depends on the offset and length fields 270 * located in different fields for various SMB2 responses. SMB2 responses 271 * with no variable length info, show an offset of zero for the offset field. 272 */ 273static const bool has_smb2_data_area[NUMBER_OF_SMB2_COMMANDS] = { 274 /* SMB2_NEGOTIATE */ true, 275 /* SMB2_SESSION_SETUP */ true, 276 /* SMB2_LOGOFF */ false, 277 /* SMB2_TREE_CONNECT */ false, 278 /* SMB2_TREE_DISCONNECT */ false, 279 /* SMB2_CREATE */ true, 280 /* SMB2_CLOSE */ false, 281 /* SMB2_FLUSH */ false, 282 /* SMB2_READ */ true, 283 /* SMB2_WRITE */ false, 284 /* SMB2_LOCK */ false, 285 /* SMB2_IOCTL */ true, 286 /* SMB2_CANCEL */ false, /* BB CHECK this not listed in documentation */ 287 /* SMB2_ECHO */ false, 288 /* SMB2_QUERY_DIRECTORY */ true, 289 /* SMB2_CHANGE_NOTIFY */ true, 290 /* SMB2_QUERY_INFO */ true, 291 /* SMB2_SET_INFO */ false, 292 /* SMB2_OPLOCK_BREAK */ false 293}; 294 295/* 296 * Returns the pointer to the beginning of the data area. Length of the data 297 * area and the offset to it (from the beginning of the smb are also returned. 298 */ 299char * 300smb2_get_data_area_len(int *off, int *len, struct smb2_hdr *shdr) 301{ 302 *off = 0; 303 *len = 0; 304 305 /* error responses do not have data area */ 306 if (shdr->Status && shdr->Status != STATUS_MORE_PROCESSING_REQUIRED && 307 (((struct smb2_err_rsp *)shdr)->StructureSize) == 308 SMB2_ERROR_STRUCTURE_SIZE2_LE) 309 return NULL; 310 311 /* 312 * Following commands have data areas so we have to get the location 313 * of the data buffer offset and data buffer length for the particular 314 * command. 315 */ 316 switch (shdr->Command) { 317 case SMB2_NEGOTIATE: 318 *off = le16_to_cpu( 319 ((struct smb2_negotiate_rsp *)shdr)->SecurityBufferOffset); 320 *len = le16_to_cpu( 321 ((struct smb2_negotiate_rsp *)shdr)->SecurityBufferLength); 322 break; 323 case SMB2_SESSION_SETUP: 324 *off = le16_to_cpu( 325 ((struct smb2_sess_setup_rsp *)shdr)->SecurityBufferOffset); 326 *len = le16_to_cpu( 327 ((struct smb2_sess_setup_rsp *)shdr)->SecurityBufferLength); 328 break; 329 case SMB2_CREATE: 330 *off = le32_to_cpu( 331 ((struct smb2_create_rsp *)shdr)->CreateContextsOffset); 332 *len = le32_to_cpu( 333 ((struct smb2_create_rsp *)shdr)->CreateContextsLength); 334 break; 335 case SMB2_QUERY_INFO: 336 *off = le16_to_cpu( 337 ((struct smb2_query_info_rsp *)shdr)->OutputBufferOffset); 338 *len = le32_to_cpu( 339 ((struct smb2_query_info_rsp *)shdr)->OutputBufferLength); 340 break; 341 case SMB2_READ: 342 /* TODO: is this a bug ? */ 343 *off = ((struct smb2_read_rsp *)shdr)->DataOffset; 344 *len = le32_to_cpu(((struct smb2_read_rsp *)shdr)->DataLength); 345 break; 346 case SMB2_QUERY_DIRECTORY: 347 *off = le16_to_cpu( 348 ((struct smb2_query_directory_rsp *)shdr)->OutputBufferOffset); 349 *len = le32_to_cpu( 350 ((struct smb2_query_directory_rsp *)shdr)->OutputBufferLength); 351 break; 352 case SMB2_IOCTL: 353 *off = le32_to_cpu( 354 ((struct smb2_ioctl_rsp *)shdr)->OutputOffset); 355 *len = le32_to_cpu( 356 ((struct smb2_ioctl_rsp *)shdr)->OutputCount); 357 break; 358 case SMB2_CHANGE_NOTIFY: 359 *off = le16_to_cpu( 360 ((struct smb2_change_notify_rsp *)shdr)->OutputBufferOffset); 361 *len = le32_to_cpu( 362 ((struct smb2_change_notify_rsp *)shdr)->OutputBufferLength); 363 break; 364 default: 365 cifs_dbg(VFS, "no length check for command %d\n", le16_to_cpu(shdr->Command)); 366 break; 367 } 368 369 /* 370 * Invalid length or offset probably means data area is invalid, but 371 * we have little choice but to ignore the data area in this case. 372 */ 373 if (*off > 4096) { 374 cifs_dbg(VFS, "offset %d too large, data area ignored\n", *off); 375 *len = 0; 376 *off = 0; 377 } else if (*off < 0) { 378 cifs_dbg(VFS, "negative offset %d to data invalid ignore data area\n", 379 *off); 380 *off = 0; 381 *len = 0; 382 } else if (*len < 0) { 383 cifs_dbg(VFS, "negative data length %d invalid, data area ignored\n", 384 *len); 385 *len = 0; 386 } else if (*len > 128 * 1024) { 387 cifs_dbg(VFS, "data area larger than 128K: %d\n", *len); 388 *len = 0; 389 } 390 391 /* return pointer to beginning of data area, ie offset from SMB start */ 392 if ((*off != 0) && (*len != 0)) 393 return (char *)shdr + *off; 394 else 395 return NULL; 396} 397 398/* 399 * Calculate the size of the SMB message based on the fixed header 400 * portion, the number of word parameters and the data portion of the message. 401 */ 402unsigned int 403smb2_calc_size(void *buf, struct TCP_Server_Info *srvr) 404{ 405 struct smb2_pdu *pdu = (struct smb2_pdu *)buf; 406 struct smb2_hdr *shdr = &pdu->hdr; 407 int offset; /* the offset from the beginning of SMB to data area */ 408 int data_length; /* the length of the variable length data area */ 409 /* Structure Size has already been checked to make sure it is 64 */ 410 int len = le16_to_cpu(shdr->StructureSize); 411 412 /* 413 * StructureSize2, ie length of fixed parameter area has already 414 * been checked to make sure it is the correct length. 415 */ 416 len += le16_to_cpu(pdu->StructureSize2); 417 418 if (has_smb2_data_area[le16_to_cpu(shdr->Command)] == false) 419 goto calc_size_exit; 420 421 smb2_get_data_area_len(&offset, &data_length, shdr); 422 cifs_dbg(FYI, "SMB2 data length %d offset %d\n", data_length, offset); 423 424 if (data_length > 0) { 425 /* 426 * Check to make sure that data area begins after fixed area, 427 * Note that last byte of the fixed area is part of data area 428 * for some commands, typically those with odd StructureSize, 429 * so we must add one to the calculation. 430 */ 431 if (offset + 1 < len) { 432 cifs_dbg(VFS, "data area offset %d overlaps SMB2 header %d\n", 433 offset + 1, len); 434 data_length = 0; 435 } else { 436 len = offset + data_length; 437 } 438 } 439calc_size_exit: 440 cifs_dbg(FYI, "SMB2 len %d\n", len); 441 return len; 442} 443 444/* Note: caller must free return buffer */ 445__le16 * 446cifs_convert_path_to_utf16(const char *from, struct cifs_sb_info *cifs_sb) 447{ 448 int len; 449 const char *start_of_path; 450 __le16 *to; 451 int map_type; 452 453 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SFM_CHR) 454 map_type = SFM_MAP_UNI_RSVD; 455 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR) 456 map_type = SFU_MAP_UNI_RSVD; 457 else 458 map_type = NO_MAP_UNI_RSVD; 459 460 /* Windows doesn't allow paths beginning with \ */ 461 if (from[0] == '\\') 462 start_of_path = from + 1; 463 464 /* SMB311 POSIX extensions paths do not include leading slash */ 465 else if (cifs_sb_master_tlink(cifs_sb) && 466 cifs_sb_master_tcon(cifs_sb)->posix_extensions && 467 (from[0] == '/')) { 468 start_of_path = from + 1; 469 } else 470 start_of_path = from; 471 472 to = cifs_strndup_to_utf16(start_of_path, PATH_MAX, &len, 473 cifs_sb->local_nls, map_type); 474 return to; 475} 476 477__le32 478smb2_get_lease_state(struct cifsInodeInfo *cinode) 479{ 480 __le32 lease = 0; 481 482 if (CIFS_CACHE_WRITE(cinode)) 483 lease |= SMB2_LEASE_WRITE_CACHING_LE; 484 if (CIFS_CACHE_HANDLE(cinode)) 485 lease |= SMB2_LEASE_HANDLE_CACHING_LE; 486 if (CIFS_CACHE_READ(cinode)) 487 lease |= SMB2_LEASE_READ_CACHING_LE; 488 return lease; 489} 490 491struct smb2_lease_break_work { 492 struct work_struct lease_break; 493 struct tcon_link *tlink; 494 __u8 lease_key[16]; 495 __le32 lease_state; 496}; 497 498static void 499cifs_ses_oplock_break(struct work_struct *work) 500{ 501 struct smb2_lease_break_work *lw = container_of(work, 502 struct smb2_lease_break_work, lease_break); 503 int rc = 0; 504 505 rc = SMB2_lease_break(0, tlink_tcon(lw->tlink), lw->lease_key, 506 lw->lease_state); 507 508 cifs_dbg(FYI, "Lease release rc %d\n", rc); 509 cifs_put_tlink(lw->tlink); 510 kfree(lw); 511} 512 513static void 514smb2_queue_pending_open_break(struct tcon_link *tlink, __u8 *lease_key, 515 __le32 new_lease_state) 516{ 517 struct smb2_lease_break_work *lw; 518 519 lw = kmalloc(sizeof(struct smb2_lease_break_work), GFP_KERNEL); 520 if (!lw) { 521 cifs_put_tlink(tlink); 522 return; 523 } 524 525 INIT_WORK(&lw->lease_break, cifs_ses_oplock_break); 526 lw->tlink = tlink; 527 lw->lease_state = new_lease_state; 528 memcpy(lw->lease_key, lease_key, SMB2_LEASE_KEY_SIZE); 529 queue_work(cifsiod_wq, &lw->lease_break); 530} 531 532static bool 533smb2_tcon_has_lease(struct cifs_tcon *tcon, struct smb2_lease_break *rsp) 534{ 535 __u8 lease_state; 536 struct cifsFileInfo *cfile; 537 struct cifsInodeInfo *cinode; 538 int ack_req = le32_to_cpu(rsp->Flags & 539 SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED); 540 541 lease_state = le32_to_cpu(rsp->NewLeaseState); 542 543 list_for_each_entry(cfile, &tcon->openFileList, tlist) { 544 cinode = CIFS_I(d_inode(cfile->dentry)); 545 546 if (memcmp(cinode->lease_key, rsp->LeaseKey, 547 SMB2_LEASE_KEY_SIZE)) 548 continue; 549 550 cifs_dbg(FYI, "found in the open list\n"); 551 cifs_dbg(FYI, "lease key match, lease break 0x%x\n", 552 lease_state); 553 554 if (ack_req) 555 cfile->oplock_break_cancelled = false; 556 else 557 cfile->oplock_break_cancelled = true; 558 559 set_bit(CIFS_INODE_PENDING_OPLOCK_BREAK, &cinode->flags); 560 561 cfile->oplock_epoch = le16_to_cpu(rsp->Epoch); 562 cfile->oplock_level = lease_state; 563 564 cifs_queue_oplock_break(cfile); 565 return true; 566 } 567 568 return false; 569} 570 571static struct cifs_pending_open * 572smb2_tcon_find_pending_open_lease(struct cifs_tcon *tcon, 573 struct smb2_lease_break *rsp) 574{ 575 __u8 lease_state = le32_to_cpu(rsp->NewLeaseState); 576 int ack_req = le32_to_cpu(rsp->Flags & 577 SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED); 578 struct cifs_pending_open *open; 579 struct cifs_pending_open *found = NULL; 580 581 list_for_each_entry(open, &tcon->pending_opens, olist) { 582 if (memcmp(open->lease_key, rsp->LeaseKey, 583 SMB2_LEASE_KEY_SIZE)) 584 continue; 585 586 if (!found && ack_req) { 587 found = open; 588 } 589 590 cifs_dbg(FYI, "found in the pending open list\n"); 591 cifs_dbg(FYI, "lease key match, lease break 0x%x\n", 592 lease_state); 593 594 open->oplock = lease_state; 595 } 596 597 return found; 598} 599 600static bool 601smb2_is_valid_lease_break(char *buffer) 602{ 603 struct smb2_lease_break *rsp = (struct smb2_lease_break *)buffer; 604 struct TCP_Server_Info *server; 605 struct cifs_ses *ses; 606 struct cifs_tcon *tcon; 607 struct cifs_pending_open *open; 608 609 cifs_dbg(FYI, "Checking for lease break\n"); 610 611 /* look up tcon based on tid & uid */ 612 spin_lock(&cifs_tcp_ses_lock); 613 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) { 614 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { 615 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { 616 spin_lock(&tcon->open_file_lock); 617 cifs_stats_inc( 618 &tcon->stats.cifs_stats.num_oplock_brks); 619 if (smb2_tcon_has_lease(tcon, rsp)) { 620 spin_unlock(&tcon->open_file_lock); 621 spin_unlock(&cifs_tcp_ses_lock); 622 return true; 623 } 624 open = smb2_tcon_find_pending_open_lease(tcon, 625 rsp); 626 if (open) { 627 __u8 lease_key[SMB2_LEASE_KEY_SIZE]; 628 struct tcon_link *tlink; 629 630 tlink = cifs_get_tlink(open->tlink); 631 memcpy(lease_key, open->lease_key, 632 SMB2_LEASE_KEY_SIZE); 633 spin_unlock(&tcon->open_file_lock); 634 spin_unlock(&cifs_tcp_ses_lock); 635 smb2_queue_pending_open_break(tlink, 636 lease_key, 637 rsp->NewLeaseState); 638 return true; 639 } 640 spin_unlock(&tcon->open_file_lock); 641 642 if (tcon->crfid.is_valid && 643 !memcmp(rsp->LeaseKey, 644 tcon->crfid.fid->lease_key, 645 SMB2_LEASE_KEY_SIZE)) { 646 tcon->crfid.time = 0; 647 INIT_WORK(&tcon->crfid.lease_break, 648 smb2_cached_lease_break); 649 queue_work(cifsiod_wq, 650 &tcon->crfid.lease_break); 651 spin_unlock(&cifs_tcp_ses_lock); 652 return true; 653 } 654 } 655 } 656 } 657 spin_unlock(&cifs_tcp_ses_lock); 658 cifs_dbg(FYI, "Can not process lease break - no lease matched\n"); 659 trace_smb3_lease_not_found(le32_to_cpu(rsp->CurrentLeaseState), 660 le32_to_cpu(rsp->hdr.Id.SyncId.TreeId), 661 le64_to_cpu(rsp->hdr.SessionId), 662 *((u64 *)rsp->LeaseKey), 663 *((u64 *)&rsp->LeaseKey[8])); 664 665 return false; 666} 667 668bool 669smb2_is_valid_oplock_break(char *buffer, struct TCP_Server_Info *server) 670{ 671 struct smb2_oplock_break *rsp = (struct smb2_oplock_break *)buffer; 672 struct cifs_ses *ses; 673 struct cifs_tcon *tcon; 674 struct cifsInodeInfo *cinode; 675 struct cifsFileInfo *cfile; 676 677 cifs_dbg(FYI, "Checking for oplock break\n"); 678 679 if (rsp->hdr.Command != SMB2_OPLOCK_BREAK) 680 return false; 681 682 if (rsp->StructureSize != 683 smb2_rsp_struct_sizes[SMB2_OPLOCK_BREAK_HE]) { 684 if (le16_to_cpu(rsp->StructureSize) == 44) 685 return smb2_is_valid_lease_break(buffer); 686 else 687 return false; 688 } 689 690 cifs_dbg(FYI, "oplock level 0x%x\n", rsp->OplockLevel); 691 692 /* look up tcon based on tid & uid */ 693 spin_lock(&cifs_tcp_ses_lock); 694 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { 695 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { 696 697 spin_lock(&tcon->open_file_lock); 698 list_for_each_entry(cfile, &tcon->openFileList, tlist) { 699 if (rsp->PersistentFid != 700 cfile->fid.persistent_fid || 701 rsp->VolatileFid != 702 cfile->fid.volatile_fid) 703 continue; 704 705 cifs_dbg(FYI, "file id match, oplock break\n"); 706 cifs_stats_inc( 707 &tcon->stats.cifs_stats.num_oplock_brks); 708 cinode = CIFS_I(d_inode(cfile->dentry)); 709 spin_lock(&cfile->file_info_lock); 710 if (!CIFS_CACHE_WRITE(cinode) && 711 rsp->OplockLevel == SMB2_OPLOCK_LEVEL_NONE) 712 cfile->oplock_break_cancelled = true; 713 else 714 cfile->oplock_break_cancelled = false; 715 716 set_bit(CIFS_INODE_PENDING_OPLOCK_BREAK, 717 &cinode->flags); 718 719 cfile->oplock_epoch = 0; 720 cfile->oplock_level = rsp->OplockLevel; 721 722 spin_unlock(&cfile->file_info_lock); 723 724 cifs_queue_oplock_break(cfile); 725 726 spin_unlock(&tcon->open_file_lock); 727 spin_unlock(&cifs_tcp_ses_lock); 728 return true; 729 } 730 spin_unlock(&tcon->open_file_lock); 731 } 732 } 733 spin_unlock(&cifs_tcp_ses_lock); 734 cifs_dbg(FYI, "No file id matched, oplock break ignored\n"); 735 trace_smb3_oplock_not_found(0 /* no xid */, rsp->PersistentFid, 736 le32_to_cpu(rsp->hdr.Id.SyncId.TreeId), 737 le64_to_cpu(rsp->hdr.SessionId)); 738 739 return true; 740} 741 742void 743smb2_cancelled_close_fid(struct work_struct *work) 744{ 745 struct close_cancelled_open *cancelled = container_of(work, 746 struct close_cancelled_open, work); 747 struct cifs_tcon *tcon = cancelled->tcon; 748 int rc; 749 750 if (cancelled->mid) 751 cifs_tcon_dbg(VFS, "Close unmatched open for MID:%llu\n", 752 cancelled->mid); 753 else 754 cifs_tcon_dbg(VFS, "Close interrupted close\n"); 755 756 rc = SMB2_close(0, tcon, cancelled->fid.persistent_fid, 757 cancelled->fid.volatile_fid); 758 if (rc) 759 cifs_tcon_dbg(VFS, "Close cancelled mid failed rc:%d\n", rc); 760 761 cifs_put_tcon(tcon); 762 kfree(cancelled); 763} 764 765/* 766 * Caller should already has an extra reference to @tcon 767 * This function is used to queue work to close a handle to prevent leaks 768 * on the server. 769 * We handle two cases. If an open was interrupted after we sent the 770 * SMB2_CREATE to the server but before we processed the reply, and second 771 * if a close was interrupted before we sent the SMB2_CLOSE to the server. 772 */ 773static int 774__smb2_handle_cancelled_cmd(struct cifs_tcon *tcon, __u16 cmd, __u64 mid, 775 __u64 persistent_fid, __u64 volatile_fid) 776{ 777 struct close_cancelled_open *cancelled; 778 779 cancelled = kzalloc(sizeof(*cancelled), GFP_ATOMIC); 780 if (!cancelled) 781 return -ENOMEM; 782 783 cancelled->fid.persistent_fid = persistent_fid; 784 cancelled->fid.volatile_fid = volatile_fid; 785 cancelled->tcon = tcon; 786 cancelled->cmd = cmd; 787 cancelled->mid = mid; 788 INIT_WORK(&cancelled->work, smb2_cancelled_close_fid); 789 WARN_ON(queue_work(cifsiod_wq, &cancelled->work) == false); 790 791 return 0; 792} 793 794int 795smb2_handle_cancelled_close(struct cifs_tcon *tcon, __u64 persistent_fid, 796 __u64 volatile_fid) 797{ 798 int rc; 799 800 cifs_dbg(FYI, "%s: tc_count=%d\n", __func__, tcon->tc_count); 801 spin_lock(&cifs_tcp_ses_lock); 802 if (tcon->tc_count <= 0) { 803 struct TCP_Server_Info *server = NULL; 804 805 WARN_ONCE(tcon->tc_count < 0, "tcon refcount is negative"); 806 spin_unlock(&cifs_tcp_ses_lock); 807 808 if (tcon->ses) 809 server = tcon->ses->server; 810 811 cifs_server_dbg(FYI, "tid=0x%x: tcon is closing, skipping async close retry of fid %llu %llu\n", 812 tcon->tid, persistent_fid, volatile_fid); 813 814 return 0; 815 } 816 tcon->tc_count++; 817 spin_unlock(&cifs_tcp_ses_lock); 818 819 rc = __smb2_handle_cancelled_cmd(tcon, SMB2_CLOSE_HE, 0, 820 persistent_fid, volatile_fid); 821 if (rc) 822 cifs_put_tcon(tcon); 823 824 return rc; 825} 826 827int 828smb2_handle_cancelled_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server) 829{ 830 struct smb2_hdr *hdr = mid->resp_buf; 831 struct smb2_create_rsp *rsp = mid->resp_buf; 832 struct cifs_tcon *tcon; 833 int rc; 834 835 if ((mid->optype & CIFS_CP_CREATE_CLOSE_OP) || hdr->Command != SMB2_CREATE || 836 hdr->Status != STATUS_SUCCESS) 837 return 0; 838 839 tcon = smb2_find_smb_tcon(server, le64_to_cpu(hdr->SessionId), 840 le32_to_cpu(hdr->Id.SyncId.TreeId)); 841 if (!tcon) 842 return -ENOENT; 843 844 rc = __smb2_handle_cancelled_cmd(tcon, 845 le16_to_cpu(hdr->Command), 846 le64_to_cpu(hdr->MessageId), 847 rsp->PersistentFileId, 848 rsp->VolatileFileId); 849 if (rc) 850 cifs_put_tcon(tcon); 851 852 return rc; 853} 854 855/** 856 * smb311_update_preauth_hash - update @ses hash with the packet data in @iov 857 * 858 * Assumes @iov does not contain the rfc1002 length and iov[0] has the 859 * SMB2 header. 860 * 861 * @ses: server session structure 862 * @server: pointer to server info 863 * @iov: array containing the SMB request we will send to the server 864 * @nvec: number of array entries for the iov 865 */ 866int 867smb311_update_preauth_hash(struct cifs_ses *ses, struct TCP_Server_Info *server, 868 struct kvec *iov, int nvec) 869{ 870 int i, rc; 871 struct sdesc *d; 872 struct smb2_hdr *hdr; 873 874 hdr = (struct smb2_hdr *)iov[0].iov_base; 875 /* neg prot are always taken */ 876 if (hdr->Command == SMB2_NEGOTIATE) 877 goto ok; 878 879 /* 880 * If we process a command which wasn't a negprot it means the 881 * neg prot was already done, so the server dialect was set 882 * and we can test it. Preauth requires 3.1.1 for now. 883 */ 884 if (server->dialect != SMB311_PROT_ID) 885 return 0; 886 887 if (hdr->Command != SMB2_SESSION_SETUP) 888 return 0; 889 890 /* skip last sess setup response */ 891 if ((hdr->Flags & SMB2_FLAGS_SERVER_TO_REDIR) 892 && (hdr->Status == NT_STATUS_OK 893 || (hdr->Status != 894 cpu_to_le32(NT_STATUS_MORE_PROCESSING_REQUIRED)))) 895 return 0; 896 897ok: 898 rc = smb311_crypto_shash_allocate(server); 899 if (rc) 900 return rc; 901 902 d = server->secmech.sdescsha512; 903 rc = crypto_shash_init(&d->shash); 904 if (rc) { 905 cifs_dbg(VFS, "%s: Could not init sha512 shash\n", __func__); 906 return rc; 907 } 908 909 rc = crypto_shash_update(&d->shash, ses->preauth_sha_hash, 910 SMB2_PREAUTH_HASH_SIZE); 911 if (rc) { 912 cifs_dbg(VFS, "%s: Could not update sha512 shash\n", __func__); 913 return rc; 914 } 915 916 for (i = 0; i < nvec; i++) { 917 rc = crypto_shash_update(&d->shash, 918 iov[i].iov_base, iov[i].iov_len); 919 if (rc) { 920 cifs_dbg(VFS, "%s: Could not update sha512 shash\n", 921 __func__); 922 return rc; 923 } 924 } 925 926 rc = crypto_shash_final(&d->shash, ses->preauth_sha_hash); 927 if (rc) { 928 cifs_dbg(VFS, "%s: Could not finalize sha512 shash\n", 929 __func__); 930 return rc; 931 } 932 933 return 0; 934}