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