1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 23 * Use is subject to license terms. 24 */ 25 26 #include <smbsrv/smb_incl.h> 27 #include <smbsrv/smb_fsops.h> 28 29 30 /* 31 * The maximum number of bytes to return from SMB Core 32 * SmbRead or SmbLockAndRead. 33 */ 34 #define SMB_CORE_READ_MAX 4432 35 36 /* 37 * The limit in bytes for SmbReadX. 38 */ 39 #define SMB_READX_MAX 0x10000 40 41 int smb_common_read(smb_request_t *, smb_rw_param_t *); 42 43 /* 44 * Read bytes from a file or named pipe (SMB Core). 45 * 46 * The requested count specifies the number of bytes desired. Offset 47 * is limited to 32 bits, so this client request is inappropriate for 48 * files with 64 bit offsets. 49 * 50 * On return, count is the number of bytes actually being returned, which 51 * may be less than the count requested only if a read specifies bytes 52 * beyond the current file size. In this case only the bytes that exist 53 * are returned. A read completely beyond the end of file results in a 54 * response of length zero. This is the only circumstance when a zero 55 * length response is generated. A count returned which is less than the 56 * count requested is the end of file indicator. 57 */ 58 smb_sdrc_t 59 smb_pre_read(smb_request_t *sr) 60 { 61 smb_rw_param_t *param; 62 uint32_t off_low; 63 uint16_t count; 64 uint16_t remcnt; 65 int rc; 66 67 param = kmem_zalloc(sizeof (smb_rw_param_t), KM_SLEEP); 68 sr->arg.rw = param; 69 70 rc = smbsr_decode_vwv(sr, "wwlw", &sr->smb_fid, 71 &count, &off_low, &remcnt); 72 73 param->rw_offset = (uint64_t)off_low; 74 param->rw_count = (uint32_t)count; 75 param->rw_mincnt = 0; 76 77 DTRACE_SMB_2(op__Read__start, smb_request_t *, sr, 78 smb_rw_param_t *, param); 79 80 return ((rc == 0) ? SDRC_SUCCESS : SDRC_ERROR); 81 } 82 83 void 84 smb_post_read(smb_request_t *sr) 85 { 86 DTRACE_SMB_2(op__Read__done, smb_request_t *, sr, 87 smb_rw_param_t *, sr->arg.rw); 88 89 kmem_free(sr->arg.rw, sizeof (smb_rw_param_t)); 90 } 91 92 smb_sdrc_t 93 smb_com_read(smb_request_t *sr) 94 { 95 smb_rw_param_t *param = sr->arg.rw; 96 uint16_t count; 97 int rc; 98 99 smbsr_lookup_file(sr); 100 if (sr->fid_ofile == NULL) { 101 smbsr_error(sr, NT_STATUS_INVALID_HANDLE, ERRDOS, ERRbadfid); 102 return (SDRC_ERROR); 103 } 104 105 sr->user_cr = smb_ofile_getcred(sr->fid_ofile); 106 107 if (param->rw_count > SMB_CORE_READ_MAX) 108 param->rw_count = SMB_CORE_READ_MAX; 109 110 if ((rc = smb_common_read(sr, param)) != 0) { 111 smbsr_errno(sr, rc); 112 return (SDRC_ERROR); 113 } 114 115 count = (uint16_t)param->rw_count; 116 rc = smbsr_encode_result(sr, 5, VAR_BCC, "bw8.wbwC", 117 5, count, VAR_BCC, 0x01, count, &sr->raw_data); 118 119 return ((rc == 0) ? SDRC_SUCCESS : SDRC_ERROR); 120 } 121 122 /* 123 * Lock and read bytes from a file (SMB Core Plus). The SmbLockAndRead/ 124 * SmbLockAndWrite sub-dialect is only valid on disk files: reject any 125 * attempt to use it on non-disk shares. 126 * 127 * The requested count specifies the number of bytes desired. Offset 128 * specifies the offset in the file of the first byte to be locked then 129 * read. Note that offset is limited to 32 bits, so this client request 130 * is inappropriate for files with 64 bit offsets. 131 * 132 * As with SMB_LOCK_BYTE_RANGE request, if the lock cannot be granted 133 * immediately an error should be returned to the client. If an error 134 * occurs on the lock, the bytes should not be read. 135 * 136 * On return, count is the number of bytes actually being returned, which 137 * may be less than the count requested only if a read specifies bytes 138 * beyond the current file size. In this case only the bytes that exist 139 * are returned. A read completely beyond the end of file results in a 140 * response of length zero. This is the only circumstance when a zero 141 * length response is generated. A count returned which is less than the 142 * count requested is the end of file indicator. 143 */ 144 smb_sdrc_t 145 smb_pre_lock_and_read(smb_request_t *sr) 146 { 147 smb_rw_param_t *param; 148 uint32_t off_low; 149 uint16_t count; 150 uint16_t remcnt; 151 int rc; 152 153 param = kmem_zalloc(sizeof (smb_rw_param_t), KM_SLEEP); 154 sr->arg.rw = param; 155 156 rc = smbsr_decode_vwv(sr, "wwlw", &sr->smb_fid, 157 &count, &off_low, &remcnt); 158 159 param->rw_offset = (uint64_t)off_low; 160 param->rw_count = (uint32_t)count; 161 param->rw_mincnt = 0; 162 163 DTRACE_SMB_2(op__LockAndRead__start, smb_request_t *, sr, 164 smb_rw_param_t *, param); 165 166 return ((rc == 0) ? SDRC_SUCCESS : SDRC_ERROR); 167 } 168 169 void 170 smb_post_lock_and_read(smb_request_t *sr) 171 { 172 DTRACE_SMB_2(op__LockAndRead__done, smb_request_t *, sr, 173 smb_rw_param_t *, sr->arg.rw); 174 175 kmem_free(sr->arg.rw, sizeof (smb_rw_param_t)); 176 } 177 178 smb_sdrc_t 179 smb_com_lock_and_read(smb_request_t *sr) 180 { 181 smb_rw_param_t *param = sr->arg.rw; 182 DWORD status; 183 uint16_t count; 184 int rc; 185 186 if (STYPE_ISDSK(sr->tid_tree->t_res_type) == 0) { 187 smbsr_error(sr, NT_STATUS_ACCESS_DENIED, ERRDOS, ERRnoaccess); 188 return (SDRC_ERROR); 189 } 190 191 smbsr_lookup_file(sr); 192 if (sr->fid_ofile == NULL) { 193 smbsr_error(sr, NT_STATUS_INVALID_HANDLE, ERRDOS, ERRbadfid); 194 return (SDRC_ERROR); 195 } 196 197 sr->user_cr = smb_ofile_getcred(sr->fid_ofile); 198 199 status = smb_lock_range(sr, param->rw_offset, (uint64_t)param->rw_count, 200 0, SMB_LOCK_TYPE_READWRITE); 201 202 if (status != NT_STATUS_SUCCESS) { 203 smb_lock_range_error(sr, status); 204 return (SDRC_ERROR); 205 } 206 207 if (param->rw_count > SMB_CORE_READ_MAX) 208 param->rw_count = SMB_CORE_READ_MAX; 209 210 if ((rc = smb_common_read(sr, param)) != 0) { 211 smbsr_errno(sr, rc); 212 return (SDRC_ERROR); 213 } 214 215 count = (uint16_t)param->rw_count; 216 rc = smbsr_encode_result(sr, 5, VAR_BCC, "bw8.wbwC", 217 5, count, VAR_BCC, 0x1, count, &sr->raw_data); 218 219 return ((rc == 0) ? SDRC_SUCCESS : SDRC_ERROR); 220 } 221 222 /* 223 * The SMB_COM_READ_RAW protocol is a negotiated option introduced in 224 * SMB Core Plus to maximize performance when reading a large block 225 * of data from a server. This request was extended in LM 0.12 to 226 * support 64-bit offsets; the server can indicate support by setting 227 * CAP_LARGE_FILES in the negotiated capabilities. 228 * 229 * The client must guarantee that there is (and will be) no other request 230 * to the server for the duration of the SMB_COM_READ_RAW, since the 231 * server response has no header or trailer. To help ensure that there 232 * are no interruptions, we block all I/O for the session during read raw. 233 * 234 * If this is the first SMB request received since we sent an oplock break 235 * to this client, we don't know if it's safe to send the raw data because 236 * the requests may have crossed on the wire and the client may have 237 * interpreted the oplock break as part of the raw data. To avoid problems, 238 * we send a zero length session packet, which will force the client to 239 * retry the read. 240 * 241 * Do not return errors from SmbReadRaw. 242 * Read errors are handled by sending a zero length response. 243 */ 244 smb_sdrc_t 245 smb_pre_read_raw(smb_request_t *sr) 246 { 247 smb_rw_param_t *param; 248 uint32_t off_low; 249 uint32_t off_high; 250 uint32_t timeout; 251 uint16_t count; 252 int rc; 253 254 param = kmem_zalloc(sizeof (smb_rw_param_t), KM_SLEEP); 255 sr->arg.rw = param; 256 257 if (sr->smb_wct == 8) { 258 rc = smbsr_decode_vwv(sr, "wlwwl2.", &sr->smb_fid, 259 &off_low, &count, ¶m->rw_mincnt, &timeout); 260 if (rc == 0) { 261 param->rw_offset = (uint64_t)off_low; 262 param->rw_count = (uint32_t)count; 263 } 264 } else { 265 rc = smbsr_decode_vwv(sr, "wlwwl2.l", &sr->smb_fid, 266 &off_low, &count, ¶m->rw_mincnt, &timeout, &off_high); 267 if (rc == 0) { 268 param->rw_offset = ((uint64_t)off_high << 32) | off_low; 269 param->rw_count = (uint32_t)count; 270 } 271 } 272 273 DTRACE_SMB_2(op__ReadRaw__start, smb_request_t *, sr, 274 smb_rw_param_t *, param); 275 276 return (SDRC_SUCCESS); 277 } 278 279 void 280 smb_post_read_raw(smb_request_t *sr) 281 { 282 mbuf_chain_t *mbc; 283 284 if (sr->session->s_state == SMB_SESSION_STATE_READ_RAW_ACTIVE) { 285 sr->session->s_state = SMB_SESSION_STATE_NEGOTIATED; 286 287 while ((mbc = list_head(&sr->session->s_oplock_brkreqs)) != 288 NULL) { 289 SMB_MBC_VALID(mbc); 290 list_remove(&sr->session->s_oplock_brkreqs, mbc); 291 (void) smb_session_send(sr->session, 0, mbc); 292 smb_mbc_free(mbc); 293 } 294 } 295 296 DTRACE_SMB_2(op__ReadRaw__done, smb_request_t *, sr, 297 smb_rw_param_t *, sr->arg.rw); 298 299 kmem_free(sr->arg.rw, sizeof (smb_rw_param_t)); 300 } 301 302 smb_sdrc_t 303 smb_com_read_raw(smb_request_t *sr) 304 { 305 smb_rw_param_t *param = sr->arg.rw; 306 307 switch (sr->session->s_state) { 308 case SMB_SESSION_STATE_NEGOTIATED: 309 sr->session->s_state = SMB_SESSION_STATE_READ_RAW_ACTIVE; 310 break; 311 312 case SMB_SESSION_STATE_OPLOCK_BREAKING: 313 (void) smb_session_send(sr->session, 0, NULL); 314 return (SDRC_NO_REPLY); 315 316 case SMB_SESSION_STATE_TERMINATED: 317 case SMB_SESSION_STATE_DISCONNECTED: 318 return (SDRC_NO_REPLY); 319 320 case SMB_SESSION_STATE_READ_RAW_ACTIVE: 321 sr->session->s_state = SMB_SESSION_STATE_NEGOTIATED; 322 return (SDRC_DROP_VC); 323 324 case SMB_SESSION_STATE_WRITE_RAW_ACTIVE: 325 case SMB_SESSION_STATE_CONNECTED: 326 case SMB_SESSION_STATE_ESTABLISHED: 327 default: 328 return (SDRC_DROP_VC); 329 } 330 331 smbsr_lookup_file(sr); 332 if (sr->fid_ofile == NULL) { 333 (void) smb_session_send(sr->session, 0, NULL); 334 return (SDRC_NO_REPLY); 335 } 336 337 sr->user_cr = smb_ofile_getcred(sr->fid_ofile); 338 339 if (param->rw_mincnt > param->rw_count) 340 param->rw_mincnt = 0; 341 342 if (smb_common_read(sr, param) != 0) { 343 (void) smb_session_send(sr->session, 0, NULL); 344 m_freem(sr->raw_data.chain); 345 sr->raw_data.chain = NULL; 346 } else { 347 (void) smb_session_send(sr->session, 0, &sr->raw_data); 348 } 349 350 return (SDRC_NO_REPLY); 351 } 352 353 /* 354 * Read bytes from a file (SMB Core). This request was extended in 355 * LM 0.12 to support 64-bit offsets, indicated by sending a wct of 356 * 12 and including additional offset information. 357 * 358 * MS-SMB 3.3.5.7 update to LM 0.12 4.2.4: 359 * If wct is 12 and CAP_LARGE_READX is set, the count may be larger 360 * than the negotiated buffer size. If maxcnt_high is 0xFF, it must 361 * be ignored. Otherwise, maxcnt_high represents the upper 16 bits 362 * of rw_count. 363 */ 364 smb_sdrc_t 365 smb_pre_read_andx(smb_request_t *sr) 366 { 367 smb_rw_param_t *param; 368 uint32_t off_low; 369 uint32_t off_high; 370 uint32_t maxcnt_high; 371 uint16_t maxcnt_low; 372 uint16_t mincnt; 373 uint16_t remcnt; 374 int rc; 375 376 param = kmem_zalloc(sizeof (smb_rw_param_t), KM_SLEEP); 377 sr->arg.rw = param; 378 379 if (sr->smb_wct == 12) { 380 rc = smbsr_decode_vwv(sr, "b3.wlwwlwl", ¶m->rw_andx, 381 &sr->smb_fid, &off_low, &maxcnt_low, &mincnt, &maxcnt_high, 382 &remcnt, &off_high); 383 384 param->rw_offset = ((uint64_t)off_high << 32) | 385 (uint64_t)off_low; 386 387 param->rw_count = (uint32_t)maxcnt_low; 388 if (maxcnt_high < 0xFF) 389 param->rw_count |= maxcnt_high << 16; 390 } else { 391 rc = smbsr_decode_vwv(sr, "b3.wlwwlw", ¶m->rw_andx, 392 &sr->smb_fid, &off_low, &maxcnt_low, &mincnt, &maxcnt_high, 393 &remcnt); 394 395 param->rw_offset = (uint64_t)off_low; 396 param->rw_count = (uint32_t)maxcnt_low; 397 } 398 399 param->rw_mincnt = 0; 400 401 DTRACE_SMB_2(op__ReadX__start, smb_request_t *, sr, 402 smb_rw_param_t *, param); 403 404 return ((rc == 0) ? SDRC_SUCCESS : SDRC_ERROR); 405 } 406 407 void 408 smb_post_read_andx(smb_request_t *sr) 409 { 410 DTRACE_SMB_2(op__ReadX__done, smb_request_t *, sr, 411 smb_rw_param_t *, sr->arg.rw); 412 413 kmem_free(sr->arg.rw, sizeof (smb_rw_param_t)); 414 } 415 416 smb_sdrc_t 417 smb_com_read_andx(smb_request_t *sr) 418 { 419 smb_rw_param_t *param = sr->arg.rw; 420 uint16_t datalen_high; 421 uint16_t datalen_low; 422 uint16_t data_offset; 423 uint16_t offset2; 424 int rc; 425 426 smbsr_lookup_file(sr); 427 if (sr->fid_ofile == NULL) { 428 smbsr_error(sr, NT_STATUS_INVALID_HANDLE, ERRDOS, ERRbadfid); 429 return (SDRC_ERROR); 430 } 431 432 sr->user_cr = smb_ofile_getcred(sr->fid_ofile); 433 434 if (param->rw_count >= SMB_READX_MAX) 435 param->rw_count = 0; 436 437 if ((rc = smb_common_read(sr, param)) != 0) { 438 smbsr_errno(sr, rc); 439 return (SDRC_ERROR); 440 } 441 442 datalen_low = param->rw_count & 0xFFFF; 443 datalen_high = (param->rw_count >> 16) & 0xFF; 444 445 /* 446 * If this is a secondary command, the data offset 447 * includes the previous wct + sizeof(wct). 448 */ 449 data_offset = (sr->andx_prev_wct == 0) ? 0 : sr->andx_prev_wct + 1; 450 451 if (STYPE_ISIPC(sr->tid_tree->t_res_type)) { 452 data_offset += 60; 453 offset2 = (param->rw_andx == 0xFF) ? 0 : param->rw_count + 60; 454 455 rc = smbsr_encode_result(sr, 12, VAR_BCC, "bb1.ww4.www8.wbC", 456 12, /* wct */ 457 param->rw_andx, /* secondary andx command */ 458 offset2, /* offset to next command */ 459 0, /* set to 0 for named pipes */ 460 datalen_low, /* data byte count */ 461 data_offset, /* offset from start to data */ 462 datalen_high, /* data byte count */ 463 VAR_BCC, /* BCC marker */ 464 0x00, /* padding */ 465 &sr->raw_data); 466 } else { 467 data_offset += 59; 468 offset2 = (param->rw_andx == 0xFF) ? 0 : param->rw_count + 59; 469 470 rc = smbsr_encode_result(sr, 12, VAR_BCC, "bb1.ww4.www8.wC", 471 12, /* wct */ 472 param->rw_andx, /* secondary andx command */ 473 offset2, /* offset to next command */ 474 -1, /* must be -1 for regular files */ 475 datalen_low, /* data byte count */ 476 data_offset, /* offset from start to data */ 477 datalen_high, /* data byte count */ 478 VAR_BCC, /* BCC marker */ 479 &sr->raw_data); 480 } 481 482 return ((rc == 0) ? SDRC_SUCCESS : SDRC_ERROR); 483 } 484 485 /* 486 * Common function for reading files or IPC/MSRPC named pipes. All 487 * protocol read functions should lookup the fid before calling this 488 * function. We can't move the fid lookup here because lock-and-read 489 * requires the fid to do locking before attempting the read. 490 * 491 * Returns errno values. 492 */ 493 int 494 smb_common_read(smb_request_t *sr, smb_rw_param_t *param) 495 { 496 smb_ofile_t *ofile = sr->fid_ofile; 497 smb_node_t *node; 498 smb_vdb_t *vdb = ¶m->rw_vdb; 499 struct mbuf *top; 500 int rc; 501 502 vdb->vdb_tag = 0; 503 vdb->vdb_uio.uio_iov = &vdb->vdb_iovec[0]; 504 vdb->vdb_uio.uio_iovcnt = MAX_IOVEC; 505 vdb->vdb_uio.uio_resid = param->rw_count; 506 vdb->vdb_uio.uio_loffset = (offset_t)param->rw_offset; 507 vdb->vdb_uio.uio_segflg = UIO_SYSSPACE; 508 509 switch (sr->tid_tree->t_res_type & STYPE_MASK) { 510 case STYPE_DISKTREE: 511 node = ofile->f_node; 512 513 if (node->attr.sa_vattr.va_type != VDIR) { 514 rc = smb_lock_range_access(sr, node, param->rw_offset, 515 param->rw_count, B_FALSE); 516 if (rc != NT_STATUS_SUCCESS) { 517 rc = ERANGE; 518 break; 519 } 520 } 521 522 if ((ofile->f_flags & SMB_OFLAGS_EXECONLY) && 523 !(sr->smb_flg2 & SMB_FLAGS2_PAGING_IO)) { 524 /* 525 * SMB_FLAGS2_PAGING_IO: permit execute-only reads. 526 * 527 * Reject request if the file has been opened 528 * execute-only and SMB_FLAGS2_PAGING_IO is not set. 529 */ 530 rc = EACCES; 531 break; 532 } 533 534 (void) smb_sync_fsattr(sr, sr->user_cr, node); 535 536 sr->raw_data.max_bytes = vdb->vdb_uio.uio_resid; 537 top = smb_mbuf_allocate(&vdb->vdb_uio); 538 539 rc = smb_fsop_read(sr, sr->user_cr, node, &vdb->vdb_uio, 540 &node->attr); 541 542 sr->raw_data.max_bytes -= vdb->vdb_uio.uio_resid; 543 smb_mbuf_trim(top, sr->raw_data.max_bytes); 544 MBC_ATTACH_MBUF(&sr->raw_data, top); 545 break; 546 547 case STYPE_IPC: 548 rc = smb_opipe_read(sr, &vdb->vdb_uio); 549 break; 550 551 default: 552 rc = EACCES; 553 break; 554 } 555 556 param->rw_count -= vdb->vdb_uio.uio_resid; 557 558 if (rc != 0) 559 return (rc); 560 561 if (param->rw_mincnt != 0 && param->rw_count < param->rw_mincnt) { 562 /* 563 * mincnt is only used by read-raw and is typically 564 * zero. If mincnt is greater than zero and the 565 * number of bytes read is less than mincnt, tell 566 * the client that we read nothing. 567 */ 568 param->rw_count = 0; 569 } 570 571 param->rw_offset += param->rw_count; 572 mutex_enter(&sr->fid_ofile->f_mutex); 573 ofile->f_seek_pos = param->rw_offset; 574 mutex_exit(&sr->fid_ofile->f_mutex); 575 return (rc); 576 } 577