1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Copyright (C) 2016 Namjae Jeon <linkinjeon@kernel.org> 4 * Copyright (C) 2018 Samsung Electronics Co., Ltd. 5 */ 6 7 #include <crypto/utils.h> 8 #include <linux/inetdevice.h> 9 #include <net/addrconf.h> 10 #include <linux/syscalls.h> 11 #include <linux/namei.h> 12 #include <linux/statfs.h> 13 #include <linux/ethtool.h> 14 #include <linux/falloc.h> 15 #include <linux/mount.h> 16 #include <linux/filelock.h> 17 18 #include "glob.h" 19 #include "smbfsctl.h" 20 #include "oplock.h" 21 #include "smbacl.h" 22 23 #include "auth.h" 24 #include "asn1.h" 25 #include "connection.h" 26 #include "transport_ipc.h" 27 #include "transport_rdma.h" 28 #include "vfs.h" 29 #include "vfs_cache.h" 30 #include "misc.h" 31 32 #include "server.h" 33 #include "smb_common.h" 34 #include "../common/smb2status.h" 35 #include "ksmbd_work.h" 36 #include "mgmt/user_config.h" 37 #include "mgmt/share_config.h" 38 #include "mgmt/tree_connect.h" 39 #include "mgmt/user_session.h" 40 #include "mgmt/ksmbd_ida.h" 41 #include "ndr.h" 42 #include "stats.h" 43 #include "transport_tcp.h" 44 45 static void __wbuf(struct ksmbd_work *work, void **req, void **rsp) 46 { 47 if (work->next_smb2_rcv_hdr_off) { 48 *req = ksmbd_req_buf_next(work); 49 *rsp = ksmbd_resp_buf_next(work); 50 } else { 51 *req = smb_get_msg(work->request_buf); 52 *rsp = smb_get_msg(work->response_buf); 53 } 54 } 55 56 #define WORK_BUFFERS(w, rq, rs) __wbuf((w), (void **)&(rq), (void **)&(rs)) 57 58 /** 59 * check_session_id() - check for valid session id in smb header 60 * @conn: connection instance 61 * @id: session id from smb header 62 * 63 * Return: 1 if valid session id, otherwise 0 64 */ 65 static inline bool check_session_id(struct ksmbd_conn *conn, u64 id) 66 { 67 struct ksmbd_session *sess; 68 69 if (id == 0 || id == -1) 70 return false; 71 72 sess = ksmbd_session_lookup_all(conn, id); 73 if (sess) { 74 ksmbd_user_session_put(sess); 75 return true; 76 } 77 pr_err("Invalid user session id: %llu\n", id); 78 return false; 79 } 80 81 struct channel *lookup_chann_list(struct ksmbd_session *sess, struct ksmbd_conn *conn) 82 { 83 struct channel *chann; 84 85 down_read(&sess->chann_lock); 86 chann = xa_load(&sess->ksmbd_chann_list, (long)conn); 87 up_read(&sess->chann_lock); 88 89 return chann; 90 } 91 92 /** 93 * smb2_get_ksmbd_tcon() - get tree connection information using a tree id. 94 * @work: smb work 95 * 96 * Return: 0 if there is a tree connection matched or these are 97 * skipable commands, otherwise error 98 */ 99 int smb2_get_ksmbd_tcon(struct ksmbd_work *work) 100 { 101 struct smb2_hdr *req_hdr = ksmbd_req_buf_next(work); 102 unsigned int cmd = le16_to_cpu(req_hdr->Command); 103 unsigned int tree_id; 104 105 if (cmd == SMB2_TREE_CONNECT_HE || 106 cmd == SMB2_CANCEL_HE || 107 cmd == SMB2_LOGOFF_HE) { 108 ksmbd_debug(SMB, "skip to check tree connect request\n"); 109 return 0; 110 } 111 112 if (xa_empty(&work->sess->tree_conns)) { 113 ksmbd_debug(SMB, "NO tree connected\n"); 114 return -ENOENT; 115 } 116 117 tree_id = le32_to_cpu(req_hdr->Id.SyncId.TreeId); 118 119 /* 120 * If request is not the first in Compound request, 121 * Just validate tree id in header with work->tcon->id. 122 */ 123 if (work->next_smb2_rcv_hdr_off) { 124 if (!work->tcon) { 125 pr_err("The first operation in the compound does not have tcon\n"); 126 return -EINVAL; 127 } 128 if (work->tcon->t_state != TREE_CONNECTED) 129 return -ENOENT; 130 if (tree_id != UINT_MAX && work->tcon->id != tree_id) { 131 pr_err("tree id(%u) is different with id(%u) in first operation\n", 132 tree_id, work->tcon->id); 133 return -EINVAL; 134 } 135 return 1; 136 } 137 138 work->tcon = ksmbd_tree_conn_lookup(work->sess, tree_id); 139 if (!work->tcon) { 140 pr_err("Invalid tid %d\n", tree_id); 141 return -ENOENT; 142 } 143 144 return 1; 145 } 146 147 /** 148 * smb2_set_err_rsp() - set error response code on smb response 149 * @work: smb work containing response buffer 150 */ 151 void smb2_set_err_rsp(struct ksmbd_work *work) 152 { 153 struct smb2_err_rsp *err_rsp; 154 155 if (work->next_smb2_rcv_hdr_off) 156 err_rsp = ksmbd_resp_buf_next(work); 157 else 158 err_rsp = smb_get_msg(work->response_buf); 159 160 if (err_rsp->hdr.Status != STATUS_STOPPED_ON_SYMLINK) { 161 int err; 162 163 err_rsp->StructureSize = SMB2_ERROR_STRUCTURE_SIZE2_LE; 164 err_rsp->ErrorContextCount = 0; 165 err_rsp->Reserved = 0; 166 err_rsp->ByteCount = 0; 167 err_rsp->ErrorData[0] = 0; 168 err = ksmbd_iov_pin_rsp(work, (void *)err_rsp, 169 __SMB2_HEADER_STRUCTURE_SIZE + 170 SMB2_ERROR_STRUCTURE_SIZE2); 171 if (err) 172 work->send_no_response = 1; 173 } 174 } 175 176 /** 177 * is_smb2_neg_cmd() - is it smb2 negotiation command 178 * @work: smb work containing smb header 179 * 180 * Return: true if smb2 negotiation command, otherwise false 181 */ 182 bool is_smb2_neg_cmd(struct ksmbd_work *work) 183 { 184 struct smb2_hdr *hdr = smb_get_msg(work->request_buf); 185 186 /* is it SMB2 header ? */ 187 if (hdr->ProtocolId != SMB2_PROTO_NUMBER) 188 return false; 189 190 /* make sure it is request not response message */ 191 if (hdr->Flags & SMB2_FLAGS_SERVER_TO_REDIR) 192 return false; 193 194 if (hdr->Command != SMB2_NEGOTIATE) 195 return false; 196 197 return true; 198 } 199 200 /** 201 * is_smb2_rsp() - is it smb2 response 202 * @work: smb work containing smb response buffer 203 * 204 * Return: true if smb2 response, otherwise false 205 */ 206 bool is_smb2_rsp(struct ksmbd_work *work) 207 { 208 struct smb2_hdr *hdr = smb_get_msg(work->response_buf); 209 210 /* is it SMB2 header ? */ 211 if (hdr->ProtocolId != SMB2_PROTO_NUMBER) 212 return false; 213 214 /* make sure it is response not request message */ 215 if (!(hdr->Flags & SMB2_FLAGS_SERVER_TO_REDIR)) 216 return false; 217 218 return true; 219 } 220 221 /** 222 * get_smb2_cmd_val() - get smb command code from smb header 223 * @work: smb work containing smb request buffer 224 * 225 * Return: smb2 request command value 226 */ 227 u16 get_smb2_cmd_val(struct ksmbd_work *work) 228 { 229 struct smb2_hdr *rcv_hdr; 230 231 if (work->next_smb2_rcv_hdr_off) 232 rcv_hdr = ksmbd_req_buf_next(work); 233 else 234 rcv_hdr = smb_get_msg(work->request_buf); 235 return le16_to_cpu(rcv_hdr->Command); 236 } 237 238 /** 239 * set_smb2_rsp_status() - set error response code on smb2 header 240 * @work: smb work containing response buffer 241 * @err: error response code 242 */ 243 void set_smb2_rsp_status(struct ksmbd_work *work, __le32 err) 244 { 245 struct smb2_hdr *rsp_hdr; 246 247 rsp_hdr = smb_get_msg(work->response_buf); 248 rsp_hdr->Status = err; 249 250 work->iov_idx = 0; 251 work->iov_cnt = 0; 252 work->next_smb2_rcv_hdr_off = 0; 253 smb2_set_err_rsp(work); 254 } 255 256 /** 257 * init_smb2_neg_rsp() - initialize smb2 response for negotiate command 258 * @work: smb work containing smb request buffer 259 * 260 * smb2 negotiate response is sent in reply of smb1 negotiate command for 261 * dialect auto-negotiation. 262 */ 263 int init_smb2_neg_rsp(struct ksmbd_work *work) 264 { 265 struct smb2_hdr *rsp_hdr; 266 struct smb2_negotiate_rsp *rsp; 267 struct ksmbd_conn *conn = work->conn; 268 int err; 269 270 rsp_hdr = smb_get_msg(work->response_buf); 271 memset(rsp_hdr, 0, sizeof(struct smb2_hdr) + 2); 272 rsp_hdr->ProtocolId = SMB2_PROTO_NUMBER; 273 rsp_hdr->StructureSize = SMB2_HEADER_STRUCTURE_SIZE; 274 rsp_hdr->CreditRequest = cpu_to_le16(2); 275 rsp_hdr->Command = SMB2_NEGOTIATE; 276 rsp_hdr->Flags = (SMB2_FLAGS_SERVER_TO_REDIR); 277 rsp_hdr->NextCommand = 0; 278 rsp_hdr->MessageId = 0; 279 rsp_hdr->Id.SyncId.ProcessId = 0; 280 rsp_hdr->Id.SyncId.TreeId = 0; 281 rsp_hdr->SessionId = 0; 282 memset(rsp_hdr->Signature, 0, 16); 283 284 rsp = smb_get_msg(work->response_buf); 285 286 WARN_ON(ksmbd_conn_good(conn)); 287 288 rsp->StructureSize = cpu_to_le16(65); 289 ksmbd_debug(SMB, "conn->dialect 0x%x\n", conn->dialect); 290 rsp->DialectRevision = cpu_to_le16(conn->dialect); 291 /* Not setting conn guid rsp->ServerGUID, as it 292 * not used by client for identifying connection 293 */ 294 rsp->Capabilities = cpu_to_le32(conn->vals->req_capabilities); 295 /* Default Max Message Size till SMB2.0, 64K*/ 296 rsp->MaxTransactSize = cpu_to_le32(conn->vals->max_trans_size); 297 rsp->MaxReadSize = cpu_to_le32(conn->vals->max_read_size); 298 rsp->MaxWriteSize = cpu_to_le32(conn->vals->max_write_size); 299 300 rsp->SystemTime = cpu_to_le64(ksmbd_systime()); 301 rsp->ServerStartTime = 0; 302 303 rsp->SecurityBufferOffset = cpu_to_le16(128); 304 rsp->SecurityBufferLength = cpu_to_le16(AUTH_GSS_LENGTH); 305 ksmbd_copy_gss_neg_header((char *)(&rsp->hdr) + 306 le16_to_cpu(rsp->SecurityBufferOffset)); 307 rsp->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED_LE; 308 if (server_conf.signing == KSMBD_CONFIG_OPT_MANDATORY) 309 rsp->SecurityMode |= SMB2_NEGOTIATE_SIGNING_REQUIRED_LE; 310 err = ksmbd_iov_pin_rsp(work, rsp, 311 sizeof(struct smb2_negotiate_rsp) + AUTH_GSS_LENGTH); 312 if (err) 313 return err; 314 conn->use_spnego = true; 315 316 ksmbd_conn_set_need_negotiate(conn); 317 return 0; 318 } 319 320 /** 321 * smb2_set_rsp_credits() - set number of credits in response buffer 322 * @work: smb work containing smb response buffer 323 */ 324 int smb2_set_rsp_credits(struct ksmbd_work *work) 325 { 326 struct smb2_hdr *req_hdr = ksmbd_req_buf_next(work); 327 struct smb2_hdr *hdr = ksmbd_resp_buf_next(work); 328 struct ksmbd_conn *conn = work->conn; 329 unsigned short credits_requested, aux_max; 330 unsigned short credit_charge, credits_granted = 0; 331 332 if (work->send_no_response) 333 return 0; 334 335 hdr->CreditCharge = req_hdr->CreditCharge; 336 337 if (conn->total_credits > conn->vals->max_credits) { 338 hdr->CreditRequest = 0; 339 pr_err("Total credits overflow: %d\n", conn->total_credits); 340 return -EINVAL; 341 } 342 343 credit_charge = max_t(unsigned short, 344 le16_to_cpu(req_hdr->CreditCharge), 1); 345 if (credit_charge > conn->total_credits) { 346 ksmbd_debug(SMB, "Insufficient credits granted, given: %u, granted: %u\n", 347 credit_charge, conn->total_credits); 348 return -EINVAL; 349 } 350 351 conn->total_credits -= credit_charge; 352 conn->outstanding_credits -= credit_charge; 353 credits_requested = max_t(unsigned short, 354 le16_to_cpu(req_hdr->CreditRequest), 1); 355 356 /* according to smb2.credits smbtorture, Windows server 357 * 2016 or later grant up to 8192 credits at once. 358 * 359 * TODO: Need to adjuct CreditRequest value according to 360 * current cpu load 361 */ 362 if (hdr->Command == SMB2_NEGOTIATE) 363 aux_max = 1; 364 else 365 aux_max = conn->vals->max_credits - conn->total_credits; 366 credits_granted = min_t(unsigned short, credits_requested, aux_max); 367 368 conn->total_credits += credits_granted; 369 work->credits_granted += credits_granted; 370 371 if (!req_hdr->NextCommand) { 372 /* Update CreditRequest in last request */ 373 hdr->CreditRequest = cpu_to_le16(work->credits_granted); 374 } 375 ksmbd_debug(SMB, 376 "credits: requested[%d] granted[%d] total_granted[%d]\n", 377 credits_requested, credits_granted, 378 conn->total_credits); 379 return 0; 380 } 381 382 /** 383 * init_chained_smb2_rsp() - initialize smb2 chained response 384 * @work: smb work containing smb response buffer 385 */ 386 static void init_chained_smb2_rsp(struct ksmbd_work *work) 387 { 388 struct smb2_hdr *req = ksmbd_req_buf_next(work); 389 struct smb2_hdr *rsp = ksmbd_resp_buf_next(work); 390 struct smb2_hdr *rsp_hdr; 391 struct smb2_hdr *rcv_hdr; 392 int next_hdr_offset = 0; 393 int len, new_len; 394 395 /* Len of this response = updated RFC len - offset of previous cmd 396 * in the compound rsp 397 */ 398 399 /* Storing the current local FID which may be needed by subsequent 400 * command in the compound request 401 */ 402 if (req->Command == SMB2_CREATE && rsp->Status == STATUS_SUCCESS) { 403 work->compound_fid = ((struct smb2_create_rsp *)rsp)->VolatileFileId; 404 work->compound_pfid = ((struct smb2_create_rsp *)rsp)->PersistentFileId; 405 work->compound_sid = le64_to_cpu(rsp->SessionId); 406 } 407 408 len = get_rfc1002_len(work->response_buf) - work->next_smb2_rsp_hdr_off; 409 next_hdr_offset = le32_to_cpu(req->NextCommand); 410 411 new_len = ALIGN(len, 8); 412 work->iov[work->iov_idx].iov_len += (new_len - len); 413 inc_rfc1001_len(work->response_buf, new_len - len); 414 rsp->NextCommand = cpu_to_le32(new_len); 415 416 work->next_smb2_rcv_hdr_off += next_hdr_offset; 417 work->curr_smb2_rsp_hdr_off = work->next_smb2_rsp_hdr_off; 418 work->next_smb2_rsp_hdr_off += new_len; 419 ksmbd_debug(SMB, 420 "Compound req new_len = %d rcv off = %d rsp off = %d\n", 421 new_len, work->next_smb2_rcv_hdr_off, 422 work->next_smb2_rsp_hdr_off); 423 424 rsp_hdr = ksmbd_resp_buf_next(work); 425 rcv_hdr = ksmbd_req_buf_next(work); 426 427 if (!(rcv_hdr->Flags & SMB2_FLAGS_RELATED_OPERATIONS)) { 428 ksmbd_debug(SMB, "related flag should be set\n"); 429 work->compound_fid = KSMBD_NO_FID; 430 work->compound_pfid = KSMBD_NO_FID; 431 } 432 memset((char *)rsp_hdr, 0, sizeof(struct smb2_hdr) + 2); 433 rsp_hdr->ProtocolId = SMB2_PROTO_NUMBER; 434 rsp_hdr->StructureSize = SMB2_HEADER_STRUCTURE_SIZE; 435 rsp_hdr->Command = rcv_hdr->Command; 436 437 /* 438 * Message is response. We don't grant oplock yet. 439 */ 440 rsp_hdr->Flags = (SMB2_FLAGS_SERVER_TO_REDIR | 441 SMB2_FLAGS_RELATED_OPERATIONS); 442 rsp_hdr->NextCommand = 0; 443 rsp_hdr->MessageId = rcv_hdr->MessageId; 444 rsp_hdr->Id.SyncId.ProcessId = rcv_hdr->Id.SyncId.ProcessId; 445 rsp_hdr->Id.SyncId.TreeId = rcv_hdr->Id.SyncId.TreeId; 446 rsp_hdr->SessionId = rcv_hdr->SessionId; 447 memcpy(rsp_hdr->Signature, rcv_hdr->Signature, 16); 448 } 449 450 /** 451 * is_chained_smb2_message() - check for chained command 452 * @work: smb work containing smb request buffer 453 * 454 * Return: true if chained request, otherwise false 455 */ 456 bool is_chained_smb2_message(struct ksmbd_work *work) 457 { 458 struct smb2_hdr *hdr = smb_get_msg(work->request_buf); 459 unsigned int len, next_cmd; 460 461 if (hdr->ProtocolId != SMB2_PROTO_NUMBER) 462 return false; 463 464 hdr = ksmbd_req_buf_next(work); 465 next_cmd = le32_to_cpu(hdr->NextCommand); 466 if (next_cmd > 0) { 467 if ((u64)work->next_smb2_rcv_hdr_off + next_cmd + 468 __SMB2_HEADER_STRUCTURE_SIZE > 469 get_rfc1002_len(work->request_buf)) { 470 pr_err("next command(%u) offset exceeds smb msg size\n", 471 next_cmd); 472 return false; 473 } 474 475 if ((u64)get_rfc1002_len(work->response_buf) + MAX_CIFS_SMALL_BUFFER_SIZE > 476 work->response_sz) { 477 pr_err("next response offset exceeds response buffer size\n"); 478 return false; 479 } 480 481 ksmbd_debug(SMB, "got SMB2 chained command\n"); 482 init_chained_smb2_rsp(work); 483 return true; 484 } else if (work->next_smb2_rcv_hdr_off) { 485 /* 486 * This is last request in chained command, 487 * align response to 8 byte 488 */ 489 len = ALIGN(get_rfc1002_len(work->response_buf), 8); 490 len = len - get_rfc1002_len(work->response_buf); 491 if (len) { 492 ksmbd_debug(SMB, "padding len %u\n", len); 493 work->iov[work->iov_idx].iov_len += len; 494 inc_rfc1001_len(work->response_buf, len); 495 } 496 work->curr_smb2_rsp_hdr_off = work->next_smb2_rsp_hdr_off; 497 } 498 return false; 499 } 500 501 /** 502 * init_smb2_rsp_hdr() - initialize smb2 response 503 * @work: smb work containing smb request buffer 504 * 505 * Return: 0 506 */ 507 int init_smb2_rsp_hdr(struct ksmbd_work *work) 508 { 509 struct smb2_hdr *rsp_hdr = smb_get_msg(work->response_buf); 510 struct smb2_hdr *rcv_hdr = smb_get_msg(work->request_buf); 511 512 memset(rsp_hdr, 0, sizeof(struct smb2_hdr) + 2); 513 rsp_hdr->ProtocolId = rcv_hdr->ProtocolId; 514 rsp_hdr->StructureSize = SMB2_HEADER_STRUCTURE_SIZE; 515 rsp_hdr->Command = rcv_hdr->Command; 516 517 /* 518 * Message is response. We don't grant oplock yet. 519 */ 520 rsp_hdr->Flags = (SMB2_FLAGS_SERVER_TO_REDIR); 521 rsp_hdr->NextCommand = 0; 522 rsp_hdr->MessageId = rcv_hdr->MessageId; 523 rsp_hdr->Id.SyncId.ProcessId = rcv_hdr->Id.SyncId.ProcessId; 524 rsp_hdr->Id.SyncId.TreeId = rcv_hdr->Id.SyncId.TreeId; 525 rsp_hdr->SessionId = rcv_hdr->SessionId; 526 memcpy(rsp_hdr->Signature, rcv_hdr->Signature, 16); 527 528 return 0; 529 } 530 531 /** 532 * smb2_allocate_rsp_buf() - allocate smb2 response buffer 533 * @work: smb work containing smb request buffer 534 * 535 * Return: 0 on success, otherwise error 536 */ 537 int smb2_allocate_rsp_buf(struct ksmbd_work *work) 538 { 539 struct smb2_hdr *hdr = smb_get_msg(work->request_buf); 540 size_t small_sz = MAX_CIFS_SMALL_BUFFER_SIZE; 541 size_t large_sz = small_sz + work->conn->vals->max_trans_size; 542 size_t sz = small_sz; 543 int cmd = le16_to_cpu(hdr->Command); 544 545 if (cmd == SMB2_IOCTL_HE || cmd == SMB2_QUERY_DIRECTORY_HE) 546 sz = large_sz; 547 548 if (cmd == SMB2_QUERY_INFO_HE) { 549 struct smb2_query_info_req *req; 550 551 if (get_rfc1002_len(work->request_buf) < 552 offsetof(struct smb2_query_info_req, OutputBufferLength)) 553 return -EINVAL; 554 555 req = smb_get_msg(work->request_buf); 556 if ((req->InfoType == SMB2_O_INFO_FILE && 557 (req->FileInfoClass == FILE_FULL_EA_INFORMATION || 558 req->FileInfoClass == FILE_ALL_INFORMATION)) || 559 req->InfoType == SMB2_O_INFO_SECURITY) 560 sz = large_sz; 561 } 562 563 /* allocate large response buf for chained commands */ 564 if (le32_to_cpu(hdr->NextCommand) > 0) 565 sz = large_sz; 566 567 work->response_buf = kvzalloc(sz, KSMBD_DEFAULT_GFP); 568 if (!work->response_buf) 569 return -ENOMEM; 570 571 work->response_sz = sz; 572 return 0; 573 } 574 575 /** 576 * smb2_check_user_session() - check for valid session for a user 577 * @work: smb work containing smb request buffer 578 * 579 * Return: 0 on success, otherwise error 580 */ 581 int smb2_check_user_session(struct ksmbd_work *work) 582 { 583 struct smb2_hdr *req_hdr = ksmbd_req_buf_next(work); 584 struct ksmbd_conn *conn = work->conn; 585 unsigned int cmd = le16_to_cpu(req_hdr->Command); 586 unsigned long long sess_id; 587 588 /* 589 * SMB2_ECHO, SMB2_NEGOTIATE, SMB2_SESSION_SETUP command do not 590 * require a session id, so no need to validate user session's for 591 * these commands. 592 */ 593 if (cmd == SMB2_ECHO_HE || cmd == SMB2_NEGOTIATE_HE || 594 cmd == SMB2_SESSION_SETUP_HE) 595 return 0; 596 597 if (!ksmbd_conn_good(conn)) 598 return -EIO; 599 600 sess_id = le64_to_cpu(req_hdr->SessionId); 601 602 /* 603 * If request is not the first in Compound request, 604 * Just validate session id in header with work->sess->id. 605 */ 606 if (work->next_smb2_rcv_hdr_off) { 607 if (!work->sess) { 608 pr_err("The first operation in the compound does not have sess\n"); 609 return -EINVAL; 610 } 611 if (sess_id != ULLONG_MAX && work->sess->id != sess_id) { 612 pr_err("session id(%llu) is different with the first operation(%lld)\n", 613 sess_id, work->sess->id); 614 return -EINVAL; 615 } 616 return 1; 617 } 618 619 /* Check for validity of user session */ 620 work->sess = ksmbd_session_lookup_all(conn, sess_id); 621 if (work->sess) 622 return 1; 623 ksmbd_debug(SMB, "Invalid user session, Uid %llu\n", sess_id); 624 return -ENOENT; 625 } 626 627 /** 628 * smb2_get_name() - get filename string from on the wire smb format 629 * @src: source buffer 630 * @maxlen: maxlen of source string 631 * @local_nls: nls_table pointer 632 * 633 * Return: matching converted filename on success, otherwise error ptr 634 */ 635 static char * 636 smb2_get_name(const char *src, const int maxlen, struct nls_table *local_nls) 637 { 638 char *name; 639 640 name = smb_strndup_from_utf16(src, maxlen, 1, local_nls); 641 if (IS_ERR(name)) { 642 pr_err("failed to get name %ld\n", PTR_ERR(name)); 643 return name; 644 } 645 646 if (*name == '\0') { 647 kfree(name); 648 return ERR_PTR(-EINVAL); 649 } 650 651 if (*name == '\\') { 652 pr_err("not allow directory name included leading slash\n"); 653 kfree(name); 654 return ERR_PTR(-EINVAL); 655 } 656 657 ksmbd_conv_path_to_unix(name); 658 ksmbd_strip_last_slash(name); 659 return name; 660 } 661 662 int setup_async_work(struct ksmbd_work *work, void (*fn)(void **), void **arg) 663 { 664 struct ksmbd_conn *conn = work->conn; 665 int id; 666 667 id = ksmbd_acquire_async_msg_id(&conn->async_ida); 668 if (id < 0) { 669 pr_err("Failed to alloc async message id\n"); 670 return id; 671 } 672 work->asynchronous = true; 673 work->async_id = id; 674 675 ksmbd_debug(SMB, 676 "Send interim Response to inform async request id : %d\n", 677 work->async_id); 678 679 work->cancel_fn = fn; 680 work->cancel_argv = arg; 681 682 if (list_empty(&work->async_request_entry)) { 683 spin_lock(&conn->request_lock); 684 list_add_tail(&work->async_request_entry, &conn->async_requests); 685 spin_unlock(&conn->request_lock); 686 } 687 688 return 0; 689 } 690 691 void release_async_work(struct ksmbd_work *work) 692 { 693 struct ksmbd_conn *conn = work->conn; 694 695 spin_lock(&conn->request_lock); 696 list_del_init(&work->async_request_entry); 697 spin_unlock(&conn->request_lock); 698 699 work->asynchronous = 0; 700 work->cancel_fn = NULL; 701 kfree(work->cancel_argv); 702 work->cancel_argv = NULL; 703 if (work->async_id) { 704 ksmbd_release_id(&conn->async_ida, work->async_id); 705 work->async_id = 0; 706 } 707 } 708 709 void smb2_send_interim_resp(struct ksmbd_work *work, __le32 status) 710 { 711 struct smb2_hdr *rsp_hdr; 712 struct ksmbd_work *in_work = ksmbd_alloc_work_struct(); 713 714 if (!in_work) 715 return; 716 717 if (allocate_interim_rsp_buf(in_work)) { 718 pr_err("smb_allocate_rsp_buf failed!\n"); 719 ksmbd_free_work_struct(in_work); 720 return; 721 } 722 723 in_work->conn = work->conn; 724 memcpy(smb_get_msg(in_work->response_buf), ksmbd_resp_buf_next(work), 725 __SMB2_HEADER_STRUCTURE_SIZE); 726 727 rsp_hdr = smb_get_msg(in_work->response_buf); 728 rsp_hdr->Flags |= SMB2_FLAGS_ASYNC_COMMAND; 729 rsp_hdr->Id.AsyncId = cpu_to_le64(work->async_id); 730 smb2_set_err_rsp(in_work); 731 rsp_hdr->Status = status; 732 733 ksmbd_conn_write(in_work); 734 ksmbd_free_work_struct(in_work); 735 } 736 737 static __le32 smb2_get_reparse_tag_special_file(umode_t mode) 738 { 739 if (S_ISDIR(mode) || S_ISREG(mode)) 740 return 0; 741 742 if (S_ISLNK(mode)) 743 return IO_REPARSE_TAG_LX_SYMLINK_LE; 744 else if (S_ISFIFO(mode)) 745 return IO_REPARSE_TAG_LX_FIFO_LE; 746 else if (S_ISSOCK(mode)) 747 return IO_REPARSE_TAG_AF_UNIX_LE; 748 else if (S_ISCHR(mode)) 749 return IO_REPARSE_TAG_LX_CHR_LE; 750 else if (S_ISBLK(mode)) 751 return IO_REPARSE_TAG_LX_BLK_LE; 752 753 return 0; 754 } 755 756 /** 757 * smb2_get_dos_mode() - get file mode in dos format from unix mode 758 * @stat: kstat containing file mode 759 * @attribute: attribute flags 760 * 761 * Return: converted dos mode 762 */ 763 static int smb2_get_dos_mode(struct kstat *stat, int attribute) 764 { 765 int attr = 0; 766 767 if (S_ISDIR(stat->mode)) { 768 attr = FILE_ATTRIBUTE_DIRECTORY | 769 (attribute & (FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM)); 770 } else { 771 attr = (attribute & 0x00005137) | FILE_ATTRIBUTE_ARCHIVE; 772 attr &= ~(FILE_ATTRIBUTE_DIRECTORY); 773 if (S_ISREG(stat->mode) && (server_conf.share_fake_fscaps & 774 FILE_SUPPORTS_SPARSE_FILES)) 775 attr |= FILE_ATTRIBUTE_SPARSE_FILE; 776 777 if (smb2_get_reparse_tag_special_file(stat->mode)) 778 attr |= FILE_ATTRIBUTE_REPARSE_POINT; 779 } 780 781 return attr; 782 } 783 784 static void build_preauth_ctxt(struct smb2_preauth_neg_context *pneg_ctxt, 785 __le16 hash_id) 786 { 787 pneg_ctxt->ContextType = SMB2_PREAUTH_INTEGRITY_CAPABILITIES; 788 pneg_ctxt->DataLength = cpu_to_le16(38); 789 pneg_ctxt->HashAlgorithmCount = cpu_to_le16(1); 790 pneg_ctxt->Reserved = cpu_to_le32(0); 791 pneg_ctxt->SaltLength = cpu_to_le16(SMB311_SALT_SIZE); 792 get_random_bytes(pneg_ctxt->Salt, SMB311_SALT_SIZE); 793 pneg_ctxt->HashAlgorithms = hash_id; 794 } 795 796 static void build_encrypt_ctxt(struct smb2_encryption_neg_context *pneg_ctxt, 797 __le16 cipher_type) 798 { 799 pneg_ctxt->ContextType = SMB2_ENCRYPTION_CAPABILITIES; 800 pneg_ctxt->DataLength = cpu_to_le16(4); 801 pneg_ctxt->Reserved = cpu_to_le32(0); 802 pneg_ctxt->CipherCount = cpu_to_le16(1); 803 pneg_ctxt->Ciphers[0] = cipher_type; 804 } 805 806 static void build_sign_cap_ctxt(struct smb2_signing_capabilities *pneg_ctxt, 807 __le16 sign_algo) 808 { 809 pneg_ctxt->ContextType = SMB2_SIGNING_CAPABILITIES; 810 pneg_ctxt->DataLength = 811 cpu_to_le16((sizeof(struct smb2_signing_capabilities) + 2) 812 - sizeof(struct smb2_neg_context)); 813 pneg_ctxt->Reserved = cpu_to_le32(0); 814 pneg_ctxt->SigningAlgorithmCount = cpu_to_le16(1); 815 pneg_ctxt->SigningAlgorithms[0] = sign_algo; 816 } 817 818 static void build_posix_ctxt(struct smb2_posix_neg_context *pneg_ctxt) 819 { 820 pneg_ctxt->ContextType = SMB2_POSIX_EXTENSIONS_AVAILABLE; 821 pneg_ctxt->DataLength = cpu_to_le16(POSIX_CTXT_DATA_LEN); 822 /* SMB2_CREATE_TAG_POSIX is "0x93AD25509CB411E7B42383DE968BCD7C" */ 823 pneg_ctxt->Name[0] = 0x93; 824 pneg_ctxt->Name[1] = 0xAD; 825 pneg_ctxt->Name[2] = 0x25; 826 pneg_ctxt->Name[3] = 0x50; 827 pneg_ctxt->Name[4] = 0x9C; 828 pneg_ctxt->Name[5] = 0xB4; 829 pneg_ctxt->Name[6] = 0x11; 830 pneg_ctxt->Name[7] = 0xE7; 831 pneg_ctxt->Name[8] = 0xB4; 832 pneg_ctxt->Name[9] = 0x23; 833 pneg_ctxt->Name[10] = 0x83; 834 pneg_ctxt->Name[11] = 0xDE; 835 pneg_ctxt->Name[12] = 0x96; 836 pneg_ctxt->Name[13] = 0x8B; 837 pneg_ctxt->Name[14] = 0xCD; 838 pneg_ctxt->Name[15] = 0x7C; 839 } 840 841 static unsigned int assemble_neg_contexts(struct ksmbd_conn *conn, 842 struct smb2_negotiate_rsp *rsp) 843 { 844 char * const pneg_ctxt = (char *)rsp + 845 le32_to_cpu(rsp->NegotiateContextOffset); 846 int neg_ctxt_cnt = 1; 847 int ctxt_size; 848 849 ksmbd_debug(SMB, 850 "assemble SMB2_PREAUTH_INTEGRITY_CAPABILITIES context\n"); 851 build_preauth_ctxt((struct smb2_preauth_neg_context *)pneg_ctxt, 852 conn->preauth_info->Preauth_HashId); 853 ctxt_size = sizeof(struct smb2_preauth_neg_context); 854 855 if (conn->cipher_type) { 856 /* Round to 8 byte boundary */ 857 ctxt_size = round_up(ctxt_size, 8); 858 ksmbd_debug(SMB, 859 "assemble SMB2_ENCRYPTION_CAPABILITIES context\n"); 860 build_encrypt_ctxt((struct smb2_encryption_neg_context *) 861 (pneg_ctxt + ctxt_size), 862 conn->cipher_type); 863 neg_ctxt_cnt++; 864 ctxt_size += sizeof(struct smb2_encryption_neg_context) + 2; 865 } 866 867 /* compression context not yet supported */ 868 WARN_ON(conn->compress_algorithm != SMB3_COMPRESS_NONE); 869 870 if (conn->posix_ext_supported) { 871 ctxt_size = round_up(ctxt_size, 8); 872 ksmbd_debug(SMB, 873 "assemble SMB2_POSIX_EXTENSIONS_AVAILABLE context\n"); 874 build_posix_ctxt((struct smb2_posix_neg_context *) 875 (pneg_ctxt + ctxt_size)); 876 neg_ctxt_cnt++; 877 ctxt_size += sizeof(struct smb2_posix_neg_context); 878 } 879 880 if (conn->signing_negotiated) { 881 ctxt_size = round_up(ctxt_size, 8); 882 ksmbd_debug(SMB, 883 "assemble SMB2_SIGNING_CAPABILITIES context\n"); 884 build_sign_cap_ctxt((struct smb2_signing_capabilities *) 885 (pneg_ctxt + ctxt_size), 886 conn->signing_algorithm); 887 neg_ctxt_cnt++; 888 ctxt_size += sizeof(struct smb2_signing_capabilities) + 2; 889 } 890 891 rsp->NegotiateContextCount = cpu_to_le16(neg_ctxt_cnt); 892 return ctxt_size + AUTH_GSS_PADDING; 893 } 894 895 static __le32 decode_preauth_ctxt(struct ksmbd_conn *conn, 896 struct smb2_preauth_neg_context *pneg_ctxt, 897 int ctxt_len) 898 { 899 /* 900 * sizeof(smb2_preauth_neg_context) assumes SMB311_SALT_SIZE Salt, 901 * which may not be present. Only check for used HashAlgorithms[1]. 902 */ 903 if (ctxt_len < 904 sizeof(struct smb2_neg_context) + MIN_PREAUTH_CTXT_DATA_LEN) 905 return STATUS_INVALID_PARAMETER; 906 907 if (pneg_ctxt->HashAlgorithms != SMB2_PREAUTH_INTEGRITY_SHA512) 908 return STATUS_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP; 909 910 conn->preauth_info->Preauth_HashId = SMB2_PREAUTH_INTEGRITY_SHA512; 911 return STATUS_SUCCESS; 912 } 913 914 static void decode_encrypt_ctxt(struct ksmbd_conn *conn, 915 struct smb2_encryption_neg_context *pneg_ctxt, 916 int ctxt_len) 917 { 918 int cph_cnt; 919 int i, cphs_size; 920 921 if (sizeof(struct smb2_encryption_neg_context) > ctxt_len) { 922 pr_err("Invalid SMB2_ENCRYPTION_CAPABILITIES context size\n"); 923 return; 924 } 925 926 conn->cipher_type = 0; 927 928 cph_cnt = le16_to_cpu(pneg_ctxt->CipherCount); 929 cphs_size = cph_cnt * sizeof(__le16); 930 931 if (sizeof(struct smb2_encryption_neg_context) + cphs_size > 932 ctxt_len) { 933 pr_err("Invalid cipher count(%d)\n", cph_cnt); 934 return; 935 } 936 937 if (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_ENCRYPTION_OFF) 938 return; 939 940 for (i = 0; i < cph_cnt; i++) { 941 if (pneg_ctxt->Ciphers[i] == SMB2_ENCRYPTION_AES128_GCM || 942 pneg_ctxt->Ciphers[i] == SMB2_ENCRYPTION_AES128_CCM || 943 pneg_ctxt->Ciphers[i] == SMB2_ENCRYPTION_AES256_CCM || 944 pneg_ctxt->Ciphers[i] == SMB2_ENCRYPTION_AES256_GCM) { 945 ksmbd_debug(SMB, "Cipher ID = 0x%x\n", 946 pneg_ctxt->Ciphers[i]); 947 conn->cipher_type = pneg_ctxt->Ciphers[i]; 948 break; 949 } 950 } 951 } 952 953 /** 954 * smb3_encryption_negotiated() - checks if server and client agreed on enabling encryption 955 * @conn: smb connection 956 * 957 * Return: true if connection should be encrypted, else false 958 */ 959 bool smb3_encryption_negotiated(struct ksmbd_conn *conn) 960 { 961 if (!conn->ops->generate_encryptionkey) 962 return false; 963 964 /* 965 * SMB 3.0 and 3.0.2 dialects use the SMB2_GLOBAL_CAP_ENCRYPTION flag. 966 * SMB 3.1.1 uses the cipher_type field. 967 */ 968 return (conn->vals->req_capabilities & SMB2_GLOBAL_CAP_ENCRYPTION) || 969 conn->cipher_type; 970 } 971 972 static void decode_compress_ctxt(struct ksmbd_conn *conn, 973 struct smb2_compression_capabilities_context *pneg_ctxt) 974 { 975 conn->compress_algorithm = SMB3_COMPRESS_NONE; 976 } 977 978 static void decode_sign_cap_ctxt(struct ksmbd_conn *conn, 979 struct smb2_signing_capabilities *pneg_ctxt, 980 int ctxt_len) 981 { 982 int sign_algo_cnt; 983 int i, sign_alos_size; 984 985 if (sizeof(struct smb2_signing_capabilities) > ctxt_len) { 986 pr_err("Invalid SMB2_SIGNING_CAPABILITIES context length\n"); 987 return; 988 } 989 990 conn->signing_negotiated = false; 991 sign_algo_cnt = le16_to_cpu(pneg_ctxt->SigningAlgorithmCount); 992 sign_alos_size = sign_algo_cnt * sizeof(__le16); 993 994 if (sizeof(struct smb2_signing_capabilities) + sign_alos_size > 995 ctxt_len) { 996 pr_err("Invalid signing algorithm count(%d)\n", sign_algo_cnt); 997 return; 998 } 999 1000 for (i = 0; i < sign_algo_cnt; i++) { 1001 if (pneg_ctxt->SigningAlgorithms[i] == SIGNING_ALG_HMAC_SHA256_LE || 1002 pneg_ctxt->SigningAlgorithms[i] == SIGNING_ALG_AES_CMAC_LE) { 1003 ksmbd_debug(SMB, "Signing Algorithm ID = 0x%x\n", 1004 pneg_ctxt->SigningAlgorithms[i]); 1005 conn->signing_negotiated = true; 1006 conn->signing_algorithm = 1007 pneg_ctxt->SigningAlgorithms[i]; 1008 break; 1009 } 1010 } 1011 } 1012 1013 static __le32 deassemble_neg_contexts(struct ksmbd_conn *conn, 1014 struct smb2_negotiate_req *req, 1015 unsigned int len_of_smb) 1016 { 1017 /* +4 is to account for the RFC1001 len field */ 1018 struct smb2_neg_context *pctx = (struct smb2_neg_context *)req; 1019 int i = 0, len_of_ctxts; 1020 unsigned int offset = le32_to_cpu(req->NegotiateContextOffset); 1021 unsigned int neg_ctxt_cnt = le16_to_cpu(req->NegotiateContextCount); 1022 __le32 status = STATUS_INVALID_PARAMETER; 1023 1024 ksmbd_debug(SMB, "decoding %d negotiate contexts\n", neg_ctxt_cnt); 1025 if (len_of_smb <= offset) { 1026 ksmbd_debug(SMB, "Invalid response: negotiate context offset\n"); 1027 return status; 1028 } 1029 1030 len_of_ctxts = len_of_smb - offset; 1031 1032 while (i++ < neg_ctxt_cnt) { 1033 int clen, ctxt_len; 1034 1035 if (len_of_ctxts < (int)sizeof(struct smb2_neg_context)) 1036 break; 1037 1038 pctx = (struct smb2_neg_context *)((char *)pctx + offset); 1039 clen = le16_to_cpu(pctx->DataLength); 1040 ctxt_len = clen + sizeof(struct smb2_neg_context); 1041 1042 if (ctxt_len > len_of_ctxts) 1043 break; 1044 1045 if (pctx->ContextType == SMB2_PREAUTH_INTEGRITY_CAPABILITIES) { 1046 ksmbd_debug(SMB, 1047 "deassemble SMB2_PREAUTH_INTEGRITY_CAPABILITIES context\n"); 1048 if (conn->preauth_info->Preauth_HashId) 1049 break; 1050 1051 status = decode_preauth_ctxt(conn, 1052 (struct smb2_preauth_neg_context *)pctx, 1053 ctxt_len); 1054 if (status != STATUS_SUCCESS) 1055 break; 1056 } else if (pctx->ContextType == SMB2_ENCRYPTION_CAPABILITIES) { 1057 ksmbd_debug(SMB, 1058 "deassemble SMB2_ENCRYPTION_CAPABILITIES context\n"); 1059 if (conn->cipher_type) 1060 break; 1061 1062 decode_encrypt_ctxt(conn, 1063 (struct smb2_encryption_neg_context *)pctx, 1064 ctxt_len); 1065 } else if (pctx->ContextType == SMB2_COMPRESSION_CAPABILITIES) { 1066 ksmbd_debug(SMB, 1067 "deassemble SMB2_COMPRESSION_CAPABILITIES context\n"); 1068 if (conn->compress_algorithm) 1069 break; 1070 1071 decode_compress_ctxt(conn, 1072 (struct smb2_compression_capabilities_context *)pctx); 1073 } else if (pctx->ContextType == SMB2_NETNAME_NEGOTIATE_CONTEXT_ID) { 1074 ksmbd_debug(SMB, 1075 "deassemble SMB2_NETNAME_NEGOTIATE_CONTEXT_ID context\n"); 1076 } else if (pctx->ContextType == SMB2_POSIX_EXTENSIONS_AVAILABLE) { 1077 ksmbd_debug(SMB, 1078 "deassemble SMB2_POSIX_EXTENSIONS_AVAILABLE context\n"); 1079 conn->posix_ext_supported = true; 1080 } else if (pctx->ContextType == SMB2_SIGNING_CAPABILITIES) { 1081 ksmbd_debug(SMB, 1082 "deassemble SMB2_SIGNING_CAPABILITIES context\n"); 1083 1084 decode_sign_cap_ctxt(conn, 1085 (struct smb2_signing_capabilities *)pctx, 1086 ctxt_len); 1087 } 1088 1089 /* offsets must be 8 byte aligned */ 1090 offset = (ctxt_len + 7) & ~0x7; 1091 len_of_ctxts -= offset; 1092 } 1093 return status; 1094 } 1095 1096 /** 1097 * smb2_handle_negotiate() - handler for smb2 negotiate command 1098 * @work: smb work containing smb request buffer 1099 * 1100 * Return: 0 1101 */ 1102 int smb2_handle_negotiate(struct ksmbd_work *work) 1103 { 1104 struct ksmbd_conn *conn = work->conn; 1105 struct smb2_negotiate_req *req = smb_get_msg(work->request_buf); 1106 struct smb2_negotiate_rsp *rsp = smb_get_msg(work->response_buf); 1107 int rc = 0; 1108 unsigned int smb2_buf_len, smb2_neg_size, neg_ctxt_len = 0; 1109 __le32 status; 1110 1111 ksmbd_debug(SMB, "Received negotiate request\n"); 1112 conn->need_neg = false; 1113 if (ksmbd_conn_good(conn)) { 1114 pr_err("conn->tcp_status is already in CifsGood State\n"); 1115 work->send_no_response = 1; 1116 return rc; 1117 } 1118 1119 ksmbd_conn_lock(conn); 1120 smb2_buf_len = get_rfc1002_len(work->request_buf); 1121 smb2_neg_size = offsetof(struct smb2_negotiate_req, Dialects); 1122 if (smb2_neg_size > smb2_buf_len) { 1123 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 1124 rc = -EINVAL; 1125 goto err_out; 1126 } 1127 1128 if (req->DialectCount == 0) { 1129 pr_err("malformed packet\n"); 1130 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 1131 rc = -EINVAL; 1132 goto err_out; 1133 } 1134 1135 if (conn->dialect == SMB311_PROT_ID) { 1136 unsigned int nego_ctxt_off = le32_to_cpu(req->NegotiateContextOffset); 1137 1138 if (smb2_buf_len < nego_ctxt_off) { 1139 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 1140 rc = -EINVAL; 1141 goto err_out; 1142 } 1143 1144 if (smb2_neg_size > nego_ctxt_off) { 1145 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 1146 rc = -EINVAL; 1147 goto err_out; 1148 } 1149 1150 if (smb2_neg_size + le16_to_cpu(req->DialectCount) * sizeof(__le16) > 1151 nego_ctxt_off) { 1152 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 1153 rc = -EINVAL; 1154 goto err_out; 1155 } 1156 } else { 1157 if (smb2_neg_size + le16_to_cpu(req->DialectCount) * sizeof(__le16) > 1158 smb2_buf_len) { 1159 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 1160 rc = -EINVAL; 1161 goto err_out; 1162 } 1163 } 1164 1165 conn->cli_cap = le32_to_cpu(req->Capabilities); 1166 switch (conn->dialect) { 1167 case SMB311_PROT_ID: 1168 conn->preauth_info = 1169 kzalloc_obj(struct preauth_integrity_info, 1170 KSMBD_DEFAULT_GFP); 1171 if (!conn->preauth_info) { 1172 rc = -ENOMEM; 1173 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 1174 goto err_out; 1175 } 1176 1177 status = deassemble_neg_contexts(conn, req, 1178 get_rfc1002_len(work->request_buf)); 1179 if (status != STATUS_SUCCESS) { 1180 pr_err("deassemble_neg_contexts error(0x%x)\n", 1181 status); 1182 rsp->hdr.Status = status; 1183 rc = -EINVAL; 1184 kfree(conn->preauth_info); 1185 conn->preauth_info = NULL; 1186 goto err_out; 1187 } 1188 1189 rc = init_smb3_11_server(conn); 1190 if (rc < 0) { 1191 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 1192 kfree(conn->preauth_info); 1193 conn->preauth_info = NULL; 1194 goto err_out; 1195 } 1196 1197 ksmbd_gen_preauth_integrity_hash(conn, 1198 work->request_buf, 1199 conn->preauth_info->Preauth_HashValue); 1200 rsp->NegotiateContextOffset = 1201 cpu_to_le32(OFFSET_OF_NEG_CONTEXT); 1202 neg_ctxt_len = assemble_neg_contexts(conn, rsp); 1203 break; 1204 case SMB302_PROT_ID: 1205 init_smb3_02_server(conn); 1206 break; 1207 case SMB30_PROT_ID: 1208 init_smb3_0_server(conn); 1209 break; 1210 case SMB21_PROT_ID: 1211 init_smb2_1_server(conn); 1212 break; 1213 case SMB2X_PROT_ID: 1214 case BAD_PROT_ID: 1215 default: 1216 ksmbd_debug(SMB, "Server dialect :0x%x not supported\n", 1217 conn->dialect); 1218 rsp->hdr.Status = STATUS_NOT_SUPPORTED; 1219 rc = -EINVAL; 1220 goto err_out; 1221 } 1222 rsp->Capabilities = cpu_to_le32(conn->vals->req_capabilities); 1223 1224 /* For stats */ 1225 conn->connection_type = conn->dialect; 1226 1227 rsp->MaxTransactSize = cpu_to_le32(conn->vals->max_trans_size); 1228 rsp->MaxReadSize = cpu_to_le32(conn->vals->max_read_size); 1229 rsp->MaxWriteSize = cpu_to_le32(conn->vals->max_write_size); 1230 1231 memcpy(conn->ClientGUID, req->ClientGUID, 1232 SMB2_CLIENT_GUID_SIZE); 1233 conn->cli_sec_mode = le16_to_cpu(req->SecurityMode); 1234 1235 rsp->StructureSize = cpu_to_le16(65); 1236 rsp->DialectRevision = cpu_to_le16(conn->dialect); 1237 /* Not setting conn guid rsp->ServerGUID, as it 1238 * not used by client for identifying server 1239 */ 1240 memset(rsp->ServerGUID, 0, SMB2_CLIENT_GUID_SIZE); 1241 1242 rsp->SystemTime = cpu_to_le64(ksmbd_systime()); 1243 rsp->ServerStartTime = 0; 1244 ksmbd_debug(SMB, "negotiate context offset %d, count %d\n", 1245 le32_to_cpu(rsp->NegotiateContextOffset), 1246 le16_to_cpu(rsp->NegotiateContextCount)); 1247 1248 rsp->SecurityBufferOffset = cpu_to_le16(128); 1249 rsp->SecurityBufferLength = cpu_to_le16(AUTH_GSS_LENGTH); 1250 ksmbd_copy_gss_neg_header((char *)(&rsp->hdr) + 1251 le16_to_cpu(rsp->SecurityBufferOffset)); 1252 1253 rsp->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED_LE; 1254 conn->use_spnego = true; 1255 1256 if ((server_conf.signing == KSMBD_CONFIG_OPT_AUTO || 1257 server_conf.signing == KSMBD_CONFIG_OPT_DISABLED) && 1258 req->SecurityMode & SMB2_NEGOTIATE_SIGNING_REQUIRED_LE) 1259 conn->sign = true; 1260 else if (server_conf.signing == KSMBD_CONFIG_OPT_MANDATORY) { 1261 server_conf.enforced_signing = true; 1262 rsp->SecurityMode |= SMB2_NEGOTIATE_SIGNING_REQUIRED_LE; 1263 conn->sign = true; 1264 } 1265 1266 conn->srv_sec_mode = le16_to_cpu(rsp->SecurityMode); 1267 ksmbd_conn_set_need_setup(conn); 1268 1269 err_out: 1270 ksmbd_conn_unlock(conn); 1271 if (rc) 1272 rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES; 1273 1274 if (!rc) 1275 rc = ksmbd_iov_pin_rsp(work, rsp, 1276 sizeof(struct smb2_negotiate_rsp) + 1277 AUTH_GSS_LENGTH + neg_ctxt_len); 1278 if (rc < 0) 1279 smb2_set_err_rsp(work); 1280 return rc; 1281 } 1282 1283 static int alloc_preauth_hash(struct ksmbd_session *sess, 1284 struct ksmbd_conn *conn) 1285 { 1286 if (sess->Preauth_HashValue) 1287 return 0; 1288 1289 if (!conn->preauth_info) 1290 return -ENOMEM; 1291 1292 sess->Preauth_HashValue = kmemdup(conn->preauth_info->Preauth_HashValue, 1293 PREAUTH_HASHVALUE_SIZE, KSMBD_DEFAULT_GFP); 1294 if (!sess->Preauth_HashValue) 1295 return -ENOMEM; 1296 1297 return 0; 1298 } 1299 1300 static int generate_preauth_hash(struct ksmbd_work *work) 1301 { 1302 struct ksmbd_conn *conn = work->conn; 1303 struct ksmbd_session *sess = work->sess; 1304 u8 *preauth_hash; 1305 1306 if (conn->dialect != SMB311_PROT_ID) 1307 return 0; 1308 1309 if (conn->binding) { 1310 struct preauth_session *preauth_sess; 1311 1312 preauth_sess = ksmbd_preauth_session_lookup(conn, sess->id); 1313 if (!preauth_sess) { 1314 preauth_sess = ksmbd_preauth_session_alloc(conn, sess->id); 1315 if (!preauth_sess) 1316 return -ENOMEM; 1317 } 1318 1319 preauth_hash = preauth_sess->Preauth_HashValue; 1320 } else { 1321 if (!sess->Preauth_HashValue) 1322 if (alloc_preauth_hash(sess, conn)) 1323 return -ENOMEM; 1324 preauth_hash = sess->Preauth_HashValue; 1325 } 1326 1327 ksmbd_gen_preauth_integrity_hash(conn, work->request_buf, preauth_hash); 1328 return 0; 1329 } 1330 1331 static int decode_negotiation_token(struct ksmbd_conn *conn, 1332 struct negotiate_message *negblob, 1333 size_t sz) 1334 { 1335 if (!conn->use_spnego) 1336 return -EINVAL; 1337 1338 if (ksmbd_decode_negTokenInit((char *)negblob, sz, conn)) { 1339 if (ksmbd_decode_negTokenTarg((char *)negblob, sz, conn)) { 1340 conn->auth_mechs |= KSMBD_AUTH_NTLMSSP; 1341 conn->preferred_auth_mech = KSMBD_AUTH_NTLMSSP; 1342 conn->use_spnego = false; 1343 } 1344 } 1345 return 0; 1346 } 1347 1348 static int ntlm_negotiate(struct ksmbd_work *work, 1349 struct negotiate_message *negblob, 1350 size_t negblob_len, struct smb2_sess_setup_rsp *rsp) 1351 { 1352 struct challenge_message *chgblob; 1353 unsigned char *spnego_blob = NULL; 1354 u16 spnego_blob_len; 1355 char *neg_blob; 1356 int sz, rc; 1357 1358 ksmbd_debug(SMB, "negotiate phase\n"); 1359 rc = ksmbd_decode_ntlmssp_neg_blob(negblob, negblob_len, work->conn); 1360 if (rc) 1361 return rc; 1362 1363 sz = le16_to_cpu(rsp->SecurityBufferOffset); 1364 chgblob = (struct challenge_message *)rsp->Buffer; 1365 memset(chgblob, 0, sizeof(struct challenge_message)); 1366 1367 if (!work->conn->use_spnego) { 1368 sz = ksmbd_build_ntlmssp_challenge_blob(chgblob, work->conn); 1369 if (sz < 0) 1370 return -ENOMEM; 1371 1372 rsp->SecurityBufferLength = cpu_to_le16(sz); 1373 return 0; 1374 } 1375 1376 sz = sizeof(struct challenge_message); 1377 sz += (strlen(ksmbd_netbios_name()) * 2 + 1 + 4) * 6; 1378 1379 neg_blob = kzalloc(sz, KSMBD_DEFAULT_GFP); 1380 if (!neg_blob) 1381 return -ENOMEM; 1382 1383 chgblob = (struct challenge_message *)neg_blob; 1384 sz = ksmbd_build_ntlmssp_challenge_blob(chgblob, work->conn); 1385 if (sz < 0) { 1386 rc = -ENOMEM; 1387 goto out; 1388 } 1389 1390 rc = build_spnego_ntlmssp_neg_blob(&spnego_blob, &spnego_blob_len, 1391 neg_blob, sz); 1392 if (rc) { 1393 rc = -ENOMEM; 1394 goto out; 1395 } 1396 1397 memcpy(rsp->Buffer, spnego_blob, spnego_blob_len); 1398 rsp->SecurityBufferLength = cpu_to_le16(spnego_blob_len); 1399 1400 out: 1401 kfree(spnego_blob); 1402 kfree(neg_blob); 1403 return rc; 1404 } 1405 1406 static struct authenticate_message *user_authblob(struct ksmbd_conn *conn, 1407 struct smb2_sess_setup_req *req) 1408 { 1409 int sz; 1410 1411 if (conn->use_spnego && conn->mechToken) 1412 return (struct authenticate_message *)conn->mechToken; 1413 1414 sz = le16_to_cpu(req->SecurityBufferOffset); 1415 return (struct authenticate_message *)((char *)&req->hdr.ProtocolId 1416 + sz); 1417 } 1418 1419 static struct ksmbd_user *session_user(struct ksmbd_conn *conn, 1420 struct smb2_sess_setup_req *req) 1421 { 1422 struct authenticate_message *authblob; 1423 struct ksmbd_user *user; 1424 char *name; 1425 unsigned int name_off, name_len, secbuf_len; 1426 1427 if (conn->use_spnego && conn->mechToken) 1428 secbuf_len = conn->mechTokenLen; 1429 else 1430 secbuf_len = le16_to_cpu(req->SecurityBufferLength); 1431 if (secbuf_len < sizeof(struct authenticate_message)) { 1432 ksmbd_debug(SMB, "blob len %d too small\n", secbuf_len); 1433 return NULL; 1434 } 1435 authblob = user_authblob(conn, req); 1436 name_off = le32_to_cpu(authblob->UserName.BufferOffset); 1437 name_len = le16_to_cpu(authblob->UserName.Length); 1438 1439 if (secbuf_len < (u64)name_off + name_len) 1440 return NULL; 1441 1442 name = smb_strndup_from_utf16((const char *)authblob + name_off, 1443 name_len, 1444 true, 1445 conn->local_nls); 1446 if (IS_ERR(name)) { 1447 pr_err("cannot allocate memory\n"); 1448 return NULL; 1449 } 1450 1451 ksmbd_debug(SMB, "session setup request for user %s\n", name); 1452 user = ksmbd_login_user(name); 1453 kfree(name); 1454 return user; 1455 } 1456 1457 static int ntlm_authenticate(struct ksmbd_work *work, 1458 struct smb2_sess_setup_req *req, 1459 struct smb2_sess_setup_rsp *rsp) 1460 { 1461 struct ksmbd_conn *conn = work->conn; 1462 struct ksmbd_session *sess = work->sess; 1463 struct channel *chann = NULL, *old; 1464 struct ksmbd_user *user; 1465 u64 prev_id; 1466 int sz, rc; 1467 1468 ksmbd_debug(SMB, "authenticate phase\n"); 1469 if (conn->use_spnego) { 1470 unsigned char *spnego_blob; 1471 u16 spnego_blob_len; 1472 1473 rc = build_spnego_ntlmssp_auth_blob(&spnego_blob, 1474 &spnego_blob_len, 1475 0); 1476 if (rc) 1477 return -ENOMEM; 1478 1479 memcpy(rsp->Buffer, spnego_blob, spnego_blob_len); 1480 rsp->SecurityBufferLength = cpu_to_le16(spnego_blob_len); 1481 kfree(spnego_blob); 1482 } 1483 1484 user = session_user(conn, req); 1485 if (!user) { 1486 ksmbd_debug(SMB, "Unknown user name or an error\n"); 1487 return -EPERM; 1488 } 1489 1490 /* Check for previous session */ 1491 prev_id = le64_to_cpu(req->PreviousSessionId); 1492 if (prev_id && prev_id != sess->id) 1493 destroy_previous_session(conn, user, prev_id); 1494 1495 if (sess->state == SMB2_SESSION_VALID) { 1496 /* 1497 * Reuse session if anonymous try to connect 1498 * on reauthetication. 1499 */ 1500 if (conn->binding == false && ksmbd_anonymous_user(user)) { 1501 ksmbd_free_user(user); 1502 return 0; 1503 } 1504 1505 if (!ksmbd_compare_user(sess->user, user)) { 1506 ksmbd_free_user(user); 1507 return -EPERM; 1508 } 1509 ksmbd_free_user(user); 1510 } else { 1511 sess->user = user; 1512 } 1513 1514 if (conn->binding == false && user_guest(sess->user)) { 1515 rsp->SessionFlags = SMB2_SESSION_FLAG_IS_GUEST_LE; 1516 } else { 1517 struct authenticate_message *authblob; 1518 1519 authblob = user_authblob(conn, req); 1520 if (conn->use_spnego && conn->mechToken) 1521 sz = conn->mechTokenLen; 1522 else 1523 sz = le16_to_cpu(req->SecurityBufferLength); 1524 rc = ksmbd_decode_ntlmssp_auth_blob(authblob, sz, conn, sess); 1525 if (rc) { 1526 set_user_flag(sess->user, KSMBD_USER_FLAG_BAD_PASSWORD); 1527 ksmbd_debug(SMB, "authentication failed\n"); 1528 return -EPERM; 1529 } 1530 } 1531 1532 /* 1533 * If session state is SMB2_SESSION_VALID, We can assume 1534 * that it is reauthentication. And the user/password 1535 * has been verified, so return it here. 1536 */ 1537 if (sess->state == SMB2_SESSION_VALID) { 1538 if (conn->binding) 1539 goto binding_session; 1540 return 0; 1541 } 1542 1543 if ((rsp->SessionFlags != SMB2_SESSION_FLAG_IS_GUEST_LE && 1544 (conn->sign || server_conf.enforced_signing)) || 1545 (req->SecurityMode & SMB2_NEGOTIATE_SIGNING_REQUIRED)) 1546 sess->sign = true; 1547 1548 if (smb3_encryption_negotiated(conn) && 1549 !(req->Flags & SMB2_SESSION_REQ_FLAG_BINDING)) { 1550 conn->ops->generate_encryptionkey(conn, sess); 1551 sess->enc = true; 1552 if (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_ENCRYPTION) 1553 rsp->SessionFlags = SMB2_SESSION_FLAG_ENCRYPT_DATA_LE; 1554 /* 1555 * signing is disable if encryption is enable 1556 * on this session 1557 */ 1558 sess->sign = false; 1559 } 1560 1561 binding_session: 1562 if (conn->dialect >= SMB30_PROT_ID) { 1563 chann = lookup_chann_list(sess, conn); 1564 if (!chann) { 1565 chann = kmalloc_obj(struct channel, KSMBD_DEFAULT_GFP); 1566 if (!chann) 1567 return -ENOMEM; 1568 1569 chann->conn = conn; 1570 down_write(&sess->chann_lock); 1571 old = xa_store(&sess->ksmbd_chann_list, (long)conn, chann, 1572 KSMBD_DEFAULT_GFP); 1573 up_write(&sess->chann_lock); 1574 if (xa_is_err(old)) { 1575 kfree(chann); 1576 return xa_err(old); 1577 } 1578 } 1579 } 1580 1581 if (conn->ops->generate_signingkey) { 1582 rc = conn->ops->generate_signingkey(sess, conn); 1583 if (rc) { 1584 ksmbd_debug(SMB, "SMB3 signing key generation failed\n"); 1585 return -EINVAL; 1586 } 1587 } 1588 1589 if (!ksmbd_conn_lookup_dialect(conn)) { 1590 pr_err("fail to verify the dialect\n"); 1591 return -ENOENT; 1592 } 1593 return 0; 1594 } 1595 1596 #ifdef CONFIG_SMB_SERVER_KERBEROS5 1597 static int krb5_authenticate(struct ksmbd_work *work, 1598 struct smb2_sess_setup_req *req, 1599 struct smb2_sess_setup_rsp *rsp) 1600 { 1601 struct ksmbd_conn *conn = work->conn; 1602 struct ksmbd_session *sess = work->sess; 1603 char *in_blob, *out_blob; 1604 struct channel *chann = NULL, *old; 1605 u64 prev_sess_id; 1606 int in_len, out_len; 1607 int retval; 1608 1609 in_blob = (char *)&req->hdr.ProtocolId + 1610 le16_to_cpu(req->SecurityBufferOffset); 1611 in_len = le16_to_cpu(req->SecurityBufferLength); 1612 out_blob = (char *)&rsp->hdr.ProtocolId + 1613 le16_to_cpu(rsp->SecurityBufferOffset); 1614 out_len = work->response_sz - 1615 (le16_to_cpu(rsp->SecurityBufferOffset) + 4); 1616 1617 retval = ksmbd_krb5_authenticate(sess, in_blob, in_len, 1618 out_blob, &out_len); 1619 if (retval) { 1620 ksmbd_debug(SMB, "krb5 authentication failed\n"); 1621 return -EINVAL; 1622 } 1623 1624 /* Check previous session */ 1625 prev_sess_id = le64_to_cpu(req->PreviousSessionId); 1626 if (prev_sess_id && prev_sess_id != sess->id) 1627 destroy_previous_session(conn, sess->user, prev_sess_id); 1628 1629 rsp->SecurityBufferLength = cpu_to_le16(out_len); 1630 1631 /* 1632 * If session state is SMB2_SESSION_VALID, We can assume 1633 * that it is reauthentication. And the user/password 1634 * has been verified, so return it here. 1635 */ 1636 if (sess->state == SMB2_SESSION_VALID) { 1637 if (conn->binding) 1638 goto binding_session; 1639 return 0; 1640 } 1641 1642 if ((rsp->SessionFlags != SMB2_SESSION_FLAG_IS_GUEST_LE && 1643 (conn->sign || server_conf.enforced_signing)) || 1644 (req->SecurityMode & SMB2_NEGOTIATE_SIGNING_REQUIRED)) 1645 sess->sign = true; 1646 1647 if (smb3_encryption_negotiated(conn) && 1648 !(req->Flags & SMB2_SESSION_REQ_FLAG_BINDING)) { 1649 conn->ops->generate_encryptionkey(conn, sess); 1650 sess->enc = true; 1651 if (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_ENCRYPTION) 1652 rsp->SessionFlags = SMB2_SESSION_FLAG_ENCRYPT_DATA_LE; 1653 sess->sign = false; 1654 } 1655 1656 binding_session: 1657 if (conn->dialect >= SMB30_PROT_ID) { 1658 chann = lookup_chann_list(sess, conn); 1659 if (!chann) { 1660 chann = kmalloc_obj(struct channel, KSMBD_DEFAULT_GFP); 1661 if (!chann) 1662 return -ENOMEM; 1663 1664 chann->conn = conn; 1665 down_write(&sess->chann_lock); 1666 old = xa_store(&sess->ksmbd_chann_list, (long)conn, 1667 chann, KSMBD_DEFAULT_GFP); 1668 up_write(&sess->chann_lock); 1669 if (xa_is_err(old)) { 1670 kfree(chann); 1671 return xa_err(old); 1672 } 1673 } 1674 } 1675 1676 if (conn->ops->generate_signingkey) { 1677 retval = conn->ops->generate_signingkey(sess, conn); 1678 if (retval) { 1679 ksmbd_debug(SMB, "SMB3 signing key generation failed\n"); 1680 return -EINVAL; 1681 } 1682 } 1683 1684 if (!ksmbd_conn_lookup_dialect(conn)) { 1685 pr_err("fail to verify the dialect\n"); 1686 return -ENOENT; 1687 } 1688 return 0; 1689 } 1690 #else 1691 static int krb5_authenticate(struct ksmbd_work *work, 1692 struct smb2_sess_setup_req *req, 1693 struct smb2_sess_setup_rsp *rsp) 1694 { 1695 return -EOPNOTSUPP; 1696 } 1697 #endif 1698 1699 int smb2_sess_setup(struct ksmbd_work *work) 1700 { 1701 struct ksmbd_conn *conn = work->conn; 1702 struct smb2_sess_setup_req *req; 1703 struct smb2_sess_setup_rsp *rsp; 1704 struct ksmbd_session *sess; 1705 struct negotiate_message *negblob; 1706 unsigned int negblob_len, negblob_off; 1707 int rc = 0; 1708 1709 ksmbd_debug(SMB, "Received smb2 session setup request\n"); 1710 1711 if (!ksmbd_conn_need_setup(conn) && !ksmbd_conn_good(conn)) { 1712 work->send_no_response = 1; 1713 return rc; 1714 } 1715 1716 WORK_BUFFERS(work, req, rsp); 1717 1718 rsp->StructureSize = cpu_to_le16(9); 1719 rsp->SessionFlags = 0; 1720 rsp->SecurityBufferOffset = cpu_to_le16(72); 1721 rsp->SecurityBufferLength = 0; 1722 1723 ksmbd_conn_lock(conn); 1724 if (!req->hdr.SessionId) { 1725 sess = ksmbd_smb2_session_create(); 1726 if (!sess) { 1727 rc = -ENOMEM; 1728 goto out_err; 1729 } 1730 rsp->hdr.SessionId = cpu_to_le64(sess->id); 1731 rc = ksmbd_session_register(conn, sess); 1732 if (rc) 1733 goto out_err; 1734 1735 conn->binding = false; 1736 } else if (conn->dialect >= SMB30_PROT_ID && 1737 (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB3_MULTICHANNEL) && 1738 req->Flags & SMB2_SESSION_REQ_FLAG_BINDING) { 1739 u64 sess_id = le64_to_cpu(req->hdr.SessionId); 1740 1741 sess = ksmbd_session_lookup_slowpath(sess_id); 1742 if (!sess) { 1743 rc = -ENOENT; 1744 goto out_err; 1745 } 1746 1747 if (conn->dialect != sess->dialect) { 1748 rc = -EINVAL; 1749 goto out_err; 1750 } 1751 1752 if (!(req->hdr.Flags & SMB2_FLAGS_SIGNED)) { 1753 rc = -EINVAL; 1754 goto out_err; 1755 } 1756 1757 if (strncmp(conn->ClientGUID, sess->ClientGUID, 1758 SMB2_CLIENT_GUID_SIZE)) { 1759 rc = -ENOENT; 1760 goto out_err; 1761 } 1762 1763 if (sess->state == SMB2_SESSION_IN_PROGRESS) { 1764 rc = -EACCES; 1765 goto out_err; 1766 } 1767 1768 if (sess->state == SMB2_SESSION_EXPIRED) { 1769 rc = -EFAULT; 1770 goto out_err; 1771 } 1772 1773 if (ksmbd_conn_need_reconnect(conn)) { 1774 rc = -EFAULT; 1775 ksmbd_user_session_put(sess); 1776 sess = NULL; 1777 goto out_err; 1778 } 1779 1780 if (is_ksmbd_session_in_connection(conn, sess_id)) { 1781 rc = -EACCES; 1782 goto out_err; 1783 } 1784 1785 if (user_guest(sess->user)) { 1786 rc = -EOPNOTSUPP; 1787 goto out_err; 1788 } 1789 1790 conn->binding = true; 1791 } else if ((conn->dialect < SMB30_PROT_ID || 1792 server_conf.flags & KSMBD_GLOBAL_FLAG_SMB3_MULTICHANNEL) && 1793 (req->Flags & SMB2_SESSION_REQ_FLAG_BINDING)) { 1794 sess = NULL; 1795 rc = -EACCES; 1796 goto out_err; 1797 } else { 1798 sess = ksmbd_session_lookup(conn, 1799 le64_to_cpu(req->hdr.SessionId)); 1800 if (!sess) { 1801 rc = -ENOENT; 1802 goto out_err; 1803 } 1804 1805 if (sess->state == SMB2_SESSION_EXPIRED) { 1806 rc = -EFAULT; 1807 goto out_err; 1808 } 1809 1810 if (ksmbd_conn_need_reconnect(conn)) { 1811 rc = -EFAULT; 1812 ksmbd_user_session_put(sess); 1813 sess = NULL; 1814 goto out_err; 1815 } 1816 1817 conn->binding = false; 1818 } 1819 work->sess = sess; 1820 1821 negblob_off = le16_to_cpu(req->SecurityBufferOffset); 1822 negblob_len = le16_to_cpu(req->SecurityBufferLength); 1823 if (negblob_off < offsetof(struct smb2_sess_setup_req, Buffer)) { 1824 rc = -EINVAL; 1825 goto out_err; 1826 } 1827 1828 negblob = (struct negotiate_message *)((char *)&req->hdr.ProtocolId + 1829 negblob_off); 1830 1831 if (decode_negotiation_token(conn, negblob, negblob_len) == 0) { 1832 if (conn->mechToken) { 1833 negblob = (struct negotiate_message *)conn->mechToken; 1834 negblob_len = conn->mechTokenLen; 1835 } 1836 } 1837 1838 if (negblob_len < offsetof(struct negotiate_message, NegotiateFlags)) { 1839 rc = -EINVAL; 1840 goto out_err; 1841 } 1842 1843 if (server_conf.auth_mechs & conn->auth_mechs) { 1844 rc = generate_preauth_hash(work); 1845 if (rc) 1846 goto out_err; 1847 1848 if (conn->preferred_auth_mech & 1849 (KSMBD_AUTH_KRB5 | KSMBD_AUTH_MSKRB5)) { 1850 rc = krb5_authenticate(work, req, rsp); 1851 if (rc) { 1852 rc = -EINVAL; 1853 goto out_err; 1854 } 1855 1856 if (!ksmbd_conn_need_reconnect(conn)) { 1857 ksmbd_conn_set_good(conn); 1858 sess->state = SMB2_SESSION_VALID; 1859 } 1860 } else if (conn->preferred_auth_mech == KSMBD_AUTH_NTLMSSP) { 1861 if (negblob->MessageType == NtLmNegotiate) { 1862 rc = ntlm_negotiate(work, negblob, negblob_len, rsp); 1863 if (rc) 1864 goto out_err; 1865 rsp->hdr.Status = 1866 STATUS_MORE_PROCESSING_REQUIRED; 1867 } else if (negblob->MessageType == NtLmAuthenticate) { 1868 rc = ntlm_authenticate(work, req, rsp); 1869 if (rc) 1870 goto out_err; 1871 1872 if (!ksmbd_conn_need_reconnect(conn)) { 1873 ksmbd_conn_set_good(conn); 1874 sess->state = SMB2_SESSION_VALID; 1875 } 1876 if (conn->binding) { 1877 struct preauth_session *preauth_sess; 1878 1879 preauth_sess = 1880 ksmbd_preauth_session_lookup(conn, sess->id); 1881 if (preauth_sess) { 1882 list_del(&preauth_sess->preauth_entry); 1883 kfree(preauth_sess); 1884 } 1885 } 1886 } else { 1887 pr_info_ratelimited("Unknown NTLMSSP message type : 0x%x\n", 1888 le32_to_cpu(negblob->MessageType)); 1889 rc = -EINVAL; 1890 } 1891 } else { 1892 /* TODO: need one more negotiation */ 1893 pr_err("Not support the preferred authentication\n"); 1894 rc = -EINVAL; 1895 } 1896 } else { 1897 pr_err("Not support authentication\n"); 1898 rc = -EINVAL; 1899 } 1900 1901 out_err: 1902 if (rc == -EINVAL) 1903 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 1904 else if (rc == -ENOENT) 1905 rsp->hdr.Status = STATUS_USER_SESSION_DELETED; 1906 else if (rc == -EACCES) 1907 rsp->hdr.Status = STATUS_REQUEST_NOT_ACCEPTED; 1908 else if (rc == -EFAULT) 1909 rsp->hdr.Status = STATUS_NETWORK_SESSION_EXPIRED; 1910 else if (rc == -ENOMEM) 1911 rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES; 1912 else if (rc == -EOPNOTSUPP) 1913 rsp->hdr.Status = STATUS_NOT_SUPPORTED; 1914 else if (rc) 1915 rsp->hdr.Status = STATUS_LOGON_FAILURE; 1916 1917 if (conn->mechToken) { 1918 kfree(conn->mechToken); 1919 conn->mechToken = NULL; 1920 } 1921 1922 if (rc < 0) { 1923 /* 1924 * SecurityBufferOffset should be set to zero 1925 * in session setup error response. 1926 */ 1927 rsp->SecurityBufferOffset = 0; 1928 1929 if (sess) { 1930 bool try_delay = false; 1931 1932 /* 1933 * To avoid dictionary attacks (repeated session setups rapidly sent) to 1934 * connect to server, ksmbd make a delay of a 5 seconds on session setup 1935 * failure to make it harder to send enough random connection requests 1936 * to break into a server. 1937 */ 1938 if (sess->user && sess->user->flags & KSMBD_USER_FLAG_DELAY_SESSION) 1939 try_delay = true; 1940 1941 /* 1942 * For binding requests, session belongs to another 1943 * connection. Do not expire it. 1944 */ 1945 if (!(req->Flags & SMB2_SESSION_REQ_FLAG_BINDING)) { 1946 sess->last_active = jiffies; 1947 sess->state = SMB2_SESSION_EXPIRED; 1948 } 1949 ksmbd_user_session_put(sess); 1950 work->sess = NULL; 1951 if (try_delay) { 1952 ksmbd_conn_set_need_reconnect(conn); 1953 ssleep(5); 1954 ksmbd_conn_set_need_setup(conn); 1955 } 1956 } 1957 smb2_set_err_rsp(work); 1958 conn->binding = false; 1959 } else { 1960 unsigned int iov_len; 1961 1962 if (rsp->SecurityBufferLength) 1963 iov_len = offsetof(struct smb2_sess_setup_rsp, Buffer) + 1964 le16_to_cpu(rsp->SecurityBufferLength); 1965 else 1966 iov_len = sizeof(struct smb2_sess_setup_rsp); 1967 rc = ksmbd_iov_pin_rsp(work, rsp, iov_len); 1968 if (rc) 1969 rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES; 1970 } 1971 1972 ksmbd_conn_unlock(conn); 1973 return rc; 1974 } 1975 1976 /** 1977 * smb2_tree_connect() - handler for smb2 tree connect command 1978 * @work: smb work containing smb request buffer 1979 * 1980 * Return: 0 on success, otherwise error 1981 */ 1982 int smb2_tree_connect(struct ksmbd_work *work) 1983 { 1984 struct ksmbd_conn *conn = work->conn; 1985 struct smb2_tree_connect_req *req; 1986 struct smb2_tree_connect_rsp *rsp; 1987 struct ksmbd_session *sess = work->sess; 1988 char *treename = NULL, *name = NULL; 1989 struct ksmbd_tree_conn_status status; 1990 struct ksmbd_share_config *share = NULL; 1991 int rc = -EINVAL; 1992 1993 ksmbd_debug(SMB, "Received smb2 tree connect request\n"); 1994 1995 WORK_BUFFERS(work, req, rsp); 1996 1997 treename = smb_strndup_from_utf16((char *)req + le16_to_cpu(req->PathOffset), 1998 le16_to_cpu(req->PathLength), true, 1999 conn->local_nls); 2000 if (IS_ERR(treename)) { 2001 pr_err("treename is NULL\n"); 2002 status.ret = KSMBD_TREE_CONN_STATUS_ERROR; 2003 goto out_err1; 2004 } 2005 2006 name = ksmbd_extract_sharename(conn->um, treename); 2007 if (IS_ERR(name)) { 2008 status.ret = KSMBD_TREE_CONN_STATUS_ERROR; 2009 goto out_err1; 2010 } 2011 2012 ksmbd_debug(SMB, "tree connect request for tree %s treename %s\n", 2013 name, treename); 2014 2015 status = ksmbd_tree_conn_connect(work, name); 2016 if (status.ret == KSMBD_TREE_CONN_STATUS_OK) 2017 rsp->hdr.Id.SyncId.TreeId = cpu_to_le32(status.tree_conn->id); 2018 else 2019 goto out_err1; 2020 2021 share = status.tree_conn->share_conf; 2022 if (test_share_config_flag(share, KSMBD_SHARE_FLAG_PIPE)) { 2023 ksmbd_debug(SMB, "IPC share path request\n"); 2024 rsp->ShareType = SMB2_SHARE_TYPE_PIPE; 2025 rsp->MaximalAccess = FILE_READ_DATA_LE | FILE_READ_EA_LE | 2026 FILE_EXECUTE_LE | FILE_READ_ATTRIBUTES_LE | 2027 FILE_DELETE_LE | FILE_READ_CONTROL_LE | 2028 FILE_WRITE_DAC_LE | FILE_WRITE_OWNER_LE | 2029 FILE_SYNCHRONIZE_LE; 2030 } else { 2031 rsp->ShareType = SMB2_SHARE_TYPE_DISK; 2032 rsp->MaximalAccess = FILE_READ_DATA_LE | FILE_READ_EA_LE | 2033 FILE_EXECUTE_LE | FILE_READ_ATTRIBUTES_LE; 2034 if (test_tree_conn_flag(status.tree_conn, 2035 KSMBD_TREE_CONN_FLAG_WRITABLE)) { 2036 rsp->MaximalAccess |= FILE_WRITE_DATA_LE | 2037 FILE_APPEND_DATA_LE | FILE_WRITE_EA_LE | 2038 FILE_DELETE_LE | FILE_WRITE_ATTRIBUTES_LE | 2039 FILE_DELETE_CHILD_LE | FILE_READ_CONTROL_LE | 2040 FILE_WRITE_DAC_LE | FILE_WRITE_OWNER_LE | 2041 FILE_SYNCHRONIZE_LE; 2042 } 2043 } 2044 2045 status.tree_conn->maximal_access = le32_to_cpu(rsp->MaximalAccess); 2046 if (conn->posix_ext_supported) 2047 status.tree_conn->posix_extensions = true; 2048 2049 down_write(&sess->tree_conns_lock); 2050 status.tree_conn->t_state = TREE_CONNECTED; 2051 up_write(&sess->tree_conns_lock); 2052 rsp->StructureSize = cpu_to_le16(16); 2053 out_err1: 2054 if (server_conf.flags & KSMBD_GLOBAL_FLAG_DURABLE_HANDLE && share && 2055 test_share_config_flag(share, 2056 KSMBD_SHARE_FLAG_CONTINUOUS_AVAILABILITY)) 2057 rsp->Capabilities = SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY; 2058 else 2059 rsp->Capabilities = 0; 2060 rsp->Reserved = 0; 2061 /* default manual caching */ 2062 rsp->ShareFlags = SMB2_SHAREFLAG_MANUAL_CACHING; 2063 2064 rc = ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_tree_connect_rsp)); 2065 if (rc) 2066 status.ret = KSMBD_TREE_CONN_STATUS_NOMEM; 2067 2068 if (!IS_ERR(treename)) 2069 kfree(treename); 2070 if (!IS_ERR(name)) 2071 kfree(name); 2072 2073 switch (status.ret) { 2074 case KSMBD_TREE_CONN_STATUS_OK: 2075 rsp->hdr.Status = STATUS_SUCCESS; 2076 rc = 0; 2077 break; 2078 case -ESTALE: 2079 case -ENOENT: 2080 case KSMBD_TREE_CONN_STATUS_NO_SHARE: 2081 rsp->hdr.Status = STATUS_BAD_NETWORK_NAME; 2082 break; 2083 case -ENOMEM: 2084 case KSMBD_TREE_CONN_STATUS_NOMEM: 2085 rsp->hdr.Status = STATUS_NO_MEMORY; 2086 break; 2087 case KSMBD_TREE_CONN_STATUS_ERROR: 2088 case KSMBD_TREE_CONN_STATUS_TOO_MANY_CONNS: 2089 case KSMBD_TREE_CONN_STATUS_TOO_MANY_SESSIONS: 2090 rsp->hdr.Status = STATUS_ACCESS_DENIED; 2091 break; 2092 case -EINVAL: 2093 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 2094 break; 2095 default: 2096 rsp->hdr.Status = STATUS_ACCESS_DENIED; 2097 } 2098 2099 if (status.ret != KSMBD_TREE_CONN_STATUS_OK) 2100 smb2_set_err_rsp(work); 2101 2102 return rc; 2103 } 2104 2105 /** 2106 * smb2_create_open_flags() - convert smb open flags to unix open flags 2107 * @file_present: is file already present 2108 * @access: file access flags 2109 * @disposition: file disposition flags 2110 * @may_flags: set with MAY_ flags 2111 * @coptions: file creation options 2112 * @mode: file mode 2113 * 2114 * Return: file open flags 2115 */ 2116 static int smb2_create_open_flags(bool file_present, __le32 access, 2117 __le32 disposition, 2118 int *may_flags, 2119 __le32 coptions, 2120 umode_t mode) 2121 { 2122 int oflags = O_NONBLOCK | O_LARGEFILE; 2123 2124 if (coptions & FILE_DIRECTORY_FILE_LE || S_ISDIR(mode)) { 2125 access &= ~FILE_WRITE_DESIRE_ACCESS_LE; 2126 ksmbd_debug(SMB, "Discard write access to a directory\n"); 2127 } 2128 2129 if (access & FILE_READ_DESIRED_ACCESS_LE && 2130 access & FILE_WRITE_DESIRE_ACCESS_LE) { 2131 oflags |= O_RDWR; 2132 *may_flags = MAY_OPEN | MAY_READ | MAY_WRITE; 2133 } else if (access & FILE_WRITE_DESIRE_ACCESS_LE) { 2134 oflags |= O_WRONLY; 2135 *may_flags = MAY_OPEN | MAY_WRITE; 2136 } else { 2137 oflags |= O_RDONLY; 2138 *may_flags = MAY_OPEN | MAY_READ; 2139 } 2140 2141 if (access == FILE_READ_ATTRIBUTES_LE || S_ISBLK(mode) || S_ISCHR(mode)) 2142 oflags |= O_PATH; 2143 2144 if (file_present) { 2145 switch (disposition & FILE_CREATE_MASK_LE) { 2146 case FILE_OPEN_LE: 2147 case FILE_CREATE_LE: 2148 break; 2149 case FILE_SUPERSEDE_LE: 2150 case FILE_OVERWRITE_LE: 2151 case FILE_OVERWRITE_IF_LE: 2152 oflags |= O_TRUNC; 2153 break; 2154 default: 2155 break; 2156 } 2157 } else { 2158 switch (disposition & FILE_CREATE_MASK_LE) { 2159 case FILE_SUPERSEDE_LE: 2160 case FILE_CREATE_LE: 2161 case FILE_OPEN_IF_LE: 2162 case FILE_OVERWRITE_IF_LE: 2163 oflags |= O_CREAT; 2164 break; 2165 case FILE_OPEN_LE: 2166 case FILE_OVERWRITE_LE: 2167 oflags &= ~O_CREAT; 2168 break; 2169 default: 2170 break; 2171 } 2172 } 2173 2174 return oflags; 2175 } 2176 2177 /** 2178 * smb2_tree_disconnect() - handler for smb tree connect request 2179 * @work: smb work containing request buffer 2180 * 2181 * Return: 0 on success, otherwise error 2182 */ 2183 int smb2_tree_disconnect(struct ksmbd_work *work) 2184 { 2185 struct smb2_tree_disconnect_rsp *rsp; 2186 struct smb2_tree_disconnect_req *req; 2187 struct ksmbd_session *sess = work->sess; 2188 struct ksmbd_tree_connect *tcon = work->tcon; 2189 int err; 2190 2191 ksmbd_debug(SMB, "Received smb2 tree disconnect request\n"); 2192 2193 WORK_BUFFERS(work, req, rsp); 2194 2195 if (!tcon) { 2196 ksmbd_debug(SMB, "Invalid tid %d\n", req->hdr.Id.SyncId.TreeId); 2197 2198 rsp->hdr.Status = STATUS_NETWORK_NAME_DELETED; 2199 err = -ENOENT; 2200 goto err_out; 2201 } 2202 2203 ksmbd_close_tree_conn_fds(work); 2204 2205 down_write(&sess->tree_conns_lock); 2206 if (tcon->t_state == TREE_DISCONNECTED) { 2207 up_write(&sess->tree_conns_lock); 2208 rsp->hdr.Status = STATUS_NETWORK_NAME_DELETED; 2209 err = -ENOENT; 2210 goto err_out; 2211 } 2212 2213 tcon->t_state = TREE_DISCONNECTED; 2214 up_write(&sess->tree_conns_lock); 2215 2216 err = ksmbd_tree_conn_disconnect(sess, tcon); 2217 if (err) { 2218 rsp->hdr.Status = STATUS_NETWORK_NAME_DELETED; 2219 goto err_out; 2220 } 2221 2222 rsp->StructureSize = cpu_to_le16(4); 2223 err = ksmbd_iov_pin_rsp(work, rsp, 2224 sizeof(struct smb2_tree_disconnect_rsp)); 2225 if (err) { 2226 rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES; 2227 goto err_out; 2228 } 2229 2230 return 0; 2231 2232 err_out: 2233 smb2_set_err_rsp(work); 2234 return err; 2235 2236 } 2237 2238 /** 2239 * smb2_session_logoff() - handler for session log off request 2240 * @work: smb work containing request buffer 2241 * 2242 * Return: 0 on success, otherwise error 2243 */ 2244 int smb2_session_logoff(struct ksmbd_work *work) 2245 { 2246 struct ksmbd_conn *conn = work->conn; 2247 struct ksmbd_session *sess = work->sess; 2248 struct smb2_logoff_req *req; 2249 struct smb2_logoff_rsp *rsp; 2250 u64 sess_id; 2251 int err; 2252 2253 WORK_BUFFERS(work, req, rsp); 2254 2255 ksmbd_debug(SMB, "Received smb2 session logoff request\n"); 2256 2257 ksmbd_conn_lock(conn); 2258 if (!ksmbd_conn_good(conn)) { 2259 ksmbd_conn_unlock(conn); 2260 rsp->hdr.Status = STATUS_NETWORK_NAME_DELETED; 2261 smb2_set_err_rsp(work); 2262 return -ENOENT; 2263 } 2264 sess_id = le64_to_cpu(req->hdr.SessionId); 2265 ksmbd_all_conn_set_status(sess_id, KSMBD_SESS_NEED_RECONNECT); 2266 ksmbd_conn_unlock(conn); 2267 2268 ksmbd_close_session_fds(work); 2269 ksmbd_conn_wait_idle(conn); 2270 2271 if (ksmbd_tree_conn_session_logoff(sess)) { 2272 ksmbd_debug(SMB, "Invalid tid %d\n", req->hdr.Id.SyncId.TreeId); 2273 rsp->hdr.Status = STATUS_NETWORK_NAME_DELETED; 2274 smb2_set_err_rsp(work); 2275 return -ENOENT; 2276 } 2277 2278 down_write(&conn->session_lock); 2279 sess->state = SMB2_SESSION_EXPIRED; 2280 up_write(&conn->session_lock); 2281 2282 ksmbd_all_conn_set_status(sess_id, KSMBD_SESS_NEED_SETUP); 2283 2284 rsp->StructureSize = cpu_to_le16(4); 2285 err = ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_logoff_rsp)); 2286 if (err) { 2287 rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES; 2288 smb2_set_err_rsp(work); 2289 return err; 2290 } 2291 return 0; 2292 } 2293 2294 /** 2295 * create_smb2_pipe() - create IPC pipe 2296 * @work: smb work containing request buffer 2297 * 2298 * Return: 0 on success, otherwise error 2299 */ 2300 static noinline int create_smb2_pipe(struct ksmbd_work *work) 2301 { 2302 struct smb2_create_rsp *rsp; 2303 struct smb2_create_req *req; 2304 int id = -1; 2305 int err; 2306 char *name; 2307 2308 WORK_BUFFERS(work, req, rsp); 2309 2310 name = smb_strndup_from_utf16(req->Buffer, le16_to_cpu(req->NameLength), 2311 1, work->conn->local_nls); 2312 if (IS_ERR(name)) { 2313 rsp->hdr.Status = STATUS_NO_MEMORY; 2314 err = PTR_ERR(name); 2315 goto out; 2316 } 2317 2318 id = ksmbd_session_rpc_open(work->sess, name); 2319 if (id < 0) { 2320 pr_err("Unable to open RPC pipe: %d\n", id); 2321 err = id; 2322 goto out; 2323 } 2324 2325 rsp->hdr.Status = STATUS_SUCCESS; 2326 rsp->StructureSize = cpu_to_le16(89); 2327 rsp->OplockLevel = SMB2_OPLOCK_LEVEL_NONE; 2328 rsp->Flags = 0; 2329 rsp->CreateAction = cpu_to_le32(FILE_OPENED); 2330 2331 rsp->CreationTime = cpu_to_le64(0); 2332 rsp->LastAccessTime = cpu_to_le64(0); 2333 rsp->ChangeTime = cpu_to_le64(0); 2334 rsp->AllocationSize = cpu_to_le64(0); 2335 rsp->EndofFile = cpu_to_le64(0); 2336 rsp->FileAttributes = FILE_ATTRIBUTE_NORMAL_LE; 2337 rsp->Reserved2 = 0; 2338 rsp->VolatileFileId = id; 2339 rsp->PersistentFileId = 0; 2340 rsp->CreateContextsOffset = 0; 2341 rsp->CreateContextsLength = 0; 2342 2343 err = ksmbd_iov_pin_rsp(work, rsp, offsetof(struct smb2_create_rsp, Buffer)); 2344 if (err) 2345 goto out; 2346 2347 kfree(name); 2348 return 0; 2349 2350 out: 2351 switch (err) { 2352 case -EINVAL: 2353 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 2354 break; 2355 case -ENOSPC: 2356 case -ENOMEM: 2357 rsp->hdr.Status = STATUS_NO_MEMORY; 2358 break; 2359 } 2360 2361 if (id >= 0) 2362 ksmbd_session_rpc_close(work->sess, id); 2363 2364 if (!IS_ERR(name)) 2365 kfree(name); 2366 2367 smb2_set_err_rsp(work); 2368 return err; 2369 } 2370 2371 /** 2372 * smb2_set_ea() - handler for setting extended attributes using set 2373 * info command 2374 * @eabuf: set info command buffer 2375 * @buf_len: set info command buffer length 2376 * @path: dentry path for get ea 2377 * @get_write: get write access to a mount 2378 * 2379 * Return: 0 on success, otherwise error 2380 */ 2381 static int smb2_set_ea(struct smb2_ea_info *eabuf, unsigned int buf_len, 2382 const struct path *path, bool get_write) 2383 { 2384 struct mnt_idmap *idmap = mnt_idmap(path->mnt); 2385 char *attr_name = NULL, *value; 2386 int rc = 0; 2387 unsigned int next = 0; 2388 2389 if (buf_len < sizeof(struct smb2_ea_info) + eabuf->EaNameLength + 1 + 2390 le16_to_cpu(eabuf->EaValueLength)) 2391 return -EINVAL; 2392 2393 attr_name = kmalloc(XATTR_NAME_MAX + 1, KSMBD_DEFAULT_GFP); 2394 if (!attr_name) 2395 return -ENOMEM; 2396 2397 do { 2398 if (!eabuf->EaNameLength) 2399 goto next; 2400 2401 ksmbd_debug(SMB, 2402 "name : <%s>, name_len : %u, value_len : %u, next : %u\n", 2403 eabuf->name, eabuf->EaNameLength, 2404 le16_to_cpu(eabuf->EaValueLength), 2405 le32_to_cpu(eabuf->NextEntryOffset)); 2406 2407 if (eabuf->EaNameLength > 2408 (XATTR_NAME_MAX - XATTR_USER_PREFIX_LEN)) { 2409 rc = -EINVAL; 2410 break; 2411 } 2412 2413 memcpy(attr_name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN); 2414 memcpy(&attr_name[XATTR_USER_PREFIX_LEN], eabuf->name, 2415 eabuf->EaNameLength); 2416 attr_name[XATTR_USER_PREFIX_LEN + eabuf->EaNameLength] = '\0'; 2417 value = (char *)&eabuf->name + eabuf->EaNameLength + 1; 2418 2419 if (!eabuf->EaValueLength) { 2420 rc = ksmbd_vfs_casexattr_len(idmap, 2421 path->dentry, 2422 attr_name, 2423 XATTR_USER_PREFIX_LEN + 2424 eabuf->EaNameLength); 2425 2426 /* delete the EA only when it exits */ 2427 if (rc > 0) { 2428 rc = ksmbd_vfs_remove_xattr(idmap, 2429 path, 2430 attr_name, 2431 get_write); 2432 2433 if (rc < 0) { 2434 ksmbd_debug(SMB, 2435 "remove xattr failed(%d)\n", 2436 rc); 2437 break; 2438 } 2439 } 2440 2441 /* if the EA doesn't exist, just do nothing. */ 2442 rc = 0; 2443 } else { 2444 rc = ksmbd_vfs_setxattr(idmap, path, attr_name, value, 2445 le16_to_cpu(eabuf->EaValueLength), 2446 0, get_write); 2447 if (rc < 0) { 2448 ksmbd_debug(SMB, 2449 "ksmbd_vfs_setxattr is failed(%d)\n", 2450 rc); 2451 break; 2452 } 2453 } 2454 2455 next: 2456 next = le32_to_cpu(eabuf->NextEntryOffset); 2457 if (next == 0 || buf_len < next) 2458 break; 2459 buf_len -= next; 2460 eabuf = (struct smb2_ea_info *)((char *)eabuf + next); 2461 if (buf_len < sizeof(struct smb2_ea_info)) { 2462 rc = -EINVAL; 2463 break; 2464 } 2465 2466 if (buf_len < sizeof(struct smb2_ea_info) + eabuf->EaNameLength + 1 + 2467 le16_to_cpu(eabuf->EaValueLength)) { 2468 rc = -EINVAL; 2469 break; 2470 } 2471 } while (next != 0); 2472 2473 kfree(attr_name); 2474 return rc; 2475 } 2476 2477 static noinline int smb2_set_stream_name_xattr(const struct path *path, 2478 struct ksmbd_file *fp, 2479 char *stream_name, int s_type) 2480 { 2481 struct mnt_idmap *idmap = mnt_idmap(path->mnt); 2482 size_t xattr_stream_size; 2483 char *xattr_stream_name; 2484 int rc; 2485 2486 rc = ksmbd_vfs_xattr_stream_name(stream_name, 2487 &xattr_stream_name, 2488 &xattr_stream_size, 2489 s_type); 2490 if (rc) 2491 return rc; 2492 2493 fp->stream.name = xattr_stream_name; 2494 fp->stream.size = xattr_stream_size; 2495 2496 /* Check if there is stream prefix in xattr space */ 2497 rc = ksmbd_vfs_casexattr_len(idmap, 2498 path->dentry, 2499 xattr_stream_name, 2500 xattr_stream_size); 2501 if (rc >= 0) 2502 return 0; 2503 2504 if (fp->cdoption == FILE_OPEN_LE) { 2505 ksmbd_debug(SMB, "XATTR stream name lookup failed: %d\n", rc); 2506 return -EBADF; 2507 } 2508 2509 rc = ksmbd_vfs_setxattr(idmap, path, xattr_stream_name, NULL, 0, 0, false); 2510 if (rc < 0) 2511 pr_err("Failed to store XATTR stream name :%d\n", rc); 2512 return 0; 2513 } 2514 2515 static int smb2_remove_smb_xattrs(const struct path *path) 2516 { 2517 struct mnt_idmap *idmap = mnt_idmap(path->mnt); 2518 char *name, *xattr_list = NULL; 2519 ssize_t xattr_list_len; 2520 int err = 0; 2521 2522 xattr_list_len = ksmbd_vfs_listxattr(path->dentry, &xattr_list); 2523 if (xattr_list_len < 0) { 2524 goto out; 2525 } else if (!xattr_list_len) { 2526 ksmbd_debug(SMB, "empty xattr in the file\n"); 2527 goto out; 2528 } 2529 2530 for (name = xattr_list; name - xattr_list < xattr_list_len; 2531 name += strlen(name) + 1) { 2532 ksmbd_debug(SMB, "%s, len %zd\n", name, strlen(name)); 2533 2534 if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN) && 2535 !strncmp(&name[XATTR_USER_PREFIX_LEN], STREAM_PREFIX, 2536 STREAM_PREFIX_LEN)) { 2537 err = ksmbd_vfs_remove_xattr(idmap, path, 2538 name, true); 2539 if (err) 2540 ksmbd_debug(SMB, "remove xattr failed : %s\n", 2541 name); 2542 } 2543 } 2544 out: 2545 kvfree(xattr_list); 2546 return err; 2547 } 2548 2549 static int smb2_create_truncate(const struct path *path) 2550 { 2551 int rc = vfs_truncate(path, 0); 2552 2553 if (rc) { 2554 pr_err("vfs_truncate failed, rc %d\n", rc); 2555 return rc; 2556 } 2557 2558 rc = smb2_remove_smb_xattrs(path); 2559 if (rc == -EOPNOTSUPP) 2560 rc = 0; 2561 if (rc) 2562 ksmbd_debug(SMB, 2563 "ksmbd_truncate_stream_name_xattr failed, rc %d\n", 2564 rc); 2565 return rc; 2566 } 2567 2568 static void smb2_new_xattrs(struct ksmbd_tree_connect *tcon, const struct path *path, 2569 struct ksmbd_file *fp) 2570 { 2571 struct xattr_dos_attrib da = {0}; 2572 int rc; 2573 2574 if (!test_share_config_flag(tcon->share_conf, 2575 KSMBD_SHARE_FLAG_STORE_DOS_ATTRS)) 2576 return; 2577 2578 da.version = 4; 2579 da.attr = le32_to_cpu(fp->f_ci->m_fattr); 2580 da.itime = da.create_time = fp->create_time; 2581 da.flags = XATTR_DOSINFO_ATTRIB | XATTR_DOSINFO_CREATE_TIME | 2582 XATTR_DOSINFO_ITIME; 2583 2584 rc = ksmbd_vfs_set_dos_attrib_xattr(mnt_idmap(path->mnt), path, &da, true); 2585 if (rc) 2586 ksmbd_debug(SMB, "failed to store file attribute into xattr\n"); 2587 } 2588 2589 static void smb2_update_xattrs(struct ksmbd_tree_connect *tcon, 2590 const struct path *path, struct ksmbd_file *fp) 2591 { 2592 struct xattr_dos_attrib da; 2593 int rc; 2594 2595 fp->f_ci->m_fattr &= ~(FILE_ATTRIBUTE_HIDDEN_LE | FILE_ATTRIBUTE_SYSTEM_LE); 2596 2597 /* get FileAttributes from XATTR_NAME_DOS_ATTRIBUTE */ 2598 if (!test_share_config_flag(tcon->share_conf, 2599 KSMBD_SHARE_FLAG_STORE_DOS_ATTRS)) 2600 return; 2601 2602 rc = ksmbd_vfs_get_dos_attrib_xattr(mnt_idmap(path->mnt), 2603 path->dentry, &da); 2604 if (rc > 0) { 2605 fp->f_ci->m_fattr = cpu_to_le32(da.attr); 2606 fp->create_time = da.create_time; 2607 fp->itime = da.itime; 2608 } 2609 } 2610 2611 static int smb2_creat(struct ksmbd_work *work, 2612 struct path *path, char *name, int open_flags, 2613 umode_t posix_mode, bool is_dir) 2614 { 2615 struct ksmbd_tree_connect *tcon = work->tcon; 2616 struct ksmbd_share_config *share = tcon->share_conf; 2617 umode_t mode; 2618 int rc; 2619 2620 if (!(open_flags & O_CREAT)) 2621 return -EBADF; 2622 2623 ksmbd_debug(SMB, "file does not exist, so creating\n"); 2624 if (is_dir == true) { 2625 ksmbd_debug(SMB, "creating directory\n"); 2626 2627 mode = share_config_directory_mode(share, posix_mode); 2628 rc = ksmbd_vfs_mkdir(work, name, mode); 2629 if (rc) 2630 return rc; 2631 } else { 2632 ksmbd_debug(SMB, "creating regular file\n"); 2633 2634 mode = share_config_create_mode(share, posix_mode); 2635 rc = ksmbd_vfs_create(work, name, mode); 2636 if (rc) 2637 return rc; 2638 } 2639 2640 rc = ksmbd_vfs_kern_path(work, name, 0, path, 0); 2641 if (rc) { 2642 pr_err("cannot get linux path (%s), err = %d\n", 2643 name, rc); 2644 return rc; 2645 } 2646 return 0; 2647 } 2648 2649 static int smb2_create_sd_buffer(struct ksmbd_work *work, 2650 struct smb2_create_req *req, 2651 const struct path *path) 2652 { 2653 struct create_context *context; 2654 struct create_sd_buf_req *sd_buf; 2655 2656 if (!req->CreateContextsOffset) 2657 return -ENOENT; 2658 2659 /* Parse SD BUFFER create contexts */ 2660 context = smb2_find_context_vals(req, SMB2_CREATE_SD_BUFFER, 4); 2661 if (!context) 2662 return -ENOENT; 2663 else if (IS_ERR(context)) 2664 return PTR_ERR(context); 2665 2666 ksmbd_debug(SMB, 2667 "Set ACLs using SMB2_CREATE_SD_BUFFER context\n"); 2668 sd_buf = (struct create_sd_buf_req *)context; 2669 if (le16_to_cpu(context->DataOffset) + 2670 le32_to_cpu(context->DataLength) < 2671 sizeof(struct create_sd_buf_req)) 2672 return -EINVAL; 2673 return set_info_sec(work->conn, work->tcon, path, &sd_buf->ntsd, 2674 le32_to_cpu(sd_buf->ccontext.DataLength), true, false); 2675 } 2676 2677 static void ksmbd_acls_fattr(struct smb_fattr *fattr, 2678 struct mnt_idmap *idmap, 2679 struct inode *inode) 2680 { 2681 vfsuid_t vfsuid = i_uid_into_vfsuid(idmap, inode); 2682 vfsgid_t vfsgid = i_gid_into_vfsgid(idmap, inode); 2683 2684 fattr->cf_uid = vfsuid_into_kuid(vfsuid); 2685 fattr->cf_gid = vfsgid_into_kgid(vfsgid); 2686 fattr->cf_mode = inode->i_mode; 2687 fattr->cf_acls = NULL; 2688 fattr->cf_dacls = NULL; 2689 2690 if (IS_ENABLED(CONFIG_FS_POSIX_ACL)) { 2691 fattr->cf_acls = get_inode_acl(inode, ACL_TYPE_ACCESS); 2692 if (S_ISDIR(inode->i_mode)) 2693 fattr->cf_dacls = get_inode_acl(inode, ACL_TYPE_DEFAULT); 2694 } 2695 } 2696 2697 enum { 2698 DURABLE_RECONN_V2 = 1, 2699 DURABLE_RECONN, 2700 DURABLE_REQ_V2, 2701 DURABLE_REQ, 2702 }; 2703 2704 struct durable_info { 2705 struct ksmbd_file *fp; 2706 unsigned short int type; 2707 bool persistent; 2708 bool reconnected; 2709 unsigned int timeout; 2710 char *CreateGuid; 2711 }; 2712 2713 static int parse_durable_handle_context(struct ksmbd_work *work, 2714 struct smb2_create_req *req, 2715 struct lease_ctx_info *lc, 2716 struct durable_info *dh_info) 2717 { 2718 struct ksmbd_conn *conn = work->conn; 2719 struct create_context *context; 2720 int dh_idx, err = 0; 2721 u64 persistent_id = 0; 2722 int req_op_level; 2723 static const char * const durable_arr[] = {"DH2C", "DHnC", "DH2Q", "DHnQ"}; 2724 2725 req_op_level = req->RequestedOplockLevel; 2726 for (dh_idx = DURABLE_RECONN_V2; dh_idx <= ARRAY_SIZE(durable_arr); 2727 dh_idx++) { 2728 context = smb2_find_context_vals(req, durable_arr[dh_idx - 1], 4); 2729 if (IS_ERR(context)) { 2730 err = PTR_ERR(context); 2731 goto out; 2732 } 2733 if (!context) 2734 continue; 2735 2736 switch (dh_idx) { 2737 case DURABLE_RECONN_V2: 2738 { 2739 struct create_durable_handle_reconnect_v2 *recon_v2; 2740 2741 if (dh_info->type == DURABLE_RECONN || 2742 dh_info->type == DURABLE_REQ_V2) { 2743 err = -EINVAL; 2744 goto out; 2745 } 2746 2747 if (le16_to_cpu(context->DataOffset) + 2748 le32_to_cpu(context->DataLength) < 2749 sizeof(struct create_durable_handle_reconnect_v2)) { 2750 err = -EINVAL; 2751 goto out; 2752 } 2753 2754 recon_v2 = (struct create_durable_handle_reconnect_v2 *)context; 2755 persistent_id = recon_v2->dcontext.Fid.PersistentFileId; 2756 dh_info->fp = ksmbd_lookup_durable_fd(persistent_id); 2757 if (!dh_info->fp) { 2758 ksmbd_debug(SMB, "Failed to get durable handle state\n"); 2759 err = -EBADF; 2760 goto out; 2761 } 2762 2763 if (memcmp(dh_info->fp->create_guid, recon_v2->dcontext.CreateGuid, 2764 SMB2_CREATE_GUID_SIZE)) { 2765 err = -EBADF; 2766 ksmbd_put_durable_fd(dh_info->fp); 2767 goto out; 2768 } 2769 2770 dh_info->type = dh_idx; 2771 dh_info->reconnected = true; 2772 ksmbd_debug(SMB, 2773 "reconnect v2 Persistent-id from reconnect = %llu\n", 2774 persistent_id); 2775 break; 2776 } 2777 case DURABLE_RECONN: 2778 { 2779 create_durable_reconn_t *recon; 2780 2781 if (dh_info->type == DURABLE_RECONN_V2 || 2782 dh_info->type == DURABLE_REQ_V2) { 2783 err = -EINVAL; 2784 goto out; 2785 } 2786 2787 if (le16_to_cpu(context->DataOffset) + 2788 le32_to_cpu(context->DataLength) < 2789 sizeof(create_durable_reconn_t)) { 2790 err = -EINVAL; 2791 goto out; 2792 } 2793 2794 recon = (create_durable_reconn_t *)context; 2795 persistent_id = recon->Data.Fid.PersistentFileId; 2796 dh_info->fp = ksmbd_lookup_durable_fd(persistent_id); 2797 if (!dh_info->fp) { 2798 ksmbd_debug(SMB, "Failed to get durable handle state\n"); 2799 err = -EBADF; 2800 goto out; 2801 } 2802 2803 dh_info->type = dh_idx; 2804 dh_info->reconnected = true; 2805 ksmbd_debug(SMB, "reconnect Persistent-id from reconnect = %llu\n", 2806 persistent_id); 2807 break; 2808 } 2809 case DURABLE_REQ_V2: 2810 { 2811 struct create_durable_req_v2 *durable_v2_blob; 2812 2813 if (dh_info->type == DURABLE_RECONN || 2814 dh_info->type == DURABLE_RECONN_V2) { 2815 err = -EINVAL; 2816 goto out; 2817 } 2818 2819 if (le16_to_cpu(context->DataOffset) + 2820 le32_to_cpu(context->DataLength) < 2821 sizeof(struct create_durable_req_v2)) { 2822 err = -EINVAL; 2823 goto out; 2824 } 2825 2826 durable_v2_blob = 2827 (struct create_durable_req_v2 *)context; 2828 ksmbd_debug(SMB, "Request for durable v2 open\n"); 2829 dh_info->fp = ksmbd_lookup_fd_cguid(durable_v2_blob->dcontext.CreateGuid); 2830 if (dh_info->fp) { 2831 if (!memcmp(conn->ClientGUID, dh_info->fp->client_guid, 2832 SMB2_CLIENT_GUID_SIZE)) { 2833 if (!(req->hdr.Flags & SMB2_FLAGS_REPLAY_OPERATION)) { 2834 err = -ENOEXEC; 2835 ksmbd_put_durable_fd(dh_info->fp); 2836 goto out; 2837 } 2838 2839 if (dh_info->fp->conn) { 2840 ksmbd_put_durable_fd(dh_info->fp); 2841 err = -EBADF; 2842 goto out; 2843 } 2844 dh_info->reconnected = true; 2845 goto out; 2846 } 2847 ksmbd_put_durable_fd(dh_info->fp); 2848 dh_info->fp = NULL; 2849 } 2850 2851 if ((lc && (lc->req_state & SMB2_LEASE_HANDLE_CACHING_LE)) || 2852 req_op_level == SMB2_OPLOCK_LEVEL_BATCH) { 2853 dh_info->CreateGuid = 2854 durable_v2_blob->dcontext.CreateGuid; 2855 dh_info->persistent = 2856 le32_to_cpu(durable_v2_blob->dcontext.Flags); 2857 dh_info->timeout = 2858 le32_to_cpu(durable_v2_blob->dcontext.Timeout); 2859 dh_info->type = dh_idx; 2860 } 2861 break; 2862 } 2863 case DURABLE_REQ: 2864 if (dh_info->type == DURABLE_RECONN) 2865 goto out; 2866 if (dh_info->type == DURABLE_RECONN_V2 || 2867 dh_info->type == DURABLE_REQ_V2) { 2868 err = -EINVAL; 2869 goto out; 2870 } 2871 2872 if ((lc && (lc->req_state & SMB2_LEASE_HANDLE_CACHING_LE)) || 2873 req_op_level == SMB2_OPLOCK_LEVEL_BATCH) { 2874 ksmbd_debug(SMB, "Request for durable open\n"); 2875 dh_info->type = dh_idx; 2876 } 2877 } 2878 } 2879 2880 out: 2881 return err; 2882 } 2883 2884 /** 2885 * smb2_open() - handler for smb file open request 2886 * @work: smb work containing request buffer 2887 * 2888 * Return: 0 on success, otherwise error 2889 */ 2890 int smb2_open(struct ksmbd_work *work) 2891 { 2892 struct ksmbd_conn *conn = work->conn; 2893 struct ksmbd_session *sess = work->sess; 2894 struct ksmbd_tree_connect *tcon = work->tcon; 2895 struct smb2_create_req *req; 2896 struct smb2_create_rsp *rsp; 2897 struct path path; 2898 struct ksmbd_share_config *share = tcon->share_conf; 2899 struct ksmbd_file *fp = NULL; 2900 struct file *filp = NULL; 2901 struct mnt_idmap *idmap = NULL; 2902 struct kstat stat; 2903 struct create_context *context; 2904 struct lease_ctx_info *lc = NULL; 2905 struct create_ea_buf_req *ea_buf = NULL; 2906 struct oplock_info *opinfo; 2907 struct durable_info dh_info = {0}; 2908 __le32 *next_ptr = NULL; 2909 int req_op_level = 0, open_flags = 0, may_flags = 0, file_info = 0; 2910 int rc = 0; 2911 int contxt_cnt = 0, query_disk_id = 0; 2912 bool maximal_access_ctxt = false, posix_ctxt = false; 2913 int s_type = 0; 2914 int next_off = 0; 2915 char *name = NULL; 2916 char *stream_name = NULL; 2917 bool file_present = false, created = false, already_permitted = false; 2918 int share_ret, need_truncate = 0; 2919 u64 time; 2920 umode_t posix_mode = 0; 2921 __le32 daccess, maximal_access = 0; 2922 int iov_len = 0; 2923 2924 ksmbd_debug(SMB, "Received smb2 create request\n"); 2925 2926 WORK_BUFFERS(work, req, rsp); 2927 2928 if (req->hdr.NextCommand && !work->next_smb2_rcv_hdr_off && 2929 (req->hdr.Flags & SMB2_FLAGS_RELATED_OPERATIONS)) { 2930 ksmbd_debug(SMB, "invalid flag in chained command\n"); 2931 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 2932 smb2_set_err_rsp(work); 2933 return -EINVAL; 2934 } 2935 2936 if (test_share_config_flag(share, KSMBD_SHARE_FLAG_PIPE)) { 2937 ksmbd_debug(SMB, "IPC pipe create request\n"); 2938 return create_smb2_pipe(work); 2939 } 2940 2941 if (req->CreateContextsOffset && tcon->posix_extensions) { 2942 context = smb2_find_context_vals(req, SMB2_CREATE_TAG_POSIX, 16); 2943 if (IS_ERR(context)) { 2944 rc = PTR_ERR(context); 2945 goto err_out2; 2946 } else if (context) { 2947 struct create_posix *posix = (struct create_posix *)context; 2948 2949 if (le16_to_cpu(context->DataOffset) + 2950 le32_to_cpu(context->DataLength) < 2951 sizeof(struct create_posix) - 4) { 2952 rc = -EINVAL; 2953 goto err_out2; 2954 } 2955 ksmbd_debug(SMB, "get posix context\n"); 2956 2957 posix_mode = le32_to_cpu(posix->Mode); 2958 posix_ctxt = true; 2959 } 2960 } 2961 2962 if (req->NameLength) { 2963 name = smb2_get_name((char *)req + le16_to_cpu(req->NameOffset), 2964 le16_to_cpu(req->NameLength), 2965 work->conn->local_nls); 2966 if (IS_ERR(name)) { 2967 rc = PTR_ERR(name); 2968 name = NULL; 2969 goto err_out2; 2970 } 2971 2972 ksmbd_debug(SMB, "converted name = %s\n", name); 2973 2974 if (posix_ctxt == false) { 2975 if (strchr(name, ':')) { 2976 if (!test_share_config_flag(work->tcon->share_conf, 2977 KSMBD_SHARE_FLAG_STREAMS)) { 2978 rc = -EBADF; 2979 goto err_out2; 2980 } 2981 rc = parse_stream_name(name, &stream_name, &s_type); 2982 if (rc < 0) 2983 goto err_out2; 2984 } 2985 2986 rc = ksmbd_validate_filename(name); 2987 if (rc < 0) 2988 goto err_out2; 2989 } 2990 2991 if (ksmbd_share_veto_filename(share, name)) { 2992 rc = -ENOENT; 2993 ksmbd_debug(SMB, "Reject open(), vetoed file: %s\n", 2994 name); 2995 goto err_out2; 2996 } 2997 } else { 2998 name = kstrdup("", KSMBD_DEFAULT_GFP); 2999 if (!name) { 3000 rc = -ENOMEM; 3001 goto err_out2; 3002 } 3003 } 3004 3005 req_op_level = req->RequestedOplockLevel; 3006 3007 if (server_conf.flags & KSMBD_GLOBAL_FLAG_DURABLE_HANDLE && 3008 req->CreateContextsOffset) { 3009 lc = parse_lease_state(req); 3010 rc = parse_durable_handle_context(work, req, lc, &dh_info); 3011 if (rc) { 3012 ksmbd_debug(SMB, "error parsing durable handle context\n"); 3013 goto err_out2; 3014 } 3015 3016 if (dh_info.reconnected == true) { 3017 rc = smb2_check_durable_oplock(conn, share, dh_info.fp, 3018 lc, sess->user, name); 3019 if (rc) 3020 goto err_out2; 3021 3022 rc = ksmbd_reopen_durable_fd(work, dh_info.fp); 3023 if (rc) 3024 goto err_out2; 3025 3026 fp = dh_info.fp; 3027 3028 if (ksmbd_override_fsids(work)) { 3029 rc = -ENOMEM; 3030 goto err_out2; 3031 } 3032 3033 file_info = FILE_OPENED; 3034 3035 rc = ksmbd_vfs_getattr(&fp->filp->f_path, &stat); 3036 if (rc) 3037 goto err_out2; 3038 3039 goto reconnected_fp; 3040 } 3041 } else if (req_op_level == SMB2_OPLOCK_LEVEL_LEASE) 3042 lc = parse_lease_state(req); 3043 3044 if (le32_to_cpu(req->ImpersonationLevel) > le32_to_cpu(IL_DELEGATE)) { 3045 pr_err("Invalid impersonationlevel : 0x%x\n", 3046 le32_to_cpu(req->ImpersonationLevel)); 3047 rc = -EIO; 3048 rsp->hdr.Status = STATUS_BAD_IMPERSONATION_LEVEL; 3049 goto err_out2; 3050 } 3051 3052 if (req->CreateOptions && !(req->CreateOptions & CREATE_OPTIONS_MASK_LE)) { 3053 pr_err("Invalid create options : 0x%x\n", 3054 le32_to_cpu(req->CreateOptions)); 3055 rc = -EINVAL; 3056 goto err_out2; 3057 } else { 3058 if (req->CreateOptions & FILE_SEQUENTIAL_ONLY_LE && 3059 req->CreateOptions & FILE_RANDOM_ACCESS_LE) 3060 req->CreateOptions &= ~FILE_SEQUENTIAL_ONLY_LE; 3061 3062 if (req->CreateOptions & 3063 (FILE_OPEN_BY_FILE_ID_LE | CREATE_TREE_CONNECTION | 3064 FILE_RESERVE_OPFILTER_LE)) { 3065 rc = -EOPNOTSUPP; 3066 goto err_out2; 3067 } 3068 3069 if (req->CreateOptions & FILE_DIRECTORY_FILE_LE) { 3070 if (req->CreateOptions & FILE_NON_DIRECTORY_FILE_LE) { 3071 rc = -EINVAL; 3072 goto err_out2; 3073 } else if (req->CreateOptions & FILE_NO_COMPRESSION_LE) { 3074 req->CreateOptions &= ~FILE_NO_COMPRESSION_LE; 3075 } 3076 } 3077 } 3078 3079 if (le32_to_cpu(req->CreateDisposition) > 3080 le32_to_cpu(FILE_OVERWRITE_IF_LE)) { 3081 pr_err("Invalid create disposition : 0x%x\n", 3082 le32_to_cpu(req->CreateDisposition)); 3083 rc = -EINVAL; 3084 goto err_out2; 3085 } 3086 3087 if (!(req->DesiredAccess & DESIRED_ACCESS_MASK)) { 3088 pr_err("Invalid desired access : 0x%x\n", 3089 le32_to_cpu(req->DesiredAccess)); 3090 rc = -EACCES; 3091 goto err_out2; 3092 } 3093 3094 if (req->FileAttributes && !(req->FileAttributes & FILE_ATTRIBUTE_MASK_LE)) { 3095 pr_err("Invalid file attribute : 0x%x\n", 3096 le32_to_cpu(req->FileAttributes)); 3097 rc = -EINVAL; 3098 goto err_out2; 3099 } 3100 3101 if (req->CreateContextsOffset) { 3102 /* Parse non-durable handle create contexts */ 3103 context = smb2_find_context_vals(req, SMB2_CREATE_EA_BUFFER, 4); 3104 if (IS_ERR(context)) { 3105 rc = PTR_ERR(context); 3106 goto err_out2; 3107 } else if (context) { 3108 ea_buf = (struct create_ea_buf_req *)context; 3109 if (le16_to_cpu(context->DataOffset) + 3110 le32_to_cpu(context->DataLength) < 3111 sizeof(struct create_ea_buf_req)) { 3112 rc = -EINVAL; 3113 goto err_out2; 3114 } 3115 if (req->CreateOptions & FILE_NO_EA_KNOWLEDGE_LE) { 3116 rsp->hdr.Status = STATUS_ACCESS_DENIED; 3117 rc = -EACCES; 3118 goto err_out2; 3119 } 3120 } 3121 3122 context = smb2_find_context_vals(req, 3123 SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST, 4); 3124 if (IS_ERR(context)) { 3125 rc = PTR_ERR(context); 3126 goto err_out2; 3127 } else if (context) { 3128 ksmbd_debug(SMB, 3129 "get query maximal access context\n"); 3130 maximal_access_ctxt = 1; 3131 } 3132 3133 context = smb2_find_context_vals(req, 3134 SMB2_CREATE_TIMEWARP_REQUEST, 4); 3135 if (IS_ERR(context)) { 3136 rc = PTR_ERR(context); 3137 goto err_out2; 3138 } else if (context) { 3139 ksmbd_debug(SMB, "get timewarp context\n"); 3140 rc = -EBADF; 3141 goto err_out2; 3142 } 3143 } 3144 3145 if (ksmbd_override_fsids(work)) { 3146 rc = -ENOMEM; 3147 goto err_out2; 3148 } 3149 3150 rc = ksmbd_vfs_kern_path(work, name, LOOKUP_NO_SYMLINKS, 3151 &path, 1); 3152 if (!rc) { 3153 file_present = true; 3154 3155 if (req->CreateOptions & FILE_DELETE_ON_CLOSE_LE) { 3156 /* 3157 * If file exists with under flags, return access 3158 * denied error. 3159 */ 3160 if (req->CreateDisposition == FILE_OVERWRITE_IF_LE || 3161 req->CreateDisposition == FILE_OPEN_IF_LE) { 3162 rc = -EACCES; 3163 goto err_out; 3164 } 3165 3166 if (!test_tree_conn_flag(tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) { 3167 ksmbd_debug(SMB, 3168 "User does not have write permission\n"); 3169 rc = -EACCES; 3170 goto err_out; 3171 } 3172 } else if (d_is_symlink(path.dentry)) { 3173 rc = -EACCES; 3174 goto err_out; 3175 } 3176 3177 idmap = mnt_idmap(path.mnt); 3178 } else { 3179 if (rc != -ENOENT) 3180 goto err_out; 3181 ksmbd_debug(SMB, "can not get linux path for %s, rc = %d\n", 3182 name, rc); 3183 rc = 0; 3184 } 3185 3186 if (stream_name) { 3187 if (req->CreateOptions & FILE_DIRECTORY_FILE_LE) { 3188 if (s_type == DATA_STREAM) { 3189 rc = -EIO; 3190 rsp->hdr.Status = STATUS_NOT_A_DIRECTORY; 3191 } 3192 } else { 3193 if (file_present && S_ISDIR(d_inode(path.dentry)->i_mode) && 3194 s_type == DATA_STREAM) { 3195 rc = -EIO; 3196 rsp->hdr.Status = STATUS_FILE_IS_A_DIRECTORY; 3197 } 3198 } 3199 3200 if (req->CreateOptions & FILE_DIRECTORY_FILE_LE && 3201 req->FileAttributes & FILE_ATTRIBUTE_NORMAL_LE) { 3202 rsp->hdr.Status = STATUS_NOT_A_DIRECTORY; 3203 rc = -EIO; 3204 } 3205 3206 if (rc < 0) 3207 goto err_out; 3208 } 3209 3210 if (file_present && req->CreateOptions & FILE_NON_DIRECTORY_FILE_LE && 3211 S_ISDIR(d_inode(path.dentry)->i_mode) && 3212 !(req->CreateOptions & FILE_DELETE_ON_CLOSE_LE)) { 3213 ksmbd_debug(SMB, "open() argument is a directory: %s, %x\n", 3214 name, req->CreateOptions); 3215 rsp->hdr.Status = STATUS_FILE_IS_A_DIRECTORY; 3216 rc = -EIO; 3217 goto err_out; 3218 } 3219 3220 if (file_present && (req->CreateOptions & FILE_DIRECTORY_FILE_LE) && 3221 !(req->CreateDisposition == FILE_CREATE_LE) && 3222 !S_ISDIR(d_inode(path.dentry)->i_mode)) { 3223 rsp->hdr.Status = STATUS_NOT_A_DIRECTORY; 3224 rc = -EIO; 3225 goto err_out; 3226 } 3227 3228 if (!stream_name && file_present && 3229 req->CreateDisposition == FILE_CREATE_LE) { 3230 rc = -EEXIST; 3231 goto err_out; 3232 } 3233 3234 daccess = smb_map_generic_desired_access(req->DesiredAccess); 3235 3236 if (file_present && !(req->CreateOptions & FILE_DELETE_ON_CLOSE_LE)) { 3237 rc = smb_check_perm_dacl(conn, &path, &daccess, 3238 sess->user->uid); 3239 if (rc) 3240 goto err_out; 3241 } 3242 3243 if (daccess & FILE_MAXIMAL_ACCESS_LE) { 3244 if (!file_present) { 3245 daccess = cpu_to_le32(GENERIC_ALL_FLAGS); 3246 } else { 3247 ksmbd_vfs_query_maximal_access(idmap, 3248 path.dentry, 3249 &daccess); 3250 already_permitted = true; 3251 } 3252 maximal_access = daccess; 3253 } 3254 3255 open_flags = smb2_create_open_flags(file_present, daccess, 3256 req->CreateDisposition, 3257 &may_flags, 3258 req->CreateOptions, 3259 file_present ? d_inode(path.dentry)->i_mode : 0); 3260 3261 if (!test_tree_conn_flag(tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) { 3262 if (open_flags & (O_CREAT | O_TRUNC)) { 3263 ksmbd_debug(SMB, 3264 "User does not have write permission\n"); 3265 rc = -EACCES; 3266 goto err_out; 3267 } 3268 } 3269 3270 /*create file if not present */ 3271 if (!file_present) { 3272 rc = smb2_creat(work, &path, name, open_flags, 3273 posix_mode, 3274 req->CreateOptions & FILE_DIRECTORY_FILE_LE); 3275 if (rc) { 3276 if (rc == -ENOENT) { 3277 rc = -EIO; 3278 rsp->hdr.Status = STATUS_OBJECT_PATH_NOT_FOUND; 3279 } 3280 goto err_out; 3281 } 3282 3283 created = true; 3284 idmap = mnt_idmap(path.mnt); 3285 if (ea_buf) { 3286 if (le32_to_cpu(ea_buf->ccontext.DataLength) < 3287 sizeof(struct smb2_ea_info)) { 3288 rc = -EINVAL; 3289 goto err_out; 3290 } 3291 3292 rc = smb2_set_ea(&ea_buf->ea, 3293 le32_to_cpu(ea_buf->ccontext.DataLength), 3294 &path, false); 3295 if (rc == -EOPNOTSUPP) 3296 rc = 0; 3297 else if (rc) 3298 goto err_out; 3299 } 3300 } else if (!already_permitted) { 3301 /* FILE_READ_ATTRIBUTE is allowed without inode_permission, 3302 * because execute(search) permission on a parent directory, 3303 * is already granted. 3304 */ 3305 if (daccess & ~(FILE_READ_ATTRIBUTES_LE | FILE_READ_CONTROL_LE)) { 3306 rc = inode_permission(idmap, 3307 d_inode(path.dentry), 3308 may_flags); 3309 if (rc) 3310 goto err_out; 3311 3312 if ((daccess & FILE_DELETE_LE) || 3313 (req->CreateOptions & FILE_DELETE_ON_CLOSE_LE)) { 3314 rc = inode_permission(idmap, 3315 d_inode(path.dentry->d_parent), 3316 MAY_EXEC | MAY_WRITE); 3317 if (rc) 3318 goto err_out; 3319 } 3320 } 3321 } 3322 3323 rc = ksmbd_query_inode_status(path.dentry->d_parent); 3324 if (rc == KSMBD_INODE_STATUS_PENDING_DELETE) { 3325 rc = -EBUSY; 3326 goto err_out; 3327 } 3328 3329 rc = 0; 3330 filp = dentry_open(&path, open_flags, current_cred()); 3331 if (IS_ERR(filp)) { 3332 rc = PTR_ERR(filp); 3333 pr_err("dentry open for dir failed, rc %d\n", rc); 3334 goto err_out; 3335 } 3336 3337 if (file_present) { 3338 if (!(open_flags & O_TRUNC)) 3339 file_info = FILE_OPENED; 3340 else 3341 file_info = FILE_OVERWRITTEN; 3342 3343 if ((req->CreateDisposition & FILE_CREATE_MASK_LE) == 3344 FILE_SUPERSEDE_LE) 3345 file_info = FILE_SUPERSEDED; 3346 } else if (open_flags & O_CREAT) { 3347 file_info = FILE_CREATED; 3348 } 3349 3350 ksmbd_vfs_set_fadvise(filp, req->CreateOptions); 3351 3352 /* Obtain Volatile-ID */ 3353 fp = ksmbd_open_fd(work, filp); 3354 if (IS_ERR(fp)) { 3355 fput(filp); 3356 rc = PTR_ERR(fp); 3357 fp = NULL; 3358 goto err_out; 3359 } 3360 3361 /* Get Persistent-ID */ 3362 ksmbd_open_durable_fd(fp); 3363 if (!has_file_id(fp->persistent_id)) { 3364 rc = -ENOMEM; 3365 goto err_out; 3366 } 3367 3368 fp->cdoption = req->CreateDisposition; 3369 fp->daccess = daccess; 3370 fp->saccess = req->ShareAccess; 3371 fp->coption = req->CreateOptions; 3372 3373 /* Set default windows and posix acls if creating new file */ 3374 if (created) { 3375 int posix_acl_rc; 3376 struct inode *inode = d_inode(path.dentry); 3377 3378 posix_acl_rc = ksmbd_vfs_inherit_posix_acl(idmap, 3379 &path, 3380 d_inode(path.dentry->d_parent)); 3381 if (posix_acl_rc) 3382 ksmbd_debug(SMB, "inherit posix acl failed : %d\n", posix_acl_rc); 3383 3384 if (test_share_config_flag(work->tcon->share_conf, 3385 KSMBD_SHARE_FLAG_ACL_XATTR)) { 3386 rc = smb_inherit_dacl(conn, &path, sess->user->uid, 3387 sess->user->gid); 3388 } 3389 3390 if (rc) { 3391 rc = smb2_create_sd_buffer(work, req, &path); 3392 if (rc) { 3393 if (posix_acl_rc) 3394 ksmbd_vfs_set_init_posix_acl(idmap, 3395 &path); 3396 3397 if (test_share_config_flag(work->tcon->share_conf, 3398 KSMBD_SHARE_FLAG_ACL_XATTR)) { 3399 struct smb_fattr fattr; 3400 struct smb_ntsd *pntsd; 3401 int pntsd_size; 3402 size_t scratch_len; 3403 3404 ksmbd_acls_fattr(&fattr, idmap, inode); 3405 scratch_len = smb_acl_sec_desc_scratch_len(&fattr, 3406 NULL, 0, 3407 OWNER_SECINFO | GROUP_SECINFO | 3408 DACL_SECINFO); 3409 if (!scratch_len || scratch_len == SIZE_MAX) { 3410 rc = -EFBIG; 3411 posix_acl_release(fattr.cf_acls); 3412 posix_acl_release(fattr.cf_dacls); 3413 goto err_out; 3414 } 3415 3416 pntsd = kvzalloc(scratch_len, KSMBD_DEFAULT_GFP); 3417 if (!pntsd) { 3418 rc = -ENOMEM; 3419 posix_acl_release(fattr.cf_acls); 3420 posix_acl_release(fattr.cf_dacls); 3421 goto err_out; 3422 } 3423 3424 rc = build_sec_desc(idmap, 3425 pntsd, NULL, 0, 3426 OWNER_SECINFO | 3427 GROUP_SECINFO | 3428 DACL_SECINFO, 3429 &pntsd_size, &fattr); 3430 posix_acl_release(fattr.cf_acls); 3431 posix_acl_release(fattr.cf_dacls); 3432 if (rc) { 3433 kvfree(pntsd); 3434 goto err_out; 3435 } 3436 3437 rc = ksmbd_vfs_set_sd_xattr(conn, 3438 idmap, 3439 &path, 3440 pntsd, 3441 pntsd_size, 3442 false); 3443 kvfree(pntsd); 3444 if (rc) 3445 pr_err("failed to store ntacl in xattr : %d\n", 3446 rc); 3447 } 3448 } 3449 } 3450 rc = 0; 3451 } 3452 3453 if (stream_name) { 3454 rc = smb2_set_stream_name_xattr(&path, 3455 fp, 3456 stream_name, 3457 s_type); 3458 if (rc) 3459 goto err_out; 3460 file_info = FILE_CREATED; 3461 } 3462 3463 fp->attrib_only = !(req->DesiredAccess & ~(FILE_READ_ATTRIBUTES_LE | 3464 FILE_WRITE_ATTRIBUTES_LE | FILE_SYNCHRONIZE_LE)); 3465 3466 fp->is_posix_ctxt = posix_ctxt; 3467 3468 /* fp should be searchable through ksmbd_inode.m_fp_list 3469 * after daccess, saccess, attrib_only, and stream are 3470 * initialized. 3471 */ 3472 down_write(&fp->f_ci->m_lock); 3473 list_add(&fp->node, &fp->f_ci->m_fp_list); 3474 up_write(&fp->f_ci->m_lock); 3475 3476 /* Check delete pending among previous fp before oplock break */ 3477 if (ksmbd_inode_pending_delete(fp)) { 3478 rc = -EBUSY; 3479 goto err_out; 3480 } 3481 3482 if (file_present || created) 3483 path_put(&path); 3484 3485 if (!S_ISDIR(file_inode(filp)->i_mode) && open_flags & O_TRUNC && 3486 !fp->attrib_only && !stream_name) { 3487 smb_break_all_oplock(work, fp); 3488 need_truncate = 1; 3489 } 3490 3491 share_ret = ksmbd_smb_check_shared_mode(fp->filp, fp); 3492 if (!test_share_config_flag(work->tcon->share_conf, KSMBD_SHARE_FLAG_OPLOCKS) || 3493 (req_op_level == SMB2_OPLOCK_LEVEL_LEASE && 3494 !(conn->vals->req_capabilities & SMB2_GLOBAL_CAP_LEASING))) { 3495 if (share_ret < 0 && !S_ISDIR(file_inode(fp->filp)->i_mode)) { 3496 rc = share_ret; 3497 goto err_out1; 3498 } 3499 } else { 3500 if (req_op_level == SMB2_OPLOCK_LEVEL_LEASE && lc) { 3501 if (S_ISDIR(file_inode(filp)->i_mode)) { 3502 lc->req_state &= ~SMB2_LEASE_WRITE_CACHING_LE; 3503 lc->is_dir = true; 3504 } 3505 3506 /* 3507 * Compare parent lease using parent key. If there is no 3508 * a lease that has same parent key, Send lease break 3509 * notification. 3510 */ 3511 smb_send_parent_lease_break_noti(fp, lc); 3512 3513 req_op_level = smb2_map_lease_to_oplock(lc->req_state); 3514 ksmbd_debug(SMB, 3515 "lease req for(%s) req oplock state 0x%x, lease state 0x%x\n", 3516 name, req_op_level, lc->req_state); 3517 rc = find_same_lease_key(sess, fp->f_ci, lc); 3518 if (rc) 3519 goto err_out1; 3520 } else if (open_flags == O_RDONLY && 3521 (req_op_level == SMB2_OPLOCK_LEVEL_BATCH || 3522 req_op_level == SMB2_OPLOCK_LEVEL_EXCLUSIVE)) 3523 req_op_level = SMB2_OPLOCK_LEVEL_II; 3524 3525 rc = smb_grant_oplock(work, req_op_level, 3526 fp->persistent_id, fp, 3527 le32_to_cpu(req->hdr.Id.SyncId.TreeId), 3528 lc, share_ret); 3529 if (rc < 0) 3530 goto err_out1; 3531 } 3532 3533 if (req->CreateOptions & FILE_DELETE_ON_CLOSE_LE) 3534 ksmbd_fd_set_delete_on_close(fp, file_info); 3535 3536 if (need_truncate) { 3537 rc = smb2_create_truncate(&fp->filp->f_path); 3538 if (rc) 3539 goto err_out1; 3540 } 3541 3542 if (req->CreateContextsOffset) { 3543 struct create_alloc_size_req *az_req; 3544 3545 az_req = (struct create_alloc_size_req *)smb2_find_context_vals(req, 3546 SMB2_CREATE_ALLOCATION_SIZE, 4); 3547 if (IS_ERR(az_req)) { 3548 rc = PTR_ERR(az_req); 3549 goto err_out1; 3550 } else if (az_req) { 3551 loff_t alloc_size; 3552 int err; 3553 3554 if (le16_to_cpu(az_req->ccontext.DataOffset) + 3555 le32_to_cpu(az_req->ccontext.DataLength) < 3556 sizeof(struct create_alloc_size_req)) { 3557 rc = -EINVAL; 3558 goto err_out1; 3559 } 3560 alloc_size = le64_to_cpu(az_req->AllocationSize); 3561 ksmbd_debug(SMB, 3562 "request smb2 create allocate size : %llu\n", 3563 alloc_size); 3564 smb_break_all_levII_oplock(work, fp, 1); 3565 err = vfs_fallocate(fp->filp, FALLOC_FL_KEEP_SIZE, 0, 3566 alloc_size); 3567 if (err < 0) 3568 ksmbd_debug(SMB, 3569 "vfs_fallocate is failed : %d\n", 3570 err); 3571 } 3572 3573 context = smb2_find_context_vals(req, SMB2_CREATE_QUERY_ON_DISK_ID, 4); 3574 if (IS_ERR(context)) { 3575 rc = PTR_ERR(context); 3576 goto err_out1; 3577 } else if (context) { 3578 ksmbd_debug(SMB, "get query on disk id context\n"); 3579 query_disk_id = 1; 3580 } 3581 3582 if (conn->is_aapl == false) { 3583 context = smb2_find_context_vals(req, SMB2_CREATE_AAPL, 4); 3584 if (IS_ERR(context)) { 3585 rc = PTR_ERR(context); 3586 goto err_out1; 3587 } else if (context) 3588 conn->is_aapl = true; 3589 } 3590 } 3591 3592 rc = ksmbd_vfs_getattr(&path, &stat); 3593 if (rc) 3594 goto err_out1; 3595 3596 if (stat.result_mask & STATX_BTIME) 3597 fp->create_time = ksmbd_UnixTimeToNT(stat.btime); 3598 else 3599 fp->create_time = ksmbd_UnixTimeToNT(stat.ctime); 3600 if (req->FileAttributes || fp->f_ci->m_fattr == 0) 3601 fp->f_ci->m_fattr = 3602 cpu_to_le32(smb2_get_dos_mode(&stat, le32_to_cpu(req->FileAttributes))); 3603 3604 if (!created) 3605 smb2_update_xattrs(tcon, &path, fp); 3606 else 3607 smb2_new_xattrs(tcon, &path, fp); 3608 3609 memcpy(fp->client_guid, conn->ClientGUID, SMB2_CLIENT_GUID_SIZE); 3610 3611 if (dh_info.type == DURABLE_REQ_V2 || dh_info.type == DURABLE_REQ) { 3612 if (dh_info.type == DURABLE_REQ_V2 && dh_info.persistent && 3613 test_share_config_flag(work->tcon->share_conf, 3614 KSMBD_SHARE_FLAG_CONTINUOUS_AVAILABILITY)) 3615 fp->is_persistent = true; 3616 else 3617 fp->is_durable = true; 3618 3619 if (dh_info.type == DURABLE_REQ_V2) { 3620 memcpy(fp->create_guid, dh_info.CreateGuid, 3621 SMB2_CREATE_GUID_SIZE); 3622 if (dh_info.timeout) 3623 fp->durable_timeout = 3624 min_t(unsigned int, dh_info.timeout, 3625 DURABLE_HANDLE_MAX_TIMEOUT); 3626 else 3627 fp->durable_timeout = 60; 3628 } 3629 } 3630 3631 reconnected_fp: 3632 rsp->StructureSize = cpu_to_le16(89); 3633 opinfo = opinfo_get(fp); 3634 rsp->OplockLevel = opinfo != NULL ? opinfo->level : 0; 3635 rsp->Flags = 0; 3636 rsp->CreateAction = cpu_to_le32(file_info); 3637 rsp->CreationTime = cpu_to_le64(fp->create_time); 3638 time = ksmbd_UnixTimeToNT(stat.atime); 3639 rsp->LastAccessTime = cpu_to_le64(time); 3640 time = ksmbd_UnixTimeToNT(stat.mtime); 3641 rsp->LastWriteTime = cpu_to_le64(time); 3642 time = ksmbd_UnixTimeToNT(stat.ctime); 3643 rsp->ChangeTime = cpu_to_le64(time); 3644 rsp->AllocationSize = S_ISDIR(stat.mode) ? 0 : 3645 cpu_to_le64(stat.blocks << 9); 3646 rsp->EndofFile = S_ISDIR(stat.mode) ? 0 : cpu_to_le64(stat.size); 3647 rsp->FileAttributes = fp->f_ci->m_fattr; 3648 3649 rsp->Reserved2 = 0; 3650 3651 rsp->PersistentFileId = fp->persistent_id; 3652 rsp->VolatileFileId = fp->volatile_id; 3653 3654 rsp->CreateContextsOffset = 0; 3655 rsp->CreateContextsLength = 0; 3656 iov_len = offsetof(struct smb2_create_rsp, Buffer); 3657 3658 /* If lease is request send lease context response */ 3659 if (opinfo && opinfo->is_lease) { 3660 struct create_context *lease_ccontext; 3661 3662 ksmbd_debug(SMB, "lease granted on(%s) lease state 0x%x\n", 3663 name, opinfo->o_lease->state); 3664 rsp->OplockLevel = SMB2_OPLOCK_LEVEL_LEASE; 3665 3666 lease_ccontext = (struct create_context *)rsp->Buffer; 3667 contxt_cnt++; 3668 create_lease_buf(rsp->Buffer, opinfo->o_lease); 3669 le32_add_cpu(&rsp->CreateContextsLength, 3670 conn->vals->create_lease_size); 3671 iov_len += conn->vals->create_lease_size; 3672 next_ptr = &lease_ccontext->Next; 3673 next_off = conn->vals->create_lease_size; 3674 } 3675 opinfo_put(opinfo); 3676 3677 if (maximal_access_ctxt) { 3678 struct create_context *mxac_ccontext; 3679 3680 if (maximal_access == 0) 3681 ksmbd_vfs_query_maximal_access(idmap, 3682 path.dentry, 3683 &maximal_access); 3684 mxac_ccontext = (struct create_context *)(rsp->Buffer + 3685 le32_to_cpu(rsp->CreateContextsLength)); 3686 contxt_cnt++; 3687 create_mxac_rsp_buf(rsp->Buffer + 3688 le32_to_cpu(rsp->CreateContextsLength), 3689 le32_to_cpu(maximal_access)); 3690 le32_add_cpu(&rsp->CreateContextsLength, 3691 conn->vals->create_mxac_size); 3692 iov_len += conn->vals->create_mxac_size; 3693 if (next_ptr) 3694 *next_ptr = cpu_to_le32(next_off); 3695 next_ptr = &mxac_ccontext->Next; 3696 next_off = conn->vals->create_mxac_size; 3697 } 3698 3699 if (query_disk_id) { 3700 struct create_context *disk_id_ccontext; 3701 3702 disk_id_ccontext = (struct create_context *)(rsp->Buffer + 3703 le32_to_cpu(rsp->CreateContextsLength)); 3704 contxt_cnt++; 3705 create_disk_id_rsp_buf(rsp->Buffer + 3706 le32_to_cpu(rsp->CreateContextsLength), 3707 stat.ino, tcon->id); 3708 le32_add_cpu(&rsp->CreateContextsLength, 3709 conn->vals->create_disk_id_size); 3710 iov_len += conn->vals->create_disk_id_size; 3711 if (next_ptr) 3712 *next_ptr = cpu_to_le32(next_off); 3713 next_ptr = &disk_id_ccontext->Next; 3714 next_off = conn->vals->create_disk_id_size; 3715 } 3716 3717 if (dh_info.type == DURABLE_REQ || dh_info.type == DURABLE_REQ_V2) { 3718 struct create_context *durable_ccontext; 3719 3720 durable_ccontext = (struct create_context *)(rsp->Buffer + 3721 le32_to_cpu(rsp->CreateContextsLength)); 3722 contxt_cnt++; 3723 if (dh_info.type == DURABLE_REQ) { 3724 create_durable_rsp_buf(rsp->Buffer + 3725 le32_to_cpu(rsp->CreateContextsLength)); 3726 le32_add_cpu(&rsp->CreateContextsLength, 3727 conn->vals->create_durable_size); 3728 iov_len += conn->vals->create_durable_size; 3729 } else { 3730 create_durable_v2_rsp_buf(rsp->Buffer + 3731 le32_to_cpu(rsp->CreateContextsLength), 3732 fp); 3733 le32_add_cpu(&rsp->CreateContextsLength, 3734 conn->vals->create_durable_v2_size); 3735 iov_len += conn->vals->create_durable_v2_size; 3736 } 3737 3738 if (next_ptr) 3739 *next_ptr = cpu_to_le32(next_off); 3740 next_ptr = &durable_ccontext->Next; 3741 next_off = conn->vals->create_durable_size; 3742 } 3743 3744 if (posix_ctxt) { 3745 contxt_cnt++; 3746 create_posix_rsp_buf(rsp->Buffer + 3747 le32_to_cpu(rsp->CreateContextsLength), 3748 fp); 3749 le32_add_cpu(&rsp->CreateContextsLength, 3750 conn->vals->create_posix_size); 3751 iov_len += conn->vals->create_posix_size; 3752 if (next_ptr) 3753 *next_ptr = cpu_to_le32(next_off); 3754 } 3755 3756 if (contxt_cnt > 0) { 3757 rsp->CreateContextsOffset = 3758 cpu_to_le32(offsetof(struct smb2_create_rsp, Buffer)); 3759 } 3760 3761 err_out: 3762 if (rc && (file_present || created)) 3763 path_put(&path); 3764 3765 err_out1: 3766 ksmbd_revert_fsids(work); 3767 3768 err_out2: 3769 if (!rc) { 3770 ksmbd_update_fstate(&work->sess->file_table, fp, FP_INITED); 3771 rc = ksmbd_iov_pin_rsp(work, (void *)rsp, iov_len); 3772 } 3773 if (rc) { 3774 if (rc == -EINVAL) 3775 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 3776 else if (rc == -EOPNOTSUPP) 3777 rsp->hdr.Status = STATUS_NOT_SUPPORTED; 3778 else if (rc == -EACCES || rc == -ESTALE || rc == -EXDEV) 3779 rsp->hdr.Status = STATUS_ACCESS_DENIED; 3780 else if (rc == -ENOENT) 3781 rsp->hdr.Status = STATUS_OBJECT_NAME_INVALID; 3782 else if (rc == -EPERM) 3783 rsp->hdr.Status = STATUS_SHARING_VIOLATION; 3784 else if (rc == -EBUSY) 3785 rsp->hdr.Status = STATUS_DELETE_PENDING; 3786 else if (rc == -EBADF) 3787 rsp->hdr.Status = STATUS_OBJECT_NAME_NOT_FOUND; 3788 else if (rc == -ENOEXEC) 3789 rsp->hdr.Status = STATUS_DUPLICATE_OBJECTID; 3790 else if (rc == -ENXIO) 3791 rsp->hdr.Status = STATUS_NO_SUCH_DEVICE; 3792 else if (rc == -EEXIST) 3793 rsp->hdr.Status = STATUS_OBJECT_NAME_COLLISION; 3794 else if (rc == -EMFILE) 3795 rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES; 3796 if (!rsp->hdr.Status) 3797 rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR; 3798 3799 if (fp) 3800 ksmbd_fd_put(work, fp); 3801 smb2_set_err_rsp(work); 3802 ksmbd_debug(SMB, "Error response: %x\n", rsp->hdr.Status); 3803 } 3804 3805 if (dh_info.reconnected) 3806 ksmbd_put_durable_fd(dh_info.fp); 3807 3808 kfree(name); 3809 kfree(lc); 3810 3811 return rc; 3812 } 3813 3814 static int readdir_info_level_struct_sz(int info_level) 3815 { 3816 switch (info_level) { 3817 case FILE_FULL_DIRECTORY_INFORMATION: 3818 return sizeof(FILE_FULL_DIRECTORY_INFO); 3819 case FILE_BOTH_DIRECTORY_INFORMATION: 3820 return sizeof(FILE_BOTH_DIRECTORY_INFO); 3821 case FILE_DIRECTORY_INFORMATION: 3822 return sizeof(FILE_DIRECTORY_INFO); 3823 case FILE_NAMES_INFORMATION: 3824 return sizeof(struct file_names_info); 3825 case FILEID_FULL_DIRECTORY_INFORMATION: 3826 return sizeof(FILE_ID_FULL_DIR_INFO); 3827 case FILEID_BOTH_DIRECTORY_INFORMATION: 3828 return sizeof(struct file_id_both_directory_info); 3829 case SMB_FIND_FILE_POSIX_INFO: 3830 return sizeof(struct smb2_posix_info); 3831 default: 3832 return -EOPNOTSUPP; 3833 } 3834 } 3835 3836 static int dentry_name(struct ksmbd_dir_info *d_info, int info_level) 3837 { 3838 switch (info_level) { 3839 case FILE_FULL_DIRECTORY_INFORMATION: 3840 { 3841 FILE_FULL_DIRECTORY_INFO *ffdinfo; 3842 3843 ffdinfo = (FILE_FULL_DIRECTORY_INFO *)d_info->rptr; 3844 d_info->rptr += le32_to_cpu(ffdinfo->NextEntryOffset); 3845 d_info->name = ffdinfo->FileName; 3846 d_info->name_len = le32_to_cpu(ffdinfo->FileNameLength); 3847 return 0; 3848 } 3849 case FILE_BOTH_DIRECTORY_INFORMATION: 3850 { 3851 FILE_BOTH_DIRECTORY_INFO *fbdinfo; 3852 3853 fbdinfo = (FILE_BOTH_DIRECTORY_INFO *)d_info->rptr; 3854 d_info->rptr += le32_to_cpu(fbdinfo->NextEntryOffset); 3855 d_info->name = fbdinfo->FileName; 3856 d_info->name_len = le32_to_cpu(fbdinfo->FileNameLength); 3857 return 0; 3858 } 3859 case FILE_DIRECTORY_INFORMATION: 3860 { 3861 FILE_DIRECTORY_INFO *fdinfo; 3862 3863 fdinfo = (FILE_DIRECTORY_INFO *)d_info->rptr; 3864 d_info->rptr += le32_to_cpu(fdinfo->NextEntryOffset); 3865 d_info->name = fdinfo->FileName; 3866 d_info->name_len = le32_to_cpu(fdinfo->FileNameLength); 3867 return 0; 3868 } 3869 case FILE_NAMES_INFORMATION: 3870 { 3871 struct file_names_info *fninfo; 3872 3873 fninfo = (struct file_names_info *)d_info->rptr; 3874 d_info->rptr += le32_to_cpu(fninfo->NextEntryOffset); 3875 d_info->name = fninfo->FileName; 3876 d_info->name_len = le32_to_cpu(fninfo->FileNameLength); 3877 return 0; 3878 } 3879 case FILEID_FULL_DIRECTORY_INFORMATION: 3880 { 3881 FILE_ID_FULL_DIR_INFO *dinfo; 3882 3883 dinfo = (FILE_ID_FULL_DIR_INFO *)d_info->rptr; 3884 d_info->rptr += le32_to_cpu(dinfo->NextEntryOffset); 3885 d_info->name = dinfo->FileName; 3886 d_info->name_len = le32_to_cpu(dinfo->FileNameLength); 3887 return 0; 3888 } 3889 case FILEID_BOTH_DIRECTORY_INFORMATION: 3890 { 3891 struct file_id_both_directory_info *fibdinfo; 3892 3893 fibdinfo = (struct file_id_both_directory_info *)d_info->rptr; 3894 d_info->rptr += le32_to_cpu(fibdinfo->NextEntryOffset); 3895 d_info->name = fibdinfo->FileName; 3896 d_info->name_len = le32_to_cpu(fibdinfo->FileNameLength); 3897 return 0; 3898 } 3899 case SMB_FIND_FILE_POSIX_INFO: 3900 { 3901 struct smb2_posix_info *posix_info; 3902 3903 posix_info = (struct smb2_posix_info *)d_info->rptr; 3904 d_info->rptr += le32_to_cpu(posix_info->NextEntryOffset); 3905 d_info->name = posix_info->name; 3906 d_info->name_len = le32_to_cpu(posix_info->name_len); 3907 return 0; 3908 } 3909 default: 3910 return -EINVAL; 3911 } 3912 } 3913 3914 /** 3915 * smb2_populate_readdir_entry() - encode directory entry in smb2 response 3916 * buffer 3917 * @conn: connection instance 3918 * @info_level: smb information level 3919 * @d_info: structure included variables for query dir 3920 * @ksmbd_kstat: ksmbd wrapper of dirent stat information 3921 * 3922 * if directory has many entries, find first can't read it fully. 3923 * find next might be called multiple times to read remaining dir entries 3924 * 3925 * Return: 0 on success, otherwise error 3926 */ 3927 static int smb2_populate_readdir_entry(struct ksmbd_conn *conn, int info_level, 3928 struct ksmbd_dir_info *d_info, 3929 struct ksmbd_kstat *ksmbd_kstat) 3930 { 3931 int next_entry_offset = 0; 3932 char *conv_name; 3933 int conv_len; 3934 void *kstat; 3935 int struct_sz, rc = 0; 3936 3937 conv_name = ksmbd_convert_dir_info_name(d_info, 3938 conn->local_nls, 3939 &conv_len); 3940 if (!conv_name) 3941 return -ENOMEM; 3942 3943 /* Somehow the name has only terminating NULL bytes */ 3944 if (conv_len < 0) { 3945 rc = -EINVAL; 3946 goto free_conv_name; 3947 } 3948 3949 struct_sz = readdir_info_level_struct_sz(info_level); 3950 if (struct_sz == -EOPNOTSUPP) { 3951 rc = -EINVAL; 3952 goto free_conv_name; 3953 } 3954 3955 struct_sz += conv_len; 3956 next_entry_offset = ALIGN(struct_sz, KSMBD_DIR_INFO_ALIGNMENT); 3957 d_info->last_entry_off_align = next_entry_offset - struct_sz; 3958 3959 if (next_entry_offset > d_info->out_buf_len) { 3960 d_info->out_buf_len = 0; 3961 rc = -ENOSPC; 3962 goto free_conv_name; 3963 } 3964 3965 kstat = d_info->wptr; 3966 if (info_level != FILE_NAMES_INFORMATION) 3967 kstat = ksmbd_vfs_init_kstat(&d_info->wptr, ksmbd_kstat); 3968 3969 switch (info_level) { 3970 case FILE_FULL_DIRECTORY_INFORMATION: 3971 { 3972 FILE_FULL_DIRECTORY_INFO *ffdinfo; 3973 3974 ffdinfo = (FILE_FULL_DIRECTORY_INFO *)kstat; 3975 ffdinfo->FileNameLength = cpu_to_le32(conv_len); 3976 ffdinfo->EaSize = 3977 smb2_get_reparse_tag_special_file(ksmbd_kstat->kstat->mode); 3978 if (ffdinfo->EaSize) 3979 ffdinfo->ExtFileAttributes = FILE_ATTRIBUTE_REPARSE_POINT_LE; 3980 if (d_info->hide_dot_file && d_info->name[0] == '.') 3981 ffdinfo->ExtFileAttributes |= FILE_ATTRIBUTE_HIDDEN_LE; 3982 memcpy(ffdinfo->FileName, conv_name, conv_len); 3983 ffdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset); 3984 break; 3985 } 3986 case FILE_BOTH_DIRECTORY_INFORMATION: 3987 { 3988 FILE_BOTH_DIRECTORY_INFO *fbdinfo; 3989 3990 fbdinfo = (FILE_BOTH_DIRECTORY_INFO *)kstat; 3991 fbdinfo->FileNameLength = cpu_to_le32(conv_len); 3992 fbdinfo->EaSize = 3993 smb2_get_reparse_tag_special_file(ksmbd_kstat->kstat->mode); 3994 if (fbdinfo->EaSize) 3995 fbdinfo->ExtFileAttributes = FILE_ATTRIBUTE_REPARSE_POINT_LE; 3996 fbdinfo->ShortNameLength = 0; 3997 fbdinfo->Reserved = 0; 3998 if (d_info->hide_dot_file && d_info->name[0] == '.') 3999 fbdinfo->ExtFileAttributes |= FILE_ATTRIBUTE_HIDDEN_LE; 4000 memcpy(fbdinfo->FileName, conv_name, conv_len); 4001 fbdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset); 4002 break; 4003 } 4004 case FILE_DIRECTORY_INFORMATION: 4005 { 4006 FILE_DIRECTORY_INFO *fdinfo; 4007 4008 fdinfo = (FILE_DIRECTORY_INFO *)kstat; 4009 fdinfo->FileNameLength = cpu_to_le32(conv_len); 4010 if (d_info->hide_dot_file && d_info->name[0] == '.') 4011 fdinfo->ExtFileAttributes |= FILE_ATTRIBUTE_HIDDEN_LE; 4012 memcpy(fdinfo->FileName, conv_name, conv_len); 4013 fdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset); 4014 break; 4015 } 4016 case FILE_NAMES_INFORMATION: 4017 { 4018 struct file_names_info *fninfo; 4019 4020 fninfo = (struct file_names_info *)kstat; 4021 fninfo->FileNameLength = cpu_to_le32(conv_len); 4022 memcpy(fninfo->FileName, conv_name, conv_len); 4023 fninfo->NextEntryOffset = cpu_to_le32(next_entry_offset); 4024 break; 4025 } 4026 case FILEID_FULL_DIRECTORY_INFORMATION: 4027 { 4028 FILE_ID_FULL_DIR_INFO *dinfo; 4029 4030 dinfo = (FILE_ID_FULL_DIR_INFO *)kstat; 4031 dinfo->FileNameLength = cpu_to_le32(conv_len); 4032 dinfo->EaSize = 4033 smb2_get_reparse_tag_special_file(ksmbd_kstat->kstat->mode); 4034 if (dinfo->EaSize) 4035 dinfo->ExtFileAttributes = FILE_ATTRIBUTE_REPARSE_POINT_LE; 4036 dinfo->Reserved = 0; 4037 if (conn->is_aapl) 4038 dinfo->UniqueId = 0; 4039 else 4040 dinfo->UniqueId = cpu_to_le64(ksmbd_kstat->kstat->ino); 4041 if (d_info->hide_dot_file && d_info->name[0] == '.') 4042 dinfo->ExtFileAttributes |= FILE_ATTRIBUTE_HIDDEN_LE; 4043 memcpy(dinfo->FileName, conv_name, conv_len); 4044 dinfo->NextEntryOffset = cpu_to_le32(next_entry_offset); 4045 break; 4046 } 4047 case FILEID_BOTH_DIRECTORY_INFORMATION: 4048 { 4049 struct file_id_both_directory_info *fibdinfo; 4050 4051 fibdinfo = (struct file_id_both_directory_info *)kstat; 4052 fibdinfo->FileNameLength = cpu_to_le32(conv_len); 4053 fibdinfo->EaSize = 4054 smb2_get_reparse_tag_special_file(ksmbd_kstat->kstat->mode); 4055 if (fibdinfo->EaSize) 4056 fibdinfo->ExtFileAttributes = FILE_ATTRIBUTE_REPARSE_POINT_LE; 4057 if (conn->is_aapl) 4058 fibdinfo->UniqueId = 0; 4059 else 4060 fibdinfo->UniqueId = cpu_to_le64(ksmbd_kstat->kstat->ino); 4061 fibdinfo->ShortNameLength = 0; 4062 fibdinfo->Reserved = 0; 4063 fibdinfo->Reserved2 = cpu_to_le16(0); 4064 if (d_info->hide_dot_file && d_info->name[0] == '.') 4065 fibdinfo->ExtFileAttributes |= FILE_ATTRIBUTE_HIDDEN_LE; 4066 memcpy(fibdinfo->FileName, conv_name, conv_len); 4067 fibdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset); 4068 break; 4069 } 4070 case SMB_FIND_FILE_POSIX_INFO: 4071 { 4072 struct smb2_posix_info *posix_info; 4073 u64 time; 4074 4075 posix_info = (struct smb2_posix_info *)kstat; 4076 posix_info->Ignored = 0; 4077 posix_info->CreationTime = cpu_to_le64(ksmbd_kstat->create_time); 4078 time = ksmbd_UnixTimeToNT(ksmbd_kstat->kstat->ctime); 4079 posix_info->ChangeTime = cpu_to_le64(time); 4080 time = ksmbd_UnixTimeToNT(ksmbd_kstat->kstat->atime); 4081 posix_info->LastAccessTime = cpu_to_le64(time); 4082 time = ksmbd_UnixTimeToNT(ksmbd_kstat->kstat->mtime); 4083 posix_info->LastWriteTime = cpu_to_le64(time); 4084 posix_info->EndOfFile = cpu_to_le64(ksmbd_kstat->kstat->size); 4085 posix_info->AllocationSize = cpu_to_le64(ksmbd_kstat->kstat->blocks << 9); 4086 posix_info->DeviceId = cpu_to_le32(ksmbd_kstat->kstat->rdev); 4087 posix_info->HardLinks = cpu_to_le32(ksmbd_kstat->kstat->nlink); 4088 posix_info->Mode = cpu_to_le32(ksmbd_kstat->kstat->mode & 0777); 4089 switch (ksmbd_kstat->kstat->mode & S_IFMT) { 4090 case S_IFDIR: 4091 posix_info->Mode |= cpu_to_le32(POSIX_TYPE_DIR << POSIX_FILETYPE_SHIFT); 4092 break; 4093 case S_IFLNK: 4094 posix_info->Mode |= cpu_to_le32(POSIX_TYPE_SYMLINK << POSIX_FILETYPE_SHIFT); 4095 break; 4096 case S_IFCHR: 4097 posix_info->Mode |= cpu_to_le32(POSIX_TYPE_CHARDEV << POSIX_FILETYPE_SHIFT); 4098 break; 4099 case S_IFBLK: 4100 posix_info->Mode |= cpu_to_le32(POSIX_TYPE_BLKDEV << POSIX_FILETYPE_SHIFT); 4101 break; 4102 case S_IFIFO: 4103 posix_info->Mode |= cpu_to_le32(POSIX_TYPE_FIFO << POSIX_FILETYPE_SHIFT); 4104 break; 4105 case S_IFSOCK: 4106 posix_info->Mode |= cpu_to_le32(POSIX_TYPE_SOCKET << POSIX_FILETYPE_SHIFT); 4107 } 4108 4109 posix_info->Inode = cpu_to_le64(ksmbd_kstat->kstat->ino); 4110 posix_info->DosAttributes = 4111 S_ISDIR(ksmbd_kstat->kstat->mode) ? 4112 FILE_ATTRIBUTE_DIRECTORY_LE : FILE_ATTRIBUTE_ARCHIVE_LE; 4113 if (d_info->hide_dot_file && d_info->name[0] == '.') 4114 posix_info->DosAttributes |= FILE_ATTRIBUTE_HIDDEN_LE; 4115 /* 4116 * SidBuffer(32) contain two sids(Domain sid(16), UNIX group sid(16)). 4117 * UNIX sid(16) = revision(1) + num_subauth(1) + authority(6) + 4118 * sub_auth(4 * 1(num_subauth)) + RID(4). 4119 */ 4120 id_to_sid(from_kuid_munged(&init_user_ns, ksmbd_kstat->kstat->uid), 4121 SIDUNIX_USER, (struct smb_sid *)&posix_info->SidBuffer[0]); 4122 id_to_sid(from_kgid_munged(&init_user_ns, ksmbd_kstat->kstat->gid), 4123 SIDUNIX_GROUP, (struct smb_sid *)&posix_info->SidBuffer[16]); 4124 memcpy(posix_info->name, conv_name, conv_len); 4125 posix_info->name_len = cpu_to_le32(conv_len); 4126 posix_info->NextEntryOffset = cpu_to_le32(next_entry_offset); 4127 break; 4128 } 4129 4130 } /* switch (info_level) */ 4131 4132 d_info->last_entry_offset = d_info->data_count; 4133 d_info->data_count += next_entry_offset; 4134 d_info->out_buf_len -= next_entry_offset; 4135 d_info->wptr += next_entry_offset; 4136 4137 ksmbd_debug(SMB, 4138 "info_level : %d, buf_len :%d, next_offset : %d, data_count : %d\n", 4139 info_level, d_info->out_buf_len, 4140 next_entry_offset, d_info->data_count); 4141 4142 free_conv_name: 4143 kfree(conv_name); 4144 return rc; 4145 } 4146 4147 struct smb2_query_dir_private { 4148 struct ksmbd_work *work; 4149 char *search_pattern; 4150 struct ksmbd_file *dir_fp; 4151 4152 struct ksmbd_dir_info *d_info; 4153 int info_level; 4154 }; 4155 4156 static int process_query_dir_entries(struct smb2_query_dir_private *priv) 4157 { 4158 struct mnt_idmap *idmap = file_mnt_idmap(priv->dir_fp->filp); 4159 struct kstat kstat; 4160 struct ksmbd_kstat ksmbd_kstat; 4161 int rc; 4162 int i; 4163 4164 for (i = 0; i < priv->d_info->num_entry; i++) { 4165 struct dentry *dent; 4166 4167 if (dentry_name(priv->d_info, priv->info_level)) 4168 return -EINVAL; 4169 4170 dent = lookup_one_unlocked(idmap, 4171 &QSTR_LEN(priv->d_info->name, 4172 priv->d_info->name_len), 4173 priv->dir_fp->filp->f_path.dentry); 4174 4175 if (IS_ERR(dent)) { 4176 ksmbd_debug(SMB, "Cannot lookup `%s' [%ld]\n", 4177 priv->d_info->name, 4178 PTR_ERR(dent)); 4179 continue; 4180 } 4181 if (unlikely(d_is_negative(dent))) { 4182 dput(dent); 4183 ksmbd_debug(SMB, "Negative dentry `%s'\n", 4184 priv->d_info->name); 4185 continue; 4186 } 4187 4188 ksmbd_kstat.kstat = &kstat; 4189 if (priv->info_level != FILE_NAMES_INFORMATION) { 4190 rc = ksmbd_vfs_fill_dentry_attrs(priv->work, 4191 idmap, 4192 dent, 4193 &ksmbd_kstat); 4194 if (rc) { 4195 dput(dent); 4196 continue; 4197 } 4198 } 4199 4200 rc = smb2_populate_readdir_entry(priv->work->conn, 4201 priv->info_level, 4202 priv->d_info, 4203 &ksmbd_kstat); 4204 dput(dent); 4205 if (rc) 4206 return rc; 4207 } 4208 return 0; 4209 } 4210 4211 static int reserve_populate_dentry(struct ksmbd_dir_info *d_info, 4212 int info_level) 4213 { 4214 int struct_sz; 4215 int conv_len; 4216 int next_entry_offset; 4217 4218 struct_sz = readdir_info_level_struct_sz(info_level); 4219 if (struct_sz == -EOPNOTSUPP) 4220 return -EOPNOTSUPP; 4221 4222 conv_len = (d_info->name_len + 1) * 2; 4223 next_entry_offset = ALIGN(struct_sz + conv_len, 4224 KSMBD_DIR_INFO_ALIGNMENT); 4225 4226 if (next_entry_offset > d_info->out_buf_len) { 4227 d_info->out_buf_len = 0; 4228 return -ENOSPC; 4229 } 4230 4231 switch (info_level) { 4232 case FILE_FULL_DIRECTORY_INFORMATION: 4233 { 4234 FILE_FULL_DIRECTORY_INFO *ffdinfo; 4235 4236 ffdinfo = (FILE_FULL_DIRECTORY_INFO *)d_info->wptr; 4237 memcpy(ffdinfo->FileName, d_info->name, d_info->name_len); 4238 ffdinfo->FileName[d_info->name_len] = 0x00; 4239 ffdinfo->FileNameLength = cpu_to_le32(d_info->name_len); 4240 ffdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset); 4241 break; 4242 } 4243 case FILE_BOTH_DIRECTORY_INFORMATION: 4244 { 4245 FILE_BOTH_DIRECTORY_INFO *fbdinfo; 4246 4247 fbdinfo = (FILE_BOTH_DIRECTORY_INFO *)d_info->wptr; 4248 memcpy(fbdinfo->FileName, d_info->name, d_info->name_len); 4249 fbdinfo->FileName[d_info->name_len] = 0x00; 4250 fbdinfo->FileNameLength = cpu_to_le32(d_info->name_len); 4251 fbdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset); 4252 break; 4253 } 4254 case FILE_DIRECTORY_INFORMATION: 4255 { 4256 FILE_DIRECTORY_INFO *fdinfo; 4257 4258 fdinfo = (FILE_DIRECTORY_INFO *)d_info->wptr; 4259 memcpy(fdinfo->FileName, d_info->name, d_info->name_len); 4260 fdinfo->FileName[d_info->name_len] = 0x00; 4261 fdinfo->FileNameLength = cpu_to_le32(d_info->name_len); 4262 fdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset); 4263 break; 4264 } 4265 case FILE_NAMES_INFORMATION: 4266 { 4267 struct file_names_info *fninfo; 4268 4269 fninfo = (struct file_names_info *)d_info->wptr; 4270 memcpy(fninfo->FileName, d_info->name, d_info->name_len); 4271 fninfo->FileName[d_info->name_len] = 0x00; 4272 fninfo->FileNameLength = cpu_to_le32(d_info->name_len); 4273 fninfo->NextEntryOffset = cpu_to_le32(next_entry_offset); 4274 break; 4275 } 4276 case FILEID_FULL_DIRECTORY_INFORMATION: 4277 { 4278 FILE_ID_FULL_DIR_INFO *dinfo; 4279 4280 dinfo = (FILE_ID_FULL_DIR_INFO *)d_info->wptr; 4281 memcpy(dinfo->FileName, d_info->name, d_info->name_len); 4282 dinfo->FileName[d_info->name_len] = 0x00; 4283 dinfo->FileNameLength = cpu_to_le32(d_info->name_len); 4284 dinfo->NextEntryOffset = cpu_to_le32(next_entry_offset); 4285 break; 4286 } 4287 case FILEID_BOTH_DIRECTORY_INFORMATION: 4288 { 4289 struct file_id_both_directory_info *fibdinfo; 4290 4291 fibdinfo = (struct file_id_both_directory_info *)d_info->wptr; 4292 memcpy(fibdinfo->FileName, d_info->name, d_info->name_len); 4293 fibdinfo->FileName[d_info->name_len] = 0x00; 4294 fibdinfo->FileNameLength = cpu_to_le32(d_info->name_len); 4295 fibdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset); 4296 break; 4297 } 4298 case SMB_FIND_FILE_POSIX_INFO: 4299 { 4300 struct smb2_posix_info *posix_info; 4301 4302 posix_info = (struct smb2_posix_info *)d_info->wptr; 4303 memcpy(posix_info->name, d_info->name, d_info->name_len); 4304 posix_info->name[d_info->name_len] = 0x00; 4305 posix_info->name_len = cpu_to_le32(d_info->name_len); 4306 posix_info->NextEntryOffset = 4307 cpu_to_le32(next_entry_offset); 4308 break; 4309 } 4310 } /* switch (info_level) */ 4311 4312 d_info->num_entry++; 4313 d_info->out_buf_len -= next_entry_offset; 4314 d_info->wptr += next_entry_offset; 4315 return 0; 4316 } 4317 4318 static bool __query_dir(struct dir_context *ctx, const char *name, int namlen, 4319 loff_t offset, u64 ino, unsigned int d_type) 4320 { 4321 struct ksmbd_readdir_data *buf; 4322 struct smb2_query_dir_private *priv; 4323 struct ksmbd_dir_info *d_info; 4324 int rc; 4325 4326 buf = container_of(ctx, struct ksmbd_readdir_data, ctx); 4327 priv = buf->private; 4328 d_info = priv->d_info; 4329 4330 /* dot and dotdot entries are already reserved */ 4331 if (!strcmp(".", name) || !strcmp("..", name)) 4332 return true; 4333 d_info->num_scan++; 4334 if (ksmbd_share_veto_filename(priv->work->tcon->share_conf, name)) 4335 return true; 4336 if (!match_pattern(name, namlen, priv->search_pattern)) 4337 return true; 4338 4339 d_info->name = name; 4340 d_info->name_len = namlen; 4341 rc = reserve_populate_dentry(d_info, priv->info_level); 4342 if (rc) 4343 return false; 4344 if (d_info->flags & SMB2_RETURN_SINGLE_ENTRY) 4345 d_info->out_buf_len = 0; 4346 return true; 4347 } 4348 4349 static int verify_info_level(int info_level) 4350 { 4351 switch (info_level) { 4352 case FILE_FULL_DIRECTORY_INFORMATION: 4353 case FILE_BOTH_DIRECTORY_INFORMATION: 4354 case FILE_DIRECTORY_INFORMATION: 4355 case FILE_NAMES_INFORMATION: 4356 case FILEID_FULL_DIRECTORY_INFORMATION: 4357 case FILEID_BOTH_DIRECTORY_INFORMATION: 4358 case SMB_FIND_FILE_POSIX_INFO: 4359 break; 4360 default: 4361 return -EOPNOTSUPP; 4362 } 4363 4364 return 0; 4365 } 4366 4367 static int smb2_resp_buf_len(struct ksmbd_work *work, unsigned short hdr2_len) 4368 { 4369 int free_len; 4370 4371 free_len = (int)(work->response_sz - 4372 (get_rfc1002_len(work->response_buf) + 4)) - hdr2_len; 4373 return free_len; 4374 } 4375 4376 static int smb2_calc_max_out_buf_len(struct ksmbd_work *work, 4377 unsigned short hdr2_len, 4378 unsigned int out_buf_len) 4379 { 4380 int free_len; 4381 4382 if (out_buf_len > work->conn->vals->max_trans_size) 4383 return -EINVAL; 4384 4385 free_len = smb2_resp_buf_len(work, hdr2_len); 4386 if (free_len < 0) 4387 return -EINVAL; 4388 4389 return min_t(int, out_buf_len, free_len); 4390 } 4391 4392 int smb2_query_dir(struct ksmbd_work *work) 4393 { 4394 struct ksmbd_conn *conn = work->conn; 4395 struct smb2_query_directory_req *req; 4396 struct smb2_query_directory_rsp *rsp; 4397 struct ksmbd_share_config *share = work->tcon->share_conf; 4398 struct ksmbd_file *dir_fp = NULL; 4399 struct ksmbd_dir_info d_info; 4400 int rc = 0; 4401 char *srch_ptr = NULL; 4402 unsigned char srch_flag; 4403 int buffer_sz; 4404 struct smb2_query_dir_private query_dir_private = {NULL, }; 4405 4406 ksmbd_debug(SMB, "Received smb2 query directory request\n"); 4407 4408 WORK_BUFFERS(work, req, rsp); 4409 4410 if (ksmbd_override_fsids(work)) { 4411 rsp->hdr.Status = STATUS_NO_MEMORY; 4412 smb2_set_err_rsp(work); 4413 return -ENOMEM; 4414 } 4415 4416 rc = verify_info_level(req->FileInformationClass); 4417 if (rc) { 4418 rc = -EFAULT; 4419 goto err_out2; 4420 } 4421 4422 dir_fp = ksmbd_lookup_fd_slow(work, req->VolatileFileId, req->PersistentFileId); 4423 if (!dir_fp) { 4424 rc = -EBADF; 4425 goto err_out2; 4426 } 4427 4428 if (!(dir_fp->daccess & FILE_LIST_DIRECTORY_LE) || 4429 inode_permission(file_mnt_idmap(dir_fp->filp), 4430 file_inode(dir_fp->filp), 4431 MAY_READ | MAY_EXEC)) { 4432 pr_err("no right to enumerate directory (%pD)\n", dir_fp->filp); 4433 rc = -EACCES; 4434 goto err_out2; 4435 } 4436 4437 if (!S_ISDIR(file_inode(dir_fp->filp)->i_mode)) { 4438 pr_err("can't do query dir for a file\n"); 4439 rc = -EINVAL; 4440 goto err_out2; 4441 } 4442 4443 srch_flag = req->Flags; 4444 srch_ptr = smb_strndup_from_utf16((char *)req + le16_to_cpu(req->FileNameOffset), 4445 le16_to_cpu(req->FileNameLength), 1, 4446 conn->local_nls); 4447 if (IS_ERR(srch_ptr)) { 4448 ksmbd_debug(SMB, "Search Pattern not found\n"); 4449 rc = -EINVAL; 4450 goto err_out2; 4451 } else { 4452 ksmbd_debug(SMB, "Search pattern is %s\n", srch_ptr); 4453 } 4454 4455 if (srch_flag & SMB2_REOPEN || srch_flag & SMB2_RESTART_SCANS) { 4456 ksmbd_debug(SMB, "Restart directory scan\n"); 4457 generic_file_llseek(dir_fp->filp, 0, SEEK_SET); 4458 } 4459 4460 memset(&d_info, 0, sizeof(struct ksmbd_dir_info)); 4461 d_info.wptr = (char *)rsp->Buffer; 4462 d_info.rptr = (char *)rsp->Buffer; 4463 d_info.out_buf_len = 4464 smb2_calc_max_out_buf_len(work, 4465 offsetof(struct smb2_query_directory_rsp, Buffer), 4466 le32_to_cpu(req->OutputBufferLength)); 4467 if (d_info.out_buf_len < 0) { 4468 rc = -EINVAL; 4469 goto err_out; 4470 } 4471 d_info.flags = srch_flag; 4472 4473 /* 4474 * reserve dot and dotdot entries in head of buffer 4475 * in first response 4476 */ 4477 rc = ksmbd_populate_dot_dotdot_entries(work, req->FileInformationClass, 4478 dir_fp, &d_info, srch_ptr, 4479 smb2_populate_readdir_entry); 4480 if (rc == -ENOSPC) 4481 rc = 0; 4482 else if (rc) 4483 goto err_out; 4484 4485 if (test_share_config_flag(share, KSMBD_SHARE_FLAG_HIDE_DOT_FILES)) 4486 d_info.hide_dot_file = true; 4487 4488 buffer_sz = d_info.out_buf_len; 4489 d_info.rptr = d_info.wptr; 4490 query_dir_private.work = work; 4491 query_dir_private.search_pattern = srch_ptr; 4492 query_dir_private.dir_fp = dir_fp; 4493 query_dir_private.d_info = &d_info; 4494 query_dir_private.info_level = req->FileInformationClass; 4495 dir_fp->readdir_data.private = &query_dir_private; 4496 set_ctx_actor(&dir_fp->readdir_data.ctx, __query_dir); 4497 again: 4498 d_info.num_scan = 0; 4499 rc = iterate_dir(dir_fp->filp, &dir_fp->readdir_data.ctx); 4500 /* 4501 * num_entry can be 0 if the directory iteration stops before reaching 4502 * the end of the directory and no file is matched with the search 4503 * pattern. 4504 */ 4505 if (rc >= 0 && !d_info.num_entry && d_info.num_scan && 4506 d_info.out_buf_len > 0) 4507 goto again; 4508 /* 4509 * req->OutputBufferLength is too small to contain even one entry. 4510 * In this case, it immediately returns OutputBufferLength 0 to client. 4511 */ 4512 if (!d_info.out_buf_len && !d_info.num_entry) 4513 goto no_buf_len; 4514 if (rc > 0 || rc == -ENOSPC) 4515 rc = 0; 4516 else if (rc) 4517 goto err_out; 4518 4519 d_info.wptr = d_info.rptr; 4520 d_info.out_buf_len = buffer_sz; 4521 rc = process_query_dir_entries(&query_dir_private); 4522 if (rc) 4523 goto err_out; 4524 4525 if (!d_info.data_count && d_info.out_buf_len >= 0) { 4526 if (srch_flag & SMB2_RETURN_SINGLE_ENTRY && !is_asterisk(srch_ptr)) { 4527 rsp->hdr.Status = STATUS_NO_SUCH_FILE; 4528 } else { 4529 dir_fp->dot_dotdot[0] = dir_fp->dot_dotdot[1] = 0; 4530 rsp->hdr.Status = STATUS_NO_MORE_FILES; 4531 } 4532 rsp->StructureSize = cpu_to_le16(9); 4533 rsp->OutputBufferOffset = cpu_to_le16(0); 4534 rsp->OutputBufferLength = cpu_to_le32(0); 4535 rsp->Buffer[0] = 0; 4536 rc = ksmbd_iov_pin_rsp(work, (void *)rsp, 4537 offsetof(struct smb2_query_directory_rsp, Buffer) 4538 + 1); 4539 if (rc) 4540 goto err_out; 4541 } else { 4542 no_buf_len: 4543 ((FILE_DIRECTORY_INFO *) 4544 ((char *)rsp->Buffer + d_info.last_entry_offset)) 4545 ->NextEntryOffset = 0; 4546 if (d_info.data_count >= d_info.last_entry_off_align) 4547 d_info.data_count -= d_info.last_entry_off_align; 4548 4549 rsp->StructureSize = cpu_to_le16(9); 4550 rsp->OutputBufferOffset = cpu_to_le16(72); 4551 rsp->OutputBufferLength = cpu_to_le32(d_info.data_count); 4552 rc = ksmbd_iov_pin_rsp(work, (void *)rsp, 4553 offsetof(struct smb2_query_directory_rsp, Buffer) + 4554 d_info.data_count); 4555 if (rc) 4556 goto err_out; 4557 } 4558 4559 kfree(srch_ptr); 4560 ksmbd_fd_put(work, dir_fp); 4561 ksmbd_revert_fsids(work); 4562 return 0; 4563 4564 err_out: 4565 pr_err("error while processing smb2 query dir rc = %d\n", rc); 4566 kfree(srch_ptr); 4567 4568 err_out2: 4569 if (rc == -EINVAL) 4570 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 4571 else if (rc == -EACCES) 4572 rsp->hdr.Status = STATUS_ACCESS_DENIED; 4573 else if (rc == -ENOENT) 4574 rsp->hdr.Status = STATUS_NO_SUCH_FILE; 4575 else if (rc == -EBADF) 4576 rsp->hdr.Status = STATUS_FILE_CLOSED; 4577 else if (rc == -ENOMEM) 4578 rsp->hdr.Status = STATUS_NO_MEMORY; 4579 else if (rc == -EFAULT) 4580 rsp->hdr.Status = STATUS_INVALID_INFO_CLASS; 4581 else if (rc == -EIO) 4582 rsp->hdr.Status = STATUS_FILE_CORRUPT_ERROR; 4583 if (!rsp->hdr.Status) 4584 rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR; 4585 4586 smb2_set_err_rsp(work); 4587 ksmbd_fd_put(work, dir_fp); 4588 ksmbd_revert_fsids(work); 4589 return rc; 4590 } 4591 4592 /** 4593 * buffer_check_err() - helper function to check buffer errors 4594 * @reqOutputBufferLength: max buffer length expected in command response 4595 * @rsp: query info response buffer contains output buffer length 4596 * @rsp_org: base response buffer pointer in case of chained response 4597 * 4598 * Return: 0 on success, otherwise error 4599 */ 4600 static int buffer_check_err(int reqOutputBufferLength, 4601 struct smb2_query_info_rsp *rsp, 4602 void *rsp_org) 4603 { 4604 if (reqOutputBufferLength < le32_to_cpu(rsp->OutputBufferLength)) { 4605 pr_err("Invalid Buffer Size Requested\n"); 4606 rsp->hdr.Status = STATUS_INFO_LENGTH_MISMATCH; 4607 *(__be32 *)rsp_org = cpu_to_be32(sizeof(struct smb2_hdr)); 4608 return -EINVAL; 4609 } 4610 return 0; 4611 } 4612 4613 static void get_standard_info_pipe(struct smb2_query_info_rsp *rsp, 4614 void *rsp_org) 4615 { 4616 struct smb2_file_standard_info *sinfo; 4617 4618 sinfo = (struct smb2_file_standard_info *)rsp->Buffer; 4619 4620 sinfo->AllocationSize = cpu_to_le64(4096); 4621 sinfo->EndOfFile = cpu_to_le64(0); 4622 sinfo->NumberOfLinks = cpu_to_le32(1); 4623 sinfo->DeletePending = 1; 4624 sinfo->Directory = 0; 4625 rsp->OutputBufferLength = 4626 cpu_to_le32(sizeof(struct smb2_file_standard_info)); 4627 } 4628 4629 static void get_internal_info_pipe(struct smb2_query_info_rsp *rsp, u64 num, 4630 void *rsp_org) 4631 { 4632 struct smb2_file_internal_info *file_info; 4633 4634 file_info = (struct smb2_file_internal_info *)rsp->Buffer; 4635 4636 /* any unique number */ 4637 file_info->IndexNumber = cpu_to_le64(num | (1ULL << 63)); 4638 rsp->OutputBufferLength = 4639 cpu_to_le32(sizeof(struct smb2_file_internal_info)); 4640 } 4641 4642 static int smb2_get_info_file_pipe(struct ksmbd_session *sess, 4643 struct smb2_query_info_req *req, 4644 struct smb2_query_info_rsp *rsp, 4645 void *rsp_org) 4646 { 4647 u64 id; 4648 int rc; 4649 4650 /* 4651 * Windows can sometime send query file info request on 4652 * pipe without opening it, checking error condition here 4653 */ 4654 id = req->VolatileFileId; 4655 4656 lockdep_assert_not_held(&sess->rpc_lock); 4657 4658 down_read(&sess->rpc_lock); 4659 if (!ksmbd_session_rpc_method(sess, id)) { 4660 up_read(&sess->rpc_lock); 4661 return -ENOENT; 4662 } 4663 up_read(&sess->rpc_lock); 4664 4665 ksmbd_debug(SMB, "FileInfoClass %u, FileId 0x%llx\n", 4666 req->FileInfoClass, req->VolatileFileId); 4667 4668 switch (req->FileInfoClass) { 4669 case FILE_STANDARD_INFORMATION: 4670 get_standard_info_pipe(rsp, rsp_org); 4671 rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength), 4672 rsp, rsp_org); 4673 break; 4674 case FILE_INTERNAL_INFORMATION: 4675 get_internal_info_pipe(rsp, id, rsp_org); 4676 rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength), 4677 rsp, rsp_org); 4678 break; 4679 default: 4680 ksmbd_debug(SMB, "smb2_info_file_pipe for %u not supported\n", 4681 req->FileInfoClass); 4682 rc = -EOPNOTSUPP; 4683 } 4684 return rc; 4685 } 4686 4687 /** 4688 * smb2_get_ea() - handler for smb2 get extended attribute command 4689 * @work: smb work containing query info command buffer 4690 * @fp: ksmbd_file pointer 4691 * @req: get extended attribute request 4692 * @rsp: response buffer pointer 4693 * @rsp_org: base response buffer pointer in case of chained response 4694 * 4695 * Return: 0 on success, otherwise error 4696 */ 4697 static int smb2_get_ea(struct ksmbd_work *work, struct ksmbd_file *fp, 4698 struct smb2_query_info_req *req, 4699 struct smb2_query_info_rsp *rsp, void *rsp_org) 4700 { 4701 struct smb2_ea_info *eainfo, *prev_eainfo; 4702 char *name, *ptr, *xattr_list = NULL, *buf; 4703 int rc, name_len, value_len, xattr_list_len, idx; 4704 ssize_t buf_free_len, alignment_bytes, next_offset, rsp_data_cnt = 0; 4705 struct smb2_ea_info_req *ea_req = NULL; 4706 const struct path *path; 4707 struct mnt_idmap *idmap = file_mnt_idmap(fp->filp); 4708 4709 if (!(fp->daccess & FILE_READ_EA_LE)) { 4710 pr_err("Not permitted to read ext attr : 0x%x\n", 4711 fp->daccess); 4712 return -EACCES; 4713 } 4714 4715 path = &fp->filp->f_path; 4716 /* single EA entry is requested with given user.* name */ 4717 if (req->InputBufferLength) { 4718 if (le32_to_cpu(req->InputBufferLength) <= 4719 sizeof(struct smb2_ea_info_req)) 4720 return -EINVAL; 4721 4722 ea_req = (struct smb2_ea_info_req *)((char *)req + 4723 le16_to_cpu(req->InputBufferOffset)); 4724 4725 if (le32_to_cpu(req->InputBufferLength) < 4726 offsetof(struct smb2_ea_info_req, name) + 4727 ea_req->EaNameLength) 4728 return -EINVAL; 4729 } else { 4730 /* need to send all EAs, if no specific EA is requested*/ 4731 if (le32_to_cpu(req->Flags) & SL_RETURN_SINGLE_ENTRY) 4732 ksmbd_debug(SMB, 4733 "All EAs are requested but need to send single EA entry in rsp flags 0x%x\n", 4734 le32_to_cpu(req->Flags)); 4735 } 4736 4737 buf_free_len = 4738 smb2_calc_max_out_buf_len(work, 4739 offsetof(struct smb2_query_info_rsp, Buffer), 4740 le32_to_cpu(req->OutputBufferLength)); 4741 if (buf_free_len < 0) 4742 return -EINVAL; 4743 4744 rc = ksmbd_vfs_listxattr(path->dentry, &xattr_list); 4745 if (rc < 0) { 4746 rsp->hdr.Status = STATUS_INVALID_HANDLE; 4747 goto out; 4748 } else if (!rc) { /* there is no EA in the file */ 4749 ksmbd_debug(SMB, "no ea data in the file\n"); 4750 goto done; 4751 } 4752 xattr_list_len = rc; 4753 4754 ptr = (char *)rsp->Buffer; 4755 eainfo = (struct smb2_ea_info *)ptr; 4756 prev_eainfo = eainfo; 4757 idx = 0; 4758 4759 while (idx < xattr_list_len) { 4760 name = xattr_list + idx; 4761 name_len = strlen(name); 4762 4763 ksmbd_debug(SMB, "%s, len %d\n", name, name_len); 4764 idx += name_len + 1; 4765 4766 /* 4767 * CIFS does not support EA other than user.* namespace, 4768 * still keep the framework generic, to list other attrs 4769 * in future. 4770 */ 4771 if (strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)) 4772 continue; 4773 4774 if (!strncmp(&name[XATTR_USER_PREFIX_LEN], STREAM_PREFIX, 4775 STREAM_PREFIX_LEN)) 4776 continue; 4777 4778 if (req->InputBufferLength && 4779 strncmp(&name[XATTR_USER_PREFIX_LEN], ea_req->name, 4780 ea_req->EaNameLength)) 4781 continue; 4782 4783 if (!strncmp(&name[XATTR_USER_PREFIX_LEN], 4784 DOS_ATTRIBUTE_PREFIX, DOS_ATTRIBUTE_PREFIX_LEN)) 4785 continue; 4786 4787 if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)) 4788 name_len -= XATTR_USER_PREFIX_LEN; 4789 4790 ptr = eainfo->name + name_len + 1; 4791 buf_free_len -= (offsetof(struct smb2_ea_info, name) + 4792 name_len + 1); 4793 /* bailout if xattr can't fit in buf_free_len */ 4794 value_len = ksmbd_vfs_getxattr(idmap, path->dentry, 4795 name, &buf); 4796 if (value_len <= 0) { 4797 rc = -ENOENT; 4798 rsp->hdr.Status = STATUS_INVALID_HANDLE; 4799 goto out; 4800 } 4801 4802 buf_free_len -= value_len; 4803 if (buf_free_len < 0) { 4804 kfree(buf); 4805 break; 4806 } 4807 4808 memcpy(ptr, buf, value_len); 4809 kfree(buf); 4810 4811 ptr += value_len; 4812 eainfo->Flags = 0; 4813 eainfo->EaNameLength = name_len; 4814 4815 if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)) 4816 memcpy(eainfo->name, &name[XATTR_USER_PREFIX_LEN], 4817 name_len); 4818 else 4819 memcpy(eainfo->name, name, name_len); 4820 4821 eainfo->name[name_len] = '\0'; 4822 eainfo->EaValueLength = cpu_to_le16(value_len); 4823 next_offset = offsetof(struct smb2_ea_info, name) + 4824 name_len + 1 + value_len; 4825 4826 /* align next xattr entry at 4 byte bundary */ 4827 alignment_bytes = ((next_offset + 3) & ~3) - next_offset; 4828 if (alignment_bytes) { 4829 if (buf_free_len < alignment_bytes) 4830 break; 4831 memset(ptr, '\0', alignment_bytes); 4832 ptr += alignment_bytes; 4833 next_offset += alignment_bytes; 4834 buf_free_len -= alignment_bytes; 4835 } 4836 eainfo->NextEntryOffset = cpu_to_le32(next_offset); 4837 prev_eainfo = eainfo; 4838 eainfo = (struct smb2_ea_info *)ptr; 4839 rsp_data_cnt += next_offset; 4840 4841 if (req->InputBufferLength) { 4842 ksmbd_debug(SMB, "single entry requested\n"); 4843 break; 4844 } 4845 } 4846 4847 /* no more ea entries */ 4848 prev_eainfo->NextEntryOffset = 0; 4849 done: 4850 rc = 0; 4851 if (rsp_data_cnt == 0) 4852 rsp->hdr.Status = STATUS_NO_EAS_ON_FILE; 4853 rsp->OutputBufferLength = cpu_to_le32(rsp_data_cnt); 4854 out: 4855 kvfree(xattr_list); 4856 return rc; 4857 } 4858 4859 static void get_file_access_info(struct smb2_query_info_rsp *rsp, 4860 struct ksmbd_file *fp, void *rsp_org) 4861 { 4862 struct smb2_file_access_info *file_info; 4863 4864 file_info = (struct smb2_file_access_info *)rsp->Buffer; 4865 file_info->AccessFlags = fp->daccess; 4866 rsp->OutputBufferLength = 4867 cpu_to_le32(sizeof(struct smb2_file_access_info)); 4868 } 4869 4870 static int get_file_basic_info(struct smb2_query_info_rsp *rsp, 4871 struct ksmbd_file *fp, void *rsp_org) 4872 { 4873 struct file_basic_info *basic_info; 4874 struct kstat stat; 4875 u64 time; 4876 int ret; 4877 4878 if (!(fp->daccess & FILE_READ_ATTRIBUTES_LE)) { 4879 pr_err("no right to read the attributes : 0x%x\n", 4880 fp->daccess); 4881 return -EACCES; 4882 } 4883 4884 ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS, 4885 AT_STATX_SYNC_AS_STAT); 4886 if (ret) 4887 return ret; 4888 4889 basic_info = (struct file_basic_info *)rsp->Buffer; 4890 basic_info->CreationTime = cpu_to_le64(fp->create_time); 4891 time = ksmbd_UnixTimeToNT(stat.atime); 4892 basic_info->LastAccessTime = cpu_to_le64(time); 4893 time = ksmbd_UnixTimeToNT(stat.mtime); 4894 basic_info->LastWriteTime = cpu_to_le64(time); 4895 time = ksmbd_UnixTimeToNT(stat.ctime); 4896 basic_info->ChangeTime = cpu_to_le64(time); 4897 basic_info->Attributes = fp->f_ci->m_fattr; 4898 basic_info->Pad = 0; 4899 rsp->OutputBufferLength = 4900 cpu_to_le32(sizeof(struct file_basic_info)); 4901 return 0; 4902 } 4903 4904 static int get_file_standard_info(struct smb2_query_info_rsp *rsp, 4905 struct ksmbd_file *fp, void *rsp_org) 4906 { 4907 struct smb2_file_standard_info *sinfo; 4908 unsigned int delete_pending; 4909 struct kstat stat; 4910 int ret; 4911 4912 ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS, 4913 AT_STATX_SYNC_AS_STAT); 4914 if (ret) 4915 return ret; 4916 4917 sinfo = (struct smb2_file_standard_info *)rsp->Buffer; 4918 delete_pending = ksmbd_inode_pending_delete(fp); 4919 4920 if (ksmbd_stream_fd(fp) == false) { 4921 sinfo->AllocationSize = cpu_to_le64(stat.blocks << 9); 4922 sinfo->EndOfFile = S_ISDIR(stat.mode) ? 0 : cpu_to_le64(stat.size); 4923 } else { 4924 sinfo->AllocationSize = cpu_to_le64(fp->stream.size); 4925 sinfo->EndOfFile = cpu_to_le64(fp->stream.size); 4926 } 4927 sinfo->NumberOfLinks = cpu_to_le32(get_nlink(&stat) - delete_pending); 4928 sinfo->DeletePending = delete_pending; 4929 sinfo->Directory = S_ISDIR(stat.mode) ? 1 : 0; 4930 rsp->OutputBufferLength = 4931 cpu_to_le32(sizeof(struct smb2_file_standard_info)); 4932 4933 return 0; 4934 } 4935 4936 static void get_file_alignment_info(struct smb2_query_info_rsp *rsp, 4937 void *rsp_org) 4938 { 4939 struct smb2_file_alignment_info *file_info; 4940 4941 file_info = (struct smb2_file_alignment_info *)rsp->Buffer; 4942 file_info->AlignmentRequirement = 0; 4943 rsp->OutputBufferLength = 4944 cpu_to_le32(sizeof(struct smb2_file_alignment_info)); 4945 } 4946 4947 static int get_file_all_info(struct ksmbd_work *work, 4948 struct smb2_query_info_rsp *rsp, 4949 struct ksmbd_file *fp, 4950 void *rsp_org) 4951 { 4952 struct ksmbd_conn *conn = work->conn; 4953 struct smb2_file_all_info *file_info; 4954 unsigned int delete_pending; 4955 struct kstat stat; 4956 int conv_len; 4957 char *filename; 4958 u64 time; 4959 int ret, buf_free_len, filename_len; 4960 struct smb2_query_info_req *req = ksmbd_req_buf_next(work); 4961 4962 if (!(fp->daccess & FILE_READ_ATTRIBUTES_LE)) { 4963 ksmbd_debug(SMB, "no right to read the attributes : 0x%x\n", 4964 fp->daccess); 4965 return -EACCES; 4966 } 4967 4968 filename = convert_to_nt_pathname(work->tcon->share_conf, &fp->filp->f_path); 4969 if (IS_ERR(filename)) 4970 return PTR_ERR(filename); 4971 4972 filename_len = strlen(filename); 4973 buf_free_len = smb2_calc_max_out_buf_len(work, 4974 offsetof(struct smb2_query_info_rsp, Buffer) + 4975 offsetof(struct smb2_file_all_info, FileName), 4976 le32_to_cpu(req->OutputBufferLength)); 4977 if (buf_free_len < (filename_len + 1) * 2) { 4978 kfree(filename); 4979 return -EINVAL; 4980 } 4981 4982 ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS, 4983 AT_STATX_SYNC_AS_STAT); 4984 if (ret) { 4985 kfree(filename); 4986 return ret; 4987 } 4988 4989 ksmbd_debug(SMB, "filename = %s\n", filename); 4990 delete_pending = ksmbd_inode_pending_delete(fp); 4991 file_info = (struct smb2_file_all_info *)rsp->Buffer; 4992 4993 file_info->CreationTime = cpu_to_le64(fp->create_time); 4994 time = ksmbd_UnixTimeToNT(stat.atime); 4995 file_info->LastAccessTime = cpu_to_le64(time); 4996 time = ksmbd_UnixTimeToNT(stat.mtime); 4997 file_info->LastWriteTime = cpu_to_le64(time); 4998 time = ksmbd_UnixTimeToNT(stat.ctime); 4999 file_info->ChangeTime = cpu_to_le64(time); 5000 file_info->Attributes = fp->f_ci->m_fattr; 5001 file_info->Pad1 = 0; 5002 if (ksmbd_stream_fd(fp) == false) { 5003 file_info->AllocationSize = 5004 cpu_to_le64(stat.blocks << 9); 5005 file_info->EndOfFile = S_ISDIR(stat.mode) ? 0 : cpu_to_le64(stat.size); 5006 } else { 5007 file_info->AllocationSize = cpu_to_le64(fp->stream.size); 5008 file_info->EndOfFile = cpu_to_le64(fp->stream.size); 5009 } 5010 file_info->NumberOfLinks = 5011 cpu_to_le32(get_nlink(&stat) - delete_pending); 5012 file_info->DeletePending = delete_pending; 5013 file_info->Directory = S_ISDIR(stat.mode) ? 1 : 0; 5014 file_info->Pad2 = 0; 5015 file_info->IndexNumber = cpu_to_le64(stat.ino); 5016 file_info->EASize = 0; 5017 file_info->AccessFlags = fp->daccess; 5018 if (ksmbd_stream_fd(fp) == false) 5019 file_info->CurrentByteOffset = cpu_to_le64(fp->filp->f_pos); 5020 else 5021 file_info->CurrentByteOffset = cpu_to_le64(fp->stream.pos); 5022 file_info->Mode = fp->coption; 5023 file_info->AlignmentRequirement = 0; 5024 conv_len = smbConvertToUTF16((__le16 *)file_info->FileName, filename, 5025 min(filename_len, PATH_MAX), 5026 conn->local_nls, 0); 5027 conv_len *= 2; 5028 file_info->FileNameLength = cpu_to_le32(conv_len); 5029 rsp->OutputBufferLength = 5030 cpu_to_le32(sizeof(struct smb2_file_all_info) + conv_len - 1); 5031 kfree(filename); 5032 return 0; 5033 } 5034 5035 static void get_file_alternate_info(struct ksmbd_work *work, 5036 struct smb2_query_info_rsp *rsp, 5037 struct ksmbd_file *fp, 5038 void *rsp_org) 5039 { 5040 struct ksmbd_conn *conn = work->conn; 5041 struct smb2_file_alt_name_info *file_info; 5042 struct dentry *dentry = fp->filp->f_path.dentry; 5043 int conv_len; 5044 5045 spin_lock(&dentry->d_lock); 5046 file_info = (struct smb2_file_alt_name_info *)rsp->Buffer; 5047 conv_len = ksmbd_extract_shortname(conn, 5048 dentry->d_name.name, 5049 file_info->FileName); 5050 spin_unlock(&dentry->d_lock); 5051 file_info->FileNameLength = cpu_to_le32(conv_len); 5052 rsp->OutputBufferLength = 5053 cpu_to_le32(struct_size(file_info, FileName, conv_len)); 5054 } 5055 5056 static int get_file_stream_info(struct ksmbd_work *work, 5057 struct smb2_query_info_rsp *rsp, 5058 struct ksmbd_file *fp, 5059 void *rsp_org) 5060 { 5061 struct ksmbd_conn *conn = work->conn; 5062 struct smb2_file_stream_info *file_info; 5063 char *stream_name, *xattr_list = NULL, *stream_buf; 5064 struct kstat stat; 5065 const struct path *path = &fp->filp->f_path; 5066 ssize_t xattr_list_len; 5067 int nbytes = 0, streamlen, stream_name_len, next, idx = 0; 5068 int buf_free_len; 5069 struct smb2_query_info_req *req = ksmbd_req_buf_next(work); 5070 int ret; 5071 5072 ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS, 5073 AT_STATX_SYNC_AS_STAT); 5074 if (ret) 5075 return ret; 5076 5077 file_info = (struct smb2_file_stream_info *)rsp->Buffer; 5078 5079 buf_free_len = 5080 smb2_calc_max_out_buf_len(work, 5081 offsetof(struct smb2_query_info_rsp, Buffer), 5082 le32_to_cpu(req->OutputBufferLength)); 5083 if (buf_free_len < 0) 5084 goto out; 5085 5086 xattr_list_len = ksmbd_vfs_listxattr(path->dentry, &xattr_list); 5087 if (xattr_list_len < 0) { 5088 goto out; 5089 } else if (!xattr_list_len) { 5090 ksmbd_debug(SMB, "empty xattr in the file\n"); 5091 goto out; 5092 } 5093 5094 while (idx < xattr_list_len) { 5095 stream_name = xattr_list + idx; 5096 streamlen = strlen(stream_name); 5097 idx += streamlen + 1; 5098 5099 ksmbd_debug(SMB, "%s, len %d\n", stream_name, streamlen); 5100 5101 if (strncmp(&stream_name[XATTR_USER_PREFIX_LEN], 5102 STREAM_PREFIX, STREAM_PREFIX_LEN)) 5103 continue; 5104 5105 stream_name_len = streamlen - (XATTR_USER_PREFIX_LEN + 5106 STREAM_PREFIX_LEN); 5107 streamlen = stream_name_len; 5108 5109 /* plus : size */ 5110 streamlen += 1; 5111 stream_buf = kmalloc(streamlen + 1, KSMBD_DEFAULT_GFP); 5112 if (!stream_buf) 5113 break; 5114 5115 streamlen = snprintf(stream_buf, streamlen + 1, 5116 ":%s", &stream_name[XATTR_NAME_STREAM_LEN]); 5117 5118 next = sizeof(struct smb2_file_stream_info) + streamlen * 2; 5119 if (next > buf_free_len) { 5120 kfree(stream_buf); 5121 break; 5122 } 5123 5124 file_info = (struct smb2_file_stream_info *)&rsp->Buffer[nbytes]; 5125 streamlen = smbConvertToUTF16((__le16 *)file_info->StreamName, 5126 stream_buf, streamlen, 5127 conn->local_nls, 0); 5128 streamlen *= 2; 5129 kfree(stream_buf); 5130 file_info->StreamNameLength = cpu_to_le32(streamlen); 5131 file_info->StreamSize = cpu_to_le64(stream_name_len); 5132 file_info->StreamAllocationSize = cpu_to_le64(stream_name_len); 5133 5134 nbytes += next; 5135 buf_free_len -= next; 5136 file_info->NextEntryOffset = cpu_to_le32(next); 5137 } 5138 5139 out: 5140 if (!S_ISDIR(stat.mode) && 5141 buf_free_len >= sizeof(struct smb2_file_stream_info) + 7 * 2) { 5142 file_info = (struct smb2_file_stream_info *) 5143 &rsp->Buffer[nbytes]; 5144 streamlen = smbConvertToUTF16((__le16 *)file_info->StreamName, 5145 "::$DATA", 7, conn->local_nls, 0); 5146 streamlen *= 2; 5147 file_info->StreamNameLength = cpu_to_le32(streamlen); 5148 file_info->StreamSize = cpu_to_le64(stat.size); 5149 file_info->StreamAllocationSize = cpu_to_le64(stat.blocks << 9); 5150 nbytes += sizeof(struct smb2_file_stream_info) + streamlen; 5151 } 5152 5153 /* last entry offset should be 0 */ 5154 file_info->NextEntryOffset = 0; 5155 kvfree(xattr_list); 5156 5157 rsp->OutputBufferLength = cpu_to_le32(nbytes); 5158 5159 return 0; 5160 } 5161 5162 static int get_file_internal_info(struct smb2_query_info_rsp *rsp, 5163 struct ksmbd_file *fp, void *rsp_org) 5164 { 5165 struct smb2_file_internal_info *file_info; 5166 struct kstat stat; 5167 int ret; 5168 5169 ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS, 5170 AT_STATX_SYNC_AS_STAT); 5171 if (ret) 5172 return ret; 5173 5174 file_info = (struct smb2_file_internal_info *)rsp->Buffer; 5175 file_info->IndexNumber = cpu_to_le64(stat.ino); 5176 rsp->OutputBufferLength = 5177 cpu_to_le32(sizeof(struct smb2_file_internal_info)); 5178 5179 return 0; 5180 } 5181 5182 static int get_file_network_open_info(struct smb2_query_info_rsp *rsp, 5183 struct ksmbd_file *fp, void *rsp_org) 5184 { 5185 struct smb2_file_network_open_info *file_info; 5186 struct kstat stat; 5187 u64 time; 5188 int ret; 5189 5190 if (!(fp->daccess & FILE_READ_ATTRIBUTES_LE)) { 5191 pr_err("no right to read the attributes : 0x%x\n", 5192 fp->daccess); 5193 return -EACCES; 5194 } 5195 5196 ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS, 5197 AT_STATX_SYNC_AS_STAT); 5198 if (ret) 5199 return ret; 5200 5201 file_info = (struct smb2_file_network_open_info *)rsp->Buffer; 5202 5203 file_info->CreationTime = cpu_to_le64(fp->create_time); 5204 time = ksmbd_UnixTimeToNT(stat.atime); 5205 file_info->LastAccessTime = cpu_to_le64(time); 5206 time = ksmbd_UnixTimeToNT(stat.mtime); 5207 file_info->LastWriteTime = cpu_to_le64(time); 5208 time = ksmbd_UnixTimeToNT(stat.ctime); 5209 file_info->ChangeTime = cpu_to_le64(time); 5210 file_info->Attributes = fp->f_ci->m_fattr; 5211 if (ksmbd_stream_fd(fp) == false) { 5212 file_info->AllocationSize = cpu_to_le64(stat.blocks << 9); 5213 file_info->EndOfFile = S_ISDIR(stat.mode) ? 0 : cpu_to_le64(stat.size); 5214 } else { 5215 file_info->AllocationSize = cpu_to_le64(fp->stream.size); 5216 file_info->EndOfFile = cpu_to_le64(fp->stream.size); 5217 } 5218 file_info->Reserved = cpu_to_le32(0); 5219 rsp->OutputBufferLength = 5220 cpu_to_le32(sizeof(struct smb2_file_network_open_info)); 5221 return 0; 5222 } 5223 5224 static void get_file_ea_info(struct smb2_query_info_rsp *rsp, void *rsp_org) 5225 { 5226 struct smb2_file_ea_info *file_info; 5227 5228 file_info = (struct smb2_file_ea_info *)rsp->Buffer; 5229 file_info->EASize = 0; 5230 rsp->OutputBufferLength = 5231 cpu_to_le32(sizeof(struct smb2_file_ea_info)); 5232 } 5233 5234 static void get_file_position_info(struct smb2_query_info_rsp *rsp, 5235 struct ksmbd_file *fp, void *rsp_org) 5236 { 5237 struct smb2_file_pos_info *file_info; 5238 5239 file_info = (struct smb2_file_pos_info *)rsp->Buffer; 5240 if (ksmbd_stream_fd(fp) == false) 5241 file_info->CurrentByteOffset = cpu_to_le64(fp->filp->f_pos); 5242 else 5243 file_info->CurrentByteOffset = cpu_to_le64(fp->stream.pos); 5244 5245 rsp->OutputBufferLength = 5246 cpu_to_le32(sizeof(struct smb2_file_pos_info)); 5247 } 5248 5249 static void get_file_mode_info(struct smb2_query_info_rsp *rsp, 5250 struct ksmbd_file *fp, void *rsp_org) 5251 { 5252 struct smb2_file_mode_info *file_info; 5253 5254 file_info = (struct smb2_file_mode_info *)rsp->Buffer; 5255 file_info->Mode = fp->coption & FILE_MODE_INFO_MASK; 5256 rsp->OutputBufferLength = 5257 cpu_to_le32(sizeof(struct smb2_file_mode_info)); 5258 } 5259 5260 static int get_file_compression_info(struct smb2_query_info_rsp *rsp, 5261 struct ksmbd_file *fp, void *rsp_org) 5262 { 5263 struct smb2_file_comp_info *file_info; 5264 struct kstat stat; 5265 int ret; 5266 5267 ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS, 5268 AT_STATX_SYNC_AS_STAT); 5269 if (ret) 5270 return ret; 5271 5272 file_info = (struct smb2_file_comp_info *)rsp->Buffer; 5273 file_info->CompressedFileSize = cpu_to_le64(stat.blocks << 9); 5274 file_info->CompressionFormat = COMPRESSION_FORMAT_NONE; 5275 file_info->CompressionUnitShift = 0; 5276 file_info->ChunkShift = 0; 5277 file_info->ClusterShift = 0; 5278 memset(&file_info->Reserved[0], 0, 3); 5279 5280 rsp->OutputBufferLength = 5281 cpu_to_le32(sizeof(struct smb2_file_comp_info)); 5282 5283 return 0; 5284 } 5285 5286 static int get_file_attribute_tag_info(struct smb2_query_info_rsp *rsp, 5287 struct ksmbd_file *fp, void *rsp_org) 5288 { 5289 struct smb2_file_attr_tag_info *file_info; 5290 5291 if (!(fp->daccess & FILE_READ_ATTRIBUTES_LE)) { 5292 pr_err("no right to read the attributes : 0x%x\n", 5293 fp->daccess); 5294 return -EACCES; 5295 } 5296 5297 file_info = (struct smb2_file_attr_tag_info *)rsp->Buffer; 5298 file_info->FileAttributes = fp->f_ci->m_fattr; 5299 file_info->ReparseTag = 0; 5300 rsp->OutputBufferLength = 5301 cpu_to_le32(sizeof(struct smb2_file_attr_tag_info)); 5302 return 0; 5303 } 5304 5305 static int find_file_posix_info(struct smb2_query_info_rsp *rsp, 5306 struct ksmbd_file *fp, void *rsp_org) 5307 { 5308 struct smb311_posix_qinfo *file_info; 5309 struct inode *inode = file_inode(fp->filp); 5310 struct mnt_idmap *idmap = file_mnt_idmap(fp->filp); 5311 vfsuid_t vfsuid = i_uid_into_vfsuid(idmap, inode); 5312 vfsgid_t vfsgid = i_gid_into_vfsgid(idmap, inode); 5313 struct kstat stat; 5314 u64 time; 5315 int out_buf_len = sizeof(struct smb311_posix_qinfo) + 32; 5316 int ret; 5317 5318 ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS, 5319 AT_STATX_SYNC_AS_STAT); 5320 if (ret) 5321 return ret; 5322 5323 file_info = (struct smb311_posix_qinfo *)rsp->Buffer; 5324 file_info->CreationTime = cpu_to_le64(fp->create_time); 5325 time = ksmbd_UnixTimeToNT(stat.atime); 5326 file_info->LastAccessTime = cpu_to_le64(time); 5327 time = ksmbd_UnixTimeToNT(stat.mtime); 5328 file_info->LastWriteTime = cpu_to_le64(time); 5329 time = ksmbd_UnixTimeToNT(stat.ctime); 5330 file_info->ChangeTime = cpu_to_le64(time); 5331 file_info->DosAttributes = fp->f_ci->m_fattr; 5332 file_info->Inode = cpu_to_le64(stat.ino); 5333 if (ksmbd_stream_fd(fp) == false) { 5334 file_info->EndOfFile = cpu_to_le64(stat.size); 5335 file_info->AllocationSize = cpu_to_le64(stat.blocks << 9); 5336 } else { 5337 file_info->EndOfFile = cpu_to_le64(fp->stream.size); 5338 file_info->AllocationSize = cpu_to_le64(fp->stream.size); 5339 } 5340 file_info->HardLinks = cpu_to_le32(stat.nlink); 5341 file_info->Mode = cpu_to_le32(stat.mode & 0777); 5342 switch (stat.mode & S_IFMT) { 5343 case S_IFDIR: 5344 file_info->Mode |= cpu_to_le32(POSIX_TYPE_DIR << POSIX_FILETYPE_SHIFT); 5345 break; 5346 case S_IFLNK: 5347 file_info->Mode |= cpu_to_le32(POSIX_TYPE_SYMLINK << POSIX_FILETYPE_SHIFT); 5348 break; 5349 case S_IFCHR: 5350 file_info->Mode |= cpu_to_le32(POSIX_TYPE_CHARDEV << POSIX_FILETYPE_SHIFT); 5351 break; 5352 case S_IFBLK: 5353 file_info->Mode |= cpu_to_le32(POSIX_TYPE_BLKDEV << POSIX_FILETYPE_SHIFT); 5354 break; 5355 case S_IFIFO: 5356 file_info->Mode |= cpu_to_le32(POSIX_TYPE_FIFO << POSIX_FILETYPE_SHIFT); 5357 break; 5358 case S_IFSOCK: 5359 file_info->Mode |= cpu_to_le32(POSIX_TYPE_SOCKET << POSIX_FILETYPE_SHIFT); 5360 } 5361 5362 file_info->DeviceId = cpu_to_le32(stat.rdev); 5363 5364 /* 5365 * Sids(32) contain two sids(Domain sid(16), UNIX group sid(16)). 5366 * UNIX sid(16) = revision(1) + num_subauth(1) + authority(6) + 5367 * sub_auth(4 * 1(num_subauth)) + RID(4). 5368 */ 5369 id_to_sid(from_kuid_munged(&init_user_ns, vfsuid_into_kuid(vfsuid)), 5370 SIDUNIX_USER, (struct smb_sid *)&file_info->Sids[0]); 5371 id_to_sid(from_kgid_munged(&init_user_ns, vfsgid_into_kgid(vfsgid)), 5372 SIDUNIX_GROUP, (struct smb_sid *)&file_info->Sids[16]); 5373 5374 rsp->OutputBufferLength = cpu_to_le32(out_buf_len); 5375 5376 return 0; 5377 } 5378 5379 static int smb2_get_info_file(struct ksmbd_work *work, 5380 struct smb2_query_info_req *req, 5381 struct smb2_query_info_rsp *rsp) 5382 { 5383 struct ksmbd_file *fp; 5384 int fileinfoclass = 0; 5385 int rc = 0; 5386 unsigned int id = KSMBD_NO_FID, pid = KSMBD_NO_FID; 5387 5388 if (test_share_config_flag(work->tcon->share_conf, 5389 KSMBD_SHARE_FLAG_PIPE)) { 5390 /* smb2 info file called for pipe */ 5391 rc = smb2_get_info_file_pipe(work->sess, req, rsp, 5392 work->response_buf); 5393 goto iov_pin_out; 5394 } 5395 5396 if (work->next_smb2_rcv_hdr_off) { 5397 if (!has_file_id(req->VolatileFileId)) { 5398 ksmbd_debug(SMB, "Compound request set FID = %llu\n", 5399 work->compound_fid); 5400 id = work->compound_fid; 5401 pid = work->compound_pfid; 5402 } 5403 } 5404 5405 if (!has_file_id(id)) { 5406 id = req->VolatileFileId; 5407 pid = req->PersistentFileId; 5408 } 5409 5410 fp = ksmbd_lookup_fd_slow(work, id, pid); 5411 if (!fp) 5412 return -ENOENT; 5413 5414 fileinfoclass = req->FileInfoClass; 5415 5416 switch (fileinfoclass) { 5417 case FILE_ACCESS_INFORMATION: 5418 get_file_access_info(rsp, fp, work->response_buf); 5419 break; 5420 5421 case FILE_BASIC_INFORMATION: 5422 rc = get_file_basic_info(rsp, fp, work->response_buf); 5423 break; 5424 5425 case FILE_STANDARD_INFORMATION: 5426 rc = get_file_standard_info(rsp, fp, work->response_buf); 5427 break; 5428 5429 case FILE_ALIGNMENT_INFORMATION: 5430 get_file_alignment_info(rsp, work->response_buf); 5431 break; 5432 5433 case FILE_ALL_INFORMATION: 5434 rc = get_file_all_info(work, rsp, fp, work->response_buf); 5435 break; 5436 5437 case FILE_ALTERNATE_NAME_INFORMATION: 5438 get_file_alternate_info(work, rsp, fp, work->response_buf); 5439 break; 5440 5441 case FILE_STREAM_INFORMATION: 5442 rc = get_file_stream_info(work, rsp, fp, work->response_buf); 5443 break; 5444 5445 case FILE_INTERNAL_INFORMATION: 5446 rc = get_file_internal_info(rsp, fp, work->response_buf); 5447 break; 5448 5449 case FILE_NETWORK_OPEN_INFORMATION: 5450 rc = get_file_network_open_info(rsp, fp, work->response_buf); 5451 break; 5452 5453 case FILE_EA_INFORMATION: 5454 get_file_ea_info(rsp, work->response_buf); 5455 break; 5456 5457 case FILE_FULL_EA_INFORMATION: 5458 rc = smb2_get_ea(work, fp, req, rsp, work->response_buf); 5459 break; 5460 5461 case FILE_POSITION_INFORMATION: 5462 get_file_position_info(rsp, fp, work->response_buf); 5463 break; 5464 5465 case FILE_MODE_INFORMATION: 5466 get_file_mode_info(rsp, fp, work->response_buf); 5467 break; 5468 5469 case FILE_COMPRESSION_INFORMATION: 5470 rc = get_file_compression_info(rsp, fp, work->response_buf); 5471 break; 5472 5473 case FILE_ATTRIBUTE_TAG_INFORMATION: 5474 rc = get_file_attribute_tag_info(rsp, fp, work->response_buf); 5475 break; 5476 case SMB_FIND_FILE_POSIX_INFO: 5477 if (!work->tcon->posix_extensions) { 5478 pr_err("client doesn't negotiate with SMB3.1.1 POSIX Extensions\n"); 5479 rc = -EOPNOTSUPP; 5480 } else { 5481 rc = find_file_posix_info(rsp, fp, work->response_buf); 5482 } 5483 break; 5484 default: 5485 ksmbd_debug(SMB, "fileinfoclass %d not supported yet\n", 5486 fileinfoclass); 5487 rc = -EOPNOTSUPP; 5488 } 5489 if (!rc) 5490 rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength), 5491 rsp, work->response_buf); 5492 ksmbd_fd_put(work, fp); 5493 5494 iov_pin_out: 5495 if (!rc) 5496 rc = ksmbd_iov_pin_rsp(work, (void *)rsp, 5497 offsetof(struct smb2_query_info_rsp, Buffer) + 5498 le32_to_cpu(rsp->OutputBufferLength)); 5499 return rc; 5500 } 5501 5502 static int smb2_get_info_filesystem(struct ksmbd_work *work, 5503 struct smb2_query_info_req *req, 5504 struct smb2_query_info_rsp *rsp) 5505 { 5506 struct ksmbd_conn *conn = work->conn; 5507 struct ksmbd_share_config *share = work->tcon->share_conf; 5508 int fsinfoclass = 0; 5509 struct kstatfs stfs; 5510 struct path path; 5511 int rc = 0, len; 5512 5513 if (!share->path) 5514 return -EIO; 5515 5516 rc = kern_path(share->path, LOOKUP_NO_SYMLINKS, &path); 5517 if (rc) { 5518 pr_err("cannot create vfs path\n"); 5519 return -EIO; 5520 } 5521 5522 rc = vfs_statfs(&path, &stfs); 5523 if (rc) { 5524 pr_err("cannot do stat of path %s\n", share->path); 5525 path_put(&path); 5526 return -EIO; 5527 } 5528 5529 fsinfoclass = req->FileInfoClass; 5530 5531 switch (fsinfoclass) { 5532 case FS_DEVICE_INFORMATION: 5533 { 5534 FILE_SYSTEM_DEVICE_INFO *info; 5535 5536 info = (FILE_SYSTEM_DEVICE_INFO *)rsp->Buffer; 5537 5538 info->DeviceType = cpu_to_le32(FILE_DEVICE_DISK); 5539 info->DeviceCharacteristics = 5540 cpu_to_le32(FILE_DEVICE_IS_MOUNTED); 5541 if (!test_tree_conn_flag(work->tcon, 5542 KSMBD_TREE_CONN_FLAG_WRITABLE)) 5543 info->DeviceCharacteristics |= 5544 cpu_to_le32(FILE_READ_ONLY_DEVICE); 5545 rsp->OutputBufferLength = cpu_to_le32(8); 5546 break; 5547 } 5548 case FS_ATTRIBUTE_INFORMATION: 5549 { 5550 FILE_SYSTEM_ATTRIBUTE_INFO *info; 5551 size_t sz; 5552 5553 info = (FILE_SYSTEM_ATTRIBUTE_INFO *)rsp->Buffer; 5554 info->Attributes = cpu_to_le32(FILE_SUPPORTS_OBJECT_IDS | 5555 FILE_PERSISTENT_ACLS | 5556 FILE_UNICODE_ON_DISK | 5557 FILE_CASE_PRESERVED_NAMES | 5558 FILE_CASE_SENSITIVE_SEARCH | 5559 FILE_SUPPORTS_BLOCK_REFCOUNTING); 5560 5561 info->Attributes |= cpu_to_le32(server_conf.share_fake_fscaps); 5562 5563 if (test_share_config_flag(work->tcon->share_conf, 5564 KSMBD_SHARE_FLAG_STREAMS)) 5565 info->Attributes |= cpu_to_le32(FILE_NAMED_STREAMS); 5566 5567 info->MaxPathNameComponentLength = cpu_to_le32(stfs.f_namelen); 5568 /* 5569 * some application(potableapp) can not run on ksmbd share 5570 * because only NTFS handle security setting on windows. 5571 * So Although local fs(EXT4 or F2fs, etc) is not NTFS, 5572 * ksmbd should show share as NTFS. Later, If needed, we can add 5573 * fs type(s) parameter to change fs type user wanted. 5574 */ 5575 len = smbConvertToUTF16((__le16 *)info->FileSystemName, 5576 "NTFS", PATH_MAX, conn->local_nls, 0); 5577 len = len * 2; 5578 info->FileSystemNameLen = cpu_to_le32(len); 5579 sz = sizeof(FILE_SYSTEM_ATTRIBUTE_INFO) + len; 5580 rsp->OutputBufferLength = cpu_to_le32(sz); 5581 break; 5582 } 5583 case FS_VOLUME_INFORMATION: 5584 { 5585 struct filesystem_vol_info *info; 5586 size_t sz; 5587 unsigned int serial_crc = 0; 5588 5589 info = (struct filesystem_vol_info *)(rsp->Buffer); 5590 info->VolumeCreationTime = 0; 5591 serial_crc = crc32_le(serial_crc, share->name, 5592 strlen(share->name)); 5593 serial_crc = crc32_le(serial_crc, share->path, 5594 strlen(share->path)); 5595 serial_crc = crc32_le(serial_crc, ksmbd_netbios_name(), 5596 strlen(ksmbd_netbios_name())); 5597 /* Taking dummy value of serial number*/ 5598 info->VolumeSerialNumber = cpu_to_le32(serial_crc); 5599 len = smbConvertToUTF16((__le16 *)info->VolumeLabel, 5600 share->name, PATH_MAX, 5601 conn->local_nls, 0); 5602 len = len * 2; 5603 info->VolumeLabelLength = cpu_to_le32(len); 5604 info->Reserved = 0; 5605 info->SupportsObjects = 0; 5606 sz = sizeof(struct filesystem_vol_info) + len; 5607 rsp->OutputBufferLength = cpu_to_le32(sz); 5608 break; 5609 } 5610 case FS_SIZE_INFORMATION: 5611 { 5612 FILE_SYSTEM_SIZE_INFO *info; 5613 5614 info = (FILE_SYSTEM_SIZE_INFO *)(rsp->Buffer); 5615 info->TotalAllocationUnits = cpu_to_le64(stfs.f_blocks); 5616 info->AvailableAllocationUnits = cpu_to_le64(stfs.f_bfree); 5617 info->SectorsPerAllocationUnit = cpu_to_le32(1); 5618 info->BytesPerSector = cpu_to_le32(stfs.f_bsize); 5619 rsp->OutputBufferLength = cpu_to_le32(24); 5620 break; 5621 } 5622 case FS_FULL_SIZE_INFORMATION: 5623 { 5624 struct smb2_fs_full_size_info *info; 5625 5626 info = (struct smb2_fs_full_size_info *)(rsp->Buffer); 5627 info->TotalAllocationUnits = cpu_to_le64(stfs.f_blocks); 5628 info->CallerAvailableAllocationUnits = 5629 cpu_to_le64(stfs.f_bavail); 5630 info->ActualAvailableAllocationUnits = 5631 cpu_to_le64(stfs.f_bfree); 5632 info->SectorsPerAllocationUnit = cpu_to_le32(1); 5633 info->BytesPerSector = cpu_to_le32(stfs.f_bsize); 5634 rsp->OutputBufferLength = cpu_to_le32(32); 5635 break; 5636 } 5637 case FS_OBJECT_ID_INFORMATION: 5638 { 5639 struct object_id_info *info; 5640 5641 info = (struct object_id_info *)(rsp->Buffer); 5642 5643 if (path.mnt->mnt_sb->s_uuid_len == 16) 5644 memcpy(info->objid, path.mnt->mnt_sb->s_uuid.b, 5645 path.mnt->mnt_sb->s_uuid_len); 5646 else 5647 memcpy(info->objid, &stfs.f_fsid, sizeof(stfs.f_fsid)); 5648 5649 info->extended_info.magic = cpu_to_le32(EXTENDED_INFO_MAGIC); 5650 info->extended_info.version = cpu_to_le32(1); 5651 info->extended_info.release = cpu_to_le32(1); 5652 info->extended_info.rel_date = 0; 5653 memcpy(info->extended_info.version_string, "1.1.0", strlen("1.1.0")); 5654 rsp->OutputBufferLength = cpu_to_le32(64); 5655 break; 5656 } 5657 case FS_SECTOR_SIZE_INFORMATION: 5658 { 5659 struct smb3_fs_ss_info *info; 5660 unsigned int sector_size = 5661 min_t(unsigned int, path.mnt->mnt_sb->s_blocksize, 4096); 5662 5663 info = (struct smb3_fs_ss_info *)(rsp->Buffer); 5664 5665 info->LogicalBytesPerSector = cpu_to_le32(sector_size); 5666 info->PhysicalBytesPerSectorForAtomicity = 5667 cpu_to_le32(sector_size); 5668 info->PhysicalBytesPerSectorForPerf = cpu_to_le32(sector_size); 5669 info->FSEffPhysicalBytesPerSectorForAtomicity = 5670 cpu_to_le32(sector_size); 5671 info->Flags = cpu_to_le32(SSINFO_FLAGS_ALIGNED_DEVICE | 5672 SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE); 5673 info->ByteOffsetForSectorAlignment = 0; 5674 info->ByteOffsetForPartitionAlignment = 0; 5675 rsp->OutputBufferLength = cpu_to_le32(28); 5676 break; 5677 } 5678 case FS_CONTROL_INFORMATION: 5679 { 5680 /* 5681 * TODO : The current implementation is based on 5682 * test result with win7(NTFS) server. It's need to 5683 * modify this to get valid Quota values 5684 * from Linux kernel 5685 */ 5686 struct smb2_fs_control_info *info; 5687 5688 info = (struct smb2_fs_control_info *)(rsp->Buffer); 5689 info->FreeSpaceStartFiltering = 0; 5690 info->FreeSpaceThreshold = 0; 5691 info->FreeSpaceStopFiltering = 0; 5692 info->DefaultQuotaThreshold = cpu_to_le64(SMB2_NO_FID); 5693 info->DefaultQuotaLimit = cpu_to_le64(SMB2_NO_FID); 5694 info->Padding = 0; 5695 rsp->OutputBufferLength = cpu_to_le32(48); 5696 break; 5697 } 5698 case FS_POSIX_INFORMATION: 5699 { 5700 FILE_SYSTEM_POSIX_INFO *info; 5701 5702 if (!work->tcon->posix_extensions) { 5703 pr_err("client doesn't negotiate with SMB3.1.1 POSIX Extensions\n"); 5704 path_put(&path); 5705 return -EOPNOTSUPP; 5706 } else { 5707 info = (FILE_SYSTEM_POSIX_INFO *)(rsp->Buffer); 5708 info->OptimalTransferSize = cpu_to_le32(stfs.f_bsize); 5709 info->BlockSize = cpu_to_le32(stfs.f_bsize); 5710 info->TotalBlocks = cpu_to_le64(stfs.f_blocks); 5711 info->BlocksAvail = cpu_to_le64(stfs.f_bfree); 5712 info->UserBlocksAvail = cpu_to_le64(stfs.f_bavail); 5713 info->TotalFileNodes = cpu_to_le64(stfs.f_files); 5714 info->FreeFileNodes = cpu_to_le64(stfs.f_ffree); 5715 rsp->OutputBufferLength = cpu_to_le32(56); 5716 } 5717 break; 5718 } 5719 default: 5720 path_put(&path); 5721 return -EOPNOTSUPP; 5722 } 5723 rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength), 5724 rsp, work->response_buf); 5725 path_put(&path); 5726 5727 if (!rc) 5728 rc = ksmbd_iov_pin_rsp(work, (void *)rsp, 5729 offsetof(struct smb2_query_info_rsp, Buffer) + 5730 le32_to_cpu(rsp->OutputBufferLength)); 5731 return rc; 5732 } 5733 5734 static int smb2_get_info_sec(struct ksmbd_work *work, 5735 struct smb2_query_info_req *req, 5736 struct smb2_query_info_rsp *rsp) 5737 { 5738 struct ksmbd_file *fp; 5739 struct mnt_idmap *idmap; 5740 struct smb_ntsd *pntsd = NULL, *ppntsd = NULL; 5741 struct smb_fattr fattr = {{0}}; 5742 struct inode *inode; 5743 __u32 secdesclen = 0; 5744 unsigned int id = KSMBD_NO_FID, pid = KSMBD_NO_FID; 5745 int addition_info = le32_to_cpu(req->AdditionalInformation); 5746 int rc = 0, ppntsd_size = 0, max_len; 5747 size_t scratch_len = 0; 5748 5749 if (addition_info & ~(OWNER_SECINFO | GROUP_SECINFO | DACL_SECINFO | 5750 PROTECTED_DACL_SECINFO | 5751 UNPROTECTED_DACL_SECINFO)) { 5752 ksmbd_debug(SMB, "Unsupported addition info: 0x%x)\n", 5753 addition_info); 5754 5755 rsp->hdr.Status = STATUS_NOT_SUPPORTED; 5756 return -EINVAL; 5757 } 5758 5759 if (work->next_smb2_rcv_hdr_off) { 5760 if (!has_file_id(req->VolatileFileId)) { 5761 ksmbd_debug(SMB, "Compound request set FID = %llu\n", 5762 work->compound_fid); 5763 id = work->compound_fid; 5764 pid = work->compound_pfid; 5765 } 5766 } 5767 5768 if (!has_file_id(id)) { 5769 id = req->VolatileFileId; 5770 pid = req->PersistentFileId; 5771 } 5772 5773 fp = ksmbd_lookup_fd_slow(work, id, pid); 5774 if (!fp) 5775 return -ENOENT; 5776 5777 idmap = file_mnt_idmap(fp->filp); 5778 inode = file_inode(fp->filp); 5779 ksmbd_acls_fattr(&fattr, idmap, inode); 5780 5781 if (test_share_config_flag(work->tcon->share_conf, 5782 KSMBD_SHARE_FLAG_ACL_XATTR)) 5783 ppntsd_size = ksmbd_vfs_get_sd_xattr(work->conn, idmap, 5784 fp->filp->f_path.dentry, 5785 &ppntsd); 5786 5787 /* Check if sd buffer size exceeds response buffer size */ 5788 max_len = smb2_calc_max_out_buf_len(work, 5789 offsetof(struct smb2_query_info_rsp, Buffer), 5790 le32_to_cpu(req->OutputBufferLength)); 5791 if (max_len < 0) { 5792 rc = -EINVAL; 5793 goto release_acl; 5794 } 5795 5796 scratch_len = smb_acl_sec_desc_scratch_len(&fattr, ppntsd, 5797 ppntsd_size, addition_info); 5798 if (!scratch_len || scratch_len == SIZE_MAX) { 5799 rc = -EFBIG; 5800 goto release_acl; 5801 } 5802 5803 pntsd = kvzalloc(scratch_len, KSMBD_DEFAULT_GFP); 5804 if (!pntsd) { 5805 rc = -ENOMEM; 5806 goto release_acl; 5807 } 5808 5809 rc = build_sec_desc(idmap, pntsd, ppntsd, ppntsd_size, 5810 addition_info, &secdesclen, &fattr); 5811 5812 release_acl: 5813 posix_acl_release(fattr.cf_acls); 5814 posix_acl_release(fattr.cf_dacls); 5815 kfree(ppntsd); 5816 ksmbd_fd_put(work, fp); 5817 5818 if (!rc && ALIGN(secdesclen, 8) > scratch_len) 5819 rc = -EFBIG; 5820 if (rc) 5821 goto err_out; 5822 5823 rsp->OutputBufferLength = cpu_to_le32(secdesclen); 5824 rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength), 5825 rsp, work->response_buf); 5826 if (rc) 5827 goto err_out; 5828 5829 rc = ksmbd_iov_pin_rsp_read(work, (void *)rsp, 5830 offsetof(struct smb2_query_info_rsp, Buffer), 5831 pntsd, secdesclen); 5832 err_out: 5833 if (rc) { 5834 rsp->OutputBufferLength = 0; 5835 kvfree(pntsd); 5836 } 5837 5838 return rc; 5839 } 5840 5841 /** 5842 * smb2_query_info() - handler for smb2 query info command 5843 * @work: smb work containing query info request buffer 5844 * 5845 * Return: 0 on success, otherwise error 5846 */ 5847 int smb2_query_info(struct ksmbd_work *work) 5848 { 5849 struct smb2_query_info_req *req; 5850 struct smb2_query_info_rsp *rsp; 5851 int rc = 0; 5852 5853 ksmbd_debug(SMB, "Received request smb2 query info request\n"); 5854 5855 WORK_BUFFERS(work, req, rsp); 5856 5857 if (ksmbd_override_fsids(work)) { 5858 rc = -ENOMEM; 5859 goto err_out; 5860 } 5861 5862 rsp->StructureSize = cpu_to_le16(9); 5863 rsp->OutputBufferOffset = cpu_to_le16(72); 5864 5865 switch (req->InfoType) { 5866 case SMB2_O_INFO_FILE: 5867 ksmbd_debug(SMB, "GOT SMB2_O_INFO_FILE\n"); 5868 rc = smb2_get_info_file(work, req, rsp); 5869 break; 5870 case SMB2_O_INFO_FILESYSTEM: 5871 ksmbd_debug(SMB, "GOT SMB2_O_INFO_FILESYSTEM\n"); 5872 rc = smb2_get_info_filesystem(work, req, rsp); 5873 break; 5874 case SMB2_O_INFO_SECURITY: 5875 ksmbd_debug(SMB, "GOT SMB2_O_INFO_SECURITY\n"); 5876 rc = smb2_get_info_sec(work, req, rsp); 5877 break; 5878 default: 5879 ksmbd_debug(SMB, "InfoType %d not supported yet\n", 5880 req->InfoType); 5881 rc = -EOPNOTSUPP; 5882 } 5883 ksmbd_revert_fsids(work); 5884 5885 err_out: 5886 if (rc < 0) { 5887 if (rc == -EACCES) 5888 rsp->hdr.Status = STATUS_ACCESS_DENIED; 5889 else if (rc == -ENOENT) 5890 rsp->hdr.Status = STATUS_FILE_CLOSED; 5891 else if (rc == -EIO) 5892 rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR; 5893 else if (rc == -ENOMEM) 5894 rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES; 5895 else if (rc == -EINVAL && rsp->hdr.Status == 0) 5896 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 5897 else if (rc == -EOPNOTSUPP || rsp->hdr.Status == 0) 5898 rsp->hdr.Status = STATUS_INVALID_INFO_CLASS; 5899 smb2_set_err_rsp(work); 5900 5901 ksmbd_debug(SMB, "error while processing smb2 query rc = %d\n", 5902 rc); 5903 return rc; 5904 } 5905 return 0; 5906 } 5907 5908 /** 5909 * smb2_close_pipe() - handler for closing IPC pipe 5910 * @work: smb work containing close request buffer 5911 * 5912 * Return: 0 5913 */ 5914 static noinline int smb2_close_pipe(struct ksmbd_work *work) 5915 { 5916 u64 id; 5917 struct smb2_close_req *req; 5918 struct smb2_close_rsp *rsp; 5919 5920 WORK_BUFFERS(work, req, rsp); 5921 5922 id = req->VolatileFileId; 5923 ksmbd_session_rpc_close(work->sess, id); 5924 5925 rsp->StructureSize = cpu_to_le16(60); 5926 rsp->Flags = 0; 5927 rsp->Reserved = 0; 5928 rsp->CreationTime = 0; 5929 rsp->LastAccessTime = 0; 5930 rsp->LastWriteTime = 0; 5931 rsp->ChangeTime = 0; 5932 rsp->AllocationSize = 0; 5933 rsp->EndOfFile = 0; 5934 rsp->Attributes = 0; 5935 5936 return ksmbd_iov_pin_rsp(work, (void *)rsp, 5937 sizeof(struct smb2_close_rsp)); 5938 } 5939 5940 /** 5941 * smb2_close() - handler for smb2 close file command 5942 * @work: smb work containing close request buffer 5943 * 5944 * Return: 0 on success, otherwise error 5945 */ 5946 int smb2_close(struct ksmbd_work *work) 5947 { 5948 u64 volatile_id = KSMBD_NO_FID; 5949 u64 sess_id; 5950 struct smb2_close_req *req; 5951 struct smb2_close_rsp *rsp; 5952 struct ksmbd_conn *conn = work->conn; 5953 struct ksmbd_file *fp; 5954 u64 time; 5955 int err = 0; 5956 5957 ksmbd_debug(SMB, "Received smb2 close request\n"); 5958 5959 WORK_BUFFERS(work, req, rsp); 5960 5961 if (test_share_config_flag(work->tcon->share_conf, 5962 KSMBD_SHARE_FLAG_PIPE)) { 5963 ksmbd_debug(SMB, "IPC pipe close request\n"); 5964 return smb2_close_pipe(work); 5965 } 5966 5967 sess_id = le64_to_cpu(req->hdr.SessionId); 5968 if (req->hdr.Flags & SMB2_FLAGS_RELATED_OPERATIONS) 5969 sess_id = work->compound_sid; 5970 5971 work->compound_sid = 0; 5972 if (check_session_id(conn, sess_id)) { 5973 work->compound_sid = sess_id; 5974 } else { 5975 rsp->hdr.Status = STATUS_USER_SESSION_DELETED; 5976 if (req->hdr.Flags & SMB2_FLAGS_RELATED_OPERATIONS) 5977 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 5978 err = -EBADF; 5979 goto out; 5980 } 5981 5982 if (work->next_smb2_rcv_hdr_off && 5983 !has_file_id(req->VolatileFileId)) { 5984 if (!has_file_id(work->compound_fid)) { 5985 /* file already closed, return FILE_CLOSED */ 5986 ksmbd_debug(SMB, "file already closed\n"); 5987 rsp->hdr.Status = STATUS_FILE_CLOSED; 5988 err = -EBADF; 5989 goto out; 5990 } else { 5991 ksmbd_debug(SMB, 5992 "Compound request set FID = %llu:%llu\n", 5993 work->compound_fid, 5994 work->compound_pfid); 5995 volatile_id = work->compound_fid; 5996 5997 /* file closed, stored id is not valid anymore */ 5998 work->compound_fid = KSMBD_NO_FID; 5999 work->compound_pfid = KSMBD_NO_FID; 6000 } 6001 } else { 6002 volatile_id = req->VolatileFileId; 6003 } 6004 ksmbd_debug(SMB, "volatile_id = %llu\n", volatile_id); 6005 6006 rsp->StructureSize = cpu_to_le16(60); 6007 rsp->Reserved = 0; 6008 6009 if (req->Flags == SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB) { 6010 struct kstat stat; 6011 int ret; 6012 6013 fp = ksmbd_lookup_fd_fast(work, volatile_id); 6014 if (!fp) { 6015 err = -ENOENT; 6016 goto out; 6017 } 6018 6019 ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS, 6020 AT_STATX_SYNC_AS_STAT); 6021 if (ret) { 6022 ksmbd_fd_put(work, fp); 6023 goto out; 6024 } 6025 6026 rsp->Flags = SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB; 6027 rsp->AllocationSize = S_ISDIR(stat.mode) ? 0 : 6028 cpu_to_le64(stat.blocks << 9); 6029 rsp->EndOfFile = cpu_to_le64(stat.size); 6030 rsp->Attributes = fp->f_ci->m_fattr; 6031 rsp->CreationTime = cpu_to_le64(fp->create_time); 6032 time = ksmbd_UnixTimeToNT(stat.atime); 6033 rsp->LastAccessTime = cpu_to_le64(time); 6034 time = ksmbd_UnixTimeToNT(stat.mtime); 6035 rsp->LastWriteTime = cpu_to_le64(time); 6036 time = ksmbd_UnixTimeToNT(stat.ctime); 6037 rsp->ChangeTime = cpu_to_le64(time); 6038 ksmbd_fd_put(work, fp); 6039 } else { 6040 rsp->Flags = 0; 6041 rsp->AllocationSize = 0; 6042 rsp->EndOfFile = 0; 6043 rsp->Attributes = 0; 6044 rsp->CreationTime = 0; 6045 rsp->LastAccessTime = 0; 6046 rsp->LastWriteTime = 0; 6047 rsp->ChangeTime = 0; 6048 } 6049 6050 err = ksmbd_close_fd(work, volatile_id); 6051 out: 6052 if (!err) 6053 err = ksmbd_iov_pin_rsp(work, (void *)rsp, 6054 sizeof(struct smb2_close_rsp)); 6055 6056 if (err) { 6057 if (rsp->hdr.Status == 0) 6058 rsp->hdr.Status = STATUS_FILE_CLOSED; 6059 smb2_set_err_rsp(work); 6060 } 6061 6062 return err; 6063 } 6064 6065 /** 6066 * smb2_echo() - handler for smb2 echo(ping) command 6067 * @work: smb work containing echo request buffer 6068 * 6069 * Return: 0 on success, otherwise error 6070 */ 6071 int smb2_echo(struct ksmbd_work *work) 6072 { 6073 struct smb2_echo_rsp *rsp = smb_get_msg(work->response_buf); 6074 6075 ksmbd_debug(SMB, "Received smb2 echo request\n"); 6076 6077 if (work->next_smb2_rcv_hdr_off) 6078 rsp = ksmbd_resp_buf_next(work); 6079 6080 rsp->StructureSize = cpu_to_le16(4); 6081 rsp->Reserved = 0; 6082 return ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_echo_rsp)); 6083 } 6084 6085 static int smb2_rename(struct ksmbd_work *work, 6086 struct ksmbd_file *fp, 6087 struct smb2_file_rename_info *file_info, 6088 struct nls_table *local_nls) 6089 { 6090 struct ksmbd_share_config *share = fp->tcon->share_conf; 6091 char *new_name = NULL; 6092 int rc, flags = 0; 6093 6094 ksmbd_debug(SMB, "setting FILE_RENAME_INFO\n"); 6095 new_name = smb2_get_name(file_info->FileName, 6096 le32_to_cpu(file_info->FileNameLength), 6097 local_nls); 6098 if (IS_ERR(new_name)) 6099 return PTR_ERR(new_name); 6100 6101 if (fp->is_posix_ctxt == false && strchr(new_name, ':')) { 6102 int s_type; 6103 char *xattr_stream_name, *stream_name = NULL; 6104 size_t xattr_stream_size; 6105 int len; 6106 6107 rc = parse_stream_name(new_name, &stream_name, &s_type); 6108 if (rc < 0) 6109 goto out; 6110 6111 len = strlen(new_name); 6112 if (len > 0 && new_name[len - 1] != '/') { 6113 pr_err("not allow base filename in rename\n"); 6114 rc = -ESHARE; 6115 goto out; 6116 } 6117 6118 rc = ksmbd_vfs_xattr_stream_name(stream_name, 6119 &xattr_stream_name, 6120 &xattr_stream_size, 6121 s_type); 6122 if (rc) 6123 goto out; 6124 6125 rc = ksmbd_vfs_setxattr(file_mnt_idmap(fp->filp), 6126 &fp->filp->f_path, 6127 xattr_stream_name, 6128 NULL, 0, 0, true); 6129 if (rc < 0) { 6130 pr_err("failed to store stream name in xattr: %d\n", 6131 rc); 6132 rc = -EINVAL; 6133 goto out; 6134 } 6135 6136 goto out; 6137 } 6138 6139 ksmbd_debug(SMB, "new name %s\n", new_name); 6140 if (ksmbd_share_veto_filename(share, new_name)) { 6141 rc = -ENOENT; 6142 ksmbd_debug(SMB, "Can't rename vetoed file: %s\n", new_name); 6143 goto out; 6144 } 6145 6146 if (!file_info->ReplaceIfExists) 6147 flags = RENAME_NOREPLACE; 6148 6149 rc = ksmbd_vfs_rename(work, &fp->filp->f_path, new_name, flags); 6150 if (!rc) 6151 smb_break_all_levII_oplock(work, fp, 0); 6152 out: 6153 kfree(new_name); 6154 return rc; 6155 } 6156 6157 static int smb2_create_link(struct ksmbd_work *work, 6158 struct ksmbd_share_config *share, 6159 struct smb2_file_link_info *file_info, 6160 unsigned int buf_len, struct file *filp, 6161 struct nls_table *local_nls) 6162 { 6163 char *link_name = NULL, *target_name = NULL, *pathname = NULL; 6164 struct path path; 6165 int rc; 6166 6167 if (buf_len < (u64)sizeof(struct smb2_file_link_info) + 6168 le32_to_cpu(file_info->FileNameLength)) 6169 return -EINVAL; 6170 6171 ksmbd_debug(SMB, "setting FILE_LINK_INFORMATION\n"); 6172 pathname = kmalloc(PATH_MAX, KSMBD_DEFAULT_GFP); 6173 if (!pathname) 6174 return -ENOMEM; 6175 6176 link_name = smb2_get_name(file_info->FileName, 6177 le32_to_cpu(file_info->FileNameLength), 6178 local_nls); 6179 if (IS_ERR(link_name) || S_ISDIR(file_inode(filp)->i_mode)) { 6180 rc = -EINVAL; 6181 goto out; 6182 } 6183 6184 ksmbd_debug(SMB, "link name is %s\n", link_name); 6185 target_name = file_path(filp, pathname, PATH_MAX); 6186 if (IS_ERR(target_name)) { 6187 rc = -EINVAL; 6188 goto out; 6189 } 6190 6191 ksmbd_debug(SMB, "target name is %s\n", target_name); 6192 rc = ksmbd_vfs_kern_path_start_removing(work, link_name, LOOKUP_NO_SYMLINKS, 6193 &path, 0); 6194 if (rc) { 6195 if (rc != -ENOENT) 6196 goto out; 6197 } else { 6198 if (file_info->ReplaceIfExists) { 6199 rc = ksmbd_vfs_remove_file(work, &path); 6200 if (rc) { 6201 rc = -EINVAL; 6202 ksmbd_debug(SMB, "cannot delete %s\n", 6203 link_name); 6204 } 6205 } else { 6206 rc = -EEXIST; 6207 ksmbd_debug(SMB, "link already exists\n"); 6208 } 6209 ksmbd_vfs_kern_path_end_removing(&path); 6210 if (rc) 6211 goto out; 6212 } 6213 rc = ksmbd_vfs_link(work, target_name, link_name); 6214 if (rc) 6215 rc = -EINVAL; 6216 out: 6217 6218 if (!IS_ERR(link_name)) 6219 kfree(link_name); 6220 kfree(pathname); 6221 return rc; 6222 } 6223 6224 static int set_file_basic_info(struct ksmbd_file *fp, 6225 struct file_basic_info *file_info, 6226 struct ksmbd_share_config *share) 6227 { 6228 struct iattr attrs; 6229 struct file *filp; 6230 struct inode *inode; 6231 struct mnt_idmap *idmap; 6232 int rc = 0; 6233 6234 if (!(fp->daccess & FILE_WRITE_ATTRIBUTES_LE)) 6235 return -EACCES; 6236 6237 attrs.ia_valid = 0; 6238 filp = fp->filp; 6239 inode = file_inode(filp); 6240 idmap = file_mnt_idmap(filp); 6241 6242 if (file_info->CreationTime) 6243 fp->create_time = le64_to_cpu(file_info->CreationTime); 6244 6245 if (file_info->LastAccessTime) { 6246 attrs.ia_atime = ksmbd_NTtimeToUnix(file_info->LastAccessTime); 6247 attrs.ia_valid |= (ATTR_ATIME | ATTR_ATIME_SET); 6248 } 6249 6250 if (file_info->ChangeTime) 6251 inode_set_ctime_to_ts(inode, 6252 ksmbd_NTtimeToUnix(file_info->ChangeTime)); 6253 6254 if (file_info->LastWriteTime) { 6255 attrs.ia_mtime = ksmbd_NTtimeToUnix(file_info->LastWriteTime); 6256 attrs.ia_valid |= (ATTR_MTIME | ATTR_MTIME_SET | ATTR_CTIME); 6257 } 6258 6259 if (file_info->Attributes) { 6260 if (!S_ISDIR(inode->i_mode) && 6261 file_info->Attributes & FILE_ATTRIBUTE_DIRECTORY_LE) { 6262 pr_err("can't change a file to a directory\n"); 6263 return -EINVAL; 6264 } 6265 6266 if (!(S_ISDIR(inode->i_mode) && file_info->Attributes == FILE_ATTRIBUTE_NORMAL_LE)) 6267 fp->f_ci->m_fattr = file_info->Attributes | 6268 (fp->f_ci->m_fattr & FILE_ATTRIBUTE_DIRECTORY_LE); 6269 } 6270 6271 if (test_share_config_flag(share, KSMBD_SHARE_FLAG_STORE_DOS_ATTRS) && 6272 (file_info->CreationTime || file_info->Attributes)) { 6273 struct xattr_dos_attrib da = {0}; 6274 6275 da.version = 4; 6276 da.itime = fp->itime; 6277 da.create_time = fp->create_time; 6278 da.attr = le32_to_cpu(fp->f_ci->m_fattr); 6279 da.flags = XATTR_DOSINFO_ATTRIB | XATTR_DOSINFO_CREATE_TIME | 6280 XATTR_DOSINFO_ITIME; 6281 6282 rc = ksmbd_vfs_set_dos_attrib_xattr(idmap, &filp->f_path, &da, 6283 true); 6284 if (rc) 6285 ksmbd_debug(SMB, 6286 "failed to restore file attribute in EA\n"); 6287 rc = 0; 6288 } 6289 6290 if (attrs.ia_valid) { 6291 struct dentry *dentry = filp->f_path.dentry; 6292 struct inode *inode = d_inode(dentry); 6293 6294 if (IS_IMMUTABLE(inode) || IS_APPEND(inode)) 6295 return -EACCES; 6296 6297 inode_lock(inode); 6298 rc = notify_change(idmap, dentry, &attrs, NULL); 6299 inode_unlock(inode); 6300 } 6301 return rc; 6302 } 6303 6304 static int set_file_allocation_info(struct ksmbd_work *work, 6305 struct ksmbd_file *fp, 6306 struct smb2_file_alloc_info *file_alloc_info) 6307 { 6308 /* 6309 * TODO : It's working fine only when store dos attributes 6310 * is not yes. need to implement a logic which works 6311 * properly with any smb.conf option 6312 */ 6313 6314 loff_t alloc_blks; 6315 struct inode *inode; 6316 struct kstat stat; 6317 int rc; 6318 6319 if (!(fp->daccess & FILE_WRITE_DATA_LE)) 6320 return -EACCES; 6321 6322 if (ksmbd_stream_fd(fp) == true) 6323 return 0; 6324 6325 rc = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS, 6326 AT_STATX_SYNC_AS_STAT); 6327 if (rc) 6328 return rc; 6329 6330 alloc_blks = (le64_to_cpu(file_alloc_info->AllocationSize) + 511) >> 9; 6331 inode = file_inode(fp->filp); 6332 6333 if (alloc_blks > stat.blocks) { 6334 smb_break_all_levII_oplock(work, fp, 1); 6335 rc = vfs_fallocate(fp->filp, FALLOC_FL_KEEP_SIZE, 0, 6336 alloc_blks * 512); 6337 if (rc && rc != -EOPNOTSUPP) { 6338 pr_err("vfs_fallocate is failed : %d\n", rc); 6339 return rc; 6340 } 6341 } else if (alloc_blks < stat.blocks) { 6342 loff_t size; 6343 6344 /* 6345 * Allocation size could be smaller than original one 6346 * which means allocated blocks in file should be 6347 * deallocated. use truncate to cut out it, but inode 6348 * size is also updated with truncate offset. 6349 * inode size is retained by backup inode size. 6350 */ 6351 size = i_size_read(inode); 6352 rc = ksmbd_vfs_truncate(work, fp, alloc_blks * 512); 6353 if (rc) { 6354 pr_err("truncate failed!, err %d\n", rc); 6355 return rc; 6356 } 6357 if (size < alloc_blks * 512) 6358 i_size_write(inode, size); 6359 } 6360 return 0; 6361 } 6362 6363 static int set_end_of_file_info(struct ksmbd_work *work, struct ksmbd_file *fp, 6364 struct smb2_file_eof_info *file_eof_info) 6365 { 6366 loff_t newsize; 6367 struct inode *inode; 6368 int rc; 6369 6370 if (!(fp->daccess & FILE_WRITE_DATA_LE)) 6371 return -EACCES; 6372 6373 newsize = le64_to_cpu(file_eof_info->EndOfFile); 6374 inode = file_inode(fp->filp); 6375 6376 /* 6377 * If FILE_END_OF_FILE_INFORMATION of set_info_file is called 6378 * on FAT32 shared device, truncate execution time is too long 6379 * and network error could cause from windows client. because 6380 * truncate of some filesystem like FAT32 fill zero data in 6381 * truncated range. 6382 */ 6383 if (inode->i_sb->s_magic != MSDOS_SUPER_MAGIC && 6384 ksmbd_stream_fd(fp) == false) { 6385 ksmbd_debug(SMB, "truncated to newsize %lld\n", newsize); 6386 rc = ksmbd_vfs_truncate(work, fp, newsize); 6387 if (rc) { 6388 ksmbd_debug(SMB, "truncate failed!, err %d\n", rc); 6389 if (rc != -EAGAIN) 6390 rc = -EBADF; 6391 return rc; 6392 } 6393 } 6394 return 0; 6395 } 6396 6397 static int set_rename_info(struct ksmbd_work *work, struct ksmbd_file *fp, 6398 struct smb2_file_rename_info *rename_info, 6399 unsigned int buf_len) 6400 { 6401 if (!(fp->daccess & FILE_DELETE_LE)) { 6402 pr_err("no right to delete : 0x%x\n", fp->daccess); 6403 return -EACCES; 6404 } 6405 6406 if (buf_len < (u64)sizeof(struct smb2_file_rename_info) + 6407 le32_to_cpu(rename_info->FileNameLength)) 6408 return -EINVAL; 6409 6410 if (!le32_to_cpu(rename_info->FileNameLength)) 6411 return -EINVAL; 6412 6413 return smb2_rename(work, fp, rename_info, work->conn->local_nls); 6414 } 6415 6416 static int set_file_disposition_info(struct ksmbd_file *fp, 6417 struct smb2_file_disposition_info *file_info) 6418 { 6419 struct inode *inode; 6420 6421 if (!(fp->daccess & FILE_DELETE_LE)) { 6422 pr_err("no right to delete : 0x%x\n", fp->daccess); 6423 return -EACCES; 6424 } 6425 6426 inode = file_inode(fp->filp); 6427 if (file_info->DeletePending) { 6428 if (S_ISDIR(inode->i_mode) && 6429 ksmbd_vfs_empty_dir(fp) == -ENOTEMPTY) 6430 return -EBUSY; 6431 ksmbd_set_inode_pending_delete(fp); 6432 } else { 6433 ksmbd_clear_inode_pending_delete(fp); 6434 } 6435 return 0; 6436 } 6437 6438 static int set_file_position_info(struct ksmbd_file *fp, 6439 struct smb2_file_pos_info *file_info) 6440 { 6441 loff_t current_byte_offset; 6442 unsigned long sector_size; 6443 struct inode *inode; 6444 6445 inode = file_inode(fp->filp); 6446 current_byte_offset = le64_to_cpu(file_info->CurrentByteOffset); 6447 sector_size = inode->i_sb->s_blocksize; 6448 6449 if (current_byte_offset < 0 || 6450 (fp->coption == FILE_NO_INTERMEDIATE_BUFFERING_LE && 6451 current_byte_offset & (sector_size - 1))) { 6452 pr_err("CurrentByteOffset is not valid : %llu\n", 6453 current_byte_offset); 6454 return -EINVAL; 6455 } 6456 6457 if (ksmbd_stream_fd(fp) == false) 6458 fp->filp->f_pos = current_byte_offset; 6459 else { 6460 if (current_byte_offset > XATTR_SIZE_MAX) 6461 current_byte_offset = XATTR_SIZE_MAX; 6462 fp->stream.pos = current_byte_offset; 6463 } 6464 return 0; 6465 } 6466 6467 static int set_file_mode_info(struct ksmbd_file *fp, 6468 struct smb2_file_mode_info *file_info) 6469 { 6470 __le32 mode; 6471 6472 mode = file_info->Mode; 6473 6474 if ((mode & ~FILE_MODE_INFO_MASK)) { 6475 pr_err("Mode is not valid : 0x%x\n", le32_to_cpu(mode)); 6476 return -EINVAL; 6477 } 6478 6479 /* 6480 * TODO : need to implement consideration for 6481 * FILE_SYNCHRONOUS_IO_ALERT and FILE_SYNCHRONOUS_IO_NONALERT 6482 */ 6483 ksmbd_vfs_set_fadvise(fp->filp, mode); 6484 fp->coption = mode; 6485 return 0; 6486 } 6487 6488 /** 6489 * smb2_set_info_file() - handler for smb2 set info command 6490 * @work: smb work containing set info command buffer 6491 * @fp: ksmbd_file pointer 6492 * @req: request buffer pointer 6493 * @share: ksmbd_share_config pointer 6494 * 6495 * Return: 0 on success, otherwise error 6496 */ 6497 static int smb2_set_info_file(struct ksmbd_work *work, struct ksmbd_file *fp, 6498 struct smb2_set_info_req *req, 6499 struct ksmbd_share_config *share) 6500 { 6501 unsigned int buf_len = le32_to_cpu(req->BufferLength); 6502 char *buffer = (char *)req + le16_to_cpu(req->BufferOffset); 6503 6504 switch (req->FileInfoClass) { 6505 case FILE_BASIC_INFORMATION: 6506 { 6507 if (buf_len < sizeof(struct file_basic_info)) 6508 return -EMSGSIZE; 6509 6510 return set_file_basic_info(fp, (struct file_basic_info *)buffer, share); 6511 } 6512 case FILE_ALLOCATION_INFORMATION: 6513 { 6514 if (buf_len < sizeof(struct smb2_file_alloc_info)) 6515 return -EMSGSIZE; 6516 6517 return set_file_allocation_info(work, fp, 6518 (struct smb2_file_alloc_info *)buffer); 6519 } 6520 case FILE_END_OF_FILE_INFORMATION: 6521 { 6522 if (buf_len < sizeof(struct smb2_file_eof_info)) 6523 return -EMSGSIZE; 6524 6525 return set_end_of_file_info(work, fp, 6526 (struct smb2_file_eof_info *)buffer); 6527 } 6528 case FILE_RENAME_INFORMATION: 6529 { 6530 if (buf_len < sizeof(struct smb2_file_rename_info)) 6531 return -EMSGSIZE; 6532 6533 return set_rename_info(work, fp, 6534 (struct smb2_file_rename_info *)buffer, 6535 buf_len); 6536 } 6537 case FILE_LINK_INFORMATION: 6538 { 6539 if (buf_len < sizeof(struct smb2_file_link_info)) 6540 return -EMSGSIZE; 6541 6542 return smb2_create_link(work, work->tcon->share_conf, 6543 (struct smb2_file_link_info *)buffer, 6544 buf_len, fp->filp, 6545 work->conn->local_nls); 6546 } 6547 case FILE_DISPOSITION_INFORMATION: 6548 { 6549 if (buf_len < sizeof(struct smb2_file_disposition_info)) 6550 return -EMSGSIZE; 6551 6552 return set_file_disposition_info(fp, 6553 (struct smb2_file_disposition_info *)buffer); 6554 } 6555 case FILE_FULL_EA_INFORMATION: 6556 { 6557 if (!(fp->daccess & FILE_WRITE_EA_LE)) { 6558 pr_err("Not permitted to write ext attr: 0x%x\n", 6559 fp->daccess); 6560 return -EACCES; 6561 } 6562 6563 if (buf_len < sizeof(struct smb2_ea_info)) 6564 return -EMSGSIZE; 6565 6566 return smb2_set_ea((struct smb2_ea_info *)buffer, 6567 buf_len, &fp->filp->f_path, true); 6568 } 6569 case FILE_POSITION_INFORMATION: 6570 { 6571 if (buf_len < sizeof(struct smb2_file_pos_info)) 6572 return -EMSGSIZE; 6573 6574 return set_file_position_info(fp, (struct smb2_file_pos_info *)buffer); 6575 } 6576 case FILE_MODE_INFORMATION: 6577 { 6578 if (buf_len < sizeof(struct smb2_file_mode_info)) 6579 return -EMSGSIZE; 6580 6581 return set_file_mode_info(fp, (struct smb2_file_mode_info *)buffer); 6582 } 6583 } 6584 6585 pr_err("Unimplemented Fileinfoclass :%d\n", req->FileInfoClass); 6586 return -EOPNOTSUPP; 6587 } 6588 6589 static int smb2_set_info_sec(struct ksmbd_file *fp, int addition_info, 6590 char *buffer, int buf_len) 6591 { 6592 struct smb_ntsd *pntsd = (struct smb_ntsd *)buffer; 6593 6594 fp->saccess |= FILE_SHARE_DELETE_LE; 6595 6596 return set_info_sec(fp->conn, fp->tcon, &fp->filp->f_path, pntsd, 6597 buf_len, false, true); 6598 } 6599 6600 /** 6601 * smb2_set_info() - handler for smb2 set info command handler 6602 * @work: smb work containing set info request buffer 6603 * 6604 * Return: 0 on success, otherwise error 6605 */ 6606 int smb2_set_info(struct ksmbd_work *work) 6607 { 6608 struct smb2_set_info_req *req; 6609 struct smb2_set_info_rsp *rsp; 6610 struct ksmbd_file *fp = NULL; 6611 int rc = 0; 6612 unsigned int id = KSMBD_NO_FID, pid = KSMBD_NO_FID; 6613 6614 ksmbd_debug(SMB, "Received smb2 set info request\n"); 6615 6616 if (work->next_smb2_rcv_hdr_off) { 6617 req = ksmbd_req_buf_next(work); 6618 rsp = ksmbd_resp_buf_next(work); 6619 if (!has_file_id(req->VolatileFileId)) { 6620 ksmbd_debug(SMB, "Compound request set FID = %llu\n", 6621 work->compound_fid); 6622 id = work->compound_fid; 6623 pid = work->compound_pfid; 6624 } 6625 } else { 6626 req = smb_get_msg(work->request_buf); 6627 rsp = smb_get_msg(work->response_buf); 6628 } 6629 6630 if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) { 6631 ksmbd_debug(SMB, "User does not have write permission\n"); 6632 pr_err("User does not have write permission\n"); 6633 rc = -EACCES; 6634 goto err_out; 6635 } 6636 6637 if (!has_file_id(id)) { 6638 id = req->VolatileFileId; 6639 pid = req->PersistentFileId; 6640 } 6641 6642 fp = ksmbd_lookup_fd_slow(work, id, pid); 6643 if (!fp) { 6644 ksmbd_debug(SMB, "Invalid id for close: %u\n", id); 6645 rc = -ENOENT; 6646 goto err_out; 6647 } 6648 6649 switch (req->InfoType) { 6650 case SMB2_O_INFO_FILE: 6651 ksmbd_debug(SMB, "GOT SMB2_O_INFO_FILE\n"); 6652 rc = smb2_set_info_file(work, fp, req, work->tcon->share_conf); 6653 break; 6654 case SMB2_O_INFO_SECURITY: 6655 ksmbd_debug(SMB, "GOT SMB2_O_INFO_SECURITY\n"); 6656 if (ksmbd_override_fsids(work)) { 6657 rc = -ENOMEM; 6658 goto err_out; 6659 } 6660 rc = smb2_set_info_sec(fp, 6661 le32_to_cpu(req->AdditionalInformation), 6662 (char *)req + le16_to_cpu(req->BufferOffset), 6663 le32_to_cpu(req->BufferLength)); 6664 ksmbd_revert_fsids(work); 6665 break; 6666 default: 6667 rc = -EOPNOTSUPP; 6668 } 6669 6670 if (rc < 0) 6671 goto err_out; 6672 6673 rsp->StructureSize = cpu_to_le16(2); 6674 rc = ksmbd_iov_pin_rsp(work, (void *)rsp, 6675 sizeof(struct smb2_set_info_rsp)); 6676 if (rc) 6677 goto err_out; 6678 ksmbd_fd_put(work, fp); 6679 return 0; 6680 6681 err_out: 6682 if (rc == -EACCES || rc == -EPERM || rc == -EXDEV) 6683 rsp->hdr.Status = STATUS_ACCESS_DENIED; 6684 else if (rc == -EINVAL) 6685 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 6686 else if (rc == -EMSGSIZE) 6687 rsp->hdr.Status = STATUS_INFO_LENGTH_MISMATCH; 6688 else if (rc == -ESHARE) 6689 rsp->hdr.Status = STATUS_SHARING_VIOLATION; 6690 else if (rc == -ENOENT) 6691 rsp->hdr.Status = STATUS_OBJECT_NAME_INVALID; 6692 else if (rc == -EBUSY || rc == -ENOTEMPTY) 6693 rsp->hdr.Status = STATUS_DIRECTORY_NOT_EMPTY; 6694 else if (rc == -EAGAIN) 6695 rsp->hdr.Status = STATUS_FILE_LOCK_CONFLICT; 6696 else if (rc == -EBADF || rc == -ESTALE) 6697 rsp->hdr.Status = STATUS_INVALID_HANDLE; 6698 else if (rc == -EEXIST) 6699 rsp->hdr.Status = STATUS_OBJECT_NAME_COLLISION; 6700 else if (rsp->hdr.Status == 0 || rc == -EOPNOTSUPP) 6701 rsp->hdr.Status = STATUS_INVALID_INFO_CLASS; 6702 smb2_set_err_rsp(work); 6703 ksmbd_fd_put(work, fp); 6704 ksmbd_debug(SMB, "error while processing smb2 query rc = %d\n", rc); 6705 return rc; 6706 } 6707 6708 /** 6709 * smb2_read_pipe() - handler for smb2 read from IPC pipe 6710 * @work: smb work containing read IPC pipe command buffer 6711 * 6712 * Return: 0 on success, otherwise error 6713 */ 6714 static noinline int smb2_read_pipe(struct ksmbd_work *work) 6715 { 6716 int nbytes = 0, err; 6717 u64 id; 6718 struct ksmbd_rpc_command *rpc_resp; 6719 struct smb2_read_req *req; 6720 struct smb2_read_rsp *rsp; 6721 6722 WORK_BUFFERS(work, req, rsp); 6723 6724 id = req->VolatileFileId; 6725 6726 rpc_resp = ksmbd_rpc_read(work->sess, id); 6727 if (rpc_resp) { 6728 void *aux_payload_buf; 6729 6730 if (rpc_resp->flags != KSMBD_RPC_OK) { 6731 err = -EINVAL; 6732 goto out; 6733 } 6734 6735 aux_payload_buf = 6736 kvmalloc(rpc_resp->payload_sz, KSMBD_DEFAULT_GFP); 6737 if (!aux_payload_buf) { 6738 err = -ENOMEM; 6739 goto out; 6740 } 6741 6742 memcpy(aux_payload_buf, rpc_resp->payload, rpc_resp->payload_sz); 6743 6744 nbytes = rpc_resp->payload_sz; 6745 err = ksmbd_iov_pin_rsp_read(work, (void *)rsp, 6746 offsetof(struct smb2_read_rsp, Buffer), 6747 aux_payload_buf, nbytes); 6748 if (err) { 6749 kvfree(aux_payload_buf); 6750 goto out; 6751 } 6752 kvfree(rpc_resp); 6753 } else { 6754 err = ksmbd_iov_pin_rsp(work, (void *)rsp, 6755 offsetof(struct smb2_read_rsp, Buffer)); 6756 if (err) 6757 goto out; 6758 } 6759 6760 rsp->StructureSize = cpu_to_le16(17); 6761 rsp->DataOffset = 80; 6762 rsp->Reserved = 0; 6763 rsp->DataLength = cpu_to_le32(nbytes); 6764 rsp->DataRemaining = 0; 6765 rsp->Flags = 0; 6766 return 0; 6767 6768 out: 6769 rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR; 6770 smb2_set_err_rsp(work); 6771 kvfree(rpc_resp); 6772 return err; 6773 } 6774 6775 static int smb2_set_remote_key_for_rdma(struct ksmbd_work *work, 6776 struct smbdirect_buffer_descriptor_v1 *desc, 6777 __le32 Channel, 6778 __le16 ChannelInfoLength) 6779 { 6780 unsigned int i, ch_count; 6781 6782 if (work->conn->dialect == SMB30_PROT_ID && 6783 Channel != SMB2_CHANNEL_RDMA_V1) 6784 return -EINVAL; 6785 6786 ch_count = le16_to_cpu(ChannelInfoLength) / sizeof(*desc); 6787 if (ksmbd_debug_types & KSMBD_DEBUG_RDMA) { 6788 for (i = 0; i < ch_count; i++) { 6789 pr_info("RDMA r/w request %#x: token %#x, length %#x\n", 6790 i, 6791 le32_to_cpu(desc[i].token), 6792 le32_to_cpu(desc[i].length)); 6793 } 6794 } 6795 if (!ch_count) 6796 return -EINVAL; 6797 6798 work->need_invalidate_rkey = 6799 (Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE); 6800 if (Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE) 6801 work->remote_key = le32_to_cpu(desc->token); 6802 return 0; 6803 } 6804 6805 static ssize_t smb2_read_rdma_channel(struct ksmbd_work *work, 6806 struct smb2_read_req *req, void *data_buf, 6807 size_t length) 6808 { 6809 int err; 6810 6811 err = ksmbd_conn_rdma_write(work->conn, data_buf, length, 6812 (struct smbdirect_buffer_descriptor_v1 *) 6813 ((char *)req + le16_to_cpu(req->ReadChannelInfoOffset)), 6814 le16_to_cpu(req->ReadChannelInfoLength)); 6815 if (err) 6816 return err; 6817 6818 return length; 6819 } 6820 6821 /** 6822 * smb2_read() - handler for smb2 read from file 6823 * @work: smb work containing read command buffer 6824 * 6825 * Return: 0 on success, otherwise error 6826 */ 6827 int smb2_read(struct ksmbd_work *work) 6828 { 6829 struct ksmbd_conn *conn = work->conn; 6830 struct smb2_read_req *req; 6831 struct smb2_read_rsp *rsp; 6832 struct ksmbd_file *fp = NULL; 6833 loff_t offset; 6834 size_t length, mincount; 6835 ssize_t nbytes = 0, remain_bytes = 0; 6836 int err = 0; 6837 bool is_rdma_channel = false; 6838 unsigned int max_read_size = conn->vals->max_read_size; 6839 unsigned int id = KSMBD_NO_FID, pid = KSMBD_NO_FID; 6840 void *aux_payload_buf; 6841 6842 ksmbd_debug(SMB, "Received smb2 read request\n"); 6843 6844 if (test_share_config_flag(work->tcon->share_conf, 6845 KSMBD_SHARE_FLAG_PIPE)) { 6846 ksmbd_debug(SMB, "IPC pipe read request\n"); 6847 return smb2_read_pipe(work); 6848 } 6849 6850 if (work->next_smb2_rcv_hdr_off) { 6851 req = ksmbd_req_buf_next(work); 6852 rsp = ksmbd_resp_buf_next(work); 6853 if (!has_file_id(req->VolatileFileId)) { 6854 ksmbd_debug(SMB, "Compound request set FID = %llu\n", 6855 work->compound_fid); 6856 id = work->compound_fid; 6857 pid = work->compound_pfid; 6858 } 6859 } else { 6860 req = smb_get_msg(work->request_buf); 6861 rsp = smb_get_msg(work->response_buf); 6862 } 6863 6864 if (!has_file_id(id)) { 6865 id = req->VolatileFileId; 6866 pid = req->PersistentFileId; 6867 } 6868 6869 if (req->Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE || 6870 req->Channel == SMB2_CHANNEL_RDMA_V1) { 6871 is_rdma_channel = true; 6872 max_read_size = get_smbd_max_read_write_size(work->conn->transport); 6873 if (max_read_size == 0) { 6874 err = -EINVAL; 6875 goto out; 6876 } 6877 } 6878 6879 if (is_rdma_channel == true) { 6880 unsigned int ch_offset = le16_to_cpu(req->ReadChannelInfoOffset); 6881 6882 if (ch_offset < offsetof(struct smb2_read_req, Buffer)) { 6883 err = -EINVAL; 6884 goto out; 6885 } 6886 err = smb2_set_remote_key_for_rdma(work, 6887 (struct smbdirect_buffer_descriptor_v1 *) 6888 ((char *)req + ch_offset), 6889 req->Channel, 6890 req->ReadChannelInfoLength); 6891 if (err) 6892 goto out; 6893 } 6894 6895 fp = ksmbd_lookup_fd_slow(work, id, pid); 6896 if (!fp) { 6897 err = -ENOENT; 6898 goto out; 6899 } 6900 6901 if (!(fp->daccess & (FILE_READ_DATA_LE | FILE_READ_ATTRIBUTES_LE))) { 6902 pr_err("Not permitted to read : 0x%x\n", fp->daccess); 6903 err = -EACCES; 6904 goto out; 6905 } 6906 6907 offset = le64_to_cpu(req->Offset); 6908 if (offset < 0) { 6909 err = -EINVAL; 6910 goto out; 6911 } 6912 length = le32_to_cpu(req->Length); 6913 mincount = le32_to_cpu(req->MinimumCount); 6914 6915 if (length > max_read_size) { 6916 ksmbd_debug(SMB, "limiting read size to max size(%u)\n", 6917 max_read_size); 6918 err = -EINVAL; 6919 goto out; 6920 } 6921 6922 ksmbd_debug(SMB, "filename %pD, offset %lld, len %zu\n", 6923 fp->filp, offset, length); 6924 6925 aux_payload_buf = kvzalloc(ALIGN(length, 8), KSMBD_DEFAULT_GFP); 6926 if (!aux_payload_buf) { 6927 err = -ENOMEM; 6928 goto out; 6929 } 6930 6931 nbytes = ksmbd_vfs_read(work, fp, length, &offset, aux_payload_buf); 6932 if (nbytes < 0) { 6933 kvfree(aux_payload_buf); 6934 err = nbytes; 6935 goto out; 6936 } 6937 6938 if ((nbytes == 0 && length != 0) || nbytes < mincount) { 6939 kvfree(aux_payload_buf); 6940 rsp->hdr.Status = STATUS_END_OF_FILE; 6941 smb2_set_err_rsp(work); 6942 ksmbd_fd_put(work, fp); 6943 return -ENODATA; 6944 } 6945 6946 ksmbd_debug(SMB, "nbytes %zu, offset %lld mincount %zu\n", 6947 nbytes, offset, mincount); 6948 6949 if (is_rdma_channel == true) { 6950 /* write data to the client using rdma channel */ 6951 remain_bytes = smb2_read_rdma_channel(work, req, 6952 aux_payload_buf, 6953 nbytes); 6954 kvfree(aux_payload_buf); 6955 aux_payload_buf = NULL; 6956 nbytes = 0; 6957 if (remain_bytes < 0) { 6958 err = (int)remain_bytes; 6959 goto out; 6960 } 6961 } 6962 6963 rsp->StructureSize = cpu_to_le16(17); 6964 rsp->DataOffset = 80; 6965 rsp->Reserved = 0; 6966 rsp->DataLength = cpu_to_le32(nbytes); 6967 rsp->DataRemaining = cpu_to_le32(remain_bytes); 6968 rsp->Flags = 0; 6969 err = ksmbd_iov_pin_rsp_read(work, (void *)rsp, 6970 offsetof(struct smb2_read_rsp, Buffer), 6971 aux_payload_buf, nbytes); 6972 if (err) { 6973 kvfree(aux_payload_buf); 6974 goto out; 6975 } 6976 ksmbd_fd_put(work, fp); 6977 return 0; 6978 6979 out: 6980 if (err) { 6981 if (err == -EISDIR) 6982 rsp->hdr.Status = STATUS_INVALID_DEVICE_REQUEST; 6983 else if (err == -EAGAIN) 6984 rsp->hdr.Status = STATUS_FILE_LOCK_CONFLICT; 6985 else if (err == -ENOENT) 6986 rsp->hdr.Status = STATUS_FILE_CLOSED; 6987 else if (err == -EACCES) 6988 rsp->hdr.Status = STATUS_ACCESS_DENIED; 6989 else if (err == -ESHARE) 6990 rsp->hdr.Status = STATUS_SHARING_VIOLATION; 6991 else if (err == -EINVAL) 6992 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 6993 else 6994 rsp->hdr.Status = STATUS_INVALID_HANDLE; 6995 6996 smb2_set_err_rsp(work); 6997 } 6998 ksmbd_fd_put(work, fp); 6999 return err; 7000 } 7001 7002 /** 7003 * smb2_write_pipe() - handler for smb2 write on IPC pipe 7004 * @work: smb work containing write IPC pipe command buffer 7005 * 7006 * Return: 0 on success, otherwise error 7007 */ 7008 static noinline int smb2_write_pipe(struct ksmbd_work *work) 7009 { 7010 struct smb2_write_req *req; 7011 struct smb2_write_rsp *rsp; 7012 struct ksmbd_rpc_command *rpc_resp; 7013 u64 id = 0; 7014 int err = 0, ret = 0; 7015 char *data_buf; 7016 size_t length; 7017 7018 WORK_BUFFERS(work, req, rsp); 7019 7020 length = le32_to_cpu(req->Length); 7021 id = req->VolatileFileId; 7022 7023 if ((u64)le16_to_cpu(req->DataOffset) + length > 7024 get_rfc1002_len(work->request_buf)) { 7025 pr_err("invalid write data offset %u, smb_len %u\n", 7026 le16_to_cpu(req->DataOffset), 7027 get_rfc1002_len(work->request_buf)); 7028 err = -EINVAL; 7029 goto out; 7030 } 7031 7032 data_buf = (char *)(((char *)&req->hdr.ProtocolId) + 7033 le16_to_cpu(req->DataOffset)); 7034 7035 rpc_resp = ksmbd_rpc_write(work->sess, id, data_buf, length); 7036 if (rpc_resp) { 7037 if (rpc_resp->flags == KSMBD_RPC_ENOTIMPLEMENTED) { 7038 rsp->hdr.Status = STATUS_NOT_SUPPORTED; 7039 kvfree(rpc_resp); 7040 smb2_set_err_rsp(work); 7041 return -EOPNOTSUPP; 7042 } 7043 if (rpc_resp->flags != KSMBD_RPC_OK) { 7044 rsp->hdr.Status = STATUS_INVALID_HANDLE; 7045 smb2_set_err_rsp(work); 7046 kvfree(rpc_resp); 7047 return ret; 7048 } 7049 kvfree(rpc_resp); 7050 } 7051 7052 rsp->StructureSize = cpu_to_le16(17); 7053 rsp->DataOffset = 0; 7054 rsp->Reserved = 0; 7055 rsp->DataLength = cpu_to_le32(length); 7056 rsp->DataRemaining = 0; 7057 rsp->Reserved2 = 0; 7058 err = ksmbd_iov_pin_rsp(work, (void *)rsp, 7059 offsetof(struct smb2_write_rsp, Buffer)); 7060 out: 7061 if (err) { 7062 rsp->hdr.Status = STATUS_INVALID_HANDLE; 7063 smb2_set_err_rsp(work); 7064 } 7065 7066 return err; 7067 } 7068 7069 static ssize_t smb2_write_rdma_channel(struct ksmbd_work *work, 7070 struct smb2_write_req *req, 7071 struct ksmbd_file *fp, 7072 loff_t offset, size_t length, bool sync) 7073 { 7074 char *data_buf; 7075 int ret; 7076 ssize_t nbytes; 7077 7078 data_buf = kvzalloc(length, KSMBD_DEFAULT_GFP); 7079 if (!data_buf) 7080 return -ENOMEM; 7081 7082 ret = ksmbd_conn_rdma_read(work->conn, data_buf, length, 7083 (struct smbdirect_buffer_descriptor_v1 *) 7084 ((char *)req + le16_to_cpu(req->WriteChannelInfoOffset)), 7085 le16_to_cpu(req->WriteChannelInfoLength)); 7086 if (ret < 0) { 7087 kvfree(data_buf); 7088 return ret; 7089 } 7090 7091 ret = ksmbd_vfs_write(work, fp, data_buf, length, &offset, sync, &nbytes); 7092 kvfree(data_buf); 7093 if (ret < 0) 7094 return ret; 7095 7096 return nbytes; 7097 } 7098 7099 /** 7100 * smb2_write() - handler for smb2 write from file 7101 * @work: smb work containing write command buffer 7102 * 7103 * Return: 0 on success, otherwise error 7104 */ 7105 int smb2_write(struct ksmbd_work *work) 7106 { 7107 struct smb2_write_req *req; 7108 struct smb2_write_rsp *rsp; 7109 struct ksmbd_file *fp = NULL; 7110 loff_t offset; 7111 size_t length; 7112 ssize_t nbytes; 7113 char *data_buf; 7114 bool writethrough = false, is_rdma_channel = false; 7115 int err = 0; 7116 unsigned int max_write_size = work->conn->vals->max_write_size; 7117 7118 ksmbd_debug(SMB, "Received smb2 write request\n"); 7119 7120 WORK_BUFFERS(work, req, rsp); 7121 7122 if (test_share_config_flag(work->tcon->share_conf, KSMBD_SHARE_FLAG_PIPE)) { 7123 ksmbd_debug(SMB, "IPC pipe write request\n"); 7124 return smb2_write_pipe(work); 7125 } 7126 7127 offset = le64_to_cpu(req->Offset); 7128 if (offset < 0) 7129 return -EINVAL; 7130 length = le32_to_cpu(req->Length); 7131 7132 if (req->Channel == SMB2_CHANNEL_RDMA_V1 || 7133 req->Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE) { 7134 is_rdma_channel = true; 7135 max_write_size = get_smbd_max_read_write_size(work->conn->transport); 7136 if (max_write_size == 0) { 7137 err = -EINVAL; 7138 goto out; 7139 } 7140 length = le32_to_cpu(req->RemainingBytes); 7141 } 7142 7143 if (is_rdma_channel == true) { 7144 unsigned int ch_offset = le16_to_cpu(req->WriteChannelInfoOffset); 7145 7146 if (req->Length != 0 || req->DataOffset != 0 || 7147 ch_offset < offsetof(struct smb2_write_req, Buffer)) { 7148 err = -EINVAL; 7149 goto out; 7150 } 7151 err = smb2_set_remote_key_for_rdma(work, 7152 (struct smbdirect_buffer_descriptor_v1 *) 7153 ((char *)req + ch_offset), 7154 req->Channel, 7155 req->WriteChannelInfoLength); 7156 if (err) 7157 goto out; 7158 } 7159 7160 if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) { 7161 ksmbd_debug(SMB, "User does not have write permission\n"); 7162 err = -EACCES; 7163 goto out; 7164 } 7165 7166 fp = ksmbd_lookup_fd_slow(work, req->VolatileFileId, req->PersistentFileId); 7167 if (!fp) { 7168 err = -ENOENT; 7169 goto out; 7170 } 7171 7172 if (!(fp->daccess & (FILE_WRITE_DATA_LE | FILE_READ_ATTRIBUTES_LE))) { 7173 pr_err("Not permitted to write : 0x%x\n", fp->daccess); 7174 err = -EACCES; 7175 goto out; 7176 } 7177 7178 if (length > max_write_size) { 7179 ksmbd_debug(SMB, "limiting write size to max size(%u)\n", 7180 max_write_size); 7181 err = -EINVAL; 7182 goto out; 7183 } 7184 7185 ksmbd_debug(SMB, "flags %u\n", le32_to_cpu(req->Flags)); 7186 if (le32_to_cpu(req->Flags) & SMB2_WRITEFLAG_WRITE_THROUGH) 7187 writethrough = true; 7188 7189 if (is_rdma_channel == false) { 7190 if (le16_to_cpu(req->DataOffset) < 7191 offsetof(struct smb2_write_req, Buffer)) { 7192 err = -EINVAL; 7193 goto out; 7194 } 7195 7196 data_buf = (char *)(((char *)&req->hdr.ProtocolId) + 7197 le16_to_cpu(req->DataOffset)); 7198 7199 ksmbd_debug(SMB, "filename %pD, offset %lld, len %zu\n", 7200 fp->filp, offset, length); 7201 err = ksmbd_vfs_write(work, fp, data_buf, length, &offset, 7202 writethrough, &nbytes); 7203 if (err < 0) 7204 goto out; 7205 } else { 7206 /* read data from the client using rdma channel, and 7207 * write the data. 7208 */ 7209 nbytes = smb2_write_rdma_channel(work, req, fp, offset, length, 7210 writethrough); 7211 if (nbytes < 0) { 7212 err = (int)nbytes; 7213 goto out; 7214 } 7215 } 7216 7217 rsp->StructureSize = cpu_to_le16(17); 7218 rsp->DataOffset = 0; 7219 rsp->Reserved = 0; 7220 rsp->DataLength = cpu_to_le32(nbytes); 7221 rsp->DataRemaining = 0; 7222 rsp->Reserved2 = 0; 7223 err = ksmbd_iov_pin_rsp(work, rsp, offsetof(struct smb2_write_rsp, Buffer)); 7224 if (err) 7225 goto out; 7226 ksmbd_fd_put(work, fp); 7227 return 0; 7228 7229 out: 7230 if (err == -EAGAIN) 7231 rsp->hdr.Status = STATUS_FILE_LOCK_CONFLICT; 7232 else if (err == -ENOSPC || err == -EFBIG) 7233 rsp->hdr.Status = STATUS_DISK_FULL; 7234 else if (err == -ENOENT) 7235 rsp->hdr.Status = STATUS_FILE_CLOSED; 7236 else if (err == -EACCES) 7237 rsp->hdr.Status = STATUS_ACCESS_DENIED; 7238 else if (err == -ESHARE) 7239 rsp->hdr.Status = STATUS_SHARING_VIOLATION; 7240 else if (err == -EINVAL) 7241 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 7242 else 7243 rsp->hdr.Status = STATUS_INVALID_HANDLE; 7244 7245 smb2_set_err_rsp(work); 7246 ksmbd_fd_put(work, fp); 7247 return err; 7248 } 7249 7250 /** 7251 * smb2_flush() - handler for smb2 flush file - fsync 7252 * @work: smb work containing flush command buffer 7253 * 7254 * Return: 0 on success, otherwise error 7255 */ 7256 int smb2_flush(struct ksmbd_work *work) 7257 { 7258 struct smb2_flush_req *req; 7259 struct smb2_flush_rsp *rsp; 7260 int err; 7261 7262 WORK_BUFFERS(work, req, rsp); 7263 7264 ksmbd_debug(SMB, "Received smb2 flush request(fid : %llu)\n", req->VolatileFileId); 7265 7266 err = ksmbd_vfs_fsync(work, req->VolatileFileId, req->PersistentFileId); 7267 if (err) 7268 goto out; 7269 7270 rsp->StructureSize = cpu_to_le16(4); 7271 rsp->Reserved = 0; 7272 return ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_flush_rsp)); 7273 7274 out: 7275 rsp->hdr.Status = STATUS_INVALID_HANDLE; 7276 smb2_set_err_rsp(work); 7277 return err; 7278 } 7279 7280 /** 7281 * smb2_cancel() - handler for smb2 cancel command 7282 * @work: smb work containing cancel command buffer 7283 * 7284 * Return: 0 on success, otherwise error 7285 */ 7286 int smb2_cancel(struct ksmbd_work *work) 7287 { 7288 struct ksmbd_conn *conn = work->conn; 7289 struct smb2_hdr *hdr = smb_get_msg(work->request_buf); 7290 struct smb2_hdr *chdr; 7291 struct ksmbd_work *iter; 7292 struct list_head *command_list; 7293 7294 if (work->next_smb2_rcv_hdr_off) 7295 hdr = ksmbd_resp_buf_next(work); 7296 7297 ksmbd_debug(SMB, "smb2 cancel called on mid %llu, async flags 0x%x\n", 7298 hdr->MessageId, hdr->Flags); 7299 7300 if (hdr->Flags & SMB2_FLAGS_ASYNC_COMMAND) { 7301 command_list = &conn->async_requests; 7302 7303 spin_lock(&conn->request_lock); 7304 list_for_each_entry(iter, command_list, 7305 async_request_entry) { 7306 chdr = smb_get_msg(iter->request_buf); 7307 7308 if (iter->async_id != 7309 le64_to_cpu(hdr->Id.AsyncId)) 7310 continue; 7311 7312 ksmbd_debug(SMB, 7313 "smb2 with AsyncId %llu cancelled command = 0x%x\n", 7314 le64_to_cpu(hdr->Id.AsyncId), 7315 le16_to_cpu(chdr->Command)); 7316 iter->state = KSMBD_WORK_CANCELLED; 7317 if (iter->cancel_fn) 7318 iter->cancel_fn(iter->cancel_argv); 7319 break; 7320 } 7321 spin_unlock(&conn->request_lock); 7322 } else { 7323 command_list = &conn->requests; 7324 7325 spin_lock(&conn->request_lock); 7326 list_for_each_entry(iter, command_list, request_entry) { 7327 chdr = smb_get_msg(iter->request_buf); 7328 7329 if (chdr->MessageId != hdr->MessageId || 7330 iter == work) 7331 continue; 7332 7333 ksmbd_debug(SMB, 7334 "smb2 with mid %llu cancelled command = 0x%x\n", 7335 le64_to_cpu(hdr->MessageId), 7336 le16_to_cpu(chdr->Command)); 7337 iter->state = KSMBD_WORK_CANCELLED; 7338 break; 7339 } 7340 spin_unlock(&conn->request_lock); 7341 } 7342 7343 /* For SMB2_CANCEL command itself send no response*/ 7344 work->send_no_response = 1; 7345 return 0; 7346 } 7347 7348 struct file_lock *smb_flock_init(struct file *f) 7349 { 7350 struct file_lock *fl; 7351 7352 fl = locks_alloc_lock(); 7353 if (!fl) 7354 goto out; 7355 7356 locks_init_lock(fl); 7357 7358 fl->c.flc_owner = f; 7359 fl->c.flc_pid = current->tgid; 7360 fl->c.flc_file = f; 7361 fl->c.flc_flags = FL_POSIX; 7362 fl->fl_ops = NULL; 7363 fl->fl_lmops = NULL; 7364 7365 out: 7366 return fl; 7367 } 7368 7369 static int smb2_set_flock_flags(struct file_lock *flock, int flags) 7370 { 7371 int cmd = -EINVAL; 7372 7373 /* Checking for wrong flag combination during lock request*/ 7374 switch (flags) { 7375 case SMB2_LOCKFLAG_SHARED: 7376 ksmbd_debug(SMB, "received shared request\n"); 7377 cmd = F_SETLKW; 7378 flock->c.flc_type = F_RDLCK; 7379 flock->c.flc_flags |= FL_SLEEP; 7380 break; 7381 case SMB2_LOCKFLAG_EXCLUSIVE: 7382 ksmbd_debug(SMB, "received exclusive request\n"); 7383 cmd = F_SETLKW; 7384 flock->c.flc_type = F_WRLCK; 7385 flock->c.flc_flags |= FL_SLEEP; 7386 break; 7387 case SMB2_LOCKFLAG_SHARED | SMB2_LOCKFLAG_FAIL_IMMEDIATELY: 7388 ksmbd_debug(SMB, 7389 "received shared & fail immediately request\n"); 7390 cmd = F_SETLK; 7391 flock->c.flc_type = F_RDLCK; 7392 break; 7393 case SMB2_LOCKFLAG_EXCLUSIVE | SMB2_LOCKFLAG_FAIL_IMMEDIATELY: 7394 ksmbd_debug(SMB, 7395 "received exclusive & fail immediately request\n"); 7396 cmd = F_SETLK; 7397 flock->c.flc_type = F_WRLCK; 7398 break; 7399 case SMB2_LOCKFLAG_UNLOCK: 7400 ksmbd_debug(SMB, "received unlock request\n"); 7401 flock->c.flc_type = F_UNLCK; 7402 cmd = F_SETLK; 7403 break; 7404 } 7405 7406 return cmd; 7407 } 7408 7409 static struct ksmbd_lock *smb2_lock_init(struct file_lock *flock, 7410 unsigned int cmd, int flags, 7411 struct list_head *lock_list) 7412 { 7413 struct ksmbd_lock *lock; 7414 7415 lock = kzalloc_obj(struct ksmbd_lock, KSMBD_DEFAULT_GFP); 7416 if (!lock) 7417 return NULL; 7418 7419 lock->cmd = cmd; 7420 lock->fl = flock; 7421 lock->start = flock->fl_start; 7422 lock->end = flock->fl_end; 7423 lock->flags = flags; 7424 if (lock->start == lock->end) 7425 lock->zero_len = 1; 7426 INIT_LIST_HEAD(&lock->clist); 7427 INIT_LIST_HEAD(&lock->flist); 7428 INIT_LIST_HEAD(&lock->llist); 7429 list_add_tail(&lock->llist, lock_list); 7430 7431 return lock; 7432 } 7433 7434 static void smb2_remove_blocked_lock(void **argv) 7435 { 7436 struct file_lock *flock = (struct file_lock *)argv[0]; 7437 7438 ksmbd_vfs_posix_lock_unblock(flock); 7439 locks_wake_up(flock); 7440 } 7441 7442 static inline bool lock_defer_pending(struct file_lock *fl) 7443 { 7444 /* check pending lock waiters */ 7445 return waitqueue_active(&fl->c.flc_wait); 7446 } 7447 7448 /** 7449 * smb2_lock() - handler for smb2 file lock command 7450 * @work: smb work containing lock command buffer 7451 * 7452 * Return: 0 on success, otherwise error 7453 */ 7454 int smb2_lock(struct ksmbd_work *work) 7455 { 7456 struct smb2_lock_req *req; 7457 struct smb2_lock_rsp *rsp; 7458 struct smb2_lock_element *lock_ele; 7459 struct ksmbd_file *fp = NULL; 7460 struct file_lock *flock = NULL; 7461 struct file *filp = NULL; 7462 int lock_count; 7463 int flags = 0; 7464 int cmd = 0; 7465 int err = -EIO, i, rc = 0; 7466 u64 lock_start, lock_length; 7467 struct ksmbd_lock *smb_lock = NULL, *cmp_lock, *tmp, *tmp2; 7468 struct ksmbd_conn *conn; 7469 int nolock = 0; 7470 LIST_HEAD(lock_list); 7471 LIST_HEAD(rollback_list); 7472 int prior_lock = 0, bkt; 7473 7474 WORK_BUFFERS(work, req, rsp); 7475 7476 ksmbd_debug(SMB, "Received smb2 lock request\n"); 7477 fp = ksmbd_lookup_fd_slow(work, req->VolatileFileId, req->PersistentFileId); 7478 if (!fp) { 7479 ksmbd_debug(SMB, "Invalid file id for lock : %llu\n", req->VolatileFileId); 7480 err = -ENOENT; 7481 goto out2; 7482 } 7483 7484 filp = fp->filp; 7485 lock_count = le16_to_cpu(req->LockCount); 7486 lock_ele = req->locks; 7487 7488 ksmbd_debug(SMB, "lock count is %d\n", lock_count); 7489 /* 7490 * Cap lock_count at 64. The MS-SMB2 spec defines Open.LockSequenceArray 7491 * as exactly 64 entries so 64 is the intended ceiling. No real workload 7492 * comes close to this in a single request. 7493 */ 7494 if (!lock_count || lock_count > 64) { 7495 err = -EINVAL; 7496 goto out2; 7497 } 7498 7499 for (i = 0; i < lock_count; i++) { 7500 flags = le32_to_cpu(lock_ele[i].Flags); 7501 7502 flock = smb_flock_init(filp); 7503 if (!flock) 7504 goto out; 7505 7506 cmd = smb2_set_flock_flags(flock, flags); 7507 7508 lock_start = le64_to_cpu(lock_ele[i].Offset); 7509 lock_length = le64_to_cpu(lock_ele[i].Length); 7510 if (lock_start > U64_MAX - lock_length) { 7511 pr_err("Invalid lock range requested\n"); 7512 rsp->hdr.Status = STATUS_INVALID_LOCK_RANGE; 7513 locks_free_lock(flock); 7514 goto out; 7515 } 7516 7517 if (lock_start > OFFSET_MAX) 7518 flock->fl_start = OFFSET_MAX; 7519 else 7520 flock->fl_start = lock_start; 7521 7522 lock_length = le64_to_cpu(lock_ele[i].Length); 7523 if (lock_length > OFFSET_MAX - flock->fl_start) 7524 lock_length = OFFSET_MAX - flock->fl_start; 7525 7526 flock->fl_end = flock->fl_start + lock_length; 7527 7528 if (flock->fl_end < flock->fl_start) { 7529 ksmbd_debug(SMB, 7530 "the end offset(%llx) is smaller than the start offset(%llx)\n", 7531 flock->fl_end, flock->fl_start); 7532 rsp->hdr.Status = STATUS_INVALID_LOCK_RANGE; 7533 locks_free_lock(flock); 7534 goto out; 7535 } 7536 7537 /* Check conflict locks in one request */ 7538 list_for_each_entry(cmp_lock, &lock_list, llist) { 7539 if (cmp_lock->fl->fl_start <= flock->fl_start && 7540 cmp_lock->fl->fl_end >= flock->fl_end) { 7541 if (cmp_lock->fl->c.flc_type != F_UNLCK && 7542 flock->c.flc_type != F_UNLCK) { 7543 pr_err("conflict two locks in one request\n"); 7544 err = -EINVAL; 7545 locks_free_lock(flock); 7546 goto out; 7547 } 7548 } 7549 } 7550 7551 smb_lock = smb2_lock_init(flock, cmd, flags, &lock_list); 7552 if (!smb_lock) { 7553 err = -EINVAL; 7554 locks_free_lock(flock); 7555 goto out; 7556 } 7557 } 7558 7559 list_for_each_entry_safe(smb_lock, tmp, &lock_list, llist) { 7560 if (smb_lock->cmd < 0) { 7561 err = -EINVAL; 7562 goto out; 7563 } 7564 7565 if (!(smb_lock->flags & SMB2_LOCKFLAG_MASK)) { 7566 err = -EINVAL; 7567 goto out; 7568 } 7569 7570 if ((prior_lock & (SMB2_LOCKFLAG_EXCLUSIVE | SMB2_LOCKFLAG_SHARED) && 7571 smb_lock->flags & SMB2_LOCKFLAG_UNLOCK) || 7572 (prior_lock == SMB2_LOCKFLAG_UNLOCK && 7573 !(smb_lock->flags & SMB2_LOCKFLAG_UNLOCK))) { 7574 err = -EINVAL; 7575 goto out; 7576 } 7577 7578 prior_lock = smb_lock->flags; 7579 7580 if (!(smb_lock->flags & SMB2_LOCKFLAG_UNLOCK) && 7581 !(smb_lock->flags & SMB2_LOCKFLAG_FAIL_IMMEDIATELY)) 7582 goto no_check_cl; 7583 7584 nolock = 1; 7585 /* check locks in connection list */ 7586 down_read(&conn_list_lock); 7587 hash_for_each(conn_list, bkt, conn, hlist) { 7588 spin_lock(&conn->llist_lock); 7589 list_for_each_entry_safe(cmp_lock, tmp2, &conn->lock_list, clist) { 7590 if (file_inode(cmp_lock->fl->c.flc_file) != 7591 file_inode(smb_lock->fl->c.flc_file)) 7592 continue; 7593 7594 if (lock_is_unlock(smb_lock->fl)) { 7595 if (cmp_lock->fl->c.flc_file == smb_lock->fl->c.flc_file && 7596 cmp_lock->start == smb_lock->start && 7597 cmp_lock->end == smb_lock->end && 7598 !lock_defer_pending(cmp_lock->fl)) { 7599 nolock = 0; 7600 list_del(&cmp_lock->flist); 7601 list_del(&cmp_lock->clist); 7602 spin_unlock(&conn->llist_lock); 7603 up_read(&conn_list_lock); 7604 7605 locks_free_lock(cmp_lock->fl); 7606 kfree(cmp_lock); 7607 goto out_check_cl; 7608 } 7609 continue; 7610 } 7611 7612 if (cmp_lock->fl->c.flc_file == smb_lock->fl->c.flc_file) { 7613 if (smb_lock->flags & SMB2_LOCKFLAG_SHARED) 7614 continue; 7615 } else { 7616 if (cmp_lock->flags & SMB2_LOCKFLAG_SHARED) 7617 continue; 7618 } 7619 7620 /* check zero byte lock range */ 7621 if (cmp_lock->zero_len && !smb_lock->zero_len && 7622 cmp_lock->start > smb_lock->start && 7623 cmp_lock->start < smb_lock->end) { 7624 spin_unlock(&conn->llist_lock); 7625 up_read(&conn_list_lock); 7626 pr_err("previous lock conflict with zero byte lock range\n"); 7627 goto out; 7628 } 7629 7630 if (smb_lock->zero_len && !cmp_lock->zero_len && 7631 smb_lock->start > cmp_lock->start && 7632 smb_lock->start < cmp_lock->end) { 7633 spin_unlock(&conn->llist_lock); 7634 up_read(&conn_list_lock); 7635 pr_err("current lock conflict with zero byte lock range\n"); 7636 goto out; 7637 } 7638 7639 if (((cmp_lock->start <= smb_lock->start && 7640 cmp_lock->end > smb_lock->start) || 7641 (cmp_lock->start < smb_lock->end && 7642 cmp_lock->end >= smb_lock->end)) && 7643 !cmp_lock->zero_len && !smb_lock->zero_len) { 7644 spin_unlock(&conn->llist_lock); 7645 up_read(&conn_list_lock); 7646 pr_err("Not allow lock operation on exclusive lock range\n"); 7647 goto out; 7648 } 7649 } 7650 spin_unlock(&conn->llist_lock); 7651 } 7652 up_read(&conn_list_lock); 7653 out_check_cl: 7654 if (lock_is_unlock(smb_lock->fl) && nolock) { 7655 pr_err("Try to unlock nolocked range\n"); 7656 rsp->hdr.Status = STATUS_RANGE_NOT_LOCKED; 7657 goto out; 7658 } 7659 7660 no_check_cl: 7661 flock = smb_lock->fl; 7662 list_del(&smb_lock->llist); 7663 7664 if (smb_lock->zero_len) { 7665 err = 0; 7666 goto skip; 7667 } 7668 retry: 7669 rc = vfs_lock_file(filp, smb_lock->cmd, flock, NULL); 7670 skip: 7671 if (smb_lock->flags & SMB2_LOCKFLAG_UNLOCK) { 7672 locks_free_lock(flock); 7673 kfree(smb_lock); 7674 if (!rc) { 7675 ksmbd_debug(SMB, "File unlocked\n"); 7676 } else if (rc == -ENOENT) { 7677 rsp->hdr.Status = STATUS_NOT_LOCKED; 7678 err = rc; 7679 goto out; 7680 } 7681 } else { 7682 if (rc == FILE_LOCK_DEFERRED) { 7683 void **argv; 7684 7685 ksmbd_debug(SMB, 7686 "would have to wait for getting lock\n"); 7687 list_add(&smb_lock->llist, &rollback_list); 7688 7689 argv = kmalloc(sizeof(void *), KSMBD_DEFAULT_GFP); 7690 if (!argv) { 7691 err = -ENOMEM; 7692 goto out; 7693 } 7694 argv[0] = flock; 7695 7696 rc = setup_async_work(work, 7697 smb2_remove_blocked_lock, 7698 argv); 7699 if (rc) { 7700 kfree(argv); 7701 err = -ENOMEM; 7702 goto out; 7703 } 7704 spin_lock(&fp->f_lock); 7705 list_add(&work->fp_entry, &fp->blocked_works); 7706 spin_unlock(&fp->f_lock); 7707 7708 smb2_send_interim_resp(work, STATUS_PENDING); 7709 7710 ksmbd_vfs_posix_lock_wait(flock); 7711 7712 spin_lock(&fp->f_lock); 7713 list_del(&work->fp_entry); 7714 spin_unlock(&fp->f_lock); 7715 7716 if (work->state != KSMBD_WORK_ACTIVE) { 7717 list_del(&smb_lock->llist); 7718 locks_free_lock(flock); 7719 7720 if (work->state == KSMBD_WORK_CANCELLED) { 7721 rsp->hdr.Status = 7722 STATUS_CANCELLED; 7723 kfree(smb_lock); 7724 smb2_send_interim_resp(work, 7725 STATUS_CANCELLED); 7726 work->send_no_response = 1; 7727 goto out; 7728 } 7729 7730 rsp->hdr.Status = 7731 STATUS_RANGE_NOT_LOCKED; 7732 kfree(smb_lock); 7733 goto out2; 7734 } 7735 7736 list_del(&smb_lock->llist); 7737 release_async_work(work); 7738 goto retry; 7739 } else if (!rc) { 7740 list_add(&smb_lock->llist, &rollback_list); 7741 spin_lock(&work->conn->llist_lock); 7742 list_add_tail(&smb_lock->clist, 7743 &work->conn->lock_list); 7744 list_add_tail(&smb_lock->flist, 7745 &fp->lock_list); 7746 spin_unlock(&work->conn->llist_lock); 7747 ksmbd_debug(SMB, "successful in taking lock\n"); 7748 } else { 7749 locks_free_lock(flock); 7750 kfree(smb_lock); 7751 err = rc; 7752 goto out; 7753 } 7754 } 7755 } 7756 7757 if (atomic_read(&fp->f_ci->op_count) > 1) 7758 smb_break_all_oplock(work, fp); 7759 7760 rsp->StructureSize = cpu_to_le16(4); 7761 ksmbd_debug(SMB, "successful in taking lock\n"); 7762 rsp->hdr.Status = STATUS_SUCCESS; 7763 rsp->Reserved = 0; 7764 err = ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_lock_rsp)); 7765 if (err) 7766 goto out; 7767 7768 ksmbd_fd_put(work, fp); 7769 return 0; 7770 7771 out: 7772 list_for_each_entry_safe(smb_lock, tmp, &lock_list, llist) { 7773 locks_free_lock(smb_lock->fl); 7774 list_del(&smb_lock->llist); 7775 kfree(smb_lock); 7776 } 7777 7778 list_for_each_entry_safe(smb_lock, tmp, &rollback_list, llist) { 7779 struct file_lock *rlock = NULL; 7780 7781 rlock = smb_flock_init(filp); 7782 if (rlock) { 7783 rlock->c.flc_type = F_UNLCK; 7784 rlock->fl_start = smb_lock->start; 7785 rlock->fl_end = smb_lock->end; 7786 7787 rc = vfs_lock_file(filp, F_SETLK, rlock, NULL); 7788 if (rc) 7789 pr_err("rollback unlock fail : %d\n", rc); 7790 } else { 7791 pr_err("rollback unlock alloc failed\n"); 7792 } 7793 7794 list_del(&smb_lock->llist); 7795 spin_lock(&work->conn->llist_lock); 7796 if (!list_empty(&smb_lock->flist)) 7797 list_del(&smb_lock->flist); 7798 list_del(&smb_lock->clist); 7799 spin_unlock(&work->conn->llist_lock); 7800 7801 locks_free_lock(smb_lock->fl); 7802 if (rlock) 7803 locks_free_lock(rlock); 7804 kfree(smb_lock); 7805 } 7806 out2: 7807 ksmbd_debug(SMB, "failed in taking lock(flags : %x), err : %d\n", flags, err); 7808 7809 if (!rsp->hdr.Status) { 7810 if (err == -EINVAL) 7811 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 7812 else if (err == -ENOMEM) 7813 rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES; 7814 else if (err == -ENOENT) 7815 rsp->hdr.Status = STATUS_FILE_CLOSED; 7816 else 7817 rsp->hdr.Status = STATUS_LOCK_NOT_GRANTED; 7818 } 7819 7820 smb2_set_err_rsp(work); 7821 ksmbd_fd_put(work, fp); 7822 return err; 7823 } 7824 7825 static int fsctl_copychunk(struct ksmbd_work *work, 7826 struct copychunk_ioctl_req *ci_req, 7827 unsigned int cnt_code, 7828 unsigned int input_count, 7829 unsigned long long volatile_id, 7830 unsigned long long persistent_id, 7831 struct smb2_ioctl_rsp *rsp) 7832 { 7833 struct copychunk_ioctl_rsp *ci_rsp; 7834 struct ksmbd_file *src_fp = NULL, *dst_fp = NULL; 7835 struct srv_copychunk *chunks; 7836 unsigned int i, chunk_count, chunk_count_written = 0; 7837 unsigned int chunk_size_written = 0; 7838 loff_t total_size_written = 0; 7839 int ret = 0; 7840 7841 ci_rsp = (struct copychunk_ioctl_rsp *)&rsp->Buffer[0]; 7842 7843 rsp->VolatileFileId = volatile_id; 7844 rsp->PersistentFileId = persistent_id; 7845 ci_rsp->ChunksWritten = 7846 cpu_to_le32(ksmbd_server_side_copy_max_chunk_count()); 7847 ci_rsp->ChunkBytesWritten = 7848 cpu_to_le32(ksmbd_server_side_copy_max_chunk_size()); 7849 ci_rsp->TotalBytesWritten = 7850 cpu_to_le32(ksmbd_server_side_copy_max_total_size()); 7851 7852 chunk_count = le32_to_cpu(ci_req->ChunkCount); 7853 if (chunk_count == 0) 7854 goto out; 7855 total_size_written = 0; 7856 7857 /* verify the SRV_COPYCHUNK_COPY packet */ 7858 if (chunk_count > ksmbd_server_side_copy_max_chunk_count() || 7859 input_count < struct_size(ci_req, Chunks, chunk_count)) { 7860 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 7861 return -EINVAL; 7862 } 7863 7864 chunks = &ci_req->Chunks[0]; 7865 for (i = 0; i < chunk_count; i++) { 7866 if (le32_to_cpu(chunks[i].Length) == 0 || 7867 le32_to_cpu(chunks[i].Length) > ksmbd_server_side_copy_max_chunk_size()) 7868 break; 7869 total_size_written += le32_to_cpu(chunks[i].Length); 7870 } 7871 7872 if (i < chunk_count || 7873 total_size_written > ksmbd_server_side_copy_max_total_size()) { 7874 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 7875 return -EINVAL; 7876 } 7877 7878 src_fp = ksmbd_lookup_foreign_fd(work, 7879 le64_to_cpu(ci_req->SourceKeyU64[0])); 7880 dst_fp = ksmbd_lookup_fd_slow(work, volatile_id, persistent_id); 7881 ret = -EINVAL; 7882 if (!src_fp || 7883 src_fp->persistent_id != le64_to_cpu(ci_req->SourceKeyU64[1])) { 7884 rsp->hdr.Status = STATUS_OBJECT_NAME_NOT_FOUND; 7885 goto out; 7886 } 7887 7888 if (!dst_fp) { 7889 rsp->hdr.Status = STATUS_FILE_CLOSED; 7890 goto out; 7891 } 7892 7893 /* 7894 * FILE_READ_DATA should only be included in 7895 * the FSCTL_COPYCHUNK case 7896 */ 7897 if (cnt_code == FSCTL_COPYCHUNK && 7898 !(dst_fp->daccess & (FILE_READ_DATA_LE | FILE_GENERIC_READ_LE))) { 7899 rsp->hdr.Status = STATUS_ACCESS_DENIED; 7900 goto out; 7901 } 7902 7903 ret = ksmbd_vfs_copy_file_ranges(work, src_fp, dst_fp, 7904 chunks, chunk_count, 7905 &chunk_count_written, 7906 &chunk_size_written, 7907 &total_size_written); 7908 if (ret < 0) { 7909 if (ret == -EACCES) 7910 rsp->hdr.Status = STATUS_ACCESS_DENIED; 7911 if (ret == -EAGAIN) 7912 rsp->hdr.Status = STATUS_FILE_LOCK_CONFLICT; 7913 else if (ret == -EBADF) 7914 rsp->hdr.Status = STATUS_INVALID_HANDLE; 7915 else if (ret == -EFBIG || ret == -ENOSPC) 7916 rsp->hdr.Status = STATUS_DISK_FULL; 7917 else if (ret == -EINVAL) 7918 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 7919 else if (ret == -EISDIR) 7920 rsp->hdr.Status = STATUS_FILE_IS_A_DIRECTORY; 7921 else if (ret == -E2BIG) 7922 rsp->hdr.Status = STATUS_INVALID_VIEW_SIZE; 7923 else 7924 rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR; 7925 } 7926 7927 ci_rsp->ChunksWritten = cpu_to_le32(chunk_count_written); 7928 ci_rsp->ChunkBytesWritten = cpu_to_le32(chunk_size_written); 7929 ci_rsp->TotalBytesWritten = cpu_to_le32(total_size_written); 7930 out: 7931 ksmbd_fd_put(work, src_fp); 7932 ksmbd_fd_put(work, dst_fp); 7933 return ret; 7934 } 7935 7936 static __be32 idev_ipv4_address(struct in_device *idev) 7937 { 7938 __be32 addr = 0; 7939 7940 struct in_ifaddr *ifa; 7941 7942 rcu_read_lock(); 7943 in_dev_for_each_ifa_rcu(ifa, idev) { 7944 if (ifa->ifa_flags & IFA_F_SECONDARY) 7945 continue; 7946 7947 addr = ifa->ifa_address; 7948 break; 7949 } 7950 rcu_read_unlock(); 7951 return addr; 7952 } 7953 7954 static int fsctl_query_iface_info_ioctl(struct ksmbd_conn *conn, 7955 struct smb2_ioctl_rsp *rsp, 7956 unsigned int out_buf_len) 7957 { 7958 struct network_interface_info_ioctl_rsp *nii_rsp = NULL; 7959 int nbytes = 0; 7960 struct net_device *netdev; 7961 struct sockaddr_storage_rsp *sockaddr_storage; 7962 unsigned int flags; 7963 unsigned long long speed; 7964 7965 rtnl_lock(); 7966 for_each_netdev(&init_net, netdev) { 7967 bool ipv4_set = false; 7968 7969 if (netdev->type == ARPHRD_LOOPBACK) 7970 continue; 7971 7972 if (!ksmbd_find_netdev_name_iface_list(netdev->name)) 7973 continue; 7974 7975 flags = netif_get_flags(netdev); 7976 if (!(flags & IFF_RUNNING)) 7977 continue; 7978 ipv6_retry: 7979 if (out_buf_len < 7980 nbytes + sizeof(struct network_interface_info_ioctl_rsp)) { 7981 rtnl_unlock(); 7982 return -ENOSPC; 7983 } 7984 7985 nii_rsp = (struct network_interface_info_ioctl_rsp *) 7986 &rsp->Buffer[nbytes]; 7987 nii_rsp->IfIndex = cpu_to_le32(netdev->ifindex); 7988 7989 nii_rsp->Capability = 0; 7990 if (netdev->real_num_tx_queues > 1) 7991 nii_rsp->Capability |= RSS_CAPABLE; 7992 if (ksmbd_rdma_capable_netdev(netdev)) 7993 nii_rsp->Capability |= RDMA_CAPABLE; 7994 7995 nii_rsp->Next = cpu_to_le32(152); 7996 nii_rsp->Reserved = 0; 7997 7998 if (netdev->ethtool_ops->get_link_ksettings) { 7999 struct ethtool_link_ksettings cmd; 8000 8001 netdev->ethtool_ops->get_link_ksettings(netdev, &cmd); 8002 speed = cmd.base.speed; 8003 } else { 8004 ksmbd_debug(SMB, "%s %s\n", netdev->name, 8005 "speed is unknown, defaulting to 1Gb/sec"); 8006 speed = SPEED_1000; 8007 } 8008 8009 speed *= 1000000; 8010 nii_rsp->LinkSpeed = cpu_to_le64(speed); 8011 8012 sockaddr_storage = (struct sockaddr_storage_rsp *) 8013 nii_rsp->SockAddr_Storage; 8014 memset(sockaddr_storage, 0, 128); 8015 8016 if (!ipv4_set) { 8017 struct in_device *idev; 8018 8019 sockaddr_storage->Family = INTERNETWORK; 8020 sockaddr_storage->addr4.Port = 0; 8021 8022 idev = __in_dev_get_rtnl(netdev); 8023 if (!idev) 8024 continue; 8025 sockaddr_storage->addr4.IPv4Address = 8026 idev_ipv4_address(idev); 8027 nbytes += sizeof(struct network_interface_info_ioctl_rsp); 8028 ipv4_set = true; 8029 goto ipv6_retry; 8030 } else { 8031 struct inet6_dev *idev6; 8032 struct inet6_ifaddr *ifa; 8033 __u8 *ipv6_addr = sockaddr_storage->addr6.IPv6Address; 8034 8035 sockaddr_storage->Family = INTERNETWORKV6; 8036 sockaddr_storage->addr6.Port = 0; 8037 sockaddr_storage->addr6.FlowInfo = 0; 8038 8039 idev6 = __in6_dev_get(netdev); 8040 if (!idev6) 8041 continue; 8042 8043 list_for_each_entry(ifa, &idev6->addr_list, if_list) { 8044 if (ifa->flags & (IFA_F_TENTATIVE | 8045 IFA_F_DEPRECATED)) 8046 continue; 8047 memcpy(ipv6_addr, ifa->addr.s6_addr, 16); 8048 break; 8049 } 8050 sockaddr_storage->addr6.ScopeId = 0; 8051 nbytes += sizeof(struct network_interface_info_ioctl_rsp); 8052 } 8053 } 8054 rtnl_unlock(); 8055 8056 /* zero if this is last one */ 8057 if (nii_rsp) 8058 nii_rsp->Next = 0; 8059 8060 rsp->PersistentFileId = SMB2_NO_FID; 8061 rsp->VolatileFileId = SMB2_NO_FID; 8062 return nbytes; 8063 } 8064 8065 static int fsctl_validate_negotiate_info(struct ksmbd_conn *conn, 8066 struct validate_negotiate_info_req *neg_req, 8067 struct validate_negotiate_info_rsp *neg_rsp, 8068 unsigned int in_buf_len) 8069 { 8070 int ret = 0; 8071 int dialect; 8072 8073 if (in_buf_len < offsetof(struct validate_negotiate_info_req, Dialects) + 8074 le16_to_cpu(neg_req->DialectCount) * sizeof(__le16)) 8075 return -EINVAL; 8076 8077 dialect = ksmbd_lookup_dialect_by_id(neg_req->Dialects, 8078 neg_req->DialectCount); 8079 if (dialect == BAD_PROT_ID || dialect != conn->dialect) { 8080 ret = -EINVAL; 8081 goto err_out; 8082 } 8083 8084 if (strncmp(neg_req->Guid, conn->ClientGUID, SMB2_CLIENT_GUID_SIZE)) { 8085 ret = -EINVAL; 8086 goto err_out; 8087 } 8088 8089 if (le16_to_cpu(neg_req->SecurityMode) != conn->cli_sec_mode) { 8090 ret = -EINVAL; 8091 goto err_out; 8092 } 8093 8094 if (le32_to_cpu(neg_req->Capabilities) != conn->cli_cap) { 8095 ret = -EINVAL; 8096 goto err_out; 8097 } 8098 8099 neg_rsp->Capabilities = cpu_to_le32(conn->vals->req_capabilities); 8100 memset(neg_rsp->Guid, 0, SMB2_CLIENT_GUID_SIZE); 8101 neg_rsp->SecurityMode = cpu_to_le16(conn->srv_sec_mode); 8102 neg_rsp->Dialect = cpu_to_le16(conn->dialect); 8103 err_out: 8104 return ret; 8105 } 8106 8107 static int fsctl_query_allocated_ranges(struct ksmbd_work *work, u64 id, 8108 struct file_allocated_range_buffer *qar_req, 8109 struct file_allocated_range_buffer *qar_rsp, 8110 unsigned int in_count, unsigned int *out_count) 8111 { 8112 struct ksmbd_file *fp; 8113 loff_t start, length; 8114 int ret = 0; 8115 8116 *out_count = 0; 8117 if (in_count == 0) 8118 return -EINVAL; 8119 8120 start = le64_to_cpu(qar_req->file_offset); 8121 length = le64_to_cpu(qar_req->length); 8122 8123 if (start < 0 || length < 0) 8124 return -EINVAL; 8125 8126 fp = ksmbd_lookup_fd_fast(work, id); 8127 if (!fp) 8128 return -ENOENT; 8129 8130 ret = ksmbd_vfs_fqar_lseek(fp, start, length, 8131 qar_rsp, in_count, out_count); 8132 if (ret && ret != -E2BIG) 8133 *out_count = 0; 8134 8135 ksmbd_fd_put(work, fp); 8136 return ret; 8137 } 8138 8139 static int fsctl_pipe_transceive(struct ksmbd_work *work, u64 id, 8140 unsigned int out_buf_len, 8141 struct smb2_ioctl_req *req, 8142 struct smb2_ioctl_rsp *rsp) 8143 { 8144 struct ksmbd_rpc_command *rpc_resp; 8145 char *data_buf = (char *)req + le32_to_cpu(req->InputOffset); 8146 int nbytes = 0; 8147 8148 rpc_resp = ksmbd_rpc_ioctl(work->sess, id, data_buf, 8149 le32_to_cpu(req->InputCount)); 8150 if (rpc_resp) { 8151 if (rpc_resp->flags == KSMBD_RPC_SOME_NOT_MAPPED) { 8152 /* 8153 * set STATUS_SOME_NOT_MAPPED response 8154 * for unknown domain sid. 8155 */ 8156 rsp->hdr.Status = STATUS_SOME_NOT_MAPPED; 8157 } else if (rpc_resp->flags == KSMBD_RPC_ENOTIMPLEMENTED) { 8158 rsp->hdr.Status = STATUS_NOT_SUPPORTED; 8159 goto out; 8160 } else if (rpc_resp->flags != KSMBD_RPC_OK) { 8161 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 8162 goto out; 8163 } 8164 8165 nbytes = rpc_resp->payload_sz; 8166 if (rpc_resp->payload_sz > out_buf_len) { 8167 rsp->hdr.Status = STATUS_BUFFER_OVERFLOW; 8168 nbytes = out_buf_len; 8169 } 8170 8171 if (!rpc_resp->payload_sz) { 8172 rsp->hdr.Status = 8173 STATUS_UNEXPECTED_IO_ERROR; 8174 goto out; 8175 } 8176 8177 memcpy((char *)rsp->Buffer, rpc_resp->payload, nbytes); 8178 } 8179 out: 8180 kvfree(rpc_resp); 8181 return nbytes; 8182 } 8183 8184 static inline int fsctl_set_sparse(struct ksmbd_work *work, u64 id, 8185 struct file_sparse *sparse) 8186 { 8187 struct ksmbd_file *fp; 8188 struct mnt_idmap *idmap; 8189 int ret = 0; 8190 __le32 old_fattr; 8191 8192 fp = ksmbd_lookup_fd_fast(work, id); 8193 if (!fp) 8194 return -ENOENT; 8195 idmap = file_mnt_idmap(fp->filp); 8196 8197 old_fattr = fp->f_ci->m_fattr; 8198 if (sparse->SetSparse) 8199 fp->f_ci->m_fattr |= FILE_ATTRIBUTE_SPARSE_FILE_LE; 8200 else 8201 fp->f_ci->m_fattr &= ~FILE_ATTRIBUTE_SPARSE_FILE_LE; 8202 8203 if (fp->f_ci->m_fattr != old_fattr && 8204 test_share_config_flag(work->tcon->share_conf, 8205 KSMBD_SHARE_FLAG_STORE_DOS_ATTRS)) { 8206 struct xattr_dos_attrib da; 8207 8208 ret = ksmbd_vfs_get_dos_attrib_xattr(idmap, 8209 fp->filp->f_path.dentry, &da); 8210 if (ret <= 0) 8211 goto out; 8212 8213 da.attr = le32_to_cpu(fp->f_ci->m_fattr); 8214 ret = ksmbd_vfs_set_dos_attrib_xattr(idmap, 8215 &fp->filp->f_path, 8216 &da, true); 8217 if (ret) 8218 fp->f_ci->m_fattr = old_fattr; 8219 } 8220 8221 out: 8222 ksmbd_fd_put(work, fp); 8223 return ret; 8224 } 8225 8226 static int fsctl_request_resume_key(struct ksmbd_work *work, 8227 struct smb2_ioctl_req *req, 8228 struct resume_key_ioctl_rsp *key_rsp) 8229 { 8230 struct ksmbd_file *fp; 8231 8232 fp = ksmbd_lookup_fd_slow(work, req->VolatileFileId, req->PersistentFileId); 8233 if (!fp) 8234 return -ENOENT; 8235 8236 memset(key_rsp, 0, sizeof(*key_rsp)); 8237 key_rsp->ResumeKeyU64[0] = req->VolatileFileId; 8238 key_rsp->ResumeKeyU64[1] = req->PersistentFileId; 8239 ksmbd_fd_put(work, fp); 8240 8241 return 0; 8242 } 8243 8244 /** 8245 * smb2_ioctl() - handler for smb2 ioctl command 8246 * @work: smb work containing ioctl command buffer 8247 * 8248 * Return: 0 on success, otherwise error 8249 */ 8250 int smb2_ioctl(struct ksmbd_work *work) 8251 { 8252 struct smb2_ioctl_req *req; 8253 struct smb2_ioctl_rsp *rsp; 8254 unsigned int cnt_code, nbytes = 0, out_buf_len, in_buf_len; 8255 u64 id = KSMBD_NO_FID; 8256 struct ksmbd_conn *conn = work->conn; 8257 int ret = 0; 8258 char *buffer; 8259 8260 ksmbd_debug(SMB, "Received smb2 ioctl request\n"); 8261 8262 if (work->next_smb2_rcv_hdr_off) { 8263 req = ksmbd_req_buf_next(work); 8264 rsp = ksmbd_resp_buf_next(work); 8265 if (!has_file_id(req->VolatileFileId)) { 8266 ksmbd_debug(SMB, "Compound request set FID = %llu\n", 8267 work->compound_fid); 8268 id = work->compound_fid; 8269 } 8270 } else { 8271 req = smb_get_msg(work->request_buf); 8272 rsp = smb_get_msg(work->response_buf); 8273 } 8274 8275 if (!has_file_id(id)) 8276 id = req->VolatileFileId; 8277 8278 if (req->Flags != cpu_to_le32(SMB2_0_IOCTL_IS_FSCTL)) { 8279 ret = -EOPNOTSUPP; 8280 goto out; 8281 } 8282 8283 buffer = (char *)req + le32_to_cpu(req->InputOffset); 8284 8285 cnt_code = le32_to_cpu(req->CtlCode); 8286 ret = smb2_calc_max_out_buf_len(work, 8287 offsetof(struct smb2_ioctl_rsp, Buffer), 8288 le32_to_cpu(req->MaxOutputResponse)); 8289 if (ret < 0) { 8290 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 8291 goto out; 8292 } 8293 out_buf_len = (unsigned int)ret; 8294 in_buf_len = le32_to_cpu(req->InputCount); 8295 8296 switch (cnt_code) { 8297 case FSCTL_DFS_GET_REFERRALS: 8298 case FSCTL_DFS_GET_REFERRALS_EX: 8299 /* Not support DFS yet */ 8300 ret = -EOPNOTSUPP; 8301 rsp->hdr.Status = STATUS_FS_DRIVER_REQUIRED; 8302 goto out2; 8303 case FSCTL_CREATE_OR_GET_OBJECT_ID: 8304 { 8305 struct file_object_buf_type1_ioctl_rsp *obj_buf; 8306 8307 nbytes = sizeof(struct file_object_buf_type1_ioctl_rsp); 8308 obj_buf = (struct file_object_buf_type1_ioctl_rsp *) 8309 &rsp->Buffer[0]; 8310 8311 /* 8312 * TODO: This is dummy implementation to pass smbtorture 8313 * Need to check correct response later 8314 */ 8315 memset(obj_buf->ObjectId, 0x0, 16); 8316 memset(obj_buf->BirthVolumeId, 0x0, 16); 8317 memset(obj_buf->BirthObjectId, 0x0, 16); 8318 memset(obj_buf->DomainId, 0x0, 16); 8319 8320 break; 8321 } 8322 case FSCTL_PIPE_TRANSCEIVE: 8323 out_buf_len = min_t(u32, KSMBD_IPC_MAX_PAYLOAD, out_buf_len); 8324 nbytes = fsctl_pipe_transceive(work, id, out_buf_len, req, rsp); 8325 break; 8326 case FSCTL_VALIDATE_NEGOTIATE_INFO: 8327 if (conn->dialect < SMB30_PROT_ID) { 8328 ret = -EOPNOTSUPP; 8329 goto out; 8330 } 8331 8332 if (in_buf_len < offsetof(struct validate_negotiate_info_req, 8333 Dialects)) { 8334 ret = -EINVAL; 8335 goto out; 8336 } 8337 8338 if (out_buf_len < sizeof(struct validate_negotiate_info_rsp)) { 8339 ret = -EINVAL; 8340 goto out; 8341 } 8342 8343 ret = fsctl_validate_negotiate_info(conn, 8344 (struct validate_negotiate_info_req *)buffer, 8345 (struct validate_negotiate_info_rsp *)&rsp->Buffer[0], 8346 in_buf_len); 8347 if (ret < 0) 8348 goto out; 8349 8350 nbytes = sizeof(struct validate_negotiate_info_rsp); 8351 rsp->PersistentFileId = SMB2_NO_FID; 8352 rsp->VolatileFileId = SMB2_NO_FID; 8353 break; 8354 case FSCTL_QUERY_NETWORK_INTERFACE_INFO: 8355 ret = fsctl_query_iface_info_ioctl(conn, rsp, out_buf_len); 8356 if (ret < 0) 8357 goto out; 8358 nbytes = ret; 8359 break; 8360 case FSCTL_REQUEST_RESUME_KEY: 8361 if (out_buf_len < sizeof(struct resume_key_ioctl_rsp)) { 8362 ret = -EINVAL; 8363 goto out; 8364 } 8365 8366 ret = fsctl_request_resume_key(work, req, 8367 (struct resume_key_ioctl_rsp *)&rsp->Buffer[0]); 8368 if (ret < 0) 8369 goto out; 8370 rsp->PersistentFileId = req->PersistentFileId; 8371 rsp->VolatileFileId = req->VolatileFileId; 8372 nbytes = sizeof(struct resume_key_ioctl_rsp); 8373 break; 8374 case FSCTL_COPYCHUNK: 8375 case FSCTL_COPYCHUNK_WRITE: 8376 if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) { 8377 ksmbd_debug(SMB, 8378 "User does not have write permission\n"); 8379 ret = -EACCES; 8380 goto out; 8381 } 8382 8383 if (in_buf_len <= sizeof(struct copychunk_ioctl_req)) { 8384 ret = -EINVAL; 8385 goto out; 8386 } 8387 8388 if (out_buf_len < sizeof(struct copychunk_ioctl_rsp)) { 8389 ret = -EINVAL; 8390 goto out; 8391 } 8392 8393 nbytes = sizeof(struct copychunk_ioctl_rsp); 8394 rsp->VolatileFileId = req->VolatileFileId; 8395 rsp->PersistentFileId = req->PersistentFileId; 8396 fsctl_copychunk(work, 8397 (struct copychunk_ioctl_req *)buffer, 8398 le32_to_cpu(req->CtlCode), 8399 le32_to_cpu(req->InputCount), 8400 req->VolatileFileId, 8401 req->PersistentFileId, 8402 rsp); 8403 break; 8404 case FSCTL_SET_SPARSE: 8405 if (in_buf_len < sizeof(struct file_sparse)) { 8406 ret = -EINVAL; 8407 goto out; 8408 } 8409 8410 ret = fsctl_set_sparse(work, id, (struct file_sparse *)buffer); 8411 if (ret < 0) 8412 goto out; 8413 break; 8414 case FSCTL_SET_ZERO_DATA: 8415 { 8416 struct file_zero_data_information *zero_data; 8417 struct ksmbd_file *fp; 8418 loff_t off, len, bfz; 8419 8420 if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) { 8421 ksmbd_debug(SMB, 8422 "User does not have write permission\n"); 8423 ret = -EACCES; 8424 goto out; 8425 } 8426 8427 if (in_buf_len < sizeof(struct file_zero_data_information)) { 8428 ret = -EINVAL; 8429 goto out; 8430 } 8431 8432 zero_data = 8433 (struct file_zero_data_information *)buffer; 8434 8435 off = le64_to_cpu(zero_data->FileOffset); 8436 bfz = le64_to_cpu(zero_data->BeyondFinalZero); 8437 if (off < 0 || bfz < 0 || off > bfz) { 8438 ret = -EINVAL; 8439 goto out; 8440 } 8441 8442 len = bfz - off; 8443 if (len) { 8444 fp = ksmbd_lookup_fd_fast(work, id); 8445 if (!fp) { 8446 ret = -ENOENT; 8447 goto out; 8448 } 8449 8450 ret = ksmbd_vfs_zero_data(work, fp, off, len); 8451 ksmbd_fd_put(work, fp); 8452 if (ret < 0) 8453 goto out; 8454 } 8455 break; 8456 } 8457 case FSCTL_QUERY_ALLOCATED_RANGES: 8458 if (in_buf_len < sizeof(struct file_allocated_range_buffer)) { 8459 ret = -EINVAL; 8460 goto out; 8461 } 8462 8463 ret = fsctl_query_allocated_ranges(work, id, 8464 (struct file_allocated_range_buffer *)buffer, 8465 (struct file_allocated_range_buffer *)&rsp->Buffer[0], 8466 out_buf_len / 8467 sizeof(struct file_allocated_range_buffer), &nbytes); 8468 if (ret == -E2BIG) { 8469 rsp->hdr.Status = STATUS_BUFFER_OVERFLOW; 8470 } else if (ret < 0) { 8471 nbytes = 0; 8472 goto out; 8473 } 8474 8475 nbytes *= sizeof(struct file_allocated_range_buffer); 8476 break; 8477 case FSCTL_GET_REPARSE_POINT: 8478 { 8479 struct reparse_data_buffer *reparse_ptr; 8480 struct ksmbd_file *fp; 8481 8482 reparse_ptr = (struct reparse_data_buffer *)&rsp->Buffer[0]; 8483 fp = ksmbd_lookup_fd_fast(work, id); 8484 if (!fp) { 8485 pr_err("not found fp!!\n"); 8486 ret = -ENOENT; 8487 goto out; 8488 } 8489 8490 reparse_ptr->ReparseTag = 8491 smb2_get_reparse_tag_special_file(file_inode(fp->filp)->i_mode); 8492 reparse_ptr->ReparseDataLength = 0; 8493 ksmbd_fd_put(work, fp); 8494 nbytes = sizeof(struct reparse_data_buffer); 8495 break; 8496 } 8497 case FSCTL_DUPLICATE_EXTENTS_TO_FILE: 8498 { 8499 struct ksmbd_file *fp_in, *fp_out = NULL; 8500 struct duplicate_extents_to_file *dup_ext; 8501 loff_t src_off, dst_off, length, cloned; 8502 8503 if (in_buf_len < sizeof(struct duplicate_extents_to_file)) { 8504 ret = -EINVAL; 8505 goto out; 8506 } 8507 8508 dup_ext = (struct duplicate_extents_to_file *)buffer; 8509 8510 fp_in = ksmbd_lookup_fd_slow(work, dup_ext->VolatileFileHandle, 8511 dup_ext->PersistentFileHandle); 8512 if (!fp_in) { 8513 pr_err("not found file handle in duplicate extent to file\n"); 8514 ret = -ENOENT; 8515 goto out; 8516 } 8517 8518 fp_out = ksmbd_lookup_fd_fast(work, id); 8519 if (!fp_out) { 8520 pr_err("not found fp\n"); 8521 ret = -ENOENT; 8522 goto dup_ext_out; 8523 } 8524 8525 src_off = le64_to_cpu(dup_ext->SourceFileOffset); 8526 dst_off = le64_to_cpu(dup_ext->TargetFileOffset); 8527 length = le64_to_cpu(dup_ext->ByteCount); 8528 /* 8529 * XXX: It is not clear if FSCTL_DUPLICATE_EXTENTS_TO_FILE 8530 * should fall back to vfs_copy_file_range(). This could be 8531 * beneficial when re-exporting nfs/smb mount, but note that 8532 * this can result in partial copy that returns an error status. 8533 * If/when FSCTL_DUPLICATE_EXTENTS_TO_FILE_EX is implemented, 8534 * fall back to vfs_copy_file_range(), should be avoided when 8535 * the flag DUPLICATE_EXTENTS_DATA_EX_SOURCE_ATOMIC is set. 8536 */ 8537 cloned = vfs_clone_file_range(fp_in->filp, src_off, 8538 fp_out->filp, dst_off, length, 0); 8539 if (cloned == -EXDEV || cloned == -EOPNOTSUPP) { 8540 ret = -EOPNOTSUPP; 8541 goto dup_ext_out; 8542 } else if (cloned != length) { 8543 cloned = vfs_copy_file_range(fp_in->filp, src_off, 8544 fp_out->filp, dst_off, 8545 length, 0); 8546 if (cloned != length) { 8547 if (cloned < 0) 8548 ret = cloned; 8549 else 8550 ret = -EINVAL; 8551 } 8552 } 8553 8554 dup_ext_out: 8555 ksmbd_fd_put(work, fp_in); 8556 ksmbd_fd_put(work, fp_out); 8557 if (ret < 0) 8558 goto out; 8559 break; 8560 } 8561 default: 8562 ksmbd_debug(SMB, "not implemented yet ioctl command 0x%x\n", 8563 cnt_code); 8564 ret = -EOPNOTSUPP; 8565 goto out; 8566 } 8567 8568 rsp->CtlCode = cpu_to_le32(cnt_code); 8569 rsp->InputCount = cpu_to_le32(0); 8570 rsp->InputOffset = cpu_to_le32(112); 8571 rsp->OutputOffset = cpu_to_le32(112); 8572 rsp->OutputCount = cpu_to_le32(nbytes); 8573 rsp->StructureSize = cpu_to_le16(49); 8574 rsp->Reserved = cpu_to_le16(0); 8575 rsp->Flags = cpu_to_le32(0); 8576 rsp->Reserved2 = cpu_to_le32(0); 8577 ret = ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_ioctl_rsp) + nbytes); 8578 if (!ret) 8579 return ret; 8580 8581 out: 8582 if (ret == -EACCES) 8583 rsp->hdr.Status = STATUS_ACCESS_DENIED; 8584 else if (ret == -ENOENT) 8585 rsp->hdr.Status = STATUS_OBJECT_NAME_NOT_FOUND; 8586 else if (ret == -EOPNOTSUPP) 8587 rsp->hdr.Status = STATUS_NOT_SUPPORTED; 8588 else if (ret == -ENOSPC) 8589 rsp->hdr.Status = STATUS_BUFFER_TOO_SMALL; 8590 else if (ret < 0 || rsp->hdr.Status == 0) 8591 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 8592 8593 out2: 8594 smb2_set_err_rsp(work); 8595 return ret; 8596 } 8597 8598 /** 8599 * smb20_oplock_break_ack() - handler for smb2.0 oplock break command 8600 * @work: smb work containing oplock break command buffer 8601 * 8602 * Return: 0 8603 */ 8604 static void smb20_oplock_break_ack(struct ksmbd_work *work) 8605 { 8606 struct smb2_oplock_break *req; 8607 struct smb2_oplock_break *rsp; 8608 struct ksmbd_file *fp; 8609 struct oplock_info *opinfo = NULL; 8610 __le32 err = 0; 8611 int ret = 0; 8612 u64 volatile_id, persistent_id; 8613 char req_oplevel = 0, rsp_oplevel = 0; 8614 unsigned int oplock_change_type; 8615 8616 WORK_BUFFERS(work, req, rsp); 8617 8618 volatile_id = req->VolatileFid; 8619 persistent_id = req->PersistentFid; 8620 req_oplevel = req->OplockLevel; 8621 ksmbd_debug(OPLOCK, "v_id %llu, p_id %llu request oplock level %d\n", 8622 volatile_id, persistent_id, req_oplevel); 8623 8624 fp = ksmbd_lookup_fd_slow(work, volatile_id, persistent_id); 8625 if (!fp) { 8626 rsp->hdr.Status = STATUS_FILE_CLOSED; 8627 smb2_set_err_rsp(work); 8628 return; 8629 } 8630 8631 opinfo = opinfo_get(fp); 8632 if (!opinfo) { 8633 pr_err("unexpected null oplock_info\n"); 8634 rsp->hdr.Status = STATUS_INVALID_OPLOCK_PROTOCOL; 8635 smb2_set_err_rsp(work); 8636 ksmbd_fd_put(work, fp); 8637 return; 8638 } 8639 8640 if (opinfo->level == SMB2_OPLOCK_LEVEL_NONE) { 8641 rsp->hdr.Status = STATUS_INVALID_OPLOCK_PROTOCOL; 8642 goto err_out; 8643 } 8644 8645 if (opinfo->op_state == OPLOCK_STATE_NONE) { 8646 ksmbd_debug(SMB, "unexpected oplock state 0x%x\n", opinfo->op_state); 8647 rsp->hdr.Status = STATUS_UNSUCCESSFUL; 8648 goto err_out; 8649 } 8650 8651 if ((opinfo->level == SMB2_OPLOCK_LEVEL_EXCLUSIVE || 8652 opinfo->level == SMB2_OPLOCK_LEVEL_BATCH) && 8653 (req_oplevel != SMB2_OPLOCK_LEVEL_II && 8654 req_oplevel != SMB2_OPLOCK_LEVEL_NONE)) { 8655 err = STATUS_INVALID_OPLOCK_PROTOCOL; 8656 oplock_change_type = OPLOCK_WRITE_TO_NONE; 8657 } else if (opinfo->level == SMB2_OPLOCK_LEVEL_II && 8658 req_oplevel != SMB2_OPLOCK_LEVEL_NONE) { 8659 err = STATUS_INVALID_OPLOCK_PROTOCOL; 8660 oplock_change_type = OPLOCK_READ_TO_NONE; 8661 } else if (req_oplevel == SMB2_OPLOCK_LEVEL_II || 8662 req_oplevel == SMB2_OPLOCK_LEVEL_NONE) { 8663 err = STATUS_INVALID_DEVICE_STATE; 8664 if ((opinfo->level == SMB2_OPLOCK_LEVEL_EXCLUSIVE || 8665 opinfo->level == SMB2_OPLOCK_LEVEL_BATCH) && 8666 req_oplevel == SMB2_OPLOCK_LEVEL_II) { 8667 oplock_change_type = OPLOCK_WRITE_TO_READ; 8668 } else if ((opinfo->level == SMB2_OPLOCK_LEVEL_EXCLUSIVE || 8669 opinfo->level == SMB2_OPLOCK_LEVEL_BATCH) && 8670 req_oplevel == SMB2_OPLOCK_LEVEL_NONE) { 8671 oplock_change_type = OPLOCK_WRITE_TO_NONE; 8672 } else if (opinfo->level == SMB2_OPLOCK_LEVEL_II && 8673 req_oplevel == SMB2_OPLOCK_LEVEL_NONE) { 8674 oplock_change_type = OPLOCK_READ_TO_NONE; 8675 } else { 8676 oplock_change_type = 0; 8677 } 8678 } else { 8679 oplock_change_type = 0; 8680 } 8681 8682 switch (oplock_change_type) { 8683 case OPLOCK_WRITE_TO_READ: 8684 ret = opinfo_write_to_read(opinfo); 8685 rsp_oplevel = SMB2_OPLOCK_LEVEL_II; 8686 break; 8687 case OPLOCK_WRITE_TO_NONE: 8688 ret = opinfo_write_to_none(opinfo); 8689 rsp_oplevel = SMB2_OPLOCK_LEVEL_NONE; 8690 break; 8691 case OPLOCK_READ_TO_NONE: 8692 ret = opinfo_read_to_none(opinfo); 8693 rsp_oplevel = SMB2_OPLOCK_LEVEL_NONE; 8694 break; 8695 default: 8696 pr_err("unknown oplock change 0x%x -> 0x%x\n", 8697 opinfo->level, rsp_oplevel); 8698 } 8699 8700 if (ret < 0) { 8701 rsp->hdr.Status = err; 8702 goto err_out; 8703 } 8704 8705 rsp->StructureSize = cpu_to_le16(24); 8706 rsp->OplockLevel = rsp_oplevel; 8707 rsp->Reserved = 0; 8708 rsp->Reserved2 = 0; 8709 rsp->VolatileFid = volatile_id; 8710 rsp->PersistentFid = persistent_id; 8711 ret = ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_oplock_break)); 8712 if (ret) { 8713 err_out: 8714 smb2_set_err_rsp(work); 8715 } 8716 8717 opinfo->op_state = OPLOCK_STATE_NONE; 8718 wake_up_interruptible_all(&opinfo->oplock_q); 8719 opinfo_put(opinfo); 8720 ksmbd_fd_put(work, fp); 8721 } 8722 8723 static int check_lease_state(struct lease *lease, __le32 req_state) 8724 { 8725 if ((lease->new_state == 8726 (SMB2_LEASE_READ_CACHING_LE | SMB2_LEASE_HANDLE_CACHING_LE)) && 8727 !(req_state & SMB2_LEASE_WRITE_CACHING_LE)) { 8728 lease->new_state = req_state; 8729 return 0; 8730 } 8731 8732 if (lease->new_state == req_state) 8733 return 0; 8734 8735 return 1; 8736 } 8737 8738 /** 8739 * smb21_lease_break_ack() - handler for smb2.1 lease break command 8740 * @work: smb work containing lease break command buffer 8741 * 8742 * Return: 0 8743 */ 8744 static void smb21_lease_break_ack(struct ksmbd_work *work) 8745 { 8746 struct ksmbd_conn *conn = work->conn; 8747 struct smb2_lease_ack *req; 8748 struct smb2_lease_ack *rsp; 8749 struct oplock_info *opinfo; 8750 __le32 err = 0; 8751 int ret = 0; 8752 unsigned int lease_change_type; 8753 __le32 lease_state; 8754 struct lease *lease; 8755 8756 WORK_BUFFERS(work, req, rsp); 8757 8758 ksmbd_debug(OPLOCK, "smb21 lease break, lease state(0x%x)\n", 8759 le32_to_cpu(req->LeaseState)); 8760 opinfo = lookup_lease_in_table(conn, req->LeaseKey); 8761 if (!opinfo) { 8762 ksmbd_debug(OPLOCK, "file not opened\n"); 8763 smb2_set_err_rsp(work); 8764 rsp->hdr.Status = STATUS_UNSUCCESSFUL; 8765 return; 8766 } 8767 lease = opinfo->o_lease; 8768 8769 if (opinfo->op_state == OPLOCK_STATE_NONE) { 8770 pr_err("unexpected lease break state 0x%x\n", 8771 opinfo->op_state); 8772 rsp->hdr.Status = STATUS_UNSUCCESSFUL; 8773 goto err_out; 8774 } 8775 8776 if (check_lease_state(lease, req->LeaseState)) { 8777 rsp->hdr.Status = STATUS_REQUEST_NOT_ACCEPTED; 8778 ksmbd_debug(OPLOCK, 8779 "req lease state: 0x%x, expected state: 0x%x\n", 8780 req->LeaseState, lease->new_state); 8781 goto err_out; 8782 } 8783 8784 if (!atomic_read(&opinfo->breaking_cnt)) { 8785 rsp->hdr.Status = STATUS_UNSUCCESSFUL; 8786 goto err_out; 8787 } 8788 8789 /* check for bad lease state */ 8790 if (req->LeaseState & 8791 (~(SMB2_LEASE_READ_CACHING_LE | SMB2_LEASE_HANDLE_CACHING_LE))) { 8792 err = STATUS_INVALID_OPLOCK_PROTOCOL; 8793 if (lease->state & SMB2_LEASE_WRITE_CACHING_LE) 8794 lease_change_type = OPLOCK_WRITE_TO_NONE; 8795 else 8796 lease_change_type = OPLOCK_READ_TO_NONE; 8797 ksmbd_debug(OPLOCK, "handle bad lease state 0x%x -> 0x%x\n", 8798 le32_to_cpu(lease->state), 8799 le32_to_cpu(req->LeaseState)); 8800 } else if (lease->state == SMB2_LEASE_READ_CACHING_LE && 8801 req->LeaseState != SMB2_LEASE_NONE_LE) { 8802 err = STATUS_INVALID_OPLOCK_PROTOCOL; 8803 lease_change_type = OPLOCK_READ_TO_NONE; 8804 ksmbd_debug(OPLOCK, "handle bad lease state 0x%x -> 0x%x\n", 8805 le32_to_cpu(lease->state), 8806 le32_to_cpu(req->LeaseState)); 8807 } else { 8808 /* valid lease state changes */ 8809 err = STATUS_INVALID_DEVICE_STATE; 8810 if (req->LeaseState == SMB2_LEASE_NONE_LE) { 8811 if (lease->state & SMB2_LEASE_WRITE_CACHING_LE) 8812 lease_change_type = OPLOCK_WRITE_TO_NONE; 8813 else 8814 lease_change_type = OPLOCK_READ_TO_NONE; 8815 } else if (req->LeaseState & SMB2_LEASE_READ_CACHING_LE) { 8816 if (lease->state & SMB2_LEASE_WRITE_CACHING_LE) 8817 lease_change_type = OPLOCK_WRITE_TO_READ; 8818 else 8819 lease_change_type = OPLOCK_READ_HANDLE_TO_READ; 8820 } else { 8821 lease_change_type = 0; 8822 } 8823 } 8824 8825 switch (lease_change_type) { 8826 case OPLOCK_WRITE_TO_READ: 8827 ret = opinfo_write_to_read(opinfo); 8828 break; 8829 case OPLOCK_READ_HANDLE_TO_READ: 8830 ret = opinfo_read_handle_to_read(opinfo); 8831 break; 8832 case OPLOCK_WRITE_TO_NONE: 8833 ret = opinfo_write_to_none(opinfo); 8834 break; 8835 case OPLOCK_READ_TO_NONE: 8836 ret = opinfo_read_to_none(opinfo); 8837 break; 8838 default: 8839 ksmbd_debug(OPLOCK, "unknown lease change 0x%x -> 0x%x\n", 8840 le32_to_cpu(lease->state), 8841 le32_to_cpu(req->LeaseState)); 8842 } 8843 8844 if (ret < 0) { 8845 rsp->hdr.Status = err; 8846 goto err_out; 8847 } 8848 8849 lease_state = lease->state; 8850 8851 rsp->StructureSize = cpu_to_le16(36); 8852 rsp->Reserved = 0; 8853 rsp->Flags = 0; 8854 memcpy(rsp->LeaseKey, req->LeaseKey, 16); 8855 rsp->LeaseState = lease_state; 8856 rsp->LeaseDuration = 0; 8857 ret = ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_lease_ack)); 8858 if (ret) { 8859 err_out: 8860 smb2_set_err_rsp(work); 8861 } 8862 8863 opinfo->op_state = OPLOCK_STATE_NONE; 8864 wake_up_interruptible_all(&opinfo->oplock_q); 8865 atomic_dec(&opinfo->breaking_cnt); 8866 wake_up_interruptible_all(&opinfo->oplock_brk); 8867 opinfo_put(opinfo); 8868 } 8869 8870 /** 8871 * smb2_oplock_break() - dispatcher for smb2.0 and 2.1 oplock/lease break 8872 * @work: smb work containing oplock/lease break command buffer 8873 * 8874 * Return: 0 on success, otherwise error 8875 */ 8876 int smb2_oplock_break(struct ksmbd_work *work) 8877 { 8878 struct smb2_oplock_break *req; 8879 struct smb2_oplock_break *rsp; 8880 8881 ksmbd_debug(SMB, "Received smb2 oplock break acknowledgment request\n"); 8882 8883 WORK_BUFFERS(work, req, rsp); 8884 8885 switch (le16_to_cpu(req->StructureSize)) { 8886 case OP_BREAK_STRUCT_SIZE_20: 8887 smb20_oplock_break_ack(work); 8888 break; 8889 case OP_BREAK_STRUCT_SIZE_21: 8890 smb21_lease_break_ack(work); 8891 break; 8892 default: 8893 ksmbd_debug(OPLOCK, "invalid break cmd %d\n", 8894 le16_to_cpu(req->StructureSize)); 8895 rsp->hdr.Status = STATUS_INVALID_PARAMETER; 8896 smb2_set_err_rsp(work); 8897 return -EINVAL; 8898 } 8899 8900 return 0; 8901 } 8902 8903 /** 8904 * smb2_notify() - handler for smb2 notify request 8905 * @work: smb work containing notify command buffer 8906 * 8907 * Return: 0 on success, otherwise error 8908 */ 8909 int smb2_notify(struct ksmbd_work *work) 8910 { 8911 struct smb2_change_notify_req *req; 8912 struct smb2_change_notify_rsp *rsp; 8913 8914 ksmbd_debug(SMB, "Received smb2 notify\n"); 8915 8916 WORK_BUFFERS(work, req, rsp); 8917 8918 if (work->next_smb2_rcv_hdr_off && req->hdr.NextCommand) { 8919 rsp->hdr.Status = STATUS_INTERNAL_ERROR; 8920 smb2_set_err_rsp(work); 8921 return -EIO; 8922 } 8923 8924 smb2_set_err_rsp(work); 8925 rsp->hdr.Status = STATUS_NOT_IMPLEMENTED; 8926 return -EOPNOTSUPP; 8927 } 8928 8929 /** 8930 * smb2_is_sign_req() - handler for checking packet signing status 8931 * @work: smb work containing notify command buffer 8932 * @command: SMB2 command id 8933 * 8934 * Return: true if packed is signed, false otherwise 8935 */ 8936 bool smb2_is_sign_req(struct ksmbd_work *work, unsigned int command) 8937 { 8938 struct smb2_hdr *rcv_hdr2 = smb_get_msg(work->request_buf); 8939 8940 if ((rcv_hdr2->Flags & SMB2_FLAGS_SIGNED) && 8941 command != SMB2_NEGOTIATE_HE && 8942 command != SMB2_SESSION_SETUP_HE && 8943 command != SMB2_OPLOCK_BREAK_HE) 8944 return true; 8945 8946 return false; 8947 } 8948 8949 /** 8950 * smb2_check_sign_req() - handler for req packet sign processing 8951 * @work: smb work containing notify command buffer 8952 * 8953 * Return: 1 on success, 0 otherwise 8954 */ 8955 int smb2_check_sign_req(struct ksmbd_work *work) 8956 { 8957 struct smb2_hdr *hdr; 8958 char signature_req[SMB2_SIGNATURE_SIZE]; 8959 char signature[SMB2_HMACSHA256_SIZE]; 8960 struct kvec iov[1]; 8961 size_t len; 8962 8963 hdr = smb_get_msg(work->request_buf); 8964 if (work->next_smb2_rcv_hdr_off) 8965 hdr = ksmbd_req_buf_next(work); 8966 8967 if (!hdr->NextCommand && !work->next_smb2_rcv_hdr_off) 8968 len = get_rfc1002_len(work->request_buf); 8969 else if (hdr->NextCommand) 8970 len = le32_to_cpu(hdr->NextCommand); 8971 else 8972 len = get_rfc1002_len(work->request_buf) - 8973 work->next_smb2_rcv_hdr_off; 8974 8975 memcpy(signature_req, hdr->Signature, SMB2_SIGNATURE_SIZE); 8976 memset(hdr->Signature, 0, SMB2_SIGNATURE_SIZE); 8977 8978 iov[0].iov_base = (char *)&hdr->ProtocolId; 8979 iov[0].iov_len = len; 8980 8981 ksmbd_sign_smb2_pdu(work->conn, work->sess->sess_key, iov, 1, 8982 signature); 8983 8984 if (crypto_memneq(signature, signature_req, SMB2_SIGNATURE_SIZE)) { 8985 pr_err("bad smb2 signature\n"); 8986 return 0; 8987 } 8988 8989 return 1; 8990 } 8991 8992 /** 8993 * smb2_set_sign_rsp() - handler for rsp packet sign processing 8994 * @work: smb work containing notify command buffer 8995 * 8996 */ 8997 void smb2_set_sign_rsp(struct ksmbd_work *work) 8998 { 8999 struct smb2_hdr *hdr; 9000 char signature[SMB2_HMACSHA256_SIZE]; 9001 struct kvec *iov; 9002 int n_vec = 1; 9003 9004 hdr = ksmbd_resp_buf_curr(work); 9005 hdr->Flags |= SMB2_FLAGS_SIGNED; 9006 memset(hdr->Signature, 0, SMB2_SIGNATURE_SIZE); 9007 9008 if (hdr->Command == SMB2_READ) { 9009 iov = &work->iov[work->iov_idx - 1]; 9010 n_vec++; 9011 } else { 9012 iov = &work->iov[work->iov_idx]; 9013 } 9014 9015 ksmbd_sign_smb2_pdu(work->conn, work->sess->sess_key, iov, n_vec, 9016 signature); 9017 memcpy(hdr->Signature, signature, SMB2_SIGNATURE_SIZE); 9018 } 9019 9020 /** 9021 * smb3_check_sign_req() - handler for req packet sign processing 9022 * @work: smb work containing notify command buffer 9023 * 9024 * Return: 1 on success, 0 otherwise 9025 */ 9026 int smb3_check_sign_req(struct ksmbd_work *work) 9027 { 9028 struct ksmbd_conn *conn = work->conn; 9029 char *signing_key; 9030 struct smb2_hdr *hdr; 9031 struct channel *chann; 9032 char signature_req[SMB2_SIGNATURE_SIZE]; 9033 char signature[SMB2_CMACAES_SIZE]; 9034 struct kvec iov[1]; 9035 size_t len; 9036 9037 hdr = smb_get_msg(work->request_buf); 9038 if (work->next_smb2_rcv_hdr_off) 9039 hdr = ksmbd_req_buf_next(work); 9040 9041 if (!hdr->NextCommand && !work->next_smb2_rcv_hdr_off) 9042 len = get_rfc1002_len(work->request_buf); 9043 else if (hdr->NextCommand) 9044 len = le32_to_cpu(hdr->NextCommand); 9045 else 9046 len = get_rfc1002_len(work->request_buf) - 9047 work->next_smb2_rcv_hdr_off; 9048 9049 if (le16_to_cpu(hdr->Command) == SMB2_SESSION_SETUP_HE) { 9050 signing_key = work->sess->smb3signingkey; 9051 } else { 9052 chann = lookup_chann_list(work->sess, conn); 9053 if (!chann) { 9054 return 0; 9055 } 9056 signing_key = chann->smb3signingkey; 9057 } 9058 9059 if (!signing_key) { 9060 pr_err("SMB3 signing key is not generated\n"); 9061 return 0; 9062 } 9063 9064 memcpy(signature_req, hdr->Signature, SMB2_SIGNATURE_SIZE); 9065 memset(hdr->Signature, 0, SMB2_SIGNATURE_SIZE); 9066 iov[0].iov_base = (char *)&hdr->ProtocolId; 9067 iov[0].iov_len = len; 9068 9069 ksmbd_sign_smb3_pdu(conn, signing_key, iov, 1, signature); 9070 9071 if (crypto_memneq(signature, signature_req, SMB2_SIGNATURE_SIZE)) { 9072 pr_err("bad smb2 signature\n"); 9073 return 0; 9074 } 9075 9076 return 1; 9077 } 9078 9079 /** 9080 * smb3_set_sign_rsp() - handler for rsp packet sign processing 9081 * @work: smb work containing notify command buffer 9082 * 9083 */ 9084 void smb3_set_sign_rsp(struct ksmbd_work *work) 9085 { 9086 struct ksmbd_conn *conn = work->conn; 9087 struct smb2_hdr *hdr; 9088 struct channel *chann; 9089 char signature[SMB2_CMACAES_SIZE]; 9090 struct kvec *iov; 9091 int n_vec = 1; 9092 char *signing_key; 9093 9094 hdr = ksmbd_resp_buf_curr(work); 9095 9096 if (conn->binding == false && 9097 le16_to_cpu(hdr->Command) == SMB2_SESSION_SETUP_HE) { 9098 signing_key = work->sess->smb3signingkey; 9099 } else { 9100 chann = lookup_chann_list(work->sess, work->conn); 9101 if (!chann) { 9102 return; 9103 } 9104 signing_key = chann->smb3signingkey; 9105 } 9106 9107 if (!signing_key) 9108 return; 9109 9110 hdr->Flags |= SMB2_FLAGS_SIGNED; 9111 memset(hdr->Signature, 0, SMB2_SIGNATURE_SIZE); 9112 9113 if (hdr->Command == SMB2_READ) { 9114 iov = &work->iov[work->iov_idx - 1]; 9115 n_vec++; 9116 } else { 9117 iov = &work->iov[work->iov_idx]; 9118 } 9119 9120 ksmbd_sign_smb3_pdu(conn, signing_key, iov, n_vec, signature); 9121 memcpy(hdr->Signature, signature, SMB2_SIGNATURE_SIZE); 9122 } 9123 9124 /** 9125 * smb3_preauth_hash_rsp() - handler for computing preauth hash on response 9126 * @work: smb work containing response buffer 9127 * 9128 */ 9129 void smb3_preauth_hash_rsp(struct ksmbd_work *work) 9130 { 9131 struct ksmbd_conn *conn = work->conn; 9132 struct ksmbd_session *sess = work->sess; 9133 struct smb2_hdr *req, *rsp; 9134 9135 if (conn->dialect != SMB311_PROT_ID) 9136 return; 9137 9138 WORK_BUFFERS(work, req, rsp); 9139 9140 if (le16_to_cpu(req->Command) == SMB2_NEGOTIATE_HE && 9141 conn->preauth_info) 9142 ksmbd_gen_preauth_integrity_hash(conn, work->response_buf, 9143 conn->preauth_info->Preauth_HashValue); 9144 9145 if (le16_to_cpu(rsp->Command) == SMB2_SESSION_SETUP_HE && sess) { 9146 __u8 *hash_value; 9147 9148 if (conn->binding) { 9149 struct preauth_session *preauth_sess; 9150 9151 preauth_sess = ksmbd_preauth_session_lookup(conn, sess->id); 9152 if (!preauth_sess) 9153 return; 9154 hash_value = preauth_sess->Preauth_HashValue; 9155 } else { 9156 hash_value = sess->Preauth_HashValue; 9157 if (!hash_value) 9158 return; 9159 } 9160 ksmbd_gen_preauth_integrity_hash(conn, work->response_buf, 9161 hash_value); 9162 } 9163 } 9164 9165 static void fill_transform_hdr(void *tr_buf, char *old_buf, __le16 cipher_type) 9166 { 9167 struct smb2_transform_hdr *tr_hdr = tr_buf + 4; 9168 struct smb2_hdr *hdr = smb_get_msg(old_buf); 9169 unsigned int orig_len = get_rfc1002_len(old_buf); 9170 9171 /* tr_buf must be cleared by the caller */ 9172 tr_hdr->ProtocolId = SMB2_TRANSFORM_PROTO_NUM; 9173 tr_hdr->OriginalMessageSize = cpu_to_le32(orig_len); 9174 tr_hdr->Flags = cpu_to_le16(TRANSFORM_FLAG_ENCRYPTED); 9175 if (cipher_type == SMB2_ENCRYPTION_AES128_GCM || 9176 cipher_type == SMB2_ENCRYPTION_AES256_GCM) 9177 get_random_bytes(&tr_hdr->Nonce, SMB3_AES_GCM_NONCE); 9178 else 9179 get_random_bytes(&tr_hdr->Nonce, SMB3_AES_CCM_NONCE); 9180 memcpy(&tr_hdr->SessionId, &hdr->SessionId, 8); 9181 inc_rfc1001_len(tr_buf, sizeof(struct smb2_transform_hdr)); 9182 inc_rfc1001_len(tr_buf, orig_len); 9183 } 9184 9185 int smb3_encrypt_resp(struct ksmbd_work *work) 9186 { 9187 struct kvec *iov = work->iov; 9188 int rc = -ENOMEM; 9189 void *tr_buf; 9190 9191 tr_buf = kzalloc(sizeof(struct smb2_transform_hdr) + 4, KSMBD_DEFAULT_GFP); 9192 if (!tr_buf) 9193 return rc; 9194 9195 /* fill transform header */ 9196 fill_transform_hdr(tr_buf, work->response_buf, work->conn->cipher_type); 9197 9198 iov[0].iov_base = tr_buf; 9199 iov[0].iov_len = sizeof(struct smb2_transform_hdr) + 4; 9200 work->tr_buf = tr_buf; 9201 9202 return ksmbd_crypt_message(work, iov, work->iov_idx + 1, 1); 9203 } 9204 9205 bool smb3_is_transform_hdr(void *buf) 9206 { 9207 struct smb2_transform_hdr *trhdr = smb_get_msg(buf); 9208 9209 return trhdr->ProtocolId == SMB2_TRANSFORM_PROTO_NUM; 9210 } 9211 9212 int smb3_decrypt_req(struct ksmbd_work *work) 9213 { 9214 struct ksmbd_session *sess; 9215 char *buf = work->request_buf; 9216 unsigned int pdu_length = get_rfc1002_len(buf); 9217 struct kvec iov[2]; 9218 int buf_data_size = pdu_length - sizeof(struct smb2_transform_hdr); 9219 struct smb2_transform_hdr *tr_hdr = smb_get_msg(buf); 9220 int rc = 0; 9221 9222 if (pdu_length < sizeof(struct smb2_transform_hdr) || 9223 buf_data_size < sizeof(struct smb2_hdr)) { 9224 pr_err("Transform message is too small (%u)\n", 9225 pdu_length); 9226 return -ECONNABORTED; 9227 } 9228 9229 if (buf_data_size < le32_to_cpu(tr_hdr->OriginalMessageSize)) { 9230 pr_err("Transform message is broken\n"); 9231 return -ECONNABORTED; 9232 } 9233 9234 sess = ksmbd_session_lookup_all(work->conn, le64_to_cpu(tr_hdr->SessionId)); 9235 if (!sess) { 9236 pr_err("invalid session id(%llx) in transform header\n", 9237 le64_to_cpu(tr_hdr->SessionId)); 9238 return -ECONNABORTED; 9239 } 9240 ksmbd_user_session_put(sess); 9241 9242 iov[0].iov_base = buf; 9243 iov[0].iov_len = sizeof(struct smb2_transform_hdr) + 4; 9244 iov[1].iov_base = buf + sizeof(struct smb2_transform_hdr) + 4; 9245 iov[1].iov_len = buf_data_size; 9246 rc = ksmbd_crypt_message(work, iov, 2, 0); 9247 if (rc) 9248 return rc; 9249 9250 memmove(buf + 4, iov[1].iov_base, buf_data_size); 9251 *(__be32 *)buf = cpu_to_be32(buf_data_size); 9252 9253 return rc; 9254 } 9255 9256 bool smb3_11_final_sess_setup_resp(struct ksmbd_work *work) 9257 { 9258 struct ksmbd_conn *conn = work->conn; 9259 struct ksmbd_session *sess = work->sess; 9260 struct smb2_hdr *rsp = smb_get_msg(work->response_buf); 9261 9262 if (conn->dialect < SMB30_PROT_ID) 9263 return false; 9264 9265 if (work->next_smb2_rcv_hdr_off) 9266 rsp = ksmbd_resp_buf_next(work); 9267 9268 if (le16_to_cpu(rsp->Command) == SMB2_SESSION_SETUP_HE && 9269 sess->user && !user_guest(sess->user) && 9270 rsp->Status == STATUS_SUCCESS) 9271 return true; 9272 return false; 9273 } 9274