xref: /linux/fs/smb/server/smb2pdu.c (revision 4cbfe4502e3d4bda48eb4b83dfad8d7da3b22e90)
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 		rc = ksmbd_update_fstate(&work->sess->file_table, fp,
3771 					 FP_INITED);
3772 		if (!rc)
3773 			rc = ksmbd_iov_pin_rsp(work, (void *)rsp, iov_len);
3774 	}
3775 	if (rc) {
3776 		if (rc == -EINVAL)
3777 			rsp->hdr.Status = STATUS_INVALID_PARAMETER;
3778 		else if (rc == -EOPNOTSUPP)
3779 			rsp->hdr.Status = STATUS_NOT_SUPPORTED;
3780 		else if (rc == -EACCES || rc == -ESTALE || rc == -EXDEV)
3781 			rsp->hdr.Status = STATUS_ACCESS_DENIED;
3782 		else if (rc == -ENOENT)
3783 			rsp->hdr.Status = STATUS_OBJECT_NAME_INVALID;
3784 		else if (rc == -EPERM)
3785 			rsp->hdr.Status = STATUS_SHARING_VIOLATION;
3786 		else if (rc == -EBUSY)
3787 			rsp->hdr.Status = STATUS_DELETE_PENDING;
3788 		else if (rc == -EBADF)
3789 			rsp->hdr.Status = STATUS_OBJECT_NAME_NOT_FOUND;
3790 		else if (rc == -ENOEXEC)
3791 			rsp->hdr.Status = STATUS_DUPLICATE_OBJECTID;
3792 		else if (rc == -ENXIO)
3793 			rsp->hdr.Status = STATUS_NO_SUCH_DEVICE;
3794 		else if (rc == -EEXIST)
3795 			rsp->hdr.Status = STATUS_OBJECT_NAME_COLLISION;
3796 		else if (rc == -EMFILE)
3797 			rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES;
3798 		if (!rsp->hdr.Status)
3799 			rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR;
3800 
3801 		if (fp)
3802 			ksmbd_fd_put(work, fp);
3803 		smb2_set_err_rsp(work);
3804 		ksmbd_debug(SMB, "Error response: %x\n", rsp->hdr.Status);
3805 	}
3806 
3807 	if (dh_info.reconnected) {
3808 		/*
3809 		 * If reconnect succeeded, fp was republished in the
3810 		 * session file table.  On a later error, ksmbd_fd_put()
3811 		 * above drops the session reference; drop the durable
3812 		 * lookup reference through the same session-aware path so
3813 		 * final close removes the volatile id before freeing fp.
3814 		 */
3815 		if (rc && fp == dh_info.fp)
3816 			ksmbd_fd_put(work, dh_info.fp);
3817 		else
3818 			ksmbd_put_durable_fd(dh_info.fp);
3819 	}
3820 
3821 	kfree(name);
3822 	kfree(lc);
3823 
3824 	return rc;
3825 }
3826 
readdir_info_level_struct_sz(int info_level)3827 static int readdir_info_level_struct_sz(int info_level)
3828 {
3829 	switch (info_level) {
3830 	case FILE_FULL_DIRECTORY_INFORMATION:
3831 		return sizeof(FILE_FULL_DIRECTORY_INFO);
3832 	case FILE_BOTH_DIRECTORY_INFORMATION:
3833 		return sizeof(FILE_BOTH_DIRECTORY_INFO);
3834 	case FILE_DIRECTORY_INFORMATION:
3835 		return sizeof(FILE_DIRECTORY_INFO);
3836 	case FILE_NAMES_INFORMATION:
3837 		return sizeof(struct file_names_info);
3838 	case FILEID_FULL_DIRECTORY_INFORMATION:
3839 		return sizeof(FILE_ID_FULL_DIR_INFO);
3840 	case FILEID_BOTH_DIRECTORY_INFORMATION:
3841 		return sizeof(struct file_id_both_directory_info);
3842 	case SMB_FIND_FILE_POSIX_INFO:
3843 		return sizeof(struct smb2_posix_info);
3844 	default:
3845 		return -EOPNOTSUPP;
3846 	}
3847 }
3848 
dentry_name(struct ksmbd_dir_info * d_info,int info_level)3849 static int dentry_name(struct ksmbd_dir_info *d_info, int info_level)
3850 {
3851 	switch (info_level) {
3852 	case FILE_FULL_DIRECTORY_INFORMATION:
3853 	{
3854 		FILE_FULL_DIRECTORY_INFO *ffdinfo;
3855 
3856 		ffdinfo = (FILE_FULL_DIRECTORY_INFO *)d_info->rptr;
3857 		d_info->rptr += le32_to_cpu(ffdinfo->NextEntryOffset);
3858 		d_info->name = ffdinfo->FileName;
3859 		d_info->name_len = le32_to_cpu(ffdinfo->FileNameLength);
3860 		return 0;
3861 	}
3862 	case FILE_BOTH_DIRECTORY_INFORMATION:
3863 	{
3864 		FILE_BOTH_DIRECTORY_INFO *fbdinfo;
3865 
3866 		fbdinfo = (FILE_BOTH_DIRECTORY_INFO *)d_info->rptr;
3867 		d_info->rptr += le32_to_cpu(fbdinfo->NextEntryOffset);
3868 		d_info->name = fbdinfo->FileName;
3869 		d_info->name_len = le32_to_cpu(fbdinfo->FileNameLength);
3870 		return 0;
3871 	}
3872 	case FILE_DIRECTORY_INFORMATION:
3873 	{
3874 		FILE_DIRECTORY_INFO *fdinfo;
3875 
3876 		fdinfo = (FILE_DIRECTORY_INFO *)d_info->rptr;
3877 		d_info->rptr += le32_to_cpu(fdinfo->NextEntryOffset);
3878 		d_info->name = fdinfo->FileName;
3879 		d_info->name_len = le32_to_cpu(fdinfo->FileNameLength);
3880 		return 0;
3881 	}
3882 	case FILE_NAMES_INFORMATION:
3883 	{
3884 		struct file_names_info *fninfo;
3885 
3886 		fninfo = (struct file_names_info *)d_info->rptr;
3887 		d_info->rptr += le32_to_cpu(fninfo->NextEntryOffset);
3888 		d_info->name = fninfo->FileName;
3889 		d_info->name_len = le32_to_cpu(fninfo->FileNameLength);
3890 		return 0;
3891 	}
3892 	case FILEID_FULL_DIRECTORY_INFORMATION:
3893 	{
3894 		FILE_ID_FULL_DIR_INFO *dinfo;
3895 
3896 		dinfo = (FILE_ID_FULL_DIR_INFO *)d_info->rptr;
3897 		d_info->rptr += le32_to_cpu(dinfo->NextEntryOffset);
3898 		d_info->name = dinfo->FileName;
3899 		d_info->name_len = le32_to_cpu(dinfo->FileNameLength);
3900 		return 0;
3901 	}
3902 	case FILEID_BOTH_DIRECTORY_INFORMATION:
3903 	{
3904 		struct file_id_both_directory_info *fibdinfo;
3905 
3906 		fibdinfo = (struct file_id_both_directory_info *)d_info->rptr;
3907 		d_info->rptr += le32_to_cpu(fibdinfo->NextEntryOffset);
3908 		d_info->name = fibdinfo->FileName;
3909 		d_info->name_len = le32_to_cpu(fibdinfo->FileNameLength);
3910 		return 0;
3911 	}
3912 	case SMB_FIND_FILE_POSIX_INFO:
3913 	{
3914 		struct smb2_posix_info *posix_info;
3915 
3916 		posix_info = (struct smb2_posix_info *)d_info->rptr;
3917 		d_info->rptr += le32_to_cpu(posix_info->NextEntryOffset);
3918 		d_info->name = posix_info->name;
3919 		d_info->name_len = le32_to_cpu(posix_info->name_len);
3920 		return 0;
3921 	}
3922 	default:
3923 		return -EINVAL;
3924 	}
3925 }
3926 
3927 /**
3928  * smb2_populate_readdir_entry() - encode directory entry in smb2 response
3929  * buffer
3930  * @conn:	connection instance
3931  * @info_level:	smb information level
3932  * @d_info:	structure included variables for query dir
3933  * @ksmbd_kstat:	ksmbd wrapper of dirent stat information
3934  *
3935  * if directory has many entries, find first can't read it fully.
3936  * find next might be called multiple times to read remaining dir entries
3937  *
3938  * Return:	0 on success, otherwise error
3939  */
smb2_populate_readdir_entry(struct ksmbd_conn * conn,int info_level,struct ksmbd_dir_info * d_info,struct ksmbd_kstat * ksmbd_kstat)3940 static int smb2_populate_readdir_entry(struct ksmbd_conn *conn, int info_level,
3941 				       struct ksmbd_dir_info *d_info,
3942 				       struct ksmbd_kstat *ksmbd_kstat)
3943 {
3944 	int next_entry_offset = 0;
3945 	char *conv_name;
3946 	int conv_len;
3947 	void *kstat;
3948 	int struct_sz, rc = 0;
3949 
3950 	conv_name = ksmbd_convert_dir_info_name(d_info,
3951 						conn->local_nls,
3952 						&conv_len);
3953 	if (!conv_name)
3954 		return -ENOMEM;
3955 
3956 	/* Somehow the name has only terminating NULL bytes */
3957 	if (conv_len < 0) {
3958 		rc = -EINVAL;
3959 		goto free_conv_name;
3960 	}
3961 
3962 	struct_sz = readdir_info_level_struct_sz(info_level);
3963 	if (struct_sz == -EOPNOTSUPP) {
3964 		rc = -EINVAL;
3965 		goto free_conv_name;
3966 	}
3967 
3968 	struct_sz += conv_len;
3969 	next_entry_offset = ALIGN(struct_sz, KSMBD_DIR_INFO_ALIGNMENT);
3970 	d_info->last_entry_off_align = next_entry_offset - struct_sz;
3971 
3972 	if (next_entry_offset > d_info->out_buf_len) {
3973 		d_info->out_buf_len = 0;
3974 		rc = -ENOSPC;
3975 		goto free_conv_name;
3976 	}
3977 
3978 	kstat = d_info->wptr;
3979 	if (info_level != FILE_NAMES_INFORMATION)
3980 		kstat = ksmbd_vfs_init_kstat(&d_info->wptr, ksmbd_kstat);
3981 
3982 	switch (info_level) {
3983 	case FILE_FULL_DIRECTORY_INFORMATION:
3984 	{
3985 		FILE_FULL_DIRECTORY_INFO *ffdinfo;
3986 
3987 		ffdinfo = (FILE_FULL_DIRECTORY_INFO *)kstat;
3988 		ffdinfo->FileNameLength = cpu_to_le32(conv_len);
3989 		ffdinfo->EaSize =
3990 			smb2_get_reparse_tag_special_file(ksmbd_kstat->kstat->mode);
3991 		if (ffdinfo->EaSize)
3992 			ffdinfo->ExtFileAttributes = FILE_ATTRIBUTE_REPARSE_POINT_LE;
3993 		if (d_info->hide_dot_file && d_info->name[0] == '.')
3994 			ffdinfo->ExtFileAttributes |= FILE_ATTRIBUTE_HIDDEN_LE;
3995 		memcpy(ffdinfo->FileName, conv_name, conv_len);
3996 		ffdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
3997 		break;
3998 	}
3999 	case FILE_BOTH_DIRECTORY_INFORMATION:
4000 	{
4001 		FILE_BOTH_DIRECTORY_INFO *fbdinfo;
4002 
4003 		fbdinfo = (FILE_BOTH_DIRECTORY_INFO *)kstat;
4004 		fbdinfo->FileNameLength = cpu_to_le32(conv_len);
4005 		fbdinfo->EaSize =
4006 			smb2_get_reparse_tag_special_file(ksmbd_kstat->kstat->mode);
4007 		if (fbdinfo->EaSize)
4008 			fbdinfo->ExtFileAttributes = FILE_ATTRIBUTE_REPARSE_POINT_LE;
4009 		fbdinfo->ShortNameLength = 0;
4010 		fbdinfo->Reserved = 0;
4011 		if (d_info->hide_dot_file && d_info->name[0] == '.')
4012 			fbdinfo->ExtFileAttributes |= FILE_ATTRIBUTE_HIDDEN_LE;
4013 		memcpy(fbdinfo->FileName, conv_name, conv_len);
4014 		fbdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
4015 		break;
4016 	}
4017 	case FILE_DIRECTORY_INFORMATION:
4018 	{
4019 		FILE_DIRECTORY_INFO *fdinfo;
4020 
4021 		fdinfo = (FILE_DIRECTORY_INFO *)kstat;
4022 		fdinfo->FileNameLength = cpu_to_le32(conv_len);
4023 		if (d_info->hide_dot_file && d_info->name[0] == '.')
4024 			fdinfo->ExtFileAttributes |= FILE_ATTRIBUTE_HIDDEN_LE;
4025 		memcpy(fdinfo->FileName, conv_name, conv_len);
4026 		fdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
4027 		break;
4028 	}
4029 	case FILE_NAMES_INFORMATION:
4030 	{
4031 		struct file_names_info *fninfo;
4032 
4033 		fninfo = (struct file_names_info *)kstat;
4034 		fninfo->FileNameLength = cpu_to_le32(conv_len);
4035 		memcpy(fninfo->FileName, conv_name, conv_len);
4036 		fninfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
4037 		break;
4038 	}
4039 	case FILEID_FULL_DIRECTORY_INFORMATION:
4040 	{
4041 		FILE_ID_FULL_DIR_INFO *dinfo;
4042 
4043 		dinfo = (FILE_ID_FULL_DIR_INFO *)kstat;
4044 		dinfo->FileNameLength = cpu_to_le32(conv_len);
4045 		dinfo->EaSize =
4046 			smb2_get_reparse_tag_special_file(ksmbd_kstat->kstat->mode);
4047 		if (dinfo->EaSize)
4048 			dinfo->ExtFileAttributes = FILE_ATTRIBUTE_REPARSE_POINT_LE;
4049 		dinfo->Reserved = 0;
4050 		if (conn->is_aapl)
4051 			dinfo->UniqueId = 0;
4052 		else
4053 			dinfo->UniqueId = cpu_to_le64(ksmbd_kstat->kstat->ino);
4054 		if (d_info->hide_dot_file && d_info->name[0] == '.')
4055 			dinfo->ExtFileAttributes |= FILE_ATTRIBUTE_HIDDEN_LE;
4056 		memcpy(dinfo->FileName, conv_name, conv_len);
4057 		dinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
4058 		break;
4059 	}
4060 	case FILEID_BOTH_DIRECTORY_INFORMATION:
4061 	{
4062 		struct file_id_both_directory_info *fibdinfo;
4063 
4064 		fibdinfo = (struct file_id_both_directory_info *)kstat;
4065 		fibdinfo->FileNameLength = cpu_to_le32(conv_len);
4066 		fibdinfo->EaSize =
4067 			smb2_get_reparse_tag_special_file(ksmbd_kstat->kstat->mode);
4068 		if (fibdinfo->EaSize)
4069 			fibdinfo->ExtFileAttributes = FILE_ATTRIBUTE_REPARSE_POINT_LE;
4070 		if (conn->is_aapl)
4071 			fibdinfo->UniqueId = 0;
4072 		else
4073 			fibdinfo->UniqueId = cpu_to_le64(ksmbd_kstat->kstat->ino);
4074 		fibdinfo->ShortNameLength = 0;
4075 		fibdinfo->Reserved = 0;
4076 		fibdinfo->Reserved2 = cpu_to_le16(0);
4077 		if (d_info->hide_dot_file && d_info->name[0] == '.')
4078 			fibdinfo->ExtFileAttributes |= FILE_ATTRIBUTE_HIDDEN_LE;
4079 		memcpy(fibdinfo->FileName, conv_name, conv_len);
4080 		fibdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
4081 		break;
4082 	}
4083 	case SMB_FIND_FILE_POSIX_INFO:
4084 	{
4085 		struct smb2_posix_info *posix_info;
4086 		u64 time;
4087 
4088 		posix_info = (struct smb2_posix_info *)kstat;
4089 		posix_info->Ignored = 0;
4090 		posix_info->CreationTime = cpu_to_le64(ksmbd_kstat->create_time);
4091 		time = ksmbd_UnixTimeToNT(ksmbd_kstat->kstat->ctime);
4092 		posix_info->ChangeTime = cpu_to_le64(time);
4093 		time = ksmbd_UnixTimeToNT(ksmbd_kstat->kstat->atime);
4094 		posix_info->LastAccessTime = cpu_to_le64(time);
4095 		time = ksmbd_UnixTimeToNT(ksmbd_kstat->kstat->mtime);
4096 		posix_info->LastWriteTime = cpu_to_le64(time);
4097 		posix_info->EndOfFile = cpu_to_le64(ksmbd_kstat->kstat->size);
4098 		posix_info->AllocationSize = cpu_to_le64(ksmbd_kstat->kstat->blocks << 9);
4099 		posix_info->DeviceId = cpu_to_le32(ksmbd_kstat->kstat->rdev);
4100 		posix_info->HardLinks = cpu_to_le32(ksmbd_kstat->kstat->nlink);
4101 		posix_info->Mode = cpu_to_le32(ksmbd_kstat->kstat->mode & 0777);
4102 		switch (ksmbd_kstat->kstat->mode & S_IFMT) {
4103 		case S_IFDIR:
4104 			posix_info->Mode |= cpu_to_le32(POSIX_TYPE_DIR << POSIX_FILETYPE_SHIFT);
4105 			break;
4106 		case S_IFLNK:
4107 			posix_info->Mode |= cpu_to_le32(POSIX_TYPE_SYMLINK << POSIX_FILETYPE_SHIFT);
4108 			break;
4109 		case S_IFCHR:
4110 			posix_info->Mode |= cpu_to_le32(POSIX_TYPE_CHARDEV << POSIX_FILETYPE_SHIFT);
4111 			break;
4112 		case S_IFBLK:
4113 			posix_info->Mode |= cpu_to_le32(POSIX_TYPE_BLKDEV << POSIX_FILETYPE_SHIFT);
4114 			break;
4115 		case S_IFIFO:
4116 			posix_info->Mode |= cpu_to_le32(POSIX_TYPE_FIFO << POSIX_FILETYPE_SHIFT);
4117 			break;
4118 		case S_IFSOCK:
4119 			posix_info->Mode |= cpu_to_le32(POSIX_TYPE_SOCKET << POSIX_FILETYPE_SHIFT);
4120 		}
4121 
4122 		posix_info->Inode = cpu_to_le64(ksmbd_kstat->kstat->ino);
4123 		posix_info->DosAttributes =
4124 			S_ISDIR(ksmbd_kstat->kstat->mode) ?
4125 				FILE_ATTRIBUTE_DIRECTORY_LE : FILE_ATTRIBUTE_ARCHIVE_LE;
4126 		if (d_info->hide_dot_file && d_info->name[0] == '.')
4127 			posix_info->DosAttributes |= FILE_ATTRIBUTE_HIDDEN_LE;
4128 		/*
4129 		 * SidBuffer(32) contain two sids(Domain sid(16), UNIX group sid(16)).
4130 		 * UNIX sid(16) = revision(1) + num_subauth(1) + authority(6) +
4131 		 *		  sub_auth(4 * 1(num_subauth)) + RID(4).
4132 		 */
4133 		id_to_sid(from_kuid_munged(&init_user_ns, ksmbd_kstat->kstat->uid),
4134 			  SIDUNIX_USER, (struct smb_sid *)&posix_info->SidBuffer[0]);
4135 		id_to_sid(from_kgid_munged(&init_user_ns, ksmbd_kstat->kstat->gid),
4136 			  SIDUNIX_GROUP, (struct smb_sid *)&posix_info->SidBuffer[16]);
4137 		memcpy(posix_info->name, conv_name, conv_len);
4138 		posix_info->name_len = cpu_to_le32(conv_len);
4139 		posix_info->NextEntryOffset = cpu_to_le32(next_entry_offset);
4140 		break;
4141 	}
4142 
4143 	} /* switch (info_level) */
4144 
4145 	d_info->last_entry_offset = d_info->data_count;
4146 	d_info->data_count += next_entry_offset;
4147 	d_info->out_buf_len -= next_entry_offset;
4148 	d_info->wptr += next_entry_offset;
4149 
4150 	ksmbd_debug(SMB,
4151 		    "info_level : %d, buf_len :%d, next_offset : %d, data_count : %d\n",
4152 		    info_level, d_info->out_buf_len,
4153 		    next_entry_offset, d_info->data_count);
4154 
4155 free_conv_name:
4156 	kfree(conv_name);
4157 	return rc;
4158 }
4159 
4160 struct smb2_query_dir_private {
4161 	struct ksmbd_work	*work;
4162 	char			*search_pattern;
4163 	struct ksmbd_file	*dir_fp;
4164 
4165 	struct ksmbd_dir_info	*d_info;
4166 	int			info_level;
4167 };
4168 
process_query_dir_entries(struct smb2_query_dir_private * priv)4169 static int process_query_dir_entries(struct smb2_query_dir_private *priv)
4170 {
4171 	struct mnt_idmap	*idmap = file_mnt_idmap(priv->dir_fp->filp);
4172 	struct kstat		kstat;
4173 	struct ksmbd_kstat	ksmbd_kstat;
4174 	int			rc;
4175 	int			i;
4176 
4177 	for (i = 0; i < priv->d_info->num_entry; i++) {
4178 		struct dentry *dent;
4179 
4180 		if (dentry_name(priv->d_info, priv->info_level))
4181 			return -EINVAL;
4182 
4183 		dent = lookup_one_unlocked(idmap,
4184 					   &QSTR_LEN(priv->d_info->name,
4185 						     priv->d_info->name_len),
4186 					   priv->dir_fp->filp->f_path.dentry);
4187 
4188 		if (IS_ERR(dent)) {
4189 			ksmbd_debug(SMB, "Cannot lookup `%s' [%ld]\n",
4190 				    priv->d_info->name,
4191 				    PTR_ERR(dent));
4192 			continue;
4193 		}
4194 		if (unlikely(d_is_negative(dent))) {
4195 			dput(dent);
4196 			ksmbd_debug(SMB, "Negative dentry `%s'\n",
4197 				    priv->d_info->name);
4198 			continue;
4199 		}
4200 
4201 		ksmbd_kstat.kstat = &kstat;
4202 		if (priv->info_level != FILE_NAMES_INFORMATION) {
4203 			rc = ksmbd_vfs_fill_dentry_attrs(priv->work,
4204 							 idmap,
4205 							 dent,
4206 							 &ksmbd_kstat);
4207 			if (rc) {
4208 				dput(dent);
4209 				continue;
4210 			}
4211 		}
4212 
4213 		rc = smb2_populate_readdir_entry(priv->work->conn,
4214 						 priv->info_level,
4215 						 priv->d_info,
4216 						 &ksmbd_kstat);
4217 		dput(dent);
4218 		if (rc)
4219 			return rc;
4220 	}
4221 	return 0;
4222 }
4223 
reserve_populate_dentry(struct ksmbd_dir_info * d_info,int info_level)4224 static int reserve_populate_dentry(struct ksmbd_dir_info *d_info,
4225 				   int info_level)
4226 {
4227 	int struct_sz;
4228 	int conv_len;
4229 	int next_entry_offset;
4230 
4231 	struct_sz = readdir_info_level_struct_sz(info_level);
4232 	if (struct_sz == -EOPNOTSUPP)
4233 		return -EOPNOTSUPP;
4234 
4235 	conv_len = (d_info->name_len + 1) * 2;
4236 	next_entry_offset = ALIGN(struct_sz + conv_len,
4237 				  KSMBD_DIR_INFO_ALIGNMENT);
4238 
4239 	if (next_entry_offset > d_info->out_buf_len) {
4240 		d_info->out_buf_len = 0;
4241 		return -ENOSPC;
4242 	}
4243 
4244 	switch (info_level) {
4245 	case FILE_FULL_DIRECTORY_INFORMATION:
4246 	{
4247 		FILE_FULL_DIRECTORY_INFO *ffdinfo;
4248 
4249 		ffdinfo = (FILE_FULL_DIRECTORY_INFO *)d_info->wptr;
4250 		memcpy(ffdinfo->FileName, d_info->name, d_info->name_len);
4251 		ffdinfo->FileName[d_info->name_len] = 0x00;
4252 		ffdinfo->FileNameLength = cpu_to_le32(d_info->name_len);
4253 		ffdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
4254 		break;
4255 	}
4256 	case FILE_BOTH_DIRECTORY_INFORMATION:
4257 	{
4258 		FILE_BOTH_DIRECTORY_INFO *fbdinfo;
4259 
4260 		fbdinfo = (FILE_BOTH_DIRECTORY_INFO *)d_info->wptr;
4261 		memcpy(fbdinfo->FileName, d_info->name, d_info->name_len);
4262 		fbdinfo->FileName[d_info->name_len] = 0x00;
4263 		fbdinfo->FileNameLength = cpu_to_le32(d_info->name_len);
4264 		fbdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
4265 		break;
4266 	}
4267 	case FILE_DIRECTORY_INFORMATION:
4268 	{
4269 		FILE_DIRECTORY_INFO *fdinfo;
4270 
4271 		fdinfo = (FILE_DIRECTORY_INFO *)d_info->wptr;
4272 		memcpy(fdinfo->FileName, d_info->name, d_info->name_len);
4273 		fdinfo->FileName[d_info->name_len] = 0x00;
4274 		fdinfo->FileNameLength = cpu_to_le32(d_info->name_len);
4275 		fdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
4276 		break;
4277 	}
4278 	case FILE_NAMES_INFORMATION:
4279 	{
4280 		struct file_names_info *fninfo;
4281 
4282 		fninfo = (struct file_names_info *)d_info->wptr;
4283 		memcpy(fninfo->FileName, d_info->name, d_info->name_len);
4284 		fninfo->FileName[d_info->name_len] = 0x00;
4285 		fninfo->FileNameLength = cpu_to_le32(d_info->name_len);
4286 		fninfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
4287 		break;
4288 	}
4289 	case FILEID_FULL_DIRECTORY_INFORMATION:
4290 	{
4291 		FILE_ID_FULL_DIR_INFO *dinfo;
4292 
4293 		dinfo = (FILE_ID_FULL_DIR_INFO *)d_info->wptr;
4294 		memcpy(dinfo->FileName, d_info->name, d_info->name_len);
4295 		dinfo->FileName[d_info->name_len] = 0x00;
4296 		dinfo->FileNameLength = cpu_to_le32(d_info->name_len);
4297 		dinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
4298 		break;
4299 	}
4300 	case FILEID_BOTH_DIRECTORY_INFORMATION:
4301 	{
4302 		struct file_id_both_directory_info *fibdinfo;
4303 
4304 		fibdinfo = (struct file_id_both_directory_info *)d_info->wptr;
4305 		memcpy(fibdinfo->FileName, d_info->name, d_info->name_len);
4306 		fibdinfo->FileName[d_info->name_len] = 0x00;
4307 		fibdinfo->FileNameLength = cpu_to_le32(d_info->name_len);
4308 		fibdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
4309 		break;
4310 	}
4311 	case SMB_FIND_FILE_POSIX_INFO:
4312 	{
4313 		struct smb2_posix_info *posix_info;
4314 
4315 		posix_info = (struct smb2_posix_info *)d_info->wptr;
4316 		memcpy(posix_info->name, d_info->name, d_info->name_len);
4317 		posix_info->name[d_info->name_len] = 0x00;
4318 		posix_info->name_len = cpu_to_le32(d_info->name_len);
4319 		posix_info->NextEntryOffset =
4320 			cpu_to_le32(next_entry_offset);
4321 		break;
4322 	}
4323 	} /* switch (info_level) */
4324 
4325 	d_info->num_entry++;
4326 	d_info->out_buf_len -= next_entry_offset;
4327 	d_info->wptr += next_entry_offset;
4328 	return 0;
4329 }
4330 
__query_dir(struct dir_context * ctx,const char * name,int namlen,loff_t offset,u64 ino,unsigned int d_type)4331 static bool __query_dir(struct dir_context *ctx, const char *name, int namlen,
4332 		       loff_t offset, u64 ino, unsigned int d_type)
4333 {
4334 	struct ksmbd_readdir_data	*buf;
4335 	struct smb2_query_dir_private	*priv;
4336 	struct ksmbd_dir_info		*d_info;
4337 	int				rc;
4338 
4339 	buf	= container_of(ctx, struct ksmbd_readdir_data, ctx);
4340 	priv	= buf->private;
4341 	d_info	= priv->d_info;
4342 
4343 	/* dot and dotdot entries are already reserved */
4344 	if (!strcmp(".", name) || !strcmp("..", name))
4345 		return true;
4346 	d_info->num_scan++;
4347 	if (ksmbd_share_veto_filename(priv->work->tcon->share_conf, name))
4348 		return true;
4349 	if (!match_pattern(name, namlen, priv->search_pattern))
4350 		return true;
4351 
4352 	d_info->name		= name;
4353 	d_info->name_len	= namlen;
4354 	rc = reserve_populate_dentry(d_info, priv->info_level);
4355 	if (rc)
4356 		return false;
4357 	if (d_info->flags & SMB2_RETURN_SINGLE_ENTRY)
4358 		d_info->out_buf_len = 0;
4359 	return true;
4360 }
4361 
verify_info_level(int info_level)4362 static int verify_info_level(int info_level)
4363 {
4364 	switch (info_level) {
4365 	case FILE_FULL_DIRECTORY_INFORMATION:
4366 	case FILE_BOTH_DIRECTORY_INFORMATION:
4367 	case FILE_DIRECTORY_INFORMATION:
4368 	case FILE_NAMES_INFORMATION:
4369 	case FILEID_FULL_DIRECTORY_INFORMATION:
4370 	case FILEID_BOTH_DIRECTORY_INFORMATION:
4371 	case SMB_FIND_FILE_POSIX_INFO:
4372 		break;
4373 	default:
4374 		return -EOPNOTSUPP;
4375 	}
4376 
4377 	return 0;
4378 }
4379 
smb2_resp_buf_len(struct ksmbd_work * work,unsigned short hdr2_len)4380 static int smb2_resp_buf_len(struct ksmbd_work *work, unsigned short hdr2_len)
4381 {
4382 	int free_len;
4383 
4384 	free_len = (int)(work->response_sz -
4385 		(get_rfc1002_len(work->response_buf) + 4)) - hdr2_len;
4386 	return free_len;
4387 }
4388 
smb2_calc_max_out_buf_len(struct ksmbd_work * work,unsigned short hdr2_len,unsigned int out_buf_len)4389 static int smb2_calc_max_out_buf_len(struct ksmbd_work *work,
4390 				     unsigned short hdr2_len,
4391 				     unsigned int out_buf_len)
4392 {
4393 	int free_len;
4394 
4395 	if (out_buf_len > work->conn->vals->max_trans_size)
4396 		return -EINVAL;
4397 
4398 	free_len = smb2_resp_buf_len(work, hdr2_len);
4399 	if (free_len < 0)
4400 		return -EINVAL;
4401 
4402 	return min_t(int, out_buf_len, free_len);
4403 }
4404 
smb2_query_dir(struct ksmbd_work * work)4405 int smb2_query_dir(struct ksmbd_work *work)
4406 {
4407 	struct ksmbd_conn *conn = work->conn;
4408 	struct smb2_query_directory_req *req;
4409 	struct smb2_query_directory_rsp *rsp;
4410 	struct ksmbd_share_config *share = work->tcon->share_conf;
4411 	struct ksmbd_file *dir_fp = NULL;
4412 	struct ksmbd_dir_info d_info;
4413 	int rc = 0;
4414 	char *srch_ptr = NULL;
4415 	unsigned char srch_flag;
4416 	int buffer_sz;
4417 	struct smb2_query_dir_private query_dir_private = {NULL, };
4418 
4419 	ksmbd_debug(SMB, "Received smb2 query directory request\n");
4420 
4421 	WORK_BUFFERS(work, req, rsp);
4422 
4423 	if (ksmbd_override_fsids(work)) {
4424 		rsp->hdr.Status = STATUS_NO_MEMORY;
4425 		smb2_set_err_rsp(work);
4426 		return -ENOMEM;
4427 	}
4428 
4429 	rc = verify_info_level(req->FileInformationClass);
4430 	if (rc) {
4431 		rc = -EFAULT;
4432 		goto err_out2;
4433 	}
4434 
4435 	dir_fp = ksmbd_lookup_fd_slow(work, req->VolatileFileId, req->PersistentFileId);
4436 	if (!dir_fp) {
4437 		rc = -EBADF;
4438 		goto err_out2;
4439 	}
4440 
4441 	if (!(dir_fp->daccess & FILE_LIST_DIRECTORY_LE) ||
4442 	    inode_permission(file_mnt_idmap(dir_fp->filp),
4443 			     file_inode(dir_fp->filp),
4444 			     MAY_READ | MAY_EXEC)) {
4445 		pr_err("no right to enumerate directory (%pD)\n", dir_fp->filp);
4446 		rc = -EACCES;
4447 		goto err_out2;
4448 	}
4449 
4450 	if (!S_ISDIR(file_inode(dir_fp->filp)->i_mode)) {
4451 		pr_err("can't do query dir for a file\n");
4452 		rc = -EINVAL;
4453 		goto err_out2;
4454 	}
4455 
4456 	srch_flag = req->Flags;
4457 	srch_ptr = smb_strndup_from_utf16((char *)req + le16_to_cpu(req->FileNameOffset),
4458 					  le16_to_cpu(req->FileNameLength), 1,
4459 					  conn->local_nls);
4460 	if (IS_ERR(srch_ptr)) {
4461 		ksmbd_debug(SMB, "Search Pattern not found\n");
4462 		rc = -EINVAL;
4463 		goto err_out2;
4464 	} else {
4465 		ksmbd_debug(SMB, "Search pattern is %s\n", srch_ptr);
4466 	}
4467 
4468 	if (srch_flag & SMB2_REOPEN || srch_flag & SMB2_RESTART_SCANS) {
4469 		ksmbd_debug(SMB, "Restart directory scan\n");
4470 		generic_file_llseek(dir_fp->filp, 0, SEEK_SET);
4471 	}
4472 
4473 	memset(&d_info, 0, sizeof(struct ksmbd_dir_info));
4474 	d_info.wptr = (char *)rsp->Buffer;
4475 	d_info.rptr = (char *)rsp->Buffer;
4476 	d_info.out_buf_len =
4477 		smb2_calc_max_out_buf_len(work,
4478 				offsetof(struct smb2_query_directory_rsp, Buffer),
4479 				le32_to_cpu(req->OutputBufferLength));
4480 	if (d_info.out_buf_len < 0) {
4481 		rc = -EINVAL;
4482 		goto err_out;
4483 	}
4484 	d_info.flags = srch_flag;
4485 
4486 	/*
4487 	 * reserve dot and dotdot entries in head of buffer
4488 	 * in first response
4489 	 */
4490 	rc = ksmbd_populate_dot_dotdot_entries(work, req->FileInformationClass,
4491 					       dir_fp, &d_info, srch_ptr,
4492 					       smb2_populate_readdir_entry);
4493 	if (rc == -ENOSPC)
4494 		rc = 0;
4495 	else if (rc)
4496 		goto err_out;
4497 
4498 	if (test_share_config_flag(share, KSMBD_SHARE_FLAG_HIDE_DOT_FILES))
4499 		d_info.hide_dot_file = true;
4500 
4501 	buffer_sz				= d_info.out_buf_len;
4502 	d_info.rptr				= d_info.wptr;
4503 	query_dir_private.work			= work;
4504 	query_dir_private.search_pattern	= srch_ptr;
4505 	query_dir_private.dir_fp		= dir_fp;
4506 	query_dir_private.d_info		= &d_info;
4507 	query_dir_private.info_level		= req->FileInformationClass;
4508 	dir_fp->readdir_data.private		= &query_dir_private;
4509 	set_ctx_actor(&dir_fp->readdir_data.ctx, __query_dir);
4510 again:
4511 	d_info.num_scan = 0;
4512 	rc = iterate_dir(dir_fp->filp, &dir_fp->readdir_data.ctx);
4513 	/*
4514 	 * num_entry can be 0 if the directory iteration stops before reaching
4515 	 * the end of the directory and no file is matched with the search
4516 	 * pattern.
4517 	 */
4518 	if (rc >= 0 && !d_info.num_entry && d_info.num_scan &&
4519 	    d_info.out_buf_len > 0)
4520 		goto again;
4521 	/*
4522 	 * req->OutputBufferLength is too small to contain even one entry.
4523 	 * In this case, it immediately returns OutputBufferLength 0 to client.
4524 	 */
4525 	if (!d_info.out_buf_len && !d_info.num_entry)
4526 		goto no_buf_len;
4527 	if (rc > 0 || rc == -ENOSPC)
4528 		rc = 0;
4529 	else if (rc)
4530 		goto err_out;
4531 
4532 	d_info.wptr = d_info.rptr;
4533 	d_info.out_buf_len = buffer_sz;
4534 	rc = process_query_dir_entries(&query_dir_private);
4535 	if (rc)
4536 		goto err_out;
4537 
4538 	if (!d_info.data_count && d_info.out_buf_len >= 0) {
4539 		if (srch_flag & SMB2_RETURN_SINGLE_ENTRY && !is_asterisk(srch_ptr)) {
4540 			rsp->hdr.Status = STATUS_NO_SUCH_FILE;
4541 		} else {
4542 			dir_fp->dot_dotdot[0] = dir_fp->dot_dotdot[1] = 0;
4543 			rsp->hdr.Status = STATUS_NO_MORE_FILES;
4544 		}
4545 		rsp->StructureSize = cpu_to_le16(9);
4546 		rsp->OutputBufferOffset = cpu_to_le16(0);
4547 		rsp->OutputBufferLength = cpu_to_le32(0);
4548 		rsp->Buffer[0] = 0;
4549 		rc = ksmbd_iov_pin_rsp(work, (void *)rsp,
4550 				       offsetof(struct smb2_query_directory_rsp, Buffer)
4551 				       + 1);
4552 		if (rc)
4553 			goto err_out;
4554 	} else {
4555 no_buf_len:
4556 		((FILE_DIRECTORY_INFO *)
4557 		((char *)rsp->Buffer + d_info.last_entry_offset))
4558 		->NextEntryOffset = 0;
4559 		if (d_info.data_count >= d_info.last_entry_off_align)
4560 			d_info.data_count -= d_info.last_entry_off_align;
4561 
4562 		rsp->StructureSize = cpu_to_le16(9);
4563 		rsp->OutputBufferOffset = cpu_to_le16(72);
4564 		rsp->OutputBufferLength = cpu_to_le32(d_info.data_count);
4565 		rc = ksmbd_iov_pin_rsp(work, (void *)rsp,
4566 				       offsetof(struct smb2_query_directory_rsp, Buffer) +
4567 				       d_info.data_count);
4568 		if (rc)
4569 			goto err_out;
4570 	}
4571 
4572 	kfree(srch_ptr);
4573 	ksmbd_fd_put(work, dir_fp);
4574 	ksmbd_revert_fsids(work);
4575 	return 0;
4576 
4577 err_out:
4578 	pr_err("error while processing smb2 query dir rc = %d\n", rc);
4579 	kfree(srch_ptr);
4580 
4581 err_out2:
4582 	if (rc == -EINVAL)
4583 		rsp->hdr.Status = STATUS_INVALID_PARAMETER;
4584 	else if (rc == -EACCES)
4585 		rsp->hdr.Status = STATUS_ACCESS_DENIED;
4586 	else if (rc == -ENOENT)
4587 		rsp->hdr.Status = STATUS_NO_SUCH_FILE;
4588 	else if (rc == -EBADF)
4589 		rsp->hdr.Status = STATUS_FILE_CLOSED;
4590 	else if (rc == -ENOMEM)
4591 		rsp->hdr.Status = STATUS_NO_MEMORY;
4592 	else if (rc == -EFAULT)
4593 		rsp->hdr.Status = STATUS_INVALID_INFO_CLASS;
4594 	else if (rc == -EIO)
4595 		rsp->hdr.Status = STATUS_FILE_CORRUPT_ERROR;
4596 	if (!rsp->hdr.Status)
4597 		rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR;
4598 
4599 	smb2_set_err_rsp(work);
4600 	ksmbd_fd_put(work, dir_fp);
4601 	ksmbd_revert_fsids(work);
4602 	return rc;
4603 }
4604 
4605 /**
4606  * buffer_check_err() - helper function to check buffer errors
4607  * @reqOutputBufferLength:	max buffer length expected in command response
4608  * @rsp:		query info response buffer contains output buffer length
4609  * @rsp_org:		base response buffer pointer in case of chained response
4610  *
4611  * Return:	0 on success, otherwise error
4612  */
buffer_check_err(int reqOutputBufferLength,struct smb2_query_info_rsp * rsp,void * rsp_org)4613 static int buffer_check_err(int reqOutputBufferLength,
4614 			    struct smb2_query_info_rsp *rsp,
4615 			    void *rsp_org)
4616 {
4617 	if (reqOutputBufferLength < le32_to_cpu(rsp->OutputBufferLength)) {
4618 		pr_err("Invalid Buffer Size Requested\n");
4619 		rsp->hdr.Status = STATUS_INFO_LENGTH_MISMATCH;
4620 		*(__be32 *)rsp_org = cpu_to_be32(sizeof(struct smb2_hdr));
4621 		return -EINVAL;
4622 	}
4623 	return 0;
4624 }
4625 
get_standard_info_pipe(struct smb2_query_info_rsp * rsp,void * rsp_org)4626 static void get_standard_info_pipe(struct smb2_query_info_rsp *rsp,
4627 				   void *rsp_org)
4628 {
4629 	struct smb2_file_standard_info *sinfo;
4630 
4631 	sinfo = (struct smb2_file_standard_info *)rsp->Buffer;
4632 
4633 	sinfo->AllocationSize = cpu_to_le64(4096);
4634 	sinfo->EndOfFile = cpu_to_le64(0);
4635 	sinfo->NumberOfLinks = cpu_to_le32(1);
4636 	sinfo->DeletePending = 1;
4637 	sinfo->Directory = 0;
4638 	rsp->OutputBufferLength =
4639 		cpu_to_le32(sizeof(struct smb2_file_standard_info));
4640 }
4641 
get_internal_info_pipe(struct smb2_query_info_rsp * rsp,u64 num,void * rsp_org)4642 static void get_internal_info_pipe(struct smb2_query_info_rsp *rsp, u64 num,
4643 				   void *rsp_org)
4644 {
4645 	struct smb2_file_internal_info *file_info;
4646 
4647 	file_info = (struct smb2_file_internal_info *)rsp->Buffer;
4648 
4649 	/* any unique number */
4650 	file_info->IndexNumber = cpu_to_le64(num | (1ULL << 63));
4651 	rsp->OutputBufferLength =
4652 		cpu_to_le32(sizeof(struct smb2_file_internal_info));
4653 }
4654 
smb2_get_info_file_pipe(struct ksmbd_session * sess,struct smb2_query_info_req * req,struct smb2_query_info_rsp * rsp,void * rsp_org)4655 static int smb2_get_info_file_pipe(struct ksmbd_session *sess,
4656 				   struct smb2_query_info_req *req,
4657 				   struct smb2_query_info_rsp *rsp,
4658 				   void *rsp_org)
4659 {
4660 	u64 id;
4661 	int rc;
4662 
4663 	/*
4664 	 * Windows can sometime send query file info request on
4665 	 * pipe without opening it, checking error condition here
4666 	 */
4667 	id = req->VolatileFileId;
4668 
4669 	lockdep_assert_not_held(&sess->rpc_lock);
4670 
4671 	down_read(&sess->rpc_lock);
4672 	if (!ksmbd_session_rpc_method(sess, id)) {
4673 		up_read(&sess->rpc_lock);
4674 		return -ENOENT;
4675 	}
4676 	up_read(&sess->rpc_lock);
4677 
4678 	ksmbd_debug(SMB, "FileInfoClass %u, FileId 0x%llx\n",
4679 		    req->FileInfoClass, req->VolatileFileId);
4680 
4681 	switch (req->FileInfoClass) {
4682 	case FILE_STANDARD_INFORMATION:
4683 		get_standard_info_pipe(rsp, rsp_org);
4684 		rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength),
4685 				      rsp, rsp_org);
4686 		break;
4687 	case FILE_INTERNAL_INFORMATION:
4688 		get_internal_info_pipe(rsp, id, rsp_org);
4689 		rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength),
4690 				      rsp, rsp_org);
4691 		break;
4692 	default:
4693 		ksmbd_debug(SMB, "smb2_info_file_pipe for %u not supported\n",
4694 			    req->FileInfoClass);
4695 		rc = -EOPNOTSUPP;
4696 	}
4697 	return rc;
4698 }
4699 
4700 /**
4701  * smb2_get_ea() - handler for smb2 get extended attribute command
4702  * @work:	smb work containing query info command buffer
4703  * @fp:		ksmbd_file pointer
4704  * @req:	get extended attribute request
4705  * @rsp:	response buffer pointer
4706  * @rsp_org:	base response buffer pointer in case of chained response
4707  *
4708  * Return:	0 on success, otherwise error
4709  */
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)4710 static int smb2_get_ea(struct ksmbd_work *work, struct ksmbd_file *fp,
4711 		       struct smb2_query_info_req *req,
4712 		       struct smb2_query_info_rsp *rsp, void *rsp_org)
4713 {
4714 	struct smb2_ea_info *eainfo, *prev_eainfo;
4715 	char *name, *ptr, *xattr_list = NULL, *buf;
4716 	int rc, name_len, value_len, xattr_list_len, idx;
4717 	ssize_t buf_free_len, alignment_bytes, next_offset, rsp_data_cnt = 0;
4718 	struct smb2_ea_info_req *ea_req = NULL;
4719 	const struct path *path;
4720 	struct mnt_idmap *idmap = file_mnt_idmap(fp->filp);
4721 
4722 	if (!(fp->daccess & FILE_READ_EA_LE)) {
4723 		pr_err("Not permitted to read ext attr : 0x%x\n",
4724 		       fp->daccess);
4725 		return -EACCES;
4726 	}
4727 
4728 	path = &fp->filp->f_path;
4729 	/* single EA entry is requested with given user.* name */
4730 	if (req->InputBufferLength) {
4731 		if (le32_to_cpu(req->InputBufferLength) <=
4732 		    sizeof(struct smb2_ea_info_req))
4733 			return -EINVAL;
4734 
4735 		ea_req = (struct smb2_ea_info_req *)((char *)req +
4736 						     le16_to_cpu(req->InputBufferOffset));
4737 
4738 		if (le32_to_cpu(req->InputBufferLength) <
4739 		    offsetof(struct smb2_ea_info_req, name) +
4740 		    ea_req->EaNameLength)
4741 			return -EINVAL;
4742 	} else {
4743 		/* need to send all EAs, if no specific EA is requested*/
4744 		if (le32_to_cpu(req->Flags) & SL_RETURN_SINGLE_ENTRY)
4745 			ksmbd_debug(SMB,
4746 				    "All EAs are requested but need to send single EA entry in rsp flags 0x%x\n",
4747 				    le32_to_cpu(req->Flags));
4748 	}
4749 
4750 	buf_free_len =
4751 		smb2_calc_max_out_buf_len(work,
4752 				offsetof(struct smb2_query_info_rsp, Buffer),
4753 				le32_to_cpu(req->OutputBufferLength));
4754 	if (buf_free_len < 0)
4755 		return -EINVAL;
4756 
4757 	rc = ksmbd_vfs_listxattr(path->dentry, &xattr_list);
4758 	if (rc < 0) {
4759 		rsp->hdr.Status = STATUS_INVALID_HANDLE;
4760 		goto out;
4761 	} else if (!rc) { /* there is no EA in the file */
4762 		ksmbd_debug(SMB, "no ea data in the file\n");
4763 		goto done;
4764 	}
4765 	xattr_list_len = rc;
4766 
4767 	ptr = (char *)rsp->Buffer;
4768 	eainfo = (struct smb2_ea_info *)ptr;
4769 	prev_eainfo = eainfo;
4770 	idx = 0;
4771 
4772 	while (idx < xattr_list_len) {
4773 		name = xattr_list + idx;
4774 		name_len = strlen(name);
4775 
4776 		ksmbd_debug(SMB, "%s, len %d\n", name, name_len);
4777 		idx += name_len + 1;
4778 
4779 		/*
4780 		 * CIFS does not support EA other than user.* namespace,
4781 		 * still keep the framework generic, to list other attrs
4782 		 * in future.
4783 		 */
4784 		if (strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN))
4785 			continue;
4786 
4787 		if (!strncmp(&name[XATTR_USER_PREFIX_LEN], STREAM_PREFIX,
4788 			     STREAM_PREFIX_LEN))
4789 			continue;
4790 
4791 		if (req->InputBufferLength &&
4792 		    strncmp(&name[XATTR_USER_PREFIX_LEN], ea_req->name,
4793 			    ea_req->EaNameLength))
4794 			continue;
4795 
4796 		if (!strncmp(&name[XATTR_USER_PREFIX_LEN],
4797 			     DOS_ATTRIBUTE_PREFIX, DOS_ATTRIBUTE_PREFIX_LEN))
4798 			continue;
4799 
4800 		if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN))
4801 			name_len -= XATTR_USER_PREFIX_LEN;
4802 
4803 		ptr = eainfo->name + name_len + 1;
4804 		buf_free_len -= (offsetof(struct smb2_ea_info, name) +
4805 				name_len + 1);
4806 		/* bailout if xattr can't fit in buf_free_len */
4807 		value_len = ksmbd_vfs_getxattr(idmap, path->dentry,
4808 					       name, &buf);
4809 		if (value_len <= 0) {
4810 			rc = -ENOENT;
4811 			rsp->hdr.Status = STATUS_INVALID_HANDLE;
4812 			goto out;
4813 		}
4814 
4815 		buf_free_len -= value_len;
4816 		if (buf_free_len < 0) {
4817 			kfree(buf);
4818 			break;
4819 		}
4820 
4821 		memcpy(ptr, buf, value_len);
4822 		kfree(buf);
4823 
4824 		ptr += value_len;
4825 		eainfo->Flags = 0;
4826 		eainfo->EaNameLength = name_len;
4827 
4828 		if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN))
4829 			memcpy(eainfo->name, &name[XATTR_USER_PREFIX_LEN],
4830 			       name_len);
4831 		else
4832 			memcpy(eainfo->name, name, name_len);
4833 
4834 		eainfo->name[name_len] = '\0';
4835 		eainfo->EaValueLength = cpu_to_le16(value_len);
4836 		next_offset = offsetof(struct smb2_ea_info, name) +
4837 			name_len + 1 + value_len;
4838 
4839 		/* align next xattr entry at 4 byte bundary */
4840 		alignment_bytes = ((next_offset + 3) & ~3) - next_offset;
4841 		if (alignment_bytes) {
4842 			if (buf_free_len < alignment_bytes)
4843 				break;
4844 			memset(ptr, '\0', alignment_bytes);
4845 			ptr += alignment_bytes;
4846 			next_offset += alignment_bytes;
4847 			buf_free_len -= alignment_bytes;
4848 		}
4849 		eainfo->NextEntryOffset = cpu_to_le32(next_offset);
4850 		prev_eainfo = eainfo;
4851 		eainfo = (struct smb2_ea_info *)ptr;
4852 		rsp_data_cnt += next_offset;
4853 
4854 		if (req->InputBufferLength) {
4855 			ksmbd_debug(SMB, "single entry requested\n");
4856 			break;
4857 		}
4858 	}
4859 
4860 	/* no more ea entries */
4861 	prev_eainfo->NextEntryOffset = 0;
4862 done:
4863 	rc = 0;
4864 	if (rsp_data_cnt == 0)
4865 		rsp->hdr.Status = STATUS_NO_EAS_ON_FILE;
4866 	rsp->OutputBufferLength = cpu_to_le32(rsp_data_cnt);
4867 out:
4868 	kvfree(xattr_list);
4869 	return rc;
4870 }
4871 
get_file_access_info(struct smb2_query_info_rsp * rsp,struct ksmbd_file * fp,void * rsp_org)4872 static void get_file_access_info(struct smb2_query_info_rsp *rsp,
4873 				 struct ksmbd_file *fp, void *rsp_org)
4874 {
4875 	struct smb2_file_access_info *file_info;
4876 
4877 	file_info = (struct smb2_file_access_info *)rsp->Buffer;
4878 	file_info->AccessFlags = fp->daccess;
4879 	rsp->OutputBufferLength =
4880 		cpu_to_le32(sizeof(struct smb2_file_access_info));
4881 }
4882 
get_file_basic_info(struct smb2_query_info_rsp * rsp,struct ksmbd_file * fp,void * rsp_org)4883 static int get_file_basic_info(struct smb2_query_info_rsp *rsp,
4884 			       struct ksmbd_file *fp, void *rsp_org)
4885 {
4886 	struct file_basic_info *basic_info;
4887 	struct kstat stat;
4888 	u64 time;
4889 	int ret;
4890 
4891 	if (!(fp->daccess & FILE_READ_ATTRIBUTES_LE)) {
4892 		pr_err("no right to read the attributes : 0x%x\n",
4893 		       fp->daccess);
4894 		return -EACCES;
4895 	}
4896 
4897 	ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS,
4898 			  AT_STATX_SYNC_AS_STAT);
4899 	if (ret)
4900 		return ret;
4901 
4902 	basic_info = (struct file_basic_info *)rsp->Buffer;
4903 	basic_info->CreationTime = cpu_to_le64(fp->create_time);
4904 	time = ksmbd_UnixTimeToNT(stat.atime);
4905 	basic_info->LastAccessTime = cpu_to_le64(time);
4906 	time = ksmbd_UnixTimeToNT(stat.mtime);
4907 	basic_info->LastWriteTime = cpu_to_le64(time);
4908 	time = ksmbd_UnixTimeToNT(stat.ctime);
4909 	basic_info->ChangeTime = cpu_to_le64(time);
4910 	basic_info->Attributes = fp->f_ci->m_fattr;
4911 	basic_info->Pad = 0;
4912 	rsp->OutputBufferLength =
4913 		cpu_to_le32(sizeof(struct file_basic_info));
4914 	return 0;
4915 }
4916 
get_file_standard_info(struct smb2_query_info_rsp * rsp,struct ksmbd_file * fp,void * rsp_org)4917 static int get_file_standard_info(struct smb2_query_info_rsp *rsp,
4918 				  struct ksmbd_file *fp, void *rsp_org)
4919 {
4920 	struct smb2_file_standard_info *sinfo;
4921 	unsigned int delete_pending;
4922 	struct kstat stat;
4923 	int ret;
4924 
4925 	ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS,
4926 			  AT_STATX_SYNC_AS_STAT);
4927 	if (ret)
4928 		return ret;
4929 
4930 	sinfo = (struct smb2_file_standard_info *)rsp->Buffer;
4931 	delete_pending = ksmbd_inode_pending_delete(fp);
4932 
4933 	if (ksmbd_stream_fd(fp) == false) {
4934 		sinfo->AllocationSize = cpu_to_le64(stat.blocks << 9);
4935 		sinfo->EndOfFile = S_ISDIR(stat.mode) ? 0 : cpu_to_le64(stat.size);
4936 	} else {
4937 		sinfo->AllocationSize = cpu_to_le64(fp->stream.size);
4938 		sinfo->EndOfFile = cpu_to_le64(fp->stream.size);
4939 	}
4940 	sinfo->NumberOfLinks = cpu_to_le32(get_nlink(&stat) - delete_pending);
4941 	sinfo->DeletePending = delete_pending;
4942 	sinfo->Directory = S_ISDIR(stat.mode) ? 1 : 0;
4943 	rsp->OutputBufferLength =
4944 		cpu_to_le32(sizeof(struct smb2_file_standard_info));
4945 
4946 	return 0;
4947 }
4948 
get_file_alignment_info(struct smb2_query_info_rsp * rsp,void * rsp_org)4949 static void get_file_alignment_info(struct smb2_query_info_rsp *rsp,
4950 				    void *rsp_org)
4951 {
4952 	struct smb2_file_alignment_info *file_info;
4953 
4954 	file_info = (struct smb2_file_alignment_info *)rsp->Buffer;
4955 	file_info->AlignmentRequirement = 0;
4956 	rsp->OutputBufferLength =
4957 		cpu_to_le32(sizeof(struct smb2_file_alignment_info));
4958 }
4959 
get_file_all_info(struct ksmbd_work * work,struct smb2_query_info_rsp * rsp,struct ksmbd_file * fp,void * rsp_org)4960 static int get_file_all_info(struct ksmbd_work *work,
4961 			     struct smb2_query_info_rsp *rsp,
4962 			     struct ksmbd_file *fp,
4963 			     void *rsp_org)
4964 {
4965 	struct ksmbd_conn *conn = work->conn;
4966 	struct smb2_file_all_info *file_info;
4967 	unsigned int delete_pending;
4968 	struct kstat stat;
4969 	int conv_len;
4970 	char *filename;
4971 	u64 time;
4972 	int ret, buf_free_len, filename_len;
4973 	struct smb2_query_info_req *req = ksmbd_req_buf_next(work);
4974 
4975 	if (!(fp->daccess & FILE_READ_ATTRIBUTES_LE)) {
4976 		ksmbd_debug(SMB, "no right to read the attributes : 0x%x\n",
4977 			    fp->daccess);
4978 		return -EACCES;
4979 	}
4980 
4981 	filename = convert_to_nt_pathname(work->tcon->share_conf, &fp->filp->f_path);
4982 	if (IS_ERR(filename))
4983 		return PTR_ERR(filename);
4984 
4985 	filename_len = strlen(filename);
4986 	buf_free_len = smb2_calc_max_out_buf_len(work,
4987 			offsetof(struct smb2_query_info_rsp, Buffer) +
4988 			offsetof(struct smb2_file_all_info, FileName),
4989 			le32_to_cpu(req->OutputBufferLength));
4990 	if (buf_free_len < (filename_len + 1) * 2) {
4991 		kfree(filename);
4992 		return -EINVAL;
4993 	}
4994 
4995 	ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS,
4996 			  AT_STATX_SYNC_AS_STAT);
4997 	if (ret) {
4998 		kfree(filename);
4999 		return ret;
5000 	}
5001 
5002 	ksmbd_debug(SMB, "filename = %s\n", filename);
5003 	delete_pending = ksmbd_inode_pending_delete(fp);
5004 	file_info = (struct smb2_file_all_info *)rsp->Buffer;
5005 
5006 	file_info->CreationTime = cpu_to_le64(fp->create_time);
5007 	time = ksmbd_UnixTimeToNT(stat.atime);
5008 	file_info->LastAccessTime = cpu_to_le64(time);
5009 	time = ksmbd_UnixTimeToNT(stat.mtime);
5010 	file_info->LastWriteTime = cpu_to_le64(time);
5011 	time = ksmbd_UnixTimeToNT(stat.ctime);
5012 	file_info->ChangeTime = cpu_to_le64(time);
5013 	file_info->Attributes = fp->f_ci->m_fattr;
5014 	file_info->Pad1 = 0;
5015 	if (ksmbd_stream_fd(fp) == false) {
5016 		file_info->AllocationSize =
5017 			cpu_to_le64(stat.blocks << 9);
5018 		file_info->EndOfFile = S_ISDIR(stat.mode) ? 0 : cpu_to_le64(stat.size);
5019 	} else {
5020 		file_info->AllocationSize = cpu_to_le64(fp->stream.size);
5021 		file_info->EndOfFile = cpu_to_le64(fp->stream.size);
5022 	}
5023 	file_info->NumberOfLinks =
5024 			cpu_to_le32(get_nlink(&stat) - delete_pending);
5025 	file_info->DeletePending = delete_pending;
5026 	file_info->Directory = S_ISDIR(stat.mode) ? 1 : 0;
5027 	file_info->Pad2 = 0;
5028 	file_info->IndexNumber = cpu_to_le64(stat.ino);
5029 	file_info->EASize = 0;
5030 	file_info->AccessFlags = fp->daccess;
5031 	if (ksmbd_stream_fd(fp) == false)
5032 		file_info->CurrentByteOffset = cpu_to_le64(fp->filp->f_pos);
5033 	else
5034 		file_info->CurrentByteOffset = cpu_to_le64(fp->stream.pos);
5035 	file_info->Mode = fp->coption;
5036 	file_info->AlignmentRequirement = 0;
5037 	conv_len = smbConvertToUTF16((__le16 *)file_info->FileName, filename,
5038 				     min(filename_len, PATH_MAX),
5039 				     conn->local_nls, 0);
5040 	conv_len *= 2;
5041 	file_info->FileNameLength = cpu_to_le32(conv_len);
5042 	rsp->OutputBufferLength =
5043 		cpu_to_le32(sizeof(struct smb2_file_all_info) + conv_len - 1);
5044 	kfree(filename);
5045 	return 0;
5046 }
5047 
get_file_alternate_info(struct ksmbd_work * work,struct smb2_query_info_rsp * rsp,struct ksmbd_file * fp,void * rsp_org)5048 static void get_file_alternate_info(struct ksmbd_work *work,
5049 				    struct smb2_query_info_rsp *rsp,
5050 				    struct ksmbd_file *fp,
5051 				    void *rsp_org)
5052 {
5053 	struct ksmbd_conn *conn = work->conn;
5054 	struct smb2_file_alt_name_info *file_info;
5055 	struct dentry *dentry = fp->filp->f_path.dentry;
5056 	int conv_len;
5057 
5058 	spin_lock(&dentry->d_lock);
5059 	file_info = (struct smb2_file_alt_name_info *)rsp->Buffer;
5060 	conv_len = ksmbd_extract_shortname(conn,
5061 					   dentry->d_name.name,
5062 					   file_info->FileName);
5063 	spin_unlock(&dentry->d_lock);
5064 	file_info->FileNameLength = cpu_to_le32(conv_len);
5065 	rsp->OutputBufferLength =
5066 		cpu_to_le32(struct_size(file_info, FileName, conv_len));
5067 }
5068 
get_file_stream_info(struct ksmbd_work * work,struct smb2_query_info_rsp * rsp,struct ksmbd_file * fp,void * rsp_org)5069 static int get_file_stream_info(struct ksmbd_work *work,
5070 				struct smb2_query_info_rsp *rsp,
5071 				struct ksmbd_file *fp,
5072 				void *rsp_org)
5073 {
5074 	struct ksmbd_conn *conn = work->conn;
5075 	struct smb2_file_stream_info *file_info;
5076 	char *stream_name, *xattr_list = NULL, *stream_buf;
5077 	struct kstat stat;
5078 	const struct path *path = &fp->filp->f_path;
5079 	ssize_t xattr_list_len;
5080 	int nbytes = 0, streamlen, stream_name_len, next, idx = 0;
5081 	int buf_free_len;
5082 	struct smb2_query_info_req *req = ksmbd_req_buf_next(work);
5083 	int ret;
5084 
5085 	ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS,
5086 			  AT_STATX_SYNC_AS_STAT);
5087 	if (ret)
5088 		return ret;
5089 
5090 	file_info = (struct smb2_file_stream_info *)rsp->Buffer;
5091 
5092 	buf_free_len =
5093 		smb2_calc_max_out_buf_len(work,
5094 				offsetof(struct smb2_query_info_rsp, Buffer),
5095 				le32_to_cpu(req->OutputBufferLength));
5096 	if (buf_free_len < 0)
5097 		goto out;
5098 
5099 	xattr_list_len = ksmbd_vfs_listxattr(path->dentry, &xattr_list);
5100 	if (xattr_list_len < 0) {
5101 		goto out;
5102 	} else if (!xattr_list_len) {
5103 		ksmbd_debug(SMB, "empty xattr in the file\n");
5104 		goto out;
5105 	}
5106 
5107 	while (idx < xattr_list_len) {
5108 		stream_name = xattr_list + idx;
5109 		streamlen = strlen(stream_name);
5110 		idx += streamlen + 1;
5111 
5112 		ksmbd_debug(SMB, "%s, len %d\n", stream_name, streamlen);
5113 
5114 		if (strncmp(&stream_name[XATTR_USER_PREFIX_LEN],
5115 			    STREAM_PREFIX, STREAM_PREFIX_LEN))
5116 			continue;
5117 
5118 		stream_name_len = streamlen - (XATTR_USER_PREFIX_LEN +
5119 				STREAM_PREFIX_LEN);
5120 		streamlen = stream_name_len;
5121 
5122 		/* plus : size */
5123 		streamlen += 1;
5124 		stream_buf = kmalloc(streamlen + 1, KSMBD_DEFAULT_GFP);
5125 		if (!stream_buf)
5126 			break;
5127 
5128 		streamlen = snprintf(stream_buf, streamlen + 1,
5129 				     ":%s", &stream_name[XATTR_NAME_STREAM_LEN]);
5130 
5131 		next = sizeof(struct smb2_file_stream_info) + streamlen * 2;
5132 		if (next > buf_free_len) {
5133 			kfree(stream_buf);
5134 			break;
5135 		}
5136 
5137 		file_info = (struct smb2_file_stream_info *)&rsp->Buffer[nbytes];
5138 		streamlen  = smbConvertToUTF16((__le16 *)file_info->StreamName,
5139 					       stream_buf, streamlen,
5140 					       conn->local_nls, 0);
5141 		streamlen *= 2;
5142 		kfree(stream_buf);
5143 		file_info->StreamNameLength = cpu_to_le32(streamlen);
5144 		file_info->StreamSize = cpu_to_le64(stream_name_len);
5145 		file_info->StreamAllocationSize = cpu_to_le64(stream_name_len);
5146 
5147 		nbytes += next;
5148 		buf_free_len -= next;
5149 		file_info->NextEntryOffset = cpu_to_le32(next);
5150 	}
5151 
5152 out:
5153 	if (!S_ISDIR(stat.mode) &&
5154 	    buf_free_len >= sizeof(struct smb2_file_stream_info) + 7 * 2) {
5155 		file_info = (struct smb2_file_stream_info *)
5156 			&rsp->Buffer[nbytes];
5157 		streamlen = smbConvertToUTF16((__le16 *)file_info->StreamName,
5158 					      "::$DATA", 7, conn->local_nls, 0);
5159 		streamlen *= 2;
5160 		file_info->StreamNameLength = cpu_to_le32(streamlen);
5161 		file_info->StreamSize = cpu_to_le64(stat.size);
5162 		file_info->StreamAllocationSize = cpu_to_le64(stat.blocks << 9);
5163 		nbytes += sizeof(struct smb2_file_stream_info) + streamlen;
5164 	}
5165 
5166 	/* last entry offset should be 0 */
5167 	file_info->NextEntryOffset = 0;
5168 	kvfree(xattr_list);
5169 
5170 	rsp->OutputBufferLength = cpu_to_le32(nbytes);
5171 
5172 	return 0;
5173 }
5174 
get_file_internal_info(struct smb2_query_info_rsp * rsp,struct ksmbd_file * fp,void * rsp_org)5175 static int get_file_internal_info(struct smb2_query_info_rsp *rsp,
5176 				  struct ksmbd_file *fp, void *rsp_org)
5177 {
5178 	struct smb2_file_internal_info *file_info;
5179 	struct kstat stat;
5180 	int ret;
5181 
5182 	ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS,
5183 			  AT_STATX_SYNC_AS_STAT);
5184 	if (ret)
5185 		return ret;
5186 
5187 	file_info = (struct smb2_file_internal_info *)rsp->Buffer;
5188 	file_info->IndexNumber = cpu_to_le64(stat.ino);
5189 	rsp->OutputBufferLength =
5190 		cpu_to_le32(sizeof(struct smb2_file_internal_info));
5191 
5192 	return 0;
5193 }
5194 
get_file_network_open_info(struct smb2_query_info_rsp * rsp,struct ksmbd_file * fp,void * rsp_org)5195 static int get_file_network_open_info(struct smb2_query_info_rsp *rsp,
5196 				      struct ksmbd_file *fp, void *rsp_org)
5197 {
5198 	struct smb2_file_network_open_info *file_info;
5199 	struct kstat stat;
5200 	u64 time;
5201 	int ret;
5202 
5203 	if (!(fp->daccess & FILE_READ_ATTRIBUTES_LE)) {
5204 		pr_err("no right to read the attributes : 0x%x\n",
5205 		       fp->daccess);
5206 		return -EACCES;
5207 	}
5208 
5209 	ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS,
5210 			  AT_STATX_SYNC_AS_STAT);
5211 	if (ret)
5212 		return ret;
5213 
5214 	file_info = (struct smb2_file_network_open_info *)rsp->Buffer;
5215 
5216 	file_info->CreationTime = cpu_to_le64(fp->create_time);
5217 	time = ksmbd_UnixTimeToNT(stat.atime);
5218 	file_info->LastAccessTime = cpu_to_le64(time);
5219 	time = ksmbd_UnixTimeToNT(stat.mtime);
5220 	file_info->LastWriteTime = cpu_to_le64(time);
5221 	time = ksmbd_UnixTimeToNT(stat.ctime);
5222 	file_info->ChangeTime = cpu_to_le64(time);
5223 	file_info->Attributes = fp->f_ci->m_fattr;
5224 	if (ksmbd_stream_fd(fp) == false) {
5225 		file_info->AllocationSize = cpu_to_le64(stat.blocks << 9);
5226 		file_info->EndOfFile = S_ISDIR(stat.mode) ? 0 : cpu_to_le64(stat.size);
5227 	} else {
5228 		file_info->AllocationSize = cpu_to_le64(fp->stream.size);
5229 		file_info->EndOfFile = cpu_to_le64(fp->stream.size);
5230 	}
5231 	file_info->Reserved = cpu_to_le32(0);
5232 	rsp->OutputBufferLength =
5233 		cpu_to_le32(sizeof(struct smb2_file_network_open_info));
5234 	return 0;
5235 }
5236 
get_file_ea_info(struct smb2_query_info_rsp * rsp,void * rsp_org)5237 static void get_file_ea_info(struct smb2_query_info_rsp *rsp, void *rsp_org)
5238 {
5239 	struct smb2_file_ea_info *file_info;
5240 
5241 	file_info = (struct smb2_file_ea_info *)rsp->Buffer;
5242 	file_info->EASize = 0;
5243 	rsp->OutputBufferLength =
5244 		cpu_to_le32(sizeof(struct smb2_file_ea_info));
5245 }
5246 
get_file_position_info(struct smb2_query_info_rsp * rsp,struct ksmbd_file * fp,void * rsp_org)5247 static void get_file_position_info(struct smb2_query_info_rsp *rsp,
5248 				   struct ksmbd_file *fp, void *rsp_org)
5249 {
5250 	struct smb2_file_pos_info *file_info;
5251 
5252 	file_info = (struct smb2_file_pos_info *)rsp->Buffer;
5253 	if (ksmbd_stream_fd(fp) == false)
5254 		file_info->CurrentByteOffset = cpu_to_le64(fp->filp->f_pos);
5255 	else
5256 		file_info->CurrentByteOffset = cpu_to_le64(fp->stream.pos);
5257 
5258 	rsp->OutputBufferLength =
5259 		cpu_to_le32(sizeof(struct smb2_file_pos_info));
5260 }
5261 
get_file_mode_info(struct smb2_query_info_rsp * rsp,struct ksmbd_file * fp,void * rsp_org)5262 static void get_file_mode_info(struct smb2_query_info_rsp *rsp,
5263 			       struct ksmbd_file *fp, void *rsp_org)
5264 {
5265 	struct smb2_file_mode_info *file_info;
5266 
5267 	file_info = (struct smb2_file_mode_info *)rsp->Buffer;
5268 	file_info->Mode = fp->coption & FILE_MODE_INFO_MASK;
5269 	rsp->OutputBufferLength =
5270 		cpu_to_le32(sizeof(struct smb2_file_mode_info));
5271 }
5272 
get_file_compression_info(struct smb2_query_info_rsp * rsp,struct ksmbd_file * fp,void * rsp_org)5273 static int get_file_compression_info(struct smb2_query_info_rsp *rsp,
5274 				     struct ksmbd_file *fp, void *rsp_org)
5275 {
5276 	struct smb2_file_comp_info *file_info;
5277 	struct kstat stat;
5278 	int ret;
5279 
5280 	ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS,
5281 			  AT_STATX_SYNC_AS_STAT);
5282 	if (ret)
5283 		return ret;
5284 
5285 	file_info = (struct smb2_file_comp_info *)rsp->Buffer;
5286 	file_info->CompressedFileSize = cpu_to_le64(stat.blocks << 9);
5287 	file_info->CompressionFormat = COMPRESSION_FORMAT_NONE;
5288 	file_info->CompressionUnitShift = 0;
5289 	file_info->ChunkShift = 0;
5290 	file_info->ClusterShift = 0;
5291 	memset(&file_info->Reserved[0], 0, 3);
5292 
5293 	rsp->OutputBufferLength =
5294 		cpu_to_le32(sizeof(struct smb2_file_comp_info));
5295 
5296 	return 0;
5297 }
5298 
get_file_attribute_tag_info(struct smb2_query_info_rsp * rsp,struct ksmbd_file * fp,void * rsp_org)5299 static int get_file_attribute_tag_info(struct smb2_query_info_rsp *rsp,
5300 				       struct ksmbd_file *fp, void *rsp_org)
5301 {
5302 	struct smb2_file_attr_tag_info *file_info;
5303 
5304 	if (!(fp->daccess & FILE_READ_ATTRIBUTES_LE)) {
5305 		pr_err("no right to read the attributes : 0x%x\n",
5306 		       fp->daccess);
5307 		return -EACCES;
5308 	}
5309 
5310 	file_info = (struct smb2_file_attr_tag_info *)rsp->Buffer;
5311 	file_info->FileAttributes = fp->f_ci->m_fattr;
5312 	file_info->ReparseTag = 0;
5313 	rsp->OutputBufferLength =
5314 		cpu_to_le32(sizeof(struct smb2_file_attr_tag_info));
5315 	return 0;
5316 }
5317 
find_file_posix_info(struct smb2_query_info_rsp * rsp,struct ksmbd_file * fp,void * rsp_org)5318 static int find_file_posix_info(struct smb2_query_info_rsp *rsp,
5319 				struct ksmbd_file *fp, void *rsp_org)
5320 {
5321 	struct smb311_posix_qinfo *file_info;
5322 	struct inode *inode = file_inode(fp->filp);
5323 	struct mnt_idmap *idmap = file_mnt_idmap(fp->filp);
5324 	vfsuid_t vfsuid = i_uid_into_vfsuid(idmap, inode);
5325 	vfsgid_t vfsgid = i_gid_into_vfsgid(idmap, inode);
5326 	struct kstat stat;
5327 	u64 time;
5328 	int out_buf_len = sizeof(struct smb311_posix_qinfo) + 32;
5329 	int ret;
5330 
5331 	ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS,
5332 			  AT_STATX_SYNC_AS_STAT);
5333 	if (ret)
5334 		return ret;
5335 
5336 	file_info = (struct smb311_posix_qinfo *)rsp->Buffer;
5337 	file_info->CreationTime = cpu_to_le64(fp->create_time);
5338 	time = ksmbd_UnixTimeToNT(stat.atime);
5339 	file_info->LastAccessTime = cpu_to_le64(time);
5340 	time = ksmbd_UnixTimeToNT(stat.mtime);
5341 	file_info->LastWriteTime = cpu_to_le64(time);
5342 	time = ksmbd_UnixTimeToNT(stat.ctime);
5343 	file_info->ChangeTime = cpu_to_le64(time);
5344 	file_info->DosAttributes = fp->f_ci->m_fattr;
5345 	file_info->Inode = cpu_to_le64(stat.ino);
5346 	if (ksmbd_stream_fd(fp) == false) {
5347 		file_info->EndOfFile = cpu_to_le64(stat.size);
5348 		file_info->AllocationSize = cpu_to_le64(stat.blocks << 9);
5349 	} else {
5350 		file_info->EndOfFile = cpu_to_le64(fp->stream.size);
5351 		file_info->AllocationSize = cpu_to_le64(fp->stream.size);
5352 	}
5353 	file_info->HardLinks = cpu_to_le32(stat.nlink);
5354 	file_info->Mode = cpu_to_le32(stat.mode & 0777);
5355 	switch (stat.mode & S_IFMT) {
5356 	case S_IFDIR:
5357 		file_info->Mode |= cpu_to_le32(POSIX_TYPE_DIR << POSIX_FILETYPE_SHIFT);
5358 		break;
5359 	case S_IFLNK:
5360 		file_info->Mode |= cpu_to_le32(POSIX_TYPE_SYMLINK << POSIX_FILETYPE_SHIFT);
5361 		break;
5362 	case S_IFCHR:
5363 		file_info->Mode |= cpu_to_le32(POSIX_TYPE_CHARDEV << POSIX_FILETYPE_SHIFT);
5364 		break;
5365 	case S_IFBLK:
5366 		file_info->Mode |= cpu_to_le32(POSIX_TYPE_BLKDEV << POSIX_FILETYPE_SHIFT);
5367 		break;
5368 	case S_IFIFO:
5369 		file_info->Mode |= cpu_to_le32(POSIX_TYPE_FIFO << POSIX_FILETYPE_SHIFT);
5370 		break;
5371 	case S_IFSOCK:
5372 		file_info->Mode |= cpu_to_le32(POSIX_TYPE_SOCKET << POSIX_FILETYPE_SHIFT);
5373 	}
5374 
5375 	file_info->DeviceId = cpu_to_le32(stat.rdev);
5376 
5377 	/*
5378 	 * Sids(32) contain two sids(Domain sid(16), UNIX group sid(16)).
5379 	 * UNIX sid(16) = revision(1) + num_subauth(1) + authority(6) +
5380 	 *		  sub_auth(4 * 1(num_subauth)) + RID(4).
5381 	 */
5382 	id_to_sid(from_kuid_munged(&init_user_ns, vfsuid_into_kuid(vfsuid)),
5383 		  SIDUNIX_USER, (struct smb_sid *)&file_info->Sids[0]);
5384 	id_to_sid(from_kgid_munged(&init_user_ns, vfsgid_into_kgid(vfsgid)),
5385 		  SIDUNIX_GROUP, (struct smb_sid *)&file_info->Sids[16]);
5386 
5387 	rsp->OutputBufferLength = cpu_to_le32(out_buf_len);
5388 
5389 	return 0;
5390 }
5391 
smb2_get_info_file(struct ksmbd_work * work,struct smb2_query_info_req * req,struct smb2_query_info_rsp * rsp)5392 static int smb2_get_info_file(struct ksmbd_work *work,
5393 			      struct smb2_query_info_req *req,
5394 			      struct smb2_query_info_rsp *rsp)
5395 {
5396 	struct ksmbd_file *fp;
5397 	int fileinfoclass = 0;
5398 	int rc = 0;
5399 	unsigned int id = KSMBD_NO_FID, pid = KSMBD_NO_FID;
5400 
5401 	if (test_share_config_flag(work->tcon->share_conf,
5402 				   KSMBD_SHARE_FLAG_PIPE)) {
5403 		/* smb2 info file called for pipe */
5404 		rc = smb2_get_info_file_pipe(work->sess, req, rsp,
5405 					       work->response_buf);
5406 		goto iov_pin_out;
5407 	}
5408 
5409 	if (work->next_smb2_rcv_hdr_off) {
5410 		if (!has_file_id(req->VolatileFileId)) {
5411 			ksmbd_debug(SMB, "Compound request set FID = %llu\n",
5412 				    work->compound_fid);
5413 			id = work->compound_fid;
5414 			pid = work->compound_pfid;
5415 		}
5416 	}
5417 
5418 	if (!has_file_id(id)) {
5419 		id = req->VolatileFileId;
5420 		pid = req->PersistentFileId;
5421 	}
5422 
5423 	fp = ksmbd_lookup_fd_slow(work, id, pid);
5424 	if (!fp)
5425 		return -ENOENT;
5426 
5427 	fileinfoclass = req->FileInfoClass;
5428 
5429 	switch (fileinfoclass) {
5430 	case FILE_ACCESS_INFORMATION:
5431 		get_file_access_info(rsp, fp, work->response_buf);
5432 		break;
5433 
5434 	case FILE_BASIC_INFORMATION:
5435 		rc = get_file_basic_info(rsp, fp, work->response_buf);
5436 		break;
5437 
5438 	case FILE_STANDARD_INFORMATION:
5439 		rc = get_file_standard_info(rsp, fp, work->response_buf);
5440 		break;
5441 
5442 	case FILE_ALIGNMENT_INFORMATION:
5443 		get_file_alignment_info(rsp, work->response_buf);
5444 		break;
5445 
5446 	case FILE_ALL_INFORMATION:
5447 		rc = get_file_all_info(work, rsp, fp, work->response_buf);
5448 		break;
5449 
5450 	case FILE_ALTERNATE_NAME_INFORMATION:
5451 		get_file_alternate_info(work, rsp, fp, work->response_buf);
5452 		break;
5453 
5454 	case FILE_STREAM_INFORMATION:
5455 		rc = get_file_stream_info(work, rsp, fp, work->response_buf);
5456 		break;
5457 
5458 	case FILE_INTERNAL_INFORMATION:
5459 		rc = get_file_internal_info(rsp, fp, work->response_buf);
5460 		break;
5461 
5462 	case FILE_NETWORK_OPEN_INFORMATION:
5463 		rc = get_file_network_open_info(rsp, fp, work->response_buf);
5464 		break;
5465 
5466 	case FILE_EA_INFORMATION:
5467 		get_file_ea_info(rsp, work->response_buf);
5468 		break;
5469 
5470 	case FILE_FULL_EA_INFORMATION:
5471 		rc = smb2_get_ea(work, fp, req, rsp, work->response_buf);
5472 		break;
5473 
5474 	case FILE_POSITION_INFORMATION:
5475 		get_file_position_info(rsp, fp, work->response_buf);
5476 		break;
5477 
5478 	case FILE_MODE_INFORMATION:
5479 		get_file_mode_info(rsp, fp, work->response_buf);
5480 		break;
5481 
5482 	case FILE_COMPRESSION_INFORMATION:
5483 		rc = get_file_compression_info(rsp, fp, work->response_buf);
5484 		break;
5485 
5486 	case FILE_ATTRIBUTE_TAG_INFORMATION:
5487 		rc = get_file_attribute_tag_info(rsp, fp, work->response_buf);
5488 		break;
5489 	case SMB_FIND_FILE_POSIX_INFO:
5490 		if (!work->tcon->posix_extensions) {
5491 			pr_err("client doesn't negotiate with SMB3.1.1 POSIX Extensions\n");
5492 			rc = -EOPNOTSUPP;
5493 		} else {
5494 			rc = find_file_posix_info(rsp, fp, work->response_buf);
5495 		}
5496 		break;
5497 	default:
5498 		ksmbd_debug(SMB, "fileinfoclass %d not supported yet\n",
5499 			    fileinfoclass);
5500 		rc = -EOPNOTSUPP;
5501 	}
5502 	if (!rc)
5503 		rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength),
5504 				      rsp, work->response_buf);
5505 	ksmbd_fd_put(work, fp);
5506 
5507 iov_pin_out:
5508 	if (!rc)
5509 		rc = ksmbd_iov_pin_rsp(work, (void *)rsp,
5510 				offsetof(struct smb2_query_info_rsp, Buffer) +
5511 				le32_to_cpu(rsp->OutputBufferLength));
5512 	return rc;
5513 }
5514 
smb2_get_info_filesystem(struct ksmbd_work * work,struct smb2_query_info_req * req,struct smb2_query_info_rsp * rsp)5515 static int smb2_get_info_filesystem(struct ksmbd_work *work,
5516 				    struct smb2_query_info_req *req,
5517 				    struct smb2_query_info_rsp *rsp)
5518 {
5519 	struct ksmbd_conn *conn = work->conn;
5520 	struct ksmbd_share_config *share = work->tcon->share_conf;
5521 	int fsinfoclass = 0;
5522 	struct kstatfs stfs;
5523 	struct path path;
5524 	int rc = 0, len;
5525 
5526 	if (!share->path)
5527 		return -EIO;
5528 
5529 	rc = kern_path(share->path, LOOKUP_NO_SYMLINKS, &path);
5530 	if (rc) {
5531 		pr_err("cannot create vfs path\n");
5532 		return -EIO;
5533 	}
5534 
5535 	rc = vfs_statfs(&path, &stfs);
5536 	if (rc) {
5537 		pr_err("cannot do stat of path %s\n", share->path);
5538 		path_put(&path);
5539 		return -EIO;
5540 	}
5541 
5542 	fsinfoclass = req->FileInfoClass;
5543 
5544 	switch (fsinfoclass) {
5545 	case FS_DEVICE_INFORMATION:
5546 	{
5547 		FILE_SYSTEM_DEVICE_INFO *info;
5548 
5549 		info = (FILE_SYSTEM_DEVICE_INFO *)rsp->Buffer;
5550 
5551 		info->DeviceType = cpu_to_le32(FILE_DEVICE_DISK);
5552 		info->DeviceCharacteristics =
5553 			cpu_to_le32(FILE_DEVICE_IS_MOUNTED);
5554 		if (!test_tree_conn_flag(work->tcon,
5555 					 KSMBD_TREE_CONN_FLAG_WRITABLE))
5556 			info->DeviceCharacteristics |=
5557 				cpu_to_le32(FILE_READ_ONLY_DEVICE);
5558 		rsp->OutputBufferLength = cpu_to_le32(8);
5559 		break;
5560 	}
5561 	case FS_ATTRIBUTE_INFORMATION:
5562 	{
5563 		FILE_SYSTEM_ATTRIBUTE_INFO *info;
5564 		size_t sz;
5565 
5566 		info = (FILE_SYSTEM_ATTRIBUTE_INFO *)rsp->Buffer;
5567 		info->Attributes = cpu_to_le32(FILE_SUPPORTS_OBJECT_IDS |
5568 					       FILE_PERSISTENT_ACLS |
5569 					       FILE_UNICODE_ON_DISK |
5570 					       FILE_CASE_PRESERVED_NAMES |
5571 					       FILE_CASE_SENSITIVE_SEARCH |
5572 					       FILE_SUPPORTS_BLOCK_REFCOUNTING);
5573 
5574 		info->Attributes |= cpu_to_le32(server_conf.share_fake_fscaps);
5575 
5576 		if (test_share_config_flag(work->tcon->share_conf,
5577 		    KSMBD_SHARE_FLAG_STREAMS))
5578 			info->Attributes |= cpu_to_le32(FILE_NAMED_STREAMS);
5579 
5580 		info->MaxPathNameComponentLength = cpu_to_le32(stfs.f_namelen);
5581 		/*
5582 		 * some application(potableapp) can not run on ksmbd share
5583 		 * because only NTFS handle security setting on windows.
5584 		 * So Although local fs(EXT4 or F2fs, etc) is not NTFS,
5585 		 * ksmbd should show share as NTFS. Later, If needed, we can add
5586 		 * fs type(s) parameter to change fs type user wanted.
5587 		 */
5588 		len = smbConvertToUTF16((__le16 *)info->FileSystemName,
5589 					"NTFS", PATH_MAX, conn->local_nls, 0);
5590 		len = len * 2;
5591 		info->FileSystemNameLen = cpu_to_le32(len);
5592 		sz = sizeof(FILE_SYSTEM_ATTRIBUTE_INFO) + len;
5593 		rsp->OutputBufferLength = cpu_to_le32(sz);
5594 		break;
5595 	}
5596 	case FS_VOLUME_INFORMATION:
5597 	{
5598 		struct filesystem_vol_info *info;
5599 		size_t sz;
5600 		unsigned int serial_crc = 0;
5601 
5602 		info = (struct filesystem_vol_info *)(rsp->Buffer);
5603 		info->VolumeCreationTime = 0;
5604 		serial_crc = crc32_le(serial_crc, share->name,
5605 				      strlen(share->name));
5606 		serial_crc = crc32_le(serial_crc, share->path,
5607 				      strlen(share->path));
5608 		serial_crc = crc32_le(serial_crc, ksmbd_netbios_name(),
5609 				      strlen(ksmbd_netbios_name()));
5610 		/* Taking dummy value of serial number*/
5611 		info->VolumeSerialNumber = cpu_to_le32(serial_crc);
5612 		len = smbConvertToUTF16((__le16 *)info->VolumeLabel,
5613 					share->name, PATH_MAX,
5614 					conn->local_nls, 0);
5615 		len = len * 2;
5616 		info->VolumeLabelLength = cpu_to_le32(len);
5617 		info->Reserved = 0;
5618 		info->SupportsObjects = 0;
5619 		sz = sizeof(struct filesystem_vol_info) + len;
5620 		rsp->OutputBufferLength = cpu_to_le32(sz);
5621 		break;
5622 	}
5623 	case FS_SIZE_INFORMATION:
5624 	{
5625 		FILE_SYSTEM_SIZE_INFO *info;
5626 
5627 		info = (FILE_SYSTEM_SIZE_INFO *)(rsp->Buffer);
5628 		info->TotalAllocationUnits = cpu_to_le64(stfs.f_blocks);
5629 		info->AvailableAllocationUnits = cpu_to_le64(stfs.f_bfree);
5630 		info->SectorsPerAllocationUnit = cpu_to_le32(1);
5631 		info->BytesPerSector = cpu_to_le32(stfs.f_bsize);
5632 		rsp->OutputBufferLength = cpu_to_le32(24);
5633 		break;
5634 	}
5635 	case FS_FULL_SIZE_INFORMATION:
5636 	{
5637 		struct smb2_fs_full_size_info *info;
5638 
5639 		info = (struct smb2_fs_full_size_info *)(rsp->Buffer);
5640 		info->TotalAllocationUnits = cpu_to_le64(stfs.f_blocks);
5641 		info->CallerAvailableAllocationUnits =
5642 					cpu_to_le64(stfs.f_bavail);
5643 		info->ActualAvailableAllocationUnits =
5644 					cpu_to_le64(stfs.f_bfree);
5645 		info->SectorsPerAllocationUnit = cpu_to_le32(1);
5646 		info->BytesPerSector = cpu_to_le32(stfs.f_bsize);
5647 		rsp->OutputBufferLength = cpu_to_le32(32);
5648 		break;
5649 	}
5650 	case FS_OBJECT_ID_INFORMATION:
5651 	{
5652 		struct object_id_info *info;
5653 
5654 		info = (struct object_id_info *)(rsp->Buffer);
5655 
5656 		if (path.mnt->mnt_sb->s_uuid_len == 16)
5657 			memcpy(info->objid, path.mnt->mnt_sb->s_uuid.b,
5658 					path.mnt->mnt_sb->s_uuid_len);
5659 		else
5660 			memcpy(info->objid, &stfs.f_fsid, sizeof(stfs.f_fsid));
5661 
5662 		info->extended_info.magic = cpu_to_le32(EXTENDED_INFO_MAGIC);
5663 		info->extended_info.version = cpu_to_le32(1);
5664 		info->extended_info.release = cpu_to_le32(1);
5665 		info->extended_info.rel_date = 0;
5666 		memcpy(info->extended_info.version_string, "1.1.0", strlen("1.1.0"));
5667 		rsp->OutputBufferLength = cpu_to_le32(64);
5668 		break;
5669 	}
5670 	case FS_SECTOR_SIZE_INFORMATION:
5671 	{
5672 		struct smb3_fs_ss_info *info;
5673 		unsigned int sector_size =
5674 			min_t(unsigned int, path.mnt->mnt_sb->s_blocksize, 4096);
5675 
5676 		info = (struct smb3_fs_ss_info *)(rsp->Buffer);
5677 
5678 		info->LogicalBytesPerSector = cpu_to_le32(sector_size);
5679 		info->PhysicalBytesPerSectorForAtomicity =
5680 				cpu_to_le32(sector_size);
5681 		info->PhysicalBytesPerSectorForPerf = cpu_to_le32(sector_size);
5682 		info->FSEffPhysicalBytesPerSectorForAtomicity =
5683 				cpu_to_le32(sector_size);
5684 		info->Flags = cpu_to_le32(SSINFO_FLAGS_ALIGNED_DEVICE |
5685 				    SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE);
5686 		info->ByteOffsetForSectorAlignment = 0;
5687 		info->ByteOffsetForPartitionAlignment = 0;
5688 		rsp->OutputBufferLength = cpu_to_le32(28);
5689 		break;
5690 	}
5691 	case FS_CONTROL_INFORMATION:
5692 	{
5693 		/*
5694 		 * TODO : The current implementation is based on
5695 		 * test result with win7(NTFS) server. It's need to
5696 		 * modify this to get valid Quota values
5697 		 * from Linux kernel
5698 		 */
5699 		struct smb2_fs_control_info *info;
5700 
5701 		info = (struct smb2_fs_control_info *)(rsp->Buffer);
5702 		info->FreeSpaceStartFiltering = 0;
5703 		info->FreeSpaceThreshold = 0;
5704 		info->FreeSpaceStopFiltering = 0;
5705 		info->DefaultQuotaThreshold = cpu_to_le64(SMB2_NO_FID);
5706 		info->DefaultQuotaLimit = cpu_to_le64(SMB2_NO_FID);
5707 		info->Padding = 0;
5708 		rsp->OutputBufferLength = cpu_to_le32(48);
5709 		break;
5710 	}
5711 	case FS_POSIX_INFORMATION:
5712 	{
5713 		FILE_SYSTEM_POSIX_INFO *info;
5714 
5715 		if (!work->tcon->posix_extensions) {
5716 			pr_err("client doesn't negotiate with SMB3.1.1 POSIX Extensions\n");
5717 			path_put(&path);
5718 			return -EOPNOTSUPP;
5719 		} else {
5720 			info = (FILE_SYSTEM_POSIX_INFO *)(rsp->Buffer);
5721 			info->OptimalTransferSize = cpu_to_le32(stfs.f_bsize);
5722 			info->BlockSize = cpu_to_le32(stfs.f_bsize);
5723 			info->TotalBlocks = cpu_to_le64(stfs.f_blocks);
5724 			info->BlocksAvail = cpu_to_le64(stfs.f_bfree);
5725 			info->UserBlocksAvail = cpu_to_le64(stfs.f_bavail);
5726 			info->TotalFileNodes = cpu_to_le64(stfs.f_files);
5727 			info->FreeFileNodes = cpu_to_le64(stfs.f_ffree);
5728 			rsp->OutputBufferLength = cpu_to_le32(56);
5729 		}
5730 		break;
5731 	}
5732 	default:
5733 		path_put(&path);
5734 		return -EOPNOTSUPP;
5735 	}
5736 	rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength),
5737 			      rsp, work->response_buf);
5738 	path_put(&path);
5739 
5740 	if (!rc)
5741 		rc = ksmbd_iov_pin_rsp(work, (void *)rsp,
5742 				offsetof(struct smb2_query_info_rsp, Buffer) +
5743 				le32_to_cpu(rsp->OutputBufferLength));
5744 	return rc;
5745 }
5746 
smb2_get_info_sec(struct ksmbd_work * work,struct smb2_query_info_req * req,struct smb2_query_info_rsp * rsp)5747 static int smb2_get_info_sec(struct ksmbd_work *work,
5748 			     struct smb2_query_info_req *req,
5749 			     struct smb2_query_info_rsp *rsp)
5750 {
5751 	struct ksmbd_file *fp;
5752 	struct mnt_idmap *idmap;
5753 	struct smb_ntsd *pntsd = NULL, *ppntsd = NULL;
5754 	struct smb_fattr fattr = {{0}};
5755 	struct inode *inode;
5756 	__u32 secdesclen = 0;
5757 	unsigned int id = KSMBD_NO_FID, pid = KSMBD_NO_FID;
5758 	int addition_info = le32_to_cpu(req->AdditionalInformation);
5759 	int rc = 0, ppntsd_size = 0, max_len;
5760 	size_t scratch_len = 0;
5761 
5762 	if (addition_info & ~(OWNER_SECINFO | GROUP_SECINFO | DACL_SECINFO |
5763 			      PROTECTED_DACL_SECINFO |
5764 			      UNPROTECTED_DACL_SECINFO)) {
5765 		ksmbd_debug(SMB, "Unsupported addition info: 0x%x)\n",
5766 		       addition_info);
5767 
5768 		rsp->hdr.Status = STATUS_NOT_SUPPORTED;
5769 		return -EINVAL;
5770 	}
5771 
5772 	if (work->next_smb2_rcv_hdr_off) {
5773 		if (!has_file_id(req->VolatileFileId)) {
5774 			ksmbd_debug(SMB, "Compound request set FID = %llu\n",
5775 				    work->compound_fid);
5776 			id = work->compound_fid;
5777 			pid = work->compound_pfid;
5778 		}
5779 	}
5780 
5781 	if (!has_file_id(id)) {
5782 		id = req->VolatileFileId;
5783 		pid = req->PersistentFileId;
5784 	}
5785 
5786 	fp = ksmbd_lookup_fd_slow(work, id, pid);
5787 	if (!fp)
5788 		return -ENOENT;
5789 
5790 	idmap = file_mnt_idmap(fp->filp);
5791 	inode = file_inode(fp->filp);
5792 	ksmbd_acls_fattr(&fattr, idmap, inode);
5793 
5794 	if (test_share_config_flag(work->tcon->share_conf,
5795 				   KSMBD_SHARE_FLAG_ACL_XATTR))
5796 		ppntsd_size = ksmbd_vfs_get_sd_xattr(work->conn, idmap,
5797 						     fp->filp->f_path.dentry,
5798 						     &ppntsd);
5799 
5800 	/* Check if sd buffer size exceeds response buffer size */
5801 	max_len = smb2_calc_max_out_buf_len(work,
5802 			offsetof(struct smb2_query_info_rsp, Buffer),
5803 			le32_to_cpu(req->OutputBufferLength));
5804 	if (max_len < 0) {
5805 		rc = -EINVAL;
5806 		goto release_acl;
5807 	}
5808 
5809 	scratch_len = smb_acl_sec_desc_scratch_len(&fattr, ppntsd,
5810 			ppntsd_size, addition_info);
5811 	if (!scratch_len || scratch_len == SIZE_MAX) {
5812 		rc = -EFBIG;
5813 		goto release_acl;
5814 	}
5815 
5816 	pntsd = kvzalloc(scratch_len, KSMBD_DEFAULT_GFP);
5817 	if (!pntsd) {
5818 		rc = -ENOMEM;
5819 		goto release_acl;
5820 	}
5821 
5822 	rc = build_sec_desc(idmap, pntsd, ppntsd, ppntsd_size,
5823 			addition_info, &secdesclen, &fattr);
5824 
5825 release_acl:
5826 	posix_acl_release(fattr.cf_acls);
5827 	posix_acl_release(fattr.cf_dacls);
5828 	kfree(ppntsd);
5829 	ksmbd_fd_put(work, fp);
5830 
5831 	if (!rc && ALIGN(secdesclen, 8) > scratch_len)
5832 		rc = -EFBIG;
5833 	if (rc)
5834 		goto err_out;
5835 
5836 	rsp->OutputBufferLength = cpu_to_le32(secdesclen);
5837 	rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength),
5838 			      rsp, work->response_buf);
5839 	if (rc)
5840 		goto err_out;
5841 
5842 	rc = ksmbd_iov_pin_rsp_read(work, (void *)rsp,
5843 			offsetof(struct smb2_query_info_rsp, Buffer),
5844 			pntsd, secdesclen);
5845 err_out:
5846 	if (rc) {
5847 		rsp->OutputBufferLength = 0;
5848 		kvfree(pntsd);
5849 	}
5850 
5851 	return rc;
5852 }
5853 
5854 /**
5855  * smb2_query_info() - handler for smb2 query info command
5856  * @work:	smb work containing query info request buffer
5857  *
5858  * Return:	0 on success, otherwise error
5859  */
smb2_query_info(struct ksmbd_work * work)5860 int smb2_query_info(struct ksmbd_work *work)
5861 {
5862 	struct smb2_query_info_req *req;
5863 	struct smb2_query_info_rsp *rsp;
5864 	int rc = 0;
5865 
5866 	ksmbd_debug(SMB, "Received request smb2 query info request\n");
5867 
5868 	WORK_BUFFERS(work, req, rsp);
5869 
5870 	if (ksmbd_override_fsids(work)) {
5871 		rc = -ENOMEM;
5872 		goto err_out;
5873 	}
5874 
5875 	rsp->StructureSize = cpu_to_le16(9);
5876 	rsp->OutputBufferOffset = cpu_to_le16(72);
5877 
5878 	switch (req->InfoType) {
5879 	case SMB2_O_INFO_FILE:
5880 		ksmbd_debug(SMB, "GOT SMB2_O_INFO_FILE\n");
5881 		rc = smb2_get_info_file(work, req, rsp);
5882 		break;
5883 	case SMB2_O_INFO_FILESYSTEM:
5884 		ksmbd_debug(SMB, "GOT SMB2_O_INFO_FILESYSTEM\n");
5885 		rc = smb2_get_info_filesystem(work, req, rsp);
5886 		break;
5887 	case SMB2_O_INFO_SECURITY:
5888 		ksmbd_debug(SMB, "GOT SMB2_O_INFO_SECURITY\n");
5889 		rc = smb2_get_info_sec(work, req, rsp);
5890 		break;
5891 	default:
5892 		ksmbd_debug(SMB, "InfoType %d not supported yet\n",
5893 			    req->InfoType);
5894 		rc = -EOPNOTSUPP;
5895 	}
5896 	ksmbd_revert_fsids(work);
5897 
5898 err_out:
5899 	if (rc < 0) {
5900 		if (rc == -EACCES)
5901 			rsp->hdr.Status = STATUS_ACCESS_DENIED;
5902 		else if (rc == -ENOENT)
5903 			rsp->hdr.Status = STATUS_FILE_CLOSED;
5904 		else if (rc == -EIO)
5905 			rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR;
5906 		else if (rc == -ENOMEM)
5907 			rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES;
5908 		else if (rc == -EINVAL && rsp->hdr.Status == 0)
5909 			rsp->hdr.Status = STATUS_INVALID_PARAMETER;
5910 		else if (rc == -EOPNOTSUPP || rsp->hdr.Status == 0)
5911 			rsp->hdr.Status = STATUS_INVALID_INFO_CLASS;
5912 		smb2_set_err_rsp(work);
5913 
5914 		ksmbd_debug(SMB, "error while processing smb2 query rc = %d\n",
5915 			    rc);
5916 		return rc;
5917 	}
5918 	return 0;
5919 }
5920 
5921 /**
5922  * smb2_close_pipe() - handler for closing IPC pipe
5923  * @work:	smb work containing close request buffer
5924  *
5925  * Return:	0
5926  */
smb2_close_pipe(struct ksmbd_work * work)5927 static noinline int smb2_close_pipe(struct ksmbd_work *work)
5928 {
5929 	u64 id;
5930 	struct smb2_close_req *req;
5931 	struct smb2_close_rsp *rsp;
5932 
5933 	WORK_BUFFERS(work, req, rsp);
5934 
5935 	id = req->VolatileFileId;
5936 	ksmbd_session_rpc_close(work->sess, id);
5937 
5938 	rsp->StructureSize = cpu_to_le16(60);
5939 	rsp->Flags = 0;
5940 	rsp->Reserved = 0;
5941 	rsp->CreationTime = 0;
5942 	rsp->LastAccessTime = 0;
5943 	rsp->LastWriteTime = 0;
5944 	rsp->ChangeTime = 0;
5945 	rsp->AllocationSize = 0;
5946 	rsp->EndOfFile = 0;
5947 	rsp->Attributes = 0;
5948 
5949 	return ksmbd_iov_pin_rsp(work, (void *)rsp,
5950 				 sizeof(struct smb2_close_rsp));
5951 }
5952 
5953 /**
5954  * smb2_close() - handler for smb2 close file command
5955  * @work:	smb work containing close request buffer
5956  *
5957  * Return:	0 on success, otherwise error
5958  */
smb2_close(struct ksmbd_work * work)5959 int smb2_close(struct ksmbd_work *work)
5960 {
5961 	u64 volatile_id = KSMBD_NO_FID;
5962 	u64 sess_id;
5963 	struct smb2_close_req *req;
5964 	struct smb2_close_rsp *rsp;
5965 	struct ksmbd_conn *conn = work->conn;
5966 	struct ksmbd_file *fp;
5967 	u64 time;
5968 	int err = 0;
5969 
5970 	ksmbd_debug(SMB, "Received smb2 close request\n");
5971 
5972 	WORK_BUFFERS(work, req, rsp);
5973 
5974 	if (test_share_config_flag(work->tcon->share_conf,
5975 				   KSMBD_SHARE_FLAG_PIPE)) {
5976 		ksmbd_debug(SMB, "IPC pipe close request\n");
5977 		return smb2_close_pipe(work);
5978 	}
5979 
5980 	sess_id = le64_to_cpu(req->hdr.SessionId);
5981 	if (req->hdr.Flags & SMB2_FLAGS_RELATED_OPERATIONS)
5982 		sess_id = work->compound_sid;
5983 
5984 	work->compound_sid = 0;
5985 	if (check_session_id(conn, sess_id)) {
5986 		work->compound_sid = sess_id;
5987 	} else {
5988 		rsp->hdr.Status = STATUS_USER_SESSION_DELETED;
5989 		if (req->hdr.Flags & SMB2_FLAGS_RELATED_OPERATIONS)
5990 			rsp->hdr.Status = STATUS_INVALID_PARAMETER;
5991 		err = -EBADF;
5992 		goto out;
5993 	}
5994 
5995 	if (work->next_smb2_rcv_hdr_off &&
5996 	    !has_file_id(req->VolatileFileId)) {
5997 		if (!has_file_id(work->compound_fid)) {
5998 			/* file already closed, return FILE_CLOSED */
5999 			ksmbd_debug(SMB, "file already closed\n");
6000 			rsp->hdr.Status = STATUS_FILE_CLOSED;
6001 			err = -EBADF;
6002 			goto out;
6003 		} else {
6004 			ksmbd_debug(SMB,
6005 				    "Compound request set FID = %llu:%llu\n",
6006 				    work->compound_fid,
6007 				    work->compound_pfid);
6008 			volatile_id = work->compound_fid;
6009 
6010 			/* file closed, stored id is not valid anymore */
6011 			work->compound_fid = KSMBD_NO_FID;
6012 			work->compound_pfid = KSMBD_NO_FID;
6013 		}
6014 	} else {
6015 		volatile_id = req->VolatileFileId;
6016 	}
6017 	ksmbd_debug(SMB, "volatile_id = %llu\n", volatile_id);
6018 
6019 	rsp->StructureSize = cpu_to_le16(60);
6020 	rsp->Reserved = 0;
6021 
6022 	if (req->Flags == SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB) {
6023 		struct kstat stat;
6024 		int ret;
6025 
6026 		fp = ksmbd_lookup_fd_fast(work, volatile_id);
6027 		if (!fp) {
6028 			err = -ENOENT;
6029 			goto out;
6030 		}
6031 
6032 		ret = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS,
6033 				  AT_STATX_SYNC_AS_STAT);
6034 		if (ret) {
6035 			ksmbd_fd_put(work, fp);
6036 			goto out;
6037 		}
6038 
6039 		rsp->Flags = SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB;
6040 		rsp->AllocationSize = S_ISDIR(stat.mode) ? 0 :
6041 			cpu_to_le64(stat.blocks << 9);
6042 		rsp->EndOfFile = cpu_to_le64(stat.size);
6043 		rsp->Attributes = fp->f_ci->m_fattr;
6044 		rsp->CreationTime = cpu_to_le64(fp->create_time);
6045 		time = ksmbd_UnixTimeToNT(stat.atime);
6046 		rsp->LastAccessTime = cpu_to_le64(time);
6047 		time = ksmbd_UnixTimeToNT(stat.mtime);
6048 		rsp->LastWriteTime = cpu_to_le64(time);
6049 		time = ksmbd_UnixTimeToNT(stat.ctime);
6050 		rsp->ChangeTime = cpu_to_le64(time);
6051 		ksmbd_fd_put(work, fp);
6052 	} else {
6053 		rsp->Flags = 0;
6054 		rsp->AllocationSize = 0;
6055 		rsp->EndOfFile = 0;
6056 		rsp->Attributes = 0;
6057 		rsp->CreationTime = 0;
6058 		rsp->LastAccessTime = 0;
6059 		rsp->LastWriteTime = 0;
6060 		rsp->ChangeTime = 0;
6061 	}
6062 
6063 	err = ksmbd_close_fd(work, volatile_id);
6064 out:
6065 	if (!err)
6066 		err = ksmbd_iov_pin_rsp(work, (void *)rsp,
6067 					sizeof(struct smb2_close_rsp));
6068 
6069 	if (err) {
6070 		if (rsp->hdr.Status == 0)
6071 			rsp->hdr.Status = STATUS_FILE_CLOSED;
6072 		smb2_set_err_rsp(work);
6073 	}
6074 
6075 	return err;
6076 }
6077 
6078 /**
6079  * smb2_echo() - handler for smb2 echo(ping) command
6080  * @work:	smb work containing echo request buffer
6081  *
6082  * Return:	0 on success, otherwise error
6083  */
smb2_echo(struct ksmbd_work * work)6084 int smb2_echo(struct ksmbd_work *work)
6085 {
6086 	struct smb2_echo_rsp *rsp = smb_get_msg(work->response_buf);
6087 
6088 	ksmbd_debug(SMB, "Received smb2 echo request\n");
6089 
6090 	if (work->next_smb2_rcv_hdr_off)
6091 		rsp = ksmbd_resp_buf_next(work);
6092 
6093 	rsp->StructureSize = cpu_to_le16(4);
6094 	rsp->Reserved = 0;
6095 	return ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_echo_rsp));
6096 }
6097 
smb2_rename(struct ksmbd_work * work,struct ksmbd_file * fp,struct smb2_file_rename_info * file_info,struct nls_table * local_nls)6098 static int smb2_rename(struct ksmbd_work *work,
6099 		       struct ksmbd_file *fp,
6100 		       struct smb2_file_rename_info *file_info,
6101 		       struct nls_table *local_nls)
6102 {
6103 	struct ksmbd_share_config *share = fp->tcon->share_conf;
6104 	char *new_name = NULL;
6105 	int rc, flags = 0;
6106 
6107 	ksmbd_debug(SMB, "setting FILE_RENAME_INFO\n");
6108 	new_name = smb2_get_name(file_info->FileName,
6109 				 le32_to_cpu(file_info->FileNameLength),
6110 				 local_nls);
6111 	if (IS_ERR(new_name))
6112 		return PTR_ERR(new_name);
6113 
6114 	if (fp->is_posix_ctxt == false && strchr(new_name, ':')) {
6115 		int s_type;
6116 		char *xattr_stream_name, *stream_name = NULL;
6117 		size_t xattr_stream_size;
6118 		int len;
6119 
6120 		rc = parse_stream_name(new_name, &stream_name, &s_type);
6121 		if (rc < 0)
6122 			goto out;
6123 
6124 		len = strlen(new_name);
6125 		if (len > 0 && new_name[len - 1] != '/') {
6126 			pr_err("not allow base filename in rename\n");
6127 			rc = -ESHARE;
6128 			goto out;
6129 		}
6130 
6131 		rc = ksmbd_vfs_xattr_stream_name(stream_name,
6132 						 &xattr_stream_name,
6133 						 &xattr_stream_size,
6134 						 s_type);
6135 		if (rc)
6136 			goto out;
6137 
6138 		rc = ksmbd_vfs_setxattr(file_mnt_idmap(fp->filp),
6139 					&fp->filp->f_path,
6140 					xattr_stream_name,
6141 					NULL, 0, 0, true);
6142 		if (rc < 0) {
6143 			pr_err("failed to store stream name in xattr: %d\n",
6144 			       rc);
6145 			rc = -EINVAL;
6146 			goto out;
6147 		}
6148 
6149 		goto out;
6150 	}
6151 
6152 	ksmbd_debug(SMB, "new name %s\n", new_name);
6153 	if (ksmbd_share_veto_filename(share, new_name)) {
6154 		rc = -ENOENT;
6155 		ksmbd_debug(SMB, "Can't rename vetoed file: %s\n", new_name);
6156 		goto out;
6157 	}
6158 
6159 	if (!file_info->ReplaceIfExists)
6160 		flags = RENAME_NOREPLACE;
6161 
6162 	rc = ksmbd_vfs_rename(work, &fp->filp->f_path, new_name, flags);
6163 	if (!rc)
6164 		smb_break_all_levII_oplock(work, fp, 0);
6165 out:
6166 	kfree(new_name);
6167 	return rc;
6168 }
6169 
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)6170 static int smb2_create_link(struct ksmbd_work *work,
6171 			    struct ksmbd_share_config *share,
6172 			    struct smb2_file_link_info *file_info,
6173 			    unsigned int buf_len, struct file *filp,
6174 			    struct nls_table *local_nls)
6175 {
6176 	char *link_name = NULL, *target_name = NULL, *pathname = NULL;
6177 	struct path path;
6178 	int rc;
6179 
6180 	if (buf_len < (u64)sizeof(struct smb2_file_link_info) +
6181 			le32_to_cpu(file_info->FileNameLength))
6182 		return -EINVAL;
6183 
6184 	ksmbd_debug(SMB, "setting FILE_LINK_INFORMATION\n");
6185 	pathname = kmalloc(PATH_MAX, KSMBD_DEFAULT_GFP);
6186 	if (!pathname)
6187 		return -ENOMEM;
6188 
6189 	link_name = smb2_get_name(file_info->FileName,
6190 				  le32_to_cpu(file_info->FileNameLength),
6191 				  local_nls);
6192 	if (IS_ERR(link_name) || S_ISDIR(file_inode(filp)->i_mode)) {
6193 		rc = -EINVAL;
6194 		goto out;
6195 	}
6196 
6197 	ksmbd_debug(SMB, "link name is %s\n", link_name);
6198 	target_name = file_path(filp, pathname, PATH_MAX);
6199 	if (IS_ERR(target_name)) {
6200 		rc = -EINVAL;
6201 		goto out;
6202 	}
6203 
6204 	ksmbd_debug(SMB, "target name is %s\n", target_name);
6205 	rc = ksmbd_vfs_kern_path_start_removing(work, link_name, LOOKUP_NO_SYMLINKS,
6206 						&path, 0);
6207 	if (rc) {
6208 		if (rc != -ENOENT)
6209 			goto out;
6210 	} else {
6211 		if (file_info->ReplaceIfExists) {
6212 			rc = ksmbd_vfs_remove_file(work, &path);
6213 			if (rc) {
6214 				rc = -EINVAL;
6215 				ksmbd_debug(SMB, "cannot delete %s\n",
6216 					    link_name);
6217 			}
6218 		} else {
6219 			rc = -EEXIST;
6220 			ksmbd_debug(SMB, "link already exists\n");
6221 		}
6222 		ksmbd_vfs_kern_path_end_removing(&path);
6223 		if (rc)
6224 			goto out;
6225 	}
6226 	rc = ksmbd_vfs_link(work, target_name, link_name);
6227 	if (rc)
6228 		rc = -EINVAL;
6229 out:
6230 
6231 	if (!IS_ERR(link_name))
6232 		kfree(link_name);
6233 	kfree(pathname);
6234 	return rc;
6235 }
6236 
set_file_basic_info(struct ksmbd_file * fp,struct file_basic_info * file_info,struct ksmbd_share_config * share)6237 static int set_file_basic_info(struct ksmbd_file *fp,
6238 			       struct file_basic_info *file_info,
6239 			       struct ksmbd_share_config *share)
6240 {
6241 	struct iattr attrs;
6242 	struct file *filp;
6243 	struct inode *inode;
6244 	struct mnt_idmap *idmap;
6245 	int rc = 0;
6246 
6247 	if (!(fp->daccess & FILE_WRITE_ATTRIBUTES_LE))
6248 		return -EACCES;
6249 
6250 	attrs.ia_valid = 0;
6251 	filp = fp->filp;
6252 	inode = file_inode(filp);
6253 	idmap = file_mnt_idmap(filp);
6254 
6255 	if (file_info->CreationTime)
6256 		fp->create_time = le64_to_cpu(file_info->CreationTime);
6257 
6258 	if (file_info->LastAccessTime) {
6259 		attrs.ia_atime = ksmbd_NTtimeToUnix(file_info->LastAccessTime);
6260 		attrs.ia_valid |= (ATTR_ATIME | ATTR_ATIME_SET);
6261 	}
6262 
6263 	if (file_info->ChangeTime)
6264 		inode_set_ctime_to_ts(inode,
6265 				ksmbd_NTtimeToUnix(file_info->ChangeTime));
6266 
6267 	if (file_info->LastWriteTime) {
6268 		attrs.ia_mtime = ksmbd_NTtimeToUnix(file_info->LastWriteTime);
6269 		attrs.ia_valid |= (ATTR_MTIME | ATTR_MTIME_SET | ATTR_CTIME);
6270 	}
6271 
6272 	if (file_info->Attributes) {
6273 		if (!S_ISDIR(inode->i_mode) &&
6274 		    file_info->Attributes & FILE_ATTRIBUTE_DIRECTORY_LE) {
6275 			pr_err("can't change a file to a directory\n");
6276 			return -EINVAL;
6277 		}
6278 
6279 		if (!(S_ISDIR(inode->i_mode) && file_info->Attributes == FILE_ATTRIBUTE_NORMAL_LE))
6280 			fp->f_ci->m_fattr = file_info->Attributes |
6281 				(fp->f_ci->m_fattr & FILE_ATTRIBUTE_DIRECTORY_LE);
6282 	}
6283 
6284 	if (test_share_config_flag(share, KSMBD_SHARE_FLAG_STORE_DOS_ATTRS) &&
6285 	    (file_info->CreationTime || file_info->Attributes)) {
6286 		struct xattr_dos_attrib da = {0};
6287 
6288 		da.version = 4;
6289 		da.itime = fp->itime;
6290 		da.create_time = fp->create_time;
6291 		da.attr = le32_to_cpu(fp->f_ci->m_fattr);
6292 		da.flags = XATTR_DOSINFO_ATTRIB | XATTR_DOSINFO_CREATE_TIME |
6293 			XATTR_DOSINFO_ITIME;
6294 
6295 		rc = ksmbd_vfs_set_dos_attrib_xattr(idmap, &filp->f_path, &da,
6296 				true);
6297 		if (rc)
6298 			ksmbd_debug(SMB,
6299 				    "failed to restore file attribute in EA\n");
6300 		rc = 0;
6301 	}
6302 
6303 	if (attrs.ia_valid) {
6304 		struct dentry *dentry = filp->f_path.dentry;
6305 		struct inode *inode = d_inode(dentry);
6306 
6307 		if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
6308 			return -EACCES;
6309 
6310 		inode_lock(inode);
6311 		rc = notify_change(idmap, dentry, &attrs, NULL);
6312 		inode_unlock(inode);
6313 	}
6314 	return rc;
6315 }
6316 
set_file_allocation_info(struct ksmbd_work * work,struct ksmbd_file * fp,struct smb2_file_alloc_info * file_alloc_info)6317 static int set_file_allocation_info(struct ksmbd_work *work,
6318 				    struct ksmbd_file *fp,
6319 				    struct smb2_file_alloc_info *file_alloc_info)
6320 {
6321 	/*
6322 	 * TODO : It's working fine only when store dos attributes
6323 	 * is not yes. need to implement a logic which works
6324 	 * properly with any smb.conf option
6325 	 */
6326 
6327 	loff_t alloc_blks;
6328 	struct inode *inode;
6329 	struct kstat stat;
6330 	int rc;
6331 
6332 	if (!(fp->daccess & FILE_WRITE_DATA_LE))
6333 		return -EACCES;
6334 
6335 	if (ksmbd_stream_fd(fp) == true)
6336 		return 0;
6337 
6338 	rc = vfs_getattr(&fp->filp->f_path, &stat, STATX_BASIC_STATS,
6339 			 AT_STATX_SYNC_AS_STAT);
6340 	if (rc)
6341 		return rc;
6342 
6343 	alloc_blks = (le64_to_cpu(file_alloc_info->AllocationSize) + 511) >> 9;
6344 	inode = file_inode(fp->filp);
6345 
6346 	if (alloc_blks > stat.blocks) {
6347 		smb_break_all_levII_oplock(work, fp, 1);
6348 		rc = vfs_fallocate(fp->filp, FALLOC_FL_KEEP_SIZE, 0,
6349 				   alloc_blks * 512);
6350 		if (rc && rc != -EOPNOTSUPP) {
6351 			pr_err("vfs_fallocate is failed : %d\n", rc);
6352 			return rc;
6353 		}
6354 	} else if (alloc_blks < stat.blocks) {
6355 		loff_t size;
6356 
6357 		/*
6358 		 * Allocation size could be smaller than original one
6359 		 * which means allocated blocks in file should be
6360 		 * deallocated. use truncate to cut out it, but inode
6361 		 * size is also updated with truncate offset.
6362 		 * inode size is retained by backup inode size.
6363 		 */
6364 		size = i_size_read(inode);
6365 		rc = ksmbd_vfs_truncate(work, fp, alloc_blks * 512);
6366 		if (rc) {
6367 			pr_err("truncate failed!, err %d\n", rc);
6368 			return rc;
6369 		}
6370 		if (size < alloc_blks * 512)
6371 			i_size_write(inode, size);
6372 	}
6373 	return 0;
6374 }
6375 
set_end_of_file_info(struct ksmbd_work * work,struct ksmbd_file * fp,struct smb2_file_eof_info * file_eof_info)6376 static int set_end_of_file_info(struct ksmbd_work *work, struct ksmbd_file *fp,
6377 				struct smb2_file_eof_info *file_eof_info)
6378 {
6379 	loff_t newsize;
6380 	struct inode *inode;
6381 	int rc;
6382 
6383 	if (!(fp->daccess & FILE_WRITE_DATA_LE))
6384 		return -EACCES;
6385 
6386 	newsize = le64_to_cpu(file_eof_info->EndOfFile);
6387 	inode = file_inode(fp->filp);
6388 
6389 	/*
6390 	 * If FILE_END_OF_FILE_INFORMATION of set_info_file is called
6391 	 * on FAT32 shared device, truncate execution time is too long
6392 	 * and network error could cause from windows client. because
6393 	 * truncate of some filesystem like FAT32 fill zero data in
6394 	 * truncated range.
6395 	 */
6396 	if (inode->i_sb->s_magic != MSDOS_SUPER_MAGIC &&
6397 	    ksmbd_stream_fd(fp) == false) {
6398 		ksmbd_debug(SMB, "truncated to newsize %lld\n", newsize);
6399 		rc = ksmbd_vfs_truncate(work, fp, newsize);
6400 		if (rc) {
6401 			ksmbd_debug(SMB, "truncate failed!, err %d\n", rc);
6402 			if (rc != -EAGAIN)
6403 				rc = -EBADF;
6404 			return rc;
6405 		}
6406 	}
6407 	return 0;
6408 }
6409 
set_rename_info(struct ksmbd_work * work,struct ksmbd_file * fp,struct smb2_file_rename_info * rename_info,unsigned int buf_len)6410 static int set_rename_info(struct ksmbd_work *work, struct ksmbd_file *fp,
6411 			   struct smb2_file_rename_info *rename_info,
6412 			   unsigned int buf_len)
6413 {
6414 	if (!(fp->daccess & FILE_DELETE_LE)) {
6415 		pr_err("no right to delete : 0x%x\n", fp->daccess);
6416 		return -EACCES;
6417 	}
6418 
6419 	if (buf_len < (u64)sizeof(struct smb2_file_rename_info) +
6420 			le32_to_cpu(rename_info->FileNameLength))
6421 		return -EINVAL;
6422 
6423 	if (!le32_to_cpu(rename_info->FileNameLength))
6424 		return -EINVAL;
6425 
6426 	return smb2_rename(work, fp, rename_info, work->conn->local_nls);
6427 }
6428 
set_file_disposition_info(struct ksmbd_file * fp,struct smb2_file_disposition_info * file_info)6429 static int set_file_disposition_info(struct ksmbd_file *fp,
6430 				     struct smb2_file_disposition_info *file_info)
6431 {
6432 	struct inode *inode;
6433 
6434 	if (!(fp->daccess & FILE_DELETE_LE)) {
6435 		pr_err("no right to delete : 0x%x\n", fp->daccess);
6436 		return -EACCES;
6437 	}
6438 
6439 	inode = file_inode(fp->filp);
6440 	if (file_info->DeletePending) {
6441 		if (S_ISDIR(inode->i_mode) &&
6442 		    ksmbd_vfs_empty_dir(fp) == -ENOTEMPTY)
6443 			return -EBUSY;
6444 		ksmbd_set_inode_pending_delete(fp);
6445 	} else {
6446 		ksmbd_clear_inode_pending_delete(fp);
6447 	}
6448 	return 0;
6449 }
6450 
set_file_position_info(struct ksmbd_file * fp,struct smb2_file_pos_info * file_info)6451 static int set_file_position_info(struct ksmbd_file *fp,
6452 				  struct smb2_file_pos_info *file_info)
6453 {
6454 	loff_t current_byte_offset;
6455 	unsigned long sector_size;
6456 	struct inode *inode;
6457 
6458 	inode = file_inode(fp->filp);
6459 	current_byte_offset = le64_to_cpu(file_info->CurrentByteOffset);
6460 	sector_size = inode->i_sb->s_blocksize;
6461 
6462 	if (current_byte_offset < 0 ||
6463 	    (fp->coption == FILE_NO_INTERMEDIATE_BUFFERING_LE &&
6464 	     current_byte_offset & (sector_size - 1))) {
6465 		pr_err("CurrentByteOffset is not valid : %llu\n",
6466 		       current_byte_offset);
6467 		return -EINVAL;
6468 	}
6469 
6470 	if (ksmbd_stream_fd(fp) == false)
6471 		fp->filp->f_pos = current_byte_offset;
6472 	else {
6473 		if (current_byte_offset > XATTR_SIZE_MAX)
6474 			current_byte_offset = XATTR_SIZE_MAX;
6475 		fp->stream.pos = current_byte_offset;
6476 	}
6477 	return 0;
6478 }
6479 
set_file_mode_info(struct ksmbd_file * fp,struct smb2_file_mode_info * file_info)6480 static int set_file_mode_info(struct ksmbd_file *fp,
6481 			      struct smb2_file_mode_info *file_info)
6482 {
6483 	__le32 mode;
6484 
6485 	mode = file_info->Mode;
6486 
6487 	if ((mode & ~FILE_MODE_INFO_MASK)) {
6488 		pr_err("Mode is not valid : 0x%x\n", le32_to_cpu(mode));
6489 		return -EINVAL;
6490 	}
6491 
6492 	/*
6493 	 * TODO : need to implement consideration for
6494 	 * FILE_SYNCHRONOUS_IO_ALERT and FILE_SYNCHRONOUS_IO_NONALERT
6495 	 */
6496 	ksmbd_vfs_set_fadvise(fp->filp, mode);
6497 	fp->coption = mode;
6498 	return 0;
6499 }
6500 
6501 /**
6502  * smb2_set_info_file() - handler for smb2 set info command
6503  * @work:	smb work containing set info command buffer
6504  * @fp:		ksmbd_file pointer
6505  * @req:	request buffer pointer
6506  * @share:	ksmbd_share_config pointer
6507  *
6508  * Return:	0 on success, otherwise error
6509  */
smb2_set_info_file(struct ksmbd_work * work,struct ksmbd_file * fp,struct smb2_set_info_req * req,struct ksmbd_share_config * share)6510 static int smb2_set_info_file(struct ksmbd_work *work, struct ksmbd_file *fp,
6511 			      struct smb2_set_info_req *req,
6512 			      struct ksmbd_share_config *share)
6513 {
6514 	unsigned int buf_len = le32_to_cpu(req->BufferLength);
6515 	char *buffer = (char *)req + le16_to_cpu(req->BufferOffset);
6516 
6517 	switch (req->FileInfoClass) {
6518 	case FILE_BASIC_INFORMATION:
6519 	{
6520 		if (buf_len < sizeof(struct file_basic_info))
6521 			return -EMSGSIZE;
6522 
6523 		return set_file_basic_info(fp, (struct file_basic_info *)buffer, share);
6524 	}
6525 	case FILE_ALLOCATION_INFORMATION:
6526 	{
6527 		if (buf_len < sizeof(struct smb2_file_alloc_info))
6528 			return -EMSGSIZE;
6529 
6530 		return set_file_allocation_info(work, fp,
6531 						(struct smb2_file_alloc_info *)buffer);
6532 	}
6533 	case FILE_END_OF_FILE_INFORMATION:
6534 	{
6535 		if (buf_len < sizeof(struct smb2_file_eof_info))
6536 			return -EMSGSIZE;
6537 
6538 		return set_end_of_file_info(work, fp,
6539 					    (struct smb2_file_eof_info *)buffer);
6540 	}
6541 	case FILE_RENAME_INFORMATION:
6542 	{
6543 		if (buf_len < sizeof(struct smb2_file_rename_info))
6544 			return -EMSGSIZE;
6545 
6546 		return set_rename_info(work, fp,
6547 				       (struct smb2_file_rename_info *)buffer,
6548 				       buf_len);
6549 	}
6550 	case FILE_LINK_INFORMATION:
6551 	{
6552 		if (buf_len < sizeof(struct smb2_file_link_info))
6553 			return -EMSGSIZE;
6554 
6555 		return smb2_create_link(work, work->tcon->share_conf,
6556 					(struct smb2_file_link_info *)buffer,
6557 					buf_len, fp->filp,
6558 					work->conn->local_nls);
6559 	}
6560 	case FILE_DISPOSITION_INFORMATION:
6561 	{
6562 		if (buf_len < sizeof(struct smb2_file_disposition_info))
6563 			return -EMSGSIZE;
6564 
6565 		return set_file_disposition_info(fp,
6566 						 (struct smb2_file_disposition_info *)buffer);
6567 	}
6568 	case FILE_FULL_EA_INFORMATION:
6569 	{
6570 		if (!(fp->daccess & FILE_WRITE_EA_LE)) {
6571 			pr_err("Not permitted to write ext  attr: 0x%x\n",
6572 			       fp->daccess);
6573 			return -EACCES;
6574 		}
6575 
6576 		if (buf_len < sizeof(struct smb2_ea_info))
6577 			return -EMSGSIZE;
6578 
6579 		return smb2_set_ea((struct smb2_ea_info *)buffer,
6580 				   buf_len, &fp->filp->f_path, true);
6581 	}
6582 	case FILE_POSITION_INFORMATION:
6583 	{
6584 		if (buf_len < sizeof(struct smb2_file_pos_info))
6585 			return -EMSGSIZE;
6586 
6587 		return set_file_position_info(fp, (struct smb2_file_pos_info *)buffer);
6588 	}
6589 	case FILE_MODE_INFORMATION:
6590 	{
6591 		if (buf_len < sizeof(struct smb2_file_mode_info))
6592 			return -EMSGSIZE;
6593 
6594 		return set_file_mode_info(fp, (struct smb2_file_mode_info *)buffer);
6595 	}
6596 	}
6597 
6598 	pr_err("Unimplemented Fileinfoclass :%d\n", req->FileInfoClass);
6599 	return -EOPNOTSUPP;
6600 }
6601 
smb2_set_info_sec(struct ksmbd_file * fp,int addition_info,char * buffer,int buf_len)6602 static int smb2_set_info_sec(struct ksmbd_file *fp, int addition_info,
6603 			     char *buffer, int buf_len)
6604 {
6605 	struct smb_ntsd *pntsd = (struct smb_ntsd *)buffer;
6606 
6607 	fp->saccess |= FILE_SHARE_DELETE_LE;
6608 
6609 	return set_info_sec(fp->conn, fp->tcon, &fp->filp->f_path, pntsd,
6610 			buf_len, false, true);
6611 }
6612 
6613 /**
6614  * smb2_set_info() - handler for smb2 set info command handler
6615  * @work:	smb work containing set info request buffer
6616  *
6617  * Return:	0 on success, otherwise error
6618  */
smb2_set_info(struct ksmbd_work * work)6619 int smb2_set_info(struct ksmbd_work *work)
6620 {
6621 	struct smb2_set_info_req *req;
6622 	struct smb2_set_info_rsp *rsp;
6623 	struct ksmbd_file *fp = NULL;
6624 	int rc = 0;
6625 	unsigned int id = KSMBD_NO_FID, pid = KSMBD_NO_FID;
6626 
6627 	ksmbd_debug(SMB, "Received smb2 set info request\n");
6628 
6629 	if (work->next_smb2_rcv_hdr_off) {
6630 		req = ksmbd_req_buf_next(work);
6631 		rsp = ksmbd_resp_buf_next(work);
6632 		if (!has_file_id(req->VolatileFileId)) {
6633 			ksmbd_debug(SMB, "Compound request set FID = %llu\n",
6634 				    work->compound_fid);
6635 			id = work->compound_fid;
6636 			pid = work->compound_pfid;
6637 		}
6638 	} else {
6639 		req = smb_get_msg(work->request_buf);
6640 		rsp = smb_get_msg(work->response_buf);
6641 	}
6642 
6643 	if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) {
6644 		ksmbd_debug(SMB, "User does not have write permission\n");
6645 		pr_err("User does not have write permission\n");
6646 		rc = -EACCES;
6647 		goto err_out;
6648 	}
6649 
6650 	if (!has_file_id(id)) {
6651 		id = req->VolatileFileId;
6652 		pid = req->PersistentFileId;
6653 	}
6654 
6655 	fp = ksmbd_lookup_fd_slow(work, id, pid);
6656 	if (!fp) {
6657 		ksmbd_debug(SMB, "Invalid id for close: %u\n", id);
6658 		rc = -ENOENT;
6659 		goto err_out;
6660 	}
6661 
6662 	switch (req->InfoType) {
6663 	case SMB2_O_INFO_FILE:
6664 		ksmbd_debug(SMB, "GOT SMB2_O_INFO_FILE\n");
6665 		rc = smb2_set_info_file(work, fp, req, work->tcon->share_conf);
6666 		break;
6667 	case SMB2_O_INFO_SECURITY:
6668 		ksmbd_debug(SMB, "GOT SMB2_O_INFO_SECURITY\n");
6669 		if (ksmbd_override_fsids(work)) {
6670 			rc = -ENOMEM;
6671 			goto err_out;
6672 		}
6673 		rc = smb2_set_info_sec(fp,
6674 				       le32_to_cpu(req->AdditionalInformation),
6675 				       (char *)req + le16_to_cpu(req->BufferOffset),
6676 				       le32_to_cpu(req->BufferLength));
6677 		ksmbd_revert_fsids(work);
6678 		break;
6679 	default:
6680 		rc = -EOPNOTSUPP;
6681 	}
6682 
6683 	if (rc < 0)
6684 		goto err_out;
6685 
6686 	rsp->StructureSize = cpu_to_le16(2);
6687 	rc = ksmbd_iov_pin_rsp(work, (void *)rsp,
6688 			       sizeof(struct smb2_set_info_rsp));
6689 	if (rc)
6690 		goto err_out;
6691 	ksmbd_fd_put(work, fp);
6692 	return 0;
6693 
6694 err_out:
6695 	if (rc == -EACCES || rc == -EPERM || rc == -EXDEV)
6696 		rsp->hdr.Status = STATUS_ACCESS_DENIED;
6697 	else if (rc == -EINVAL)
6698 		rsp->hdr.Status = STATUS_INVALID_PARAMETER;
6699 	else if (rc == -EMSGSIZE)
6700 		rsp->hdr.Status = STATUS_INFO_LENGTH_MISMATCH;
6701 	else if (rc == -ESHARE)
6702 		rsp->hdr.Status = STATUS_SHARING_VIOLATION;
6703 	else if (rc == -ENOENT)
6704 		rsp->hdr.Status = STATUS_OBJECT_NAME_INVALID;
6705 	else if (rc == -EBUSY || rc == -ENOTEMPTY)
6706 		rsp->hdr.Status = STATUS_DIRECTORY_NOT_EMPTY;
6707 	else if (rc == -EAGAIN)
6708 		rsp->hdr.Status = STATUS_FILE_LOCK_CONFLICT;
6709 	else if (rc == -EBADF || rc == -ESTALE)
6710 		rsp->hdr.Status = STATUS_INVALID_HANDLE;
6711 	else if (rc == -EEXIST)
6712 		rsp->hdr.Status = STATUS_OBJECT_NAME_COLLISION;
6713 	else if (rsp->hdr.Status == 0 || rc == -EOPNOTSUPP)
6714 		rsp->hdr.Status = STATUS_INVALID_INFO_CLASS;
6715 	smb2_set_err_rsp(work);
6716 	ksmbd_fd_put(work, fp);
6717 	ksmbd_debug(SMB, "error while processing smb2 query rc = %d\n", rc);
6718 	return rc;
6719 }
6720 
6721 /**
6722  * smb2_read_pipe() - handler for smb2 read from IPC pipe
6723  * @work:	smb work containing read IPC pipe command buffer
6724  *
6725  * Return:	0 on success, otherwise error
6726  */
smb2_read_pipe(struct ksmbd_work * work)6727 static noinline int smb2_read_pipe(struct ksmbd_work *work)
6728 {
6729 	int nbytes = 0, err;
6730 	u64 id;
6731 	struct ksmbd_rpc_command *rpc_resp;
6732 	struct smb2_read_req *req;
6733 	struct smb2_read_rsp *rsp;
6734 
6735 	WORK_BUFFERS(work, req, rsp);
6736 
6737 	id = req->VolatileFileId;
6738 
6739 	rpc_resp = ksmbd_rpc_read(work->sess, id);
6740 	if (rpc_resp) {
6741 		void *aux_payload_buf;
6742 
6743 		if (rpc_resp->flags != KSMBD_RPC_OK) {
6744 			err = -EINVAL;
6745 			goto out;
6746 		}
6747 
6748 		aux_payload_buf =
6749 			kvmalloc(rpc_resp->payload_sz, KSMBD_DEFAULT_GFP);
6750 		if (!aux_payload_buf) {
6751 			err = -ENOMEM;
6752 			goto out;
6753 		}
6754 
6755 		memcpy(aux_payload_buf, rpc_resp->payload, rpc_resp->payload_sz);
6756 
6757 		nbytes = rpc_resp->payload_sz;
6758 		err = ksmbd_iov_pin_rsp_read(work, (void *)rsp,
6759 					     offsetof(struct smb2_read_rsp, Buffer),
6760 					     aux_payload_buf, nbytes);
6761 		if (err) {
6762 			kvfree(aux_payload_buf);
6763 			goto out;
6764 		}
6765 		kvfree(rpc_resp);
6766 	} else {
6767 		err = ksmbd_iov_pin_rsp(work, (void *)rsp,
6768 					offsetof(struct smb2_read_rsp, Buffer));
6769 		if (err)
6770 			goto out;
6771 	}
6772 
6773 	rsp->StructureSize = cpu_to_le16(17);
6774 	rsp->DataOffset = 80;
6775 	rsp->Reserved = 0;
6776 	rsp->DataLength = cpu_to_le32(nbytes);
6777 	rsp->DataRemaining = 0;
6778 	rsp->Flags = 0;
6779 	return 0;
6780 
6781 out:
6782 	rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR;
6783 	smb2_set_err_rsp(work);
6784 	kvfree(rpc_resp);
6785 	return err;
6786 }
6787 
smb2_set_remote_key_for_rdma(struct ksmbd_work * work,struct smbdirect_buffer_descriptor_v1 * desc,__le32 Channel,__le16 ChannelInfoLength)6788 static int smb2_set_remote_key_for_rdma(struct ksmbd_work *work,
6789 					struct smbdirect_buffer_descriptor_v1 *desc,
6790 					__le32 Channel,
6791 					__le16 ChannelInfoLength)
6792 {
6793 	unsigned int i, ch_count;
6794 
6795 	if (work->conn->dialect == SMB30_PROT_ID &&
6796 	    Channel != SMB2_CHANNEL_RDMA_V1)
6797 		return -EINVAL;
6798 
6799 	ch_count = le16_to_cpu(ChannelInfoLength) / sizeof(*desc);
6800 	if (ksmbd_debug_types & KSMBD_DEBUG_RDMA) {
6801 		for (i = 0; i < ch_count; i++) {
6802 			pr_info("RDMA r/w request %#x: token %#x, length %#x\n",
6803 				i,
6804 				le32_to_cpu(desc[i].token),
6805 				le32_to_cpu(desc[i].length));
6806 		}
6807 	}
6808 	if (!ch_count)
6809 		return -EINVAL;
6810 
6811 	work->need_invalidate_rkey =
6812 		(Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE);
6813 	if (Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE)
6814 		work->remote_key = le32_to_cpu(desc->token);
6815 	return 0;
6816 }
6817 
smb2_read_rdma_channel(struct ksmbd_work * work,struct smb2_read_req * req,void * data_buf,size_t length)6818 static ssize_t smb2_read_rdma_channel(struct ksmbd_work *work,
6819 				      struct smb2_read_req *req, void *data_buf,
6820 				      size_t length)
6821 {
6822 	int err;
6823 
6824 	err = ksmbd_conn_rdma_write(work->conn, data_buf, length,
6825 				    (struct smbdirect_buffer_descriptor_v1 *)
6826 				    ((char *)req + le16_to_cpu(req->ReadChannelInfoOffset)),
6827 				    le16_to_cpu(req->ReadChannelInfoLength));
6828 	if (err)
6829 		return err;
6830 
6831 	return length;
6832 }
6833 
6834 /**
6835  * smb2_read() - handler for smb2 read from file
6836  * @work:	smb work containing read command buffer
6837  *
6838  * Return:	0 on success, otherwise error
6839  */
smb2_read(struct ksmbd_work * work)6840 int smb2_read(struct ksmbd_work *work)
6841 {
6842 	struct ksmbd_conn *conn = work->conn;
6843 	struct smb2_read_req *req;
6844 	struct smb2_read_rsp *rsp;
6845 	struct ksmbd_file *fp = NULL;
6846 	loff_t offset;
6847 	size_t length, mincount;
6848 	ssize_t nbytes = 0, remain_bytes = 0;
6849 	int err = 0;
6850 	bool is_rdma_channel = false;
6851 	unsigned int max_read_size = conn->vals->max_read_size;
6852 	unsigned int id = KSMBD_NO_FID, pid = KSMBD_NO_FID;
6853 	void *aux_payload_buf;
6854 
6855 	ksmbd_debug(SMB, "Received smb2 read request\n");
6856 
6857 	if (test_share_config_flag(work->tcon->share_conf,
6858 				   KSMBD_SHARE_FLAG_PIPE)) {
6859 		ksmbd_debug(SMB, "IPC pipe read request\n");
6860 		return smb2_read_pipe(work);
6861 	}
6862 
6863 	if (work->next_smb2_rcv_hdr_off) {
6864 		req = ksmbd_req_buf_next(work);
6865 		rsp = ksmbd_resp_buf_next(work);
6866 		if (!has_file_id(req->VolatileFileId)) {
6867 			ksmbd_debug(SMB, "Compound request set FID = %llu\n",
6868 					work->compound_fid);
6869 			id = work->compound_fid;
6870 			pid = work->compound_pfid;
6871 		}
6872 	} else {
6873 		req = smb_get_msg(work->request_buf);
6874 		rsp = smb_get_msg(work->response_buf);
6875 	}
6876 
6877 	if (!has_file_id(id)) {
6878 		id = req->VolatileFileId;
6879 		pid = req->PersistentFileId;
6880 	}
6881 
6882 	if (req->Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE ||
6883 	    req->Channel == SMB2_CHANNEL_RDMA_V1) {
6884 		is_rdma_channel = true;
6885 		max_read_size = get_smbd_max_read_write_size(work->conn->transport);
6886 		if (max_read_size == 0) {
6887 			err = -EINVAL;
6888 			goto out;
6889 		}
6890 	}
6891 
6892 	if (is_rdma_channel == true) {
6893 		unsigned int ch_offset = le16_to_cpu(req->ReadChannelInfoOffset);
6894 
6895 		if (ch_offset < offsetof(struct smb2_read_req, Buffer)) {
6896 			err = -EINVAL;
6897 			goto out;
6898 		}
6899 		err = smb2_set_remote_key_for_rdma(work,
6900 						   (struct smbdirect_buffer_descriptor_v1 *)
6901 						   ((char *)req + ch_offset),
6902 						   req->Channel,
6903 						   req->ReadChannelInfoLength);
6904 		if (err)
6905 			goto out;
6906 	}
6907 
6908 	fp = ksmbd_lookup_fd_slow(work, id, pid);
6909 	if (!fp) {
6910 		err = -ENOENT;
6911 		goto out;
6912 	}
6913 
6914 	if (!(fp->daccess & (FILE_READ_DATA_LE | FILE_READ_ATTRIBUTES_LE))) {
6915 		pr_err("Not permitted to read : 0x%x\n", fp->daccess);
6916 		err = -EACCES;
6917 		goto out;
6918 	}
6919 
6920 	offset = le64_to_cpu(req->Offset);
6921 	if (offset < 0) {
6922 		err = -EINVAL;
6923 		goto out;
6924 	}
6925 	length = le32_to_cpu(req->Length);
6926 	mincount = le32_to_cpu(req->MinimumCount);
6927 
6928 	if (length > max_read_size) {
6929 		ksmbd_debug(SMB, "limiting read size to max size(%u)\n",
6930 			    max_read_size);
6931 		err = -EINVAL;
6932 		goto out;
6933 	}
6934 
6935 	ksmbd_debug(SMB, "filename %pD, offset %lld, len %zu\n",
6936 		    fp->filp, offset, length);
6937 
6938 	aux_payload_buf = kvzalloc(ALIGN(length, 8), KSMBD_DEFAULT_GFP);
6939 	if (!aux_payload_buf) {
6940 		err = -ENOMEM;
6941 		goto out;
6942 	}
6943 
6944 	nbytes = ksmbd_vfs_read(work, fp, length, &offset, aux_payload_buf);
6945 	if (nbytes < 0) {
6946 		kvfree(aux_payload_buf);
6947 		err = nbytes;
6948 		goto out;
6949 	}
6950 
6951 	if ((nbytes == 0 && length != 0) || nbytes < mincount) {
6952 		kvfree(aux_payload_buf);
6953 		rsp->hdr.Status = STATUS_END_OF_FILE;
6954 		smb2_set_err_rsp(work);
6955 		ksmbd_fd_put(work, fp);
6956 		return -ENODATA;
6957 	}
6958 
6959 	ksmbd_debug(SMB, "nbytes %zu, offset %lld mincount %zu\n",
6960 		    nbytes, offset, mincount);
6961 
6962 	if (is_rdma_channel == true) {
6963 		/* write data to the client using rdma channel */
6964 		remain_bytes = smb2_read_rdma_channel(work, req,
6965 						      aux_payload_buf,
6966 						      nbytes);
6967 		kvfree(aux_payload_buf);
6968 		aux_payload_buf = NULL;
6969 		nbytes = 0;
6970 		if (remain_bytes < 0) {
6971 			err = (int)remain_bytes;
6972 			goto out;
6973 		}
6974 	}
6975 
6976 	rsp->StructureSize = cpu_to_le16(17);
6977 	rsp->DataOffset = 80;
6978 	rsp->Reserved = 0;
6979 	rsp->DataLength = cpu_to_le32(nbytes);
6980 	rsp->DataRemaining = cpu_to_le32(remain_bytes);
6981 	rsp->Flags = 0;
6982 	err = ksmbd_iov_pin_rsp_read(work, (void *)rsp,
6983 				     offsetof(struct smb2_read_rsp, Buffer),
6984 				     aux_payload_buf, nbytes);
6985 	if (err) {
6986 		kvfree(aux_payload_buf);
6987 		goto out;
6988 	}
6989 	ksmbd_fd_put(work, fp);
6990 	return 0;
6991 
6992 out:
6993 	if (err) {
6994 		if (err == -EISDIR)
6995 			rsp->hdr.Status = STATUS_INVALID_DEVICE_REQUEST;
6996 		else if (err == -EAGAIN)
6997 			rsp->hdr.Status = STATUS_FILE_LOCK_CONFLICT;
6998 		else if (err == -ENOENT)
6999 			rsp->hdr.Status = STATUS_FILE_CLOSED;
7000 		else if (err == -EACCES)
7001 			rsp->hdr.Status = STATUS_ACCESS_DENIED;
7002 		else if (err == -ESHARE)
7003 			rsp->hdr.Status = STATUS_SHARING_VIOLATION;
7004 		else if (err == -EINVAL)
7005 			rsp->hdr.Status = STATUS_INVALID_PARAMETER;
7006 		else
7007 			rsp->hdr.Status = STATUS_INVALID_HANDLE;
7008 
7009 		smb2_set_err_rsp(work);
7010 	}
7011 	ksmbd_fd_put(work, fp);
7012 	return err;
7013 }
7014 
7015 /**
7016  * smb2_write_pipe() - handler for smb2 write on IPC pipe
7017  * @work:	smb work containing write IPC pipe command buffer
7018  *
7019  * Return:	0 on success, otherwise error
7020  */
smb2_write_pipe(struct ksmbd_work * work)7021 static noinline int smb2_write_pipe(struct ksmbd_work *work)
7022 {
7023 	struct smb2_write_req *req;
7024 	struct smb2_write_rsp *rsp;
7025 	struct ksmbd_rpc_command *rpc_resp;
7026 	u64 id = 0;
7027 	int err = 0, ret = 0;
7028 	char *data_buf;
7029 	size_t length;
7030 
7031 	WORK_BUFFERS(work, req, rsp);
7032 
7033 	length = le32_to_cpu(req->Length);
7034 	id = req->VolatileFileId;
7035 
7036 	if ((u64)le16_to_cpu(req->DataOffset) + length >
7037 	    get_rfc1002_len(work->request_buf)) {
7038 		pr_err("invalid write data offset %u, smb_len %u\n",
7039 		       le16_to_cpu(req->DataOffset),
7040 		       get_rfc1002_len(work->request_buf));
7041 		err = -EINVAL;
7042 		goto out;
7043 	}
7044 
7045 	data_buf = (char *)(((char *)&req->hdr.ProtocolId) +
7046 			   le16_to_cpu(req->DataOffset));
7047 
7048 	rpc_resp = ksmbd_rpc_write(work->sess, id, data_buf, length);
7049 	if (rpc_resp) {
7050 		if (rpc_resp->flags == KSMBD_RPC_ENOTIMPLEMENTED) {
7051 			rsp->hdr.Status = STATUS_NOT_SUPPORTED;
7052 			kvfree(rpc_resp);
7053 			smb2_set_err_rsp(work);
7054 			return -EOPNOTSUPP;
7055 		}
7056 		if (rpc_resp->flags != KSMBD_RPC_OK) {
7057 			rsp->hdr.Status = STATUS_INVALID_HANDLE;
7058 			smb2_set_err_rsp(work);
7059 			kvfree(rpc_resp);
7060 			return ret;
7061 		}
7062 		kvfree(rpc_resp);
7063 	}
7064 
7065 	rsp->StructureSize = cpu_to_le16(17);
7066 	rsp->DataOffset = 0;
7067 	rsp->Reserved = 0;
7068 	rsp->DataLength = cpu_to_le32(length);
7069 	rsp->DataRemaining = 0;
7070 	rsp->Reserved2 = 0;
7071 	err = ksmbd_iov_pin_rsp(work, (void *)rsp,
7072 				offsetof(struct smb2_write_rsp, Buffer));
7073 out:
7074 	if (err) {
7075 		rsp->hdr.Status = STATUS_INVALID_HANDLE;
7076 		smb2_set_err_rsp(work);
7077 	}
7078 
7079 	return err;
7080 }
7081 
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)7082 static ssize_t smb2_write_rdma_channel(struct ksmbd_work *work,
7083 				       struct smb2_write_req *req,
7084 				       struct ksmbd_file *fp,
7085 				       loff_t offset, size_t length, bool sync)
7086 {
7087 	char *data_buf;
7088 	int ret;
7089 	ssize_t nbytes;
7090 
7091 	data_buf = kvzalloc(length, KSMBD_DEFAULT_GFP);
7092 	if (!data_buf)
7093 		return -ENOMEM;
7094 
7095 	ret = ksmbd_conn_rdma_read(work->conn, data_buf, length,
7096 				   (struct smbdirect_buffer_descriptor_v1 *)
7097 				   ((char *)req + le16_to_cpu(req->WriteChannelInfoOffset)),
7098 				   le16_to_cpu(req->WriteChannelInfoLength));
7099 	if (ret < 0) {
7100 		kvfree(data_buf);
7101 		return ret;
7102 	}
7103 
7104 	ret = ksmbd_vfs_write(work, fp, data_buf, length, &offset, sync, &nbytes);
7105 	kvfree(data_buf);
7106 	if (ret < 0)
7107 		return ret;
7108 
7109 	return nbytes;
7110 }
7111 
7112 /**
7113  * smb2_write() - handler for smb2 write from file
7114  * @work:	smb work containing write command buffer
7115  *
7116  * Return:	0 on success, otherwise error
7117  */
smb2_write(struct ksmbd_work * work)7118 int smb2_write(struct ksmbd_work *work)
7119 {
7120 	struct smb2_write_req *req;
7121 	struct smb2_write_rsp *rsp;
7122 	struct ksmbd_file *fp = NULL;
7123 	loff_t offset;
7124 	size_t length;
7125 	ssize_t nbytes;
7126 	char *data_buf;
7127 	bool writethrough = false, is_rdma_channel = false;
7128 	int err = 0;
7129 	unsigned int max_write_size = work->conn->vals->max_write_size;
7130 
7131 	ksmbd_debug(SMB, "Received smb2 write request\n");
7132 
7133 	WORK_BUFFERS(work, req, rsp);
7134 
7135 	if (test_share_config_flag(work->tcon->share_conf, KSMBD_SHARE_FLAG_PIPE)) {
7136 		ksmbd_debug(SMB, "IPC pipe write request\n");
7137 		return smb2_write_pipe(work);
7138 	}
7139 
7140 	offset = le64_to_cpu(req->Offset);
7141 	if (offset < 0)
7142 		return -EINVAL;
7143 	length = le32_to_cpu(req->Length);
7144 
7145 	if (req->Channel == SMB2_CHANNEL_RDMA_V1 ||
7146 	    req->Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE) {
7147 		is_rdma_channel = true;
7148 		max_write_size = get_smbd_max_read_write_size(work->conn->transport);
7149 		if (max_write_size == 0) {
7150 			err = -EINVAL;
7151 			goto out;
7152 		}
7153 		length = le32_to_cpu(req->RemainingBytes);
7154 	}
7155 
7156 	if (is_rdma_channel == true) {
7157 		unsigned int ch_offset = le16_to_cpu(req->WriteChannelInfoOffset);
7158 
7159 		if (req->Length != 0 || req->DataOffset != 0 ||
7160 		    ch_offset < offsetof(struct smb2_write_req, Buffer)) {
7161 			err = -EINVAL;
7162 			goto out;
7163 		}
7164 		err = smb2_set_remote_key_for_rdma(work,
7165 						   (struct smbdirect_buffer_descriptor_v1 *)
7166 						   ((char *)req + ch_offset),
7167 						   req->Channel,
7168 						   req->WriteChannelInfoLength);
7169 		if (err)
7170 			goto out;
7171 	}
7172 
7173 	if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) {
7174 		ksmbd_debug(SMB, "User does not have write permission\n");
7175 		err = -EACCES;
7176 		goto out;
7177 	}
7178 
7179 	fp = ksmbd_lookup_fd_slow(work, req->VolatileFileId, req->PersistentFileId);
7180 	if (!fp) {
7181 		err = -ENOENT;
7182 		goto out;
7183 	}
7184 
7185 	if (!(fp->daccess & (FILE_WRITE_DATA_LE | FILE_READ_ATTRIBUTES_LE))) {
7186 		pr_err("Not permitted to write : 0x%x\n", fp->daccess);
7187 		err = -EACCES;
7188 		goto out;
7189 	}
7190 
7191 	if (length > max_write_size) {
7192 		ksmbd_debug(SMB, "limiting write size to max size(%u)\n",
7193 			    max_write_size);
7194 		err = -EINVAL;
7195 		goto out;
7196 	}
7197 
7198 	ksmbd_debug(SMB, "flags %u\n", le32_to_cpu(req->Flags));
7199 	if (le32_to_cpu(req->Flags) & SMB2_WRITEFLAG_WRITE_THROUGH)
7200 		writethrough = true;
7201 
7202 	if (is_rdma_channel == false) {
7203 		if (le16_to_cpu(req->DataOffset) <
7204 		    offsetof(struct smb2_write_req, Buffer)) {
7205 			err = -EINVAL;
7206 			goto out;
7207 		}
7208 
7209 		data_buf = (char *)(((char *)&req->hdr.ProtocolId) +
7210 				    le16_to_cpu(req->DataOffset));
7211 
7212 		ksmbd_debug(SMB, "filename %pD, offset %lld, len %zu\n",
7213 			    fp->filp, offset, length);
7214 		err = ksmbd_vfs_write(work, fp, data_buf, length, &offset,
7215 				      writethrough, &nbytes);
7216 		if (err < 0)
7217 			goto out;
7218 	} else {
7219 		/* read data from the client using rdma channel, and
7220 		 * write the data.
7221 		 */
7222 		nbytes = smb2_write_rdma_channel(work, req, fp, offset, length,
7223 						 writethrough);
7224 		if (nbytes < 0) {
7225 			err = (int)nbytes;
7226 			goto out;
7227 		}
7228 	}
7229 
7230 	rsp->StructureSize = cpu_to_le16(17);
7231 	rsp->DataOffset = 0;
7232 	rsp->Reserved = 0;
7233 	rsp->DataLength = cpu_to_le32(nbytes);
7234 	rsp->DataRemaining = 0;
7235 	rsp->Reserved2 = 0;
7236 	err = ksmbd_iov_pin_rsp(work, rsp, offsetof(struct smb2_write_rsp, Buffer));
7237 	if (err)
7238 		goto out;
7239 	ksmbd_fd_put(work, fp);
7240 	return 0;
7241 
7242 out:
7243 	if (err == -EAGAIN)
7244 		rsp->hdr.Status = STATUS_FILE_LOCK_CONFLICT;
7245 	else if (err == -ENOSPC || err == -EFBIG)
7246 		rsp->hdr.Status = STATUS_DISK_FULL;
7247 	else if (err == -ENOENT)
7248 		rsp->hdr.Status = STATUS_FILE_CLOSED;
7249 	else if (err == -EACCES)
7250 		rsp->hdr.Status = STATUS_ACCESS_DENIED;
7251 	else if (err == -ESHARE)
7252 		rsp->hdr.Status = STATUS_SHARING_VIOLATION;
7253 	else if (err == -EINVAL)
7254 		rsp->hdr.Status = STATUS_INVALID_PARAMETER;
7255 	else
7256 		rsp->hdr.Status = STATUS_INVALID_HANDLE;
7257 
7258 	smb2_set_err_rsp(work);
7259 	ksmbd_fd_put(work, fp);
7260 	return err;
7261 }
7262 
7263 /**
7264  * smb2_flush() - handler for smb2 flush file - fsync
7265  * @work:	smb work containing flush command buffer
7266  *
7267  * Return:	0 on success, otherwise error
7268  */
smb2_flush(struct ksmbd_work * work)7269 int smb2_flush(struct ksmbd_work *work)
7270 {
7271 	struct smb2_flush_req *req;
7272 	struct smb2_flush_rsp *rsp;
7273 	int err;
7274 
7275 	WORK_BUFFERS(work, req, rsp);
7276 
7277 	ksmbd_debug(SMB, "Received smb2 flush request(fid : %llu)\n", req->VolatileFileId);
7278 
7279 	err = ksmbd_vfs_fsync(work, req->VolatileFileId, req->PersistentFileId);
7280 	if (err)
7281 		goto out;
7282 
7283 	rsp->StructureSize = cpu_to_le16(4);
7284 	rsp->Reserved = 0;
7285 	return ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_flush_rsp));
7286 
7287 out:
7288 	rsp->hdr.Status = STATUS_INVALID_HANDLE;
7289 	smb2_set_err_rsp(work);
7290 	return err;
7291 }
7292 
7293 /**
7294  * smb2_cancel() - handler for smb2 cancel command
7295  * @work:	smb work containing cancel command buffer
7296  *
7297  * Return:	0 on success, otherwise error
7298  */
smb2_cancel(struct ksmbd_work * work)7299 int smb2_cancel(struct ksmbd_work *work)
7300 {
7301 	struct ksmbd_conn *conn = work->conn;
7302 	struct smb2_hdr *hdr = smb_get_msg(work->request_buf);
7303 	struct smb2_hdr *chdr;
7304 	struct ksmbd_work *iter;
7305 	struct list_head *command_list;
7306 
7307 	if (work->next_smb2_rcv_hdr_off)
7308 		hdr = ksmbd_resp_buf_next(work);
7309 
7310 	ksmbd_debug(SMB, "smb2 cancel called on mid %llu, async flags 0x%x\n",
7311 		    hdr->MessageId, hdr->Flags);
7312 
7313 	if (hdr->Flags & SMB2_FLAGS_ASYNC_COMMAND) {
7314 		command_list = &conn->async_requests;
7315 
7316 		spin_lock(&conn->request_lock);
7317 		list_for_each_entry(iter, command_list,
7318 				    async_request_entry) {
7319 			chdr = smb_get_msg(iter->request_buf);
7320 
7321 			if (iter->async_id !=
7322 			    le64_to_cpu(hdr->Id.AsyncId))
7323 				continue;
7324 
7325 			ksmbd_debug(SMB,
7326 				    "smb2 with AsyncId %llu cancelled command = 0x%x\n",
7327 				    le64_to_cpu(hdr->Id.AsyncId),
7328 				    le16_to_cpu(chdr->Command));
7329 			iter->state = KSMBD_WORK_CANCELLED;
7330 			if (iter->cancel_fn)
7331 				iter->cancel_fn(iter->cancel_argv);
7332 			break;
7333 		}
7334 		spin_unlock(&conn->request_lock);
7335 	} else {
7336 		command_list = &conn->requests;
7337 
7338 		spin_lock(&conn->request_lock);
7339 		list_for_each_entry(iter, command_list, request_entry) {
7340 			chdr = smb_get_msg(iter->request_buf);
7341 
7342 			if (chdr->MessageId != hdr->MessageId ||
7343 			    iter == work)
7344 				continue;
7345 
7346 			ksmbd_debug(SMB,
7347 				    "smb2 with mid %llu cancelled command = 0x%x\n",
7348 				    le64_to_cpu(hdr->MessageId),
7349 				    le16_to_cpu(chdr->Command));
7350 			iter->state = KSMBD_WORK_CANCELLED;
7351 			break;
7352 		}
7353 		spin_unlock(&conn->request_lock);
7354 	}
7355 
7356 	/* For SMB2_CANCEL command itself send no response*/
7357 	work->send_no_response = 1;
7358 	return 0;
7359 }
7360 
smb_flock_init(struct file * f)7361 struct file_lock *smb_flock_init(struct file *f)
7362 {
7363 	struct file_lock *fl;
7364 
7365 	fl = locks_alloc_lock();
7366 	if (!fl)
7367 		goto out;
7368 
7369 	locks_init_lock(fl);
7370 
7371 	fl->c.flc_owner = f;
7372 	fl->c.flc_pid = current->tgid;
7373 	fl->c.flc_file = f;
7374 	fl->c.flc_flags = FL_POSIX;
7375 	fl->fl_ops = NULL;
7376 	fl->fl_lmops = NULL;
7377 
7378 out:
7379 	return fl;
7380 }
7381 
smb2_set_flock_flags(struct file_lock * flock,int flags)7382 static int smb2_set_flock_flags(struct file_lock *flock, int flags)
7383 {
7384 	int cmd = -EINVAL;
7385 
7386 	/* Checking for wrong flag combination during lock request*/
7387 	switch (flags) {
7388 	case SMB2_LOCKFLAG_SHARED:
7389 		ksmbd_debug(SMB, "received shared request\n");
7390 		cmd = F_SETLKW;
7391 		flock->c.flc_type = F_RDLCK;
7392 		flock->c.flc_flags |= FL_SLEEP;
7393 		break;
7394 	case SMB2_LOCKFLAG_EXCLUSIVE:
7395 		ksmbd_debug(SMB, "received exclusive request\n");
7396 		cmd = F_SETLKW;
7397 		flock->c.flc_type = F_WRLCK;
7398 		flock->c.flc_flags |= FL_SLEEP;
7399 		break;
7400 	case SMB2_LOCKFLAG_SHARED | SMB2_LOCKFLAG_FAIL_IMMEDIATELY:
7401 		ksmbd_debug(SMB,
7402 			    "received shared & fail immediately request\n");
7403 		cmd = F_SETLK;
7404 		flock->c.flc_type = F_RDLCK;
7405 		break;
7406 	case SMB2_LOCKFLAG_EXCLUSIVE | SMB2_LOCKFLAG_FAIL_IMMEDIATELY:
7407 		ksmbd_debug(SMB,
7408 			    "received exclusive & fail immediately request\n");
7409 		cmd = F_SETLK;
7410 		flock->c.flc_type = F_WRLCK;
7411 		break;
7412 	case SMB2_LOCKFLAG_UNLOCK:
7413 		ksmbd_debug(SMB, "received unlock request\n");
7414 		flock->c.flc_type = F_UNLCK;
7415 		cmd = F_SETLK;
7416 		break;
7417 	}
7418 
7419 	return cmd;
7420 }
7421 
smb2_lock_init(struct file_lock * flock,unsigned int cmd,int flags,struct list_head * lock_list)7422 static struct ksmbd_lock *smb2_lock_init(struct file_lock *flock,
7423 					 unsigned int cmd, int flags,
7424 					 struct list_head *lock_list)
7425 {
7426 	struct ksmbd_lock *lock;
7427 
7428 	lock = kzalloc_obj(struct ksmbd_lock, KSMBD_DEFAULT_GFP);
7429 	if (!lock)
7430 		return NULL;
7431 
7432 	lock->cmd = cmd;
7433 	lock->fl = flock;
7434 	lock->start = flock->fl_start;
7435 	lock->end = flock->fl_end;
7436 	lock->flags = flags;
7437 	if (lock->start == lock->end)
7438 		lock->zero_len = 1;
7439 	INIT_LIST_HEAD(&lock->clist);
7440 	INIT_LIST_HEAD(&lock->flist);
7441 	INIT_LIST_HEAD(&lock->llist);
7442 	list_add_tail(&lock->llist, lock_list);
7443 
7444 	return lock;
7445 }
7446 
smb2_remove_blocked_lock(void ** argv)7447 static void smb2_remove_blocked_lock(void **argv)
7448 {
7449 	struct file_lock *flock = (struct file_lock *)argv[0];
7450 
7451 	ksmbd_vfs_posix_lock_unblock(flock);
7452 	locks_wake_up(flock);
7453 }
7454 
lock_defer_pending(struct file_lock * fl)7455 static inline bool lock_defer_pending(struct file_lock *fl)
7456 {
7457 	/* check pending lock waiters */
7458 	return waitqueue_active(&fl->c.flc_wait);
7459 }
7460 
7461 /**
7462  * smb2_lock() - handler for smb2 file lock command
7463  * @work:	smb work containing lock command buffer
7464  *
7465  * Return:	0 on success, otherwise error
7466  */
smb2_lock(struct ksmbd_work * work)7467 int smb2_lock(struct ksmbd_work *work)
7468 {
7469 	struct smb2_lock_req *req;
7470 	struct smb2_lock_rsp *rsp;
7471 	struct smb2_lock_element *lock_ele;
7472 	struct ksmbd_file *fp = NULL;
7473 	struct file_lock *flock = NULL;
7474 	struct file *filp = NULL;
7475 	int lock_count;
7476 	int flags = 0;
7477 	int cmd = 0;
7478 	int err = -EIO, i, rc = 0;
7479 	u64 lock_start, lock_length;
7480 	struct ksmbd_lock *smb_lock = NULL, *cmp_lock, *tmp, *tmp2;
7481 	struct ksmbd_conn *conn;
7482 	int nolock = 0;
7483 	LIST_HEAD(lock_list);
7484 	LIST_HEAD(rollback_list);
7485 	int prior_lock = 0, bkt;
7486 
7487 	WORK_BUFFERS(work, req, rsp);
7488 
7489 	ksmbd_debug(SMB, "Received smb2 lock request\n");
7490 	fp = ksmbd_lookup_fd_slow(work, req->VolatileFileId, req->PersistentFileId);
7491 	if (!fp) {
7492 		ksmbd_debug(SMB, "Invalid file id for lock : %llu\n", req->VolatileFileId);
7493 		err = -ENOENT;
7494 		goto out2;
7495 	}
7496 
7497 	filp = fp->filp;
7498 	lock_count = le16_to_cpu(req->LockCount);
7499 	lock_ele = req->locks;
7500 
7501 	ksmbd_debug(SMB, "lock count is %d\n", lock_count);
7502 	/*
7503 	 * Cap lock_count at 64. The MS-SMB2 spec defines Open.LockSequenceArray
7504 	 * as exactly 64 entries so 64 is the intended ceiling. No real workload
7505 	 * comes close to this in a single request.
7506 	 */
7507 	if (!lock_count || lock_count > 64) {
7508 		err = -EINVAL;
7509 		goto out2;
7510 	}
7511 
7512 	for (i = 0; i < lock_count; i++) {
7513 		flags = le32_to_cpu(lock_ele[i].Flags);
7514 
7515 		flock = smb_flock_init(filp);
7516 		if (!flock)
7517 			goto out;
7518 
7519 		cmd = smb2_set_flock_flags(flock, flags);
7520 
7521 		lock_start = le64_to_cpu(lock_ele[i].Offset);
7522 		lock_length = le64_to_cpu(lock_ele[i].Length);
7523 		if (lock_start > U64_MAX - lock_length) {
7524 			pr_err("Invalid lock range requested\n");
7525 			rsp->hdr.Status = STATUS_INVALID_LOCK_RANGE;
7526 			locks_free_lock(flock);
7527 			goto out;
7528 		}
7529 
7530 		if (lock_start > OFFSET_MAX)
7531 			flock->fl_start = OFFSET_MAX;
7532 		else
7533 			flock->fl_start = lock_start;
7534 
7535 		lock_length = le64_to_cpu(lock_ele[i].Length);
7536 		if (lock_length > OFFSET_MAX - flock->fl_start)
7537 			lock_length = OFFSET_MAX - flock->fl_start;
7538 
7539 		flock->fl_end = flock->fl_start + lock_length;
7540 
7541 		if (flock->fl_end < flock->fl_start) {
7542 			ksmbd_debug(SMB,
7543 				    "the end offset(%llx) is smaller than the start offset(%llx)\n",
7544 				    flock->fl_end, flock->fl_start);
7545 			rsp->hdr.Status = STATUS_INVALID_LOCK_RANGE;
7546 			locks_free_lock(flock);
7547 			goto out;
7548 		}
7549 
7550 		/* Check conflict locks in one request */
7551 		list_for_each_entry(cmp_lock, &lock_list, llist) {
7552 			if (cmp_lock->fl->fl_start <= flock->fl_start &&
7553 			    cmp_lock->fl->fl_end >= flock->fl_end) {
7554 				if (cmp_lock->fl->c.flc_type != F_UNLCK &&
7555 				    flock->c.flc_type != F_UNLCK) {
7556 					pr_err("conflict two locks in one request\n");
7557 					err = -EINVAL;
7558 					locks_free_lock(flock);
7559 					goto out;
7560 				}
7561 			}
7562 		}
7563 
7564 		smb_lock = smb2_lock_init(flock, cmd, flags, &lock_list);
7565 		if (!smb_lock) {
7566 			err = -EINVAL;
7567 			locks_free_lock(flock);
7568 			goto out;
7569 		}
7570 	}
7571 
7572 	list_for_each_entry_safe(smb_lock, tmp, &lock_list, llist) {
7573 		if (smb_lock->cmd < 0) {
7574 			err = -EINVAL;
7575 			goto out;
7576 		}
7577 
7578 		if (!(smb_lock->flags & SMB2_LOCKFLAG_MASK)) {
7579 			err = -EINVAL;
7580 			goto out;
7581 		}
7582 
7583 		if ((prior_lock & (SMB2_LOCKFLAG_EXCLUSIVE | SMB2_LOCKFLAG_SHARED) &&
7584 		     smb_lock->flags & SMB2_LOCKFLAG_UNLOCK) ||
7585 		    (prior_lock == SMB2_LOCKFLAG_UNLOCK &&
7586 		     !(smb_lock->flags & SMB2_LOCKFLAG_UNLOCK))) {
7587 			err = -EINVAL;
7588 			goto out;
7589 		}
7590 
7591 		prior_lock = smb_lock->flags;
7592 
7593 		if (!(smb_lock->flags & SMB2_LOCKFLAG_UNLOCK) &&
7594 		    !(smb_lock->flags & SMB2_LOCKFLAG_FAIL_IMMEDIATELY))
7595 			goto no_check_cl;
7596 
7597 		nolock = 1;
7598 		/* check locks in connection list */
7599 		down_read(&conn_list_lock);
7600 		hash_for_each(conn_list, bkt, conn, hlist) {
7601 			spin_lock(&conn->llist_lock);
7602 			list_for_each_entry_safe(cmp_lock, tmp2, &conn->lock_list, clist) {
7603 				if (file_inode(cmp_lock->fl->c.flc_file) !=
7604 				    file_inode(smb_lock->fl->c.flc_file))
7605 					continue;
7606 
7607 				if (lock_is_unlock(smb_lock->fl)) {
7608 					if (cmp_lock->fl->c.flc_file == smb_lock->fl->c.flc_file &&
7609 					    cmp_lock->start == smb_lock->start &&
7610 					    cmp_lock->end == smb_lock->end &&
7611 					    !lock_defer_pending(cmp_lock->fl)) {
7612 						nolock = 0;
7613 						list_del(&cmp_lock->flist);
7614 						list_del(&cmp_lock->clist);
7615 						spin_unlock(&conn->llist_lock);
7616 						up_read(&conn_list_lock);
7617 
7618 						locks_free_lock(cmp_lock->fl);
7619 						kfree(cmp_lock);
7620 						goto out_check_cl;
7621 					}
7622 					continue;
7623 				}
7624 
7625 				if (cmp_lock->fl->c.flc_file == smb_lock->fl->c.flc_file) {
7626 					if (smb_lock->flags & SMB2_LOCKFLAG_SHARED)
7627 						continue;
7628 				} else {
7629 					if (cmp_lock->flags & SMB2_LOCKFLAG_SHARED)
7630 						continue;
7631 				}
7632 
7633 				/* check zero byte lock range */
7634 				if (cmp_lock->zero_len && !smb_lock->zero_len &&
7635 				    cmp_lock->start > smb_lock->start &&
7636 				    cmp_lock->start < smb_lock->end) {
7637 					spin_unlock(&conn->llist_lock);
7638 					up_read(&conn_list_lock);
7639 					pr_err("previous lock conflict with zero byte lock range\n");
7640 					goto out;
7641 				}
7642 
7643 				if (smb_lock->zero_len && !cmp_lock->zero_len &&
7644 				    smb_lock->start > cmp_lock->start &&
7645 				    smb_lock->start < cmp_lock->end) {
7646 					spin_unlock(&conn->llist_lock);
7647 					up_read(&conn_list_lock);
7648 					pr_err("current lock conflict with zero byte lock range\n");
7649 					goto out;
7650 				}
7651 
7652 				if (((cmp_lock->start <= smb_lock->start &&
7653 				      cmp_lock->end > smb_lock->start) ||
7654 				     (cmp_lock->start < smb_lock->end &&
7655 				      cmp_lock->end >= smb_lock->end)) &&
7656 				    !cmp_lock->zero_len && !smb_lock->zero_len) {
7657 					spin_unlock(&conn->llist_lock);
7658 					up_read(&conn_list_lock);
7659 					pr_err("Not allow lock operation on exclusive lock range\n");
7660 					goto out;
7661 				}
7662 			}
7663 			spin_unlock(&conn->llist_lock);
7664 		}
7665 		up_read(&conn_list_lock);
7666 out_check_cl:
7667 		if (lock_is_unlock(smb_lock->fl) && nolock) {
7668 			pr_err("Try to unlock nolocked range\n");
7669 			rsp->hdr.Status = STATUS_RANGE_NOT_LOCKED;
7670 			goto out;
7671 		}
7672 
7673 no_check_cl:
7674 		flock = smb_lock->fl;
7675 		list_del(&smb_lock->llist);
7676 
7677 		if (smb_lock->zero_len) {
7678 			err = 0;
7679 			goto skip;
7680 		}
7681 retry:
7682 		rc = vfs_lock_file(filp, smb_lock->cmd, flock, NULL);
7683 skip:
7684 		if (smb_lock->flags & SMB2_LOCKFLAG_UNLOCK) {
7685 			locks_free_lock(flock);
7686 			kfree(smb_lock);
7687 			if (!rc) {
7688 				ksmbd_debug(SMB, "File unlocked\n");
7689 			} else if (rc == -ENOENT) {
7690 				rsp->hdr.Status = STATUS_NOT_LOCKED;
7691 				err = rc;
7692 				goto out;
7693 			}
7694 		} else {
7695 			if (rc == FILE_LOCK_DEFERRED) {
7696 				void **argv;
7697 
7698 				ksmbd_debug(SMB,
7699 					    "would have to wait for getting lock\n");
7700 				list_add(&smb_lock->llist, &rollback_list);
7701 
7702 				argv = kmalloc(sizeof(void *), KSMBD_DEFAULT_GFP);
7703 				if (!argv) {
7704 					err = -ENOMEM;
7705 					goto out;
7706 				}
7707 				argv[0] = flock;
7708 
7709 				rc = setup_async_work(work,
7710 						      smb2_remove_blocked_lock,
7711 						      argv);
7712 				if (rc) {
7713 					kfree(argv);
7714 					err = -ENOMEM;
7715 					goto out;
7716 				}
7717 				spin_lock(&fp->f_lock);
7718 				list_add(&work->fp_entry, &fp->blocked_works);
7719 				spin_unlock(&fp->f_lock);
7720 
7721 				smb2_send_interim_resp(work, STATUS_PENDING);
7722 
7723 				ksmbd_vfs_posix_lock_wait(flock);
7724 
7725 				spin_lock(&fp->f_lock);
7726 				list_del(&work->fp_entry);
7727 				spin_unlock(&fp->f_lock);
7728 
7729 				if (work->state != KSMBD_WORK_ACTIVE) {
7730 					list_del(&smb_lock->llist);
7731 					locks_free_lock(flock);
7732 
7733 					if (work->state == KSMBD_WORK_CANCELLED) {
7734 						rsp->hdr.Status =
7735 							STATUS_CANCELLED;
7736 						kfree(smb_lock);
7737 						smb2_send_interim_resp(work,
7738 								       STATUS_CANCELLED);
7739 						work->send_no_response = 1;
7740 						goto out;
7741 					}
7742 
7743 					rsp->hdr.Status =
7744 						STATUS_RANGE_NOT_LOCKED;
7745 					kfree(smb_lock);
7746 					goto out2;
7747 				}
7748 
7749 				list_del(&smb_lock->llist);
7750 				release_async_work(work);
7751 				goto retry;
7752 			} else if (!rc) {
7753 				list_add(&smb_lock->llist, &rollback_list);
7754 				spin_lock(&work->conn->llist_lock);
7755 				list_add_tail(&smb_lock->clist,
7756 					      &work->conn->lock_list);
7757 				list_add_tail(&smb_lock->flist,
7758 					      &fp->lock_list);
7759 				spin_unlock(&work->conn->llist_lock);
7760 				ksmbd_debug(SMB, "successful in taking lock\n");
7761 			} else {
7762 				locks_free_lock(flock);
7763 				kfree(smb_lock);
7764 				err = rc;
7765 				goto out;
7766 			}
7767 		}
7768 	}
7769 
7770 	if (atomic_read(&fp->f_ci->op_count) > 1)
7771 		smb_break_all_oplock(work, fp);
7772 
7773 	rsp->StructureSize = cpu_to_le16(4);
7774 	ksmbd_debug(SMB, "successful in taking lock\n");
7775 	rsp->hdr.Status = STATUS_SUCCESS;
7776 	rsp->Reserved = 0;
7777 	err = ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_lock_rsp));
7778 	if (err)
7779 		goto out;
7780 
7781 	ksmbd_fd_put(work, fp);
7782 	return 0;
7783 
7784 out:
7785 	list_for_each_entry_safe(smb_lock, tmp, &lock_list, llist) {
7786 		locks_free_lock(smb_lock->fl);
7787 		list_del(&smb_lock->llist);
7788 		kfree(smb_lock);
7789 	}
7790 
7791 	list_for_each_entry_safe(smb_lock, tmp, &rollback_list, llist) {
7792 		struct file_lock *rlock = NULL;
7793 
7794 		rlock = smb_flock_init(filp);
7795 		if (rlock) {
7796 			rlock->c.flc_type = F_UNLCK;
7797 			rlock->fl_start = smb_lock->start;
7798 			rlock->fl_end = smb_lock->end;
7799 
7800 			rc = vfs_lock_file(filp, F_SETLK, rlock, NULL);
7801 			if (rc)
7802 				pr_err("rollback unlock fail : %d\n", rc);
7803 		} else {
7804 			pr_err("rollback unlock alloc failed\n");
7805 		}
7806 
7807 		list_del(&smb_lock->llist);
7808 		spin_lock(&work->conn->llist_lock);
7809 		if (!list_empty(&smb_lock->flist))
7810 			list_del(&smb_lock->flist);
7811 		list_del(&smb_lock->clist);
7812 		spin_unlock(&work->conn->llist_lock);
7813 
7814 		locks_free_lock(smb_lock->fl);
7815 		if (rlock)
7816 			locks_free_lock(rlock);
7817 		kfree(smb_lock);
7818 	}
7819 out2:
7820 	ksmbd_debug(SMB, "failed in taking lock(flags : %x), err : %d\n", flags, err);
7821 
7822 	if (!rsp->hdr.Status) {
7823 		if (err == -EINVAL)
7824 			rsp->hdr.Status = STATUS_INVALID_PARAMETER;
7825 		else if (err == -ENOMEM)
7826 			rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES;
7827 		else if (err == -ENOENT)
7828 			rsp->hdr.Status = STATUS_FILE_CLOSED;
7829 		else
7830 			rsp->hdr.Status = STATUS_LOCK_NOT_GRANTED;
7831 	}
7832 
7833 	smb2_set_err_rsp(work);
7834 	ksmbd_fd_put(work, fp);
7835 	return err;
7836 }
7837 
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)7838 static int fsctl_copychunk(struct ksmbd_work *work,
7839 			   struct copychunk_ioctl_req *ci_req,
7840 			   unsigned int cnt_code,
7841 			   unsigned int input_count,
7842 			   unsigned long long volatile_id,
7843 			   unsigned long long persistent_id,
7844 			   struct smb2_ioctl_rsp *rsp)
7845 {
7846 	struct copychunk_ioctl_rsp *ci_rsp;
7847 	struct ksmbd_file *src_fp = NULL, *dst_fp = NULL;
7848 	struct srv_copychunk *chunks;
7849 	unsigned int i, chunk_count, chunk_count_written = 0;
7850 	unsigned int chunk_size_written = 0;
7851 	loff_t total_size_written = 0;
7852 	int ret = 0;
7853 
7854 	ci_rsp = (struct copychunk_ioctl_rsp *)&rsp->Buffer[0];
7855 
7856 	rsp->VolatileFileId = volatile_id;
7857 	rsp->PersistentFileId = persistent_id;
7858 	ci_rsp->ChunksWritten =
7859 		cpu_to_le32(ksmbd_server_side_copy_max_chunk_count());
7860 	ci_rsp->ChunkBytesWritten =
7861 		cpu_to_le32(ksmbd_server_side_copy_max_chunk_size());
7862 	ci_rsp->TotalBytesWritten =
7863 		cpu_to_le32(ksmbd_server_side_copy_max_total_size());
7864 
7865 	chunk_count = le32_to_cpu(ci_req->ChunkCount);
7866 	if (chunk_count == 0)
7867 		goto out;
7868 	total_size_written = 0;
7869 
7870 	/* verify the SRV_COPYCHUNK_COPY packet */
7871 	if (chunk_count > ksmbd_server_side_copy_max_chunk_count() ||
7872 	    input_count < struct_size(ci_req, Chunks, chunk_count)) {
7873 		rsp->hdr.Status = STATUS_INVALID_PARAMETER;
7874 		return -EINVAL;
7875 	}
7876 
7877 	chunks = &ci_req->Chunks[0];
7878 	for (i = 0; i < chunk_count; i++) {
7879 		if (le32_to_cpu(chunks[i].Length) == 0 ||
7880 		    le32_to_cpu(chunks[i].Length) > ksmbd_server_side_copy_max_chunk_size())
7881 			break;
7882 		total_size_written += le32_to_cpu(chunks[i].Length);
7883 	}
7884 
7885 	if (i < chunk_count ||
7886 	    total_size_written > ksmbd_server_side_copy_max_total_size()) {
7887 		rsp->hdr.Status = STATUS_INVALID_PARAMETER;
7888 		return -EINVAL;
7889 	}
7890 
7891 	src_fp = ksmbd_lookup_foreign_fd(work,
7892 					 le64_to_cpu(ci_req->SourceKeyU64[0]));
7893 	dst_fp = ksmbd_lookup_fd_slow(work, volatile_id, persistent_id);
7894 	ret = -EINVAL;
7895 	if (!src_fp ||
7896 	    src_fp->persistent_id != le64_to_cpu(ci_req->SourceKeyU64[1])) {
7897 		rsp->hdr.Status = STATUS_OBJECT_NAME_NOT_FOUND;
7898 		goto out;
7899 	}
7900 
7901 	if (!dst_fp) {
7902 		rsp->hdr.Status = STATUS_FILE_CLOSED;
7903 		goto out;
7904 	}
7905 
7906 	/*
7907 	 * FILE_READ_DATA should only be included in
7908 	 * the FSCTL_COPYCHUNK case
7909 	 */
7910 	if (cnt_code == FSCTL_COPYCHUNK &&
7911 	    !(dst_fp->daccess & (FILE_READ_DATA_LE | FILE_GENERIC_READ_LE))) {
7912 		rsp->hdr.Status = STATUS_ACCESS_DENIED;
7913 		goto out;
7914 	}
7915 
7916 	ret = ksmbd_vfs_copy_file_ranges(work, src_fp, dst_fp,
7917 					 chunks, chunk_count,
7918 					 &chunk_count_written,
7919 					 &chunk_size_written,
7920 					 &total_size_written);
7921 	if (ret < 0) {
7922 		if (ret == -EACCES)
7923 			rsp->hdr.Status = STATUS_ACCESS_DENIED;
7924 		if (ret == -EAGAIN)
7925 			rsp->hdr.Status = STATUS_FILE_LOCK_CONFLICT;
7926 		else if (ret == -EBADF)
7927 			rsp->hdr.Status = STATUS_INVALID_HANDLE;
7928 		else if (ret == -EFBIG || ret == -ENOSPC)
7929 			rsp->hdr.Status = STATUS_DISK_FULL;
7930 		else if (ret == -EINVAL)
7931 			rsp->hdr.Status = STATUS_INVALID_PARAMETER;
7932 		else if (ret == -EISDIR)
7933 			rsp->hdr.Status = STATUS_FILE_IS_A_DIRECTORY;
7934 		else if (ret == -E2BIG)
7935 			rsp->hdr.Status = STATUS_INVALID_VIEW_SIZE;
7936 		else
7937 			rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR;
7938 	}
7939 
7940 	ci_rsp->ChunksWritten = cpu_to_le32(chunk_count_written);
7941 	ci_rsp->ChunkBytesWritten = cpu_to_le32(chunk_size_written);
7942 	ci_rsp->TotalBytesWritten = cpu_to_le32(total_size_written);
7943 out:
7944 	ksmbd_fd_put(work, src_fp);
7945 	ksmbd_fd_put(work, dst_fp);
7946 	return ret;
7947 }
7948 
idev_ipv4_address(struct in_device * idev)7949 static __be32 idev_ipv4_address(struct in_device *idev)
7950 {
7951 	__be32 addr = 0;
7952 
7953 	struct in_ifaddr *ifa;
7954 
7955 	rcu_read_lock();
7956 	in_dev_for_each_ifa_rcu(ifa, idev) {
7957 		if (ifa->ifa_flags & IFA_F_SECONDARY)
7958 			continue;
7959 
7960 		addr = ifa->ifa_address;
7961 		break;
7962 	}
7963 	rcu_read_unlock();
7964 	return addr;
7965 }
7966 
fsctl_query_iface_info_ioctl(struct ksmbd_conn * conn,struct smb2_ioctl_rsp * rsp,unsigned int out_buf_len)7967 static int fsctl_query_iface_info_ioctl(struct ksmbd_conn *conn,
7968 					struct smb2_ioctl_rsp *rsp,
7969 					unsigned int out_buf_len)
7970 {
7971 	struct network_interface_info_ioctl_rsp *nii_rsp = NULL;
7972 	int nbytes = 0;
7973 	struct net_device *netdev;
7974 	struct sockaddr_storage_rsp *sockaddr_storage;
7975 	unsigned int flags;
7976 	unsigned long long speed;
7977 
7978 	rtnl_lock();
7979 	for_each_netdev(&init_net, netdev) {
7980 		bool ipv4_set = false;
7981 
7982 		if (netdev->type == ARPHRD_LOOPBACK)
7983 			continue;
7984 
7985 		if (!ksmbd_find_netdev_name_iface_list(netdev->name))
7986 			continue;
7987 
7988 		flags = netif_get_flags(netdev);
7989 		if (!(flags & IFF_RUNNING))
7990 			continue;
7991 ipv6_retry:
7992 		if (out_buf_len <
7993 		    nbytes + sizeof(struct network_interface_info_ioctl_rsp)) {
7994 			rtnl_unlock();
7995 			return -ENOSPC;
7996 		}
7997 
7998 		nii_rsp = (struct network_interface_info_ioctl_rsp *)
7999 				&rsp->Buffer[nbytes];
8000 		nii_rsp->IfIndex = cpu_to_le32(netdev->ifindex);
8001 
8002 		nii_rsp->Capability = 0;
8003 		if (netdev->real_num_tx_queues > 1)
8004 			nii_rsp->Capability |= RSS_CAPABLE;
8005 		if (ksmbd_rdma_capable_netdev(netdev))
8006 			nii_rsp->Capability |= RDMA_CAPABLE;
8007 
8008 		nii_rsp->Next = cpu_to_le32(152);
8009 		nii_rsp->Reserved = 0;
8010 
8011 		if (netdev->ethtool_ops->get_link_ksettings) {
8012 			struct ethtool_link_ksettings cmd;
8013 
8014 			netdev->ethtool_ops->get_link_ksettings(netdev, &cmd);
8015 			speed = cmd.base.speed;
8016 		} else {
8017 			ksmbd_debug(SMB, "%s %s\n", netdev->name,
8018 				    "speed is unknown, defaulting to 1Gb/sec");
8019 			speed = SPEED_1000;
8020 		}
8021 
8022 		speed *= 1000000;
8023 		nii_rsp->LinkSpeed = cpu_to_le64(speed);
8024 
8025 		sockaddr_storage = (struct sockaddr_storage_rsp *)
8026 					nii_rsp->SockAddr_Storage;
8027 		memset(sockaddr_storage, 0, 128);
8028 
8029 		if (!ipv4_set) {
8030 			struct in_device *idev;
8031 
8032 			sockaddr_storage->Family = INTERNETWORK;
8033 			sockaddr_storage->addr4.Port = 0;
8034 
8035 			idev = __in_dev_get_rtnl(netdev);
8036 			if (!idev)
8037 				continue;
8038 			sockaddr_storage->addr4.IPv4Address =
8039 						idev_ipv4_address(idev);
8040 			nbytes += sizeof(struct network_interface_info_ioctl_rsp);
8041 			ipv4_set = true;
8042 			goto ipv6_retry;
8043 		} else {
8044 			struct inet6_dev *idev6;
8045 			struct inet6_ifaddr *ifa;
8046 			__u8 *ipv6_addr = sockaddr_storage->addr6.IPv6Address;
8047 
8048 			sockaddr_storage->Family = INTERNETWORKV6;
8049 			sockaddr_storage->addr6.Port = 0;
8050 			sockaddr_storage->addr6.FlowInfo = 0;
8051 
8052 			idev6 = __in6_dev_get(netdev);
8053 			if (!idev6)
8054 				continue;
8055 
8056 			list_for_each_entry(ifa, &idev6->addr_list, if_list) {
8057 				if (ifa->flags & (IFA_F_TENTATIVE |
8058 							IFA_F_DEPRECATED))
8059 					continue;
8060 				memcpy(ipv6_addr, ifa->addr.s6_addr, 16);
8061 				break;
8062 			}
8063 			sockaddr_storage->addr6.ScopeId = 0;
8064 			nbytes += sizeof(struct network_interface_info_ioctl_rsp);
8065 		}
8066 	}
8067 	rtnl_unlock();
8068 
8069 	/* zero if this is last one */
8070 	if (nii_rsp)
8071 		nii_rsp->Next = 0;
8072 
8073 	rsp->PersistentFileId = SMB2_NO_FID;
8074 	rsp->VolatileFileId = SMB2_NO_FID;
8075 	return nbytes;
8076 }
8077 
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)8078 static int fsctl_validate_negotiate_info(struct ksmbd_conn *conn,
8079 					 struct validate_negotiate_info_req *neg_req,
8080 					 struct validate_negotiate_info_rsp *neg_rsp,
8081 					 unsigned int in_buf_len)
8082 {
8083 	int ret = 0;
8084 	int dialect;
8085 
8086 	if (in_buf_len < offsetof(struct validate_negotiate_info_req, Dialects) +
8087 			le16_to_cpu(neg_req->DialectCount) * sizeof(__le16))
8088 		return -EINVAL;
8089 
8090 	dialect = ksmbd_lookup_dialect_by_id(neg_req->Dialects,
8091 					     neg_req->DialectCount);
8092 	if (dialect == BAD_PROT_ID || dialect != conn->dialect) {
8093 		ret = -EINVAL;
8094 		goto err_out;
8095 	}
8096 
8097 	if (strncmp(neg_req->Guid, conn->ClientGUID, SMB2_CLIENT_GUID_SIZE)) {
8098 		ret = -EINVAL;
8099 		goto err_out;
8100 	}
8101 
8102 	if (le16_to_cpu(neg_req->SecurityMode) != conn->cli_sec_mode) {
8103 		ret = -EINVAL;
8104 		goto err_out;
8105 	}
8106 
8107 	if (le32_to_cpu(neg_req->Capabilities) != conn->cli_cap) {
8108 		ret = -EINVAL;
8109 		goto err_out;
8110 	}
8111 
8112 	neg_rsp->Capabilities = cpu_to_le32(conn->vals->req_capabilities);
8113 	memset(neg_rsp->Guid, 0, SMB2_CLIENT_GUID_SIZE);
8114 	neg_rsp->SecurityMode = cpu_to_le16(conn->srv_sec_mode);
8115 	neg_rsp->Dialect = cpu_to_le16(conn->dialect);
8116 err_out:
8117 	return ret;
8118 }
8119 
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)8120 static int fsctl_query_allocated_ranges(struct ksmbd_work *work, u64 id,
8121 					struct file_allocated_range_buffer *qar_req,
8122 					struct file_allocated_range_buffer *qar_rsp,
8123 					unsigned int in_count, unsigned int *out_count)
8124 {
8125 	struct ksmbd_file *fp;
8126 	loff_t start, length;
8127 	int ret = 0;
8128 
8129 	*out_count = 0;
8130 	if (in_count == 0)
8131 		return -EINVAL;
8132 
8133 	start = le64_to_cpu(qar_req->file_offset);
8134 	length = le64_to_cpu(qar_req->length);
8135 
8136 	if (start < 0 || length < 0)
8137 		return -EINVAL;
8138 
8139 	fp = ksmbd_lookup_fd_fast(work, id);
8140 	if (!fp)
8141 		return -ENOENT;
8142 
8143 	ret = ksmbd_vfs_fqar_lseek(fp, start, length,
8144 				   qar_rsp, in_count, out_count);
8145 	if (ret && ret != -E2BIG)
8146 		*out_count = 0;
8147 
8148 	ksmbd_fd_put(work, fp);
8149 	return ret;
8150 }
8151 
fsctl_pipe_transceive(struct ksmbd_work * work,u64 id,unsigned int out_buf_len,struct smb2_ioctl_req * req,struct smb2_ioctl_rsp * rsp)8152 static int fsctl_pipe_transceive(struct ksmbd_work *work, u64 id,
8153 				 unsigned int out_buf_len,
8154 				 struct smb2_ioctl_req *req,
8155 				 struct smb2_ioctl_rsp *rsp)
8156 {
8157 	struct ksmbd_rpc_command *rpc_resp;
8158 	char *data_buf = (char *)req + le32_to_cpu(req->InputOffset);
8159 	int nbytes = 0;
8160 
8161 	rpc_resp = ksmbd_rpc_ioctl(work->sess, id, data_buf,
8162 				   le32_to_cpu(req->InputCount));
8163 	if (rpc_resp) {
8164 		if (rpc_resp->flags == KSMBD_RPC_SOME_NOT_MAPPED) {
8165 			/*
8166 			 * set STATUS_SOME_NOT_MAPPED response
8167 			 * for unknown domain sid.
8168 			 */
8169 			rsp->hdr.Status = STATUS_SOME_NOT_MAPPED;
8170 		} else if (rpc_resp->flags == KSMBD_RPC_ENOTIMPLEMENTED) {
8171 			rsp->hdr.Status = STATUS_NOT_SUPPORTED;
8172 			goto out;
8173 		} else if (rpc_resp->flags != KSMBD_RPC_OK) {
8174 			rsp->hdr.Status = STATUS_INVALID_PARAMETER;
8175 			goto out;
8176 		}
8177 
8178 		nbytes = rpc_resp->payload_sz;
8179 		if (rpc_resp->payload_sz > out_buf_len) {
8180 			rsp->hdr.Status = STATUS_BUFFER_OVERFLOW;
8181 			nbytes = out_buf_len;
8182 		}
8183 
8184 		if (!rpc_resp->payload_sz) {
8185 			rsp->hdr.Status =
8186 				STATUS_UNEXPECTED_IO_ERROR;
8187 			goto out;
8188 		}
8189 
8190 		memcpy((char *)rsp->Buffer, rpc_resp->payload, nbytes);
8191 	}
8192 out:
8193 	kvfree(rpc_resp);
8194 	return nbytes;
8195 }
8196 
fsctl_set_sparse(struct ksmbd_work * work,u64 id,struct file_sparse * sparse)8197 static inline int fsctl_set_sparse(struct ksmbd_work *work, u64 id,
8198 				   struct file_sparse *sparse)
8199 {
8200 	struct ksmbd_file *fp;
8201 	struct mnt_idmap *idmap;
8202 	int ret = 0;
8203 	__le32 old_fattr;
8204 
8205 	fp = ksmbd_lookup_fd_fast(work, id);
8206 	if (!fp)
8207 		return -ENOENT;
8208 	idmap = file_mnt_idmap(fp->filp);
8209 
8210 	old_fattr = fp->f_ci->m_fattr;
8211 	if (sparse->SetSparse)
8212 		fp->f_ci->m_fattr |= FILE_ATTRIBUTE_SPARSE_FILE_LE;
8213 	else
8214 		fp->f_ci->m_fattr &= ~FILE_ATTRIBUTE_SPARSE_FILE_LE;
8215 
8216 	if (fp->f_ci->m_fattr != old_fattr &&
8217 	    test_share_config_flag(work->tcon->share_conf,
8218 				   KSMBD_SHARE_FLAG_STORE_DOS_ATTRS)) {
8219 		struct xattr_dos_attrib da;
8220 
8221 		ret = ksmbd_vfs_get_dos_attrib_xattr(idmap,
8222 						     fp->filp->f_path.dentry, &da);
8223 		if (ret <= 0)
8224 			goto out;
8225 
8226 		da.attr = le32_to_cpu(fp->f_ci->m_fattr);
8227 		ret = ksmbd_vfs_set_dos_attrib_xattr(idmap,
8228 						     &fp->filp->f_path,
8229 						     &da, true);
8230 		if (ret)
8231 			fp->f_ci->m_fattr = old_fattr;
8232 	}
8233 
8234 out:
8235 	ksmbd_fd_put(work, fp);
8236 	return ret;
8237 }
8238 
fsctl_request_resume_key(struct ksmbd_work * work,struct smb2_ioctl_req * req,struct resume_key_ioctl_rsp * key_rsp)8239 static int fsctl_request_resume_key(struct ksmbd_work *work,
8240 				    struct smb2_ioctl_req *req,
8241 				    struct resume_key_ioctl_rsp *key_rsp)
8242 {
8243 	struct ksmbd_file *fp;
8244 
8245 	fp = ksmbd_lookup_fd_slow(work, req->VolatileFileId, req->PersistentFileId);
8246 	if (!fp)
8247 		return -ENOENT;
8248 
8249 	memset(key_rsp, 0, sizeof(*key_rsp));
8250 	key_rsp->ResumeKeyU64[0] = req->VolatileFileId;
8251 	key_rsp->ResumeKeyU64[1] = req->PersistentFileId;
8252 	ksmbd_fd_put(work, fp);
8253 
8254 	return 0;
8255 }
8256 
8257 /**
8258  * smb2_ioctl() - handler for smb2 ioctl command
8259  * @work:	smb work containing ioctl command buffer
8260  *
8261  * Return:	0 on success, otherwise error
8262  */
smb2_ioctl(struct ksmbd_work * work)8263 int smb2_ioctl(struct ksmbd_work *work)
8264 {
8265 	struct smb2_ioctl_req *req;
8266 	struct smb2_ioctl_rsp *rsp;
8267 	unsigned int cnt_code, nbytes = 0, out_buf_len, in_buf_len;
8268 	u64 id = KSMBD_NO_FID;
8269 	struct ksmbd_conn *conn = work->conn;
8270 	int ret = 0;
8271 	char *buffer;
8272 
8273 	ksmbd_debug(SMB, "Received smb2 ioctl request\n");
8274 
8275 	if (work->next_smb2_rcv_hdr_off) {
8276 		req = ksmbd_req_buf_next(work);
8277 		rsp = ksmbd_resp_buf_next(work);
8278 		if (!has_file_id(req->VolatileFileId)) {
8279 			ksmbd_debug(SMB, "Compound request set FID = %llu\n",
8280 				    work->compound_fid);
8281 			id = work->compound_fid;
8282 		}
8283 	} else {
8284 		req = smb_get_msg(work->request_buf);
8285 		rsp = smb_get_msg(work->response_buf);
8286 	}
8287 
8288 	if (!has_file_id(id))
8289 		id = req->VolatileFileId;
8290 
8291 	if (req->Flags != cpu_to_le32(SMB2_0_IOCTL_IS_FSCTL)) {
8292 		ret = -EOPNOTSUPP;
8293 		goto out;
8294 	}
8295 
8296 	buffer = (char *)req + le32_to_cpu(req->InputOffset);
8297 
8298 	cnt_code = le32_to_cpu(req->CtlCode);
8299 	ret = smb2_calc_max_out_buf_len(work,
8300 			offsetof(struct smb2_ioctl_rsp, Buffer),
8301 			le32_to_cpu(req->MaxOutputResponse));
8302 	if (ret < 0) {
8303 		rsp->hdr.Status = STATUS_INVALID_PARAMETER;
8304 		goto out;
8305 	}
8306 	out_buf_len = (unsigned int)ret;
8307 	in_buf_len = le32_to_cpu(req->InputCount);
8308 
8309 	switch (cnt_code) {
8310 	case FSCTL_DFS_GET_REFERRALS:
8311 	case FSCTL_DFS_GET_REFERRALS_EX:
8312 		/* Not support DFS yet */
8313 		ret = -EOPNOTSUPP;
8314 		rsp->hdr.Status = STATUS_FS_DRIVER_REQUIRED;
8315 		goto out2;
8316 	case FSCTL_CREATE_OR_GET_OBJECT_ID:
8317 	{
8318 		struct file_object_buf_type1_ioctl_rsp *obj_buf;
8319 
8320 		nbytes = sizeof(struct file_object_buf_type1_ioctl_rsp);
8321 		obj_buf = (struct file_object_buf_type1_ioctl_rsp *)
8322 			&rsp->Buffer[0];
8323 
8324 		/*
8325 		 * TODO: This is dummy implementation to pass smbtorture
8326 		 * Need to check correct response later
8327 		 */
8328 		memset(obj_buf->ObjectId, 0x0, 16);
8329 		memset(obj_buf->BirthVolumeId, 0x0, 16);
8330 		memset(obj_buf->BirthObjectId, 0x0, 16);
8331 		memset(obj_buf->DomainId, 0x0, 16);
8332 
8333 		break;
8334 	}
8335 	case FSCTL_PIPE_TRANSCEIVE:
8336 		out_buf_len = min_t(u32, KSMBD_IPC_MAX_PAYLOAD, out_buf_len);
8337 		nbytes = fsctl_pipe_transceive(work, id, out_buf_len, req, rsp);
8338 		break;
8339 	case FSCTL_VALIDATE_NEGOTIATE_INFO:
8340 		if (conn->dialect < SMB30_PROT_ID) {
8341 			ret = -EOPNOTSUPP;
8342 			goto out;
8343 		}
8344 
8345 		if (in_buf_len < offsetof(struct validate_negotiate_info_req,
8346 					  Dialects)) {
8347 			ret = -EINVAL;
8348 			goto out;
8349 		}
8350 
8351 		if (out_buf_len < sizeof(struct validate_negotiate_info_rsp)) {
8352 			ret = -EINVAL;
8353 			goto out;
8354 		}
8355 
8356 		ret = fsctl_validate_negotiate_info(conn,
8357 			(struct validate_negotiate_info_req *)buffer,
8358 			(struct validate_negotiate_info_rsp *)&rsp->Buffer[0],
8359 			in_buf_len);
8360 		if (ret < 0)
8361 			goto out;
8362 
8363 		nbytes = sizeof(struct validate_negotiate_info_rsp);
8364 		rsp->PersistentFileId = SMB2_NO_FID;
8365 		rsp->VolatileFileId = SMB2_NO_FID;
8366 		break;
8367 	case FSCTL_QUERY_NETWORK_INTERFACE_INFO:
8368 		ret = fsctl_query_iface_info_ioctl(conn, rsp, out_buf_len);
8369 		if (ret < 0)
8370 			goto out;
8371 		nbytes = ret;
8372 		break;
8373 	case FSCTL_REQUEST_RESUME_KEY:
8374 		if (out_buf_len < sizeof(struct resume_key_ioctl_rsp)) {
8375 			ret = -EINVAL;
8376 			goto out;
8377 		}
8378 
8379 		ret = fsctl_request_resume_key(work, req,
8380 					       (struct resume_key_ioctl_rsp *)&rsp->Buffer[0]);
8381 		if (ret < 0)
8382 			goto out;
8383 		rsp->PersistentFileId = req->PersistentFileId;
8384 		rsp->VolatileFileId = req->VolatileFileId;
8385 		nbytes = sizeof(struct resume_key_ioctl_rsp);
8386 		break;
8387 	case FSCTL_COPYCHUNK:
8388 	case FSCTL_COPYCHUNK_WRITE:
8389 		if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) {
8390 			ksmbd_debug(SMB,
8391 				    "User does not have write permission\n");
8392 			ret = -EACCES;
8393 			goto out;
8394 		}
8395 
8396 		if (in_buf_len <= sizeof(struct copychunk_ioctl_req)) {
8397 			ret = -EINVAL;
8398 			goto out;
8399 		}
8400 
8401 		if (out_buf_len < sizeof(struct copychunk_ioctl_rsp)) {
8402 			ret = -EINVAL;
8403 			goto out;
8404 		}
8405 
8406 		nbytes = sizeof(struct copychunk_ioctl_rsp);
8407 		rsp->VolatileFileId = req->VolatileFileId;
8408 		rsp->PersistentFileId = req->PersistentFileId;
8409 		fsctl_copychunk(work,
8410 				(struct copychunk_ioctl_req *)buffer,
8411 				le32_to_cpu(req->CtlCode),
8412 				le32_to_cpu(req->InputCount),
8413 				req->VolatileFileId,
8414 				req->PersistentFileId,
8415 				rsp);
8416 		break;
8417 	case FSCTL_SET_SPARSE:
8418 		if (in_buf_len < sizeof(struct file_sparse)) {
8419 			ret = -EINVAL;
8420 			goto out;
8421 		}
8422 
8423 		ret = fsctl_set_sparse(work, id, (struct file_sparse *)buffer);
8424 		if (ret < 0)
8425 			goto out;
8426 		break;
8427 	case FSCTL_SET_ZERO_DATA:
8428 	{
8429 		struct file_zero_data_information *zero_data;
8430 		struct ksmbd_file *fp;
8431 		loff_t off, len, bfz;
8432 
8433 		if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) {
8434 			ksmbd_debug(SMB,
8435 				    "User does not have write permission\n");
8436 			ret = -EACCES;
8437 			goto out;
8438 		}
8439 
8440 		if (in_buf_len < sizeof(struct file_zero_data_information)) {
8441 			ret = -EINVAL;
8442 			goto out;
8443 		}
8444 
8445 		zero_data =
8446 			(struct file_zero_data_information *)buffer;
8447 
8448 		off = le64_to_cpu(zero_data->FileOffset);
8449 		bfz = le64_to_cpu(zero_data->BeyondFinalZero);
8450 		if (off < 0 || bfz < 0 || off > bfz) {
8451 			ret = -EINVAL;
8452 			goto out;
8453 		}
8454 
8455 		len = bfz - off;
8456 		if (len) {
8457 			fp = ksmbd_lookup_fd_fast(work, id);
8458 			if (!fp) {
8459 				ret = -ENOENT;
8460 				goto out;
8461 			}
8462 
8463 			ret = ksmbd_vfs_zero_data(work, fp, off, len);
8464 			ksmbd_fd_put(work, fp);
8465 			if (ret < 0)
8466 				goto out;
8467 		}
8468 		break;
8469 	}
8470 	case FSCTL_QUERY_ALLOCATED_RANGES:
8471 		if (in_buf_len < sizeof(struct file_allocated_range_buffer)) {
8472 			ret = -EINVAL;
8473 			goto out;
8474 		}
8475 
8476 		ret = fsctl_query_allocated_ranges(work, id,
8477 			(struct file_allocated_range_buffer *)buffer,
8478 			(struct file_allocated_range_buffer *)&rsp->Buffer[0],
8479 			out_buf_len /
8480 			sizeof(struct file_allocated_range_buffer), &nbytes);
8481 		if (ret == -E2BIG) {
8482 			rsp->hdr.Status = STATUS_BUFFER_OVERFLOW;
8483 		} else if (ret < 0) {
8484 			nbytes = 0;
8485 			goto out;
8486 		}
8487 
8488 		nbytes *= sizeof(struct file_allocated_range_buffer);
8489 		break;
8490 	case FSCTL_GET_REPARSE_POINT:
8491 	{
8492 		struct reparse_data_buffer *reparse_ptr;
8493 		struct ksmbd_file *fp;
8494 
8495 		reparse_ptr = (struct reparse_data_buffer *)&rsp->Buffer[0];
8496 		fp = ksmbd_lookup_fd_fast(work, id);
8497 		if (!fp) {
8498 			pr_err("not found fp!!\n");
8499 			ret = -ENOENT;
8500 			goto out;
8501 		}
8502 
8503 		reparse_ptr->ReparseTag =
8504 			smb2_get_reparse_tag_special_file(file_inode(fp->filp)->i_mode);
8505 		reparse_ptr->ReparseDataLength = 0;
8506 		ksmbd_fd_put(work, fp);
8507 		nbytes = sizeof(struct reparse_data_buffer);
8508 		break;
8509 	}
8510 	case FSCTL_DUPLICATE_EXTENTS_TO_FILE:
8511 	{
8512 		struct ksmbd_file *fp_in, *fp_out = NULL;
8513 		struct duplicate_extents_to_file *dup_ext;
8514 		loff_t src_off, dst_off, length, cloned;
8515 
8516 		if (in_buf_len < sizeof(struct duplicate_extents_to_file)) {
8517 			ret = -EINVAL;
8518 			goto out;
8519 		}
8520 
8521 		dup_ext = (struct duplicate_extents_to_file *)buffer;
8522 
8523 		fp_in = ksmbd_lookup_fd_slow(work, dup_ext->VolatileFileHandle,
8524 					     dup_ext->PersistentFileHandle);
8525 		if (!fp_in) {
8526 			pr_err("not found file handle in duplicate extent to file\n");
8527 			ret = -ENOENT;
8528 			goto out;
8529 		}
8530 
8531 		fp_out = ksmbd_lookup_fd_fast(work, id);
8532 		if (!fp_out) {
8533 			pr_err("not found fp\n");
8534 			ret = -ENOENT;
8535 			goto dup_ext_out;
8536 		}
8537 
8538 		src_off = le64_to_cpu(dup_ext->SourceFileOffset);
8539 		dst_off = le64_to_cpu(dup_ext->TargetFileOffset);
8540 		length = le64_to_cpu(dup_ext->ByteCount);
8541 		/*
8542 		 * XXX: It is not clear if FSCTL_DUPLICATE_EXTENTS_TO_FILE
8543 		 * should fall back to vfs_copy_file_range().  This could be
8544 		 * beneficial when re-exporting nfs/smb mount, but note that
8545 		 * this can result in partial copy that returns an error status.
8546 		 * If/when FSCTL_DUPLICATE_EXTENTS_TO_FILE_EX is implemented,
8547 		 * fall back to vfs_copy_file_range(), should be avoided when
8548 		 * the flag DUPLICATE_EXTENTS_DATA_EX_SOURCE_ATOMIC is set.
8549 		 */
8550 		cloned = vfs_clone_file_range(fp_in->filp, src_off,
8551 					      fp_out->filp, dst_off, length, 0);
8552 		if (cloned == -EXDEV || cloned == -EOPNOTSUPP) {
8553 			ret = -EOPNOTSUPP;
8554 			goto dup_ext_out;
8555 		} else if (cloned != length) {
8556 			cloned = vfs_copy_file_range(fp_in->filp, src_off,
8557 						     fp_out->filp, dst_off,
8558 						     length, 0);
8559 			if (cloned != length) {
8560 				if (cloned < 0)
8561 					ret = cloned;
8562 				else
8563 					ret = -EINVAL;
8564 			}
8565 		}
8566 
8567 dup_ext_out:
8568 		ksmbd_fd_put(work, fp_in);
8569 		ksmbd_fd_put(work, fp_out);
8570 		if (ret < 0)
8571 			goto out;
8572 		break;
8573 	}
8574 	default:
8575 		ksmbd_debug(SMB, "not implemented yet ioctl command 0x%x\n",
8576 			    cnt_code);
8577 		ret = -EOPNOTSUPP;
8578 		goto out;
8579 	}
8580 
8581 	rsp->CtlCode = cpu_to_le32(cnt_code);
8582 	rsp->InputCount = cpu_to_le32(0);
8583 	rsp->InputOffset = cpu_to_le32(112);
8584 	rsp->OutputOffset = cpu_to_le32(112);
8585 	rsp->OutputCount = cpu_to_le32(nbytes);
8586 	rsp->StructureSize = cpu_to_le16(49);
8587 	rsp->Reserved = cpu_to_le16(0);
8588 	rsp->Flags = cpu_to_le32(0);
8589 	rsp->Reserved2 = cpu_to_le32(0);
8590 	ret = ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_ioctl_rsp) + nbytes);
8591 	if (!ret)
8592 		return ret;
8593 
8594 out:
8595 	if (ret == -EACCES)
8596 		rsp->hdr.Status = STATUS_ACCESS_DENIED;
8597 	else if (ret == -ENOENT)
8598 		rsp->hdr.Status = STATUS_OBJECT_NAME_NOT_FOUND;
8599 	else if (ret == -EOPNOTSUPP)
8600 		rsp->hdr.Status = STATUS_NOT_SUPPORTED;
8601 	else if (ret == -ENOSPC)
8602 		rsp->hdr.Status = STATUS_BUFFER_TOO_SMALL;
8603 	else if (ret < 0 || rsp->hdr.Status == 0)
8604 		rsp->hdr.Status = STATUS_INVALID_PARAMETER;
8605 
8606 out2:
8607 	smb2_set_err_rsp(work);
8608 	return ret;
8609 }
8610 
8611 /**
8612  * smb20_oplock_break_ack() - handler for smb2.0 oplock break command
8613  * @work:	smb work containing oplock break command buffer
8614  *
8615  * Return:	0
8616  */
smb20_oplock_break_ack(struct ksmbd_work * work)8617 static void smb20_oplock_break_ack(struct ksmbd_work *work)
8618 {
8619 	struct smb2_oplock_break *req;
8620 	struct smb2_oplock_break *rsp;
8621 	struct ksmbd_file *fp;
8622 	struct oplock_info *opinfo = NULL;
8623 	__le32 err = 0;
8624 	int ret = 0;
8625 	u64 volatile_id, persistent_id;
8626 	char req_oplevel = 0, rsp_oplevel = 0;
8627 	unsigned int oplock_change_type;
8628 
8629 	WORK_BUFFERS(work, req, rsp);
8630 
8631 	volatile_id = req->VolatileFid;
8632 	persistent_id = req->PersistentFid;
8633 	req_oplevel = req->OplockLevel;
8634 	ksmbd_debug(OPLOCK, "v_id %llu, p_id %llu request oplock level %d\n",
8635 		    volatile_id, persistent_id, req_oplevel);
8636 
8637 	fp = ksmbd_lookup_fd_slow(work, volatile_id, persistent_id);
8638 	if (!fp) {
8639 		rsp->hdr.Status = STATUS_FILE_CLOSED;
8640 		smb2_set_err_rsp(work);
8641 		return;
8642 	}
8643 
8644 	opinfo = opinfo_get(fp);
8645 	if (!opinfo) {
8646 		pr_err("unexpected null oplock_info\n");
8647 		rsp->hdr.Status = STATUS_INVALID_OPLOCK_PROTOCOL;
8648 		smb2_set_err_rsp(work);
8649 		ksmbd_fd_put(work, fp);
8650 		return;
8651 	}
8652 
8653 	if (opinfo->level == SMB2_OPLOCK_LEVEL_NONE) {
8654 		rsp->hdr.Status = STATUS_INVALID_OPLOCK_PROTOCOL;
8655 		goto err_out;
8656 	}
8657 
8658 	if (opinfo->op_state == OPLOCK_STATE_NONE) {
8659 		ksmbd_debug(SMB, "unexpected oplock state 0x%x\n", opinfo->op_state);
8660 		rsp->hdr.Status = STATUS_UNSUCCESSFUL;
8661 		goto err_out;
8662 	}
8663 
8664 	if ((opinfo->level == SMB2_OPLOCK_LEVEL_EXCLUSIVE ||
8665 	     opinfo->level == SMB2_OPLOCK_LEVEL_BATCH) &&
8666 	    (req_oplevel != SMB2_OPLOCK_LEVEL_II &&
8667 	     req_oplevel != SMB2_OPLOCK_LEVEL_NONE)) {
8668 		err = STATUS_INVALID_OPLOCK_PROTOCOL;
8669 		oplock_change_type = OPLOCK_WRITE_TO_NONE;
8670 	} else if (opinfo->level == SMB2_OPLOCK_LEVEL_II &&
8671 		   req_oplevel != SMB2_OPLOCK_LEVEL_NONE) {
8672 		err = STATUS_INVALID_OPLOCK_PROTOCOL;
8673 		oplock_change_type = OPLOCK_READ_TO_NONE;
8674 	} else if (req_oplevel == SMB2_OPLOCK_LEVEL_II ||
8675 		   req_oplevel == SMB2_OPLOCK_LEVEL_NONE) {
8676 		err = STATUS_INVALID_DEVICE_STATE;
8677 		if ((opinfo->level == SMB2_OPLOCK_LEVEL_EXCLUSIVE ||
8678 		     opinfo->level == SMB2_OPLOCK_LEVEL_BATCH) &&
8679 		    req_oplevel == SMB2_OPLOCK_LEVEL_II) {
8680 			oplock_change_type = OPLOCK_WRITE_TO_READ;
8681 		} else if ((opinfo->level == SMB2_OPLOCK_LEVEL_EXCLUSIVE ||
8682 			    opinfo->level == SMB2_OPLOCK_LEVEL_BATCH) &&
8683 			   req_oplevel == SMB2_OPLOCK_LEVEL_NONE) {
8684 			oplock_change_type = OPLOCK_WRITE_TO_NONE;
8685 		} else if (opinfo->level == SMB2_OPLOCK_LEVEL_II &&
8686 			   req_oplevel == SMB2_OPLOCK_LEVEL_NONE) {
8687 			oplock_change_type = OPLOCK_READ_TO_NONE;
8688 		} else {
8689 			oplock_change_type = 0;
8690 		}
8691 	} else {
8692 		oplock_change_type = 0;
8693 	}
8694 
8695 	switch (oplock_change_type) {
8696 	case OPLOCK_WRITE_TO_READ:
8697 		ret = opinfo_write_to_read(opinfo);
8698 		rsp_oplevel = SMB2_OPLOCK_LEVEL_II;
8699 		break;
8700 	case OPLOCK_WRITE_TO_NONE:
8701 		ret = opinfo_write_to_none(opinfo);
8702 		rsp_oplevel = SMB2_OPLOCK_LEVEL_NONE;
8703 		break;
8704 	case OPLOCK_READ_TO_NONE:
8705 		ret = opinfo_read_to_none(opinfo);
8706 		rsp_oplevel = SMB2_OPLOCK_LEVEL_NONE;
8707 		break;
8708 	default:
8709 		pr_err("unknown oplock change 0x%x -> 0x%x\n",
8710 		       opinfo->level, rsp_oplevel);
8711 	}
8712 
8713 	if (ret < 0) {
8714 		rsp->hdr.Status = err;
8715 		goto err_out;
8716 	}
8717 
8718 	rsp->StructureSize = cpu_to_le16(24);
8719 	rsp->OplockLevel = rsp_oplevel;
8720 	rsp->Reserved = 0;
8721 	rsp->Reserved2 = 0;
8722 	rsp->VolatileFid = volatile_id;
8723 	rsp->PersistentFid = persistent_id;
8724 	ret = ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_oplock_break));
8725 	if (ret) {
8726 err_out:
8727 		smb2_set_err_rsp(work);
8728 	}
8729 
8730 	opinfo->op_state = OPLOCK_STATE_NONE;
8731 	wake_up_interruptible_all(&opinfo->oplock_q);
8732 	opinfo_put(opinfo);
8733 	ksmbd_fd_put(work, fp);
8734 }
8735 
check_lease_state(struct lease * lease,__le32 req_state)8736 static int check_lease_state(struct lease *lease, __le32 req_state)
8737 {
8738 	if ((lease->new_state ==
8739 	     (SMB2_LEASE_READ_CACHING_LE | SMB2_LEASE_HANDLE_CACHING_LE)) &&
8740 	    !(req_state & SMB2_LEASE_WRITE_CACHING_LE)) {
8741 		lease->new_state = req_state;
8742 		return 0;
8743 	}
8744 
8745 	if (lease->new_state == req_state)
8746 		return 0;
8747 
8748 	return 1;
8749 }
8750 
8751 /**
8752  * smb21_lease_break_ack() - handler for smb2.1 lease break command
8753  * @work:	smb work containing lease break command buffer
8754  *
8755  * Return:	0
8756  */
smb21_lease_break_ack(struct ksmbd_work * work)8757 static void smb21_lease_break_ack(struct ksmbd_work *work)
8758 {
8759 	struct ksmbd_conn *conn = work->conn;
8760 	struct smb2_lease_ack *req;
8761 	struct smb2_lease_ack *rsp;
8762 	struct oplock_info *opinfo;
8763 	__le32 err = 0;
8764 	int ret = 0;
8765 	unsigned int lease_change_type;
8766 	__le32 lease_state;
8767 	struct lease *lease;
8768 
8769 	WORK_BUFFERS(work, req, rsp);
8770 
8771 	ksmbd_debug(OPLOCK, "smb21 lease break, lease state(0x%x)\n",
8772 		    le32_to_cpu(req->LeaseState));
8773 	opinfo = lookup_lease_in_table(conn, req->LeaseKey);
8774 	if (!opinfo) {
8775 		ksmbd_debug(OPLOCK, "file not opened\n");
8776 		smb2_set_err_rsp(work);
8777 		rsp->hdr.Status = STATUS_UNSUCCESSFUL;
8778 		return;
8779 	}
8780 	lease = opinfo->o_lease;
8781 
8782 	if (opinfo->op_state == OPLOCK_STATE_NONE) {
8783 		pr_err("unexpected lease break state 0x%x\n",
8784 		       opinfo->op_state);
8785 		rsp->hdr.Status = STATUS_UNSUCCESSFUL;
8786 		goto err_out;
8787 	}
8788 
8789 	if (check_lease_state(lease, req->LeaseState)) {
8790 		rsp->hdr.Status = STATUS_REQUEST_NOT_ACCEPTED;
8791 		ksmbd_debug(OPLOCK,
8792 			    "req lease state: 0x%x, expected state: 0x%x\n",
8793 			    req->LeaseState, lease->new_state);
8794 		goto err_out;
8795 	}
8796 
8797 	if (!atomic_read(&opinfo->breaking_cnt)) {
8798 		rsp->hdr.Status = STATUS_UNSUCCESSFUL;
8799 		goto err_out;
8800 	}
8801 
8802 	/* check for bad lease state */
8803 	if (req->LeaseState &
8804 	    (~(SMB2_LEASE_READ_CACHING_LE | SMB2_LEASE_HANDLE_CACHING_LE))) {
8805 		err = STATUS_INVALID_OPLOCK_PROTOCOL;
8806 		if (lease->state & SMB2_LEASE_WRITE_CACHING_LE)
8807 			lease_change_type = OPLOCK_WRITE_TO_NONE;
8808 		else
8809 			lease_change_type = OPLOCK_READ_TO_NONE;
8810 		ksmbd_debug(OPLOCK, "handle bad lease state 0x%x -> 0x%x\n",
8811 			    le32_to_cpu(lease->state),
8812 			    le32_to_cpu(req->LeaseState));
8813 	} else if (lease->state == SMB2_LEASE_READ_CACHING_LE &&
8814 		   req->LeaseState != SMB2_LEASE_NONE_LE) {
8815 		err = STATUS_INVALID_OPLOCK_PROTOCOL;
8816 		lease_change_type = OPLOCK_READ_TO_NONE;
8817 		ksmbd_debug(OPLOCK, "handle bad lease state 0x%x -> 0x%x\n",
8818 			    le32_to_cpu(lease->state),
8819 			    le32_to_cpu(req->LeaseState));
8820 	} else {
8821 		/* valid lease state changes */
8822 		err = STATUS_INVALID_DEVICE_STATE;
8823 		if (req->LeaseState == SMB2_LEASE_NONE_LE) {
8824 			if (lease->state & SMB2_LEASE_WRITE_CACHING_LE)
8825 				lease_change_type = OPLOCK_WRITE_TO_NONE;
8826 			else
8827 				lease_change_type = OPLOCK_READ_TO_NONE;
8828 		} else if (req->LeaseState & SMB2_LEASE_READ_CACHING_LE) {
8829 			if (lease->state & SMB2_LEASE_WRITE_CACHING_LE)
8830 				lease_change_type = OPLOCK_WRITE_TO_READ;
8831 			else
8832 				lease_change_type = OPLOCK_READ_HANDLE_TO_READ;
8833 		} else {
8834 			lease_change_type = 0;
8835 		}
8836 	}
8837 
8838 	switch (lease_change_type) {
8839 	case OPLOCK_WRITE_TO_READ:
8840 		ret = opinfo_write_to_read(opinfo);
8841 		break;
8842 	case OPLOCK_READ_HANDLE_TO_READ:
8843 		ret = opinfo_read_handle_to_read(opinfo);
8844 		break;
8845 	case OPLOCK_WRITE_TO_NONE:
8846 		ret = opinfo_write_to_none(opinfo);
8847 		break;
8848 	case OPLOCK_READ_TO_NONE:
8849 		ret = opinfo_read_to_none(opinfo);
8850 		break;
8851 	default:
8852 		ksmbd_debug(OPLOCK, "unknown lease change 0x%x -> 0x%x\n",
8853 			    le32_to_cpu(lease->state),
8854 			    le32_to_cpu(req->LeaseState));
8855 	}
8856 
8857 	if (ret < 0) {
8858 		rsp->hdr.Status = err;
8859 		goto err_out;
8860 	}
8861 
8862 	lease_state = lease->state;
8863 
8864 	rsp->StructureSize = cpu_to_le16(36);
8865 	rsp->Reserved = 0;
8866 	rsp->Flags = 0;
8867 	memcpy(rsp->LeaseKey, req->LeaseKey, 16);
8868 	rsp->LeaseState = lease_state;
8869 	rsp->LeaseDuration = 0;
8870 	ret = ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_lease_ack));
8871 	if (ret) {
8872 err_out:
8873 		smb2_set_err_rsp(work);
8874 	}
8875 
8876 	opinfo->op_state = OPLOCK_STATE_NONE;
8877 	wake_up_interruptible_all(&opinfo->oplock_q);
8878 	atomic_dec(&opinfo->breaking_cnt);
8879 	wake_up_interruptible_all(&opinfo->oplock_brk);
8880 	opinfo_put(opinfo);
8881 }
8882 
8883 /**
8884  * smb2_oplock_break() - dispatcher for smb2.0 and 2.1 oplock/lease break
8885  * @work:	smb work containing oplock/lease break command buffer
8886  *
8887  * Return:	0 on success, otherwise error
8888  */
smb2_oplock_break(struct ksmbd_work * work)8889 int smb2_oplock_break(struct ksmbd_work *work)
8890 {
8891 	struct smb2_oplock_break *req;
8892 	struct smb2_oplock_break *rsp;
8893 
8894 	ksmbd_debug(SMB, "Received smb2 oplock break acknowledgment request\n");
8895 
8896 	WORK_BUFFERS(work, req, rsp);
8897 
8898 	switch (le16_to_cpu(req->StructureSize)) {
8899 	case OP_BREAK_STRUCT_SIZE_20:
8900 		smb20_oplock_break_ack(work);
8901 		break;
8902 	case OP_BREAK_STRUCT_SIZE_21:
8903 		smb21_lease_break_ack(work);
8904 		break;
8905 	default:
8906 		ksmbd_debug(OPLOCK, "invalid break cmd %d\n",
8907 			    le16_to_cpu(req->StructureSize));
8908 		rsp->hdr.Status = STATUS_INVALID_PARAMETER;
8909 		smb2_set_err_rsp(work);
8910 		return -EINVAL;
8911 	}
8912 
8913 	return 0;
8914 }
8915 
8916 /**
8917  * smb2_notify() - handler for smb2 notify request
8918  * @work:   smb work containing notify command buffer
8919  *
8920  * Return:      0 on success, otherwise error
8921  */
smb2_notify(struct ksmbd_work * work)8922 int smb2_notify(struct ksmbd_work *work)
8923 {
8924 	struct smb2_change_notify_req *req;
8925 	struct smb2_change_notify_rsp *rsp;
8926 
8927 	ksmbd_debug(SMB, "Received smb2 notify\n");
8928 
8929 	WORK_BUFFERS(work, req, rsp);
8930 
8931 	if (work->next_smb2_rcv_hdr_off && req->hdr.NextCommand) {
8932 		rsp->hdr.Status = STATUS_INTERNAL_ERROR;
8933 		smb2_set_err_rsp(work);
8934 		return -EIO;
8935 	}
8936 
8937 	smb2_set_err_rsp(work);
8938 	rsp->hdr.Status = STATUS_NOT_IMPLEMENTED;
8939 	return -EOPNOTSUPP;
8940 }
8941 
8942 /**
8943  * smb2_is_sign_req() - handler for checking packet signing status
8944  * @work:	smb work containing notify command buffer
8945  * @command:	SMB2 command id
8946  *
8947  * Return:	true if packed is signed, false otherwise
8948  */
smb2_is_sign_req(struct ksmbd_work * work,unsigned int command)8949 bool smb2_is_sign_req(struct ksmbd_work *work, unsigned int command)
8950 {
8951 	struct smb2_hdr *rcv_hdr2 = smb_get_msg(work->request_buf);
8952 
8953 	if ((rcv_hdr2->Flags & SMB2_FLAGS_SIGNED) &&
8954 	    command != SMB2_NEGOTIATE_HE &&
8955 	    command != SMB2_SESSION_SETUP_HE &&
8956 	    command != SMB2_OPLOCK_BREAK_HE)
8957 		return true;
8958 
8959 	return false;
8960 }
8961 
8962 /**
8963  * smb2_check_sign_req() - handler for req packet sign processing
8964  * @work:   smb work containing notify command buffer
8965  *
8966  * Return:	1 on success, 0 otherwise
8967  */
smb2_check_sign_req(struct ksmbd_work * work)8968 int smb2_check_sign_req(struct ksmbd_work *work)
8969 {
8970 	struct smb2_hdr *hdr;
8971 	char signature_req[SMB2_SIGNATURE_SIZE];
8972 	char signature[SMB2_HMACSHA256_SIZE];
8973 	struct kvec iov[1];
8974 	size_t len;
8975 
8976 	hdr = smb_get_msg(work->request_buf);
8977 	if (work->next_smb2_rcv_hdr_off)
8978 		hdr = ksmbd_req_buf_next(work);
8979 
8980 	if (!hdr->NextCommand && !work->next_smb2_rcv_hdr_off)
8981 		len = get_rfc1002_len(work->request_buf);
8982 	else if (hdr->NextCommand)
8983 		len = le32_to_cpu(hdr->NextCommand);
8984 	else
8985 		len = get_rfc1002_len(work->request_buf) -
8986 			work->next_smb2_rcv_hdr_off;
8987 
8988 	memcpy(signature_req, hdr->Signature, SMB2_SIGNATURE_SIZE);
8989 	memset(hdr->Signature, 0, SMB2_SIGNATURE_SIZE);
8990 
8991 	iov[0].iov_base = (char *)&hdr->ProtocolId;
8992 	iov[0].iov_len = len;
8993 
8994 	ksmbd_sign_smb2_pdu(work->conn, work->sess->sess_key, iov, 1,
8995 			    signature);
8996 
8997 	if (crypto_memneq(signature, signature_req, SMB2_SIGNATURE_SIZE)) {
8998 		pr_err("bad smb2 signature\n");
8999 		return 0;
9000 	}
9001 
9002 	return 1;
9003 }
9004 
9005 /**
9006  * smb2_set_sign_rsp() - handler for rsp packet sign processing
9007  * @work:   smb work containing notify command buffer
9008  *
9009  */
smb2_set_sign_rsp(struct ksmbd_work * work)9010 void smb2_set_sign_rsp(struct ksmbd_work *work)
9011 {
9012 	struct smb2_hdr *hdr;
9013 	char signature[SMB2_HMACSHA256_SIZE];
9014 	struct kvec *iov;
9015 	int n_vec = 1;
9016 
9017 	hdr = ksmbd_resp_buf_curr(work);
9018 	hdr->Flags |= SMB2_FLAGS_SIGNED;
9019 	memset(hdr->Signature, 0, SMB2_SIGNATURE_SIZE);
9020 
9021 	if (hdr->Command == SMB2_READ) {
9022 		iov = &work->iov[work->iov_idx - 1];
9023 		n_vec++;
9024 	} else {
9025 		iov = &work->iov[work->iov_idx];
9026 	}
9027 
9028 	ksmbd_sign_smb2_pdu(work->conn, work->sess->sess_key, iov, n_vec,
9029 			    signature);
9030 	memcpy(hdr->Signature, signature, SMB2_SIGNATURE_SIZE);
9031 }
9032 
9033 /**
9034  * smb3_check_sign_req() - handler for req packet sign processing
9035  * @work:   smb work containing notify command buffer
9036  *
9037  * Return:	1 on success, 0 otherwise
9038  */
smb3_check_sign_req(struct ksmbd_work * work)9039 int smb3_check_sign_req(struct ksmbd_work *work)
9040 {
9041 	struct ksmbd_conn *conn = work->conn;
9042 	char *signing_key;
9043 	struct smb2_hdr *hdr;
9044 	struct channel *chann;
9045 	char signature_req[SMB2_SIGNATURE_SIZE];
9046 	char signature[SMB2_CMACAES_SIZE];
9047 	struct kvec iov[1];
9048 	size_t len;
9049 
9050 	hdr = smb_get_msg(work->request_buf);
9051 	if (work->next_smb2_rcv_hdr_off)
9052 		hdr = ksmbd_req_buf_next(work);
9053 
9054 	if (!hdr->NextCommand && !work->next_smb2_rcv_hdr_off)
9055 		len = get_rfc1002_len(work->request_buf);
9056 	else if (hdr->NextCommand)
9057 		len = le32_to_cpu(hdr->NextCommand);
9058 	else
9059 		len = get_rfc1002_len(work->request_buf) -
9060 			work->next_smb2_rcv_hdr_off;
9061 
9062 	if (le16_to_cpu(hdr->Command) == SMB2_SESSION_SETUP_HE) {
9063 		signing_key = work->sess->smb3signingkey;
9064 	} else {
9065 		chann = lookup_chann_list(work->sess, conn);
9066 		if (!chann) {
9067 			return 0;
9068 		}
9069 		signing_key = chann->smb3signingkey;
9070 	}
9071 
9072 	if (!signing_key) {
9073 		pr_err("SMB3 signing key is not generated\n");
9074 		return 0;
9075 	}
9076 
9077 	memcpy(signature_req, hdr->Signature, SMB2_SIGNATURE_SIZE);
9078 	memset(hdr->Signature, 0, SMB2_SIGNATURE_SIZE);
9079 	iov[0].iov_base = (char *)&hdr->ProtocolId;
9080 	iov[0].iov_len = len;
9081 
9082 	ksmbd_sign_smb3_pdu(conn, signing_key, iov, 1, signature);
9083 
9084 	if (crypto_memneq(signature, signature_req, SMB2_SIGNATURE_SIZE)) {
9085 		pr_err("bad smb2 signature\n");
9086 		return 0;
9087 	}
9088 
9089 	return 1;
9090 }
9091 
9092 /**
9093  * smb3_set_sign_rsp() - handler for rsp packet sign processing
9094  * @work:   smb work containing notify command buffer
9095  *
9096  */
smb3_set_sign_rsp(struct ksmbd_work * work)9097 void smb3_set_sign_rsp(struct ksmbd_work *work)
9098 {
9099 	struct ksmbd_conn *conn = work->conn;
9100 	struct smb2_hdr *hdr;
9101 	struct channel *chann;
9102 	char signature[SMB2_CMACAES_SIZE];
9103 	struct kvec *iov;
9104 	int n_vec = 1;
9105 	char *signing_key;
9106 
9107 	hdr = ksmbd_resp_buf_curr(work);
9108 
9109 	if (conn->binding == false &&
9110 	    le16_to_cpu(hdr->Command) == SMB2_SESSION_SETUP_HE) {
9111 		signing_key = work->sess->smb3signingkey;
9112 	} else {
9113 		chann = lookup_chann_list(work->sess, work->conn);
9114 		if (!chann) {
9115 			return;
9116 		}
9117 		signing_key = chann->smb3signingkey;
9118 	}
9119 
9120 	if (!signing_key)
9121 		return;
9122 
9123 	hdr->Flags |= SMB2_FLAGS_SIGNED;
9124 	memset(hdr->Signature, 0, SMB2_SIGNATURE_SIZE);
9125 
9126 	if (hdr->Command == SMB2_READ) {
9127 		iov = &work->iov[work->iov_idx - 1];
9128 		n_vec++;
9129 	} else {
9130 		iov = &work->iov[work->iov_idx];
9131 	}
9132 
9133 	ksmbd_sign_smb3_pdu(conn, signing_key, iov, n_vec, signature);
9134 	memcpy(hdr->Signature, signature, SMB2_SIGNATURE_SIZE);
9135 }
9136 
9137 /**
9138  * smb3_preauth_hash_rsp() - handler for computing preauth hash on response
9139  * @work:   smb work containing response buffer
9140  *
9141  */
smb3_preauth_hash_rsp(struct ksmbd_work * work)9142 void smb3_preauth_hash_rsp(struct ksmbd_work *work)
9143 {
9144 	struct ksmbd_conn *conn = work->conn;
9145 	struct ksmbd_session *sess = work->sess;
9146 	struct smb2_hdr *req, *rsp;
9147 
9148 	if (conn->dialect != SMB311_PROT_ID)
9149 		return;
9150 
9151 	WORK_BUFFERS(work, req, rsp);
9152 
9153 	if (le16_to_cpu(req->Command) == SMB2_NEGOTIATE_HE &&
9154 	    conn->preauth_info)
9155 		ksmbd_gen_preauth_integrity_hash(conn, work->response_buf,
9156 						 conn->preauth_info->Preauth_HashValue);
9157 
9158 	if (le16_to_cpu(rsp->Command) == SMB2_SESSION_SETUP_HE && sess) {
9159 		__u8 *hash_value;
9160 
9161 		if (conn->binding) {
9162 			struct preauth_session *preauth_sess;
9163 
9164 			preauth_sess = ksmbd_preauth_session_lookup(conn, sess->id);
9165 			if (!preauth_sess)
9166 				return;
9167 			hash_value = preauth_sess->Preauth_HashValue;
9168 		} else {
9169 			hash_value = sess->Preauth_HashValue;
9170 			if (!hash_value)
9171 				return;
9172 		}
9173 		ksmbd_gen_preauth_integrity_hash(conn, work->response_buf,
9174 						 hash_value);
9175 	}
9176 }
9177 
fill_transform_hdr(void * tr_buf,char * old_buf,__le16 cipher_type)9178 static void fill_transform_hdr(void *tr_buf, char *old_buf, __le16 cipher_type)
9179 {
9180 	struct smb2_transform_hdr *tr_hdr = tr_buf + 4;
9181 	struct smb2_hdr *hdr = smb_get_msg(old_buf);
9182 	unsigned int orig_len = get_rfc1002_len(old_buf);
9183 
9184 	/* tr_buf must be cleared by the caller */
9185 	tr_hdr->ProtocolId = SMB2_TRANSFORM_PROTO_NUM;
9186 	tr_hdr->OriginalMessageSize = cpu_to_le32(orig_len);
9187 	tr_hdr->Flags = cpu_to_le16(TRANSFORM_FLAG_ENCRYPTED);
9188 	if (cipher_type == SMB2_ENCRYPTION_AES128_GCM ||
9189 	    cipher_type == SMB2_ENCRYPTION_AES256_GCM)
9190 		get_random_bytes(&tr_hdr->Nonce, SMB3_AES_GCM_NONCE);
9191 	else
9192 		get_random_bytes(&tr_hdr->Nonce, SMB3_AES_CCM_NONCE);
9193 	memcpy(&tr_hdr->SessionId, &hdr->SessionId, 8);
9194 	inc_rfc1001_len(tr_buf, sizeof(struct smb2_transform_hdr));
9195 	inc_rfc1001_len(tr_buf, orig_len);
9196 }
9197 
smb3_encrypt_resp(struct ksmbd_work * work)9198 int smb3_encrypt_resp(struct ksmbd_work *work)
9199 {
9200 	struct kvec *iov = work->iov;
9201 	int rc = -ENOMEM;
9202 	void *tr_buf;
9203 
9204 	tr_buf = kzalloc(sizeof(struct smb2_transform_hdr) + 4, KSMBD_DEFAULT_GFP);
9205 	if (!tr_buf)
9206 		return rc;
9207 
9208 	/* fill transform header */
9209 	fill_transform_hdr(tr_buf, work->response_buf, work->conn->cipher_type);
9210 
9211 	iov[0].iov_base = tr_buf;
9212 	iov[0].iov_len = sizeof(struct smb2_transform_hdr) + 4;
9213 	work->tr_buf = tr_buf;
9214 
9215 	return ksmbd_crypt_message(work, iov, work->iov_idx + 1, 1);
9216 }
9217 
smb3_is_transform_hdr(void * buf)9218 bool smb3_is_transform_hdr(void *buf)
9219 {
9220 	struct smb2_transform_hdr *trhdr = smb_get_msg(buf);
9221 
9222 	return trhdr->ProtocolId == SMB2_TRANSFORM_PROTO_NUM;
9223 }
9224 
smb3_decrypt_req(struct ksmbd_work * work)9225 int smb3_decrypt_req(struct ksmbd_work *work)
9226 {
9227 	struct ksmbd_session *sess;
9228 	char *buf = work->request_buf;
9229 	unsigned int pdu_length = get_rfc1002_len(buf);
9230 	struct kvec iov[2];
9231 	int buf_data_size = pdu_length - sizeof(struct smb2_transform_hdr);
9232 	struct smb2_transform_hdr *tr_hdr = smb_get_msg(buf);
9233 	int rc = 0;
9234 
9235 	if (pdu_length < sizeof(struct smb2_transform_hdr) ||
9236 	    buf_data_size < sizeof(struct smb2_hdr)) {
9237 		pr_err("Transform message is too small (%u)\n",
9238 		       pdu_length);
9239 		return -ECONNABORTED;
9240 	}
9241 
9242 	if (buf_data_size < le32_to_cpu(tr_hdr->OriginalMessageSize)) {
9243 		pr_err("Transform message is broken\n");
9244 		return -ECONNABORTED;
9245 	}
9246 
9247 	sess = ksmbd_session_lookup_all(work->conn, le64_to_cpu(tr_hdr->SessionId));
9248 	if (!sess) {
9249 		pr_err("invalid session id(%llx) in transform header\n",
9250 		       le64_to_cpu(tr_hdr->SessionId));
9251 		return -ECONNABORTED;
9252 	}
9253 	ksmbd_user_session_put(sess);
9254 
9255 	iov[0].iov_base = buf;
9256 	iov[0].iov_len = sizeof(struct smb2_transform_hdr) + 4;
9257 	iov[1].iov_base = buf + sizeof(struct smb2_transform_hdr) + 4;
9258 	iov[1].iov_len = buf_data_size;
9259 	rc = ksmbd_crypt_message(work, iov, 2, 0);
9260 	if (rc)
9261 		return rc;
9262 
9263 	memmove(buf + 4, iov[1].iov_base, buf_data_size);
9264 	*(__be32 *)buf = cpu_to_be32(buf_data_size);
9265 
9266 	return rc;
9267 }
9268 
smb3_11_final_sess_setup_resp(struct ksmbd_work * work)9269 bool smb3_11_final_sess_setup_resp(struct ksmbd_work *work)
9270 {
9271 	struct ksmbd_conn *conn = work->conn;
9272 	struct ksmbd_session *sess = work->sess;
9273 	struct smb2_hdr *rsp = smb_get_msg(work->response_buf);
9274 
9275 	if (conn->dialect < SMB30_PROT_ID)
9276 		return false;
9277 
9278 	if (work->next_smb2_rcv_hdr_off)
9279 		rsp = ksmbd_resp_buf_next(work);
9280 
9281 	if (le16_to_cpu(rsp->Command) == SMB2_SESSION_SETUP_HE &&
9282 	    sess->user && !user_guest(sess->user) &&
9283 	    rsp->Status == STATUS_SUCCESS)
9284 		return true;
9285 	return false;
9286 }
9287