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