blob: 6806994383d9290e05d3eb9ac1d5a742ba239c14 [file] [log] [blame]
Namjae Jeone2f34482021-03-16 10:49:09 +09001// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Copyright (C) 2016 Namjae Jeon <linkinjeon@kernel.org>
4 * Copyright (C) 2018 Samsung Electronics Co., Ltd.
5 */
6
7#include <linux/inetdevice.h>
8#include <net/addrconf.h>
9#include <linux/syscalls.h>
10#include <linux/namei.h>
11#include <linux/statfs.h>
12#include <linux/ethtool.h>
Namjae Jeone8c06192021-06-22 11:06:11 +090013#include <linux/falloc.h>
Namjae Jeone2f34482021-03-16 10:49:09 +090014
15#include "glob.h"
Namjae Jeone2f34482021-03-16 10:49:09 +090016#include "smbfsctl.h"
17#include "oplock.h"
18#include "smbacl.h"
19
20#include "auth.h"
21#include "asn1.h"
Namjae Jeone2f34482021-03-16 10:49:09 +090022#include "connection.h"
23#include "transport_ipc.h"
Hyunchul Lee03d8d4f2021-07-13 16:09:34 +090024#include "transport_rdma.h"
Namjae Jeone2f34482021-03-16 10:49:09 +090025#include "vfs.h"
26#include "vfs_cache.h"
27#include "misc.h"
28
Namjae Jeone2f34482021-03-16 10:49:09 +090029#include "server.h"
30#include "smb_common.h"
31#include "smbstatus.h"
32#include "ksmbd_work.h"
33#include "mgmt/user_config.h"
34#include "mgmt/share_config.h"
35#include "mgmt/tree_connect.h"
36#include "mgmt/user_session.h"
37#include "mgmt/ksmbd_ida.h"
38#include "ndr.h"
39
40static void __wbuf(struct ksmbd_work *work, void **req, void **rsp)
41{
42 if (work->next_smb2_rcv_hdr_off) {
Namjae Jeon8a893312021-06-25 13:43:37 +090043 *req = ksmbd_req_buf_next(work);
44 *rsp = ksmbd_resp_buf_next(work);
Namjae Jeone2f34482021-03-16 10:49:09 +090045 } else {
Namjae Jeoncb451722021-11-03 08:08:44 +090046 *req = smb2_get_msg(work->request_buf);
47 *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +090048 }
49}
50
51#define WORK_BUFFERS(w, rq, rs) __wbuf((w), (void **)&(rq), (void **)&(rs))
52
53/**
54 * check_session_id() - check for valid session id in smb header
55 * @conn: connection instance
56 * @id: session id from smb header
57 *
58 * Return: 1 if valid session id, otherwise 0
59 */
Namjae Jeonf4228b62021-08-12 10:16:40 +090060static inline bool check_session_id(struct ksmbd_conn *conn, u64 id)
Namjae Jeone2f34482021-03-16 10:49:09 +090061{
62 struct ksmbd_session *sess;
63
64 if (id == 0 || id == -1)
Namjae Jeonf4228b62021-08-12 10:16:40 +090065 return false;
Namjae Jeone2f34482021-03-16 10:49:09 +090066
Namjae Jeonf5a544e2021-06-18 10:04:19 +090067 sess = ksmbd_session_lookup_all(conn, id);
Namjae Jeone2f34482021-03-16 10:49:09 +090068 if (sess)
Namjae Jeonf4228b62021-08-12 10:16:40 +090069 return true;
Namjae Jeonbde16942021-06-28 15:23:19 +090070 pr_err("Invalid user session id: %llu\n", id);
Namjae Jeonf4228b62021-08-12 10:16:40 +090071 return false;
Namjae Jeone2f34482021-03-16 10:49:09 +090072}
73
Namjae Jeonf5a544e2021-06-18 10:04:19 +090074struct channel *lookup_chann_list(struct ksmbd_session *sess, struct ksmbd_conn *conn)
Namjae Jeone2f34482021-03-16 10:49:09 +090075{
76 struct channel *chann;
Namjae Jeone2f34482021-03-16 10:49:09 +090077
Namjae Jeon6f3d5ee2021-06-18 10:28:52 +090078 list_for_each_entry(chann, &sess->ksmbd_chann_list, chann_list) {
Namjae Jeon560ac052021-06-22 16:16:45 +090079 if (chann->conn == conn)
Namjae Jeone2f34482021-03-16 10:49:09 +090080 return chann;
81 }
82
83 return NULL;
84}
85
86/**
Namjae Jeon5ec3df8e2021-08-12 10:17:39 +090087 * smb2_get_ksmbd_tcon() - get tree connection information using a tree id.
Hyunchul Lee95fa1ce2021-03-21 17:05:56 +090088 * @work: smb work
Namjae Jeone2f34482021-03-16 10:49:09 +090089 *
Namjae Jeon5ec3df8e2021-08-12 10:17:39 +090090 * Return: 0 if there is a tree connection matched or these are
91 * skipable commands, otherwise error
Namjae Jeone2f34482021-03-16 10:49:09 +090092 */
93int smb2_get_ksmbd_tcon(struct ksmbd_work *work)
94{
Namjae Jeoncb451722021-11-03 08:08:44 +090095 struct smb2_hdr *req_hdr = smb2_get_msg(work->request_buf);
Ralph Boehme341b1602021-10-05 07:03:40 +020096 unsigned int cmd = le16_to_cpu(req_hdr->Command);
Namjae Jeone2f34482021-03-16 10:49:09 +090097 int tree_id;
98
99 work->tcon = NULL;
Ralph Boehme341b1602021-10-05 07:03:40 +0200100 if (cmd == SMB2_TREE_CONNECT_HE ||
101 cmd == SMB2_CANCEL_HE ||
102 cmd == SMB2_LOGOFF_HE) {
Namjae Jeone2f34482021-03-16 10:49:09 +0900103 ksmbd_debug(SMB, "skip to check tree connect request\n");
104 return 0;
105 }
106
Namjae Jeon02b68b22021-04-01 17:45:33 +0900107 if (xa_empty(&work->sess->tree_conns)) {
Namjae Jeone2f34482021-03-16 10:49:09 +0900108 ksmbd_debug(SMB, "NO tree connected\n");
Namjae Jeonc6ce2b52021-08-12 10:18:18 +0900109 return -ENOENT;
Namjae Jeone2f34482021-03-16 10:49:09 +0900110 }
111
112 tree_id = le32_to_cpu(req_hdr->Id.SyncId.TreeId);
113 work->tcon = ksmbd_tree_conn_lookup(work->sess, tree_id);
114 if (!work->tcon) {
Namjae Jeonbde16942021-06-28 15:23:19 +0900115 pr_err("Invalid tid %d\n", tree_id);
Namjae Jeonc6ce2b52021-08-12 10:18:18 +0900116 return -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +0900117 }
118
119 return 1;
120}
121
122/**
123 * smb2_set_err_rsp() - set error response code on smb response
124 * @work: smb work containing response buffer
125 */
126void smb2_set_err_rsp(struct ksmbd_work *work)
127{
128 struct smb2_err_rsp *err_rsp;
129
130 if (work->next_smb2_rcv_hdr_off)
Namjae Jeon8a893312021-06-25 13:43:37 +0900131 err_rsp = ksmbd_resp_buf_next(work);
Namjae Jeone2f34482021-03-16 10:49:09 +0900132 else
Namjae Jeoncb451722021-11-03 08:08:44 +0900133 err_rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +0900134
135 if (err_rsp->hdr.Status != STATUS_STOPPED_ON_SYMLINK) {
136 err_rsp->StructureSize = SMB2_ERROR_STRUCTURE_SIZE2_LE;
137 err_rsp->ErrorContextCount = 0;
138 err_rsp->Reserved = 0;
139 err_rsp->ByteCount = 0;
140 err_rsp->ErrorData[0] = 0;
Namjae Jeone5066492021-03-30 12:35:23 +0900141 inc_rfc1001_len(work->response_buf, SMB2_ERROR_STRUCTURE_SIZE2);
Namjae Jeone2f34482021-03-16 10:49:09 +0900142 }
143}
144
145/**
146 * is_smb2_neg_cmd() - is it smb2 negotiation command
147 * @work: smb work containing smb header
148 *
Namjae Jeonf4228b62021-08-12 10:16:40 +0900149 * Return: true if smb2 negotiation command, otherwise false
Namjae Jeone2f34482021-03-16 10:49:09 +0900150 */
Namjae Jeonf4228b62021-08-12 10:16:40 +0900151bool is_smb2_neg_cmd(struct ksmbd_work *work)
Namjae Jeone2f34482021-03-16 10:49:09 +0900152{
Namjae Jeoncb451722021-11-03 08:08:44 +0900153 struct smb2_hdr *hdr = smb2_get_msg(work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +0900154
155 /* is it SMB2 header ? */
156 if (hdr->ProtocolId != SMB2_PROTO_NUMBER)
Namjae Jeonf4228b62021-08-12 10:16:40 +0900157 return false;
Namjae Jeone2f34482021-03-16 10:49:09 +0900158
159 /* make sure it is request not response message */
160 if (hdr->Flags & SMB2_FLAGS_SERVER_TO_REDIR)
Namjae Jeonf4228b62021-08-12 10:16:40 +0900161 return false;
Namjae Jeone2f34482021-03-16 10:49:09 +0900162
163 if (hdr->Command != SMB2_NEGOTIATE)
Namjae Jeonf4228b62021-08-12 10:16:40 +0900164 return false;
Namjae Jeone2f34482021-03-16 10:49:09 +0900165
Namjae Jeonf4228b62021-08-12 10:16:40 +0900166 return true;
Namjae Jeone2f34482021-03-16 10:49:09 +0900167}
168
169/**
170 * is_smb2_rsp() - is it smb2 response
171 * @work: smb work containing smb response buffer
172 *
Namjae Jeonf4228b62021-08-12 10:16:40 +0900173 * Return: true if smb2 response, otherwise false
Namjae Jeone2f34482021-03-16 10:49:09 +0900174 */
Namjae Jeonf4228b62021-08-12 10:16:40 +0900175bool is_smb2_rsp(struct ksmbd_work *work)
Namjae Jeone2f34482021-03-16 10:49:09 +0900176{
Namjae Jeoncb451722021-11-03 08:08:44 +0900177 struct smb2_hdr *hdr = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +0900178
179 /* is it SMB2 header ? */
180 if (hdr->ProtocolId != SMB2_PROTO_NUMBER)
Namjae Jeonf4228b62021-08-12 10:16:40 +0900181 return false;
Namjae Jeone2f34482021-03-16 10:49:09 +0900182
183 /* make sure it is response not request message */
184 if (!(hdr->Flags & SMB2_FLAGS_SERVER_TO_REDIR))
Namjae Jeonf4228b62021-08-12 10:16:40 +0900185 return false;
Namjae Jeone2f34482021-03-16 10:49:09 +0900186
Namjae Jeonf4228b62021-08-12 10:16:40 +0900187 return true;
Namjae Jeone2f34482021-03-16 10:49:09 +0900188}
189
190/**
191 * get_smb2_cmd_val() - get smb command code from smb header
192 * @work: smb work containing smb request buffer
193 *
194 * Return: smb2 request command value
195 */
Namjae Jeonfc2d1b52021-05-26 18:01:08 +0900196u16 get_smb2_cmd_val(struct ksmbd_work *work)
Namjae Jeone2f34482021-03-16 10:49:09 +0900197{
198 struct smb2_hdr *rcv_hdr;
199
200 if (work->next_smb2_rcv_hdr_off)
Namjae Jeon8a893312021-06-25 13:43:37 +0900201 rcv_hdr = ksmbd_req_buf_next(work);
Namjae Jeone2f34482021-03-16 10:49:09 +0900202 else
Namjae Jeoncb451722021-11-03 08:08:44 +0900203 rcv_hdr = smb2_get_msg(work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +0900204 return le16_to_cpu(rcv_hdr->Command);
205}
206
207/**
208 * set_smb2_rsp_status() - set error response code on smb2 header
209 * @work: smb work containing response buffer
Hyunchul Lee95fa1ce2021-03-21 17:05:56 +0900210 * @err: error response code
Namjae Jeone2f34482021-03-16 10:49:09 +0900211 */
212void set_smb2_rsp_status(struct ksmbd_work *work, __le32 err)
213{
214 struct smb2_hdr *rsp_hdr;
215
216 if (work->next_smb2_rcv_hdr_off)
Namjae Jeon8a893312021-06-25 13:43:37 +0900217 rsp_hdr = ksmbd_resp_buf_next(work);
Namjae Jeone2f34482021-03-16 10:49:09 +0900218 else
Namjae Jeoncb451722021-11-03 08:08:44 +0900219 rsp_hdr = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +0900220 rsp_hdr->Status = err;
221 smb2_set_err_rsp(work);
222}
223
224/**
225 * init_smb2_neg_rsp() - initialize smb2 response for negotiate command
226 * @work: smb work containing smb request buffer
227 *
228 * smb2 negotiate response is sent in reply of smb1 negotiate command for
229 * dialect auto-negotiation.
230 */
231int init_smb2_neg_rsp(struct ksmbd_work *work)
232{
233 struct smb2_hdr *rsp_hdr;
234 struct smb2_negotiate_rsp *rsp;
235 struct ksmbd_conn *conn = work->conn;
236
237 if (conn->need_neg == false)
238 return -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +0900239
Namjae Jeoncb451722021-11-03 08:08:44 +0900240 *(__be32 *)work->response_buf =
241 cpu_to_be32(conn->vals->header_size);
Namjae Jeone2f34482021-03-16 10:49:09 +0900242
Namjae Jeoncb451722021-11-03 08:08:44 +0900243 rsp_hdr = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +0900244 memset(rsp_hdr, 0, sizeof(struct smb2_hdr) + 2);
Namjae Jeone2f34482021-03-16 10:49:09 +0900245 rsp_hdr->ProtocolId = SMB2_PROTO_NUMBER;
246 rsp_hdr->StructureSize = SMB2_HEADER_STRUCTURE_SIZE;
247 rsp_hdr->CreditRequest = cpu_to_le16(2);
248 rsp_hdr->Command = SMB2_NEGOTIATE;
249 rsp_hdr->Flags = (SMB2_FLAGS_SERVER_TO_REDIR);
250 rsp_hdr->NextCommand = 0;
251 rsp_hdr->MessageId = 0;
252 rsp_hdr->Id.SyncId.ProcessId = 0;
253 rsp_hdr->Id.SyncId.TreeId = 0;
254 rsp_hdr->SessionId = 0;
255 memset(rsp_hdr->Signature, 0, 16);
256
Namjae Jeoncb451722021-11-03 08:08:44 +0900257 rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +0900258
259 WARN_ON(ksmbd_conn_good(work));
260
261 rsp->StructureSize = cpu_to_le16(65);
262 ksmbd_debug(SMB, "conn->dialect 0x%x\n", conn->dialect);
263 rsp->DialectRevision = cpu_to_le16(conn->dialect);
264 /* Not setting conn guid rsp->ServerGUID, as it
265 * not used by client for identifying connection
266 */
267 rsp->Capabilities = cpu_to_le32(conn->vals->capabilities);
268 /* Default Max Message Size till SMB2.0, 64K*/
269 rsp->MaxTransactSize = cpu_to_le32(conn->vals->max_trans_size);
270 rsp->MaxReadSize = cpu_to_le32(conn->vals->max_read_size);
271 rsp->MaxWriteSize = cpu_to_le32(conn->vals->max_write_size);
272
273 rsp->SystemTime = cpu_to_le64(ksmbd_systime());
274 rsp->ServerStartTime = 0;
275
276 rsp->SecurityBufferOffset = cpu_to_le16(128);
277 rsp->SecurityBufferLength = cpu_to_le16(AUTH_GSS_LENGTH);
Namjae Jeoncb451722021-11-03 08:08:44 +0900278 ksmbd_copy_gss_neg_header((char *)(&rsp->hdr) +
Namjae Jeone2f34482021-03-16 10:49:09 +0900279 le16_to_cpu(rsp->SecurityBufferOffset));
Namjae Jeoncb451722021-11-03 08:08:44 +0900280 inc_rfc1001_len(work->response_buf,
281 sizeof(struct smb2_negotiate_rsp) -
282 sizeof(struct smb2_hdr) - sizeof(rsp->Buffer) +
283 AUTH_GSS_LENGTH);
Namjae Jeone2f34482021-03-16 10:49:09 +0900284 rsp->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED_LE;
285 if (server_conf.signing == KSMBD_CONFIG_OPT_MANDATORY)
286 rsp->SecurityMode |= SMB2_NEGOTIATE_SIGNING_REQUIRED_LE;
287 conn->use_spnego = true;
288
289 ksmbd_conn_set_need_negotiate(work);
290 return 0;
291}
292
Namjae Jeone2f34482021-03-16 10:49:09 +0900293/**
294 * smb2_set_rsp_credits() - set number of credits in response buffer
295 * @work: smb work containing smb response buffer
296 */
297int smb2_set_rsp_credits(struct ksmbd_work *work)
298{
Namjae Jeon8a893312021-06-25 13:43:37 +0900299 struct smb2_hdr *req_hdr = ksmbd_req_buf_next(work);
300 struct smb2_hdr *hdr = ksmbd_resp_buf_next(work);
Namjae Jeone2f34482021-03-16 10:49:09 +0900301 struct ksmbd_conn *conn = work->conn;
Namjae Jeon914d7e52021-12-29 23:10:03 +0900302 unsigned short credits_requested, aux_max;
Hyunchul Leebf8acc92021-10-07 16:26:58 +0900303 unsigned short credit_charge, credits_granted = 0;
Namjae Jeone2f34482021-03-16 10:49:09 +0900304
Hyunchul Leebf8acc92021-10-07 16:26:58 +0900305 if (work->send_no_response)
306 return 0;
Namjae Jeone2f34482021-03-16 10:49:09 +0900307
Hyunchul Leebf8acc92021-10-07 16:26:58 +0900308 hdr->CreditCharge = req_hdr->CreditCharge;
Namjae Jeone2f34482021-03-16 10:49:09 +0900309
Namjae Jeon004443b2021-12-29 23:08:46 +0900310 if (conn->total_credits > conn->vals->max_credits) {
Hyunchul Leebf8acc92021-10-07 16:26:58 +0900311 hdr->CreditRequest = 0;
Namjae Jeonbde16942021-06-28 15:23:19 +0900312 pr_err("Total credits overflow: %d\n", conn->total_credits);
Namjae Jeone2f34482021-03-16 10:49:09 +0900313 return -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +0900314 }
315
Hyunchul Leebf8acc92021-10-07 16:26:58 +0900316 credit_charge = max_t(unsigned short,
317 le16_to_cpu(req_hdr->CreditCharge), 1);
Namjae Jeon914d7e52021-12-29 23:10:03 +0900318 if (credit_charge > conn->total_credits) {
319 ksmbd_debug(SMB, "Insufficient credits granted, given: %u, granted: %u\n",
320 credit_charge, conn->total_credits);
321 return -EINVAL;
322 }
323
324 conn->total_credits -= credit_charge;
Namjae Jeonb589f5d2021-12-31 09:26:25 +0900325 conn->outstanding_credits -= credit_charge;
Hyunchul Leebf8acc92021-10-07 16:26:58 +0900326 credits_requested = max_t(unsigned short,
327 le16_to_cpu(req_hdr->CreditRequest), 1);
328
329 /* according to smb2.credits smbtorture, Windows server
330 * 2016 or later grant up to 8192 credits at once.
331 *
332 * TODO: Need to adjuct CreditRequest value according to
333 * current cpu load
334 */
Hyunchul Leebf8acc92021-10-07 16:26:58 +0900335 if (hdr->Command == SMB2_NEGOTIATE)
Namjae Jeon914d7e52021-12-29 23:10:03 +0900336 aux_max = 1;
Hyunchul Leebf8acc92021-10-07 16:26:58 +0900337 else
Namjae Jeon004443b2021-12-29 23:08:46 +0900338 aux_max = conn->vals->max_credits - credit_charge;
Namjae Jeon914d7e52021-12-29 23:10:03 +0900339 credits_granted = min_t(unsigned short, credits_requested, aux_max);
Hyunchul Leebf8acc92021-10-07 16:26:58 +0900340
Namjae Jeon004443b2021-12-29 23:08:46 +0900341 if (conn->vals->max_credits - conn->total_credits < credits_granted)
342 credits_granted = conn->vals->max_credits -
Hyunchul Leebf8acc92021-10-07 16:26:58 +0900343 conn->total_credits;
344
Namjae Jeone2f34482021-03-16 10:49:09 +0900345 conn->total_credits += credits_granted;
346 work->credits_granted += credits_granted;
347
348 if (!req_hdr->NextCommand) {
349 /* Update CreditRequest in last request */
350 hdr->CreditRequest = cpu_to_le16(work->credits_granted);
351 }
Namjae Jeone2f34482021-03-16 10:49:09 +0900352 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +0900353 "credits: requested[%d] granted[%d] total_granted[%d]\n",
354 credits_requested, credits_granted,
355 conn->total_credits);
Namjae Jeone2f34482021-03-16 10:49:09 +0900356 return 0;
357}
358
359/**
360 * init_chained_smb2_rsp() - initialize smb2 chained response
361 * @work: smb work containing smb response buffer
362 */
363static void init_chained_smb2_rsp(struct ksmbd_work *work)
364{
Namjae Jeon8a893312021-06-25 13:43:37 +0900365 struct smb2_hdr *req = ksmbd_req_buf_next(work);
366 struct smb2_hdr *rsp = ksmbd_resp_buf_next(work);
Namjae Jeone2f34482021-03-16 10:49:09 +0900367 struct smb2_hdr *rsp_hdr;
368 struct smb2_hdr *rcv_hdr;
369 int next_hdr_offset = 0;
370 int len, new_len;
371
372 /* Len of this response = updated RFC len - offset of previous cmd
373 * in the compound rsp
374 */
375
376 /* Storing the current local FID which may be needed by subsequent
377 * command in the compound request
378 */
379 if (req->Command == SMB2_CREATE && rsp->Status == STATUS_SUCCESS) {
380 work->compound_fid =
381 le64_to_cpu(((struct smb2_create_rsp *)rsp)->
382 VolatileFileId);
383 work->compound_pfid =
384 le64_to_cpu(((struct smb2_create_rsp *)rsp)->
385 PersistentFileId);
386 work->compound_sid = le64_to_cpu(rsp->SessionId);
387 }
388
Namjae Jeone5066492021-03-30 12:35:23 +0900389 len = get_rfc1002_len(work->response_buf) - work->next_smb2_rsp_hdr_off;
Namjae Jeone2f34482021-03-16 10:49:09 +0900390 next_hdr_offset = le32_to_cpu(req->NextCommand);
391
392 new_len = ALIGN(len, 8);
Namjae Jeoncb451722021-11-03 08:08:44 +0900393 inc_rfc1001_len(work->response_buf,
394 sizeof(struct smb2_hdr) + new_len - len);
Namjae Jeone2f34482021-03-16 10:49:09 +0900395 rsp->NextCommand = cpu_to_le32(new_len);
396
397 work->next_smb2_rcv_hdr_off += next_hdr_offset;
398 work->next_smb2_rsp_hdr_off += new_len;
399 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +0900400 "Compound req new_len = %d rcv off = %d rsp off = %d\n",
401 new_len, work->next_smb2_rcv_hdr_off,
402 work->next_smb2_rsp_hdr_off);
Namjae Jeone2f34482021-03-16 10:49:09 +0900403
Namjae Jeon8a893312021-06-25 13:43:37 +0900404 rsp_hdr = ksmbd_resp_buf_next(work);
405 rcv_hdr = ksmbd_req_buf_next(work);
Namjae Jeone2f34482021-03-16 10:49:09 +0900406
407 if (!(rcv_hdr->Flags & SMB2_FLAGS_RELATED_OPERATIONS)) {
408 ksmbd_debug(SMB, "related flag should be set\n");
409 work->compound_fid = KSMBD_NO_FID;
410 work->compound_pfid = KSMBD_NO_FID;
411 }
Namjae Jeoncb451722021-11-03 08:08:44 +0900412 memset((char *)rsp_hdr, 0, sizeof(struct smb2_hdr) + 2);
Namjae Jeon18a015b2021-09-22 21:00:57 +0900413 rsp_hdr->ProtocolId = SMB2_PROTO_NUMBER;
Namjae Jeone2f34482021-03-16 10:49:09 +0900414 rsp_hdr->StructureSize = SMB2_HEADER_STRUCTURE_SIZE;
415 rsp_hdr->Command = rcv_hdr->Command;
416
417 /*
418 * Message is response. We don't grant oplock yet.
419 */
420 rsp_hdr->Flags = (SMB2_FLAGS_SERVER_TO_REDIR |
421 SMB2_FLAGS_RELATED_OPERATIONS);
422 rsp_hdr->NextCommand = 0;
423 rsp_hdr->MessageId = rcv_hdr->MessageId;
424 rsp_hdr->Id.SyncId.ProcessId = rcv_hdr->Id.SyncId.ProcessId;
425 rsp_hdr->Id.SyncId.TreeId = rcv_hdr->Id.SyncId.TreeId;
426 rsp_hdr->SessionId = rcv_hdr->SessionId;
427 memcpy(rsp_hdr->Signature, rcv_hdr->Signature, 16);
428}
429
430/**
431 * is_chained_smb2_message() - check for chained command
432 * @work: smb work containing smb request buffer
433 *
434 * Return: true if chained request, otherwise false
435 */
436bool is_chained_smb2_message(struct ksmbd_work *work)
437{
Namjae Jeoncb451722021-11-03 08:08:44 +0900438 struct smb2_hdr *hdr = smb2_get_msg(work->request_buf);
Namjae Jeond72a9c12021-09-24 09:24:08 +0900439 unsigned int len, next_cmd;
Namjae Jeone2f34482021-03-16 10:49:09 +0900440
441 if (hdr->ProtocolId != SMB2_PROTO_NUMBER)
442 return false;
443
Namjae Jeon8a893312021-06-25 13:43:37 +0900444 hdr = ksmbd_req_buf_next(work);
Namjae Jeond72a9c12021-09-24 09:24:08 +0900445 next_cmd = le32_to_cpu(hdr->NextCommand);
446 if (next_cmd > 0) {
447 if ((u64)work->next_smb2_rcv_hdr_off + next_cmd +
448 __SMB2_HEADER_STRUCTURE_SIZE >
449 get_rfc1002_len(work->request_buf)) {
450 pr_err("next command(%u) offset exceeds smb msg size\n",
451 next_cmd);
452 return false;
453 }
454
Namjae Jeondbad6302021-10-11 19:15:25 +0900455 if ((u64)get_rfc1002_len(work->response_buf) + MAX_CIFS_SMALL_BUFFER_SIZE >
456 work->response_sz) {
457 pr_err("next response offset exceeds response buffer size\n");
458 return false;
459 }
460
Namjae Jeone2f34482021-03-16 10:49:09 +0900461 ksmbd_debug(SMB, "got SMB2 chained command\n");
462 init_chained_smb2_rsp(work);
463 return true;
464 } else if (work->next_smb2_rcv_hdr_off) {
465 /*
466 * This is last request in chained command,
467 * align response to 8 byte
468 */
Namjae Jeone5066492021-03-30 12:35:23 +0900469 len = ALIGN(get_rfc1002_len(work->response_buf), 8);
470 len = len - get_rfc1002_len(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +0900471 if (len) {
472 ksmbd_debug(SMB, "padding len %u\n", len);
Namjae Jeone5066492021-03-30 12:35:23 +0900473 inc_rfc1001_len(work->response_buf, len);
474 if (work->aux_payload_sz)
Namjae Jeone2f34482021-03-16 10:49:09 +0900475 work->aux_payload_sz += len;
476 }
477 }
478 return false;
479}
480
481/**
482 * init_smb2_rsp_hdr() - initialize smb2 response
483 * @work: smb work containing smb request buffer
484 *
485 * Return: 0
486 */
487int init_smb2_rsp_hdr(struct ksmbd_work *work)
488{
Namjae Jeoncb451722021-11-03 08:08:44 +0900489 struct smb2_hdr *rsp_hdr = smb2_get_msg(work->response_buf);
490 struct smb2_hdr *rcv_hdr = smb2_get_msg(work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +0900491 struct ksmbd_conn *conn = work->conn;
492
493 memset(rsp_hdr, 0, sizeof(struct smb2_hdr) + 2);
Namjae Jeoncb451722021-11-03 08:08:44 +0900494 *(__be32 *)work->response_buf =
495 cpu_to_be32(conn->vals->header_size);
Namjae Jeone2f34482021-03-16 10:49:09 +0900496 rsp_hdr->ProtocolId = rcv_hdr->ProtocolId;
497 rsp_hdr->StructureSize = SMB2_HEADER_STRUCTURE_SIZE;
498 rsp_hdr->Command = rcv_hdr->Command;
499
500 /*
501 * Message is response. We don't grant oplock yet.
502 */
503 rsp_hdr->Flags = (SMB2_FLAGS_SERVER_TO_REDIR);
504 rsp_hdr->NextCommand = 0;
505 rsp_hdr->MessageId = rcv_hdr->MessageId;
506 rsp_hdr->Id.SyncId.ProcessId = rcv_hdr->Id.SyncId.ProcessId;
507 rsp_hdr->Id.SyncId.TreeId = rcv_hdr->Id.SyncId.TreeId;
508 rsp_hdr->SessionId = rcv_hdr->SessionId;
509 memcpy(rsp_hdr->Signature, rcv_hdr->Signature, 16);
510
511 work->syncronous = true;
512 if (work->async_id) {
Namjae Jeond40012a2021-04-13 13:06:30 +0900513 ksmbd_release_id(&conn->async_ida, work->async_id);
Namjae Jeone2f34482021-03-16 10:49:09 +0900514 work->async_id = 0;
515 }
516
517 return 0;
518}
519
520/**
521 * smb2_allocate_rsp_buf() - allocate smb2 response buffer
522 * @work: smb work containing smb request buffer
523 *
524 * Return: 0 on success, otherwise -ENOMEM
525 */
526int smb2_allocate_rsp_buf(struct ksmbd_work *work)
527{
Namjae Jeoncb451722021-11-03 08:08:44 +0900528 struct smb2_hdr *hdr = smb2_get_msg(work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +0900529 size_t small_sz = MAX_CIFS_SMALL_BUFFER_SIZE;
Namjae Jeon4bc59472021-10-15 17:14:02 +0900530 size_t large_sz = small_sz + work->conn->vals->max_trans_size;
Namjae Jeone2f34482021-03-16 10:49:09 +0900531 size_t sz = small_sz;
532 int cmd = le16_to_cpu(hdr->Command);
533
Namjae Jeonc30f4eb2021-06-18 10:17:37 +0900534 if (cmd == SMB2_IOCTL_HE || cmd == SMB2_QUERY_DIRECTORY_HE)
Namjae Jeone2f34482021-03-16 10:49:09 +0900535 sz = large_sz;
Namjae Jeone2f34482021-03-16 10:49:09 +0900536
537 if (cmd == SMB2_QUERY_INFO_HE) {
538 struct smb2_query_info_req *req;
539
Namjae Jeoncb451722021-11-03 08:08:44 +0900540 req = smb2_get_msg(work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +0900541 if (req->InfoType == SMB2_O_INFO_FILE &&
Namjae Jeon64b39f42021-03-30 14:25:35 +0900542 (req->FileInfoClass == FILE_FULL_EA_INFORMATION ||
Namjae Jeonc30f4eb2021-06-18 10:17:37 +0900543 req->FileInfoClass == FILE_ALL_INFORMATION))
Namjae Jeone2f34482021-03-16 10:49:09 +0900544 sz = large_sz;
Namjae Jeone2f34482021-03-16 10:49:09 +0900545 }
546
547 /* allocate large response buf for chained commands */
548 if (le32_to_cpu(hdr->NextCommand) > 0)
549 sz = large_sz;
550
Namjae Jeonc30f4eb2021-06-18 10:17:37 +0900551 work->response_buf = kvmalloc(sz, GFP_KERNEL | __GFP_ZERO);
Namjae Jeon63c454f2021-04-20 14:24:28 +0900552 if (!work->response_buf)
Namjae Jeone2f34482021-03-16 10:49:09 +0900553 return -ENOMEM;
Namjae Jeone2f34482021-03-16 10:49:09 +0900554
555 work->response_sz = sz;
556 return 0;
557}
558
559/**
560 * smb2_check_user_session() - check for valid session for a user
561 * @work: smb work containing smb request buffer
562 *
563 * Return: 0 on success, otherwise error
564 */
565int smb2_check_user_session(struct ksmbd_work *work)
566{
Namjae Jeoncb451722021-11-03 08:08:44 +0900567 struct smb2_hdr *req_hdr = smb2_get_msg(work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +0900568 struct ksmbd_conn *conn = work->conn;
569 unsigned int cmd = conn->ops->get_cmd_val(work);
570 unsigned long long sess_id;
571
572 work->sess = NULL;
573 /*
574 * SMB2_ECHO, SMB2_NEGOTIATE, SMB2_SESSION_SETUP command do not
575 * require a session id, so no need to validate user session's for
576 * these commands.
577 */
578 if (cmd == SMB2_ECHO_HE || cmd == SMB2_NEGOTIATE_HE ||
Namjae Jeon64b39f42021-03-30 14:25:35 +0900579 cmd == SMB2_SESSION_SETUP_HE)
Namjae Jeone2f34482021-03-16 10:49:09 +0900580 return 0;
581
582 if (!ksmbd_conn_good(work))
583 return -EINVAL;
584
585 sess_id = le64_to_cpu(req_hdr->SessionId);
586 /* Check for validity of user session */
Namjae Jeonf5a544e2021-06-18 10:04:19 +0900587 work->sess = ksmbd_session_lookup_all(conn, sess_id);
Namjae Jeone2f34482021-03-16 10:49:09 +0900588 if (work->sess)
589 return 1;
590 ksmbd_debug(SMB, "Invalid user session, Uid %llu\n", sess_id);
591 return -EINVAL;
592}
593
Namjae Jeon64b39f42021-03-30 14:25:35 +0900594static void destroy_previous_session(struct ksmbd_user *user, u64 id)
Namjae Jeone2f34482021-03-16 10:49:09 +0900595{
596 struct ksmbd_session *prev_sess = ksmbd_session_lookup_slowpath(id);
597 struct ksmbd_user *prev_user;
598
599 if (!prev_sess)
600 return;
601
602 prev_user = prev_sess->user;
603
Marios Makassikis1fca8032021-05-06 11:41:54 +0900604 if (!prev_user ||
605 strcmp(user->name, prev_user->name) ||
Namjae Jeone2f34482021-03-16 10:49:09 +0900606 user->passkey_sz != prev_user->passkey_sz ||
607 memcmp(user->passkey, prev_user->passkey, user->passkey_sz)) {
608 put_session(prev_sess);
609 return;
610 }
611
612 put_session(prev_sess);
613 ksmbd_session_destroy(prev_sess);
614}
615
616/**
617 * smb2_get_name() - get filename string from on the wire smb format
618 * @src: source buffer
619 * @maxlen: maxlen of source string
Yang Lid4eeb822021-12-21 20:48:57 +0900620 * @local_nls: nls_table pointer
Namjae Jeone2f34482021-03-16 10:49:09 +0900621 *
622 * Return: matching converted filename on success, otherwise error ptr
623 */
624static char *
Marios Makassikis80917f12021-12-01 21:41:19 +0100625smb2_get_name(const char *src, const int maxlen, struct nls_table *local_nls)
Namjae Jeone2f34482021-03-16 10:49:09 +0900626{
Hyunchul Lee265fd192021-09-25 00:06:16 +0900627 char *name;
Namjae Jeone2f34482021-03-16 10:49:09 +0900628
Namjae Jeon64b39f42021-03-30 14:25:35 +0900629 name = smb_strndup_from_utf16(src, maxlen, 1, local_nls);
Namjae Jeone2f34482021-03-16 10:49:09 +0900630 if (IS_ERR(name)) {
Namjae Jeonbde16942021-06-28 15:23:19 +0900631 pr_err("failed to get name %ld\n", PTR_ERR(name));
Namjae Jeone2f34482021-03-16 10:49:09 +0900632 return name;
633 }
634
Hyunchul Lee265fd192021-09-25 00:06:16 +0900635 ksmbd_conv_path_to_unix(name);
636 ksmbd_strip_last_slash(name);
637 return name;
Namjae Jeone2f34482021-03-16 10:49:09 +0900638}
639
Namjae Jeone2f34482021-03-16 10:49:09 +0900640int setup_async_work(struct ksmbd_work *work, void (*fn)(void **), void **arg)
641{
642 struct smb2_hdr *rsp_hdr;
643 struct ksmbd_conn *conn = work->conn;
644 int id;
645
Namjae Jeoncb451722021-11-03 08:08:44 +0900646 rsp_hdr = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +0900647 rsp_hdr->Flags |= SMB2_FLAGS_ASYNC_COMMAND;
648
Namjae Jeond40012a2021-04-13 13:06:30 +0900649 id = ksmbd_acquire_async_msg_id(&conn->async_ida);
Namjae Jeone2f34482021-03-16 10:49:09 +0900650 if (id < 0) {
Namjae Jeonbde16942021-06-28 15:23:19 +0900651 pr_err("Failed to alloc async message id\n");
Namjae Jeone2f34482021-03-16 10:49:09 +0900652 return id;
653 }
654 work->syncronous = false;
655 work->async_id = id;
656 rsp_hdr->Id.AsyncId = cpu_to_le64(id);
657
658 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +0900659 "Send interim Response to inform async request id : %d\n",
660 work->async_id);
Namjae Jeone2f34482021-03-16 10:49:09 +0900661
662 work->cancel_fn = fn;
663 work->cancel_argv = arg;
664
Namjae Jeon6c4e6752021-06-07 09:08:45 +0900665 if (list_empty(&work->async_request_entry)) {
666 spin_lock(&conn->request_lock);
667 list_add_tail(&work->async_request_entry, &conn->async_requests);
668 spin_unlock(&conn->request_lock);
669 }
Namjae Jeone2f34482021-03-16 10:49:09 +0900670
671 return 0;
672}
673
674void smb2_send_interim_resp(struct ksmbd_work *work, __le32 status)
675{
676 struct smb2_hdr *rsp_hdr;
677
Namjae Jeoncb451722021-11-03 08:08:44 +0900678 rsp_hdr = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +0900679 smb2_set_err_rsp(work);
680 rsp_hdr->Status = status;
681
682 work->multiRsp = 1;
683 ksmbd_conn_write(work);
684 rsp_hdr->Status = 0;
685 work->multiRsp = 0;
686}
687
688static __le32 smb2_get_reparse_tag_special_file(umode_t mode)
689{
690 if (S_ISDIR(mode) || S_ISREG(mode))
691 return 0;
692
693 if (S_ISLNK(mode))
694 return IO_REPARSE_TAG_LX_SYMLINK_LE;
695 else if (S_ISFIFO(mode))
696 return IO_REPARSE_TAG_LX_FIFO_LE;
697 else if (S_ISSOCK(mode))
698 return IO_REPARSE_TAG_AF_UNIX_LE;
699 else if (S_ISCHR(mode))
700 return IO_REPARSE_TAG_LX_CHR_LE;
701 else if (S_ISBLK(mode))
702 return IO_REPARSE_TAG_LX_BLK_LE;
703
704 return 0;
705}
706
707/**
708 * smb2_get_dos_mode() - get file mode in dos format from unix mode
709 * @stat: kstat containing file mode
Hyunchul Lee95fa1ce2021-03-21 17:05:56 +0900710 * @attribute: attribute flags
Namjae Jeone2f34482021-03-16 10:49:09 +0900711 *
712 * Return: converted dos mode
713 */
714static int smb2_get_dos_mode(struct kstat *stat, int attribute)
715{
716 int attr = 0;
717
Namjae Jeon64b39f42021-03-30 14:25:35 +0900718 if (S_ISDIR(stat->mode)) {
Ronnie Sahlberg26a27872021-11-03 08:45:52 +0900719 attr = FILE_ATTRIBUTE_DIRECTORY |
720 (attribute & (FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM));
Namjae Jeon64b39f42021-03-30 14:25:35 +0900721 } else {
Ronnie Sahlberg26a27872021-11-03 08:45:52 +0900722 attr = (attribute & 0x00005137) | FILE_ATTRIBUTE_ARCHIVE;
723 attr &= ~(FILE_ATTRIBUTE_DIRECTORY);
Namjae Jeone2f34482021-03-16 10:49:09 +0900724 if (S_ISREG(stat->mode) && (server_conf.share_fake_fscaps &
725 FILE_SUPPORTS_SPARSE_FILES))
Ronnie Sahlberg26a27872021-11-03 08:45:52 +0900726 attr |= FILE_ATTRIBUTE_SPARSE_FILE;
Namjae Jeone2f34482021-03-16 10:49:09 +0900727
728 if (smb2_get_reparse_tag_special_file(stat->mode))
Ronnie Sahlberg26a27872021-11-03 08:45:52 +0900729 attr |= FILE_ATTRIBUTE_REPARSE_POINT;
Namjae Jeone2f34482021-03-16 10:49:09 +0900730 }
731
732 return attr;
733}
734
735static void build_preauth_ctxt(struct smb2_preauth_neg_context *pneg_ctxt,
Namjae Jeon070fb212021-05-26 17:57:12 +0900736 __le16 hash_id)
Namjae Jeone2f34482021-03-16 10:49:09 +0900737{
738 pneg_ctxt->ContextType = SMB2_PREAUTH_INTEGRITY_CAPABILITIES;
739 pneg_ctxt->DataLength = cpu_to_le16(38);
740 pneg_ctxt->HashAlgorithmCount = cpu_to_le16(1);
741 pneg_ctxt->Reserved = cpu_to_le32(0);
742 pneg_ctxt->SaltLength = cpu_to_le16(SMB311_SALT_SIZE);
743 get_random_bytes(pneg_ctxt->Salt, SMB311_SALT_SIZE);
744 pneg_ctxt->HashAlgorithms = hash_id;
745}
746
747static void build_encrypt_ctxt(struct smb2_encryption_neg_context *pneg_ctxt,
Namjae Jeon070fb212021-05-26 17:57:12 +0900748 __le16 cipher_type)
Namjae Jeone2f34482021-03-16 10:49:09 +0900749{
750 pneg_ctxt->ContextType = SMB2_ENCRYPTION_CAPABILITIES;
751 pneg_ctxt->DataLength = cpu_to_le16(4);
752 pneg_ctxt->Reserved = cpu_to_le32(0);
753 pneg_ctxt->CipherCount = cpu_to_le16(1);
754 pneg_ctxt->Ciphers[0] = cipher_type;
755}
756
Ronnie Sahlbergd6c9ad23b2021-11-03 08:44:38 +0900757static void build_compression_ctxt(struct smb2_compression_capabilities_context *pneg_ctxt,
Namjae Jeon070fb212021-05-26 17:57:12 +0900758 __le16 comp_algo)
Namjae Jeone2f34482021-03-16 10:49:09 +0900759{
760 pneg_ctxt->ContextType = SMB2_COMPRESSION_CAPABILITIES;
761 pneg_ctxt->DataLength =
Ronnie Sahlbergd6c9ad23b2021-11-03 08:44:38 +0900762 cpu_to_le16(sizeof(struct smb2_compression_capabilities_context)
Namjae Jeone2f34482021-03-16 10:49:09 +0900763 - sizeof(struct smb2_neg_context));
764 pneg_ctxt->Reserved = cpu_to_le32(0);
765 pneg_ctxt->CompressionAlgorithmCount = cpu_to_le16(1);
Ronnie Sahlbergd6c9ad23b2021-11-03 08:44:38 +0900766 pneg_ctxt->Flags = cpu_to_le32(0);
Namjae Jeone2f34482021-03-16 10:49:09 +0900767 pneg_ctxt->CompressionAlgorithms[0] = comp_algo;
768}
769
Namjae Jeon378087c2021-07-21 10:05:53 +0900770static void build_sign_cap_ctxt(struct smb2_signing_capabilities *pneg_ctxt,
771 __le16 sign_algo)
772{
773 pneg_ctxt->ContextType = SMB2_SIGNING_CAPABILITIES;
774 pneg_ctxt->DataLength =
775 cpu_to_le16((sizeof(struct smb2_signing_capabilities) + 2)
776 - sizeof(struct smb2_neg_context));
777 pneg_ctxt->Reserved = cpu_to_le32(0);
778 pneg_ctxt->SigningAlgorithmCount = cpu_to_le16(1);
779 pneg_ctxt->SigningAlgorithms[0] = sign_algo;
780}
781
Namjae Jeon64b39f42021-03-30 14:25:35 +0900782static void build_posix_ctxt(struct smb2_posix_neg_context *pneg_ctxt)
Namjae Jeone2f34482021-03-16 10:49:09 +0900783{
784 pneg_ctxt->ContextType = SMB2_POSIX_EXTENSIONS_AVAILABLE;
785 pneg_ctxt->DataLength = cpu_to_le16(POSIX_CTXT_DATA_LEN);
786 /* SMB2_CREATE_TAG_POSIX is "0x93AD25509CB411E7B42383DE968BCD7C" */
787 pneg_ctxt->Name[0] = 0x93;
788 pneg_ctxt->Name[1] = 0xAD;
789 pneg_ctxt->Name[2] = 0x25;
790 pneg_ctxt->Name[3] = 0x50;
791 pneg_ctxt->Name[4] = 0x9C;
792 pneg_ctxt->Name[5] = 0xB4;
793 pneg_ctxt->Name[6] = 0x11;
794 pneg_ctxt->Name[7] = 0xE7;
795 pneg_ctxt->Name[8] = 0xB4;
796 pneg_ctxt->Name[9] = 0x23;
797 pneg_ctxt->Name[10] = 0x83;
798 pneg_ctxt->Name[11] = 0xDE;
799 pneg_ctxt->Name[12] = 0x96;
800 pneg_ctxt->Name[13] = 0x8B;
801 pneg_ctxt->Name[14] = 0xCD;
802 pneg_ctxt->Name[15] = 0x7C;
803}
804
Namjae Jeon64b39f42021-03-30 14:25:35 +0900805static void assemble_neg_contexts(struct ksmbd_conn *conn,
Namjae Jeoncb451722021-11-03 08:08:44 +0900806 struct smb2_negotiate_rsp *rsp,
807 void *smb2_buf_len)
Namjae Jeone2f34482021-03-16 10:49:09 +0900808{
Namjae Jeone2f34482021-03-16 10:49:09 +0900809 char *pneg_ctxt = (char *)rsp +
Namjae Jeoncb451722021-11-03 08:08:44 +0900810 le32_to_cpu(rsp->NegotiateContextOffset);
Namjae Jeone2f34482021-03-16 10:49:09 +0900811 int neg_ctxt_cnt = 1;
812 int ctxt_size;
813
814 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +0900815 "assemble SMB2_PREAUTH_INTEGRITY_CAPABILITIES context\n");
Namjae Jeone2f34482021-03-16 10:49:09 +0900816 build_preauth_ctxt((struct smb2_preauth_neg_context *)pneg_ctxt,
Namjae Jeon070fb212021-05-26 17:57:12 +0900817 conn->preauth_info->Preauth_HashId);
Namjae Jeone2f34482021-03-16 10:49:09 +0900818 rsp->NegotiateContextCount = cpu_to_le16(neg_ctxt_cnt);
Namjae Jeoncb451722021-11-03 08:08:44 +0900819 inc_rfc1001_len(smb2_buf_len, AUTH_GSS_PADDING);
Namjae Jeone2f34482021-03-16 10:49:09 +0900820 ctxt_size = sizeof(struct smb2_preauth_neg_context);
821 /* Round to 8 byte boundary */
822 pneg_ctxt += round_up(sizeof(struct smb2_preauth_neg_context), 8);
823
824 if (conn->cipher_type) {
825 ctxt_size = round_up(ctxt_size, 8);
826 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +0900827 "assemble SMB2_ENCRYPTION_CAPABILITIES context\n");
Namjae Jeon64b39f42021-03-30 14:25:35 +0900828 build_encrypt_ctxt((struct smb2_encryption_neg_context *)pneg_ctxt,
Namjae Jeon070fb212021-05-26 17:57:12 +0900829 conn->cipher_type);
Namjae Jeone2f34482021-03-16 10:49:09 +0900830 rsp->NegotiateContextCount = cpu_to_le16(++neg_ctxt_cnt);
Namjae Jeonaf320a72021-07-21 10:03:19 +0900831 ctxt_size += sizeof(struct smb2_encryption_neg_context) + 2;
Namjae Jeone2f34482021-03-16 10:49:09 +0900832 /* Round to 8 byte boundary */
833 pneg_ctxt +=
Namjae Jeonaf320a72021-07-21 10:03:19 +0900834 round_up(sizeof(struct smb2_encryption_neg_context) + 2,
Namjae Jeone2f34482021-03-16 10:49:09 +0900835 8);
836 }
837
838 if (conn->compress_algorithm) {
839 ctxt_size = round_up(ctxt_size, 8);
840 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +0900841 "assemble SMB2_COMPRESSION_CAPABILITIES context\n");
Namjae Jeone2f34482021-03-16 10:49:09 +0900842 /* Temporarily set to SMB3_COMPRESS_NONE */
Ronnie Sahlbergd6c9ad23b2021-11-03 08:44:38 +0900843 build_compression_ctxt((struct smb2_compression_capabilities_context *)pneg_ctxt,
Namjae Jeon070fb212021-05-26 17:57:12 +0900844 conn->compress_algorithm);
Namjae Jeone2f34482021-03-16 10:49:09 +0900845 rsp->NegotiateContextCount = cpu_to_le16(++neg_ctxt_cnt);
Ronnie Sahlbergd6c9ad23b2021-11-03 08:44:38 +0900846 ctxt_size += sizeof(struct smb2_compression_capabilities_context) + 2;
Namjae Jeone2f34482021-03-16 10:49:09 +0900847 /* Round to 8 byte boundary */
Ronnie Sahlbergd6c9ad23b2021-11-03 08:44:38 +0900848 pneg_ctxt += round_up(sizeof(struct smb2_compression_capabilities_context) + 2,
Namjae Jeonaf320a72021-07-21 10:03:19 +0900849 8);
Namjae Jeone2f34482021-03-16 10:49:09 +0900850 }
851
852 if (conn->posix_ext_supported) {
853 ctxt_size = round_up(ctxt_size, 8);
854 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +0900855 "assemble SMB2_POSIX_EXTENSIONS_AVAILABLE context\n");
Namjae Jeone2f34482021-03-16 10:49:09 +0900856 build_posix_ctxt((struct smb2_posix_neg_context *)pneg_ctxt);
857 rsp->NegotiateContextCount = cpu_to_le16(++neg_ctxt_cnt);
858 ctxt_size += sizeof(struct smb2_posix_neg_context);
Namjae Jeon378087c2021-07-21 10:05:53 +0900859 /* Round to 8 byte boundary */
860 pneg_ctxt += round_up(sizeof(struct smb2_posix_neg_context), 8);
861 }
862
863 if (conn->signing_negotiated) {
864 ctxt_size = round_up(ctxt_size, 8);
865 ksmbd_debug(SMB,
866 "assemble SMB2_SIGNING_CAPABILITIES context\n");
867 build_sign_cap_ctxt((struct smb2_signing_capabilities *)pneg_ctxt,
868 conn->signing_algorithm);
869 rsp->NegotiateContextCount = cpu_to_le16(++neg_ctxt_cnt);
870 ctxt_size += sizeof(struct smb2_signing_capabilities) + 2;
Namjae Jeone2f34482021-03-16 10:49:09 +0900871 }
872
Namjae Jeoncb451722021-11-03 08:08:44 +0900873 inc_rfc1001_len(smb2_buf_len, ctxt_size);
Namjae Jeone2f34482021-03-16 10:49:09 +0900874}
875
Namjae Jeon64b39f42021-03-30 14:25:35 +0900876static __le32 decode_preauth_ctxt(struct ksmbd_conn *conn,
Namjae Jeon070fb212021-05-26 17:57:12 +0900877 struct smb2_preauth_neg_context *pneg_ctxt)
Namjae Jeone2f34482021-03-16 10:49:09 +0900878{
879 __le32 err = STATUS_NO_PREAUTH_INTEGRITY_HASH_OVERLAP;
880
Namjae Jeon070fb212021-05-26 17:57:12 +0900881 if (pneg_ctxt->HashAlgorithms == SMB2_PREAUTH_INTEGRITY_SHA512) {
Namjae Jeone2f34482021-03-16 10:49:09 +0900882 conn->preauth_info->Preauth_HashId =
883 SMB2_PREAUTH_INTEGRITY_SHA512;
884 err = STATUS_SUCCESS;
885 }
886
887 return err;
888}
889
Namjae Jeonaf320a72021-07-21 10:03:19 +0900890static void decode_encrypt_ctxt(struct ksmbd_conn *conn,
891 struct smb2_encryption_neg_context *pneg_ctxt,
892 int len_of_ctxts)
Namjae Jeone2f34482021-03-16 10:49:09 +0900893{
Namjae Jeone2f34482021-03-16 10:49:09 +0900894 int cph_cnt = le16_to_cpu(pneg_ctxt->CipherCount);
Namjae Jeonaf320a72021-07-21 10:03:19 +0900895 int i, cphs_size = cph_cnt * sizeof(__le16);
Namjae Jeone2f34482021-03-16 10:49:09 +0900896
897 conn->cipher_type = 0;
898
Namjae Jeonaf320a72021-07-21 10:03:19 +0900899 if (sizeof(struct smb2_encryption_neg_context) + cphs_size >
900 len_of_ctxts) {
901 pr_err("Invalid cipher count(%d)\n", cph_cnt);
902 return;
903 }
904
Namjae Jeone2f34482021-03-16 10:49:09 +0900905 if (!(server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_ENCRYPTION))
Namjae Jeonaf320a72021-07-21 10:03:19 +0900906 return;
Namjae Jeone2f34482021-03-16 10:49:09 +0900907
908 for (i = 0; i < cph_cnt; i++) {
909 if (pneg_ctxt->Ciphers[i] == SMB2_ENCRYPTION_AES128_GCM ||
Namjae Jeon5a0ca772021-05-06 11:43:37 +0900910 pneg_ctxt->Ciphers[i] == SMB2_ENCRYPTION_AES128_CCM ||
911 pneg_ctxt->Ciphers[i] == SMB2_ENCRYPTION_AES256_CCM ||
912 pneg_ctxt->Ciphers[i] == SMB2_ENCRYPTION_AES256_GCM) {
Namjae Jeone2f34482021-03-16 10:49:09 +0900913 ksmbd_debug(SMB, "Cipher ID = 0x%x\n",
Namjae Jeon070fb212021-05-26 17:57:12 +0900914 pneg_ctxt->Ciphers[i]);
Namjae Jeone2f34482021-03-16 10:49:09 +0900915 conn->cipher_type = pneg_ctxt->Ciphers[i];
916 break;
917 }
918 }
Namjae Jeone2f34482021-03-16 10:49:09 +0900919}
920
Marcos Del Sol Vives83912d62021-12-16 11:37:22 +0100921/**
922 * smb3_encryption_negotiated() - checks if server and client agreed on enabling encryption
923 * @conn: smb connection
924 *
925 * Return: true if connection should be encrypted, else false
926 */
927static bool smb3_encryption_negotiated(struct ksmbd_conn *conn)
928{
929 if (!conn->ops->generate_encryptionkey)
930 return false;
931
932 /*
933 * SMB 3.0 and 3.0.2 dialects use the SMB2_GLOBAL_CAP_ENCRYPTION flag.
934 * SMB 3.1.1 uses the cipher_type field.
935 */
936 return (conn->vals->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION) ||
937 conn->cipher_type;
938}
939
Namjae Jeonaf320a72021-07-21 10:03:19 +0900940static void decode_compress_ctxt(struct ksmbd_conn *conn,
Ronnie Sahlbergd6c9ad23b2021-11-03 08:44:38 +0900941 struct smb2_compression_capabilities_context *pneg_ctxt)
Namjae Jeone2f34482021-03-16 10:49:09 +0900942{
Namjae Jeone2f34482021-03-16 10:49:09 +0900943 conn->compress_algorithm = SMB3_COMPRESS_NONE;
Namjae Jeone2f34482021-03-16 10:49:09 +0900944}
945
Namjae Jeon378087c2021-07-21 10:05:53 +0900946static void decode_sign_cap_ctxt(struct ksmbd_conn *conn,
947 struct smb2_signing_capabilities *pneg_ctxt,
948 int len_of_ctxts)
949{
950 int sign_algo_cnt = le16_to_cpu(pneg_ctxt->SigningAlgorithmCount);
951 int i, sign_alos_size = sign_algo_cnt * sizeof(__le16);
952
953 conn->signing_negotiated = false;
954
955 if (sizeof(struct smb2_signing_capabilities) + sign_alos_size >
956 len_of_ctxts) {
957 pr_err("Invalid signing algorithm count(%d)\n", sign_algo_cnt);
958 return;
959 }
960
961 for (i = 0; i < sign_algo_cnt; i++) {
Ronnie Sahlbergd6c9ad23b2021-11-03 08:44:38 +0900962 if (pneg_ctxt->SigningAlgorithms[i] == SIGNING_ALG_HMAC_SHA256_LE ||
963 pneg_ctxt->SigningAlgorithms[i] == SIGNING_ALG_AES_CMAC_LE) {
Namjae Jeon378087c2021-07-21 10:05:53 +0900964 ksmbd_debug(SMB, "Signing Algorithm ID = 0x%x\n",
965 pneg_ctxt->SigningAlgorithms[i]);
966 conn->signing_negotiated = true;
967 conn->signing_algorithm =
968 pneg_ctxt->SigningAlgorithms[i];
969 break;
970 }
971 }
972}
973
Namjae Jeone2f34482021-03-16 10:49:09 +0900974static __le32 deassemble_neg_contexts(struct ksmbd_conn *conn,
Namjae Jeoncb451722021-11-03 08:08:44 +0900975 struct smb2_negotiate_req *req,
976 int len_of_smb)
Namjae Jeone2f34482021-03-16 10:49:09 +0900977{
Namjae Jeone2f34482021-03-16 10:49:09 +0900978 /* +4 is to account for the RFC1001 len field */
Namjae Jeoncb451722021-11-03 08:08:44 +0900979 struct smb2_neg_context *pctx = (struct smb2_neg_context *)req;
Namjae Jeonaf320a72021-07-21 10:03:19 +0900980 int i = 0, len_of_ctxts;
981 int offset = le32_to_cpu(req->NegotiateContextOffset);
Namjae Jeone2f34482021-03-16 10:49:09 +0900982 int neg_ctxt_cnt = le16_to_cpu(req->NegotiateContextCount);
Namjae Jeonaf320a72021-07-21 10:03:19 +0900983 __le32 status = STATUS_INVALID_PARAMETER;
Namjae Jeone2f34482021-03-16 10:49:09 +0900984
Namjae Jeonaf320a72021-07-21 10:03:19 +0900985 ksmbd_debug(SMB, "decoding %d negotiate contexts\n", neg_ctxt_cnt);
986 if (len_of_smb <= offset) {
987 ksmbd_debug(SMB, "Invalid response: negotiate context offset\n");
988 return status;
989 }
990
991 len_of_ctxts = len_of_smb - offset;
992
Namjae Jeone2f34482021-03-16 10:49:09 +0900993 while (i++ < neg_ctxt_cnt) {
Namjae Jeonaf320a72021-07-21 10:03:19 +0900994 int clen;
995
996 /* check that offset is not beyond end of SMB */
997 if (len_of_ctxts == 0)
998 break;
999
1000 if (len_of_ctxts < sizeof(struct smb2_neg_context))
1001 break;
1002
1003 pctx = (struct smb2_neg_context *)((char *)pctx + offset);
1004 clen = le16_to_cpu(pctx->DataLength);
1005 if (clen + sizeof(struct smb2_neg_context) > len_of_ctxts)
1006 break;
1007
1008 if (pctx->ContextType == SMB2_PREAUTH_INTEGRITY_CAPABILITIES) {
Namjae Jeone2f34482021-03-16 10:49:09 +09001009 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09001010 "deassemble SMB2_PREAUTH_INTEGRITY_CAPABILITIES context\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09001011 if (conn->preauth_info->Preauth_HashId)
1012 break;
1013
1014 status = decode_preauth_ctxt(conn,
Namjae Jeonaf320a72021-07-21 10:03:19 +09001015 (struct smb2_preauth_neg_context *)pctx);
1016 if (status != STATUS_SUCCESS)
1017 break;
1018 } else if (pctx->ContextType == SMB2_ENCRYPTION_CAPABILITIES) {
Namjae Jeone2f34482021-03-16 10:49:09 +09001019 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09001020 "deassemble SMB2_ENCRYPTION_CAPABILITIES context\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09001021 if (conn->cipher_type)
1022 break;
1023
Namjae Jeonaf320a72021-07-21 10:03:19 +09001024 decode_encrypt_ctxt(conn,
1025 (struct smb2_encryption_neg_context *)pctx,
1026 len_of_ctxts);
1027 } else if (pctx->ContextType == SMB2_COMPRESSION_CAPABILITIES) {
Namjae Jeone2f34482021-03-16 10:49:09 +09001028 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09001029 "deassemble SMB2_COMPRESSION_CAPABILITIES context\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09001030 if (conn->compress_algorithm)
1031 break;
1032
Namjae Jeonaf320a72021-07-21 10:03:19 +09001033 decode_compress_ctxt(conn,
Ronnie Sahlbergd6c9ad23b2021-11-03 08:44:38 +09001034 (struct smb2_compression_capabilities_context *)pctx);
Namjae Jeonaf320a72021-07-21 10:03:19 +09001035 } else if (pctx->ContextType == SMB2_NETNAME_NEGOTIATE_CONTEXT_ID) {
Namjae Jeone2f34482021-03-16 10:49:09 +09001036 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09001037 "deassemble SMB2_NETNAME_NEGOTIATE_CONTEXT_ID context\n");
Namjae Jeonaf320a72021-07-21 10:03:19 +09001038 } else if (pctx->ContextType == SMB2_POSIX_EXTENSIONS_AVAILABLE) {
Namjae Jeone2f34482021-03-16 10:49:09 +09001039 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09001040 "deassemble SMB2_POSIX_EXTENSIONS_AVAILABLE context\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09001041 conn->posix_ext_supported = true;
Namjae Jeon378087c2021-07-21 10:05:53 +09001042 } else if (pctx->ContextType == SMB2_SIGNING_CAPABILITIES) {
1043 ksmbd_debug(SMB,
1044 "deassemble SMB2_SIGNING_CAPABILITIES context\n");
1045 decode_sign_cap_ctxt(conn,
1046 (struct smb2_signing_capabilities *)pctx,
1047 len_of_ctxts);
Namjae Jeone2f34482021-03-16 10:49:09 +09001048 }
Namjae Jeone2f34482021-03-16 10:49:09 +09001049
Namjae Jeonaf320a72021-07-21 10:03:19 +09001050 /* offsets must be 8 byte aligned */
1051 clen = (clen + 7) & ~0x7;
1052 offset = clen + sizeof(struct smb2_neg_context);
1053 len_of_ctxts -= clen + sizeof(struct smb2_neg_context);
Namjae Jeone2f34482021-03-16 10:49:09 +09001054 }
1055 return status;
1056}
1057
1058/**
1059 * smb2_handle_negotiate() - handler for smb2 negotiate command
1060 * @work: smb work containing smb request buffer
1061 *
1062 * Return: 0
1063 */
1064int smb2_handle_negotiate(struct ksmbd_work *work)
1065{
1066 struct ksmbd_conn *conn = work->conn;
Namjae Jeoncb451722021-11-03 08:08:44 +09001067 struct smb2_negotiate_req *req = smb2_get_msg(work->request_buf);
1068 struct smb2_negotiate_rsp *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09001069 int rc = 0;
Namjae Jeon442ff9e2021-09-29 15:44:32 +09001070 unsigned int smb2_buf_len, smb2_neg_size;
Namjae Jeone2f34482021-03-16 10:49:09 +09001071 __le32 status;
1072
1073 ksmbd_debug(SMB, "Received negotiate request\n");
1074 conn->need_neg = false;
1075 if (ksmbd_conn_good(work)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09001076 pr_err("conn->tcp_status is already in CifsGood State\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09001077 work->send_no_response = 1;
1078 return rc;
1079 }
1080
1081 if (req->DialectCount == 0) {
Namjae Jeonbde16942021-06-28 15:23:19 +09001082 pr_err("malformed packet\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09001083 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
1084 rc = -EINVAL;
1085 goto err_out;
1086 }
1087
Namjae Jeon442ff9e2021-09-29 15:44:32 +09001088 smb2_buf_len = get_rfc1002_len(work->request_buf);
Namjae Jeoncb451722021-11-03 08:08:44 +09001089 smb2_neg_size = offsetof(struct smb2_negotiate_req, Dialects);
Namjae Jeon442ff9e2021-09-29 15:44:32 +09001090 if (smb2_neg_size > smb2_buf_len) {
1091 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
1092 rc = -EINVAL;
1093 goto err_out;
1094 }
1095
1096 if (conn->dialect == SMB311_PROT_ID) {
1097 unsigned int nego_ctxt_off = le32_to_cpu(req->NegotiateContextOffset);
1098
1099 if (smb2_buf_len < nego_ctxt_off) {
1100 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
1101 rc = -EINVAL;
1102 goto err_out;
1103 }
1104
1105 if (smb2_neg_size > nego_ctxt_off) {
1106 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
1107 rc = -EINVAL;
1108 goto err_out;
1109 }
1110
1111 if (smb2_neg_size + le16_to_cpu(req->DialectCount) * sizeof(__le16) >
1112 nego_ctxt_off) {
1113 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
1114 rc = -EINVAL;
1115 goto err_out;
1116 }
1117 } else {
1118 if (smb2_neg_size + le16_to_cpu(req->DialectCount) * sizeof(__le16) >
1119 smb2_buf_len) {
1120 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
1121 rc = -EINVAL;
1122 goto err_out;
1123 }
1124 }
1125
Namjae Jeone2f34482021-03-16 10:49:09 +09001126 conn->cli_cap = le32_to_cpu(req->Capabilities);
1127 switch (conn->dialect) {
1128 case SMB311_PROT_ID:
1129 conn->preauth_info =
1130 kzalloc(sizeof(struct preauth_integrity_info),
Namjae Jeon070fb212021-05-26 17:57:12 +09001131 GFP_KERNEL);
Namjae Jeone2f34482021-03-16 10:49:09 +09001132 if (!conn->preauth_info) {
1133 rc = -ENOMEM;
1134 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
1135 goto err_out;
1136 }
1137
Namjae Jeoncb451722021-11-03 08:08:44 +09001138 status = deassemble_neg_contexts(conn, req,
1139 get_rfc1002_len(work->request_buf));
Namjae Jeone2f34482021-03-16 10:49:09 +09001140 if (status != STATUS_SUCCESS) {
Namjae Jeonbde16942021-06-28 15:23:19 +09001141 pr_err("deassemble_neg_contexts error(0x%x)\n",
1142 status);
Namjae Jeone2f34482021-03-16 10:49:09 +09001143 rsp->hdr.Status = status;
1144 rc = -EINVAL;
1145 goto err_out;
1146 }
1147
1148 rc = init_smb3_11_server(conn);
1149 if (rc < 0) {
1150 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
1151 goto err_out;
1152 }
1153
1154 ksmbd_gen_preauth_integrity_hash(conn,
Namjae Jeon070fb212021-05-26 17:57:12 +09001155 work->request_buf,
1156 conn->preauth_info->Preauth_HashValue);
Namjae Jeone2f34482021-03-16 10:49:09 +09001157 rsp->NegotiateContextOffset =
1158 cpu_to_le32(OFFSET_OF_NEG_CONTEXT);
Namjae Jeoncb451722021-11-03 08:08:44 +09001159 assemble_neg_contexts(conn, rsp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09001160 break;
1161 case SMB302_PROT_ID:
1162 init_smb3_02_server(conn);
1163 break;
1164 case SMB30_PROT_ID:
1165 init_smb3_0_server(conn);
1166 break;
1167 case SMB21_PROT_ID:
1168 init_smb2_1_server(conn);
1169 break;
Namjae Jeone2f34482021-03-16 10:49:09 +09001170 case SMB2X_PROT_ID:
1171 case BAD_PROT_ID:
1172 default:
1173 ksmbd_debug(SMB, "Server dialect :0x%x not supported\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09001174 conn->dialect);
Namjae Jeone2f34482021-03-16 10:49:09 +09001175 rsp->hdr.Status = STATUS_NOT_SUPPORTED;
1176 rc = -EINVAL;
1177 goto err_out;
1178 }
1179 rsp->Capabilities = cpu_to_le32(conn->vals->capabilities);
1180
1181 /* For stats */
1182 conn->connection_type = conn->dialect;
1183
1184 rsp->MaxTransactSize = cpu_to_le32(conn->vals->max_trans_size);
1185 rsp->MaxReadSize = cpu_to_le32(conn->vals->max_read_size);
1186 rsp->MaxWriteSize = cpu_to_le32(conn->vals->max_write_size);
1187
Namjae Jeon51a13872021-09-29 13:09:24 +09001188 memcpy(conn->ClientGUID, req->ClientGUID,
1189 SMB2_CLIENT_GUID_SIZE);
1190 conn->cli_sec_mode = le16_to_cpu(req->SecurityMode);
Namjae Jeone2f34482021-03-16 10:49:09 +09001191
1192 rsp->StructureSize = cpu_to_le16(65);
1193 rsp->DialectRevision = cpu_to_le16(conn->dialect);
1194 /* Not setting conn guid rsp->ServerGUID, as it
1195 * not used by client for identifying server
1196 */
1197 memset(rsp->ServerGUID, 0, SMB2_CLIENT_GUID_SIZE);
1198
1199 rsp->SystemTime = cpu_to_le64(ksmbd_systime());
1200 rsp->ServerStartTime = 0;
1201 ksmbd_debug(SMB, "negotiate context offset %d, count %d\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09001202 le32_to_cpu(rsp->NegotiateContextOffset),
1203 le16_to_cpu(rsp->NegotiateContextCount));
Namjae Jeone2f34482021-03-16 10:49:09 +09001204
1205 rsp->SecurityBufferOffset = cpu_to_le16(128);
1206 rsp->SecurityBufferLength = cpu_to_le16(AUTH_GSS_LENGTH);
Namjae Jeoncb451722021-11-03 08:08:44 +09001207 ksmbd_copy_gss_neg_header((char *)(&rsp->hdr) +
1208 le16_to_cpu(rsp->SecurityBufferOffset));
1209 inc_rfc1001_len(work->response_buf, sizeof(struct smb2_negotiate_rsp) -
Namjae Jeon070fb212021-05-26 17:57:12 +09001210 sizeof(struct smb2_hdr) - sizeof(rsp->Buffer) +
1211 AUTH_GSS_LENGTH);
Namjae Jeone2f34482021-03-16 10:49:09 +09001212 rsp->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED_LE;
1213 conn->use_spnego = true;
1214
1215 if ((server_conf.signing == KSMBD_CONFIG_OPT_AUTO ||
Namjae Jeon64b39f42021-03-30 14:25:35 +09001216 server_conf.signing == KSMBD_CONFIG_OPT_DISABLED) &&
1217 req->SecurityMode & SMB2_NEGOTIATE_SIGNING_REQUIRED_LE)
Namjae Jeone2f34482021-03-16 10:49:09 +09001218 conn->sign = true;
1219 else if (server_conf.signing == KSMBD_CONFIG_OPT_MANDATORY) {
1220 server_conf.enforced_signing = true;
1221 rsp->SecurityMode |= SMB2_NEGOTIATE_SIGNING_REQUIRED_LE;
1222 conn->sign = true;
1223 }
1224
1225 conn->srv_sec_mode = le16_to_cpu(rsp->SecurityMode);
1226 ksmbd_conn_set_need_negotiate(work);
1227
1228err_out:
1229 if (rc < 0)
1230 smb2_set_err_rsp(work);
1231
1232 return rc;
1233}
1234
1235static int alloc_preauth_hash(struct ksmbd_session *sess,
Namjae Jeon070fb212021-05-26 17:57:12 +09001236 struct ksmbd_conn *conn)
Namjae Jeone2f34482021-03-16 10:49:09 +09001237{
1238 if (sess->Preauth_HashValue)
1239 return 0;
1240
kernel test robot86f52972021-04-02 12:17:24 +09001241 sess->Preauth_HashValue = kmemdup(conn->preauth_info->Preauth_HashValue,
Namjae Jeon070fb212021-05-26 17:57:12 +09001242 PREAUTH_HASHVALUE_SIZE, GFP_KERNEL);
Namjae Jeone2f34482021-03-16 10:49:09 +09001243 if (!sess->Preauth_HashValue)
1244 return -ENOMEM;
1245
Namjae Jeone2f34482021-03-16 10:49:09 +09001246 return 0;
1247}
1248
1249static int generate_preauth_hash(struct ksmbd_work *work)
1250{
1251 struct ksmbd_conn *conn = work->conn;
1252 struct ksmbd_session *sess = work->sess;
Namjae Jeonf5a544e2021-06-18 10:04:19 +09001253 u8 *preauth_hash;
Namjae Jeone2f34482021-03-16 10:49:09 +09001254
1255 if (conn->dialect != SMB311_PROT_ID)
1256 return 0;
1257
Namjae Jeonf5a544e2021-06-18 10:04:19 +09001258 if (conn->binding) {
1259 struct preauth_session *preauth_sess;
1260
1261 preauth_sess = ksmbd_preauth_session_lookup(conn, sess->id);
1262 if (!preauth_sess) {
1263 preauth_sess = ksmbd_preauth_session_alloc(conn, sess->id);
1264 if (!preauth_sess)
1265 return -ENOMEM;
1266 }
1267
1268 preauth_hash = preauth_sess->Preauth_HashValue;
1269 } else {
1270 if (!sess->Preauth_HashValue)
1271 if (alloc_preauth_hash(sess, conn))
1272 return -ENOMEM;
1273 preauth_hash = sess->Preauth_HashValue;
Namjae Jeone2f34482021-03-16 10:49:09 +09001274 }
1275
Namjae Jeonf5a544e2021-06-18 10:04:19 +09001276 ksmbd_gen_preauth_integrity_hash(conn, work->request_buf, preauth_hash);
Namjae Jeone2f34482021-03-16 10:49:09 +09001277 return 0;
1278}
1279
Marios Makassikis0d994cd2021-10-19 17:39:38 +02001280static int decode_negotiation_token(struct ksmbd_conn *conn,
1281 struct negotiate_message *negblob,
1282 size_t sz)
Namjae Jeone2f34482021-03-16 10:49:09 +09001283{
Namjae Jeone2f34482021-03-16 10:49:09 +09001284 if (!conn->use_spnego)
1285 return -EINVAL;
1286
Hyunchul Leefad41612021-04-19 17:26:15 +09001287 if (ksmbd_decode_negTokenInit((char *)negblob, sz, conn)) {
1288 if (ksmbd_decode_negTokenTarg((char *)negblob, sz, conn)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09001289 conn->auth_mechs |= KSMBD_AUTH_NTLMSSP;
1290 conn->preferred_auth_mech = KSMBD_AUTH_NTLMSSP;
1291 conn->use_spnego = false;
1292 }
1293 }
1294 return 0;
1295}
1296
1297static int ntlm_negotiate(struct ksmbd_work *work,
Marios Makassikis0d994cd2021-10-19 17:39:38 +02001298 struct negotiate_message *negblob,
1299 size_t negblob_len)
Namjae Jeone2f34482021-03-16 10:49:09 +09001300{
Namjae Jeoncb451722021-11-03 08:08:44 +09001301 struct smb2_sess_setup_rsp *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09001302 struct challenge_message *chgblob;
1303 unsigned char *spnego_blob = NULL;
1304 u16 spnego_blob_len;
1305 char *neg_blob;
1306 int sz, rc;
1307
1308 ksmbd_debug(SMB, "negotiate phase\n");
Namjae Jeonce53d362021-12-15 14:57:27 +09001309 rc = ksmbd_decode_ntlmssp_neg_blob(negblob, negblob_len, work->conn);
Namjae Jeone2f34482021-03-16 10:49:09 +09001310 if (rc)
1311 return rc;
1312
1313 sz = le16_to_cpu(rsp->SecurityBufferOffset);
1314 chgblob =
1315 (struct challenge_message *)((char *)&rsp->hdr.ProtocolId + sz);
1316 memset(chgblob, 0, sizeof(struct challenge_message));
1317
1318 if (!work->conn->use_spnego) {
Namjae Jeonce53d362021-12-15 14:57:27 +09001319 sz = ksmbd_build_ntlmssp_challenge_blob(chgblob, work->conn);
Namjae Jeone2f34482021-03-16 10:49:09 +09001320 if (sz < 0)
1321 return -ENOMEM;
1322
1323 rsp->SecurityBufferLength = cpu_to_le16(sz);
1324 return 0;
1325 }
1326
1327 sz = sizeof(struct challenge_message);
1328 sz += (strlen(ksmbd_netbios_name()) * 2 + 1 + 4) * 6;
1329
1330 neg_blob = kzalloc(sz, GFP_KERNEL);
1331 if (!neg_blob)
1332 return -ENOMEM;
1333
1334 chgblob = (struct challenge_message *)neg_blob;
Namjae Jeonce53d362021-12-15 14:57:27 +09001335 sz = ksmbd_build_ntlmssp_challenge_blob(chgblob, work->conn);
Namjae Jeone2f34482021-03-16 10:49:09 +09001336 if (sz < 0) {
1337 rc = -ENOMEM;
1338 goto out;
1339 }
1340
Namjae Jeon070fb212021-05-26 17:57:12 +09001341 rc = build_spnego_ntlmssp_neg_blob(&spnego_blob, &spnego_blob_len,
1342 neg_blob, sz);
Namjae Jeone2f34482021-03-16 10:49:09 +09001343 if (rc) {
1344 rc = -ENOMEM;
1345 goto out;
1346 }
1347
1348 sz = le16_to_cpu(rsp->SecurityBufferOffset);
1349 memcpy((char *)&rsp->hdr.ProtocolId + sz, spnego_blob, spnego_blob_len);
1350 rsp->SecurityBufferLength = cpu_to_le16(spnego_blob_len);
1351
1352out:
1353 kfree(spnego_blob);
1354 kfree(neg_blob);
1355 return rc;
1356}
1357
1358static struct authenticate_message *user_authblob(struct ksmbd_conn *conn,
Namjae Jeon070fb212021-05-26 17:57:12 +09001359 struct smb2_sess_setup_req *req)
Namjae Jeone2f34482021-03-16 10:49:09 +09001360{
1361 int sz;
1362
1363 if (conn->use_spnego && conn->mechToken)
1364 return (struct authenticate_message *)conn->mechToken;
1365
1366 sz = le16_to_cpu(req->SecurityBufferOffset);
1367 return (struct authenticate_message *)((char *)&req->hdr.ProtocolId
1368 + sz);
1369}
1370
1371static struct ksmbd_user *session_user(struct ksmbd_conn *conn,
Namjae Jeon070fb212021-05-26 17:57:12 +09001372 struct smb2_sess_setup_req *req)
Namjae Jeone2f34482021-03-16 10:49:09 +09001373{
1374 struct authenticate_message *authblob;
1375 struct ksmbd_user *user;
1376 char *name;
Marios Makassikis0d994cd2021-10-19 17:39:38 +02001377 unsigned int auth_msg_len, name_off, name_len, secbuf_len;
Namjae Jeone2f34482021-03-16 10:49:09 +09001378
Marios Makassikis0d994cd2021-10-19 17:39:38 +02001379 secbuf_len = le16_to_cpu(req->SecurityBufferLength);
1380 if (secbuf_len < sizeof(struct authenticate_message)) {
1381 ksmbd_debug(SMB, "blob len %d too small\n", secbuf_len);
1382 return NULL;
1383 }
Namjae Jeone2f34482021-03-16 10:49:09 +09001384 authblob = user_authblob(conn, req);
Marios Makassikis0d994cd2021-10-19 17:39:38 +02001385 name_off = le32_to_cpu(authblob->UserName.BufferOffset);
1386 name_len = le16_to_cpu(authblob->UserName.Length);
1387 auth_msg_len = le16_to_cpu(req->SecurityBufferOffset) + secbuf_len;
1388
1389 if (auth_msg_len < (u64)name_off + name_len)
1390 return NULL;
1391
1392 name = smb_strndup_from_utf16((const char *)authblob + name_off,
1393 name_len,
Namjae Jeone2f34482021-03-16 10:49:09 +09001394 true,
1395 conn->local_nls);
1396 if (IS_ERR(name)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09001397 pr_err("cannot allocate memory\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09001398 return NULL;
1399 }
1400
1401 ksmbd_debug(SMB, "session setup request for user %s\n", name);
1402 user = ksmbd_login_user(name);
1403 kfree(name);
1404 return user;
1405}
1406
1407static int ntlm_authenticate(struct ksmbd_work *work)
1408{
Namjae Jeoncb451722021-11-03 08:08:44 +09001409 struct smb2_sess_setup_req *req = smb2_get_msg(work->request_buf);
1410 struct smb2_sess_setup_rsp *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09001411 struct ksmbd_conn *conn = work->conn;
1412 struct ksmbd_session *sess = work->sess;
1413 struct channel *chann = NULL;
1414 struct ksmbd_user *user;
Namjae Jeon64b39f42021-03-30 14:25:35 +09001415 u64 prev_id;
Namjae Jeone2f34482021-03-16 10:49:09 +09001416 int sz, rc;
1417
1418 ksmbd_debug(SMB, "authenticate phase\n");
1419 if (conn->use_spnego) {
1420 unsigned char *spnego_blob;
1421 u16 spnego_blob_len;
1422
1423 rc = build_spnego_ntlmssp_auth_blob(&spnego_blob,
1424 &spnego_blob_len,
1425 0);
1426 if (rc)
1427 return -ENOMEM;
1428
1429 sz = le16_to_cpu(rsp->SecurityBufferOffset);
Namjae Jeon64b39f42021-03-30 14:25:35 +09001430 memcpy((char *)&rsp->hdr.ProtocolId + sz, spnego_blob, spnego_blob_len);
Namjae Jeone2f34482021-03-16 10:49:09 +09001431 rsp->SecurityBufferLength = cpu_to_le16(spnego_blob_len);
1432 kfree(spnego_blob);
Namjae Jeoncb451722021-11-03 08:08:44 +09001433 inc_rfc1001_len(work->response_buf, spnego_blob_len - 1);
Namjae Jeone2f34482021-03-16 10:49:09 +09001434 }
1435
1436 user = session_user(conn, req);
1437 if (!user) {
1438 ksmbd_debug(SMB, "Unknown user name or an error\n");
Namjae Jeon58090b12021-07-16 14:52:09 +09001439 return -EPERM;
Namjae Jeone2f34482021-03-16 10:49:09 +09001440 }
1441
1442 /* Check for previous session */
1443 prev_id = le64_to_cpu(req->PreviousSessionId);
1444 if (prev_id && prev_id != sess->id)
1445 destroy_previous_session(user, prev_id);
1446
1447 if (sess->state == SMB2_SESSION_VALID) {
1448 /*
1449 * Reuse session if anonymous try to connect
1450 * on reauthetication.
1451 */
1452 if (ksmbd_anonymous_user(user)) {
1453 ksmbd_free_user(user);
1454 return 0;
1455 }
Namjae Jeona58b45a2021-12-16 10:26:43 +09001456
1457 if (!ksmbd_compare_user(sess->user, user)) {
1458 ksmbd_free_user(user);
1459 return -EPERM;
1460 }
1461 ksmbd_free_user(user);
1462 } else {
1463 sess->user = user;
Namjae Jeone2f34482021-03-16 10:49:09 +09001464 }
1465
Namjae Jeone2f34482021-03-16 10:49:09 +09001466 if (user_guest(sess->user)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09001467 rsp->SessionFlags = SMB2_SESSION_FLAG_IS_GUEST_LE;
1468 } else {
1469 struct authenticate_message *authblob;
1470
1471 authblob = user_authblob(conn, req);
1472 sz = le16_to_cpu(req->SecurityBufferLength);
Namjae Jeonce53d362021-12-15 14:57:27 +09001473 rc = ksmbd_decode_ntlmssp_auth_blob(authblob, sz, conn, sess);
Namjae Jeone2f34482021-03-16 10:49:09 +09001474 if (rc) {
1475 set_user_flag(sess->user, KSMBD_USER_FLAG_BAD_PASSWORD);
1476 ksmbd_debug(SMB, "authentication failed\n");
Namjae Jeon58090b12021-07-16 14:52:09 +09001477 return -EPERM;
Namjae Jeone2f34482021-03-16 10:49:09 +09001478 }
Namjae Jeonac090d92022-01-17 22:16:01 +09001479 }
Namjae Jeone2f34482021-03-16 10:49:09 +09001480
Namjae Jeonac090d92022-01-17 22:16:01 +09001481 /*
1482 * If session state is SMB2_SESSION_VALID, We can assume
1483 * that it is reauthentication. And the user/password
1484 * has been verified, so return it here.
1485 */
1486 if (sess->state == SMB2_SESSION_VALID) {
1487 if (conn->binding)
1488 goto binding_session;
1489 return 0;
1490 }
1491
1492 if ((rsp->SessionFlags != SMB2_SESSION_FLAG_IS_GUEST_LE &&
1493 (conn->sign || server_conf.enforced_signing)) ||
1494 (req->SecurityMode & SMB2_NEGOTIATE_SIGNING_REQUIRED))
1495 sess->sign = true;
1496
1497 if (smb3_encryption_negotiated(conn) &&
1498 !(req->Flags & SMB2_SESSION_REQ_FLAG_BINDING)) {
1499 rc = conn->ops->generate_encryptionkey(sess);
1500 if (rc) {
1501 ksmbd_debug(SMB,
1502 "SMB3 encryption key generation failed\n");
1503 return -EINVAL;
1504 }
1505 sess->enc = true;
1506 rsp->SessionFlags = SMB2_SESSION_FLAG_ENCRYPT_DATA_LE;
Namjae Jeone2f34482021-03-16 10:49:09 +09001507 /*
Namjae Jeonac090d92022-01-17 22:16:01 +09001508 * signing is disable if encryption is enable
1509 * on this session
Namjae Jeone2f34482021-03-16 10:49:09 +09001510 */
Namjae Jeonac090d92022-01-17 22:16:01 +09001511 sess->sign = false;
Namjae Jeone2f34482021-03-16 10:49:09 +09001512 }
1513
Namjae Jeonf5a544e2021-06-18 10:04:19 +09001514binding_session:
Namjae Jeone2f34482021-03-16 10:49:09 +09001515 if (conn->dialect >= SMB30_PROT_ID) {
Namjae Jeonf5a544e2021-06-18 10:04:19 +09001516 chann = lookup_chann_list(sess, conn);
Namjae Jeone2f34482021-03-16 10:49:09 +09001517 if (!chann) {
1518 chann = kmalloc(sizeof(struct channel), GFP_KERNEL);
1519 if (!chann)
1520 return -ENOMEM;
1521
1522 chann->conn = conn;
1523 INIT_LIST_HEAD(&chann->chann_list);
1524 list_add(&chann->chann_list, &sess->ksmbd_chann_list);
1525 }
1526 }
1527
1528 if (conn->ops->generate_signingkey) {
Namjae Jeonf5a544e2021-06-18 10:04:19 +09001529 rc = conn->ops->generate_signingkey(sess, conn);
Namjae Jeone2f34482021-03-16 10:49:09 +09001530 if (rc) {
Namjae Jeon64b39f42021-03-30 14:25:35 +09001531 ksmbd_debug(SMB, "SMB3 signing key generation failed\n");
Namjae Jeon58090b12021-07-16 14:52:09 +09001532 return -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09001533 }
1534 }
1535
Namjae Jeon51a13872021-09-29 13:09:24 +09001536 if (!ksmbd_conn_lookup_dialect(conn)) {
1537 pr_err("fail to verify the dialect\n");
1538 return -ENOENT;
Namjae Jeone2f34482021-03-16 10:49:09 +09001539 }
1540 return 0;
1541}
1542
1543#ifdef CONFIG_SMB_SERVER_KERBEROS5
1544static int krb5_authenticate(struct ksmbd_work *work)
1545{
Namjae Jeoncb451722021-11-03 08:08:44 +09001546 struct smb2_sess_setup_req *req = smb2_get_msg(work->request_buf);
1547 struct smb2_sess_setup_rsp *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09001548 struct ksmbd_conn *conn = work->conn;
1549 struct ksmbd_session *sess = work->sess;
1550 char *in_blob, *out_blob;
1551 struct channel *chann = NULL;
Namjae Jeon64b39f42021-03-30 14:25:35 +09001552 u64 prev_sess_id;
Namjae Jeone2f34482021-03-16 10:49:09 +09001553 int in_len, out_len;
1554 int retval;
1555
1556 in_blob = (char *)&req->hdr.ProtocolId +
1557 le16_to_cpu(req->SecurityBufferOffset);
1558 in_len = le16_to_cpu(req->SecurityBufferLength);
1559 out_blob = (char *)&rsp->hdr.ProtocolId +
1560 le16_to_cpu(rsp->SecurityBufferOffset);
1561 out_len = work->response_sz -
Namjae Jeoncb451722021-11-03 08:08:44 +09001562 (le16_to_cpu(rsp->SecurityBufferOffset) + 4);
Namjae Jeone2f34482021-03-16 10:49:09 +09001563
1564 /* Check previous session */
1565 prev_sess_id = le64_to_cpu(req->PreviousSessionId);
1566 if (prev_sess_id && prev_sess_id != sess->id)
1567 destroy_previous_session(sess->user, prev_sess_id);
1568
1569 if (sess->state == SMB2_SESSION_VALID)
1570 ksmbd_free_user(sess->user);
1571
1572 retval = ksmbd_krb5_authenticate(sess, in_blob, in_len,
Namjae Jeon070fb212021-05-26 17:57:12 +09001573 out_blob, &out_len);
Namjae Jeone2f34482021-03-16 10:49:09 +09001574 if (retval) {
1575 ksmbd_debug(SMB, "krb5 authentication failed\n");
Namjae Jeon58090b12021-07-16 14:52:09 +09001576 return -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09001577 }
1578 rsp->SecurityBufferLength = cpu_to_le16(out_len);
Namjae Jeoncb451722021-11-03 08:08:44 +09001579 inc_rfc1001_len(work->response_buf, out_len - 1);
Namjae Jeone2f34482021-03-16 10:49:09 +09001580
1581 if ((conn->sign || server_conf.enforced_signing) ||
Namjae Jeon64b39f42021-03-30 14:25:35 +09001582 (req->SecurityMode & SMB2_NEGOTIATE_SIGNING_REQUIRED))
Namjae Jeone2f34482021-03-16 10:49:09 +09001583 sess->sign = true;
1584
Marcos Del Sol Vives83912d62021-12-16 11:37:22 +01001585 if (smb3_encryption_negotiated(conn)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09001586 retval = conn->ops->generate_encryptionkey(sess);
1587 if (retval) {
1588 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09001589 "SMB3 encryption key generation failed\n");
Namjae Jeon58090b12021-07-16 14:52:09 +09001590 return -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09001591 }
1592 sess->enc = true;
1593 rsp->SessionFlags = SMB2_SESSION_FLAG_ENCRYPT_DATA_LE;
1594 sess->sign = false;
1595 }
1596
1597 if (conn->dialect >= SMB30_PROT_ID) {
Namjae Jeonf5a544e2021-06-18 10:04:19 +09001598 chann = lookup_chann_list(sess, conn);
Namjae Jeone2f34482021-03-16 10:49:09 +09001599 if (!chann) {
1600 chann = kmalloc(sizeof(struct channel), GFP_KERNEL);
1601 if (!chann)
1602 return -ENOMEM;
1603
1604 chann->conn = conn;
1605 INIT_LIST_HEAD(&chann->chann_list);
1606 list_add(&chann->chann_list, &sess->ksmbd_chann_list);
1607 }
1608 }
1609
1610 if (conn->ops->generate_signingkey) {
Namjae Jeonf5a544e2021-06-18 10:04:19 +09001611 retval = conn->ops->generate_signingkey(sess, conn);
Namjae Jeone2f34482021-03-16 10:49:09 +09001612 if (retval) {
Namjae Jeon64b39f42021-03-30 14:25:35 +09001613 ksmbd_debug(SMB, "SMB3 signing key generation failed\n");
Namjae Jeon58090b12021-07-16 14:52:09 +09001614 return -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09001615 }
1616 }
1617
Namjae Jeon51a13872021-09-29 13:09:24 +09001618 if (!ksmbd_conn_lookup_dialect(conn)) {
1619 pr_err("fail to verify the dialect\n");
1620 return -ENOENT;
Namjae Jeone2f34482021-03-16 10:49:09 +09001621 }
1622 return 0;
1623}
1624#else
1625static int krb5_authenticate(struct ksmbd_work *work)
1626{
1627 return -EOPNOTSUPP;
1628}
1629#endif
1630
1631int smb2_sess_setup(struct ksmbd_work *work)
1632{
1633 struct ksmbd_conn *conn = work->conn;
Namjae Jeoncb451722021-11-03 08:08:44 +09001634 struct smb2_sess_setup_req *req = smb2_get_msg(work->request_buf);
1635 struct smb2_sess_setup_rsp *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09001636 struct ksmbd_session *sess;
1637 struct negotiate_message *negblob;
Marios Makassikis0d994cd2021-10-19 17:39:38 +02001638 unsigned int negblob_len, negblob_off;
Namjae Jeone2f34482021-03-16 10:49:09 +09001639 int rc = 0;
1640
1641 ksmbd_debug(SMB, "Received request for session setup\n");
1642
1643 rsp->StructureSize = cpu_to_le16(9);
1644 rsp->SessionFlags = 0;
1645 rsp->SecurityBufferOffset = cpu_to_le16(72);
1646 rsp->SecurityBufferLength = 0;
Namjae Jeoncb451722021-11-03 08:08:44 +09001647 inc_rfc1001_len(work->response_buf, 9);
Namjae Jeone2f34482021-03-16 10:49:09 +09001648
1649 if (!req->hdr.SessionId) {
1650 sess = ksmbd_smb2_session_create();
1651 if (!sess) {
1652 rc = -ENOMEM;
1653 goto out_err;
1654 }
1655 rsp->hdr.SessionId = cpu_to_le64(sess->id);
1656 ksmbd_session_register(conn, sess);
Namjae Jeonf5a544e2021-06-18 10:04:19 +09001657 } else if (conn->dialect >= SMB30_PROT_ID &&
1658 (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB3_MULTICHANNEL) &&
1659 req->Flags & SMB2_SESSION_REQ_FLAG_BINDING) {
1660 u64 sess_id = le64_to_cpu(req->hdr.SessionId);
1661
1662 sess = ksmbd_session_lookup_slowpath(sess_id);
1663 if (!sess) {
1664 rc = -ENOENT;
1665 goto out_err;
1666 }
1667
1668 if (conn->dialect != sess->conn->dialect) {
1669 rc = -EINVAL;
1670 goto out_err;
1671 }
1672
1673 if (!(req->hdr.Flags & SMB2_FLAGS_SIGNED)) {
1674 rc = -EINVAL;
1675 goto out_err;
1676 }
1677
1678 if (strncmp(conn->ClientGUID, sess->conn->ClientGUID,
1679 SMB2_CLIENT_GUID_SIZE)) {
1680 rc = -ENOENT;
1681 goto out_err;
1682 }
1683
1684 if (sess->state == SMB2_SESSION_IN_PROGRESS) {
1685 rc = -EACCES;
1686 goto out_err;
1687 }
1688
1689 if (sess->state == SMB2_SESSION_EXPIRED) {
1690 rc = -EFAULT;
1691 goto out_err;
1692 }
1693
1694 if (ksmbd_session_lookup(conn, sess_id)) {
1695 rc = -EACCES;
1696 goto out_err;
1697 }
1698
1699 conn->binding = true;
1700 } else if ((conn->dialect < SMB30_PROT_ID ||
1701 server_conf.flags & KSMBD_GLOBAL_FLAG_SMB3_MULTICHANNEL) &&
1702 (req->Flags & SMB2_SESSION_REQ_FLAG_BINDING)) {
Colin Ian King4951a842021-07-06 13:05:01 +01001703 sess = NULL;
Namjae Jeonf5a544e2021-06-18 10:04:19 +09001704 rc = -EACCES;
1705 goto out_err;
Namjae Jeone2f34482021-03-16 10:49:09 +09001706 } else {
1707 sess = ksmbd_session_lookup(conn,
Namjae Jeon070fb212021-05-26 17:57:12 +09001708 le64_to_cpu(req->hdr.SessionId));
Namjae Jeone2f34482021-03-16 10:49:09 +09001709 if (!sess) {
1710 rc = -ENOENT;
Namjae Jeone2f34482021-03-16 10:49:09 +09001711 goto out_err;
1712 }
1713 }
1714 work->sess = sess;
1715
1716 if (sess->state == SMB2_SESSION_EXPIRED)
1717 sess->state = SMB2_SESSION_IN_PROGRESS;
1718
Marios Makassikis0d994cd2021-10-19 17:39:38 +02001719 negblob_off = le16_to_cpu(req->SecurityBufferOffset);
1720 negblob_len = le16_to_cpu(req->SecurityBufferLength);
Namjae Jeoncb451722021-11-03 08:08:44 +09001721 if (negblob_off < offsetof(struct smb2_sess_setup_req, Buffer) ||
Christophe JAILLETf8fbfd82021-11-07 16:22:57 +01001722 negblob_len < offsetof(struct negotiate_message, NegotiateFlags)) {
1723 rc = -EINVAL;
1724 goto out_err;
1725 }
Namjae Jeone2f34482021-03-16 10:49:09 +09001726
Marios Makassikis0d994cd2021-10-19 17:39:38 +02001727 negblob = (struct negotiate_message *)((char *)&req->hdr.ProtocolId +
1728 negblob_off);
1729
1730 if (decode_negotiation_token(conn, negblob, negblob_len) == 0) {
Namjae Jeone2f34482021-03-16 10:49:09 +09001731 if (conn->mechToken)
1732 negblob = (struct negotiate_message *)conn->mechToken;
1733 }
1734
1735 if (server_conf.auth_mechs & conn->auth_mechs) {
Namjae Jeonf5a544e2021-06-18 10:04:19 +09001736 rc = generate_preauth_hash(work);
1737 if (rc)
1738 goto out_err;
1739
Namjae Jeone2f34482021-03-16 10:49:09 +09001740 if (conn->preferred_auth_mech &
1741 (KSMBD_AUTH_KRB5 | KSMBD_AUTH_MSKRB5)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09001742 rc = krb5_authenticate(work);
1743 if (rc) {
Namjae Jeonf5a544e2021-06-18 10:04:19 +09001744 rc = -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09001745 goto out_err;
1746 }
1747
1748 ksmbd_conn_set_good(work);
1749 sess->state = SMB2_SESSION_VALID;
Muhammad Usama Anjum822bc8e2021-04-02 09:25:35 +09001750 kfree(sess->Preauth_HashValue);
Namjae Jeone2f34482021-03-16 10:49:09 +09001751 sess->Preauth_HashValue = NULL;
1752 } else if (conn->preferred_auth_mech == KSMBD_AUTH_NTLMSSP) {
Namjae Jeone2f34482021-03-16 10:49:09 +09001753 if (negblob->MessageType == NtLmNegotiate) {
Marios Makassikis0d994cd2021-10-19 17:39:38 +02001754 rc = ntlm_negotiate(work, negblob, negblob_len);
Namjae Jeone2f34482021-03-16 10:49:09 +09001755 if (rc)
1756 goto out_err;
1757 rsp->hdr.Status =
1758 STATUS_MORE_PROCESSING_REQUIRED;
1759 /*
1760 * Note: here total size -1 is done as an
1761 * adjustment for 0 size blob
1762 */
Namjae Jeoncb451722021-11-03 08:08:44 +09001763 inc_rfc1001_len(work->response_buf,
1764 le16_to_cpu(rsp->SecurityBufferLength) - 1);
Namjae Jeone2f34482021-03-16 10:49:09 +09001765
1766 } else if (negblob->MessageType == NtLmAuthenticate) {
1767 rc = ntlm_authenticate(work);
1768 if (rc)
1769 goto out_err;
1770
1771 ksmbd_conn_set_good(work);
1772 sess->state = SMB2_SESSION_VALID;
Namjae Jeonf5a544e2021-06-18 10:04:19 +09001773 if (conn->binding) {
1774 struct preauth_session *preauth_sess;
1775
1776 preauth_sess =
1777 ksmbd_preauth_session_lookup(conn, sess->id);
1778 if (preauth_sess) {
1779 list_del(&preauth_sess->preauth_entry);
1780 kfree(preauth_sess);
1781 }
1782 }
Muhammad Usama Anjum822bc8e2021-04-02 09:25:35 +09001783 kfree(sess->Preauth_HashValue);
Namjae Jeone2f34482021-03-16 10:49:09 +09001784 sess->Preauth_HashValue = NULL;
1785 }
1786 } else {
1787 /* TODO: need one more negotiation */
Namjae Jeonbde16942021-06-28 15:23:19 +09001788 pr_err("Not support the preferred authentication\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09001789 rc = -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09001790 }
1791 } else {
Namjae Jeonbde16942021-06-28 15:23:19 +09001792 pr_err("Not support authentication\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09001793 rc = -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09001794 }
1795
1796out_err:
Namjae Jeonf5a544e2021-06-18 10:04:19 +09001797 if (rc == -EINVAL)
1798 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
1799 else if (rc == -ENOENT)
1800 rsp->hdr.Status = STATUS_USER_SESSION_DELETED;
1801 else if (rc == -EACCES)
1802 rsp->hdr.Status = STATUS_REQUEST_NOT_ACCEPTED;
1803 else if (rc == -EFAULT)
1804 rsp->hdr.Status = STATUS_NETWORK_SESSION_EXPIRED;
Namjae Jeon58090b12021-07-16 14:52:09 +09001805 else if (rc == -ENOMEM)
1806 rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES;
Namjae Jeonf5a544e2021-06-18 10:04:19 +09001807 else if (rc)
1808 rsp->hdr.Status = STATUS_LOGON_FAILURE;
1809
Namjae Jeone2f34482021-03-16 10:49:09 +09001810 if (conn->use_spnego && conn->mechToken) {
1811 kfree(conn->mechToken);
1812 conn->mechToken = NULL;
1813 }
1814
Namjae Jeon621be842021-10-13 17:28:31 +09001815 if (rc < 0) {
1816 /*
1817 * SecurityBufferOffset should be set to zero
1818 * in session setup error response.
1819 */
1820 rsp->SecurityBufferOffset = 0;
1821
1822 if (sess) {
1823 bool try_delay = false;
1824
1825 /*
1826 * To avoid dictionary attacks (repeated session setups rapidly sent) to
1827 * connect to server, ksmbd make a delay of a 5 seconds on session setup
1828 * failure to make it harder to send enough random connection requests
1829 * to break into a server.
1830 */
1831 if (sess->user && sess->user->flags & KSMBD_USER_FLAG_DELAY_SESSION)
1832 try_delay = true;
1833
1834 ksmbd_session_destroy(sess);
1835 work->sess = NULL;
1836 if (try_delay)
1837 ssleep(5);
1838 }
Namjae Jeone2f34482021-03-16 10:49:09 +09001839 }
1840
1841 return rc;
1842}
1843
1844/**
1845 * smb2_tree_connect() - handler for smb2 tree connect command
1846 * @work: smb work containing smb request buffer
1847 *
1848 * Return: 0 on success, otherwise error
1849 */
1850int smb2_tree_connect(struct ksmbd_work *work)
1851{
1852 struct ksmbd_conn *conn = work->conn;
Namjae Jeoncb451722021-11-03 08:08:44 +09001853 struct smb2_tree_connect_req *req = smb2_get_msg(work->request_buf);
1854 struct smb2_tree_connect_rsp *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09001855 struct ksmbd_session *sess = work->sess;
1856 char *treename = NULL, *name = NULL;
1857 struct ksmbd_tree_conn_status status;
1858 struct ksmbd_share_config *share;
1859 int rc = -EINVAL;
1860
1861 treename = smb_strndup_from_utf16(req->Buffer,
Namjae Jeon070fb212021-05-26 17:57:12 +09001862 le16_to_cpu(req->PathLength), true,
1863 conn->local_nls);
Namjae Jeone2f34482021-03-16 10:49:09 +09001864 if (IS_ERR(treename)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09001865 pr_err("treename is NULL\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09001866 status.ret = KSMBD_TREE_CONN_STATUS_ERROR;
1867 goto out_err1;
1868 }
1869
Stephen Rothwell36ba3862021-03-17 17:01:15 +09001870 name = ksmbd_extract_sharename(treename);
Namjae Jeone2f34482021-03-16 10:49:09 +09001871 if (IS_ERR(name)) {
1872 status.ret = KSMBD_TREE_CONN_STATUS_ERROR;
1873 goto out_err1;
1874 }
1875
1876 ksmbd_debug(SMB, "tree connect request for tree %s treename %s\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09001877 name, treename);
Namjae Jeone2f34482021-03-16 10:49:09 +09001878
1879 status = ksmbd_tree_conn_connect(sess, name);
1880 if (status.ret == KSMBD_TREE_CONN_STATUS_OK)
1881 rsp->hdr.Id.SyncId.TreeId = cpu_to_le32(status.tree_conn->id);
1882 else
1883 goto out_err1;
1884
1885 share = status.tree_conn->share_conf;
1886 if (test_share_config_flag(share, KSMBD_SHARE_FLAG_PIPE)) {
1887 ksmbd_debug(SMB, "IPC share path request\n");
1888 rsp->ShareType = SMB2_SHARE_TYPE_PIPE;
1889 rsp->MaximalAccess = FILE_READ_DATA_LE | FILE_READ_EA_LE |
1890 FILE_EXECUTE_LE | FILE_READ_ATTRIBUTES_LE |
1891 FILE_DELETE_LE | FILE_READ_CONTROL_LE |
1892 FILE_WRITE_DAC_LE | FILE_WRITE_OWNER_LE |
1893 FILE_SYNCHRONIZE_LE;
1894 } else {
1895 rsp->ShareType = SMB2_SHARE_TYPE_DISK;
1896 rsp->MaximalAccess = FILE_READ_DATA_LE | FILE_READ_EA_LE |
1897 FILE_EXECUTE_LE | FILE_READ_ATTRIBUTES_LE;
1898 if (test_tree_conn_flag(status.tree_conn,
1899 KSMBD_TREE_CONN_FLAG_WRITABLE)) {
1900 rsp->MaximalAccess |= FILE_WRITE_DATA_LE |
1901 FILE_APPEND_DATA_LE | FILE_WRITE_EA_LE |
Wan Jiabing3aefd542021-06-07 12:54:32 +08001902 FILE_DELETE_LE | FILE_WRITE_ATTRIBUTES_LE |
1903 FILE_DELETE_CHILD_LE | FILE_READ_CONTROL_LE |
1904 FILE_WRITE_DAC_LE | FILE_WRITE_OWNER_LE |
1905 FILE_SYNCHRONIZE_LE;
Namjae Jeone2f34482021-03-16 10:49:09 +09001906 }
1907 }
1908
1909 status.tree_conn->maximal_access = le32_to_cpu(rsp->MaximalAccess);
1910 if (conn->posix_ext_supported)
1911 status.tree_conn->posix_extensions = true;
1912
1913out_err1:
1914 rsp->StructureSize = cpu_to_le16(16);
1915 rsp->Capabilities = 0;
1916 rsp->Reserved = 0;
1917 /* default manual caching */
1918 rsp->ShareFlags = SMB2_SHAREFLAG_MANUAL_CACHING;
Namjae Jeoncb451722021-11-03 08:08:44 +09001919 inc_rfc1001_len(work->response_buf, 16);
Namjae Jeone2f34482021-03-16 10:49:09 +09001920
1921 if (!IS_ERR(treename))
1922 kfree(treename);
1923 if (!IS_ERR(name))
1924 kfree(name);
1925
1926 switch (status.ret) {
1927 case KSMBD_TREE_CONN_STATUS_OK:
1928 rsp->hdr.Status = STATUS_SUCCESS;
1929 rc = 0;
1930 break;
1931 case KSMBD_TREE_CONN_STATUS_NO_SHARE:
1932 rsp->hdr.Status = STATUS_BAD_NETWORK_PATH;
1933 break;
1934 case -ENOMEM:
1935 case KSMBD_TREE_CONN_STATUS_NOMEM:
1936 rsp->hdr.Status = STATUS_NO_MEMORY;
1937 break;
1938 case KSMBD_TREE_CONN_STATUS_ERROR:
1939 case KSMBD_TREE_CONN_STATUS_TOO_MANY_CONNS:
1940 case KSMBD_TREE_CONN_STATUS_TOO_MANY_SESSIONS:
1941 rsp->hdr.Status = STATUS_ACCESS_DENIED;
1942 break;
1943 case -EINVAL:
1944 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
1945 break;
1946 default:
1947 rsp->hdr.Status = STATUS_ACCESS_DENIED;
1948 }
1949
1950 return rc;
1951}
1952
1953/**
1954 * smb2_create_open_flags() - convert smb open flags to unix open flags
1955 * @file_present: is file already present
1956 * @access: file access flags
1957 * @disposition: file disposition flags
Hyunchul Lee6c5e36d2021-06-23 13:48:24 +09001958 * @may_flags: set with MAY_ flags
Namjae Jeone2f34482021-03-16 10:49:09 +09001959 *
1960 * Return: file open flags
1961 */
1962static int smb2_create_open_flags(bool file_present, __le32 access,
Hyunchul Lee6c5e36d2021-06-23 13:48:24 +09001963 __le32 disposition,
1964 int *may_flags)
Namjae Jeone2f34482021-03-16 10:49:09 +09001965{
1966 int oflags = O_NONBLOCK | O_LARGEFILE;
1967
1968 if (access & FILE_READ_DESIRED_ACCESS_LE &&
Hyunchul Lee6c5e36d2021-06-23 13:48:24 +09001969 access & FILE_WRITE_DESIRE_ACCESS_LE) {
Namjae Jeone2f34482021-03-16 10:49:09 +09001970 oflags |= O_RDWR;
Hyunchul Lee6c5e36d2021-06-23 13:48:24 +09001971 *may_flags = MAY_OPEN | MAY_READ | MAY_WRITE;
1972 } else if (access & FILE_WRITE_DESIRE_ACCESS_LE) {
Namjae Jeone2f34482021-03-16 10:49:09 +09001973 oflags |= O_WRONLY;
Hyunchul Lee6c5e36d2021-06-23 13:48:24 +09001974 *may_flags = MAY_OPEN | MAY_WRITE;
1975 } else {
Namjae Jeone2f34482021-03-16 10:49:09 +09001976 oflags |= O_RDONLY;
Hyunchul Lee6c5e36d2021-06-23 13:48:24 +09001977 *may_flags = MAY_OPEN | MAY_READ;
1978 }
Namjae Jeone2f34482021-03-16 10:49:09 +09001979
1980 if (access == FILE_READ_ATTRIBUTES_LE)
1981 oflags |= O_PATH;
1982
1983 if (file_present) {
1984 switch (disposition & FILE_CREATE_MASK_LE) {
1985 case FILE_OPEN_LE:
1986 case FILE_CREATE_LE:
1987 break;
1988 case FILE_SUPERSEDE_LE:
1989 case FILE_OVERWRITE_LE:
1990 case FILE_OVERWRITE_IF_LE:
1991 oflags |= O_TRUNC;
1992 break;
1993 default:
1994 break;
1995 }
1996 } else {
1997 switch (disposition & FILE_CREATE_MASK_LE) {
1998 case FILE_SUPERSEDE_LE:
1999 case FILE_CREATE_LE:
2000 case FILE_OPEN_IF_LE:
2001 case FILE_OVERWRITE_IF_LE:
2002 oflags |= O_CREAT;
2003 break;
2004 case FILE_OPEN_LE:
2005 case FILE_OVERWRITE_LE:
2006 oflags &= ~O_CREAT;
2007 break;
2008 default:
2009 break;
2010 }
2011 }
Hyunchul Lee6c5e36d2021-06-23 13:48:24 +09002012
Namjae Jeone2f34482021-03-16 10:49:09 +09002013 return oflags;
2014}
2015
2016/**
2017 * smb2_tree_disconnect() - handler for smb tree connect request
2018 * @work: smb work containing request buffer
2019 *
2020 * Return: 0
2021 */
2022int smb2_tree_disconnect(struct ksmbd_work *work)
2023{
Namjae Jeoncb451722021-11-03 08:08:44 +09002024 struct smb2_tree_disconnect_rsp *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09002025 struct ksmbd_session *sess = work->sess;
2026 struct ksmbd_tree_connect *tcon = work->tcon;
2027
2028 rsp->StructureSize = cpu_to_le16(4);
Namjae Jeoncb451722021-11-03 08:08:44 +09002029 inc_rfc1001_len(work->response_buf, 4);
Namjae Jeone2f34482021-03-16 10:49:09 +09002030
2031 ksmbd_debug(SMB, "request\n");
2032
2033 if (!tcon) {
Namjae Jeoncb451722021-11-03 08:08:44 +09002034 struct smb2_tree_disconnect_req *req =
2035 smb2_get_msg(work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09002036
2037 ksmbd_debug(SMB, "Invalid tid %d\n", req->hdr.Id.SyncId.TreeId);
2038 rsp->hdr.Status = STATUS_NETWORK_NAME_DELETED;
2039 smb2_set_err_rsp(work);
2040 return 0;
2041 }
2042
2043 ksmbd_close_tree_conn_fds(work);
2044 ksmbd_tree_conn_disconnect(sess, tcon);
2045 return 0;
2046}
2047
2048/**
2049 * smb2_session_logoff() - handler for session log off request
2050 * @work: smb work containing request buffer
2051 *
2052 * Return: 0
2053 */
2054int smb2_session_logoff(struct ksmbd_work *work)
2055{
2056 struct ksmbd_conn *conn = work->conn;
Namjae Jeoncb451722021-11-03 08:08:44 +09002057 struct smb2_logoff_rsp *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09002058 struct ksmbd_session *sess = work->sess;
2059
2060 rsp->StructureSize = cpu_to_le16(4);
Namjae Jeoncb451722021-11-03 08:08:44 +09002061 inc_rfc1001_len(work->response_buf, 4);
Namjae Jeone2f34482021-03-16 10:49:09 +09002062
2063 ksmbd_debug(SMB, "request\n");
2064
Namjae Jeone2f34482021-03-16 10:49:09 +09002065 /* setting CifsExiting here may race with start_tcp_sess */
2066 ksmbd_conn_set_need_reconnect(work);
2067 ksmbd_close_session_fds(work);
2068 ksmbd_conn_wait_idle(conn);
2069
2070 if (ksmbd_tree_conn_session_logoff(sess)) {
Namjae Jeoncb451722021-11-03 08:08:44 +09002071 struct smb2_logoff_req *req = smb2_get_msg(work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09002072
2073 ksmbd_debug(SMB, "Invalid tid %d\n", req->hdr.Id.SyncId.TreeId);
2074 rsp->hdr.Status = STATUS_NETWORK_NAME_DELETED;
2075 smb2_set_err_rsp(work);
2076 return 0;
2077 }
2078
2079 ksmbd_destroy_file_table(&sess->file_table);
2080 sess->state = SMB2_SESSION_EXPIRED;
2081
2082 ksmbd_free_user(sess->user);
2083 sess->user = NULL;
2084
2085 /* let start_tcp_sess free connection info now */
2086 ksmbd_conn_set_need_negotiate(work);
2087 return 0;
2088}
2089
2090/**
2091 * create_smb2_pipe() - create IPC pipe
2092 * @work: smb work containing request buffer
2093 *
2094 * Return: 0 on success, otherwise error
2095 */
2096static noinline int create_smb2_pipe(struct ksmbd_work *work)
2097{
Namjae Jeoncb451722021-11-03 08:08:44 +09002098 struct smb2_create_rsp *rsp = smb2_get_msg(work->response_buf);
2099 struct smb2_create_req *req = smb2_get_msg(work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09002100 int id;
2101 int err;
2102 char *name;
2103
2104 name = smb_strndup_from_utf16(req->Buffer, le16_to_cpu(req->NameLength),
Namjae Jeon070fb212021-05-26 17:57:12 +09002105 1, work->conn->local_nls);
Namjae Jeone2f34482021-03-16 10:49:09 +09002106 if (IS_ERR(name)) {
2107 rsp->hdr.Status = STATUS_NO_MEMORY;
2108 err = PTR_ERR(name);
2109 goto out;
2110 }
2111
2112 id = ksmbd_session_rpc_open(work->sess, name);
Marios Makassikis79caa962021-05-06 11:38:35 +09002113 if (id < 0) {
Namjae Jeonbde16942021-06-28 15:23:19 +09002114 pr_err("Unable to open RPC pipe: %d\n", id);
Marios Makassikis79caa962021-05-06 11:38:35 +09002115 err = id;
2116 goto out;
2117 }
Namjae Jeone2f34482021-03-16 10:49:09 +09002118
Marios Makassikis79caa962021-05-06 11:38:35 +09002119 rsp->hdr.Status = STATUS_SUCCESS;
Namjae Jeone2f34482021-03-16 10:49:09 +09002120 rsp->StructureSize = cpu_to_le16(89);
2121 rsp->OplockLevel = SMB2_OPLOCK_LEVEL_NONE;
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09002122 rsp->Flags = 0;
Namjae Jeone2f34482021-03-16 10:49:09 +09002123 rsp->CreateAction = cpu_to_le32(FILE_OPENED);
2124
2125 rsp->CreationTime = cpu_to_le64(0);
2126 rsp->LastAccessTime = cpu_to_le64(0);
2127 rsp->ChangeTime = cpu_to_le64(0);
2128 rsp->AllocationSize = cpu_to_le64(0);
2129 rsp->EndofFile = cpu_to_le64(0);
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09002130 rsp->FileAttributes = FILE_ATTRIBUTE_NORMAL_LE;
Namjae Jeone2f34482021-03-16 10:49:09 +09002131 rsp->Reserved2 = 0;
2132 rsp->VolatileFileId = cpu_to_le64(id);
2133 rsp->PersistentFileId = 0;
2134 rsp->CreateContextsOffset = 0;
2135 rsp->CreateContextsLength = 0;
2136
Namjae Jeoncb451722021-11-03 08:08:44 +09002137 inc_rfc1001_len(work->response_buf, 88); /* StructureSize - 1*/
Namjae Jeone2f34482021-03-16 10:49:09 +09002138 kfree(name);
2139 return 0;
2140
2141out:
Marios Makassikis79caa962021-05-06 11:38:35 +09002142 switch (err) {
2143 case -EINVAL:
2144 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
2145 break;
2146 case -ENOSPC:
2147 case -ENOMEM:
2148 rsp->hdr.Status = STATUS_NO_MEMORY;
2149 break;
2150 }
2151
2152 if (!IS_ERR(name))
2153 kfree(name);
2154
Namjae Jeone2f34482021-03-16 10:49:09 +09002155 smb2_set_err_rsp(work);
2156 return err;
2157}
2158
Namjae Jeone2f34482021-03-16 10:49:09 +09002159/**
2160 * smb2_set_ea() - handler for setting extended attributes using set
2161 * info command
2162 * @eabuf: set info command buffer
Namjae Jeon9496e262021-09-29 15:41:48 +09002163 * @buf_len: set info command buffer length
Namjae Jeone2f34482021-03-16 10:49:09 +09002164 * @path: dentry path for get ea
2165 *
2166 * Return: 0 on success, otherwise error
2167 */
Namjae Jeon9496e262021-09-29 15:41:48 +09002168static int smb2_set_ea(struct smb2_ea_info *eabuf, unsigned int buf_len,
2169 struct path *path)
Namjae Jeone2f34482021-03-16 10:49:09 +09002170{
Hyunchul Lee465d7202021-07-03 12:10:36 +09002171 struct user_namespace *user_ns = mnt_user_ns(path->mnt);
Namjae Jeone2f34482021-03-16 10:49:09 +09002172 char *attr_name = NULL, *value;
2173 int rc = 0;
Namjae Jeon9496e262021-09-29 15:41:48 +09002174 unsigned int next = 0;
2175
2176 if (buf_len < sizeof(struct smb2_ea_info) + eabuf->EaNameLength +
2177 le16_to_cpu(eabuf->EaValueLength))
2178 return -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09002179
2180 attr_name = kmalloc(XATTR_NAME_MAX + 1, GFP_KERNEL);
2181 if (!attr_name)
2182 return -ENOMEM;
2183
2184 do {
2185 if (!eabuf->EaNameLength)
2186 goto next;
2187
2188 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09002189 "name : <%s>, name_len : %u, value_len : %u, next : %u\n",
2190 eabuf->name, eabuf->EaNameLength,
2191 le16_to_cpu(eabuf->EaValueLength),
2192 le32_to_cpu(eabuf->NextEntryOffset));
Namjae Jeone2f34482021-03-16 10:49:09 +09002193
2194 if (eabuf->EaNameLength >
Namjae Jeon070fb212021-05-26 17:57:12 +09002195 (XATTR_NAME_MAX - XATTR_USER_PREFIX_LEN)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002196 rc = -EINVAL;
2197 break;
2198 }
2199
2200 memcpy(attr_name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN);
2201 memcpy(&attr_name[XATTR_USER_PREFIX_LEN], eabuf->name,
Namjae Jeon070fb212021-05-26 17:57:12 +09002202 eabuf->EaNameLength);
Namjae Jeone2f34482021-03-16 10:49:09 +09002203 attr_name[XATTR_USER_PREFIX_LEN + eabuf->EaNameLength] = '\0';
2204 value = (char *)&eabuf->name + eabuf->EaNameLength + 1;
2205
2206 if (!eabuf->EaValueLength) {
Hyunchul Lee465d7202021-07-03 12:10:36 +09002207 rc = ksmbd_vfs_casexattr_len(user_ns,
Hyunchul Leeaf349832021-06-30 18:25:53 +09002208 path->dentry,
Namjae Jeone2f34482021-03-16 10:49:09 +09002209 attr_name,
2210 XATTR_USER_PREFIX_LEN +
2211 eabuf->EaNameLength);
2212
2213 /* delete the EA only when it exits */
2214 if (rc > 0) {
Hyunchul Lee465d7202021-07-03 12:10:36 +09002215 rc = ksmbd_vfs_remove_xattr(user_ns,
Hyunchul Leeaf349832021-06-30 18:25:53 +09002216 path->dentry,
Namjae Jeone2f34482021-03-16 10:49:09 +09002217 attr_name);
2218
2219 if (rc < 0) {
2220 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09002221 "remove xattr failed(%d)\n",
2222 rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09002223 break;
2224 }
2225 }
2226
2227 /* if the EA doesn't exist, just do nothing. */
2228 rc = 0;
2229 } else {
Hyunchul Lee465d7202021-07-03 12:10:36 +09002230 rc = ksmbd_vfs_setxattr(user_ns,
Hyunchul Leeaf349832021-06-30 18:25:53 +09002231 path->dentry, attr_name, value,
Namjae Jeon070fb212021-05-26 17:57:12 +09002232 le16_to_cpu(eabuf->EaValueLength), 0);
Namjae Jeone2f34482021-03-16 10:49:09 +09002233 if (rc < 0) {
2234 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09002235 "ksmbd_vfs_setxattr is failed(%d)\n",
2236 rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09002237 break;
2238 }
2239 }
2240
2241next:
2242 next = le32_to_cpu(eabuf->NextEntryOffset);
Namjae Jeon9496e262021-09-29 15:41:48 +09002243 if (next == 0 || buf_len < next)
2244 break;
2245 buf_len -= next;
Namjae Jeone2f34482021-03-16 10:49:09 +09002246 eabuf = (struct smb2_ea_info *)((char *)eabuf + next);
Namjae Jeon9496e262021-09-29 15:41:48 +09002247 if (next < (u32)eabuf->EaNameLength + le16_to_cpu(eabuf->EaValueLength))
2248 break;
2249
Namjae Jeone2f34482021-03-16 10:49:09 +09002250 } while (next != 0);
2251
2252 kfree(attr_name);
2253 return rc;
2254}
2255
Namjae Jeone2f34482021-03-16 10:49:09 +09002256static noinline int smb2_set_stream_name_xattr(struct path *path,
Namjae Jeon070fb212021-05-26 17:57:12 +09002257 struct ksmbd_file *fp,
2258 char *stream_name, int s_type)
Namjae Jeone2f34482021-03-16 10:49:09 +09002259{
Hyunchul Lee465d7202021-07-03 12:10:36 +09002260 struct user_namespace *user_ns = mnt_user_ns(path->mnt);
Namjae Jeone2f34482021-03-16 10:49:09 +09002261 size_t xattr_stream_size;
2262 char *xattr_stream_name;
2263 int rc;
2264
2265 rc = ksmbd_vfs_xattr_stream_name(stream_name,
2266 &xattr_stream_name,
2267 &xattr_stream_size,
2268 s_type);
2269 if (rc)
2270 return rc;
2271
2272 fp->stream.name = xattr_stream_name;
2273 fp->stream.size = xattr_stream_size;
2274
2275 /* Check if there is stream prefix in xattr space */
Hyunchul Lee465d7202021-07-03 12:10:36 +09002276 rc = ksmbd_vfs_casexattr_len(user_ns,
Hyunchul Leeaf349832021-06-30 18:25:53 +09002277 path->dentry,
Namjae Jeone2f34482021-03-16 10:49:09 +09002278 xattr_stream_name,
2279 xattr_stream_size);
2280 if (rc >= 0)
2281 return 0;
2282
2283 if (fp->cdoption == FILE_OPEN_LE) {
2284 ksmbd_debug(SMB, "XATTR stream name lookup failed: %d\n", rc);
2285 return -EBADF;
2286 }
2287
Hyunchul Lee465d7202021-07-03 12:10:36 +09002288 rc = ksmbd_vfs_setxattr(user_ns, path->dentry,
2289 xattr_stream_name, NULL, 0, 0);
Namjae Jeone2f34482021-03-16 10:49:09 +09002290 if (rc < 0)
Namjae Jeonbde16942021-06-28 15:23:19 +09002291 pr_err("Failed to store XATTR stream name :%d\n", rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09002292 return 0;
2293}
2294
Hyunchul Leeef24c962021-06-30 18:25:52 +09002295static int smb2_remove_smb_xattrs(struct path *path)
Namjae Jeone2f34482021-03-16 10:49:09 +09002296{
Hyunchul Lee465d7202021-07-03 12:10:36 +09002297 struct user_namespace *user_ns = mnt_user_ns(path->mnt);
Namjae Jeone2f34482021-03-16 10:49:09 +09002298 char *name, *xattr_list = NULL;
2299 ssize_t xattr_list_len;
2300 int err = 0;
2301
Hyunchul Leeef24c962021-06-30 18:25:52 +09002302 xattr_list_len = ksmbd_vfs_listxattr(path->dentry, &xattr_list);
Namjae Jeone2f34482021-03-16 10:49:09 +09002303 if (xattr_list_len < 0) {
2304 goto out;
2305 } else if (!xattr_list_len) {
2306 ksmbd_debug(SMB, "empty xattr in the file\n");
2307 goto out;
2308 }
2309
2310 for (name = xattr_list; name - xattr_list < xattr_list_len;
2311 name += strlen(name) + 1) {
2312 ksmbd_debug(SMB, "%s, len %zd\n", name, strlen(name));
2313
2314 if (strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN) &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09002315 strncmp(&name[XATTR_USER_PREFIX_LEN], DOS_ATTRIBUTE_PREFIX,
2316 DOS_ATTRIBUTE_PREFIX_LEN) &&
2317 strncmp(&name[XATTR_USER_PREFIX_LEN], STREAM_PREFIX, STREAM_PREFIX_LEN))
Namjae Jeone2f34482021-03-16 10:49:09 +09002318 continue;
2319
Hyunchul Lee465d7202021-07-03 12:10:36 +09002320 err = ksmbd_vfs_remove_xattr(user_ns, path->dentry, name);
Namjae Jeone2f34482021-03-16 10:49:09 +09002321 if (err)
2322 ksmbd_debug(SMB, "remove xattr failed : %s\n", name);
2323 }
2324out:
Namjae Jeon79f6b112021-04-02 12:47:14 +09002325 kvfree(xattr_list);
Namjae Jeone2f34482021-03-16 10:49:09 +09002326 return err;
2327}
2328
2329static int smb2_create_truncate(struct path *path)
2330{
2331 int rc = vfs_truncate(path, 0);
2332
2333 if (rc) {
Namjae Jeonbde16942021-06-28 15:23:19 +09002334 pr_err("vfs_truncate failed, rc %d\n", rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09002335 return rc;
2336 }
2337
Hyunchul Leeef24c962021-06-30 18:25:52 +09002338 rc = smb2_remove_smb_xattrs(path);
Namjae Jeone2f34482021-03-16 10:49:09 +09002339 if (rc == -EOPNOTSUPP)
2340 rc = 0;
2341 if (rc)
2342 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09002343 "ksmbd_truncate_stream_name_xattr failed, rc %d\n",
2344 rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09002345 return rc;
2346}
2347
Namjae Jeon64b39f42021-03-30 14:25:35 +09002348static void smb2_new_xattrs(struct ksmbd_tree_connect *tcon, struct path *path,
Namjae Jeon070fb212021-05-26 17:57:12 +09002349 struct ksmbd_file *fp)
Namjae Jeone2f34482021-03-16 10:49:09 +09002350{
2351 struct xattr_dos_attrib da = {0};
2352 int rc;
2353
2354 if (!test_share_config_flag(tcon->share_conf,
2355 KSMBD_SHARE_FLAG_STORE_DOS_ATTRS))
2356 return;
2357
2358 da.version = 4;
2359 da.attr = le32_to_cpu(fp->f_ci->m_fattr);
2360 da.itime = da.create_time = fp->create_time;
2361 da.flags = XATTR_DOSINFO_ATTRIB | XATTR_DOSINFO_CREATE_TIME |
2362 XATTR_DOSINFO_ITIME;
2363
Hyunchul Leeaf349832021-06-30 18:25:53 +09002364 rc = ksmbd_vfs_set_dos_attrib_xattr(mnt_user_ns(path->mnt),
2365 path->dentry, &da);
Namjae Jeone2f34482021-03-16 10:49:09 +09002366 if (rc)
2367 ksmbd_debug(SMB, "failed to store file attribute into xattr\n");
2368}
2369
2370static void smb2_update_xattrs(struct ksmbd_tree_connect *tcon,
Namjae Jeon070fb212021-05-26 17:57:12 +09002371 struct path *path, struct ksmbd_file *fp)
Namjae Jeone2f34482021-03-16 10:49:09 +09002372{
2373 struct xattr_dos_attrib da;
2374 int rc;
2375
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09002376 fp->f_ci->m_fattr &= ~(FILE_ATTRIBUTE_HIDDEN_LE | FILE_ATTRIBUTE_SYSTEM_LE);
Namjae Jeone2f34482021-03-16 10:49:09 +09002377
2378 /* get FileAttributes from XATTR_NAME_DOS_ATTRIBUTE */
2379 if (!test_share_config_flag(tcon->share_conf,
Namjae Jeon64b39f42021-03-30 14:25:35 +09002380 KSMBD_SHARE_FLAG_STORE_DOS_ATTRS))
Namjae Jeone2f34482021-03-16 10:49:09 +09002381 return;
2382
Hyunchul Leeaf349832021-06-30 18:25:53 +09002383 rc = ksmbd_vfs_get_dos_attrib_xattr(mnt_user_ns(path->mnt),
2384 path->dentry, &da);
Namjae Jeone2f34482021-03-16 10:49:09 +09002385 if (rc > 0) {
2386 fp->f_ci->m_fattr = cpu_to_le32(da.attr);
2387 fp->create_time = da.create_time;
2388 fp->itime = da.itime;
2389 }
2390}
2391
Namjae Jeon64b39f42021-03-30 14:25:35 +09002392static int smb2_creat(struct ksmbd_work *work, struct path *path, char *name,
Namjae Jeon070fb212021-05-26 17:57:12 +09002393 int open_flags, umode_t posix_mode, bool is_dir)
Namjae Jeone2f34482021-03-16 10:49:09 +09002394{
2395 struct ksmbd_tree_connect *tcon = work->tcon;
2396 struct ksmbd_share_config *share = tcon->share_conf;
2397 umode_t mode;
2398 int rc;
2399
2400 if (!(open_flags & O_CREAT))
2401 return -EBADF;
2402
2403 ksmbd_debug(SMB, "file does not exist, so creating\n");
2404 if (is_dir == true) {
2405 ksmbd_debug(SMB, "creating directory\n");
2406
2407 mode = share_config_directory_mode(share, posix_mode);
2408 rc = ksmbd_vfs_mkdir(work, name, mode);
2409 if (rc)
2410 return rc;
2411 } else {
2412 ksmbd_debug(SMB, "creating regular file\n");
2413
2414 mode = share_config_create_mode(share, posix_mode);
2415 rc = ksmbd_vfs_create(work, name, mode);
2416 if (rc)
2417 return rc;
2418 }
2419
Hyunchul Lee265fd192021-09-25 00:06:16 +09002420 rc = ksmbd_vfs_kern_path(work, name, 0, path, 0);
Namjae Jeone2f34482021-03-16 10:49:09 +09002421 if (rc) {
Namjae Jeonbde16942021-06-28 15:23:19 +09002422 pr_err("cannot get linux path (%s), err = %d\n",
2423 name, rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09002424 return rc;
2425 }
2426 return 0;
2427}
2428
2429static int smb2_create_sd_buffer(struct ksmbd_work *work,
Namjae Jeon070fb212021-05-26 17:57:12 +09002430 struct smb2_create_req *req,
Hyunchul Leeef24c962021-06-30 18:25:52 +09002431 struct path *path)
Namjae Jeone2f34482021-03-16 10:49:09 +09002432{
2433 struct create_context *context;
Hyunchul Lee21dd1fd2021-07-09 17:06:34 +09002434 struct create_sd_buf_req *sd_buf;
Namjae Jeone2f34482021-03-16 10:49:09 +09002435
2436 if (!req->CreateContextsOffset)
Hyunchul Lee21dd1fd2021-07-09 17:06:34 +09002437 return -ENOENT;
Namjae Jeone2f34482021-03-16 10:49:09 +09002438
2439 /* Parse SD BUFFER create contexts */
2440 context = smb2_find_context_vals(req, SMB2_CREATE_SD_BUFFER);
Hyunchul Lee21dd1fd2021-07-09 17:06:34 +09002441 if (!context)
2442 return -ENOENT;
2443 else if (IS_ERR(context))
2444 return PTR_ERR(context);
Namjae Jeone2f34482021-03-16 10:49:09 +09002445
Hyunchul Lee21dd1fd2021-07-09 17:06:34 +09002446 ksmbd_debug(SMB,
2447 "Set ACLs using SMB2_CREATE_SD_BUFFER context\n");
2448 sd_buf = (struct create_sd_buf_req *)context;
Hyunchul Lee8f771502021-09-24 22:22:22 +09002449 if (le16_to_cpu(context->DataOffset) +
2450 le32_to_cpu(context->DataLength) <
2451 sizeof(struct create_sd_buf_req))
2452 return -EINVAL;
Hyunchul Lee21dd1fd2021-07-09 17:06:34 +09002453 return set_info_sec(work->conn, work->tcon, path, &sd_buf->ntsd,
2454 le32_to_cpu(sd_buf->ccontext.DataLength), true);
Namjae Jeone2f34482021-03-16 10:49:09 +09002455}
2456
Christian Brauner43205ca2021-08-23 17:13:50 +02002457static void ksmbd_acls_fattr(struct smb_fattr *fattr,
2458 struct user_namespace *mnt_userns,
2459 struct inode *inode)
Namjae Jeon3d47e542021-04-20 14:25:35 +09002460{
Christian Brauner43205ca2021-08-23 17:13:50 +02002461 fattr->cf_uid = i_uid_into_mnt(mnt_userns, inode);
2462 fattr->cf_gid = i_gid_into_mnt(mnt_userns, inode);
Namjae Jeon3d47e542021-04-20 14:25:35 +09002463 fattr->cf_mode = inode->i_mode;
Namjae Jeon777cad12021-08-13 08:15:33 +09002464 fattr->cf_acls = NULL;
Namjae Jeon3d47e542021-04-20 14:25:35 +09002465 fattr->cf_dacls = NULL;
2466
Namjae Jeon777cad12021-08-13 08:15:33 +09002467 if (IS_ENABLED(CONFIG_FS_POSIX_ACL)) {
2468 fattr->cf_acls = get_acl(inode, ACL_TYPE_ACCESS);
2469 if (S_ISDIR(inode->i_mode))
2470 fattr->cf_dacls = get_acl(inode, ACL_TYPE_DEFAULT);
2471 }
Namjae Jeon3d47e542021-04-20 14:25:35 +09002472}
2473
Namjae Jeone2f34482021-03-16 10:49:09 +09002474/**
2475 * smb2_open() - handler for smb file open request
2476 * @work: smb work containing request buffer
2477 *
2478 * Return: 0 on success, otherwise error
2479 */
2480int smb2_open(struct ksmbd_work *work)
2481{
2482 struct ksmbd_conn *conn = work->conn;
2483 struct ksmbd_session *sess = work->sess;
2484 struct ksmbd_tree_connect *tcon = work->tcon;
2485 struct smb2_create_req *req;
Namjae Jeoncb451722021-11-03 08:08:44 +09002486 struct smb2_create_rsp *rsp;
Namjae Jeone2f34482021-03-16 10:49:09 +09002487 struct path path;
2488 struct ksmbd_share_config *share = tcon->share_conf;
2489 struct ksmbd_file *fp = NULL;
2490 struct file *filp = NULL;
Hyunchul Lee465d7202021-07-03 12:10:36 +09002491 struct user_namespace *user_ns = NULL;
Namjae Jeone2f34482021-03-16 10:49:09 +09002492 struct kstat stat;
2493 struct create_context *context;
2494 struct lease_ctx_info *lc = NULL;
2495 struct create_ea_buf_req *ea_buf = NULL;
2496 struct oplock_info *opinfo;
2497 __le32 *next_ptr = NULL;
Hyunchul Lee6c5e36d2021-06-23 13:48:24 +09002498 int req_op_level = 0, open_flags = 0, may_flags = 0, file_info = 0;
Hyunchul Lee265fd192021-09-25 00:06:16 +09002499 int rc = 0;
Namjae Jeone2f34482021-03-16 10:49:09 +09002500 int contxt_cnt = 0, query_disk_id = 0;
2501 int maximal_access_ctxt = 0, posix_ctxt = 0;
2502 int s_type = 0;
2503 int next_off = 0;
2504 char *name = NULL;
2505 char *stream_name = NULL;
2506 bool file_present = false, created = false, already_permitted = false;
Namjae Jeone2f34482021-03-16 10:49:09 +09002507 int share_ret, need_truncate = 0;
2508 u64 time;
2509 umode_t posix_mode = 0;
2510 __le32 daccess, maximal_access = 0;
2511
Namjae Jeone2f34482021-03-16 10:49:09 +09002512 WORK_BUFFERS(work, req, rsp);
2513
2514 if (req->hdr.NextCommand && !work->next_smb2_rcv_hdr_off &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09002515 (req->hdr.Flags & SMB2_FLAGS_RELATED_OPERATIONS)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002516 ksmbd_debug(SMB, "invalid flag in chained command\n");
2517 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
2518 smb2_set_err_rsp(work);
2519 return -EINVAL;
2520 }
2521
2522 if (test_share_config_flag(share, KSMBD_SHARE_FLAG_PIPE)) {
2523 ksmbd_debug(SMB, "IPC pipe create request\n");
2524 return create_smb2_pipe(work);
2525 }
2526
2527 if (req->NameLength) {
2528 if ((req->CreateOptions & FILE_DIRECTORY_FILE_LE) &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09002529 *(char *)req->Buffer == '\\') {
Namjae Jeonbde16942021-06-28 15:23:19 +09002530 pr_err("not allow directory name included leading slash\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09002531 rc = -EINVAL;
2532 goto err_out1;
2533 }
2534
Marios Makassikis80917f12021-12-01 21:41:19 +01002535 name = smb2_get_name(req->Buffer,
Namjae Jeone2f34482021-03-16 10:49:09 +09002536 le16_to_cpu(req->NameLength),
2537 work->conn->local_nls);
2538 if (IS_ERR(name)) {
2539 rc = PTR_ERR(name);
2540 if (rc != -ENOMEM)
2541 rc = -ENOENT;
Dan Carpenter8b99f352021-08-02 08:14:03 +09002542 name = NULL;
Namjae Jeone2f34482021-03-16 10:49:09 +09002543 goto err_out1;
2544 }
2545
2546 ksmbd_debug(SMB, "converted name = %s\n", name);
2547 if (strchr(name, ':')) {
2548 if (!test_share_config_flag(work->tcon->share_conf,
Namjae Jeon64b39f42021-03-30 14:25:35 +09002549 KSMBD_SHARE_FLAG_STREAMS)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002550 rc = -EBADF;
2551 goto err_out1;
2552 }
2553 rc = parse_stream_name(name, &stream_name, &s_type);
2554 if (rc < 0)
2555 goto err_out1;
2556 }
2557
2558 rc = ksmbd_validate_filename(name);
2559 if (rc < 0)
2560 goto err_out1;
2561
2562 if (ksmbd_share_veto_filename(share, name)) {
2563 rc = -ENOENT;
2564 ksmbd_debug(SMB, "Reject open(), vetoed file: %s\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09002565 name);
Namjae Jeone2f34482021-03-16 10:49:09 +09002566 goto err_out1;
2567 }
2568 } else {
Hyunchul Lee265fd192021-09-25 00:06:16 +09002569 name = kstrdup("", GFP_KERNEL);
Namjae Jeone2f34482021-03-16 10:49:09 +09002570 if (!name) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002571 rc = -ENOMEM;
2572 goto err_out1;
2573 }
Namjae Jeone2f34482021-03-16 10:49:09 +09002574 }
2575
2576 req_op_level = req->RequestedOplockLevel;
Namjae Jeon73f9dad2021-04-16 14:12:06 +09002577 if (req_op_level == SMB2_OPLOCK_LEVEL_LEASE)
Namjae Jeone2f34482021-03-16 10:49:09 +09002578 lc = parse_lease_state(req);
Namjae Jeone2f34482021-03-16 10:49:09 +09002579
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09002580 if (le32_to_cpu(req->ImpersonationLevel) > le32_to_cpu(IL_DELEGATE)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09002581 pr_err("Invalid impersonationlevel : 0x%x\n",
2582 le32_to_cpu(req->ImpersonationLevel));
Namjae Jeone2f34482021-03-16 10:49:09 +09002583 rc = -EIO;
2584 rsp->hdr.Status = STATUS_BAD_IMPERSONATION_LEVEL;
2585 goto err_out1;
2586 }
2587
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09002588 if (req->CreateOptions && !(req->CreateOptions & CREATE_OPTIONS_MASK_LE)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09002589 pr_err("Invalid create options : 0x%x\n",
2590 le32_to_cpu(req->CreateOptions));
Namjae Jeone2f34482021-03-16 10:49:09 +09002591 rc = -EINVAL;
2592 goto err_out1;
2593 } else {
Namjae Jeone2f34482021-03-16 10:49:09 +09002594 if (req->CreateOptions & FILE_SEQUENTIAL_ONLY_LE &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09002595 req->CreateOptions & FILE_RANDOM_ACCESS_LE)
Namjae Jeone2f34482021-03-16 10:49:09 +09002596 req->CreateOptions = ~(FILE_SEQUENTIAL_ONLY_LE);
2597
Namjae Jeon070fb212021-05-26 17:57:12 +09002598 if (req->CreateOptions &
2599 (FILE_OPEN_BY_FILE_ID_LE | CREATE_TREE_CONNECTION |
2600 FILE_RESERVE_OPFILTER_LE)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002601 rc = -EOPNOTSUPP;
2602 goto err_out1;
2603 }
2604
2605 if (req->CreateOptions & FILE_DIRECTORY_FILE_LE) {
2606 if (req->CreateOptions & FILE_NON_DIRECTORY_FILE_LE) {
2607 rc = -EINVAL;
2608 goto err_out1;
Namjae Jeon64b39f42021-03-30 14:25:35 +09002609 } else if (req->CreateOptions & FILE_NO_COMPRESSION_LE) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002610 req->CreateOptions = ~(FILE_NO_COMPRESSION_LE);
Namjae Jeon64b39f42021-03-30 14:25:35 +09002611 }
Namjae Jeone2f34482021-03-16 10:49:09 +09002612 }
2613 }
2614
2615 if (le32_to_cpu(req->CreateDisposition) >
Namjae Jeon070fb212021-05-26 17:57:12 +09002616 le32_to_cpu(FILE_OVERWRITE_IF_LE)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09002617 pr_err("Invalid create disposition : 0x%x\n",
2618 le32_to_cpu(req->CreateDisposition));
Namjae Jeone2f34482021-03-16 10:49:09 +09002619 rc = -EINVAL;
2620 goto err_out1;
2621 }
2622
2623 if (!(req->DesiredAccess & DESIRED_ACCESS_MASK)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09002624 pr_err("Invalid desired access : 0x%x\n",
2625 le32_to_cpu(req->DesiredAccess));
Namjae Jeone2f34482021-03-16 10:49:09 +09002626 rc = -EACCES;
2627 goto err_out1;
2628 }
2629
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09002630 if (req->FileAttributes && !(req->FileAttributes & FILE_ATTRIBUTE_MASK_LE)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09002631 pr_err("Invalid file attribute : 0x%x\n",
2632 le32_to_cpu(req->FileAttributes));
Namjae Jeone2f34482021-03-16 10:49:09 +09002633 rc = -EINVAL;
2634 goto err_out1;
2635 }
2636
2637 if (req->CreateContextsOffset) {
2638 /* Parse non-durable handle create contexts */
2639 context = smb2_find_context_vals(req, SMB2_CREATE_EA_BUFFER);
Namjae Jeonf19b3962021-07-13 09:59:34 +09002640 if (IS_ERR(context)) {
2641 rc = PTR_ERR(context);
2642 goto err_out1;
2643 } else if (context) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002644 ea_buf = (struct create_ea_buf_req *)context;
Hyunchul Lee8f771502021-09-24 22:22:22 +09002645 if (le16_to_cpu(context->DataOffset) +
2646 le32_to_cpu(context->DataLength) <
2647 sizeof(struct create_ea_buf_req)) {
2648 rc = -EINVAL;
2649 goto err_out1;
2650 }
Namjae Jeone2f34482021-03-16 10:49:09 +09002651 if (req->CreateOptions & FILE_NO_EA_KNOWLEDGE_LE) {
2652 rsp->hdr.Status = STATUS_ACCESS_DENIED;
2653 rc = -EACCES;
2654 goto err_out1;
2655 }
2656 }
2657
2658 context = smb2_find_context_vals(req,
Namjae Jeon070fb212021-05-26 17:57:12 +09002659 SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST);
Namjae Jeonf19b3962021-07-13 09:59:34 +09002660 if (IS_ERR(context)) {
2661 rc = PTR_ERR(context);
2662 goto err_out1;
2663 } else if (context) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002664 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09002665 "get query maximal access context\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09002666 maximal_access_ctxt = 1;
2667 }
2668
2669 context = smb2_find_context_vals(req,
Namjae Jeon070fb212021-05-26 17:57:12 +09002670 SMB2_CREATE_TIMEWARP_REQUEST);
Namjae Jeonf19b3962021-07-13 09:59:34 +09002671 if (IS_ERR(context)) {
2672 rc = PTR_ERR(context);
2673 goto err_out1;
2674 } else if (context) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002675 ksmbd_debug(SMB, "get timewarp context\n");
2676 rc = -EBADF;
2677 goto err_out1;
2678 }
2679
2680 if (tcon->posix_extensions) {
2681 context = smb2_find_context_vals(req,
Namjae Jeon070fb212021-05-26 17:57:12 +09002682 SMB2_CREATE_TAG_POSIX);
Namjae Jeonf19b3962021-07-13 09:59:34 +09002683 if (IS_ERR(context)) {
2684 rc = PTR_ERR(context);
2685 goto err_out1;
2686 } else if (context) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002687 struct create_posix *posix =
2688 (struct create_posix *)context;
Hyunchul Lee8f771502021-09-24 22:22:22 +09002689 if (le16_to_cpu(context->DataOffset) +
2690 le32_to_cpu(context->DataLength) <
Namjae Jeon9ca85812022-01-22 10:47:22 +09002691 sizeof(struct create_posix) - 4) {
Hyunchul Lee8f771502021-09-24 22:22:22 +09002692 rc = -EINVAL;
2693 goto err_out1;
2694 }
Namjae Jeone2f34482021-03-16 10:49:09 +09002695 ksmbd_debug(SMB, "get posix context\n");
2696
2697 posix_mode = le32_to_cpu(posix->Mode);
2698 posix_ctxt = 1;
2699 }
2700 }
2701 }
2702
2703 if (ksmbd_override_fsids(work)) {
2704 rc = -ENOMEM;
2705 goto err_out1;
2706 }
2707
Hyunchul Lee265fd192021-09-25 00:06:16 +09002708 rc = ksmbd_vfs_kern_path(work, name, LOOKUP_NO_SYMLINKS, &path, 1);
Namjae Jeon4ea47792021-09-21 14:19:33 +09002709 if (!rc) {
2710 if (req->CreateOptions & FILE_DELETE_ON_CLOSE_LE) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002711 /*
2712 * If file exists with under flags, return access
2713 * denied error.
2714 */
2715 if (req->CreateDisposition == FILE_OVERWRITE_IF_LE ||
Namjae Jeon64b39f42021-03-30 14:25:35 +09002716 req->CreateDisposition == FILE_OPEN_IF_LE) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002717 rc = -EACCES;
2718 path_put(&path);
2719 goto err_out;
2720 }
2721
Namjae Jeon64b39f42021-03-30 14:25:35 +09002722 if (!test_tree_conn_flag(tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002723 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09002724 "User does not have write permission\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09002725 rc = -EACCES;
2726 path_put(&path);
2727 goto err_out;
2728 }
Namjae Jeon4ea47792021-09-21 14:19:33 +09002729 } else if (d_is_symlink(path.dentry)) {
2730 rc = -EACCES;
2731 path_put(&path);
2732 goto err_out;
Namjae Jeone2f34482021-03-16 10:49:09 +09002733 }
2734 }
2735
2736 if (rc) {
Hyunchul Lee265fd192021-09-25 00:06:16 +09002737 if (rc != -ENOENT)
Namjae Jeone2f34482021-03-16 10:49:09 +09002738 goto err_out;
Namjae Jeone2f34482021-03-16 10:49:09 +09002739 ksmbd_debug(SMB, "can not get linux path for %s, rc = %d\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09002740 name, rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09002741 rc = 0;
2742 } else {
2743 file_present = true;
Hyunchul Lee465d7202021-07-03 12:10:36 +09002744 user_ns = mnt_user_ns(path.mnt);
2745 generic_fillattr(user_ns, d_inode(path.dentry), &stat);
Namjae Jeone2f34482021-03-16 10:49:09 +09002746 }
2747 if (stream_name) {
2748 if (req->CreateOptions & FILE_DIRECTORY_FILE_LE) {
2749 if (s_type == DATA_STREAM) {
2750 rc = -EIO;
2751 rsp->hdr.Status = STATUS_NOT_A_DIRECTORY;
2752 }
2753 } else {
2754 if (S_ISDIR(stat.mode) && s_type == DATA_STREAM) {
2755 rc = -EIO;
2756 rsp->hdr.Status = STATUS_FILE_IS_A_DIRECTORY;
2757 }
2758 }
2759
2760 if (req->CreateOptions & FILE_DIRECTORY_FILE_LE &&
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09002761 req->FileAttributes & FILE_ATTRIBUTE_NORMAL_LE) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002762 rsp->hdr.Status = STATUS_NOT_A_DIRECTORY;
2763 rc = -EIO;
2764 }
2765
2766 if (rc < 0)
2767 goto err_out;
2768 }
2769
Namjae Jeon64b39f42021-03-30 14:25:35 +09002770 if (file_present && req->CreateOptions & FILE_NON_DIRECTORY_FILE_LE &&
2771 S_ISDIR(stat.mode) && !(req->CreateOptions & FILE_DELETE_ON_CLOSE_LE)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002772 ksmbd_debug(SMB, "open() argument is a directory: %s, %x\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09002773 name, req->CreateOptions);
Namjae Jeone2f34482021-03-16 10:49:09 +09002774 rsp->hdr.Status = STATUS_FILE_IS_A_DIRECTORY;
2775 rc = -EIO;
2776 goto err_out;
2777 }
2778
2779 if (file_present && (req->CreateOptions & FILE_DIRECTORY_FILE_LE) &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09002780 !(req->CreateDisposition == FILE_CREATE_LE) &&
2781 !S_ISDIR(stat.mode)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002782 rsp->hdr.Status = STATUS_NOT_A_DIRECTORY;
2783 rc = -EIO;
2784 goto err_out;
2785 }
2786
2787 if (!stream_name && file_present &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09002788 req->CreateDisposition == FILE_CREATE_LE) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002789 rc = -EEXIST;
2790 goto err_out;
2791 }
2792
Namjae Jeone2f34482021-03-16 10:49:09 +09002793 daccess = smb_map_generic_desired_access(req->DesiredAccess);
2794
2795 if (file_present && !(req->CreateOptions & FILE_DELETE_ON_CLOSE_LE)) {
Hyunchul Leeef24c962021-06-30 18:25:52 +09002796 rc = smb_check_perm_dacl(conn, &path, &daccess,
Namjae Jeon070fb212021-05-26 17:57:12 +09002797 sess->user->uid);
Namjae Jeone2f34482021-03-16 10:49:09 +09002798 if (rc)
2799 goto err_out;
2800 }
2801
2802 if (daccess & FILE_MAXIMAL_ACCESS_LE) {
2803 if (!file_present) {
2804 daccess = cpu_to_le32(GENERIC_ALL_FLAGS);
2805 } else {
Hyunchul Lee465d7202021-07-03 12:10:36 +09002806 rc = ksmbd_vfs_query_maximal_access(user_ns,
Hyunchul Leeaf349832021-06-30 18:25:53 +09002807 path.dentry,
Namjae Jeone2f34482021-03-16 10:49:09 +09002808 &daccess);
2809 if (rc)
2810 goto err_out;
2811 already_permitted = true;
2812 }
2813 maximal_access = daccess;
2814 }
2815
Namjae Jeon070fb212021-05-26 17:57:12 +09002816 open_flags = smb2_create_open_flags(file_present, daccess,
Hyunchul Lee6c5e36d2021-06-23 13:48:24 +09002817 req->CreateDisposition,
2818 &may_flags);
Namjae Jeone2f34482021-03-16 10:49:09 +09002819
2820 if (!test_tree_conn_flag(tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) {
2821 if (open_flags & O_CREAT) {
2822 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09002823 "User does not have write permission\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09002824 rc = -EACCES;
2825 goto err_out;
2826 }
2827 }
2828
2829 /*create file if not present */
2830 if (!file_present) {
2831 rc = smb2_creat(work, &path, name, open_flags, posix_mode,
Namjae Jeon070fb212021-05-26 17:57:12 +09002832 req->CreateOptions & FILE_DIRECTORY_FILE_LE);
Marios Makassikisd337a442021-07-27 09:24:51 +09002833 if (rc) {
2834 if (rc == -ENOENT) {
2835 rc = -EIO;
2836 rsp->hdr.Status = STATUS_OBJECT_PATH_NOT_FOUND;
2837 }
Namjae Jeone2f34482021-03-16 10:49:09 +09002838 goto err_out;
Marios Makassikisd337a442021-07-27 09:24:51 +09002839 }
Namjae Jeone2f34482021-03-16 10:49:09 +09002840
2841 created = true;
Hyunchul Lee465d7202021-07-03 12:10:36 +09002842 user_ns = mnt_user_ns(path.mnt);
Namjae Jeone2f34482021-03-16 10:49:09 +09002843 if (ea_buf) {
Namjae Jeon9496e262021-09-29 15:41:48 +09002844 if (le32_to_cpu(ea_buf->ccontext.DataLength) <
2845 sizeof(struct smb2_ea_info)) {
2846 rc = -EINVAL;
2847 goto err_out;
2848 }
2849
2850 rc = smb2_set_ea(&ea_buf->ea,
2851 le32_to_cpu(ea_buf->ccontext.DataLength),
2852 &path);
Namjae Jeone2f34482021-03-16 10:49:09 +09002853 if (rc == -EOPNOTSUPP)
2854 rc = 0;
2855 else if (rc)
2856 goto err_out;
2857 }
2858 } else if (!already_permitted) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002859 /* FILE_READ_ATTRIBUTE is allowed without inode_permission,
2860 * because execute(search) permission on a parent directory,
2861 * is already granted.
2862 */
Namjae Jeon64b39f42021-03-30 14:25:35 +09002863 if (daccess & ~(FILE_READ_ATTRIBUTES_LE | FILE_READ_CONTROL_LE)) {
Hyunchul Lee465d7202021-07-03 12:10:36 +09002864 rc = inode_permission(user_ns,
Hyunchul Lee6c5e36d2021-06-23 13:48:24 +09002865 d_inode(path.dentry),
2866 may_flags);
Namjae Jeonff1d5722021-04-13 13:18:10 +09002867 if (rc)
Namjae Jeone2f34482021-03-16 10:49:09 +09002868 goto err_out;
Hyunchul Lee6c5e36d2021-06-23 13:48:24 +09002869
2870 if ((daccess & FILE_DELETE_LE) ||
2871 (req->CreateOptions & FILE_DELETE_ON_CLOSE_LE)) {
Hyunchul Lee465d7202021-07-03 12:10:36 +09002872 rc = ksmbd_vfs_may_delete(user_ns,
Hyunchul Leeaf349832021-06-30 18:25:53 +09002873 path.dentry);
Hyunchul Lee6c5e36d2021-06-23 13:48:24 +09002874 if (rc)
2875 goto err_out;
2876 }
Namjae Jeone2f34482021-03-16 10:49:09 +09002877 }
2878 }
2879
2880 rc = ksmbd_query_inode_status(d_inode(path.dentry->d_parent));
2881 if (rc == KSMBD_INODE_STATUS_PENDING_DELETE) {
2882 rc = -EBUSY;
2883 goto err_out;
2884 }
2885
2886 rc = 0;
2887 filp = dentry_open(&path, open_flags, current_cred());
2888 if (IS_ERR(filp)) {
2889 rc = PTR_ERR(filp);
Namjae Jeonbde16942021-06-28 15:23:19 +09002890 pr_err("dentry open for dir failed, rc %d\n", rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09002891 goto err_out;
2892 }
2893
2894 if (file_present) {
2895 if (!(open_flags & O_TRUNC))
2896 file_info = FILE_OPENED;
2897 else
2898 file_info = FILE_OVERWRITTEN;
2899
Namjae Jeon070fb212021-05-26 17:57:12 +09002900 if ((req->CreateDisposition & FILE_CREATE_MASK_LE) ==
2901 FILE_SUPERSEDE_LE)
Namjae Jeone2f34482021-03-16 10:49:09 +09002902 file_info = FILE_SUPERSEDED;
Namjae Jeon64b39f42021-03-30 14:25:35 +09002903 } else if (open_flags & O_CREAT) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002904 file_info = FILE_CREATED;
Namjae Jeon64b39f42021-03-30 14:25:35 +09002905 }
Namjae Jeone2f34482021-03-16 10:49:09 +09002906
2907 ksmbd_vfs_set_fadvise(filp, req->CreateOptions);
2908
2909 /* Obtain Volatile-ID */
2910 fp = ksmbd_open_fd(work, filp);
2911 if (IS_ERR(fp)) {
2912 fput(filp);
2913 rc = PTR_ERR(fp);
2914 fp = NULL;
2915 goto err_out;
2916 }
2917
2918 /* Get Persistent-ID */
2919 ksmbd_open_durable_fd(fp);
Namjae Jeon38673692021-07-08 12:32:27 +09002920 if (!has_file_id(fp->persistent_id)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002921 rc = -ENOMEM;
2922 goto err_out;
2923 }
2924
2925 fp->filename = name;
2926 fp->cdoption = req->CreateDisposition;
2927 fp->daccess = daccess;
2928 fp->saccess = req->ShareAccess;
2929 fp->coption = req->CreateOptions;
2930
2931 /* Set default windows and posix acls if creating new file */
2932 if (created) {
2933 int posix_acl_rc;
Namjae Jeonfba08fa2021-04-15 10:29:39 +09002934 struct inode *inode = d_inode(path.dentry);
Namjae Jeone2f34482021-03-16 10:49:09 +09002935
Hyunchul Lee465d7202021-07-03 12:10:36 +09002936 posix_acl_rc = ksmbd_vfs_inherit_posix_acl(user_ns,
Hyunchul Leeaf349832021-06-30 18:25:53 +09002937 inode,
2938 d_inode(path.dentry->d_parent));
Namjae Jeone2f34482021-03-16 10:49:09 +09002939 if (posix_acl_rc)
2940 ksmbd_debug(SMB, "inherit posix acl failed : %d\n", posix_acl_rc);
2941
2942 if (test_share_config_flag(work->tcon->share_conf,
Namjae Jeon64b39f42021-03-30 14:25:35 +09002943 KSMBD_SHARE_FLAG_ACL_XATTR)) {
Hyunchul Leeef24c962021-06-30 18:25:52 +09002944 rc = smb_inherit_dacl(conn, &path, sess->user->uid,
Namjae Jeon070fb212021-05-26 17:57:12 +09002945 sess->user->gid);
Namjae Jeone2f34482021-03-16 10:49:09 +09002946 }
2947
2948 if (rc) {
Hyunchul Leeef24c962021-06-30 18:25:52 +09002949 rc = smb2_create_sd_buffer(work, req, &path);
Namjae Jeone2f34482021-03-16 10:49:09 +09002950 if (rc) {
2951 if (posix_acl_rc)
Hyunchul Lee465d7202021-07-03 12:10:36 +09002952 ksmbd_vfs_set_init_posix_acl(user_ns,
Hyunchul Leeaf349832021-06-30 18:25:53 +09002953 inode);
Namjae Jeone2f34482021-03-16 10:49:09 +09002954
2955 if (test_share_config_flag(work->tcon->share_conf,
Namjae Jeon64b39f42021-03-30 14:25:35 +09002956 KSMBD_SHARE_FLAG_ACL_XATTR)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09002957 struct smb_fattr fattr;
2958 struct smb_ntsd *pntsd;
Namjae Jeon3d47e542021-04-20 14:25:35 +09002959 int pntsd_size, ace_num = 0;
Namjae Jeone2f34482021-03-16 10:49:09 +09002960
Christian Brauner43205ca2021-08-23 17:13:50 +02002961 ksmbd_acls_fattr(&fattr, user_ns, inode);
Marios Makassikise6b10592021-04-15 10:24:56 +09002962 if (fattr.cf_acls)
2963 ace_num = fattr.cf_acls->a_count;
Namjae Jeon3d47e542021-04-20 14:25:35 +09002964 if (fattr.cf_dacls)
2965 ace_num += fattr.cf_dacls->a_count;
Namjae Jeone2f34482021-03-16 10:49:09 +09002966
2967 pntsd = kmalloc(sizeof(struct smb_ntsd) +
Namjae Jeon64b39f42021-03-30 14:25:35 +09002968 sizeof(struct smb_sid) * 3 +
Namjae Jeone2f34482021-03-16 10:49:09 +09002969 sizeof(struct smb_acl) +
Namjae Jeon64b39f42021-03-30 14:25:35 +09002970 sizeof(struct smb_ace) * ace_num * 2,
Namjae Jeone2f34482021-03-16 10:49:09 +09002971 GFP_KERNEL);
2972 if (!pntsd)
2973 goto err_out;
2974
Hyunchul Lee465d7202021-07-03 12:10:36 +09002975 rc = build_sec_desc(user_ns,
Hyunchul Leeaf349832021-06-30 18:25:53 +09002976 pntsd, NULL,
Namjae Jeon070fb212021-05-26 17:57:12 +09002977 OWNER_SECINFO |
Hyunchul Leeaf349832021-06-30 18:25:53 +09002978 GROUP_SECINFO |
2979 DACL_SECINFO,
Namjae Jeon070fb212021-05-26 17:57:12 +09002980 &pntsd_size, &fattr);
Namjae Jeone2f34482021-03-16 10:49:09 +09002981 posix_acl_release(fattr.cf_acls);
2982 posix_acl_release(fattr.cf_dacls);
Namjae Jeonf2e78af2021-12-01 10:12:39 +09002983 if (rc) {
2984 kfree(pntsd);
2985 goto err_out;
2986 }
Namjae Jeone2f34482021-03-16 10:49:09 +09002987
2988 rc = ksmbd_vfs_set_sd_xattr(conn,
Hyunchul Lee465d7202021-07-03 12:10:36 +09002989 user_ns,
Namjae Jeon070fb212021-05-26 17:57:12 +09002990 path.dentry,
2991 pntsd,
2992 pntsd_size);
Namjae Jeon3d47e542021-04-20 14:25:35 +09002993 kfree(pntsd);
Namjae Jeone2f34482021-03-16 10:49:09 +09002994 if (rc)
Namjae Jeonbde16942021-06-28 15:23:19 +09002995 pr_err("failed to store ntacl in xattr : %d\n",
2996 rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09002997 }
2998 }
2999 }
3000 rc = 0;
3001 }
3002
3003 if (stream_name) {
3004 rc = smb2_set_stream_name_xattr(&path,
3005 fp,
3006 stream_name,
3007 s_type);
3008 if (rc)
3009 goto err_out;
3010 file_info = FILE_CREATED;
3011 }
3012
3013 fp->attrib_only = !(req->DesiredAccess & ~(FILE_READ_ATTRIBUTES_LE |
3014 FILE_WRITE_ATTRIBUTES_LE | FILE_SYNCHRONIZE_LE));
Namjae Jeon64b39f42021-03-30 14:25:35 +09003015 if (!S_ISDIR(file_inode(filp)->i_mode) && open_flags & O_TRUNC &&
3016 !fp->attrib_only && !stream_name) {
Namjae Jeone2f34482021-03-16 10:49:09 +09003017 smb_break_all_oplock(work, fp);
3018 need_truncate = 1;
3019 }
3020
3021 /* fp should be searchable through ksmbd_inode.m_fp_list
3022 * after daccess, saccess, attrib_only, and stream are
3023 * initialized.
3024 */
3025 write_lock(&fp->f_ci->m_lock);
3026 list_add(&fp->node, &fp->f_ci->m_fp_list);
3027 write_unlock(&fp->f_ci->m_lock);
3028
3029 rc = ksmbd_vfs_getattr(&path, &stat);
3030 if (rc) {
Hyunchul Lee465d7202021-07-03 12:10:36 +09003031 generic_fillattr(user_ns, d_inode(path.dentry), &stat);
Namjae Jeone2f34482021-03-16 10:49:09 +09003032 rc = 0;
3033 }
3034
3035 /* Check delete pending among previous fp before oplock break */
3036 if (ksmbd_inode_pending_delete(fp)) {
3037 rc = -EBUSY;
3038 goto err_out;
3039 }
3040
3041 share_ret = ksmbd_smb_check_shared_mode(fp->filp, fp);
Namjae Jeon64b39f42021-03-30 14:25:35 +09003042 if (!test_share_config_flag(work->tcon->share_conf, KSMBD_SHARE_FLAG_OPLOCKS) ||
3043 (req_op_level == SMB2_OPLOCK_LEVEL_LEASE &&
3044 !(conn->vals->capabilities & SMB2_GLOBAL_CAP_LEASING))) {
Namjae Jeonab0b2632021-06-29 09:20:13 +09003045 if (share_ret < 0 && !S_ISDIR(file_inode(fp->filp)->i_mode)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09003046 rc = share_ret;
3047 goto err_out;
3048 }
3049 } else {
3050 if (req_op_level == SMB2_OPLOCK_LEVEL_LEASE) {
3051 req_op_level = smb2_map_lease_to_oplock(lc->req_state);
3052 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09003053 "lease req for(%s) req oplock state 0x%x, lease state 0x%x\n",
3054 name, req_op_level, lc->req_state);
Namjae Jeone2f34482021-03-16 10:49:09 +09003055 rc = find_same_lease_key(sess, fp->f_ci, lc);
3056 if (rc)
3057 goto err_out;
3058 } else if (open_flags == O_RDONLY &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09003059 (req_op_level == SMB2_OPLOCK_LEVEL_BATCH ||
3060 req_op_level == SMB2_OPLOCK_LEVEL_EXCLUSIVE))
Namjae Jeone2f34482021-03-16 10:49:09 +09003061 req_op_level = SMB2_OPLOCK_LEVEL_II;
3062
3063 rc = smb_grant_oplock(work, req_op_level,
3064 fp->persistent_id, fp,
3065 le32_to_cpu(req->hdr.Id.SyncId.TreeId),
3066 lc, share_ret);
3067 if (rc < 0)
3068 goto err_out;
3069 }
3070
3071 if (req->CreateOptions & FILE_DELETE_ON_CLOSE_LE)
3072 ksmbd_fd_set_delete_on_close(fp, file_info);
3073
3074 if (need_truncate) {
3075 rc = smb2_create_truncate(&path);
3076 if (rc)
3077 goto err_out;
3078 }
3079
3080 if (req->CreateContextsOffset) {
3081 struct create_alloc_size_req *az_req;
3082
Namjae Jeon070fb212021-05-26 17:57:12 +09003083 az_req = (struct create_alloc_size_req *)smb2_find_context_vals(req,
3084 SMB2_CREATE_ALLOCATION_SIZE);
Namjae Jeonf19b3962021-07-13 09:59:34 +09003085 if (IS_ERR(az_req)) {
3086 rc = PTR_ERR(az_req);
3087 goto err_out;
3088 } else if (az_req) {
Hyunchul Lee8f771502021-09-24 22:22:22 +09003089 loff_t alloc_size;
Namjae Jeone2f34482021-03-16 10:49:09 +09003090 int err;
3091
Hyunchul Lee8f771502021-09-24 22:22:22 +09003092 if (le16_to_cpu(az_req->ccontext.DataOffset) +
3093 le32_to_cpu(az_req->ccontext.DataLength) <
3094 sizeof(struct create_alloc_size_req)) {
3095 rc = -EINVAL;
3096 goto err_out;
3097 }
3098 alloc_size = le64_to_cpu(az_req->AllocationSize);
Namjae Jeone2f34482021-03-16 10:49:09 +09003099 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09003100 "request smb2 create allocate size : %llu\n",
3101 alloc_size);
Namjae Jeone8c06192021-06-22 11:06:11 +09003102 smb_break_all_levII_oplock(work, fp, 1);
3103 err = vfs_fallocate(fp->filp, FALLOC_FL_KEEP_SIZE, 0,
3104 alloc_size);
Namjae Jeone2f34482021-03-16 10:49:09 +09003105 if (err < 0)
3106 ksmbd_debug(SMB,
Namjae Jeone8c06192021-06-22 11:06:11 +09003107 "vfs_fallocate is failed : %d\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09003108 err);
Namjae Jeone2f34482021-03-16 10:49:09 +09003109 }
3110
Namjae Jeon64b39f42021-03-30 14:25:35 +09003111 context = smb2_find_context_vals(req, SMB2_CREATE_QUERY_ON_DISK_ID);
Namjae Jeonf19b3962021-07-13 09:59:34 +09003112 if (IS_ERR(context)) {
3113 rc = PTR_ERR(context);
3114 goto err_out;
3115 } else if (context) {
Namjae Jeone2f34482021-03-16 10:49:09 +09003116 ksmbd_debug(SMB, "get query on disk id context\n");
3117 query_disk_id = 1;
3118 }
3119 }
3120
3121 if (stat.result_mask & STATX_BTIME)
3122 fp->create_time = ksmbd_UnixTimeToNT(stat.btime);
3123 else
3124 fp->create_time = ksmbd_UnixTimeToNT(stat.ctime);
3125 if (req->FileAttributes || fp->f_ci->m_fattr == 0)
Namjae Jeon070fb212021-05-26 17:57:12 +09003126 fp->f_ci->m_fattr =
3127 cpu_to_le32(smb2_get_dos_mode(&stat, le32_to_cpu(req->FileAttributes)));
Namjae Jeone2f34482021-03-16 10:49:09 +09003128
3129 if (!created)
3130 smb2_update_xattrs(tcon, &path, fp);
3131 else
3132 smb2_new_xattrs(tcon, &path, fp);
3133
3134 memcpy(fp->client_guid, conn->ClientGUID, SMB2_CLIENT_GUID_SIZE);
3135
Hyunchul Lee465d7202021-07-03 12:10:36 +09003136 generic_fillattr(user_ns, file_inode(fp->filp),
Hyunchul Leeaf349832021-06-30 18:25:53 +09003137 &stat);
Namjae Jeone2f34482021-03-16 10:49:09 +09003138
3139 rsp->StructureSize = cpu_to_le16(89);
3140 rcu_read_lock();
3141 opinfo = rcu_dereference(fp->f_opinfo);
3142 rsp->OplockLevel = opinfo != NULL ? opinfo->level : 0;
3143 rcu_read_unlock();
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09003144 rsp->Flags = 0;
Namjae Jeone2f34482021-03-16 10:49:09 +09003145 rsp->CreateAction = cpu_to_le32(file_info);
3146 rsp->CreationTime = cpu_to_le64(fp->create_time);
3147 time = ksmbd_UnixTimeToNT(stat.atime);
3148 rsp->LastAccessTime = cpu_to_le64(time);
3149 time = ksmbd_UnixTimeToNT(stat.mtime);
3150 rsp->LastWriteTime = cpu_to_le64(time);
3151 time = ksmbd_UnixTimeToNT(stat.ctime);
3152 rsp->ChangeTime = cpu_to_le64(time);
3153 rsp->AllocationSize = S_ISDIR(stat.mode) ? 0 :
3154 cpu_to_le64(stat.blocks << 9);
3155 rsp->EndofFile = S_ISDIR(stat.mode) ? 0 : cpu_to_le64(stat.size);
3156 rsp->FileAttributes = fp->f_ci->m_fattr;
3157
3158 rsp->Reserved2 = 0;
3159
3160 rsp->PersistentFileId = cpu_to_le64(fp->persistent_id);
3161 rsp->VolatileFileId = cpu_to_le64(fp->volatile_id);
3162
3163 rsp->CreateContextsOffset = 0;
3164 rsp->CreateContextsLength = 0;
Namjae Jeoncb451722021-11-03 08:08:44 +09003165 inc_rfc1001_len(work->response_buf, 88); /* StructureSize - 1*/
Namjae Jeone2f34482021-03-16 10:49:09 +09003166
3167 /* If lease is request send lease context response */
3168 if (opinfo && opinfo->is_lease) {
3169 struct create_context *lease_ccontext;
3170
3171 ksmbd_debug(SMB, "lease granted on(%s) lease state 0x%x\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09003172 name, opinfo->o_lease->state);
Namjae Jeone2f34482021-03-16 10:49:09 +09003173 rsp->OplockLevel = SMB2_OPLOCK_LEVEL_LEASE;
3174
3175 lease_ccontext = (struct create_context *)rsp->Buffer;
3176 contxt_cnt++;
3177 create_lease_buf(rsp->Buffer, opinfo->o_lease);
3178 le32_add_cpu(&rsp->CreateContextsLength,
3179 conn->vals->create_lease_size);
Namjae Jeoncb451722021-11-03 08:08:44 +09003180 inc_rfc1001_len(work->response_buf,
3181 conn->vals->create_lease_size);
Namjae Jeone2f34482021-03-16 10:49:09 +09003182 next_ptr = &lease_ccontext->Next;
3183 next_off = conn->vals->create_lease_size;
3184 }
3185
Namjae Jeone2f34482021-03-16 10:49:09 +09003186 if (maximal_access_ctxt) {
3187 struct create_context *mxac_ccontext;
3188
3189 if (maximal_access == 0)
Hyunchul Lee465d7202021-07-03 12:10:36 +09003190 ksmbd_vfs_query_maximal_access(user_ns,
Hyunchul Leeaf349832021-06-30 18:25:53 +09003191 path.dentry,
Namjae Jeone2f34482021-03-16 10:49:09 +09003192 &maximal_access);
3193 mxac_ccontext = (struct create_context *)(rsp->Buffer +
3194 le32_to_cpu(rsp->CreateContextsLength));
3195 contxt_cnt++;
3196 create_mxac_rsp_buf(rsp->Buffer +
3197 le32_to_cpu(rsp->CreateContextsLength),
3198 le32_to_cpu(maximal_access));
3199 le32_add_cpu(&rsp->CreateContextsLength,
3200 conn->vals->create_mxac_size);
Namjae Jeoncb451722021-11-03 08:08:44 +09003201 inc_rfc1001_len(work->response_buf,
3202 conn->vals->create_mxac_size);
Namjae Jeone2f34482021-03-16 10:49:09 +09003203 if (next_ptr)
3204 *next_ptr = cpu_to_le32(next_off);
3205 next_ptr = &mxac_ccontext->Next;
3206 next_off = conn->vals->create_mxac_size;
3207 }
3208
3209 if (query_disk_id) {
3210 struct create_context *disk_id_ccontext;
3211
3212 disk_id_ccontext = (struct create_context *)(rsp->Buffer +
3213 le32_to_cpu(rsp->CreateContextsLength));
3214 contxt_cnt++;
3215 create_disk_id_rsp_buf(rsp->Buffer +
3216 le32_to_cpu(rsp->CreateContextsLength),
3217 stat.ino, tcon->id);
3218 le32_add_cpu(&rsp->CreateContextsLength,
3219 conn->vals->create_disk_id_size);
Namjae Jeoncb451722021-11-03 08:08:44 +09003220 inc_rfc1001_len(work->response_buf,
3221 conn->vals->create_disk_id_size);
Namjae Jeone2f34482021-03-16 10:49:09 +09003222 if (next_ptr)
3223 *next_ptr = cpu_to_le32(next_off);
3224 next_ptr = &disk_id_ccontext->Next;
3225 next_off = conn->vals->create_disk_id_size;
3226 }
3227
3228 if (posix_ctxt) {
Namjae Jeone2f34482021-03-16 10:49:09 +09003229 contxt_cnt++;
3230 create_posix_rsp_buf(rsp->Buffer +
3231 le32_to_cpu(rsp->CreateContextsLength),
3232 fp);
3233 le32_add_cpu(&rsp->CreateContextsLength,
3234 conn->vals->create_posix_size);
Namjae Jeoncb451722021-11-03 08:08:44 +09003235 inc_rfc1001_len(work->response_buf,
3236 conn->vals->create_posix_size);
Namjae Jeone2f34482021-03-16 10:49:09 +09003237 if (next_ptr)
3238 *next_ptr = cpu_to_le32(next_off);
3239 }
3240
3241 if (contxt_cnt > 0) {
3242 rsp->CreateContextsOffset =
Namjae Jeoncb451722021-11-03 08:08:44 +09003243 cpu_to_le32(offsetof(struct smb2_create_rsp, Buffer));
Namjae Jeone2f34482021-03-16 10:49:09 +09003244 }
3245
3246err_out:
3247 if (file_present || created)
3248 path_put(&path);
3249 ksmbd_revert_fsids(work);
3250err_out1:
3251 if (rc) {
3252 if (rc == -EINVAL)
3253 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
3254 else if (rc == -EOPNOTSUPP)
3255 rsp->hdr.Status = STATUS_NOT_SUPPORTED;
Hyunchul Lee265fd192021-09-25 00:06:16 +09003256 else if (rc == -EACCES || rc == -ESTALE || rc == -EXDEV)
Namjae Jeone2f34482021-03-16 10:49:09 +09003257 rsp->hdr.Status = STATUS_ACCESS_DENIED;
3258 else if (rc == -ENOENT)
3259 rsp->hdr.Status = STATUS_OBJECT_NAME_INVALID;
3260 else if (rc == -EPERM)
3261 rsp->hdr.Status = STATUS_SHARING_VIOLATION;
3262 else if (rc == -EBUSY)
3263 rsp->hdr.Status = STATUS_DELETE_PENDING;
3264 else if (rc == -EBADF)
3265 rsp->hdr.Status = STATUS_OBJECT_NAME_NOT_FOUND;
3266 else if (rc == -ENOEXEC)
3267 rsp->hdr.Status = STATUS_DUPLICATE_OBJECTID;
3268 else if (rc == -ENXIO)
3269 rsp->hdr.Status = STATUS_NO_SUCH_DEVICE;
3270 else if (rc == -EEXIST)
3271 rsp->hdr.Status = STATUS_OBJECT_NAME_COLLISION;
3272 else if (rc == -EMFILE)
3273 rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES;
3274 if (!rsp->hdr.Status)
3275 rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR;
3276
3277 if (!fp || !fp->filename)
3278 kfree(name);
3279 if (fp)
3280 ksmbd_fd_put(work, fp);
3281 smb2_set_err_rsp(work);
3282 ksmbd_debug(SMB, "Error response: %x\n", rsp->hdr.Status);
3283 }
3284
3285 kfree(lc);
3286
3287 return 0;
3288}
3289
3290static int readdir_info_level_struct_sz(int info_level)
3291{
3292 switch (info_level) {
3293 case FILE_FULL_DIRECTORY_INFORMATION:
3294 return sizeof(struct file_full_directory_info);
3295 case FILE_BOTH_DIRECTORY_INFORMATION:
3296 return sizeof(struct file_both_directory_info);
3297 case FILE_DIRECTORY_INFORMATION:
3298 return sizeof(struct file_directory_info);
3299 case FILE_NAMES_INFORMATION:
3300 return sizeof(struct file_names_info);
3301 case FILEID_FULL_DIRECTORY_INFORMATION:
3302 return sizeof(struct file_id_full_dir_info);
3303 case FILEID_BOTH_DIRECTORY_INFORMATION:
3304 return sizeof(struct file_id_both_directory_info);
3305 case SMB_FIND_FILE_POSIX_INFO:
3306 return sizeof(struct smb2_posix_info);
3307 default:
3308 return -EOPNOTSUPP;
3309 }
3310}
3311
3312static int dentry_name(struct ksmbd_dir_info *d_info, int info_level)
3313{
3314 switch (info_level) {
3315 case FILE_FULL_DIRECTORY_INFORMATION:
3316 {
3317 struct file_full_directory_info *ffdinfo;
3318
3319 ffdinfo = (struct file_full_directory_info *)d_info->rptr;
3320 d_info->rptr += le32_to_cpu(ffdinfo->NextEntryOffset);
3321 d_info->name = ffdinfo->FileName;
3322 d_info->name_len = le32_to_cpu(ffdinfo->FileNameLength);
3323 return 0;
3324 }
3325 case FILE_BOTH_DIRECTORY_INFORMATION:
3326 {
3327 struct file_both_directory_info *fbdinfo;
3328
3329 fbdinfo = (struct file_both_directory_info *)d_info->rptr;
3330 d_info->rptr += le32_to_cpu(fbdinfo->NextEntryOffset);
3331 d_info->name = fbdinfo->FileName;
3332 d_info->name_len = le32_to_cpu(fbdinfo->FileNameLength);
3333 return 0;
3334 }
3335 case FILE_DIRECTORY_INFORMATION:
3336 {
3337 struct file_directory_info *fdinfo;
3338
3339 fdinfo = (struct file_directory_info *)d_info->rptr;
3340 d_info->rptr += le32_to_cpu(fdinfo->NextEntryOffset);
3341 d_info->name = fdinfo->FileName;
3342 d_info->name_len = le32_to_cpu(fdinfo->FileNameLength);
3343 return 0;
3344 }
3345 case FILE_NAMES_INFORMATION:
3346 {
3347 struct file_names_info *fninfo;
3348
3349 fninfo = (struct file_names_info *)d_info->rptr;
3350 d_info->rptr += le32_to_cpu(fninfo->NextEntryOffset);
3351 d_info->name = fninfo->FileName;
3352 d_info->name_len = le32_to_cpu(fninfo->FileNameLength);
3353 return 0;
3354 }
3355 case FILEID_FULL_DIRECTORY_INFORMATION:
3356 {
3357 struct file_id_full_dir_info *dinfo;
3358
3359 dinfo = (struct file_id_full_dir_info *)d_info->rptr;
3360 d_info->rptr += le32_to_cpu(dinfo->NextEntryOffset);
3361 d_info->name = dinfo->FileName;
3362 d_info->name_len = le32_to_cpu(dinfo->FileNameLength);
3363 return 0;
3364 }
3365 case FILEID_BOTH_DIRECTORY_INFORMATION:
3366 {
3367 struct file_id_both_directory_info *fibdinfo;
3368
3369 fibdinfo = (struct file_id_both_directory_info *)d_info->rptr;
3370 d_info->rptr += le32_to_cpu(fibdinfo->NextEntryOffset);
3371 d_info->name = fibdinfo->FileName;
3372 d_info->name_len = le32_to_cpu(fibdinfo->FileNameLength);
3373 return 0;
3374 }
3375 case SMB_FIND_FILE_POSIX_INFO:
3376 {
3377 struct smb2_posix_info *posix_info;
3378
3379 posix_info = (struct smb2_posix_info *)d_info->rptr;
3380 d_info->rptr += le32_to_cpu(posix_info->NextEntryOffset);
3381 d_info->name = posix_info->name;
3382 d_info->name_len = le32_to_cpu(posix_info->name_len);
3383 return 0;
3384 }
3385 default:
3386 return -EINVAL;
3387 }
3388}
3389
3390/**
3391 * smb2_populate_readdir_entry() - encode directory entry in smb2 response
3392 * buffer
3393 * @conn: connection instance
3394 * @info_level: smb information level
3395 * @d_info: structure included variables for query dir
3396 * @ksmbd_kstat: ksmbd wrapper of dirent stat information
3397 *
3398 * if directory has many entries, find first can't read it fully.
3399 * find next might be called multiple times to read remaining dir entries
3400 *
3401 * Return: 0 on success, otherwise error
3402 */
Namjae Jeon64b39f42021-03-30 14:25:35 +09003403static int smb2_populate_readdir_entry(struct ksmbd_conn *conn, int info_level,
Namjae Jeon070fb212021-05-26 17:57:12 +09003404 struct ksmbd_dir_info *d_info,
3405 struct ksmbd_kstat *ksmbd_kstat)
Namjae Jeone2f34482021-03-16 10:49:09 +09003406{
3407 int next_entry_offset = 0;
3408 char *conv_name;
3409 int conv_len;
3410 void *kstat;
Namjae Jeondac0ec62021-07-07 14:57:24 +09003411 int struct_sz, rc = 0;
Namjae Jeone2f34482021-03-16 10:49:09 +09003412
3413 conv_name = ksmbd_convert_dir_info_name(d_info,
3414 conn->local_nls,
3415 &conv_len);
3416 if (!conv_name)
3417 return -ENOMEM;
3418
3419 /* Somehow the name has only terminating NULL bytes */
3420 if (conv_len < 0) {
Namjae Jeondac0ec62021-07-07 14:57:24 +09003421 rc = -EINVAL;
3422 goto free_conv_name;
Namjae Jeone2f34482021-03-16 10:49:09 +09003423 }
3424
3425 struct_sz = readdir_info_level_struct_sz(info_level);
3426 next_entry_offset = ALIGN(struct_sz - 1 + conv_len,
3427 KSMBD_DIR_INFO_ALIGNMENT);
3428
3429 if (next_entry_offset > d_info->out_buf_len) {
3430 d_info->out_buf_len = 0;
Namjae Jeondac0ec62021-07-07 14:57:24 +09003431 rc = -ENOSPC;
3432 goto free_conv_name;
Namjae Jeone2f34482021-03-16 10:49:09 +09003433 }
3434
3435 kstat = d_info->wptr;
3436 if (info_level != FILE_NAMES_INFORMATION)
3437 kstat = ksmbd_vfs_init_kstat(&d_info->wptr, ksmbd_kstat);
3438
3439 switch (info_level) {
3440 case FILE_FULL_DIRECTORY_INFORMATION:
3441 {
3442 struct file_full_directory_info *ffdinfo;
3443
3444 ffdinfo = (struct file_full_directory_info *)kstat;
3445 ffdinfo->FileNameLength = cpu_to_le32(conv_len);
3446 ffdinfo->EaSize =
3447 smb2_get_reparse_tag_special_file(ksmbd_kstat->kstat->mode);
3448 if (ffdinfo->EaSize)
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09003449 ffdinfo->ExtFileAttributes = FILE_ATTRIBUTE_REPARSE_POINT_LE;
Namjae Jeone2f34482021-03-16 10:49:09 +09003450 if (d_info->hide_dot_file && d_info->name[0] == '.')
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09003451 ffdinfo->ExtFileAttributes |= FILE_ATTRIBUTE_HIDDEN_LE;
Namjae Jeone2f34482021-03-16 10:49:09 +09003452 memcpy(ffdinfo->FileName, conv_name, conv_len);
3453 ffdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
3454 break;
3455 }
3456 case FILE_BOTH_DIRECTORY_INFORMATION:
3457 {
3458 struct file_both_directory_info *fbdinfo;
3459
3460 fbdinfo = (struct file_both_directory_info *)kstat;
3461 fbdinfo->FileNameLength = cpu_to_le32(conv_len);
3462 fbdinfo->EaSize =
3463 smb2_get_reparse_tag_special_file(ksmbd_kstat->kstat->mode);
3464 if (fbdinfo->EaSize)
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09003465 fbdinfo->ExtFileAttributes = FILE_ATTRIBUTE_REPARSE_POINT_LE;
Namjae Jeone2f34482021-03-16 10:49:09 +09003466 fbdinfo->ShortNameLength = 0;
3467 fbdinfo->Reserved = 0;
3468 if (d_info->hide_dot_file && d_info->name[0] == '.')
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09003469 fbdinfo->ExtFileAttributes |= FILE_ATTRIBUTE_HIDDEN_LE;
Namjae Jeone2f34482021-03-16 10:49:09 +09003470 memcpy(fbdinfo->FileName, conv_name, conv_len);
3471 fbdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
3472 break;
3473 }
3474 case FILE_DIRECTORY_INFORMATION:
3475 {
3476 struct file_directory_info *fdinfo;
3477
3478 fdinfo = (struct file_directory_info *)kstat;
3479 fdinfo->FileNameLength = cpu_to_le32(conv_len);
3480 if (d_info->hide_dot_file && d_info->name[0] == '.')
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09003481 fdinfo->ExtFileAttributes |= FILE_ATTRIBUTE_HIDDEN_LE;
Namjae Jeone2f34482021-03-16 10:49:09 +09003482 memcpy(fdinfo->FileName, conv_name, conv_len);
3483 fdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
3484 break;
3485 }
3486 case FILE_NAMES_INFORMATION:
3487 {
3488 struct file_names_info *fninfo;
3489
3490 fninfo = (struct file_names_info *)kstat;
3491 fninfo->FileNameLength = cpu_to_le32(conv_len);
3492 memcpy(fninfo->FileName, conv_name, conv_len);
3493 fninfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
3494 break;
3495 }
3496 case FILEID_FULL_DIRECTORY_INFORMATION:
3497 {
3498 struct file_id_full_dir_info *dinfo;
3499
3500 dinfo = (struct file_id_full_dir_info *)kstat;
3501 dinfo->FileNameLength = cpu_to_le32(conv_len);
3502 dinfo->EaSize =
3503 smb2_get_reparse_tag_special_file(ksmbd_kstat->kstat->mode);
3504 if (dinfo->EaSize)
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09003505 dinfo->ExtFileAttributes = FILE_ATTRIBUTE_REPARSE_POINT_LE;
Namjae Jeone2f34482021-03-16 10:49:09 +09003506 dinfo->Reserved = 0;
3507 dinfo->UniqueId = cpu_to_le64(ksmbd_kstat->kstat->ino);
3508 if (d_info->hide_dot_file && d_info->name[0] == '.')
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09003509 dinfo->ExtFileAttributes |= FILE_ATTRIBUTE_HIDDEN_LE;
Namjae Jeone2f34482021-03-16 10:49:09 +09003510 memcpy(dinfo->FileName, conv_name, conv_len);
3511 dinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
3512 break;
3513 }
3514 case FILEID_BOTH_DIRECTORY_INFORMATION:
3515 {
3516 struct file_id_both_directory_info *fibdinfo;
3517
3518 fibdinfo = (struct file_id_both_directory_info *)kstat;
3519 fibdinfo->FileNameLength = cpu_to_le32(conv_len);
3520 fibdinfo->EaSize =
3521 smb2_get_reparse_tag_special_file(ksmbd_kstat->kstat->mode);
3522 if (fibdinfo->EaSize)
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09003523 fibdinfo->ExtFileAttributes = FILE_ATTRIBUTE_REPARSE_POINT_LE;
Namjae Jeone2f34482021-03-16 10:49:09 +09003524 fibdinfo->UniqueId = cpu_to_le64(ksmbd_kstat->kstat->ino);
3525 fibdinfo->ShortNameLength = 0;
3526 fibdinfo->Reserved = 0;
3527 fibdinfo->Reserved2 = cpu_to_le16(0);
3528 if (d_info->hide_dot_file && d_info->name[0] == '.')
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09003529 fibdinfo->ExtFileAttributes |= FILE_ATTRIBUTE_HIDDEN_LE;
Namjae Jeone2f34482021-03-16 10:49:09 +09003530 memcpy(fibdinfo->FileName, conv_name, conv_len);
3531 fibdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
3532 break;
3533 }
3534 case SMB_FIND_FILE_POSIX_INFO:
3535 {
3536 struct smb2_posix_info *posix_info;
3537 u64 time;
3538
3539 posix_info = (struct smb2_posix_info *)kstat;
3540 posix_info->Ignored = 0;
3541 posix_info->CreationTime = cpu_to_le64(ksmbd_kstat->create_time);
3542 time = ksmbd_UnixTimeToNT(ksmbd_kstat->kstat->ctime);
3543 posix_info->ChangeTime = cpu_to_le64(time);
3544 time = ksmbd_UnixTimeToNT(ksmbd_kstat->kstat->atime);
3545 posix_info->LastAccessTime = cpu_to_le64(time);
3546 time = ksmbd_UnixTimeToNT(ksmbd_kstat->kstat->mtime);
3547 posix_info->LastWriteTime = cpu_to_le64(time);
3548 posix_info->EndOfFile = cpu_to_le64(ksmbd_kstat->kstat->size);
3549 posix_info->AllocationSize = cpu_to_le64(ksmbd_kstat->kstat->blocks << 9);
3550 posix_info->DeviceId = cpu_to_le32(ksmbd_kstat->kstat->rdev);
3551 posix_info->HardLinks = cpu_to_le32(ksmbd_kstat->kstat->nlink);
3552 posix_info->Mode = cpu_to_le32(ksmbd_kstat->kstat->mode);
3553 posix_info->Inode = cpu_to_le64(ksmbd_kstat->kstat->ino);
3554 posix_info->DosAttributes =
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09003555 S_ISDIR(ksmbd_kstat->kstat->mode) ?
3556 FILE_ATTRIBUTE_DIRECTORY_LE : FILE_ATTRIBUTE_ARCHIVE_LE;
Namjae Jeone2f34482021-03-16 10:49:09 +09003557 if (d_info->hide_dot_file && d_info->name[0] == '.')
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09003558 posix_info->DosAttributes |= FILE_ATTRIBUTE_HIDDEN_LE;
Christian Brauner475d6f92021-08-23 17:13:48 +02003559 id_to_sid(from_kuid_munged(&init_user_ns, ksmbd_kstat->kstat->uid),
Namjae Jeon070fb212021-05-26 17:57:12 +09003560 SIDNFS_USER, (struct smb_sid *)&posix_info->SidBuffer[0]);
Christian Brauner475d6f92021-08-23 17:13:48 +02003561 id_to_sid(from_kgid_munged(&init_user_ns, ksmbd_kstat->kstat->gid),
Namjae Jeon070fb212021-05-26 17:57:12 +09003562 SIDNFS_GROUP, (struct smb_sid *)&posix_info->SidBuffer[20]);
Namjae Jeone2f34482021-03-16 10:49:09 +09003563 memcpy(posix_info->name, conv_name, conv_len);
3564 posix_info->name_len = cpu_to_le32(conv_len);
3565 posix_info->NextEntryOffset = cpu_to_le32(next_entry_offset);
3566 break;
3567 }
3568
3569 } /* switch (info_level) */
3570
3571 d_info->last_entry_offset = d_info->data_count;
3572 d_info->data_count += next_entry_offset;
Marios Makassikise7735c82021-05-06 11:40:02 +09003573 d_info->out_buf_len -= next_entry_offset;
Namjae Jeone2f34482021-03-16 10:49:09 +09003574 d_info->wptr += next_entry_offset;
Namjae Jeone2f34482021-03-16 10:49:09 +09003575
3576 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09003577 "info_level : %d, buf_len :%d, next_offset : %d, data_count : %d\n",
3578 info_level, d_info->out_buf_len,
3579 next_entry_offset, d_info->data_count);
Namjae Jeone2f34482021-03-16 10:49:09 +09003580
Namjae Jeondac0ec62021-07-07 14:57:24 +09003581free_conv_name:
3582 kfree(conv_name);
3583 return rc;
Namjae Jeone2f34482021-03-16 10:49:09 +09003584}
3585
3586struct smb2_query_dir_private {
3587 struct ksmbd_work *work;
3588 char *search_pattern;
3589 struct ksmbd_file *dir_fp;
3590
3591 struct ksmbd_dir_info *d_info;
3592 int info_level;
3593};
3594
3595static void lock_dir(struct ksmbd_file *dir_fp)
3596{
3597 struct dentry *dir = dir_fp->filp->f_path.dentry;
3598
3599 inode_lock_nested(d_inode(dir), I_MUTEX_PARENT);
3600}
3601
3602static void unlock_dir(struct ksmbd_file *dir_fp)
3603{
3604 struct dentry *dir = dir_fp->filp->f_path.dentry;
3605
3606 inode_unlock(d_inode(dir));
3607}
3608
3609static int process_query_dir_entries(struct smb2_query_dir_private *priv)
3610{
Hyunchul Lee465d7202021-07-03 12:10:36 +09003611 struct user_namespace *user_ns = file_mnt_user_ns(priv->dir_fp->filp);
Namjae Jeone2f34482021-03-16 10:49:09 +09003612 struct kstat kstat;
3613 struct ksmbd_kstat ksmbd_kstat;
3614 int rc;
3615 int i;
3616
3617 for (i = 0; i < priv->d_info->num_entry; i++) {
3618 struct dentry *dent;
3619
3620 if (dentry_name(priv->d_info, priv->info_level))
3621 return -EINVAL;
3622
3623 lock_dir(priv->dir_fp);
Christian Braunerda1e7ad2021-08-23 17:13:47 +02003624 dent = lookup_one(user_ns, priv->d_info->name,
3625 priv->dir_fp->filp->f_path.dentry,
3626 priv->d_info->name_len);
Namjae Jeone2f34482021-03-16 10:49:09 +09003627 unlock_dir(priv->dir_fp);
3628
3629 if (IS_ERR(dent)) {
3630 ksmbd_debug(SMB, "Cannot lookup `%s' [%ld]\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09003631 priv->d_info->name,
3632 PTR_ERR(dent));
Namjae Jeone2f34482021-03-16 10:49:09 +09003633 continue;
3634 }
3635 if (unlikely(d_is_negative(dent))) {
3636 dput(dent);
3637 ksmbd_debug(SMB, "Negative dentry `%s'\n",
3638 priv->d_info->name);
3639 continue;
3640 }
3641
3642 ksmbd_kstat.kstat = &kstat;
3643 if (priv->info_level != FILE_NAMES_INFORMATION)
3644 ksmbd_vfs_fill_dentry_attrs(priv->work,
Hyunchul Lee465d7202021-07-03 12:10:36 +09003645 user_ns,
Namjae Jeone2f34482021-03-16 10:49:09 +09003646 dent,
3647 &ksmbd_kstat);
3648
3649 rc = smb2_populate_readdir_entry(priv->work->conn,
3650 priv->info_level,
3651 priv->d_info,
3652 &ksmbd_kstat);
3653 dput(dent);
3654 if (rc)
3655 return rc;
3656 }
3657 return 0;
3658}
3659
3660static int reserve_populate_dentry(struct ksmbd_dir_info *d_info,
Namjae Jeon070fb212021-05-26 17:57:12 +09003661 int info_level)
Namjae Jeone2f34482021-03-16 10:49:09 +09003662{
3663 int struct_sz;
3664 int conv_len;
3665 int next_entry_offset;
3666
3667 struct_sz = readdir_info_level_struct_sz(info_level);
3668 if (struct_sz == -EOPNOTSUPP)
3669 return -EOPNOTSUPP;
3670
3671 conv_len = (d_info->name_len + 1) * 2;
3672 next_entry_offset = ALIGN(struct_sz - 1 + conv_len,
3673 KSMBD_DIR_INFO_ALIGNMENT);
3674
3675 if (next_entry_offset > d_info->out_buf_len) {
3676 d_info->out_buf_len = 0;
3677 return -ENOSPC;
3678 }
3679
3680 switch (info_level) {
3681 case FILE_FULL_DIRECTORY_INFORMATION:
3682 {
3683 struct file_full_directory_info *ffdinfo;
3684
3685 ffdinfo = (struct file_full_directory_info *)d_info->wptr;
3686 memcpy(ffdinfo->FileName, d_info->name, d_info->name_len);
3687 ffdinfo->FileName[d_info->name_len] = 0x00;
3688 ffdinfo->FileNameLength = cpu_to_le32(d_info->name_len);
3689 ffdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
3690 break;
3691 }
3692 case FILE_BOTH_DIRECTORY_INFORMATION:
3693 {
3694 struct file_both_directory_info *fbdinfo;
3695
3696 fbdinfo = (struct file_both_directory_info *)d_info->wptr;
3697 memcpy(fbdinfo->FileName, d_info->name, d_info->name_len);
3698 fbdinfo->FileName[d_info->name_len] = 0x00;
3699 fbdinfo->FileNameLength = cpu_to_le32(d_info->name_len);
3700 fbdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
3701 break;
3702 }
3703 case FILE_DIRECTORY_INFORMATION:
3704 {
3705 struct file_directory_info *fdinfo;
3706
3707 fdinfo = (struct file_directory_info *)d_info->wptr;
3708 memcpy(fdinfo->FileName, d_info->name, d_info->name_len);
3709 fdinfo->FileName[d_info->name_len] = 0x00;
3710 fdinfo->FileNameLength = cpu_to_le32(d_info->name_len);
3711 fdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
3712 break;
3713 }
3714 case FILE_NAMES_INFORMATION:
3715 {
3716 struct file_names_info *fninfo;
3717
3718 fninfo = (struct file_names_info *)d_info->wptr;
3719 memcpy(fninfo->FileName, d_info->name, d_info->name_len);
3720 fninfo->FileName[d_info->name_len] = 0x00;
3721 fninfo->FileNameLength = cpu_to_le32(d_info->name_len);
3722 fninfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
3723 break;
3724 }
3725 case FILEID_FULL_DIRECTORY_INFORMATION:
3726 {
3727 struct file_id_full_dir_info *dinfo;
3728
3729 dinfo = (struct file_id_full_dir_info *)d_info->wptr;
3730 memcpy(dinfo->FileName, d_info->name, d_info->name_len);
3731 dinfo->FileName[d_info->name_len] = 0x00;
3732 dinfo->FileNameLength = cpu_to_le32(d_info->name_len);
3733 dinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
3734 break;
3735 }
3736 case FILEID_BOTH_DIRECTORY_INFORMATION:
3737 {
3738 struct file_id_both_directory_info *fibdinfo;
3739
3740 fibdinfo = (struct file_id_both_directory_info *)d_info->wptr;
3741 memcpy(fibdinfo->FileName, d_info->name, d_info->name_len);
3742 fibdinfo->FileName[d_info->name_len] = 0x00;
3743 fibdinfo->FileNameLength = cpu_to_le32(d_info->name_len);
3744 fibdinfo->NextEntryOffset = cpu_to_le32(next_entry_offset);
3745 break;
3746 }
3747 case SMB_FIND_FILE_POSIX_INFO:
3748 {
3749 struct smb2_posix_info *posix_info;
3750
3751 posix_info = (struct smb2_posix_info *)d_info->wptr;
3752 memcpy(posix_info->name, d_info->name, d_info->name_len);
3753 posix_info->name[d_info->name_len] = 0x00;
3754 posix_info->name_len = cpu_to_le32(d_info->name_len);
3755 posix_info->NextEntryOffset =
3756 cpu_to_le32(next_entry_offset);
3757 break;
3758 }
3759 } /* switch (info_level) */
3760
3761 d_info->num_entry++;
3762 d_info->out_buf_len -= next_entry_offset;
3763 d_info->wptr += next_entry_offset;
3764 return 0;
3765}
3766
Namjae Jeon64b39f42021-03-30 14:25:35 +09003767static int __query_dir(struct dir_context *ctx, const char *name, int namlen,
Namjae Jeon070fb212021-05-26 17:57:12 +09003768 loff_t offset, u64 ino, unsigned int d_type)
Namjae Jeone2f34482021-03-16 10:49:09 +09003769{
3770 struct ksmbd_readdir_data *buf;
3771 struct smb2_query_dir_private *priv;
3772 struct ksmbd_dir_info *d_info;
3773 int rc;
3774
3775 buf = container_of(ctx, struct ksmbd_readdir_data, ctx);
3776 priv = buf->private;
3777 d_info = priv->d_info;
3778
3779 /* dot and dotdot entries are already reserved */
3780 if (!strcmp(".", name) || !strcmp("..", name))
3781 return 0;
3782 if (ksmbd_share_veto_filename(priv->work->tcon->share_conf, name))
3783 return 0;
Namjae Jeonb24c9332021-03-21 17:32:19 +09003784 if (!match_pattern(name, namlen, priv->search_pattern))
Namjae Jeone2f34482021-03-16 10:49:09 +09003785 return 0;
3786
3787 d_info->name = name;
3788 d_info->name_len = namlen;
3789 rc = reserve_populate_dentry(d_info, priv->info_level);
3790 if (rc)
3791 return rc;
3792 if (d_info->flags & SMB2_RETURN_SINGLE_ENTRY) {
3793 d_info->out_buf_len = 0;
3794 return 0;
3795 }
3796 return 0;
3797}
3798
3799static void restart_ctx(struct dir_context *ctx)
3800{
3801 ctx->pos = 0;
3802}
3803
3804static int verify_info_level(int info_level)
3805{
3806 switch (info_level) {
3807 case FILE_FULL_DIRECTORY_INFORMATION:
3808 case FILE_BOTH_DIRECTORY_INFORMATION:
3809 case FILE_DIRECTORY_INFORMATION:
3810 case FILE_NAMES_INFORMATION:
3811 case FILEID_FULL_DIRECTORY_INFORMATION:
3812 case FILEID_BOTH_DIRECTORY_INFORMATION:
3813 case SMB_FIND_FILE_POSIX_INFO:
3814 break;
3815 default:
3816 return -EOPNOTSUPP;
3817 }
3818
3819 return 0;
3820}
3821
Hyunchul Lee34061d62021-10-16 08:39:54 +09003822static int smb2_calc_max_out_buf_len(struct ksmbd_work *work,
3823 unsigned short hdr2_len,
3824 unsigned int out_buf_len)
3825{
3826 int free_len;
3827
3828 if (out_buf_len > work->conn->vals->max_trans_size)
3829 return -EINVAL;
3830
3831 free_len = (int)(work->response_sz -
3832 (get_rfc1002_len(work->response_buf) + 4)) -
3833 hdr2_len;
3834 if (free_len < 0)
3835 return -EINVAL;
3836
3837 return min_t(int, out_buf_len, free_len);
3838}
3839
Namjae Jeone2f34482021-03-16 10:49:09 +09003840int smb2_query_dir(struct ksmbd_work *work)
3841{
3842 struct ksmbd_conn *conn = work->conn;
3843 struct smb2_query_directory_req *req;
Namjae Jeoncb451722021-11-03 08:08:44 +09003844 struct smb2_query_directory_rsp *rsp;
Namjae Jeone2f34482021-03-16 10:49:09 +09003845 struct ksmbd_share_config *share = work->tcon->share_conf;
3846 struct ksmbd_file *dir_fp = NULL;
3847 struct ksmbd_dir_info d_info;
3848 int rc = 0;
3849 char *srch_ptr = NULL;
3850 unsigned char srch_flag;
3851 int buffer_sz;
3852 struct smb2_query_dir_private query_dir_private = {NULL, };
3853
Namjae Jeone2f34482021-03-16 10:49:09 +09003854 WORK_BUFFERS(work, req, rsp);
3855
3856 if (ksmbd_override_fsids(work)) {
3857 rsp->hdr.Status = STATUS_NO_MEMORY;
3858 smb2_set_err_rsp(work);
3859 return -ENOMEM;
3860 }
3861
3862 rc = verify_info_level(req->FileInformationClass);
3863 if (rc) {
3864 rc = -EFAULT;
3865 goto err_out2;
3866 }
3867
3868 dir_fp = ksmbd_lookup_fd_slow(work,
Namjae Jeon070fb212021-05-26 17:57:12 +09003869 le64_to_cpu(req->VolatileFileId),
3870 le64_to_cpu(req->PersistentFileId));
Namjae Jeone2f34482021-03-16 10:49:09 +09003871 if (!dir_fp) {
3872 rc = -EBADF;
3873 goto err_out2;
3874 }
3875
3876 if (!(dir_fp->daccess & FILE_LIST_DIRECTORY_LE) ||
Hyunchul Leeaf349832021-06-30 18:25:53 +09003877 inode_permission(file_mnt_user_ns(dir_fp->filp),
3878 file_inode(dir_fp->filp),
Namjae Jeon070fb212021-05-26 17:57:12 +09003879 MAY_READ | MAY_EXEC)) {
Namjae Jeon493fa2f2021-06-29 09:22:16 +09003880 pr_err("no right to enumerate directory (%pd)\n",
3881 dir_fp->filp->f_path.dentry);
Namjae Jeone2f34482021-03-16 10:49:09 +09003882 rc = -EACCES;
3883 goto err_out2;
3884 }
3885
3886 if (!S_ISDIR(file_inode(dir_fp->filp)->i_mode)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09003887 pr_err("can't do query dir for a file\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09003888 rc = -EINVAL;
3889 goto err_out2;
3890 }
3891
3892 srch_flag = req->Flags;
3893 srch_ptr = smb_strndup_from_utf16(req->Buffer,
Namjae Jeon070fb212021-05-26 17:57:12 +09003894 le16_to_cpu(req->FileNameLength), 1,
3895 conn->local_nls);
Namjae Jeone2f34482021-03-16 10:49:09 +09003896 if (IS_ERR(srch_ptr)) {
3897 ksmbd_debug(SMB, "Search Pattern not found\n");
3898 rc = -EINVAL;
3899 goto err_out2;
Namjae Jeon64b39f42021-03-30 14:25:35 +09003900 } else {
Namjae Jeone2f34482021-03-16 10:49:09 +09003901 ksmbd_debug(SMB, "Search pattern is %s\n", srch_ptr);
Namjae Jeon64b39f42021-03-30 14:25:35 +09003902 }
Namjae Jeone2f34482021-03-16 10:49:09 +09003903
3904 ksmbd_debug(SMB, "Directory name is %s\n", dir_fp->filename);
3905
3906 if (srch_flag & SMB2_REOPEN || srch_flag & SMB2_RESTART_SCANS) {
3907 ksmbd_debug(SMB, "Restart directory scan\n");
3908 generic_file_llseek(dir_fp->filp, 0, SEEK_SET);
3909 restart_ctx(&dir_fp->readdir_data.ctx);
3910 }
3911
3912 memset(&d_info, 0, sizeof(struct ksmbd_dir_info));
3913 d_info.wptr = (char *)rsp->Buffer;
3914 d_info.rptr = (char *)rsp->Buffer;
Hyunchul Lee34061d62021-10-16 08:39:54 +09003915 d_info.out_buf_len =
3916 smb2_calc_max_out_buf_len(work, 8,
3917 le32_to_cpu(req->OutputBufferLength));
3918 if (d_info.out_buf_len < 0) {
3919 rc = -EINVAL;
3920 goto err_out;
3921 }
Namjae Jeone2f34482021-03-16 10:49:09 +09003922 d_info.flags = srch_flag;
3923
3924 /*
3925 * reserve dot and dotdot entries in head of buffer
3926 * in first response
3927 */
3928 rc = ksmbd_populate_dot_dotdot_entries(work, req->FileInformationClass,
Namjae Jeon070fb212021-05-26 17:57:12 +09003929 dir_fp, &d_info, srch_ptr,
3930 smb2_populate_readdir_entry);
Namjae Jeone2f34482021-03-16 10:49:09 +09003931 if (rc == -ENOSPC)
3932 rc = 0;
3933 else if (rc)
3934 goto err_out;
3935
3936 if (test_share_config_flag(share, KSMBD_SHARE_FLAG_HIDE_DOT_FILES))
3937 d_info.hide_dot_file = true;
3938
3939 buffer_sz = d_info.out_buf_len;
3940 d_info.rptr = d_info.wptr;
3941 query_dir_private.work = work;
3942 query_dir_private.search_pattern = srch_ptr;
3943 query_dir_private.dir_fp = dir_fp;
3944 query_dir_private.d_info = &d_info;
3945 query_dir_private.info_level = req->FileInformationClass;
3946 dir_fp->readdir_data.private = &query_dir_private;
3947 set_ctx_actor(&dir_fp->readdir_data.ctx, __query_dir);
3948
Namjae Jeone8c06192021-06-22 11:06:11 +09003949 rc = iterate_dir(dir_fp->filp, &dir_fp->readdir_data.ctx);
Namjae Jeone2f34482021-03-16 10:49:09 +09003950 if (rc == 0)
3951 restart_ctx(&dir_fp->readdir_data.ctx);
3952 if (rc == -ENOSPC)
3953 rc = 0;
3954 if (rc)
3955 goto err_out;
3956
3957 d_info.wptr = d_info.rptr;
3958 d_info.out_buf_len = buffer_sz;
3959 rc = process_query_dir_entries(&query_dir_private);
3960 if (rc)
3961 goto err_out;
3962
3963 if (!d_info.data_count && d_info.out_buf_len >= 0) {
Namjae Jeon64b39f42021-03-30 14:25:35 +09003964 if (srch_flag & SMB2_RETURN_SINGLE_ENTRY && !is_asterisk(srch_ptr)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09003965 rsp->hdr.Status = STATUS_NO_SUCH_FILE;
Namjae Jeon64b39f42021-03-30 14:25:35 +09003966 } else {
Namjae Jeone2f34482021-03-16 10:49:09 +09003967 dir_fp->dot_dotdot[0] = dir_fp->dot_dotdot[1] = 0;
3968 rsp->hdr.Status = STATUS_NO_MORE_FILES;
3969 }
3970 rsp->StructureSize = cpu_to_le16(9);
3971 rsp->OutputBufferOffset = cpu_to_le16(0);
3972 rsp->OutputBufferLength = cpu_to_le32(0);
3973 rsp->Buffer[0] = 0;
Namjae Jeoncb451722021-11-03 08:08:44 +09003974 inc_rfc1001_len(work->response_buf, 9);
Namjae Jeone2f34482021-03-16 10:49:09 +09003975 } else {
3976 ((struct file_directory_info *)
3977 ((char *)rsp->Buffer + d_info.last_entry_offset))
3978 ->NextEntryOffset = 0;
3979
3980 rsp->StructureSize = cpu_to_le16(9);
3981 rsp->OutputBufferOffset = cpu_to_le16(72);
3982 rsp->OutputBufferLength = cpu_to_le32(d_info.data_count);
Namjae Jeoncb451722021-11-03 08:08:44 +09003983 inc_rfc1001_len(work->response_buf, 8 + d_info.data_count);
Namjae Jeone2f34482021-03-16 10:49:09 +09003984 }
3985
3986 kfree(srch_ptr);
3987 ksmbd_fd_put(work, dir_fp);
3988 ksmbd_revert_fsids(work);
3989 return 0;
3990
3991err_out:
Namjae Jeonbde16942021-06-28 15:23:19 +09003992 pr_err("error while processing smb2 query dir rc = %d\n", rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09003993 kfree(srch_ptr);
3994
3995err_out2:
3996 if (rc == -EINVAL)
3997 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
3998 else if (rc == -EACCES)
3999 rsp->hdr.Status = STATUS_ACCESS_DENIED;
4000 else if (rc == -ENOENT)
4001 rsp->hdr.Status = STATUS_NO_SUCH_FILE;
4002 else if (rc == -EBADF)
4003 rsp->hdr.Status = STATUS_FILE_CLOSED;
4004 else if (rc == -ENOMEM)
4005 rsp->hdr.Status = STATUS_NO_MEMORY;
4006 else if (rc == -EFAULT)
4007 rsp->hdr.Status = STATUS_INVALID_INFO_CLASS;
4008 if (!rsp->hdr.Status)
4009 rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR;
4010
4011 smb2_set_err_rsp(work);
4012 ksmbd_fd_put(work, dir_fp);
4013 ksmbd_revert_fsids(work);
4014 return 0;
4015}
4016
4017/**
4018 * buffer_check_err() - helper function to check buffer errors
4019 * @reqOutputBufferLength: max buffer length expected in command response
4020 * @rsp: query info response buffer contains output buffer length
Yang Lie230d012021-12-21 17:07:11 +08004021 * @rsp_org: base response buffer pointer in case of chained response
Namjae Jeone2f34482021-03-16 10:49:09 +09004022 * @infoclass_size: query info class response buffer size
4023 *
4024 * Return: 0 on success, otherwise error
4025 */
4026static int buffer_check_err(int reqOutputBufferLength,
Namjae Jeoncb451722021-11-03 08:08:44 +09004027 struct smb2_query_info_rsp *rsp,
4028 void *rsp_org, int infoclass_size)
Namjae Jeone2f34482021-03-16 10:49:09 +09004029{
4030 if (reqOutputBufferLength < le32_to_cpu(rsp->OutputBufferLength)) {
4031 if (reqOutputBufferLength < infoclass_size) {
Namjae Jeonbde16942021-06-28 15:23:19 +09004032 pr_err("Invalid Buffer Size Requested\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09004033 rsp->hdr.Status = STATUS_INFO_LENGTH_MISMATCH;
Namjae Jeoncb451722021-11-03 08:08:44 +09004034 *(__be32 *)rsp_org = cpu_to_be32(sizeof(struct smb2_hdr));
Namjae Jeone2f34482021-03-16 10:49:09 +09004035 return -EINVAL;
4036 }
4037
4038 ksmbd_debug(SMB, "Buffer Overflow\n");
4039 rsp->hdr.Status = STATUS_BUFFER_OVERFLOW;
Namjae Jeoncb451722021-11-03 08:08:44 +09004040 *(__be32 *)rsp_org = cpu_to_be32(sizeof(struct smb2_hdr) +
Namjae Jeon64b39f42021-03-30 14:25:35 +09004041 reqOutputBufferLength);
4042 rsp->OutputBufferLength = cpu_to_le32(reqOutputBufferLength);
Namjae Jeone2f34482021-03-16 10:49:09 +09004043 }
4044 return 0;
4045}
4046
Namjae Jeoncb451722021-11-03 08:08:44 +09004047static void get_standard_info_pipe(struct smb2_query_info_rsp *rsp,
4048 void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004049{
4050 struct smb2_file_standard_info *sinfo;
4051
4052 sinfo = (struct smb2_file_standard_info *)rsp->Buffer;
4053
4054 sinfo->AllocationSize = cpu_to_le64(4096);
4055 sinfo->EndOfFile = cpu_to_le64(0);
4056 sinfo->NumberOfLinks = cpu_to_le32(1);
4057 sinfo->DeletePending = 1;
4058 sinfo->Directory = 0;
4059 rsp->OutputBufferLength =
4060 cpu_to_le32(sizeof(struct smb2_file_standard_info));
Namjae Jeoncb451722021-11-03 08:08:44 +09004061 inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_standard_info));
Namjae Jeone2f34482021-03-16 10:49:09 +09004062}
4063
Namjae Jeoncb451722021-11-03 08:08:44 +09004064static void get_internal_info_pipe(struct smb2_query_info_rsp *rsp, u64 num,
4065 void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004066{
4067 struct smb2_file_internal_info *file_info;
4068
4069 file_info = (struct smb2_file_internal_info *)rsp->Buffer;
4070
4071 /* any unique number */
4072 file_info->IndexNumber = cpu_to_le64(num | (1ULL << 63));
4073 rsp->OutputBufferLength =
4074 cpu_to_le32(sizeof(struct smb2_file_internal_info));
Namjae Jeoncb451722021-11-03 08:08:44 +09004075 inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_internal_info));
Namjae Jeone2f34482021-03-16 10:49:09 +09004076}
4077
Namjae Jeone2f34482021-03-16 10:49:09 +09004078static int smb2_get_info_file_pipe(struct ksmbd_session *sess,
Namjae Jeon070fb212021-05-26 17:57:12 +09004079 struct smb2_query_info_req *req,
Namjae Jeoncb451722021-11-03 08:08:44 +09004080 struct smb2_query_info_rsp *rsp,
4081 void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004082{
Namjae Jeon64b39f42021-03-30 14:25:35 +09004083 u64 id;
Namjae Jeone2f34482021-03-16 10:49:09 +09004084 int rc;
4085
4086 /*
4087 * Windows can sometime send query file info request on
4088 * pipe without opening it, checking error condition here
4089 */
4090 id = le64_to_cpu(req->VolatileFileId);
4091 if (!ksmbd_session_rpc_method(sess, id))
4092 return -ENOENT;
4093
4094 ksmbd_debug(SMB, "FileInfoClass %u, FileId 0x%llx\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09004095 req->FileInfoClass, le64_to_cpu(req->VolatileFileId));
Namjae Jeone2f34482021-03-16 10:49:09 +09004096
4097 switch (req->FileInfoClass) {
4098 case FILE_STANDARD_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004099 get_standard_info_pipe(rsp, rsp_org);
Namjae Jeone2f34482021-03-16 10:49:09 +09004100 rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength),
Namjae Jeoncb451722021-11-03 08:08:44 +09004101 rsp, rsp_org,
4102 FILE_STANDARD_INFORMATION_SIZE);
Namjae Jeone2f34482021-03-16 10:49:09 +09004103 break;
4104 case FILE_INTERNAL_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004105 get_internal_info_pipe(rsp, id, rsp_org);
Namjae Jeone2f34482021-03-16 10:49:09 +09004106 rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength),
Namjae Jeoncb451722021-11-03 08:08:44 +09004107 rsp, rsp_org,
4108 FILE_INTERNAL_INFORMATION_SIZE);
Namjae Jeone2f34482021-03-16 10:49:09 +09004109 break;
4110 default:
4111 ksmbd_debug(SMB, "smb2_info_file_pipe for %u not supported\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09004112 req->FileInfoClass);
Namjae Jeone2f34482021-03-16 10:49:09 +09004113 rc = -EOPNOTSUPP;
4114 }
4115 return rc;
4116}
4117
4118/**
4119 * smb2_get_ea() - handler for smb2 get extended attribute command
4120 * @work: smb work containing query info command buffer
Hyunchul Lee95fa1ce2021-03-21 17:05:56 +09004121 * @fp: ksmbd_file pointer
4122 * @req: get extended attribute request
4123 * @rsp: response buffer pointer
4124 * @rsp_org: base response buffer pointer in case of chained response
Namjae Jeone2f34482021-03-16 10:49:09 +09004125 *
4126 * Return: 0 on success, otherwise error
4127 */
Namjae Jeon64b39f42021-03-30 14:25:35 +09004128static int smb2_get_ea(struct ksmbd_work *work, struct ksmbd_file *fp,
Namjae Jeon070fb212021-05-26 17:57:12 +09004129 struct smb2_query_info_req *req,
4130 struct smb2_query_info_rsp *rsp, void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004131{
4132 struct smb2_ea_info *eainfo, *prev_eainfo;
4133 char *name, *ptr, *xattr_list = NULL, *buf;
4134 int rc, name_len, value_len, xattr_list_len, idx;
4135 ssize_t buf_free_len, alignment_bytes, next_offset, rsp_data_cnt = 0;
4136 struct smb2_ea_info_req *ea_req = NULL;
4137 struct path *path;
Hyunchul Lee465d7202021-07-03 12:10:36 +09004138 struct user_namespace *user_ns = file_mnt_user_ns(fp->filp);
Namjae Jeone2f34482021-03-16 10:49:09 +09004139
4140 if (!(fp->daccess & FILE_READ_EA_LE)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09004141 pr_err("Not permitted to read ext attr : 0x%x\n",
4142 fp->daccess);
Namjae Jeone2f34482021-03-16 10:49:09 +09004143 return -EACCES;
4144 }
4145
4146 path = &fp->filp->f_path;
4147 /* single EA entry is requested with given user.* name */
Namjae Jeon64b39f42021-03-30 14:25:35 +09004148 if (req->InputBufferLength) {
Namjae Jeon6d562622021-09-18 18:45:12 +09004149 if (le32_to_cpu(req->InputBufferLength) <
4150 sizeof(struct smb2_ea_info_req))
4151 return -EINVAL;
4152
Namjae Jeone2f34482021-03-16 10:49:09 +09004153 ea_req = (struct smb2_ea_info_req *)req->Buffer;
Namjae Jeon64b39f42021-03-30 14:25:35 +09004154 } else {
Namjae Jeone2f34482021-03-16 10:49:09 +09004155 /* need to send all EAs, if no specific EA is requested*/
4156 if (le32_to_cpu(req->Flags) & SL_RETURN_SINGLE_ENTRY)
4157 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09004158 "All EAs are requested but need to send single EA entry in rsp flags 0x%x\n",
4159 le32_to_cpu(req->Flags));
Namjae Jeone2f34482021-03-16 10:49:09 +09004160 }
4161
Hyunchul Lee34061d62021-10-16 08:39:54 +09004162 buf_free_len =
4163 smb2_calc_max_out_buf_len(work, 8,
4164 le32_to_cpu(req->OutputBufferLength));
4165 if (buf_free_len < 0)
4166 return -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09004167
4168 rc = ksmbd_vfs_listxattr(path->dentry, &xattr_list);
4169 if (rc < 0) {
4170 rsp->hdr.Status = STATUS_INVALID_HANDLE;
4171 goto out;
4172 } else if (!rc) { /* there is no EA in the file */
4173 ksmbd_debug(SMB, "no ea data in the file\n");
4174 goto done;
4175 }
4176 xattr_list_len = rc;
4177
4178 ptr = (char *)rsp->Buffer;
4179 eainfo = (struct smb2_ea_info *)ptr;
4180 prev_eainfo = eainfo;
4181 idx = 0;
4182
4183 while (idx < xattr_list_len) {
4184 name = xattr_list + idx;
4185 name_len = strlen(name);
4186
4187 ksmbd_debug(SMB, "%s, len %d\n", name, name_len);
4188 idx += name_len + 1;
4189
4190 /*
4191 * CIFS does not support EA other than user.* namespace,
4192 * still keep the framework generic, to list other attrs
4193 * in future.
4194 */
4195 if (strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN))
4196 continue;
4197
4198 if (!strncmp(&name[XATTR_USER_PREFIX_LEN], STREAM_PREFIX,
Namjae Jeon64b39f42021-03-30 14:25:35 +09004199 STREAM_PREFIX_LEN))
Namjae Jeone2f34482021-03-16 10:49:09 +09004200 continue;
4201
4202 if (req->InputBufferLength &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09004203 strncmp(&name[XATTR_USER_PREFIX_LEN], ea_req->name,
4204 ea_req->EaNameLength))
Namjae Jeone2f34482021-03-16 10:49:09 +09004205 continue;
4206
4207 if (!strncmp(&name[XATTR_USER_PREFIX_LEN],
Namjae Jeon64b39f42021-03-30 14:25:35 +09004208 DOS_ATTRIBUTE_PREFIX, DOS_ATTRIBUTE_PREFIX_LEN))
Namjae Jeone2f34482021-03-16 10:49:09 +09004209 continue;
4210
4211 if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN))
4212 name_len -= XATTR_USER_PREFIX_LEN;
4213
4214 ptr = (char *)(&eainfo->name + name_len + 1);
4215 buf_free_len -= (offsetof(struct smb2_ea_info, name) +
4216 name_len + 1);
4217 /* bailout if xattr can't fit in buf_free_len */
Hyunchul Lee465d7202021-07-03 12:10:36 +09004218 value_len = ksmbd_vfs_getxattr(user_ns, path->dentry,
4219 name, &buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004220 if (value_len <= 0) {
4221 rc = -ENOENT;
4222 rsp->hdr.Status = STATUS_INVALID_HANDLE;
4223 goto out;
4224 }
4225
4226 buf_free_len -= value_len;
4227 if (buf_free_len < 0) {
Namjae Jeon79f6b112021-04-02 12:47:14 +09004228 kfree(buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004229 break;
4230 }
4231
4232 memcpy(ptr, buf, value_len);
Namjae Jeon79f6b112021-04-02 12:47:14 +09004233 kfree(buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004234
4235 ptr += value_len;
4236 eainfo->Flags = 0;
4237 eainfo->EaNameLength = name_len;
4238
Namjae Jeon64b39f42021-03-30 14:25:35 +09004239 if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN))
Namjae Jeone2f34482021-03-16 10:49:09 +09004240 memcpy(eainfo->name, &name[XATTR_USER_PREFIX_LEN],
Namjae Jeon070fb212021-05-26 17:57:12 +09004241 name_len);
Namjae Jeone2f34482021-03-16 10:49:09 +09004242 else
4243 memcpy(eainfo->name, name, name_len);
4244
4245 eainfo->name[name_len] = '\0';
4246 eainfo->EaValueLength = cpu_to_le16(value_len);
4247 next_offset = offsetof(struct smb2_ea_info, name) +
4248 name_len + 1 + value_len;
4249
4250 /* align next xattr entry at 4 byte bundary */
4251 alignment_bytes = ((next_offset + 3) & ~3) - next_offset;
4252 if (alignment_bytes) {
4253 memset(ptr, '\0', alignment_bytes);
4254 ptr += alignment_bytes;
4255 next_offset += alignment_bytes;
4256 buf_free_len -= alignment_bytes;
4257 }
4258 eainfo->NextEntryOffset = cpu_to_le32(next_offset);
4259 prev_eainfo = eainfo;
4260 eainfo = (struct smb2_ea_info *)ptr;
4261 rsp_data_cnt += next_offset;
4262
4263 if (req->InputBufferLength) {
4264 ksmbd_debug(SMB, "single entry requested\n");
4265 break;
4266 }
4267 }
4268
4269 /* no more ea entries */
4270 prev_eainfo->NextEntryOffset = 0;
4271done:
4272 rc = 0;
4273 if (rsp_data_cnt == 0)
4274 rsp->hdr.Status = STATUS_NO_EAS_ON_FILE;
4275 rsp->OutputBufferLength = cpu_to_le32(rsp_data_cnt);
4276 inc_rfc1001_len(rsp_org, rsp_data_cnt);
4277out:
Namjae Jeon79f6b112021-04-02 12:47:14 +09004278 kvfree(xattr_list);
Namjae Jeone2f34482021-03-16 10:49:09 +09004279 return rc;
4280}
4281
4282static void get_file_access_info(struct smb2_query_info_rsp *rsp,
Namjae Jeon070fb212021-05-26 17:57:12 +09004283 struct ksmbd_file *fp, void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004284{
4285 struct smb2_file_access_info *file_info;
4286
4287 file_info = (struct smb2_file_access_info *)rsp->Buffer;
4288 file_info->AccessFlags = fp->daccess;
4289 rsp->OutputBufferLength =
4290 cpu_to_le32(sizeof(struct smb2_file_access_info));
4291 inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_access_info));
4292}
4293
4294static int get_file_basic_info(struct smb2_query_info_rsp *rsp,
Namjae Jeon070fb212021-05-26 17:57:12 +09004295 struct ksmbd_file *fp, void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004296{
Namjae Jeon88d30052021-09-29 15:37:18 +09004297 struct smb2_file_basic_info *basic_info;
Namjae Jeone2f34482021-03-16 10:49:09 +09004298 struct kstat stat;
4299 u64 time;
4300
4301 if (!(fp->daccess & FILE_READ_ATTRIBUTES_LE)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09004302 pr_err("no right to read the attributes : 0x%x\n",
4303 fp->daccess);
Namjae Jeone2f34482021-03-16 10:49:09 +09004304 return -EACCES;
4305 }
4306
Namjae Jeon88d30052021-09-29 15:37:18 +09004307 basic_info = (struct smb2_file_basic_info *)rsp->Buffer;
Hyunchul Leeaf349832021-06-30 18:25:53 +09004308 generic_fillattr(file_mnt_user_ns(fp->filp), file_inode(fp->filp),
4309 &stat);
Namjae Jeone2f34482021-03-16 10:49:09 +09004310 basic_info->CreationTime = cpu_to_le64(fp->create_time);
4311 time = ksmbd_UnixTimeToNT(stat.atime);
4312 basic_info->LastAccessTime = cpu_to_le64(time);
4313 time = ksmbd_UnixTimeToNT(stat.mtime);
4314 basic_info->LastWriteTime = cpu_to_le64(time);
4315 time = ksmbd_UnixTimeToNT(stat.ctime);
4316 basic_info->ChangeTime = cpu_to_le64(time);
4317 basic_info->Attributes = fp->f_ci->m_fattr;
4318 basic_info->Pad1 = 0;
4319 rsp->OutputBufferLength =
Namjae Jeon88d30052021-09-29 15:37:18 +09004320 cpu_to_le32(sizeof(struct smb2_file_basic_info));
4321 inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_basic_info));
Namjae Jeone2f34482021-03-16 10:49:09 +09004322 return 0;
4323}
4324
4325static unsigned long long get_allocation_size(struct inode *inode,
Namjae Jeon070fb212021-05-26 17:57:12 +09004326 struct kstat *stat)
Namjae Jeone2f34482021-03-16 10:49:09 +09004327{
4328 unsigned long long alloc_size = 0;
4329
4330 if (!S_ISDIR(stat->mode)) {
4331 if ((inode->i_blocks << 9) <= stat->size)
4332 alloc_size = stat->size;
4333 else
4334 alloc_size = inode->i_blocks << 9;
Namjae Jeone2f34482021-03-16 10:49:09 +09004335 }
4336
4337 return alloc_size;
4338}
4339
4340static void get_file_standard_info(struct smb2_query_info_rsp *rsp,
Namjae Jeon070fb212021-05-26 17:57:12 +09004341 struct ksmbd_file *fp, void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004342{
4343 struct smb2_file_standard_info *sinfo;
4344 unsigned int delete_pending;
4345 struct inode *inode;
4346 struct kstat stat;
4347
Namjae Jeonab0b2632021-06-29 09:20:13 +09004348 inode = file_inode(fp->filp);
Hyunchul Leeaf349832021-06-30 18:25:53 +09004349 generic_fillattr(file_mnt_user_ns(fp->filp), inode, &stat);
Namjae Jeone2f34482021-03-16 10:49:09 +09004350
4351 sinfo = (struct smb2_file_standard_info *)rsp->Buffer;
4352 delete_pending = ksmbd_inode_pending_delete(fp);
4353
4354 sinfo->AllocationSize = cpu_to_le64(get_allocation_size(inode, &stat));
4355 sinfo->EndOfFile = S_ISDIR(stat.mode) ? 0 : cpu_to_le64(stat.size);
4356 sinfo->NumberOfLinks = cpu_to_le32(get_nlink(&stat) - delete_pending);
4357 sinfo->DeletePending = delete_pending;
4358 sinfo->Directory = S_ISDIR(stat.mode) ? 1 : 0;
4359 rsp->OutputBufferLength =
4360 cpu_to_le32(sizeof(struct smb2_file_standard_info));
4361 inc_rfc1001_len(rsp_org,
4362 sizeof(struct smb2_file_standard_info));
4363}
4364
4365static void get_file_alignment_info(struct smb2_query_info_rsp *rsp,
Namjae Jeon070fb212021-05-26 17:57:12 +09004366 void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004367{
4368 struct smb2_file_alignment_info *file_info;
4369
4370 file_info = (struct smb2_file_alignment_info *)rsp->Buffer;
4371 file_info->AlignmentRequirement = 0;
4372 rsp->OutputBufferLength =
4373 cpu_to_le32(sizeof(struct smb2_file_alignment_info));
4374 inc_rfc1001_len(rsp_org,
4375 sizeof(struct smb2_file_alignment_info));
4376}
4377
4378static int get_file_all_info(struct ksmbd_work *work,
Namjae Jeon070fb212021-05-26 17:57:12 +09004379 struct smb2_query_info_rsp *rsp,
4380 struct ksmbd_file *fp,
4381 void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004382{
4383 struct ksmbd_conn *conn = work->conn;
4384 struct smb2_file_all_info *file_info;
4385 unsigned int delete_pending;
4386 struct inode *inode;
4387 struct kstat stat;
4388 int conv_len;
4389 char *filename;
4390 u64 time;
4391
4392 if (!(fp->daccess & FILE_READ_ATTRIBUTES_LE)) {
4393 ksmbd_debug(SMB, "no right to read the attributes : 0x%x\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09004394 fp->daccess);
Namjae Jeone2f34482021-03-16 10:49:09 +09004395 return -EACCES;
4396 }
4397
Hyunchul Lee265fd192021-09-25 00:06:16 +09004398 filename = convert_to_nt_pathname(fp->filename);
Namjae Jeone2f34482021-03-16 10:49:09 +09004399 if (!filename)
4400 return -ENOMEM;
4401
Namjae Jeonab0b2632021-06-29 09:20:13 +09004402 inode = file_inode(fp->filp);
Hyunchul Leeaf349832021-06-30 18:25:53 +09004403 generic_fillattr(file_mnt_user_ns(fp->filp), inode, &stat);
Namjae Jeone2f34482021-03-16 10:49:09 +09004404
4405 ksmbd_debug(SMB, "filename = %s\n", filename);
4406 delete_pending = ksmbd_inode_pending_delete(fp);
4407 file_info = (struct smb2_file_all_info *)rsp->Buffer;
4408
4409 file_info->CreationTime = cpu_to_le64(fp->create_time);
4410 time = ksmbd_UnixTimeToNT(stat.atime);
4411 file_info->LastAccessTime = cpu_to_le64(time);
4412 time = ksmbd_UnixTimeToNT(stat.mtime);
4413 file_info->LastWriteTime = cpu_to_le64(time);
4414 time = ksmbd_UnixTimeToNT(stat.ctime);
4415 file_info->ChangeTime = cpu_to_le64(time);
4416 file_info->Attributes = fp->f_ci->m_fattr;
4417 file_info->Pad1 = 0;
4418 file_info->AllocationSize =
4419 cpu_to_le64(get_allocation_size(inode, &stat));
4420 file_info->EndOfFile = S_ISDIR(stat.mode) ? 0 : cpu_to_le64(stat.size);
4421 file_info->NumberOfLinks =
4422 cpu_to_le32(get_nlink(&stat) - delete_pending);
4423 file_info->DeletePending = delete_pending;
4424 file_info->Directory = S_ISDIR(stat.mode) ? 1 : 0;
4425 file_info->Pad2 = 0;
4426 file_info->IndexNumber = cpu_to_le64(stat.ino);
4427 file_info->EASize = 0;
4428 file_info->AccessFlags = fp->daccess;
4429 file_info->CurrentByteOffset = cpu_to_le64(fp->filp->f_pos);
4430 file_info->Mode = fp->coption;
4431 file_info->AlignmentRequirement = 0;
Namjae Jeon070fb212021-05-26 17:57:12 +09004432 conv_len = smbConvertToUTF16((__le16 *)file_info->FileName, filename,
4433 PATH_MAX, conn->local_nls, 0);
Namjae Jeone2f34482021-03-16 10:49:09 +09004434 conv_len *= 2;
4435 file_info->FileNameLength = cpu_to_le32(conv_len);
4436 rsp->OutputBufferLength =
4437 cpu_to_le32(sizeof(struct smb2_file_all_info) + conv_len - 1);
4438 kfree(filename);
4439 inc_rfc1001_len(rsp_org, le32_to_cpu(rsp->OutputBufferLength));
4440 return 0;
4441}
4442
4443static void get_file_alternate_info(struct ksmbd_work *work,
Namjae Jeon070fb212021-05-26 17:57:12 +09004444 struct smb2_query_info_rsp *rsp,
4445 struct ksmbd_file *fp,
4446 void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004447{
4448 struct ksmbd_conn *conn = work->conn;
4449 struct smb2_file_alt_name_info *file_info;
Namjae Jeon493fa2f2021-06-29 09:22:16 +09004450 struct dentry *dentry = fp->filp->f_path.dentry;
Namjae Jeone2f34482021-03-16 10:49:09 +09004451 int conv_len;
Namjae Jeone2f34482021-03-16 10:49:09 +09004452
Namjae Jeon493fa2f2021-06-29 09:22:16 +09004453 spin_lock(&dentry->d_lock);
Namjae Jeone2f34482021-03-16 10:49:09 +09004454 file_info = (struct smb2_file_alt_name_info *)rsp->Buffer;
4455 conv_len = ksmbd_extract_shortname(conn,
Namjae Jeon493fa2f2021-06-29 09:22:16 +09004456 dentry->d_name.name,
Namjae Jeone2f34482021-03-16 10:49:09 +09004457 file_info->FileName);
Namjae Jeon493fa2f2021-06-29 09:22:16 +09004458 spin_unlock(&dentry->d_lock);
Namjae Jeone2f34482021-03-16 10:49:09 +09004459 file_info->FileNameLength = cpu_to_le32(conv_len);
4460 rsp->OutputBufferLength =
4461 cpu_to_le32(sizeof(struct smb2_file_alt_name_info) + conv_len);
4462 inc_rfc1001_len(rsp_org, le32_to_cpu(rsp->OutputBufferLength));
4463}
4464
4465static void get_file_stream_info(struct ksmbd_work *work,
Namjae Jeon070fb212021-05-26 17:57:12 +09004466 struct smb2_query_info_rsp *rsp,
4467 struct ksmbd_file *fp,
4468 void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004469{
4470 struct ksmbd_conn *conn = work->conn;
4471 struct smb2_file_stream_info *file_info;
4472 char *stream_name, *xattr_list = NULL, *stream_buf;
4473 struct kstat stat;
4474 struct path *path = &fp->filp->f_path;
4475 ssize_t xattr_list_len;
4476 int nbytes = 0, streamlen, stream_name_len, next, idx = 0;
Hyunchul Lee34061d62021-10-16 08:39:54 +09004477 int buf_free_len;
4478 struct smb2_query_info_req *req = ksmbd_req_buf_next(work);
Namjae Jeone2f34482021-03-16 10:49:09 +09004479
Hyunchul Leeaf349832021-06-30 18:25:53 +09004480 generic_fillattr(file_mnt_user_ns(fp->filp), file_inode(fp->filp),
4481 &stat);
Namjae Jeone2f34482021-03-16 10:49:09 +09004482 file_info = (struct smb2_file_stream_info *)rsp->Buffer;
4483
Namjae Jeon1ec721532021-11-21 11:32:39 +09004484 buf_free_len =
4485 smb2_calc_max_out_buf_len(work, 8,
4486 le32_to_cpu(req->OutputBufferLength));
4487 if (buf_free_len < 0)
4488 goto out;
4489
Namjae Jeone2f34482021-03-16 10:49:09 +09004490 xattr_list_len = ksmbd_vfs_listxattr(path->dentry, &xattr_list);
4491 if (xattr_list_len < 0) {
4492 goto out;
4493 } else if (!xattr_list_len) {
4494 ksmbd_debug(SMB, "empty xattr in the file\n");
4495 goto out;
4496 }
4497
4498 while (idx < xattr_list_len) {
4499 stream_name = xattr_list + idx;
4500 streamlen = strlen(stream_name);
4501 idx += streamlen + 1;
4502
4503 ksmbd_debug(SMB, "%s, len %d\n", stream_name, streamlen);
4504
4505 if (strncmp(&stream_name[XATTR_USER_PREFIX_LEN],
Namjae Jeon64b39f42021-03-30 14:25:35 +09004506 STREAM_PREFIX, STREAM_PREFIX_LEN))
Namjae Jeone2f34482021-03-16 10:49:09 +09004507 continue;
4508
4509 stream_name_len = streamlen - (XATTR_USER_PREFIX_LEN +
4510 STREAM_PREFIX_LEN);
4511 streamlen = stream_name_len;
4512
4513 /* plus : size */
4514 streamlen += 1;
4515 stream_buf = kmalloc(streamlen + 1, GFP_KERNEL);
4516 if (!stream_buf)
4517 break;
4518
4519 streamlen = snprintf(stream_buf, streamlen + 1,
Namjae Jeon070fb212021-05-26 17:57:12 +09004520 ":%s", &stream_name[XATTR_NAME_STREAM_LEN]);
Namjae Jeone2f34482021-03-16 10:49:09 +09004521
Hyunchul Lee34061d62021-10-16 08:39:54 +09004522 next = sizeof(struct smb2_file_stream_info) + streamlen * 2;
Namjae Jeon178ca6f2021-11-24 10:23:02 +09004523 if (next > buf_free_len) {
4524 kfree(stream_buf);
Hyunchul Lee34061d62021-10-16 08:39:54 +09004525 break;
Namjae Jeon178ca6f2021-11-24 10:23:02 +09004526 }
Hyunchul Lee34061d62021-10-16 08:39:54 +09004527
Namjae Jeon070fb212021-05-26 17:57:12 +09004528 file_info = (struct smb2_file_stream_info *)&rsp->Buffer[nbytes];
Namjae Jeone2f34482021-03-16 10:49:09 +09004529 streamlen = smbConvertToUTF16((__le16 *)file_info->StreamName,
Namjae Jeon070fb212021-05-26 17:57:12 +09004530 stream_buf, streamlen,
4531 conn->local_nls, 0);
Namjae Jeone2f34482021-03-16 10:49:09 +09004532 streamlen *= 2;
4533 kfree(stream_buf);
4534 file_info->StreamNameLength = cpu_to_le32(streamlen);
4535 file_info->StreamSize = cpu_to_le64(stream_name_len);
4536 file_info->StreamAllocationSize = cpu_to_le64(stream_name_len);
4537
Namjae Jeone2f34482021-03-16 10:49:09 +09004538 nbytes += next;
Hyunchul Lee34061d62021-10-16 08:39:54 +09004539 buf_free_len -= next;
Namjae Jeone2f34482021-03-16 10:49:09 +09004540 file_info->NextEntryOffset = cpu_to_le32(next);
4541 }
4542
Namjae Jeon1ec721532021-11-21 11:32:39 +09004543out:
Hyunchul Lee34061d62021-10-16 08:39:54 +09004544 if (!S_ISDIR(stat.mode) &&
4545 buf_free_len >= sizeof(struct smb2_file_stream_info) + 7 * 2) {
Namjae Jeone2f34482021-03-16 10:49:09 +09004546 file_info = (struct smb2_file_stream_info *)
4547 &rsp->Buffer[nbytes];
4548 streamlen = smbConvertToUTF16((__le16 *)file_info->StreamName,
Namjae Jeon070fb212021-05-26 17:57:12 +09004549 "::$DATA", 7, conn->local_nls, 0);
Namjae Jeone2f34482021-03-16 10:49:09 +09004550 streamlen *= 2;
4551 file_info->StreamNameLength = cpu_to_le32(streamlen);
Namjae Jeon1ec721532021-11-21 11:32:39 +09004552 file_info->StreamSize = cpu_to_le64(stat.size);
4553 file_info->StreamAllocationSize = cpu_to_le64(stat.blocks << 9);
Namjae Jeone2f34482021-03-16 10:49:09 +09004554 nbytes += sizeof(struct smb2_file_stream_info) + streamlen;
4555 }
4556
4557 /* last entry offset should be 0 */
4558 file_info->NextEntryOffset = 0;
Namjae Jeon79f6b112021-04-02 12:47:14 +09004559 kvfree(xattr_list);
Namjae Jeone2f34482021-03-16 10:49:09 +09004560
4561 rsp->OutputBufferLength = cpu_to_le32(nbytes);
4562 inc_rfc1001_len(rsp_org, nbytes);
4563}
4564
4565static void get_file_internal_info(struct smb2_query_info_rsp *rsp,
Namjae Jeon070fb212021-05-26 17:57:12 +09004566 struct ksmbd_file *fp, void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004567{
4568 struct smb2_file_internal_info *file_info;
4569 struct kstat stat;
4570
Hyunchul Leeaf349832021-06-30 18:25:53 +09004571 generic_fillattr(file_mnt_user_ns(fp->filp), file_inode(fp->filp),
4572 &stat);
Namjae Jeone2f34482021-03-16 10:49:09 +09004573 file_info = (struct smb2_file_internal_info *)rsp->Buffer;
4574 file_info->IndexNumber = cpu_to_le64(stat.ino);
4575 rsp->OutputBufferLength =
4576 cpu_to_le32(sizeof(struct smb2_file_internal_info));
4577 inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_internal_info));
4578}
4579
4580static int get_file_network_open_info(struct smb2_query_info_rsp *rsp,
Namjae Jeon070fb212021-05-26 17:57:12 +09004581 struct ksmbd_file *fp, void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004582{
4583 struct smb2_file_ntwrk_info *file_info;
4584 struct inode *inode;
4585 struct kstat stat;
4586 u64 time;
4587
4588 if (!(fp->daccess & FILE_READ_ATTRIBUTES_LE)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09004589 pr_err("no right to read the attributes : 0x%x\n",
4590 fp->daccess);
Namjae Jeone2f34482021-03-16 10:49:09 +09004591 return -EACCES;
4592 }
4593
4594 file_info = (struct smb2_file_ntwrk_info *)rsp->Buffer;
4595
Namjae Jeonab0b2632021-06-29 09:20:13 +09004596 inode = file_inode(fp->filp);
Hyunchul Leeaf349832021-06-30 18:25:53 +09004597 generic_fillattr(file_mnt_user_ns(fp->filp), inode, &stat);
Namjae Jeone2f34482021-03-16 10:49:09 +09004598
4599 file_info->CreationTime = cpu_to_le64(fp->create_time);
4600 time = ksmbd_UnixTimeToNT(stat.atime);
4601 file_info->LastAccessTime = cpu_to_le64(time);
4602 time = ksmbd_UnixTimeToNT(stat.mtime);
4603 file_info->LastWriteTime = cpu_to_le64(time);
4604 time = ksmbd_UnixTimeToNT(stat.ctime);
4605 file_info->ChangeTime = cpu_to_le64(time);
4606 file_info->Attributes = fp->f_ci->m_fattr;
4607 file_info->AllocationSize =
4608 cpu_to_le64(get_allocation_size(inode, &stat));
4609 file_info->EndOfFile = S_ISDIR(stat.mode) ? 0 : cpu_to_le64(stat.size);
4610 file_info->Reserved = cpu_to_le32(0);
4611 rsp->OutputBufferLength =
4612 cpu_to_le32(sizeof(struct smb2_file_ntwrk_info));
4613 inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_ntwrk_info));
4614 return 0;
4615}
4616
Namjae Jeon64b39f42021-03-30 14:25:35 +09004617static void get_file_ea_info(struct smb2_query_info_rsp *rsp, void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004618{
4619 struct smb2_file_ea_info *file_info;
4620
4621 file_info = (struct smb2_file_ea_info *)rsp->Buffer;
4622 file_info->EASize = 0;
4623 rsp->OutputBufferLength =
4624 cpu_to_le32(sizeof(struct smb2_file_ea_info));
4625 inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_ea_info));
4626}
4627
4628static void get_file_position_info(struct smb2_query_info_rsp *rsp,
Namjae Jeon070fb212021-05-26 17:57:12 +09004629 struct ksmbd_file *fp, void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004630{
4631 struct smb2_file_pos_info *file_info;
4632
4633 file_info = (struct smb2_file_pos_info *)rsp->Buffer;
4634 file_info->CurrentByteOffset = cpu_to_le64(fp->filp->f_pos);
4635 rsp->OutputBufferLength =
4636 cpu_to_le32(sizeof(struct smb2_file_pos_info));
4637 inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_pos_info));
4638}
4639
4640static void get_file_mode_info(struct smb2_query_info_rsp *rsp,
Namjae Jeon070fb212021-05-26 17:57:12 +09004641 struct ksmbd_file *fp, void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004642{
4643 struct smb2_file_mode_info *file_info;
4644
4645 file_info = (struct smb2_file_mode_info *)rsp->Buffer;
4646 file_info->Mode = fp->coption & FILE_MODE_INFO_MASK;
4647 rsp->OutputBufferLength =
4648 cpu_to_le32(sizeof(struct smb2_file_mode_info));
4649 inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_mode_info));
4650}
4651
4652static void get_file_compression_info(struct smb2_query_info_rsp *rsp,
Namjae Jeon070fb212021-05-26 17:57:12 +09004653 struct ksmbd_file *fp, void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004654{
4655 struct smb2_file_comp_info *file_info;
4656 struct kstat stat;
4657
Hyunchul Leeaf349832021-06-30 18:25:53 +09004658 generic_fillattr(file_mnt_user_ns(fp->filp), file_inode(fp->filp),
4659 &stat);
Namjae Jeone2f34482021-03-16 10:49:09 +09004660
4661 file_info = (struct smb2_file_comp_info *)rsp->Buffer;
4662 file_info->CompressedFileSize = cpu_to_le64(stat.blocks << 9);
4663 file_info->CompressionFormat = COMPRESSION_FORMAT_NONE;
4664 file_info->CompressionUnitShift = 0;
4665 file_info->ChunkShift = 0;
4666 file_info->ClusterShift = 0;
4667 memset(&file_info->Reserved[0], 0, 3);
4668
4669 rsp->OutputBufferLength =
4670 cpu_to_le32(sizeof(struct smb2_file_comp_info));
4671 inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_comp_info));
4672}
4673
4674static int get_file_attribute_tag_info(struct smb2_query_info_rsp *rsp,
Namjae Jeon070fb212021-05-26 17:57:12 +09004675 struct ksmbd_file *fp, void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004676{
4677 struct smb2_file_attr_tag_info *file_info;
4678
4679 if (!(fp->daccess & FILE_READ_ATTRIBUTES_LE)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09004680 pr_err("no right to read the attributes : 0x%x\n",
4681 fp->daccess);
Namjae Jeone2f34482021-03-16 10:49:09 +09004682 return -EACCES;
4683 }
4684
4685 file_info = (struct smb2_file_attr_tag_info *)rsp->Buffer;
4686 file_info->FileAttributes = fp->f_ci->m_fattr;
4687 file_info->ReparseTag = 0;
4688 rsp->OutputBufferLength =
4689 cpu_to_le32(sizeof(struct smb2_file_attr_tag_info));
Namjae Jeon070fb212021-05-26 17:57:12 +09004690 inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_attr_tag_info));
Namjae Jeone2f34482021-03-16 10:49:09 +09004691 return 0;
4692}
4693
4694static int find_file_posix_info(struct smb2_query_info_rsp *rsp,
Namjae Jeon070fb212021-05-26 17:57:12 +09004695 struct ksmbd_file *fp, void *rsp_org)
Namjae Jeone2f34482021-03-16 10:49:09 +09004696{
4697 struct smb311_posix_qinfo *file_info;
Namjae Jeonab0b2632021-06-29 09:20:13 +09004698 struct inode *inode = file_inode(fp->filp);
Namjae Jeone2f34482021-03-16 10:49:09 +09004699 u64 time;
4700
4701 file_info = (struct smb311_posix_qinfo *)rsp->Buffer;
4702 file_info->CreationTime = cpu_to_le64(fp->create_time);
4703 time = ksmbd_UnixTimeToNT(inode->i_atime);
4704 file_info->LastAccessTime = cpu_to_le64(time);
4705 time = ksmbd_UnixTimeToNT(inode->i_mtime);
4706 file_info->LastWriteTime = cpu_to_le64(time);
4707 time = ksmbd_UnixTimeToNT(inode->i_ctime);
4708 file_info->ChangeTime = cpu_to_le64(time);
4709 file_info->DosAttributes = fp->f_ci->m_fattr;
4710 file_info->Inode = cpu_to_le64(inode->i_ino);
4711 file_info->EndOfFile = cpu_to_le64(inode->i_size);
4712 file_info->AllocationSize = cpu_to_le64(inode->i_blocks << 9);
4713 file_info->HardLinks = cpu_to_le32(inode->i_nlink);
4714 file_info->Mode = cpu_to_le32(inode->i_mode);
4715 file_info->DeviceId = cpu_to_le32(inode->i_rdev);
4716 rsp->OutputBufferLength =
4717 cpu_to_le32(sizeof(struct smb311_posix_qinfo));
Namjae Jeon64b39f42021-03-30 14:25:35 +09004718 inc_rfc1001_len(rsp_org, sizeof(struct smb311_posix_qinfo));
Namjae Jeone2f34482021-03-16 10:49:09 +09004719 return 0;
4720}
4721
Namjae Jeone2f34482021-03-16 10:49:09 +09004722static int smb2_get_info_file(struct ksmbd_work *work,
Namjae Jeon070fb212021-05-26 17:57:12 +09004723 struct smb2_query_info_req *req,
Namjae Jeoncb451722021-11-03 08:08:44 +09004724 struct smb2_query_info_rsp *rsp)
Namjae Jeone2f34482021-03-16 10:49:09 +09004725{
4726 struct ksmbd_file *fp;
4727 int fileinfoclass = 0;
4728 int rc = 0;
4729 int file_infoclass_size;
4730 unsigned int id = KSMBD_NO_FID, pid = KSMBD_NO_FID;
4731
4732 if (test_share_config_flag(work->tcon->share_conf,
Namjae Jeon64b39f42021-03-30 14:25:35 +09004733 KSMBD_SHARE_FLAG_PIPE)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09004734 /* smb2 info file called for pipe */
Namjae Jeoncb451722021-11-03 08:08:44 +09004735 return smb2_get_info_file_pipe(work->sess, req, rsp,
4736 work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004737 }
4738
4739 if (work->next_smb2_rcv_hdr_off) {
Namjae Jeon38673692021-07-08 12:32:27 +09004740 if (!has_file_id(le64_to_cpu(req->VolatileFileId))) {
4741 ksmbd_debug(SMB, "Compound request set FID = %llu\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09004742 work->compound_fid);
Namjae Jeone2f34482021-03-16 10:49:09 +09004743 id = work->compound_fid;
4744 pid = work->compound_pfid;
4745 }
4746 }
4747
Namjae Jeon38673692021-07-08 12:32:27 +09004748 if (!has_file_id(id)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09004749 id = le64_to_cpu(req->VolatileFileId);
4750 pid = le64_to_cpu(req->PersistentFileId);
4751 }
4752
4753 fp = ksmbd_lookup_fd_slow(work, id, pid);
4754 if (!fp)
4755 return -ENOENT;
4756
4757 fileinfoclass = req->FileInfoClass;
4758
4759 switch (fileinfoclass) {
4760 case FILE_ACCESS_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004761 get_file_access_info(rsp, fp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004762 file_infoclass_size = FILE_ACCESS_INFORMATION_SIZE;
4763 break;
4764
4765 case FILE_BASIC_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004766 rc = get_file_basic_info(rsp, fp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004767 file_infoclass_size = FILE_BASIC_INFORMATION_SIZE;
4768 break;
4769
4770 case FILE_STANDARD_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004771 get_file_standard_info(rsp, fp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004772 file_infoclass_size = FILE_STANDARD_INFORMATION_SIZE;
4773 break;
4774
4775 case FILE_ALIGNMENT_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004776 get_file_alignment_info(rsp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004777 file_infoclass_size = FILE_ALIGNMENT_INFORMATION_SIZE;
4778 break;
4779
4780 case FILE_ALL_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004781 rc = get_file_all_info(work, rsp, fp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004782 file_infoclass_size = FILE_ALL_INFORMATION_SIZE;
4783 break;
4784
4785 case FILE_ALTERNATE_NAME_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004786 get_file_alternate_info(work, rsp, fp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004787 file_infoclass_size = FILE_ALTERNATE_NAME_INFORMATION_SIZE;
4788 break;
4789
4790 case FILE_STREAM_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004791 get_file_stream_info(work, rsp, fp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004792 file_infoclass_size = FILE_STREAM_INFORMATION_SIZE;
4793 break;
4794
4795 case FILE_INTERNAL_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004796 get_file_internal_info(rsp, fp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004797 file_infoclass_size = FILE_INTERNAL_INFORMATION_SIZE;
4798 break;
4799
4800 case FILE_NETWORK_OPEN_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004801 rc = get_file_network_open_info(rsp, fp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004802 file_infoclass_size = FILE_NETWORK_OPEN_INFORMATION_SIZE;
4803 break;
4804
4805 case FILE_EA_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004806 get_file_ea_info(rsp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004807 file_infoclass_size = FILE_EA_INFORMATION_SIZE;
4808 break;
4809
4810 case FILE_FULL_EA_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004811 rc = smb2_get_ea(work, fp, req, rsp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004812 file_infoclass_size = FILE_FULL_EA_INFORMATION_SIZE;
4813 break;
4814
4815 case FILE_POSITION_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004816 get_file_position_info(rsp, fp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004817 file_infoclass_size = FILE_POSITION_INFORMATION_SIZE;
4818 break;
4819
4820 case FILE_MODE_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004821 get_file_mode_info(rsp, fp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004822 file_infoclass_size = FILE_MODE_INFORMATION_SIZE;
4823 break;
4824
4825 case FILE_COMPRESSION_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004826 get_file_compression_info(rsp, fp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004827 file_infoclass_size = FILE_COMPRESSION_INFORMATION_SIZE;
4828 break;
4829
4830 case FILE_ATTRIBUTE_TAG_INFORMATION:
Namjae Jeoncb451722021-11-03 08:08:44 +09004831 rc = get_file_attribute_tag_info(rsp, fp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004832 file_infoclass_size = FILE_ATTRIBUTE_TAG_INFORMATION_SIZE;
4833 break;
4834 case SMB_FIND_FILE_POSIX_INFO:
4835 if (!work->tcon->posix_extensions) {
Namjae Jeonbde16942021-06-28 15:23:19 +09004836 pr_err("client doesn't negotiate with SMB3.1.1 POSIX Extensions\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09004837 rc = -EOPNOTSUPP;
4838 } else {
Namjae Jeoncb451722021-11-03 08:08:44 +09004839 rc = find_file_posix_info(rsp, fp, work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09004840 file_infoclass_size = sizeof(struct smb311_posix_qinfo);
4841 }
4842 break;
4843 default:
4844 ksmbd_debug(SMB, "fileinfoclass %d not supported yet\n",
4845 fileinfoclass);
4846 rc = -EOPNOTSUPP;
4847 }
4848 if (!rc)
4849 rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength),
Namjae Jeoncb451722021-11-03 08:08:44 +09004850 rsp, work->response_buf,
Namjae Jeone2f34482021-03-16 10:49:09 +09004851 file_infoclass_size);
4852 ksmbd_fd_put(work, fp);
4853 return rc;
4854}
4855
Namjae Jeone2f34482021-03-16 10:49:09 +09004856static int smb2_get_info_filesystem(struct ksmbd_work *work,
Namjae Jeon070fb212021-05-26 17:57:12 +09004857 struct smb2_query_info_req *req,
Namjae Jeoncb451722021-11-03 08:08:44 +09004858 struct smb2_query_info_rsp *rsp)
Namjae Jeone2f34482021-03-16 10:49:09 +09004859{
4860 struct ksmbd_session *sess = work->sess;
4861 struct ksmbd_conn *conn = sess->conn;
4862 struct ksmbd_share_config *share = work->tcon->share_conf;
4863 int fsinfoclass = 0;
4864 struct kstatfs stfs;
4865 struct path path;
4866 int rc = 0, len;
4867 int fs_infoclass_size = 0;
4868
Hyunchul Lee265fd192021-09-25 00:06:16 +09004869 rc = kern_path(share->path, LOOKUP_NO_SYMLINKS, &path);
Namjae Jeone2f34482021-03-16 10:49:09 +09004870 if (rc) {
Namjae Jeonbde16942021-06-28 15:23:19 +09004871 pr_err("cannot create vfs path\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09004872 return -EIO;
4873 }
4874
4875 rc = vfs_statfs(&path, &stfs);
4876 if (rc) {
Namjae Jeonbde16942021-06-28 15:23:19 +09004877 pr_err("cannot do stat of path %s\n", share->path);
Namjae Jeone2f34482021-03-16 10:49:09 +09004878 path_put(&path);
4879 return -EIO;
4880 }
4881
4882 fsinfoclass = req->FileInfoClass;
4883
4884 switch (fsinfoclass) {
4885 case FS_DEVICE_INFORMATION:
4886 {
4887 struct filesystem_device_info *info;
4888
4889 info = (struct filesystem_device_info *)rsp->Buffer;
4890
4891 info->DeviceType = cpu_to_le32(stfs.f_type);
4892 info->DeviceCharacteristics = cpu_to_le32(0x00000020);
4893 rsp->OutputBufferLength = cpu_to_le32(8);
Namjae Jeoncb451722021-11-03 08:08:44 +09004894 inc_rfc1001_len(work->response_buf, 8);
Namjae Jeone2f34482021-03-16 10:49:09 +09004895 fs_infoclass_size = FS_DEVICE_INFORMATION_SIZE;
4896 break;
4897 }
4898 case FS_ATTRIBUTE_INFORMATION:
4899 {
4900 struct filesystem_attribute_info *info;
4901 size_t sz;
4902
4903 info = (struct filesystem_attribute_info *)rsp->Buffer;
4904 info->Attributes = cpu_to_le32(FILE_SUPPORTS_OBJECT_IDS |
4905 FILE_PERSISTENT_ACLS |
4906 FILE_UNICODE_ON_DISK |
4907 FILE_CASE_PRESERVED_NAMES |
Namjae Jeoneb817362021-05-18 10:37:59 +09004908 FILE_CASE_SENSITIVE_SEARCH |
4909 FILE_SUPPORTS_BLOCK_REFCOUNTING);
Namjae Jeone2f34482021-03-16 10:49:09 +09004910
4911 info->Attributes |= cpu_to_le32(server_conf.share_fake_fscaps);
4912
4913 info->MaxPathNameComponentLength = cpu_to_le32(stfs.f_namelen);
4914 len = smbConvertToUTF16((__le16 *)info->FileSystemName,
4915 "NTFS", PATH_MAX, conn->local_nls, 0);
4916 len = len * 2;
4917 info->FileSystemNameLen = cpu_to_le32(len);
4918 sz = sizeof(struct filesystem_attribute_info) - 2 + len;
4919 rsp->OutputBufferLength = cpu_to_le32(sz);
Namjae Jeoncb451722021-11-03 08:08:44 +09004920 inc_rfc1001_len(work->response_buf, sz);
Namjae Jeone2f34482021-03-16 10:49:09 +09004921 fs_infoclass_size = FS_ATTRIBUTE_INFORMATION_SIZE;
4922 break;
4923 }
4924 case FS_VOLUME_INFORMATION:
4925 {
4926 struct filesystem_vol_info *info;
4927 size_t sz;
Namjae Jeon5d2f0b12021-10-31 09:53:50 +09004928 unsigned int serial_crc = 0;
Namjae Jeone2f34482021-03-16 10:49:09 +09004929
4930 info = (struct filesystem_vol_info *)(rsp->Buffer);
4931 info->VolumeCreationTime = 0;
Namjae Jeon5d2f0b12021-10-31 09:53:50 +09004932 serial_crc = crc32_le(serial_crc, share->name,
4933 strlen(share->name));
4934 serial_crc = crc32_le(serial_crc, share->path,
4935 strlen(share->path));
4936 serial_crc = crc32_le(serial_crc, ksmbd_netbios_name(),
4937 strlen(ksmbd_netbios_name()));
Namjae Jeone2f34482021-03-16 10:49:09 +09004938 /* Taking dummy value of serial number*/
Namjae Jeon5d2f0b12021-10-31 09:53:50 +09004939 info->SerialNumber = cpu_to_le32(serial_crc);
Namjae Jeone2f34482021-03-16 10:49:09 +09004940 len = smbConvertToUTF16((__le16 *)info->VolumeLabel,
4941 share->name, PATH_MAX,
4942 conn->local_nls, 0);
4943 len = len * 2;
4944 info->VolumeLabelSize = cpu_to_le32(len);
4945 info->Reserved = 0;
4946 sz = sizeof(struct filesystem_vol_info) - 2 + len;
4947 rsp->OutputBufferLength = cpu_to_le32(sz);
Namjae Jeoncb451722021-11-03 08:08:44 +09004948 inc_rfc1001_len(work->response_buf, sz);
Namjae Jeone2f34482021-03-16 10:49:09 +09004949 fs_infoclass_size = FS_VOLUME_INFORMATION_SIZE;
4950 break;
4951 }
4952 case FS_SIZE_INFORMATION:
4953 {
4954 struct filesystem_info *info;
Namjae Jeone2f34482021-03-16 10:49:09 +09004955
4956 info = (struct filesystem_info *)(rsp->Buffer);
Namjae Jeone2f34482021-03-16 10:49:09 +09004957 info->TotalAllocationUnits = cpu_to_le64(stfs.f_blocks);
4958 info->FreeAllocationUnits = cpu_to_le64(stfs.f_bfree);
Namjae Jeonee81cae2021-06-26 22:32:34 +09004959 info->SectorsPerAllocationUnit = cpu_to_le32(1);
4960 info->BytesPerSector = cpu_to_le32(stfs.f_bsize);
Namjae Jeone2f34482021-03-16 10:49:09 +09004961 rsp->OutputBufferLength = cpu_to_le32(24);
Namjae Jeoncb451722021-11-03 08:08:44 +09004962 inc_rfc1001_len(work->response_buf, 24);
Namjae Jeone2f34482021-03-16 10:49:09 +09004963 fs_infoclass_size = FS_SIZE_INFORMATION_SIZE;
4964 break;
4965 }
4966 case FS_FULL_SIZE_INFORMATION:
4967 {
4968 struct smb2_fs_full_size_info *info;
Namjae Jeone2f34482021-03-16 10:49:09 +09004969
4970 info = (struct smb2_fs_full_size_info *)(rsp->Buffer);
Namjae Jeone2f34482021-03-16 10:49:09 +09004971 info->TotalAllocationUnits = cpu_to_le64(stfs.f_blocks);
4972 info->CallerAvailableAllocationUnits =
4973 cpu_to_le64(stfs.f_bavail);
4974 info->ActualAvailableAllocationUnits =
4975 cpu_to_le64(stfs.f_bfree);
Namjae Jeonee81cae2021-06-26 22:32:34 +09004976 info->SectorsPerAllocationUnit = cpu_to_le32(1);
4977 info->BytesPerSector = cpu_to_le32(stfs.f_bsize);
Namjae Jeone2f34482021-03-16 10:49:09 +09004978 rsp->OutputBufferLength = cpu_to_le32(32);
Namjae Jeoncb451722021-11-03 08:08:44 +09004979 inc_rfc1001_len(work->response_buf, 32);
Namjae Jeone2f34482021-03-16 10:49:09 +09004980 fs_infoclass_size = FS_FULL_SIZE_INFORMATION_SIZE;
4981 break;
4982 }
4983 case FS_OBJECT_ID_INFORMATION:
4984 {
4985 struct object_id_info *info;
4986
4987 info = (struct object_id_info *)(rsp->Buffer);
4988
4989 if (!user_guest(sess->user))
4990 memcpy(info->objid, user_passkey(sess->user), 16);
4991 else
4992 memset(info->objid, 0, 16);
4993
4994 info->extended_info.magic = cpu_to_le32(EXTENDED_INFO_MAGIC);
4995 info->extended_info.version = cpu_to_le32(1);
4996 info->extended_info.release = cpu_to_le32(1);
4997 info->extended_info.rel_date = 0;
Namjae Jeon64b39f42021-03-30 14:25:35 +09004998 memcpy(info->extended_info.version_string, "1.1.0", strlen("1.1.0"));
Namjae Jeone2f34482021-03-16 10:49:09 +09004999 rsp->OutputBufferLength = cpu_to_le32(64);
Namjae Jeoncb451722021-11-03 08:08:44 +09005000 inc_rfc1001_len(work->response_buf, 64);
Namjae Jeone2f34482021-03-16 10:49:09 +09005001 fs_infoclass_size = FS_OBJECT_ID_INFORMATION_SIZE;
5002 break;
5003 }
5004 case FS_SECTOR_SIZE_INFORMATION:
5005 {
5006 struct smb3_fs_ss_info *info;
Namjae Jeone2f34482021-03-16 10:49:09 +09005007
5008 info = (struct smb3_fs_ss_info *)(rsp->Buffer);
Namjae Jeone2f34482021-03-16 10:49:09 +09005009
Namjae Jeon131bac12021-06-22 16:20:47 +09005010 info->LogicalBytesPerSector = cpu_to_le32(stfs.f_bsize);
Namjae Jeone2f34482021-03-16 10:49:09 +09005011 info->PhysicalBytesPerSectorForAtomicity =
Namjae Jeon131bac12021-06-22 16:20:47 +09005012 cpu_to_le32(stfs.f_bsize);
5013 info->PhysicalBytesPerSectorForPerf = cpu_to_le32(stfs.f_bsize);
Namjae Jeone2f34482021-03-16 10:49:09 +09005014 info->FSEffPhysicalBytesPerSectorForAtomicity =
Namjae Jeon131bac12021-06-22 16:20:47 +09005015 cpu_to_le32(stfs.f_bsize);
Namjae Jeone2f34482021-03-16 10:49:09 +09005016 info->Flags = cpu_to_le32(SSINFO_FLAGS_ALIGNED_DEVICE |
5017 SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE);
5018 info->ByteOffsetForSectorAlignment = 0;
5019 info->ByteOffsetForPartitionAlignment = 0;
5020 rsp->OutputBufferLength = cpu_to_le32(28);
Namjae Jeoncb451722021-11-03 08:08:44 +09005021 inc_rfc1001_len(work->response_buf, 28);
Namjae Jeone2f34482021-03-16 10:49:09 +09005022 fs_infoclass_size = FS_SECTOR_SIZE_INFORMATION_SIZE;
5023 break;
5024 }
5025 case FS_CONTROL_INFORMATION:
5026 {
5027 /*
5028 * TODO : The current implementation is based on
5029 * test result with win7(NTFS) server. It's need to
5030 * modify this to get valid Quota values
5031 * from Linux kernel
5032 */
5033 struct smb2_fs_control_info *info;
5034
5035 info = (struct smb2_fs_control_info *)(rsp->Buffer);
5036 info->FreeSpaceStartFiltering = 0;
5037 info->FreeSpaceThreshold = 0;
5038 info->FreeSpaceStopFiltering = 0;
5039 info->DefaultQuotaThreshold = cpu_to_le64(SMB2_NO_FID);
5040 info->DefaultQuotaLimit = cpu_to_le64(SMB2_NO_FID);
5041 info->Padding = 0;
5042 rsp->OutputBufferLength = cpu_to_le32(48);
Namjae Jeoncb451722021-11-03 08:08:44 +09005043 inc_rfc1001_len(work->response_buf, 48);
Namjae Jeone2f34482021-03-16 10:49:09 +09005044 fs_infoclass_size = FS_CONTROL_INFORMATION_SIZE;
5045 break;
5046 }
5047 case FS_POSIX_INFORMATION:
5048 {
5049 struct filesystem_posix_info *info;
Namjae Jeone2f34482021-03-16 10:49:09 +09005050
5051 if (!work->tcon->posix_extensions) {
Namjae Jeonbde16942021-06-28 15:23:19 +09005052 pr_err("client doesn't negotiate with SMB3.1.1 POSIX Extensions\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09005053 rc = -EOPNOTSUPP;
5054 } else {
5055 info = (struct filesystem_posix_info *)(rsp->Buffer);
Namjae Jeonee81cae2021-06-26 22:32:34 +09005056 info->OptimalTransferSize = cpu_to_le32(stfs.f_bsize);
Namjae Jeone2f34482021-03-16 10:49:09 +09005057 info->BlockSize = cpu_to_le32(stfs.f_bsize);
5058 info->TotalBlocks = cpu_to_le64(stfs.f_blocks);
5059 info->BlocksAvail = cpu_to_le64(stfs.f_bfree);
5060 info->UserBlocksAvail = cpu_to_le64(stfs.f_bavail);
5061 info->TotalFileNodes = cpu_to_le64(stfs.f_files);
5062 info->FreeFileNodes = cpu_to_le64(stfs.f_ffree);
5063 rsp->OutputBufferLength = cpu_to_le32(56);
Namjae Jeoncb451722021-11-03 08:08:44 +09005064 inc_rfc1001_len(work->response_buf, 56);
Namjae Jeone2f34482021-03-16 10:49:09 +09005065 fs_infoclass_size = FS_POSIX_INFORMATION_SIZE;
5066 }
5067 break;
5068 }
5069 default:
5070 path_put(&path);
5071 return -EOPNOTSUPP;
5072 }
5073 rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength),
Namjae Jeoncb451722021-11-03 08:08:44 +09005074 rsp, work->response_buf,
Namjae Jeone2f34482021-03-16 10:49:09 +09005075 fs_infoclass_size);
5076 path_put(&path);
5077 return rc;
5078}
5079
5080static int smb2_get_info_sec(struct ksmbd_work *work,
Namjae Jeon070fb212021-05-26 17:57:12 +09005081 struct smb2_query_info_req *req,
Namjae Jeoncb451722021-11-03 08:08:44 +09005082 struct smb2_query_info_rsp *rsp)
Namjae Jeone2f34482021-03-16 10:49:09 +09005083{
5084 struct ksmbd_file *fp;
Hyunchul Lee465d7202021-07-03 12:10:36 +09005085 struct user_namespace *user_ns;
Namjae Jeone2f34482021-03-16 10:49:09 +09005086 struct smb_ntsd *pntsd = (struct smb_ntsd *)rsp->Buffer, *ppntsd = NULL;
5087 struct smb_fattr fattr = {{0}};
5088 struct inode *inode;
5089 __u32 secdesclen;
5090 unsigned int id = KSMBD_NO_FID, pid = KSMBD_NO_FID;
5091 int addition_info = le32_to_cpu(req->AdditionalInformation);
5092 int rc;
5093
Namjae Jeone294f782021-06-28 15:26:37 +09005094 if (addition_info & ~(OWNER_SECINFO | GROUP_SECINFO | DACL_SECINFO |
5095 PROTECTED_DACL_SECINFO |
5096 UNPROTECTED_DACL_SECINFO)) {
Namjae Jeon8e537d12021-11-21 07:48:45 +09005097 ksmbd_debug(SMB, "Unsupported addition info: 0x%x)\n",
Namjae Jeone294f782021-06-28 15:26:37 +09005098 addition_info);
Sebastian Gottschallced2b262021-04-27 15:33:54 +09005099
5100 pntsd->revision = cpu_to_le16(1);
5101 pntsd->type = cpu_to_le16(SELF_RELATIVE | DACL_PROTECTED);
5102 pntsd->osidoffset = 0;
5103 pntsd->gsidoffset = 0;
5104 pntsd->sacloffset = 0;
5105 pntsd->dacloffset = 0;
5106
5107 secdesclen = sizeof(struct smb_ntsd);
5108 rsp->OutputBufferLength = cpu_to_le32(secdesclen);
Namjae Jeoncb451722021-11-03 08:08:44 +09005109 inc_rfc1001_len(work->response_buf, secdesclen);
Sebastian Gottschallced2b262021-04-27 15:33:54 +09005110
5111 return 0;
5112 }
5113
Namjae Jeone2f34482021-03-16 10:49:09 +09005114 if (work->next_smb2_rcv_hdr_off) {
Namjae Jeon38673692021-07-08 12:32:27 +09005115 if (!has_file_id(le64_to_cpu(req->VolatileFileId))) {
5116 ksmbd_debug(SMB, "Compound request set FID = %llu\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09005117 work->compound_fid);
Namjae Jeone2f34482021-03-16 10:49:09 +09005118 id = work->compound_fid;
5119 pid = work->compound_pfid;
5120 }
5121 }
5122
Namjae Jeon38673692021-07-08 12:32:27 +09005123 if (!has_file_id(id)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09005124 id = le64_to_cpu(req->VolatileFileId);
5125 pid = le64_to_cpu(req->PersistentFileId);
5126 }
5127
5128 fp = ksmbd_lookup_fd_slow(work, id, pid);
5129 if (!fp)
5130 return -ENOENT;
5131
Hyunchul Lee465d7202021-07-03 12:10:36 +09005132 user_ns = file_mnt_user_ns(fp->filp);
Namjae Jeonab0b2632021-06-29 09:20:13 +09005133 inode = file_inode(fp->filp);
Christian Brauner43205ca2021-08-23 17:13:50 +02005134 ksmbd_acls_fattr(&fattr, user_ns, inode);
Namjae Jeone2f34482021-03-16 10:49:09 +09005135
5136 if (test_share_config_flag(work->tcon->share_conf,
Namjae Jeon64b39f42021-03-30 14:25:35 +09005137 KSMBD_SHARE_FLAG_ACL_XATTR))
Hyunchul Lee465d7202021-07-03 12:10:36 +09005138 ksmbd_vfs_get_sd_xattr(work->conn, user_ns,
Hyunchul Leeaf349832021-06-30 18:25:53 +09005139 fp->filp->f_path.dentry, &ppntsd);
Namjae Jeone2f34482021-03-16 10:49:09 +09005140
Hyunchul Lee465d7202021-07-03 12:10:36 +09005141 rc = build_sec_desc(user_ns, pntsd, ppntsd, addition_info,
5142 &secdesclen, &fattr);
Namjae Jeone2f34482021-03-16 10:49:09 +09005143 posix_acl_release(fattr.cf_acls);
5144 posix_acl_release(fattr.cf_dacls);
5145 kfree(ppntsd);
5146 ksmbd_fd_put(work, fp);
5147 if (rc)
5148 return rc;
5149
5150 rsp->OutputBufferLength = cpu_to_le32(secdesclen);
Namjae Jeoncb451722021-11-03 08:08:44 +09005151 inc_rfc1001_len(work->response_buf, secdesclen);
Namjae Jeone2f34482021-03-16 10:49:09 +09005152 return 0;
5153}
5154
5155/**
5156 * smb2_query_info() - handler for smb2 query info command
5157 * @work: smb work containing query info request buffer
5158 *
5159 * Return: 0 on success, otherwise error
5160 */
5161int smb2_query_info(struct ksmbd_work *work)
5162{
5163 struct smb2_query_info_req *req;
Namjae Jeoncb451722021-11-03 08:08:44 +09005164 struct smb2_query_info_rsp *rsp;
Namjae Jeone2f34482021-03-16 10:49:09 +09005165 int rc = 0;
5166
Namjae Jeone2f34482021-03-16 10:49:09 +09005167 WORK_BUFFERS(work, req, rsp);
5168
5169 ksmbd_debug(SMB, "GOT query info request\n");
5170
5171 switch (req->InfoType) {
5172 case SMB2_O_INFO_FILE:
5173 ksmbd_debug(SMB, "GOT SMB2_O_INFO_FILE\n");
Namjae Jeoncb451722021-11-03 08:08:44 +09005174 rc = smb2_get_info_file(work, req, rsp);
Namjae Jeone2f34482021-03-16 10:49:09 +09005175 break;
5176 case SMB2_O_INFO_FILESYSTEM:
5177 ksmbd_debug(SMB, "GOT SMB2_O_INFO_FILESYSTEM\n");
Namjae Jeoncb451722021-11-03 08:08:44 +09005178 rc = smb2_get_info_filesystem(work, req, rsp);
Namjae Jeone2f34482021-03-16 10:49:09 +09005179 break;
5180 case SMB2_O_INFO_SECURITY:
5181 ksmbd_debug(SMB, "GOT SMB2_O_INFO_SECURITY\n");
Namjae Jeoncb451722021-11-03 08:08:44 +09005182 rc = smb2_get_info_sec(work, req, rsp);
Namjae Jeone2f34482021-03-16 10:49:09 +09005183 break;
5184 default:
5185 ksmbd_debug(SMB, "InfoType %d not supported yet\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09005186 req->InfoType);
Namjae Jeone2f34482021-03-16 10:49:09 +09005187 rc = -EOPNOTSUPP;
5188 }
5189
5190 if (rc < 0) {
5191 if (rc == -EACCES)
5192 rsp->hdr.Status = STATUS_ACCESS_DENIED;
5193 else if (rc == -ENOENT)
5194 rsp->hdr.Status = STATUS_FILE_CLOSED;
5195 else if (rc == -EIO)
5196 rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR;
5197 else if (rc == -EOPNOTSUPP || rsp->hdr.Status == 0)
5198 rsp->hdr.Status = STATUS_INVALID_INFO_CLASS;
5199 smb2_set_err_rsp(work);
5200
5201 ksmbd_debug(SMB, "error while processing smb2 query rc = %d\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09005202 rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09005203 return rc;
5204 }
5205 rsp->StructureSize = cpu_to_le16(9);
5206 rsp->OutputBufferOffset = cpu_to_le16(72);
Namjae Jeoncb451722021-11-03 08:08:44 +09005207 inc_rfc1001_len(work->response_buf, 8);
Namjae Jeone2f34482021-03-16 10:49:09 +09005208 return 0;
5209}
5210
5211/**
5212 * smb2_close_pipe() - handler for closing IPC pipe
5213 * @work: smb work containing close request buffer
5214 *
5215 * Return: 0
5216 */
5217static noinline int smb2_close_pipe(struct ksmbd_work *work)
5218{
Namjae Jeon64b39f42021-03-30 14:25:35 +09005219 u64 id;
Namjae Jeoncb451722021-11-03 08:08:44 +09005220 struct smb2_close_req *req = smb2_get_msg(work->request_buf);
5221 struct smb2_close_rsp *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09005222
5223 id = le64_to_cpu(req->VolatileFileId);
5224 ksmbd_session_rpc_close(work->sess, id);
5225
5226 rsp->StructureSize = cpu_to_le16(60);
5227 rsp->Flags = 0;
5228 rsp->Reserved = 0;
5229 rsp->CreationTime = 0;
5230 rsp->LastAccessTime = 0;
5231 rsp->LastWriteTime = 0;
5232 rsp->ChangeTime = 0;
5233 rsp->AllocationSize = 0;
5234 rsp->EndOfFile = 0;
5235 rsp->Attributes = 0;
Namjae Jeoncb451722021-11-03 08:08:44 +09005236 inc_rfc1001_len(work->response_buf, 60);
Namjae Jeone2f34482021-03-16 10:49:09 +09005237 return 0;
5238}
5239
5240/**
5241 * smb2_close() - handler for smb2 close file command
5242 * @work: smb work containing close request buffer
5243 *
5244 * Return: 0
5245 */
5246int smb2_close(struct ksmbd_work *work)
5247{
Namjae Jeon38673692021-07-08 12:32:27 +09005248 u64 volatile_id = KSMBD_NO_FID;
Namjae Jeon64b39f42021-03-30 14:25:35 +09005249 u64 sess_id;
Namjae Jeone2f34482021-03-16 10:49:09 +09005250 struct smb2_close_req *req;
5251 struct smb2_close_rsp *rsp;
Namjae Jeone2f34482021-03-16 10:49:09 +09005252 struct ksmbd_conn *conn = work->conn;
5253 struct ksmbd_file *fp;
5254 struct inode *inode;
5255 u64 time;
5256 int err = 0;
5257
Namjae Jeone2f34482021-03-16 10:49:09 +09005258 WORK_BUFFERS(work, req, rsp);
5259
5260 if (test_share_config_flag(work->tcon->share_conf,
5261 KSMBD_SHARE_FLAG_PIPE)) {
5262 ksmbd_debug(SMB, "IPC pipe close request\n");
5263 return smb2_close_pipe(work);
5264 }
5265
5266 sess_id = le64_to_cpu(req->hdr.SessionId);
5267 if (req->hdr.Flags & SMB2_FLAGS_RELATED_OPERATIONS)
5268 sess_id = work->compound_sid;
5269
5270 work->compound_sid = 0;
Namjae Jeon64b39f42021-03-30 14:25:35 +09005271 if (check_session_id(conn, sess_id)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09005272 work->compound_sid = sess_id;
Namjae Jeon64b39f42021-03-30 14:25:35 +09005273 } else {
Namjae Jeone2f34482021-03-16 10:49:09 +09005274 rsp->hdr.Status = STATUS_USER_SESSION_DELETED;
5275 if (req->hdr.Flags & SMB2_FLAGS_RELATED_OPERATIONS)
5276 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
5277 err = -EBADF;
5278 goto out;
5279 }
5280
5281 if (work->next_smb2_rcv_hdr_off &&
Namjae Jeon38673692021-07-08 12:32:27 +09005282 !has_file_id(le64_to_cpu(req->VolatileFileId))) {
5283 if (!has_file_id(work->compound_fid)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09005284 /* file already closed, return FILE_CLOSED */
5285 ksmbd_debug(SMB, "file already closed\n");
5286 rsp->hdr.Status = STATUS_FILE_CLOSED;
5287 err = -EBADF;
5288 goto out;
5289 } else {
Namjae Jeon38673692021-07-08 12:32:27 +09005290 ksmbd_debug(SMB,
5291 "Compound request set FID = %llu:%llu\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09005292 work->compound_fid,
5293 work->compound_pfid);
Namjae Jeone2f34482021-03-16 10:49:09 +09005294 volatile_id = work->compound_fid;
5295
5296 /* file closed, stored id is not valid anymore */
5297 work->compound_fid = KSMBD_NO_FID;
5298 work->compound_pfid = KSMBD_NO_FID;
5299 }
5300 } else {
5301 volatile_id = le64_to_cpu(req->VolatileFileId);
5302 }
Namjae Jeon38673692021-07-08 12:32:27 +09005303 ksmbd_debug(SMB, "volatile_id = %llu\n", volatile_id);
Namjae Jeone2f34482021-03-16 10:49:09 +09005304
5305 rsp->StructureSize = cpu_to_le16(60);
5306 rsp->Reserved = 0;
5307
5308 if (req->Flags == SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB) {
5309 fp = ksmbd_lookup_fd_fast(work, volatile_id);
5310 if (!fp) {
5311 err = -ENOENT;
5312 goto out;
5313 }
5314
Namjae Jeonab0b2632021-06-29 09:20:13 +09005315 inode = file_inode(fp->filp);
Namjae Jeone2f34482021-03-16 10:49:09 +09005316 rsp->Flags = SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB;
5317 rsp->AllocationSize = S_ISDIR(inode->i_mode) ? 0 :
5318 cpu_to_le64(inode->i_blocks << 9);
5319 rsp->EndOfFile = cpu_to_le64(inode->i_size);
5320 rsp->Attributes = fp->f_ci->m_fattr;
5321 rsp->CreationTime = cpu_to_le64(fp->create_time);
5322 time = ksmbd_UnixTimeToNT(inode->i_atime);
5323 rsp->LastAccessTime = cpu_to_le64(time);
5324 time = ksmbd_UnixTimeToNT(inode->i_mtime);
5325 rsp->LastWriteTime = cpu_to_le64(time);
5326 time = ksmbd_UnixTimeToNT(inode->i_ctime);
5327 rsp->ChangeTime = cpu_to_le64(time);
5328 ksmbd_fd_put(work, fp);
5329 } else {
5330 rsp->Flags = 0;
5331 rsp->AllocationSize = 0;
5332 rsp->EndOfFile = 0;
5333 rsp->Attributes = 0;
5334 rsp->CreationTime = 0;
5335 rsp->LastAccessTime = 0;
5336 rsp->LastWriteTime = 0;
5337 rsp->ChangeTime = 0;
5338 }
5339
5340 err = ksmbd_close_fd(work, volatile_id);
5341out:
5342 if (err) {
5343 if (rsp->hdr.Status == 0)
5344 rsp->hdr.Status = STATUS_FILE_CLOSED;
5345 smb2_set_err_rsp(work);
5346 } else {
Namjae Jeoncb451722021-11-03 08:08:44 +09005347 inc_rfc1001_len(work->response_buf, 60);
Namjae Jeone2f34482021-03-16 10:49:09 +09005348 }
5349
5350 return 0;
5351}
5352
5353/**
5354 * smb2_echo() - handler for smb2 echo(ping) command
5355 * @work: smb work containing echo request buffer
5356 *
5357 * Return: 0
5358 */
5359int smb2_echo(struct ksmbd_work *work)
5360{
Namjae Jeoncb451722021-11-03 08:08:44 +09005361 struct smb2_echo_rsp *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09005362
5363 rsp->StructureSize = cpu_to_le16(4);
5364 rsp->Reserved = 0;
Namjae Jeoncb451722021-11-03 08:08:44 +09005365 inc_rfc1001_len(work->response_buf, 4);
Namjae Jeone2f34482021-03-16 10:49:09 +09005366 return 0;
5367}
5368
Christian Braunerda1e7ad2021-08-23 17:13:47 +02005369static int smb2_rename(struct ksmbd_work *work,
5370 struct ksmbd_file *fp,
5371 struct user_namespace *user_ns,
Namjae Jeon070fb212021-05-26 17:57:12 +09005372 struct smb2_file_rename_info *file_info,
5373 struct nls_table *local_nls)
Namjae Jeone2f34482021-03-16 10:49:09 +09005374{
5375 struct ksmbd_share_config *share = fp->tcon->share_conf;
5376 char *new_name = NULL, *abs_oldname = NULL, *old_name = NULL;
5377 char *pathname = NULL;
5378 struct path path;
5379 bool file_present = true;
5380 int rc;
5381
5382 ksmbd_debug(SMB, "setting FILE_RENAME_INFO\n");
5383 pathname = kmalloc(PATH_MAX, GFP_KERNEL);
5384 if (!pathname)
5385 return -ENOMEM;
5386
5387 abs_oldname = d_path(&fp->filp->f_path, pathname, PATH_MAX);
5388 if (IS_ERR(abs_oldname)) {
5389 rc = -EINVAL;
5390 goto out;
5391 }
5392 old_name = strrchr(abs_oldname, '/');
Namjae Jeon64b39f42021-03-30 14:25:35 +09005393 if (old_name && old_name[1] != '\0') {
Namjae Jeone2f34482021-03-16 10:49:09 +09005394 old_name++;
Namjae Jeon64b39f42021-03-30 14:25:35 +09005395 } else {
Namjae Jeone2f34482021-03-16 10:49:09 +09005396 ksmbd_debug(SMB, "can't get last component in path %s\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09005397 abs_oldname);
Namjae Jeone2f34482021-03-16 10:49:09 +09005398 rc = -ENOENT;
5399 goto out;
5400 }
5401
Marios Makassikis80917f12021-12-01 21:41:19 +01005402 new_name = smb2_get_name(file_info->FileName,
Namjae Jeone2f34482021-03-16 10:49:09 +09005403 le32_to_cpu(file_info->FileNameLength),
5404 local_nls);
5405 if (IS_ERR(new_name)) {
5406 rc = PTR_ERR(new_name);
5407 goto out;
5408 }
5409
5410 if (strchr(new_name, ':')) {
5411 int s_type;
5412 char *xattr_stream_name, *stream_name = NULL;
5413 size_t xattr_stream_size;
5414 int len;
5415
5416 rc = parse_stream_name(new_name, &stream_name, &s_type);
5417 if (rc < 0)
5418 goto out;
5419
5420 len = strlen(new_name);
Hyunchul Lee265fd192021-09-25 00:06:16 +09005421 if (len > 0 && new_name[len - 1] != '/') {
Namjae Jeonbde16942021-06-28 15:23:19 +09005422 pr_err("not allow base filename in rename\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09005423 rc = -ESHARE;
5424 goto out;
5425 }
5426
5427 rc = ksmbd_vfs_xattr_stream_name(stream_name,
5428 &xattr_stream_name,
5429 &xattr_stream_size,
5430 s_type);
5431 if (rc)
5432 goto out;
5433
Christian Braunerda1e7ad2021-08-23 17:13:47 +02005434 rc = ksmbd_vfs_setxattr(user_ns,
Hyunchul Leeaf349832021-06-30 18:25:53 +09005435 fp->filp->f_path.dentry,
Namjae Jeone2f34482021-03-16 10:49:09 +09005436 xattr_stream_name,
5437 NULL, 0, 0);
5438 if (rc < 0) {
Namjae Jeonbde16942021-06-28 15:23:19 +09005439 pr_err("failed to store stream name in xattr: %d\n",
5440 rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09005441 rc = -EINVAL;
5442 goto out;
5443 }
5444
5445 goto out;
5446 }
5447
5448 ksmbd_debug(SMB, "new name %s\n", new_name);
Hyunchul Lee265fd192021-09-25 00:06:16 +09005449 rc = ksmbd_vfs_kern_path(work, new_name, LOOKUP_NO_SYMLINKS, &path, 1);
5450 if (rc) {
5451 if (rc != -ENOENT)
5452 goto out;
Namjae Jeone2f34482021-03-16 10:49:09 +09005453 file_present = false;
Hyunchul Lee265fd192021-09-25 00:06:16 +09005454 } else {
Namjae Jeone2f34482021-03-16 10:49:09 +09005455 path_put(&path);
Hyunchul Lee265fd192021-09-25 00:06:16 +09005456 }
Namjae Jeone2f34482021-03-16 10:49:09 +09005457
5458 if (ksmbd_share_veto_filename(share, new_name)) {
5459 rc = -ENOENT;
5460 ksmbd_debug(SMB, "Can't rename vetoed file: %s\n", new_name);
5461 goto out;
5462 }
5463
5464 if (file_info->ReplaceIfExists) {
5465 if (file_present) {
5466 rc = ksmbd_vfs_remove_file(work, new_name);
5467 if (rc) {
5468 if (rc != -ENOTEMPTY)
5469 rc = -EINVAL;
5470 ksmbd_debug(SMB, "cannot delete %s, rc %d\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09005471 new_name, rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09005472 goto out;
5473 }
5474 }
5475 } else {
5476 if (file_present &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09005477 strncmp(old_name, path.dentry->d_name.name, strlen(old_name))) {
Namjae Jeone2f34482021-03-16 10:49:09 +09005478 rc = -EEXIST;
5479 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09005480 "cannot rename already existing file\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09005481 goto out;
5482 }
5483 }
5484
5485 rc = ksmbd_vfs_fp_rename(work, fp, new_name);
5486out:
5487 kfree(pathname);
5488 if (!IS_ERR(new_name))
Marios Makassikis915f5702021-04-13 13:25:57 +09005489 kfree(new_name);
Namjae Jeone2f34482021-03-16 10:49:09 +09005490 return rc;
5491}
5492
Namjae Jeone2f34482021-03-16 10:49:09 +09005493static int smb2_create_link(struct ksmbd_work *work,
Namjae Jeon070fb212021-05-26 17:57:12 +09005494 struct ksmbd_share_config *share,
5495 struct smb2_file_link_info *file_info,
Namjae Jeon9496e262021-09-29 15:41:48 +09005496 unsigned int buf_len, struct file *filp,
Namjae Jeon070fb212021-05-26 17:57:12 +09005497 struct nls_table *local_nls)
Namjae Jeone2f34482021-03-16 10:49:09 +09005498{
5499 char *link_name = NULL, *target_name = NULL, *pathname = NULL;
5500 struct path path;
5501 bool file_present = true;
5502 int rc;
5503
Namjae Jeon9496e262021-09-29 15:41:48 +09005504 if (buf_len < (u64)sizeof(struct smb2_file_link_info) +
5505 le32_to_cpu(file_info->FileNameLength))
5506 return -EINVAL;
5507
Namjae Jeone2f34482021-03-16 10:49:09 +09005508 ksmbd_debug(SMB, "setting FILE_LINK_INFORMATION\n");
5509 pathname = kmalloc(PATH_MAX, GFP_KERNEL);
5510 if (!pathname)
5511 return -ENOMEM;
5512
Marios Makassikis80917f12021-12-01 21:41:19 +01005513 link_name = smb2_get_name(file_info->FileName,
Namjae Jeone2f34482021-03-16 10:49:09 +09005514 le32_to_cpu(file_info->FileNameLength),
5515 local_nls);
5516 if (IS_ERR(link_name) || S_ISDIR(file_inode(filp)->i_mode)) {
5517 rc = -EINVAL;
5518 goto out;
5519 }
5520
5521 ksmbd_debug(SMB, "link name is %s\n", link_name);
5522 target_name = d_path(&filp->f_path, pathname, PATH_MAX);
5523 if (IS_ERR(target_name)) {
5524 rc = -EINVAL;
5525 goto out;
5526 }
5527
5528 ksmbd_debug(SMB, "target name is %s\n", target_name);
Hyunchul Lee265fd192021-09-25 00:06:16 +09005529 rc = ksmbd_vfs_kern_path(work, link_name, LOOKUP_NO_SYMLINKS, &path, 0);
5530 if (rc) {
5531 if (rc != -ENOENT)
5532 goto out;
Namjae Jeone2f34482021-03-16 10:49:09 +09005533 file_present = false;
Hyunchul Lee265fd192021-09-25 00:06:16 +09005534 } else {
Namjae Jeone2f34482021-03-16 10:49:09 +09005535 path_put(&path);
Hyunchul Lee265fd192021-09-25 00:06:16 +09005536 }
Namjae Jeone2f34482021-03-16 10:49:09 +09005537
5538 if (file_info->ReplaceIfExists) {
5539 if (file_present) {
5540 rc = ksmbd_vfs_remove_file(work, link_name);
5541 if (rc) {
5542 rc = -EINVAL;
5543 ksmbd_debug(SMB, "cannot delete %s\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09005544 link_name);
Namjae Jeone2f34482021-03-16 10:49:09 +09005545 goto out;
5546 }
5547 }
5548 } else {
5549 if (file_present) {
5550 rc = -EEXIST;
5551 ksmbd_debug(SMB, "link already exists\n");
5552 goto out;
5553 }
5554 }
5555
5556 rc = ksmbd_vfs_link(work, target_name, link_name);
5557 if (rc)
5558 rc = -EINVAL;
5559out:
5560 if (!IS_ERR(link_name))
Marios Makassikis915f5702021-04-13 13:25:57 +09005561 kfree(link_name);
Namjae Jeone2f34482021-03-16 10:49:09 +09005562 kfree(pathname);
5563 return rc;
5564}
5565
Namjae Jeon9496e262021-09-29 15:41:48 +09005566static int set_file_basic_info(struct ksmbd_file *fp,
5567 struct smb2_file_basic_info *file_info,
Namjae Jeon070fb212021-05-26 17:57:12 +09005568 struct ksmbd_share_config *share)
Namjae Jeone2f34482021-03-16 10:49:09 +09005569{
Namjae Jeone2f34482021-03-16 10:49:09 +09005570 struct iattr attrs;
Namjae Jeone2f34482021-03-16 10:49:09 +09005571 struct file *filp;
5572 struct inode *inode;
Hyunchul Lee465d7202021-07-03 12:10:36 +09005573 struct user_namespace *user_ns;
Namjae Jeon4ffd5262021-09-07 08:15:21 +09005574 int rc = 0;
Namjae Jeone2f34482021-03-16 10:49:09 +09005575
Marios Makassikis7adfd4f2021-04-27 15:30:22 +09005576 if (!(fp->daccess & FILE_WRITE_ATTRIBUTES_LE))
Namjae Jeone2f34482021-03-16 10:49:09 +09005577 return -EACCES;
5578
Namjae Jeone2f34482021-03-16 10:49:09 +09005579 attrs.ia_valid = 0;
5580 filp = fp->filp;
5581 inode = file_inode(filp);
Hyunchul Lee465d7202021-07-03 12:10:36 +09005582 user_ns = file_mnt_user_ns(filp);
Namjae Jeone2f34482021-03-16 10:49:09 +09005583
5584 if (file_info->CreationTime)
5585 fp->create_time = le64_to_cpu(file_info->CreationTime);
5586
5587 if (file_info->LastAccessTime) {
5588 attrs.ia_atime = ksmbd_NTtimeToUnix(file_info->LastAccessTime);
5589 attrs.ia_valid |= (ATTR_ATIME | ATTR_ATIME_SET);
5590 }
5591
Namjae Jeon64e78752021-10-03 13:19:00 +09005592 attrs.ia_valid |= ATTR_CTIME;
5593 if (file_info->ChangeTime)
Christian Braunerdb7fb6f2021-08-26 10:07:05 +09005594 attrs.ia_ctime = ksmbd_NTtimeToUnix(file_info->ChangeTime);
Namjae Jeon64e78752021-10-03 13:19:00 +09005595 else
5596 attrs.ia_ctime = inode->i_ctime;
Namjae Jeone2f34482021-03-16 10:49:09 +09005597
5598 if (file_info->LastWriteTime) {
5599 attrs.ia_mtime = ksmbd_NTtimeToUnix(file_info->LastWriteTime);
5600 attrs.ia_valid |= (ATTR_MTIME | ATTR_MTIME_SET);
5601 }
5602
5603 if (file_info->Attributes) {
5604 if (!S_ISDIR(inode->i_mode) &&
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09005605 file_info->Attributes & FILE_ATTRIBUTE_DIRECTORY_LE) {
Namjae Jeonbde16942021-06-28 15:23:19 +09005606 pr_err("can't change a file to a directory\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09005607 return -EINVAL;
5608 }
5609
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09005610 if (!(S_ISDIR(inode->i_mode) && file_info->Attributes == FILE_ATTRIBUTE_NORMAL_LE))
Namjae Jeone2f34482021-03-16 10:49:09 +09005611 fp->f_ci->m_fattr = file_info->Attributes |
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09005612 (fp->f_ci->m_fattr & FILE_ATTRIBUTE_DIRECTORY_LE);
Namjae Jeone2f34482021-03-16 10:49:09 +09005613 }
5614
5615 if (test_share_config_flag(share, KSMBD_SHARE_FLAG_STORE_DOS_ATTRS) &&
5616 (file_info->CreationTime || file_info->Attributes)) {
5617 struct xattr_dos_attrib da = {0};
5618
5619 da.version = 4;
5620 da.itime = fp->itime;
5621 da.create_time = fp->create_time;
5622 da.attr = le32_to_cpu(fp->f_ci->m_fattr);
5623 da.flags = XATTR_DOSINFO_ATTRIB | XATTR_DOSINFO_CREATE_TIME |
5624 XATTR_DOSINFO_ITIME;
5625
Hyunchul Lee465d7202021-07-03 12:10:36 +09005626 rc = ksmbd_vfs_set_dos_attrib_xattr(user_ns,
Hyunchul Leeaf349832021-06-30 18:25:53 +09005627 filp->f_path.dentry, &da);
Namjae Jeone2f34482021-03-16 10:49:09 +09005628 if (rc)
5629 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09005630 "failed to restore file attribute in EA\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09005631 rc = 0;
5632 }
5633
Namjae Jeone2f34482021-03-16 10:49:09 +09005634 if (attrs.ia_valid) {
5635 struct dentry *dentry = filp->f_path.dentry;
5636 struct inode *inode = d_inode(dentry);
5637
5638 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
5639 return -EACCES;
5640
Namjae Jeone2f34482021-03-16 10:49:09 +09005641 inode_lock(inode);
Namjae Jeon64e78752021-10-03 13:19:00 +09005642 inode->i_ctime = attrs.ia_ctime;
5643 attrs.ia_valid &= ~ATTR_CTIME;
Hyunchul Lee465d7202021-07-03 12:10:36 +09005644 rc = notify_change(user_ns, dentry, &attrs, NULL);
Namjae Jeone2f34482021-03-16 10:49:09 +09005645 inode_unlock(inode);
5646 }
Christian Braunereb5784f2021-08-23 17:13:55 +02005647 return rc;
Namjae Jeone2f34482021-03-16 10:49:09 +09005648}
5649
5650static int set_file_allocation_info(struct ksmbd_work *work,
Namjae Jeon9496e262021-09-29 15:41:48 +09005651 struct ksmbd_file *fp,
5652 struct smb2_file_alloc_info *file_alloc_info)
Namjae Jeone2f34482021-03-16 10:49:09 +09005653{
5654 /*
5655 * TODO : It's working fine only when store dos attributes
5656 * is not yes. need to implement a logic which works
5657 * properly with any smb.conf option
5658 */
5659
Namjae Jeone2f34482021-03-16 10:49:09 +09005660 loff_t alloc_blks;
5661 struct inode *inode;
5662 int rc;
5663
Marios Makassikisa2996692021-04-27 15:29:01 +09005664 if (!(fp->daccess & FILE_WRITE_DATA_LE))
Namjae Jeone2f34482021-03-16 10:49:09 +09005665 return -EACCES;
5666
Namjae Jeone2f34482021-03-16 10:49:09 +09005667 alloc_blks = (le64_to_cpu(file_alloc_info->AllocationSize) + 511) >> 9;
5668 inode = file_inode(fp->filp);
5669
5670 if (alloc_blks > inode->i_blocks) {
Namjae Jeone8c06192021-06-22 11:06:11 +09005671 smb_break_all_levII_oplock(work, fp, 1);
5672 rc = vfs_fallocate(fp->filp, FALLOC_FL_KEEP_SIZE, 0,
5673 alloc_blks * 512);
Namjae Jeone2f34482021-03-16 10:49:09 +09005674 if (rc && rc != -EOPNOTSUPP) {
Namjae Jeone8c06192021-06-22 11:06:11 +09005675 pr_err("vfs_fallocate is failed : %d\n", rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09005676 return rc;
5677 }
5678 } else if (alloc_blks < inode->i_blocks) {
5679 loff_t size;
5680
5681 /*
5682 * Allocation size could be smaller than original one
5683 * which means allocated blocks in file should be
5684 * deallocated. use truncate to cut out it, but inode
5685 * size is also updated with truncate offset.
5686 * inode size is retained by backup inode size.
5687 */
5688 size = i_size_read(inode);
Hyunchul Lee265fd192021-09-25 00:06:16 +09005689 rc = ksmbd_vfs_truncate(work, fp, alloc_blks * 512);
Namjae Jeone2f34482021-03-16 10:49:09 +09005690 if (rc) {
Namjae Jeonbde16942021-06-28 15:23:19 +09005691 pr_err("truncate failed! filename : %s, err %d\n",
5692 fp->filename, rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09005693 return rc;
5694 }
5695 if (size < alloc_blks * 512)
5696 i_size_write(inode, size);
5697 }
5698 return 0;
5699}
5700
Namjae Jeon64b39f42021-03-30 14:25:35 +09005701static int set_end_of_file_info(struct ksmbd_work *work, struct ksmbd_file *fp,
Namjae Jeon9496e262021-09-29 15:41:48 +09005702 struct smb2_file_eof_info *file_eof_info)
Namjae Jeone2f34482021-03-16 10:49:09 +09005703{
Namjae Jeone2f34482021-03-16 10:49:09 +09005704 loff_t newsize;
5705 struct inode *inode;
5706 int rc;
5707
Marios Makassikisa2996692021-04-27 15:29:01 +09005708 if (!(fp->daccess & FILE_WRITE_DATA_LE))
Namjae Jeone2f34482021-03-16 10:49:09 +09005709 return -EACCES;
5710
Namjae Jeone2f34482021-03-16 10:49:09 +09005711 newsize = le64_to_cpu(file_eof_info->EndOfFile);
5712 inode = file_inode(fp->filp);
5713
5714 /*
5715 * If FILE_END_OF_FILE_INFORMATION of set_info_file is called
5716 * on FAT32 shared device, truncate execution time is too long
5717 * and network error could cause from windows client. because
5718 * truncate of some filesystem like FAT32 fill zero data in
5719 * truncated range.
5720 */
5721 if (inode->i_sb->s_magic != MSDOS_SUPER_MAGIC) {
5722 ksmbd_debug(SMB, "filename : %s truncated to newsize %lld\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09005723 fp->filename, newsize);
Hyunchul Lee265fd192021-09-25 00:06:16 +09005724 rc = ksmbd_vfs_truncate(work, fp, newsize);
Namjae Jeone2f34482021-03-16 10:49:09 +09005725 if (rc) {
Namjae Jeon64b39f42021-03-30 14:25:35 +09005726 ksmbd_debug(SMB, "truncate failed! filename : %s err %d\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09005727 fp->filename, rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09005728 if (rc != -EAGAIN)
5729 rc = -EBADF;
5730 return rc;
5731 }
5732 }
5733 return 0;
5734}
5735
Namjae Jeon64b39f42021-03-30 14:25:35 +09005736static int set_rename_info(struct ksmbd_work *work, struct ksmbd_file *fp,
Namjae Jeon9496e262021-09-29 15:41:48 +09005737 struct smb2_file_rename_info *rename_info,
5738 unsigned int buf_len)
Namjae Jeone2f34482021-03-16 10:49:09 +09005739{
Christian Braunerda1e7ad2021-08-23 17:13:47 +02005740 struct user_namespace *user_ns;
Namjae Jeone2f34482021-03-16 10:49:09 +09005741 struct ksmbd_file *parent_fp;
Namjae Jeon12202c02021-06-29 09:23:56 +09005742 struct dentry *parent;
5743 struct dentry *dentry = fp->filp->f_path.dentry;
5744 int ret;
Namjae Jeone2f34482021-03-16 10:49:09 +09005745
5746 if (!(fp->daccess & FILE_DELETE_LE)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09005747 pr_err("no right to delete : 0x%x\n", fp->daccess);
Namjae Jeone2f34482021-03-16 10:49:09 +09005748 return -EACCES;
5749 }
5750
Namjae Jeon9496e262021-09-29 15:41:48 +09005751 if (buf_len < (u64)sizeof(struct smb2_file_rename_info) +
5752 le32_to_cpu(rename_info->FileNameLength))
5753 return -EINVAL;
5754
Christian Braunerda1e7ad2021-08-23 17:13:47 +02005755 user_ns = file_mnt_user_ns(fp->filp);
Namjae Jeone2f34482021-03-16 10:49:09 +09005756 if (ksmbd_stream_fd(fp))
5757 goto next;
5758
Namjae Jeon12202c02021-06-29 09:23:56 +09005759 parent = dget_parent(dentry);
Christian Braunerda1e7ad2021-08-23 17:13:47 +02005760 ret = ksmbd_vfs_lock_parent(user_ns, parent, dentry);
Namjae Jeon12202c02021-06-29 09:23:56 +09005761 if (ret) {
5762 dput(parent);
5763 return ret;
5764 }
5765
5766 parent_fp = ksmbd_lookup_fd_inode(d_inode(parent));
5767 inode_unlock(d_inode(parent));
5768 dput(parent);
5769
Namjae Jeone2f34482021-03-16 10:49:09 +09005770 if (parent_fp) {
5771 if (parent_fp->daccess & FILE_DELETE_LE) {
Namjae Jeonbde16942021-06-28 15:23:19 +09005772 pr_err("parent dir is opened with delete access\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09005773 return -ESHARE;
5774 }
5775 }
5776next:
Namjae Jeon9496e262021-09-29 15:41:48 +09005777 return smb2_rename(work, fp, user_ns, rename_info,
Namjae Jeone2f34482021-03-16 10:49:09 +09005778 work->sess->conn->local_nls);
5779}
5780
Namjae Jeon9496e262021-09-29 15:41:48 +09005781static int set_file_disposition_info(struct ksmbd_file *fp,
5782 struct smb2_file_disposition_info *file_info)
Namjae Jeone2f34482021-03-16 10:49:09 +09005783{
Namjae Jeone2f34482021-03-16 10:49:09 +09005784 struct inode *inode;
5785
5786 if (!(fp->daccess & FILE_DELETE_LE)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09005787 pr_err("no right to delete : 0x%x\n", fp->daccess);
Namjae Jeone2f34482021-03-16 10:49:09 +09005788 return -EACCES;
5789 }
5790
5791 inode = file_inode(fp->filp);
Namjae Jeone2f34482021-03-16 10:49:09 +09005792 if (file_info->DeletePending) {
5793 if (S_ISDIR(inode->i_mode) &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09005794 ksmbd_vfs_empty_dir(fp) == -ENOTEMPTY)
Namjae Jeone2f34482021-03-16 10:49:09 +09005795 return -EBUSY;
5796 ksmbd_set_inode_pending_delete(fp);
5797 } else {
5798 ksmbd_clear_inode_pending_delete(fp);
5799 }
5800 return 0;
5801}
5802
Namjae Jeon9496e262021-09-29 15:41:48 +09005803static int set_file_position_info(struct ksmbd_file *fp,
5804 struct smb2_file_pos_info *file_info)
Namjae Jeone2f34482021-03-16 10:49:09 +09005805{
Namjae Jeone2f34482021-03-16 10:49:09 +09005806 loff_t current_byte_offset;
Namjae Jeonee81cae2021-06-26 22:32:34 +09005807 unsigned long sector_size;
Namjae Jeone2f34482021-03-16 10:49:09 +09005808 struct inode *inode;
5809
5810 inode = file_inode(fp->filp);
Namjae Jeone2f34482021-03-16 10:49:09 +09005811 current_byte_offset = le64_to_cpu(file_info->CurrentByteOffset);
Namjae Jeonee81cae2021-06-26 22:32:34 +09005812 sector_size = inode->i_sb->s_blocksize;
Namjae Jeone2f34482021-03-16 10:49:09 +09005813
5814 if (current_byte_offset < 0 ||
Namjae Jeon64b39f42021-03-30 14:25:35 +09005815 (fp->coption == FILE_NO_INTERMEDIATE_BUFFERING_LE &&
5816 current_byte_offset & (sector_size - 1))) {
Namjae Jeonbde16942021-06-28 15:23:19 +09005817 pr_err("CurrentByteOffset is not valid : %llu\n",
5818 current_byte_offset);
Namjae Jeone2f34482021-03-16 10:49:09 +09005819 return -EINVAL;
5820 }
5821
5822 fp->filp->f_pos = current_byte_offset;
5823 return 0;
5824}
5825
Namjae Jeon9496e262021-09-29 15:41:48 +09005826static int set_file_mode_info(struct ksmbd_file *fp,
5827 struct smb2_file_mode_info *file_info)
Namjae Jeone2f34482021-03-16 10:49:09 +09005828{
Namjae Jeone2f34482021-03-16 10:49:09 +09005829 __le32 mode;
5830
Namjae Jeone2f34482021-03-16 10:49:09 +09005831 mode = file_info->Mode;
5832
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09005833 if ((mode & ~FILE_MODE_INFO_MASK)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09005834 pr_err("Mode is not valid : 0x%x\n", le32_to_cpu(mode));
Namjae Jeone2f34482021-03-16 10:49:09 +09005835 return -EINVAL;
5836 }
5837
5838 /*
5839 * TODO : need to implement consideration for
5840 * FILE_SYNCHRONOUS_IO_ALERT and FILE_SYNCHRONOUS_IO_NONALERT
5841 */
5842 ksmbd_vfs_set_fadvise(fp->filp, mode);
5843 fp->coption = mode;
5844 return 0;
5845}
5846
5847/**
5848 * smb2_set_info_file() - handler for smb2 set info command
5849 * @work: smb work containing set info command buffer
Hyunchul Lee95fa1ce2021-03-21 17:05:56 +09005850 * @fp: ksmbd_file pointer
Yang Li4bfd9ee2021-12-21 17:07:12 +08005851 * @req: request buffer pointer
Hyunchul Lee95fa1ce2021-03-21 17:05:56 +09005852 * @share: ksmbd_share_config pointer
Namjae Jeone2f34482021-03-16 10:49:09 +09005853 *
5854 * Return: 0 on success, otherwise error
5855 * TODO: need to implement an error handling for STATUS_INFO_LENGTH_MISMATCH
5856 */
Namjae Jeon64b39f42021-03-30 14:25:35 +09005857static int smb2_set_info_file(struct ksmbd_work *work, struct ksmbd_file *fp,
Namjae Jeon9496e262021-09-29 15:41:48 +09005858 struct smb2_set_info_req *req,
Namjae Jeon070fb212021-05-26 17:57:12 +09005859 struct ksmbd_share_config *share)
Namjae Jeone2f34482021-03-16 10:49:09 +09005860{
Namjae Jeon9496e262021-09-29 15:41:48 +09005861 unsigned int buf_len = le32_to_cpu(req->BufferLength);
5862
5863 switch (req->FileInfoClass) {
Namjae Jeone2f34482021-03-16 10:49:09 +09005864 case FILE_BASIC_INFORMATION:
Namjae Jeon9496e262021-09-29 15:41:48 +09005865 {
5866 if (buf_len < sizeof(struct smb2_file_basic_info))
5867 return -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09005868
Namjae Jeon9496e262021-09-29 15:41:48 +09005869 return set_file_basic_info(fp, (struct smb2_file_basic_info *)req->Buffer, share);
5870 }
Namjae Jeone2f34482021-03-16 10:49:09 +09005871 case FILE_ALLOCATION_INFORMATION:
Namjae Jeon9496e262021-09-29 15:41:48 +09005872 {
5873 if (buf_len < sizeof(struct smb2_file_alloc_info))
5874 return -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09005875
Namjae Jeon9496e262021-09-29 15:41:48 +09005876 return set_file_allocation_info(work, fp,
5877 (struct smb2_file_alloc_info *)req->Buffer);
5878 }
Namjae Jeone2f34482021-03-16 10:49:09 +09005879 case FILE_END_OF_FILE_INFORMATION:
Namjae Jeon9496e262021-09-29 15:41:48 +09005880 {
5881 if (buf_len < sizeof(struct smb2_file_eof_info))
5882 return -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09005883
Namjae Jeon9496e262021-09-29 15:41:48 +09005884 return set_end_of_file_info(work, fp,
5885 (struct smb2_file_eof_info *)req->Buffer);
5886 }
Namjae Jeone2f34482021-03-16 10:49:09 +09005887 case FILE_RENAME_INFORMATION:
Namjae Jeon9496e262021-09-29 15:41:48 +09005888 {
Namjae Jeon64b39f42021-03-30 14:25:35 +09005889 if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09005890 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09005891 "User does not have write permission\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09005892 return -EACCES;
5893 }
Namjae Jeone2f34482021-03-16 10:49:09 +09005894
Namjae Jeon9496e262021-09-29 15:41:48 +09005895 if (buf_len < sizeof(struct smb2_file_rename_info))
5896 return -EINVAL;
5897
5898 return set_rename_info(work, fp,
5899 (struct smb2_file_rename_info *)req->Buffer,
5900 buf_len);
5901 }
Namjae Jeone2f34482021-03-16 10:49:09 +09005902 case FILE_LINK_INFORMATION:
Namjae Jeon9496e262021-09-29 15:41:48 +09005903 {
5904 if (buf_len < sizeof(struct smb2_file_link_info))
5905 return -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09005906
Namjae Jeon9496e262021-09-29 15:41:48 +09005907 return smb2_create_link(work, work->tcon->share_conf,
5908 (struct smb2_file_link_info *)req->Buffer,
5909 buf_len, fp->filp,
5910 work->sess->conn->local_nls);
5911 }
Namjae Jeone2f34482021-03-16 10:49:09 +09005912 case FILE_DISPOSITION_INFORMATION:
Namjae Jeon9496e262021-09-29 15:41:48 +09005913 {
Namjae Jeon64b39f42021-03-30 14:25:35 +09005914 if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09005915 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09005916 "User does not have write permission\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09005917 return -EACCES;
5918 }
Namjae Jeone2f34482021-03-16 10:49:09 +09005919
Namjae Jeon9496e262021-09-29 15:41:48 +09005920 if (buf_len < sizeof(struct smb2_file_disposition_info))
5921 return -EINVAL;
5922
5923 return set_file_disposition_info(fp,
5924 (struct smb2_file_disposition_info *)req->Buffer);
5925 }
Namjae Jeone2f34482021-03-16 10:49:09 +09005926 case FILE_FULL_EA_INFORMATION:
5927 {
5928 if (!(fp->daccess & FILE_WRITE_EA_LE)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09005929 pr_err("Not permitted to write ext attr: 0x%x\n",
5930 fp->daccess);
Namjae Jeone2f34482021-03-16 10:49:09 +09005931 return -EACCES;
5932 }
5933
Namjae Jeon9496e262021-09-29 15:41:48 +09005934 if (buf_len < sizeof(struct smb2_ea_info))
5935 return -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09005936
Namjae Jeon9496e262021-09-29 15:41:48 +09005937 return smb2_set_ea((struct smb2_ea_info *)req->Buffer,
5938 buf_len, &fp->filp->f_path);
5939 }
Namjae Jeone2f34482021-03-16 10:49:09 +09005940 case FILE_POSITION_INFORMATION:
Namjae Jeon9496e262021-09-29 15:41:48 +09005941 {
5942 if (buf_len < sizeof(struct smb2_file_pos_info))
5943 return -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09005944
Namjae Jeon9496e262021-09-29 15:41:48 +09005945 return set_file_position_info(fp, (struct smb2_file_pos_info *)req->Buffer);
5946 }
Namjae Jeone2f34482021-03-16 10:49:09 +09005947 case FILE_MODE_INFORMATION:
Namjae Jeon9496e262021-09-29 15:41:48 +09005948 {
5949 if (buf_len < sizeof(struct smb2_file_mode_info))
5950 return -EINVAL;
5951
5952 return set_file_mode_info(fp, (struct smb2_file_mode_info *)req->Buffer);
5953 }
Namjae Jeone2f34482021-03-16 10:49:09 +09005954 }
5955
Namjae Jeon9496e262021-09-29 15:41:48 +09005956 pr_err("Unimplemented Fileinfoclass :%d\n", req->FileInfoClass);
Namjae Jeone2f34482021-03-16 10:49:09 +09005957 return -EOPNOTSUPP;
5958}
5959
Namjae Jeon64b39f42021-03-30 14:25:35 +09005960static int smb2_set_info_sec(struct ksmbd_file *fp, int addition_info,
Namjae Jeon070fb212021-05-26 17:57:12 +09005961 char *buffer, int buf_len)
Namjae Jeone2f34482021-03-16 10:49:09 +09005962{
5963 struct smb_ntsd *pntsd = (struct smb_ntsd *)buffer;
5964
5965 fp->saccess |= FILE_SHARE_DELETE_LE;
5966
Hyunchul Leeef24c962021-06-30 18:25:52 +09005967 return set_info_sec(fp->conn, fp->tcon, &fp->filp->f_path, pntsd,
Namjae Jeone2f34482021-03-16 10:49:09 +09005968 buf_len, false);
5969}
5970
5971/**
5972 * smb2_set_info() - handler for smb2 set info command handler
5973 * @work: smb work containing set info request buffer
5974 *
5975 * Return: 0 on success, otherwise error
5976 */
5977int smb2_set_info(struct ksmbd_work *work)
5978{
5979 struct smb2_set_info_req *req;
Namjae Jeoncb451722021-11-03 08:08:44 +09005980 struct smb2_set_info_rsp *rsp;
Namjae Jeone2f34482021-03-16 10:49:09 +09005981 struct ksmbd_file *fp;
5982 int rc = 0;
5983 unsigned int id = KSMBD_NO_FID, pid = KSMBD_NO_FID;
5984
5985 ksmbd_debug(SMB, "Received set info request\n");
5986
Namjae Jeone2f34482021-03-16 10:49:09 +09005987 if (work->next_smb2_rcv_hdr_off) {
Namjae Jeon8a893312021-06-25 13:43:37 +09005988 req = ksmbd_req_buf_next(work);
5989 rsp = ksmbd_resp_buf_next(work);
Namjae Jeon38673692021-07-08 12:32:27 +09005990 if (!has_file_id(le64_to_cpu(req->VolatileFileId))) {
5991 ksmbd_debug(SMB, "Compound request set FID = %llu\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09005992 work->compound_fid);
Namjae Jeone2f34482021-03-16 10:49:09 +09005993 id = work->compound_fid;
5994 pid = work->compound_pfid;
5995 }
5996 } else {
Namjae Jeoncb451722021-11-03 08:08:44 +09005997 req = smb2_get_msg(work->request_buf);
5998 rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09005999 }
6000
Namjae Jeon38673692021-07-08 12:32:27 +09006001 if (!has_file_id(id)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09006002 id = le64_to_cpu(req->VolatileFileId);
6003 pid = le64_to_cpu(req->PersistentFileId);
6004 }
6005
6006 fp = ksmbd_lookup_fd_slow(work, id, pid);
6007 if (!fp) {
6008 ksmbd_debug(SMB, "Invalid id for close: %u\n", id);
6009 rc = -ENOENT;
6010 goto err_out;
6011 }
6012
6013 switch (req->InfoType) {
6014 case SMB2_O_INFO_FILE:
6015 ksmbd_debug(SMB, "GOT SMB2_O_INFO_FILE\n");
Namjae Jeon9496e262021-09-29 15:41:48 +09006016 rc = smb2_set_info_file(work, fp, req, work->tcon->share_conf);
Namjae Jeone2f34482021-03-16 10:49:09 +09006017 break;
6018 case SMB2_O_INFO_SECURITY:
6019 ksmbd_debug(SMB, "GOT SMB2_O_INFO_SECURITY\n");
Namjae Jeone70e3922021-08-21 23:26:01 +09006020 if (ksmbd_override_fsids(work)) {
6021 rc = -ENOMEM;
6022 goto err_out;
6023 }
Namjae Jeone2f34482021-03-16 10:49:09 +09006024 rc = smb2_set_info_sec(fp,
Namjae Jeon070fb212021-05-26 17:57:12 +09006025 le32_to_cpu(req->AdditionalInformation),
6026 req->Buffer,
6027 le32_to_cpu(req->BufferLength));
Namjae Jeone70e3922021-08-21 23:26:01 +09006028 ksmbd_revert_fsids(work);
Namjae Jeone2f34482021-03-16 10:49:09 +09006029 break;
6030 default:
6031 rc = -EOPNOTSUPP;
6032 }
6033
6034 if (rc < 0)
6035 goto err_out;
6036
6037 rsp->StructureSize = cpu_to_le16(2);
Namjae Jeoncb451722021-11-03 08:08:44 +09006038 inc_rfc1001_len(work->response_buf, 2);
Namjae Jeone2f34482021-03-16 10:49:09 +09006039 ksmbd_fd_put(work, fp);
6040 return 0;
6041
6042err_out:
Hyunchul Lee265fd192021-09-25 00:06:16 +09006043 if (rc == -EACCES || rc == -EPERM || rc == -EXDEV)
Namjae Jeone2f34482021-03-16 10:49:09 +09006044 rsp->hdr.Status = STATUS_ACCESS_DENIED;
6045 else if (rc == -EINVAL)
6046 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
6047 else if (rc == -ESHARE)
6048 rsp->hdr.Status = STATUS_SHARING_VIOLATION;
6049 else if (rc == -ENOENT)
6050 rsp->hdr.Status = STATUS_OBJECT_NAME_INVALID;
6051 else if (rc == -EBUSY || rc == -ENOTEMPTY)
6052 rsp->hdr.Status = STATUS_DIRECTORY_NOT_EMPTY;
6053 else if (rc == -EAGAIN)
6054 rsp->hdr.Status = STATUS_FILE_LOCK_CONFLICT;
Namjae Jeonff1d5722021-04-13 13:18:10 +09006055 else if (rc == -EBADF || rc == -ESTALE)
Namjae Jeone2f34482021-03-16 10:49:09 +09006056 rsp->hdr.Status = STATUS_INVALID_HANDLE;
6057 else if (rc == -EEXIST)
6058 rsp->hdr.Status = STATUS_OBJECT_NAME_COLLISION;
6059 else if (rsp->hdr.Status == 0 || rc == -EOPNOTSUPP)
6060 rsp->hdr.Status = STATUS_INVALID_INFO_CLASS;
6061 smb2_set_err_rsp(work);
6062 ksmbd_fd_put(work, fp);
Namjae Jeon070fb212021-05-26 17:57:12 +09006063 ksmbd_debug(SMB, "error while processing smb2 query rc = %d\n", rc);
Namjae Jeone2f34482021-03-16 10:49:09 +09006064 return rc;
6065}
6066
6067/**
6068 * smb2_read_pipe() - handler for smb2 read from IPC pipe
6069 * @work: smb work containing read IPC pipe command buffer
6070 *
6071 * Return: 0 on success, otherwise error
6072 */
6073static noinline int smb2_read_pipe(struct ksmbd_work *work)
6074{
6075 int nbytes = 0, err;
Namjae Jeon64b39f42021-03-30 14:25:35 +09006076 u64 id;
Namjae Jeone2f34482021-03-16 10:49:09 +09006077 struct ksmbd_rpc_command *rpc_resp;
Namjae Jeoncb451722021-11-03 08:08:44 +09006078 struct smb2_read_req *req = smb2_get_msg(work->request_buf);
6079 struct smb2_read_rsp *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09006080
6081 id = le64_to_cpu(req->VolatileFileId);
6082
Namjae Jeoncb451722021-11-03 08:08:44 +09006083 inc_rfc1001_len(work->response_buf, 16);
Namjae Jeone2f34482021-03-16 10:49:09 +09006084 rpc_resp = ksmbd_rpc_read(work->sess, id);
6085 if (rpc_resp) {
6086 if (rpc_resp->flags != KSMBD_RPC_OK) {
6087 err = -EINVAL;
6088 goto out;
6089 }
6090
6091 work->aux_payload_buf =
Namjae Jeon79f6b112021-04-02 12:47:14 +09006092 kvmalloc(rpc_resp->payload_sz, GFP_KERNEL | __GFP_ZERO);
Namjae Jeone2f34482021-03-16 10:49:09 +09006093 if (!work->aux_payload_buf) {
6094 err = -ENOMEM;
6095 goto out;
6096 }
6097
6098 memcpy(work->aux_payload_buf, rpc_resp->payload,
Namjae Jeon070fb212021-05-26 17:57:12 +09006099 rpc_resp->payload_sz);
Namjae Jeone2f34482021-03-16 10:49:09 +09006100
6101 nbytes = rpc_resp->payload_sz;
Namjae Jeoncb451722021-11-03 08:08:44 +09006102 work->resp_hdr_sz = get_rfc1002_len(work->response_buf) + 4;
Namjae Jeone2f34482021-03-16 10:49:09 +09006103 work->aux_payload_sz = nbytes;
Namjae Jeon79f6b112021-04-02 12:47:14 +09006104 kvfree(rpc_resp);
Namjae Jeone2f34482021-03-16 10:49:09 +09006105 }
6106
6107 rsp->StructureSize = cpu_to_le16(17);
6108 rsp->DataOffset = 80;
6109 rsp->Reserved = 0;
6110 rsp->DataLength = cpu_to_le32(nbytes);
6111 rsp->DataRemaining = 0;
Ronnie Sahlberg699230f2021-09-09 12:26:12 +09006112 rsp->Flags = 0;
Namjae Jeoncb451722021-11-03 08:08:44 +09006113 inc_rfc1001_len(work->response_buf, nbytes);
Namjae Jeone2f34482021-03-16 10:49:09 +09006114 return 0;
6115
6116out:
6117 rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR;
6118 smb2_set_err_rsp(work);
Namjae Jeon79f6b112021-04-02 12:47:14 +09006119 kvfree(rpc_resp);
Namjae Jeone2f34482021-03-16 10:49:09 +09006120 return err;
6121}
6122
Hyunchul Lee2fd5dcb2022-01-13 09:51:39 +09006123static int smb2_set_remote_key_for_rdma(struct ksmbd_work *work,
6124 struct smb2_buffer_desc_v1 *desc,
6125 __le32 Channel,
6126 __le16 ChannelInfoOffset,
6127 __le16 ChannelInfoLength)
6128{
Hyunchul Lee6d896d32022-01-20 21:10:11 +09006129 unsigned int i, ch_count;
6130
Hyunchul Lee2fd5dcb2022-01-13 09:51:39 +09006131 if (work->conn->dialect == SMB30_PROT_ID &&
6132 Channel != SMB2_CHANNEL_RDMA_V1)
6133 return -EINVAL;
6134
Hyunchul Lee6d896d32022-01-20 21:10:11 +09006135 ch_count = le16_to_cpu(ChannelInfoLength) / sizeof(*desc);
6136 if (ksmbd_debug_types & KSMBD_DEBUG_RDMA) {
6137 for (i = 0; i < ch_count; i++) {
6138 pr_info("RDMA r/w request %#x: token %#x, length %#x\n",
6139 i,
6140 le32_to_cpu(desc[i].token),
6141 le32_to_cpu(desc[i].length));
6142 }
6143 }
6144 if (ch_count != 1) {
6145 ksmbd_debug(RDMA, "RDMA multiple buffer descriptors %d are not supported yet\n",
6146 ch_count);
Hyunchul Lee2fd5dcb2022-01-13 09:51:39 +09006147 return -EINVAL;
Hyunchul Lee6d896d32022-01-20 21:10:11 +09006148 }
Hyunchul Lee2fd5dcb2022-01-13 09:51:39 +09006149
6150 work->need_invalidate_rkey =
6151 (Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE);
6152 work->remote_key = le32_to_cpu(desc->token);
6153 return 0;
6154}
6155
Namjae Jeone2f34482021-03-16 10:49:09 +09006156static ssize_t smb2_read_rdma_channel(struct ksmbd_work *work,
Namjae Jeon070fb212021-05-26 17:57:12 +09006157 struct smb2_read_req *req, void *data_buf,
6158 size_t length)
Namjae Jeone2f34482021-03-16 10:49:09 +09006159{
6160 struct smb2_buffer_desc_v1 *desc =
6161 (struct smb2_buffer_desc_v1 *)&req->Buffer[0];
6162 int err;
6163
Namjae Jeon64b39f42021-03-30 14:25:35 +09006164 err = ksmbd_conn_rdma_write(work->conn, data_buf, length,
Namjae Jeon070fb212021-05-26 17:57:12 +09006165 le32_to_cpu(desc->token),
6166 le64_to_cpu(desc->offset),
6167 le32_to_cpu(desc->length));
Namjae Jeone2f34482021-03-16 10:49:09 +09006168 if (err)
6169 return err;
6170
6171 return length;
6172}
6173
6174/**
6175 * smb2_read() - handler for smb2 read from file
6176 * @work: smb work containing read command buffer
6177 *
6178 * Return: 0 on success, otherwise error
6179 */
6180int smb2_read(struct ksmbd_work *work)
6181{
6182 struct ksmbd_conn *conn = work->conn;
6183 struct smb2_read_req *req;
Namjae Jeoncb451722021-11-03 08:08:44 +09006184 struct smb2_read_rsp *rsp;
Hyunchul Lee2fd5dcb2022-01-13 09:51:39 +09006185 struct ksmbd_file *fp = NULL;
Namjae Jeone2f34482021-03-16 10:49:09 +09006186 loff_t offset;
6187 size_t length, mincount;
6188 ssize_t nbytes = 0, remain_bytes = 0;
6189 int err = 0;
6190
Namjae Jeone2f34482021-03-16 10:49:09 +09006191 WORK_BUFFERS(work, req, rsp);
6192
6193 if (test_share_config_flag(work->tcon->share_conf,
6194 KSMBD_SHARE_FLAG_PIPE)) {
6195 ksmbd_debug(SMB, "IPC pipe read request\n");
6196 return smb2_read_pipe(work);
6197 }
6198
Hyunchul Lee2fd5dcb2022-01-13 09:51:39 +09006199 if (req->Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE ||
6200 req->Channel == SMB2_CHANNEL_RDMA_V1) {
Hyunchul Lee6d896d32022-01-20 21:10:11 +09006201 unsigned int ch_offset = le16_to_cpu(req->ReadChannelInfoOffset);
6202
6203 if (ch_offset < offsetof(struct smb2_read_req, Buffer)) {
6204 err = -EINVAL;
6205 goto out;
6206 }
Hyunchul Lee2fd5dcb2022-01-13 09:51:39 +09006207 err = smb2_set_remote_key_for_rdma(work,
6208 (struct smb2_buffer_desc_v1 *)
Hyunchul Lee6d896d32022-01-20 21:10:11 +09006209 ((char *)req + ch_offset),
Hyunchul Lee2fd5dcb2022-01-13 09:51:39 +09006210 req->Channel,
6211 req->ReadChannelInfoOffset,
6212 req->ReadChannelInfoLength);
6213 if (err)
6214 goto out;
6215 }
6216
Namjae Jeon070fb212021-05-26 17:57:12 +09006217 fp = ksmbd_lookup_fd_slow(work, le64_to_cpu(req->VolatileFileId),
6218 le64_to_cpu(req->PersistentFileId));
Namjae Jeone2f34482021-03-16 10:49:09 +09006219 if (!fp) {
Marios Makassikisa4382db2021-05-06 11:34:52 +09006220 err = -ENOENT;
6221 goto out;
Namjae Jeone2f34482021-03-16 10:49:09 +09006222 }
6223
6224 if (!(fp->daccess & (FILE_READ_DATA_LE | FILE_READ_ATTRIBUTES_LE))) {
Namjae Jeonbde16942021-06-28 15:23:19 +09006225 pr_err("Not permitted to read : 0x%x\n", fp->daccess);
Namjae Jeone2f34482021-03-16 10:49:09 +09006226 err = -EACCES;
6227 goto out;
6228 }
6229
6230 offset = le64_to_cpu(req->Offset);
6231 length = le32_to_cpu(req->Length);
6232 mincount = le32_to_cpu(req->MinimumCount);
6233
6234 if (length > conn->vals->max_read_size) {
6235 ksmbd_debug(SMB, "limiting read size to max size(%u)\n",
6236 conn->vals->max_read_size);
6237 err = -EINVAL;
6238 goto out;
6239 }
6240
Namjae Jeon493fa2f2021-06-29 09:22:16 +09006241 ksmbd_debug(SMB, "filename %pd, offset %lld, len %zu\n",
6242 fp->filp->f_path.dentry, offset, length);
Namjae Jeone2f34482021-03-16 10:49:09 +09006243
Namjae Jeonc30f4eb2021-06-18 10:17:37 +09006244 work->aux_payload_buf = kvmalloc(length, GFP_KERNEL | __GFP_ZERO);
Namjae Jeone2f34482021-03-16 10:49:09 +09006245 if (!work->aux_payload_buf) {
Dan Carpenterc1ea1112021-03-22 17:50:11 +03006246 err = -ENOMEM;
Namjae Jeone2f34482021-03-16 10:49:09 +09006247 goto out;
6248 }
6249
6250 nbytes = ksmbd_vfs_read(work, fp, length, &offset);
6251 if (nbytes < 0) {
6252 err = nbytes;
6253 goto out;
6254 }
6255
6256 if ((nbytes == 0 && length != 0) || nbytes < mincount) {
Namjae Jeonc30f4eb2021-06-18 10:17:37 +09006257 kvfree(work->aux_payload_buf);
Namjae Jeone5066492021-03-30 12:35:23 +09006258 work->aux_payload_buf = NULL;
Namjae Jeone2f34482021-03-16 10:49:09 +09006259 rsp->hdr.Status = STATUS_END_OF_FILE;
6260 smb2_set_err_rsp(work);
6261 ksmbd_fd_put(work, fp);
6262 return 0;
6263 }
6264
6265 ksmbd_debug(SMB, "nbytes %zu, offset %lld mincount %zu\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09006266 nbytes, offset, mincount);
Namjae Jeone2f34482021-03-16 10:49:09 +09006267
6268 if (req->Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE ||
Namjae Jeon64b39f42021-03-30 14:25:35 +09006269 req->Channel == SMB2_CHANNEL_RDMA_V1) {
Namjae Jeone2f34482021-03-16 10:49:09 +09006270 /* write data to the client using rdma channel */
6271 remain_bytes = smb2_read_rdma_channel(work, req,
Namjae Jeon070fb212021-05-26 17:57:12 +09006272 work->aux_payload_buf,
6273 nbytes);
Namjae Jeonc30f4eb2021-06-18 10:17:37 +09006274 kvfree(work->aux_payload_buf);
Namjae Jeone5066492021-03-30 12:35:23 +09006275 work->aux_payload_buf = NULL;
Namjae Jeone2f34482021-03-16 10:49:09 +09006276
6277 nbytes = 0;
6278 if (remain_bytes < 0) {
6279 err = (int)remain_bytes;
6280 goto out;
6281 }
6282 }
6283
6284 rsp->StructureSize = cpu_to_le16(17);
6285 rsp->DataOffset = 80;
6286 rsp->Reserved = 0;
6287 rsp->DataLength = cpu_to_le32(nbytes);
6288 rsp->DataRemaining = cpu_to_le32(remain_bytes);
Ronnie Sahlberg699230f2021-09-09 12:26:12 +09006289 rsp->Flags = 0;
Namjae Jeoncb451722021-11-03 08:08:44 +09006290 inc_rfc1001_len(work->response_buf, 16);
6291 work->resp_hdr_sz = get_rfc1002_len(work->response_buf) + 4;
Namjae Jeone2f34482021-03-16 10:49:09 +09006292 work->aux_payload_sz = nbytes;
Namjae Jeoncb451722021-11-03 08:08:44 +09006293 inc_rfc1001_len(work->response_buf, nbytes);
Namjae Jeone2f34482021-03-16 10:49:09 +09006294 ksmbd_fd_put(work, fp);
6295 return 0;
6296
6297out:
6298 if (err) {
6299 if (err == -EISDIR)
6300 rsp->hdr.Status = STATUS_INVALID_DEVICE_REQUEST;
6301 else if (err == -EAGAIN)
6302 rsp->hdr.Status = STATUS_FILE_LOCK_CONFLICT;
6303 else if (err == -ENOENT)
6304 rsp->hdr.Status = STATUS_FILE_CLOSED;
6305 else if (err == -EACCES)
6306 rsp->hdr.Status = STATUS_ACCESS_DENIED;
6307 else if (err == -ESHARE)
6308 rsp->hdr.Status = STATUS_SHARING_VIOLATION;
6309 else if (err == -EINVAL)
6310 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
6311 else
6312 rsp->hdr.Status = STATUS_INVALID_HANDLE;
6313
6314 smb2_set_err_rsp(work);
6315 }
6316 ksmbd_fd_put(work, fp);
6317 return err;
6318}
6319
6320/**
6321 * smb2_write_pipe() - handler for smb2 write on IPC pipe
6322 * @work: smb work containing write IPC pipe command buffer
6323 *
6324 * Return: 0 on success, otherwise error
6325 */
6326static noinline int smb2_write_pipe(struct ksmbd_work *work)
6327{
Namjae Jeoncb451722021-11-03 08:08:44 +09006328 struct smb2_write_req *req = smb2_get_msg(work->request_buf);
6329 struct smb2_write_rsp *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09006330 struct ksmbd_rpc_command *rpc_resp;
Namjae Jeon64b39f42021-03-30 14:25:35 +09006331 u64 id = 0;
Namjae Jeone2f34482021-03-16 10:49:09 +09006332 int err = 0, ret = 0;
6333 char *data_buf;
6334 size_t length;
6335
6336 length = le32_to_cpu(req->Length);
6337 id = le64_to_cpu(req->VolatileFileId);
6338
6339 if (le16_to_cpu(req->DataOffset) ==
Namjae Jeoncb451722021-11-03 08:08:44 +09006340 offsetof(struct smb2_write_req, Buffer)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09006341 data_buf = (char *)&req->Buffer[0];
6342 } else {
Namjae Jeoncb451722021-11-03 08:08:44 +09006343 if ((u64)le16_to_cpu(req->DataOffset) + length >
6344 get_rfc1002_len(work->request_buf)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09006345 pr_err("invalid write data offset %u, smb_len %u\n",
6346 le16_to_cpu(req->DataOffset),
Namjae Jeoncb451722021-11-03 08:08:44 +09006347 get_rfc1002_len(work->request_buf));
Namjae Jeone2f34482021-03-16 10:49:09 +09006348 err = -EINVAL;
6349 goto out;
6350 }
6351
6352 data_buf = (char *)(((char *)&req->hdr.ProtocolId) +
6353 le16_to_cpu(req->DataOffset));
6354 }
6355
6356 rpc_resp = ksmbd_rpc_write(work->sess, id, data_buf, length);
6357 if (rpc_resp) {
6358 if (rpc_resp->flags == KSMBD_RPC_ENOTIMPLEMENTED) {
6359 rsp->hdr.Status = STATUS_NOT_SUPPORTED;
Namjae Jeon79f6b112021-04-02 12:47:14 +09006360 kvfree(rpc_resp);
Namjae Jeone2f34482021-03-16 10:49:09 +09006361 smb2_set_err_rsp(work);
6362 return -EOPNOTSUPP;
6363 }
6364 if (rpc_resp->flags != KSMBD_RPC_OK) {
6365 rsp->hdr.Status = STATUS_INVALID_HANDLE;
6366 smb2_set_err_rsp(work);
Namjae Jeon79f6b112021-04-02 12:47:14 +09006367 kvfree(rpc_resp);
Namjae Jeone2f34482021-03-16 10:49:09 +09006368 return ret;
6369 }
Namjae Jeon79f6b112021-04-02 12:47:14 +09006370 kvfree(rpc_resp);
Namjae Jeone2f34482021-03-16 10:49:09 +09006371 }
6372
6373 rsp->StructureSize = cpu_to_le16(17);
6374 rsp->DataOffset = 0;
6375 rsp->Reserved = 0;
6376 rsp->DataLength = cpu_to_le32(length);
6377 rsp->DataRemaining = 0;
6378 rsp->Reserved2 = 0;
Namjae Jeoncb451722021-11-03 08:08:44 +09006379 inc_rfc1001_len(work->response_buf, 16);
Namjae Jeone2f34482021-03-16 10:49:09 +09006380 return 0;
6381out:
6382 if (err) {
6383 rsp->hdr.Status = STATUS_INVALID_HANDLE;
6384 smb2_set_err_rsp(work);
6385 }
6386
6387 return err;
6388}
6389
6390static ssize_t smb2_write_rdma_channel(struct ksmbd_work *work,
Namjae Jeon070fb212021-05-26 17:57:12 +09006391 struct smb2_write_req *req,
6392 struct ksmbd_file *fp,
6393 loff_t offset, size_t length, bool sync)
Namjae Jeone2f34482021-03-16 10:49:09 +09006394{
6395 struct smb2_buffer_desc_v1 *desc;
6396 char *data_buf;
6397 int ret;
6398 ssize_t nbytes;
6399
6400 desc = (struct smb2_buffer_desc_v1 *)&req->Buffer[0];
6401
Namjae Jeon79f6b112021-04-02 12:47:14 +09006402 data_buf = kvmalloc(length, GFP_KERNEL | __GFP_ZERO);
Namjae Jeone2f34482021-03-16 10:49:09 +09006403 if (!data_buf)
6404 return -ENOMEM;
6405
6406 ret = ksmbd_conn_rdma_read(work->conn, data_buf, length,
Namjae Jeon070fb212021-05-26 17:57:12 +09006407 le32_to_cpu(desc->token),
6408 le64_to_cpu(desc->offset),
6409 le32_to_cpu(desc->length));
Namjae Jeone2f34482021-03-16 10:49:09 +09006410 if (ret < 0) {
Namjae Jeon79f6b112021-04-02 12:47:14 +09006411 kvfree(data_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09006412 return ret;
6413 }
6414
Namjae Jeon64b39f42021-03-30 14:25:35 +09006415 ret = ksmbd_vfs_write(work, fp, data_buf, length, &offset, sync, &nbytes);
Namjae Jeon79f6b112021-04-02 12:47:14 +09006416 kvfree(data_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09006417 if (ret < 0)
6418 return ret;
6419
6420 return nbytes;
6421}
6422
6423/**
6424 * smb2_write() - handler for smb2 write from file
6425 * @work: smb work containing write command buffer
6426 *
6427 * Return: 0 on success, otherwise error
6428 */
6429int smb2_write(struct ksmbd_work *work)
6430{
6431 struct smb2_write_req *req;
Namjae Jeoncb451722021-11-03 08:08:44 +09006432 struct smb2_write_rsp *rsp;
Namjae Jeonbcd62a32021-05-10 09:08:19 +09006433 struct ksmbd_file *fp = NULL;
Namjae Jeone2f34482021-03-16 10:49:09 +09006434 loff_t offset;
6435 size_t length;
6436 ssize_t nbytes;
6437 char *data_buf;
6438 bool writethrough = false;
6439 int err = 0;
6440
Namjae Jeone2f34482021-03-16 10:49:09 +09006441 WORK_BUFFERS(work, req, rsp);
6442
Namjae Jeon64b39f42021-03-30 14:25:35 +09006443 if (test_share_config_flag(work->tcon->share_conf, KSMBD_SHARE_FLAG_PIPE)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09006444 ksmbd_debug(SMB, "IPC pipe write request\n");
6445 return smb2_write_pipe(work);
6446 }
6447
Hyunchul Lee2fd5dcb2022-01-13 09:51:39 +09006448 if (req->Channel == SMB2_CHANNEL_RDMA_V1 ||
6449 req->Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE) {
Hyunchul Lee6d896d32022-01-20 21:10:11 +09006450 unsigned int ch_offset = le16_to_cpu(req->WriteChannelInfoOffset);
6451
6452 if (req->Length != 0 || req->DataOffset != 0 ||
6453 ch_offset < offsetof(struct smb2_write_req, Buffer)) {
6454 err = -EINVAL;
6455 goto out;
6456 }
Hyunchul Lee2fd5dcb2022-01-13 09:51:39 +09006457 err = smb2_set_remote_key_for_rdma(work,
6458 (struct smb2_buffer_desc_v1 *)
Hyunchul Lee6d896d32022-01-20 21:10:11 +09006459 ((char *)req + ch_offset),
Hyunchul Lee2fd5dcb2022-01-13 09:51:39 +09006460 req->Channel,
6461 req->WriteChannelInfoOffset,
6462 req->WriteChannelInfoLength);
6463 if (err)
6464 goto out;
6465 }
6466
Namjae Jeone2f34482021-03-16 10:49:09 +09006467 if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) {
6468 ksmbd_debug(SMB, "User does not have write permission\n");
6469 err = -EACCES;
6470 goto out;
6471 }
6472
Namjae Jeon64b39f42021-03-30 14:25:35 +09006473 fp = ksmbd_lookup_fd_slow(work, le64_to_cpu(req->VolatileFileId),
Namjae Jeon070fb212021-05-26 17:57:12 +09006474 le64_to_cpu(req->PersistentFileId));
Namjae Jeone2f34482021-03-16 10:49:09 +09006475 if (!fp) {
Marios Makassikisa4382db2021-05-06 11:34:52 +09006476 err = -ENOENT;
6477 goto out;
Namjae Jeone2f34482021-03-16 10:49:09 +09006478 }
6479
6480 if (!(fp->daccess & (FILE_WRITE_DATA_LE | FILE_READ_ATTRIBUTES_LE))) {
Namjae Jeonbde16942021-06-28 15:23:19 +09006481 pr_err("Not permitted to write : 0x%x\n", fp->daccess);
Namjae Jeone2f34482021-03-16 10:49:09 +09006482 err = -EACCES;
6483 goto out;
6484 }
6485
6486 offset = le64_to_cpu(req->Offset);
6487 length = le32_to_cpu(req->Length);
6488
6489 if (length > work->conn->vals->max_write_size) {
6490 ksmbd_debug(SMB, "limiting write size to max size(%u)\n",
6491 work->conn->vals->max_write_size);
6492 err = -EINVAL;
6493 goto out;
6494 }
6495
6496 if (le32_to_cpu(req->Flags) & SMB2_WRITEFLAG_WRITE_THROUGH)
6497 writethrough = true;
6498
6499 if (req->Channel != SMB2_CHANNEL_RDMA_V1 &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09006500 req->Channel != SMB2_CHANNEL_RDMA_V1_INVALIDATE) {
Namjae Jeone2f34482021-03-16 10:49:09 +09006501 if (le16_to_cpu(req->DataOffset) ==
Namjae Jeoncb451722021-11-03 08:08:44 +09006502 offsetof(struct smb2_write_req, Buffer)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09006503 data_buf = (char *)&req->Buffer[0];
6504 } else {
Namjae Jeoncb451722021-11-03 08:08:44 +09006505 if ((u64)le16_to_cpu(req->DataOffset) + length >
6506 get_rfc1002_len(work->request_buf)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09006507 pr_err("invalid write data offset %u, smb_len %u\n",
6508 le16_to_cpu(req->DataOffset),
Namjae Jeoncb451722021-11-03 08:08:44 +09006509 get_rfc1002_len(work->request_buf));
Namjae Jeone2f34482021-03-16 10:49:09 +09006510 err = -EINVAL;
6511 goto out;
6512 }
6513
6514 data_buf = (char *)(((char *)&req->hdr.ProtocolId) +
6515 le16_to_cpu(req->DataOffset));
6516 }
6517
6518 ksmbd_debug(SMB, "flags %u\n", le32_to_cpu(req->Flags));
6519 if (le32_to_cpu(req->Flags) & SMB2_WRITEFLAG_WRITE_THROUGH)
6520 writethrough = true;
6521
Namjae Jeon493fa2f2021-06-29 09:22:16 +09006522 ksmbd_debug(SMB, "filename %pd, offset %lld, len %zu\n",
6523 fp->filp->f_path.dentry, offset, length);
Namjae Jeone2f34482021-03-16 10:49:09 +09006524 err = ksmbd_vfs_write(work, fp, data_buf, length, &offset,
6525 writethrough, &nbytes);
6526 if (err < 0)
6527 goto out;
6528 } else {
6529 /* read data from the client using rdma channel, and
6530 * write the data.
6531 */
6532 nbytes = smb2_write_rdma_channel(work, req, fp, offset,
Namjae Jeon070fb212021-05-26 17:57:12 +09006533 le32_to_cpu(req->RemainingBytes),
6534 writethrough);
Namjae Jeone2f34482021-03-16 10:49:09 +09006535 if (nbytes < 0) {
6536 err = (int)nbytes;
6537 goto out;
6538 }
6539 }
6540
6541 rsp->StructureSize = cpu_to_le16(17);
6542 rsp->DataOffset = 0;
6543 rsp->Reserved = 0;
6544 rsp->DataLength = cpu_to_le32(nbytes);
6545 rsp->DataRemaining = 0;
6546 rsp->Reserved2 = 0;
Namjae Jeoncb451722021-11-03 08:08:44 +09006547 inc_rfc1001_len(work->response_buf, 16);
Namjae Jeone2f34482021-03-16 10:49:09 +09006548 ksmbd_fd_put(work, fp);
6549 return 0;
6550
6551out:
6552 if (err == -EAGAIN)
6553 rsp->hdr.Status = STATUS_FILE_LOCK_CONFLICT;
6554 else if (err == -ENOSPC || err == -EFBIG)
6555 rsp->hdr.Status = STATUS_DISK_FULL;
6556 else if (err == -ENOENT)
6557 rsp->hdr.Status = STATUS_FILE_CLOSED;
6558 else if (err == -EACCES)
6559 rsp->hdr.Status = STATUS_ACCESS_DENIED;
6560 else if (err == -ESHARE)
6561 rsp->hdr.Status = STATUS_SHARING_VIOLATION;
6562 else if (err == -EINVAL)
6563 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
6564 else
6565 rsp->hdr.Status = STATUS_INVALID_HANDLE;
6566
6567 smb2_set_err_rsp(work);
6568 ksmbd_fd_put(work, fp);
6569 return err;
6570}
6571
6572/**
6573 * smb2_flush() - handler for smb2 flush file - fsync
6574 * @work: smb work containing flush command buffer
6575 *
6576 * Return: 0 on success, otherwise error
6577 */
6578int smb2_flush(struct ksmbd_work *work)
6579{
6580 struct smb2_flush_req *req;
Namjae Jeoncb451722021-11-03 08:08:44 +09006581 struct smb2_flush_rsp *rsp;
Namjae Jeone2f34482021-03-16 10:49:09 +09006582 int err;
6583
Namjae Jeone2f34482021-03-16 10:49:09 +09006584 WORK_BUFFERS(work, req, rsp);
6585
6586 ksmbd_debug(SMB, "SMB2_FLUSH called for fid %llu\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09006587 le64_to_cpu(req->VolatileFileId));
Namjae Jeone2f34482021-03-16 10:49:09 +09006588
6589 err = ksmbd_vfs_fsync(work,
6590 le64_to_cpu(req->VolatileFileId),
6591 le64_to_cpu(req->PersistentFileId));
6592 if (err)
6593 goto out;
6594
6595 rsp->StructureSize = cpu_to_le16(4);
6596 rsp->Reserved = 0;
Namjae Jeoncb451722021-11-03 08:08:44 +09006597 inc_rfc1001_len(work->response_buf, 4);
Namjae Jeone2f34482021-03-16 10:49:09 +09006598 return 0;
6599
6600out:
6601 if (err) {
6602 rsp->hdr.Status = STATUS_INVALID_HANDLE;
6603 smb2_set_err_rsp(work);
6604 }
6605
6606 return err;
6607}
6608
6609/**
6610 * smb2_cancel() - handler for smb2 cancel command
6611 * @work: smb work containing cancel command buffer
6612 *
6613 * Return: 0 on success, otherwise error
6614 */
6615int smb2_cancel(struct ksmbd_work *work)
6616{
6617 struct ksmbd_conn *conn = work->conn;
Namjae Jeoncb451722021-11-03 08:08:44 +09006618 struct smb2_hdr *hdr = smb2_get_msg(work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09006619 struct smb2_hdr *chdr;
6620 struct ksmbd_work *cancel_work = NULL;
Namjae Jeone2f34482021-03-16 10:49:09 +09006621 int canceled = 0;
6622 struct list_head *command_list;
6623
6624 ksmbd_debug(SMB, "smb2 cancel called on mid %llu, async flags 0x%x\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09006625 hdr->MessageId, hdr->Flags);
Namjae Jeone2f34482021-03-16 10:49:09 +09006626
6627 if (hdr->Flags & SMB2_FLAGS_ASYNC_COMMAND) {
6628 command_list = &conn->async_requests;
6629
6630 spin_lock(&conn->request_lock);
Namjae Jeon6f3d5ee2021-06-18 10:28:52 +09006631 list_for_each_entry(cancel_work, command_list,
6632 async_request_entry) {
Namjae Jeoncb451722021-11-03 08:08:44 +09006633 chdr = smb2_get_msg(cancel_work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09006634
6635 if (cancel_work->async_id !=
Namjae Jeon64b39f42021-03-30 14:25:35 +09006636 le64_to_cpu(hdr->Id.AsyncId))
Namjae Jeone2f34482021-03-16 10:49:09 +09006637 continue;
6638
6639 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09006640 "smb2 with AsyncId %llu cancelled command = 0x%x\n",
6641 le64_to_cpu(hdr->Id.AsyncId),
6642 le16_to_cpu(chdr->Command));
Namjae Jeone2f34482021-03-16 10:49:09 +09006643 canceled = 1;
6644 break;
6645 }
6646 spin_unlock(&conn->request_lock);
6647 } else {
6648 command_list = &conn->requests;
6649
6650 spin_lock(&conn->request_lock);
Namjae Jeon6f3d5ee2021-06-18 10:28:52 +09006651 list_for_each_entry(cancel_work, command_list, request_entry) {
Namjae Jeoncb451722021-11-03 08:08:44 +09006652 chdr = smb2_get_msg(cancel_work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09006653
6654 if (chdr->MessageId != hdr->MessageId ||
Namjae Jeon64b39f42021-03-30 14:25:35 +09006655 cancel_work == work)
Namjae Jeone2f34482021-03-16 10:49:09 +09006656 continue;
6657
6658 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09006659 "smb2 with mid %llu cancelled command = 0x%x\n",
6660 le64_to_cpu(hdr->MessageId),
6661 le16_to_cpu(chdr->Command));
Namjae Jeone2f34482021-03-16 10:49:09 +09006662 canceled = 1;
6663 break;
6664 }
6665 spin_unlock(&conn->request_lock);
6666 }
6667
6668 if (canceled) {
6669 cancel_work->state = KSMBD_WORK_CANCELLED;
6670 if (cancel_work->cancel_fn)
6671 cancel_work->cancel_fn(cancel_work->cancel_argv);
6672 }
6673
6674 /* For SMB2_CANCEL command itself send no response*/
6675 work->send_no_response = 1;
6676 return 0;
6677}
6678
6679struct file_lock *smb_flock_init(struct file *f)
6680{
6681 struct file_lock *fl;
6682
6683 fl = locks_alloc_lock();
6684 if (!fl)
6685 goto out;
6686
6687 locks_init_lock(fl);
6688
6689 fl->fl_owner = f;
6690 fl->fl_pid = current->tgid;
6691 fl->fl_file = f;
6692 fl->fl_flags = FL_POSIX;
6693 fl->fl_ops = NULL;
6694 fl->fl_lmops = NULL;
6695
6696out:
6697 return fl;
6698}
6699
6700static int smb2_set_flock_flags(struct file_lock *flock, int flags)
6701{
6702 int cmd = -EINVAL;
6703
6704 /* Checking for wrong flag combination during lock request*/
6705 switch (flags) {
6706 case SMB2_LOCKFLAG_SHARED:
6707 ksmbd_debug(SMB, "received shared request\n");
6708 cmd = F_SETLKW;
6709 flock->fl_type = F_RDLCK;
6710 flock->fl_flags |= FL_SLEEP;
6711 break;
6712 case SMB2_LOCKFLAG_EXCLUSIVE:
6713 ksmbd_debug(SMB, "received exclusive request\n");
6714 cmd = F_SETLKW;
6715 flock->fl_type = F_WRLCK;
6716 flock->fl_flags |= FL_SLEEP;
6717 break;
Namjae Jeon64b39f42021-03-30 14:25:35 +09006718 case SMB2_LOCKFLAG_SHARED | SMB2_LOCKFLAG_FAIL_IMMEDIATELY:
Namjae Jeone2f34482021-03-16 10:49:09 +09006719 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09006720 "received shared & fail immediately request\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09006721 cmd = F_SETLK;
6722 flock->fl_type = F_RDLCK;
6723 break;
Namjae Jeon64b39f42021-03-30 14:25:35 +09006724 case SMB2_LOCKFLAG_EXCLUSIVE | SMB2_LOCKFLAG_FAIL_IMMEDIATELY:
Namjae Jeone2f34482021-03-16 10:49:09 +09006725 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09006726 "received exclusive & fail immediately request\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09006727 cmd = F_SETLK;
6728 flock->fl_type = F_WRLCK;
6729 break;
6730 case SMB2_LOCKFLAG_UNLOCK:
6731 ksmbd_debug(SMB, "received unlock request\n");
6732 flock->fl_type = F_UNLCK;
6733 cmd = 0;
6734 break;
6735 }
6736
6737 return cmd;
6738}
6739
6740static struct ksmbd_lock *smb2_lock_init(struct file_lock *flock,
Namjae Jeon070fb212021-05-26 17:57:12 +09006741 unsigned int cmd, int flags,
6742 struct list_head *lock_list)
Namjae Jeone2f34482021-03-16 10:49:09 +09006743{
6744 struct ksmbd_lock *lock;
6745
6746 lock = kzalloc(sizeof(struct ksmbd_lock), GFP_KERNEL);
6747 if (!lock)
6748 return NULL;
6749
6750 lock->cmd = cmd;
6751 lock->fl = flock;
6752 lock->start = flock->fl_start;
6753 lock->end = flock->fl_end;
6754 lock->flags = flags;
6755 if (lock->start == lock->end)
6756 lock->zero_len = 1;
Hyunchul Leed63528e2021-07-10 16:22:41 +09006757 INIT_LIST_HEAD(&lock->clist);
6758 INIT_LIST_HEAD(&lock->flist);
Namjae Jeone2f34482021-03-16 10:49:09 +09006759 INIT_LIST_HEAD(&lock->llist);
Namjae Jeone2f34482021-03-16 10:49:09 +09006760 list_add_tail(&lock->llist, lock_list);
6761
6762 return lock;
6763}
6764
6765static void smb2_remove_blocked_lock(void **argv)
6766{
6767 struct file_lock *flock = (struct file_lock *)argv[0];
6768
6769 ksmbd_vfs_posix_lock_unblock(flock);
6770 wake_up(&flock->fl_wait);
6771}
6772
6773static inline bool lock_defer_pending(struct file_lock *fl)
6774{
6775 /* check pending lock waiters */
6776 return waitqueue_active(&fl->fl_wait);
6777}
6778
6779/**
6780 * smb2_lock() - handler for smb2 file lock command
6781 * @work: smb work containing lock command buffer
6782 *
6783 * Return: 0 on success, otherwise error
6784 */
6785int smb2_lock(struct ksmbd_work *work)
6786{
Namjae Jeoncb451722021-11-03 08:08:44 +09006787 struct smb2_lock_req *req = smb2_get_msg(work->request_buf);
6788 struct smb2_lock_rsp *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09006789 struct smb2_lock_element *lock_ele;
6790 struct ksmbd_file *fp = NULL;
6791 struct file_lock *flock = NULL;
6792 struct file *filp = NULL;
6793 int lock_count;
6794 int flags = 0;
6795 int cmd = 0;
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09006796 int err = -EIO, i, rc = 0;
Namjae Jeon50bf80a2021-05-14 12:20:07 +09006797 u64 lock_start, lock_length;
Hyunchul Leed63528e2021-07-10 16:22:41 +09006798 struct ksmbd_lock *smb_lock = NULL, *cmp_lock, *tmp, *tmp2;
6799 struct ksmbd_conn *conn;
Namjae Jeone2f34482021-03-16 10:49:09 +09006800 int nolock = 0;
6801 LIST_HEAD(lock_list);
6802 LIST_HEAD(rollback_list);
6803 int prior_lock = 0;
6804
6805 ksmbd_debug(SMB, "Received lock request\n");
6806 fp = ksmbd_lookup_fd_slow(work,
Namjae Jeon070fb212021-05-26 17:57:12 +09006807 le64_to_cpu(req->VolatileFileId),
6808 le64_to_cpu(req->PersistentFileId));
Namjae Jeone2f34482021-03-16 10:49:09 +09006809 if (!fp) {
6810 ksmbd_debug(SMB, "Invalid file id for lock : %llu\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09006811 le64_to_cpu(req->VolatileFileId));
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09006812 err = -ENOENT;
Namjae Jeone2f34482021-03-16 10:49:09 +09006813 goto out2;
6814 }
6815
6816 filp = fp->filp;
6817 lock_count = le16_to_cpu(req->LockCount);
6818 lock_ele = req->locks;
6819
6820 ksmbd_debug(SMB, "lock count is %d\n", lock_count);
Namjae Jeon070fb212021-05-26 17:57:12 +09006821 if (!lock_count) {
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09006822 err = -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09006823 goto out2;
6824 }
6825
6826 for (i = 0; i < lock_count; i++) {
6827 flags = le32_to_cpu(lock_ele[i].Flags);
6828
6829 flock = smb_flock_init(filp);
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09006830 if (!flock)
Namjae Jeone2f34482021-03-16 10:49:09 +09006831 goto out;
Namjae Jeone2f34482021-03-16 10:49:09 +09006832
6833 cmd = smb2_set_flock_flags(flock, flags);
6834
Namjae Jeon50bf80a2021-05-14 12:20:07 +09006835 lock_start = le64_to_cpu(lock_ele[i].Offset);
6836 lock_length = le64_to_cpu(lock_ele[i].Length);
6837 if (lock_start > U64_MAX - lock_length) {
Namjae Jeonbde16942021-06-28 15:23:19 +09006838 pr_err("Invalid lock range requested\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09006839 rsp->hdr.Status = STATUS_INVALID_LOCK_RANGE;
6840 goto out;
6841 }
6842
Namjae Jeon50bf80a2021-05-14 12:20:07 +09006843 if (lock_start > OFFSET_MAX)
6844 flock->fl_start = OFFSET_MAX;
6845 else
6846 flock->fl_start = lock_start;
6847
Namjae Jeone2f34482021-03-16 10:49:09 +09006848 lock_length = le64_to_cpu(lock_ele[i].Length);
Namjae Jeon50bf80a2021-05-14 12:20:07 +09006849 if (lock_length > OFFSET_MAX - flock->fl_start)
6850 lock_length = OFFSET_MAX - flock->fl_start;
Namjae Jeone2f34482021-03-16 10:49:09 +09006851
6852 flock->fl_end = flock->fl_start + lock_length;
6853
6854 if (flock->fl_end < flock->fl_start) {
6855 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09006856 "the end offset(%llx) is smaller than the start offset(%llx)\n",
6857 flock->fl_end, flock->fl_start);
Namjae Jeone2f34482021-03-16 10:49:09 +09006858 rsp->hdr.Status = STATUS_INVALID_LOCK_RANGE;
6859 goto out;
6860 }
6861
6862 /* Check conflict locks in one request */
6863 list_for_each_entry(cmp_lock, &lock_list, llist) {
6864 if (cmp_lock->fl->fl_start <= flock->fl_start &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09006865 cmp_lock->fl->fl_end >= flock->fl_end) {
Namjae Jeone2f34482021-03-16 10:49:09 +09006866 if (cmp_lock->fl->fl_type != F_UNLCK &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09006867 flock->fl_type != F_UNLCK) {
Namjae Jeonbde16942021-06-28 15:23:19 +09006868 pr_err("conflict two locks in one request\n");
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09006869 err = -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09006870 goto out;
6871 }
6872 }
6873 }
6874
6875 smb_lock = smb2_lock_init(flock, cmd, flags, &lock_list);
6876 if (!smb_lock) {
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09006877 err = -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09006878 goto out;
6879 }
6880 }
6881
6882 list_for_each_entry_safe(smb_lock, tmp, &lock_list, llist) {
6883 if (smb_lock->cmd < 0) {
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09006884 err = -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09006885 goto out;
6886 }
6887
6888 if (!(smb_lock->flags & SMB2_LOCKFLAG_MASK)) {
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09006889 err = -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09006890 goto out;
6891 }
6892
Namjae Jeon64b39f42021-03-30 14:25:35 +09006893 if ((prior_lock & (SMB2_LOCKFLAG_EXCLUSIVE | SMB2_LOCKFLAG_SHARED) &&
6894 smb_lock->flags & SMB2_LOCKFLAG_UNLOCK) ||
6895 (prior_lock == SMB2_LOCKFLAG_UNLOCK &&
6896 !(smb_lock->flags & SMB2_LOCKFLAG_UNLOCK))) {
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09006897 err = -EINVAL;
Namjae Jeone2f34482021-03-16 10:49:09 +09006898 goto out;
6899 }
6900
6901 prior_lock = smb_lock->flags;
6902
6903 if (!(smb_lock->flags & SMB2_LOCKFLAG_UNLOCK) &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09006904 !(smb_lock->flags & SMB2_LOCKFLAG_FAIL_IMMEDIATELY))
Hyunchul Leed63528e2021-07-10 16:22:41 +09006905 goto no_check_cl;
Namjae Jeone2f34482021-03-16 10:49:09 +09006906
6907 nolock = 1;
Hyunchul Leed63528e2021-07-10 16:22:41 +09006908 /* check locks in connection list */
6909 read_lock(&conn_list_lock);
6910 list_for_each_entry(conn, &conn_list, conns_list) {
6911 spin_lock(&conn->llist_lock);
6912 list_for_each_entry_safe(cmp_lock, tmp2, &conn->lock_list, clist) {
6913 if (file_inode(cmp_lock->fl->fl_file) !=
6914 file_inode(smb_lock->fl->fl_file))
6915 continue;
Namjae Jeone2f34482021-03-16 10:49:09 +09006916
Hyunchul Leed63528e2021-07-10 16:22:41 +09006917 if (smb_lock->fl->fl_type == F_UNLCK) {
6918 if (cmp_lock->fl->fl_file == smb_lock->fl->fl_file &&
6919 cmp_lock->start == smb_lock->start &&
6920 cmp_lock->end == smb_lock->end &&
6921 !lock_defer_pending(cmp_lock->fl)) {
6922 nolock = 0;
6923 list_del(&cmp_lock->flist);
6924 list_del(&cmp_lock->clist);
6925 spin_unlock(&conn->llist_lock);
6926 read_unlock(&conn_list_lock);
6927
6928 locks_free_lock(cmp_lock->fl);
6929 kfree(cmp_lock);
6930 goto out_check_cl;
6931 }
6932 continue;
Namjae Jeone2f34482021-03-16 10:49:09 +09006933 }
Namjae Jeone2f34482021-03-16 10:49:09 +09006934
Hyunchul Leed63528e2021-07-10 16:22:41 +09006935 if (cmp_lock->fl->fl_file == smb_lock->fl->fl_file) {
6936 if (smb_lock->flags & SMB2_LOCKFLAG_SHARED)
6937 continue;
6938 } else {
6939 if (cmp_lock->flags & SMB2_LOCKFLAG_SHARED)
6940 continue;
6941 }
Namjae Jeone2f34482021-03-16 10:49:09 +09006942
Hyunchul Leed63528e2021-07-10 16:22:41 +09006943 /* check zero byte lock range */
6944 if (cmp_lock->zero_len && !smb_lock->zero_len &&
6945 cmp_lock->start > smb_lock->start &&
6946 cmp_lock->start < smb_lock->end) {
6947 spin_unlock(&conn->llist_lock);
6948 read_unlock(&conn_list_lock);
6949 pr_err("previous lock conflict with zero byte lock range\n");
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09006950 goto out;
Hyunchul Leed63528e2021-07-10 16:22:41 +09006951 }
Namjae Jeone2f34482021-03-16 10:49:09 +09006952
Hyunchul Leed63528e2021-07-10 16:22:41 +09006953 if (smb_lock->zero_len && !cmp_lock->zero_len &&
6954 smb_lock->start > cmp_lock->start &&
6955 smb_lock->start < cmp_lock->end) {
6956 spin_unlock(&conn->llist_lock);
6957 read_unlock(&conn_list_lock);
6958 pr_err("current lock conflict with zero byte lock range\n");
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09006959 goto out;
Hyunchul Leed63528e2021-07-10 16:22:41 +09006960 }
Namjae Jeone2f34482021-03-16 10:49:09 +09006961
Hyunchul Leed63528e2021-07-10 16:22:41 +09006962 if (((cmp_lock->start <= smb_lock->start &&
6963 cmp_lock->end > smb_lock->start) ||
6964 (cmp_lock->start < smb_lock->end &&
6965 cmp_lock->end >= smb_lock->end)) &&
6966 !cmp_lock->zero_len && !smb_lock->zero_len) {
6967 spin_unlock(&conn->llist_lock);
6968 read_unlock(&conn_list_lock);
6969 pr_err("Not allow lock operation on exclusive lock range\n");
Hyunchul Leed63528e2021-07-10 16:22:41 +09006970 goto out;
6971 }
Namjae Jeone2f34482021-03-16 10:49:09 +09006972 }
Hyunchul Leed63528e2021-07-10 16:22:41 +09006973 spin_unlock(&conn->llist_lock);
Namjae Jeone2f34482021-03-16 10:49:09 +09006974 }
Hyunchul Leed63528e2021-07-10 16:22:41 +09006975 read_unlock(&conn_list_lock);
6976out_check_cl:
Namjae Jeone2f34482021-03-16 10:49:09 +09006977 if (smb_lock->fl->fl_type == F_UNLCK && nolock) {
Namjae Jeonbde16942021-06-28 15:23:19 +09006978 pr_err("Try to unlock nolocked range\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09006979 rsp->hdr.Status = STATUS_RANGE_NOT_LOCKED;
6980 goto out;
6981 }
6982
Hyunchul Leed63528e2021-07-10 16:22:41 +09006983no_check_cl:
Namjae Jeone2f34482021-03-16 10:49:09 +09006984 if (smb_lock->zero_len) {
6985 err = 0;
6986 goto skip;
6987 }
6988
6989 flock = smb_lock->fl;
6990 list_del(&smb_lock->llist);
6991retry:
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09006992 rc = vfs_lock_file(filp, smb_lock->cmd, flock, NULL);
Namjae Jeone2f34482021-03-16 10:49:09 +09006993skip:
6994 if (flags & SMB2_LOCKFLAG_UNLOCK) {
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09006995 if (!rc) {
Namjae Jeone2f34482021-03-16 10:49:09 +09006996 ksmbd_debug(SMB, "File unlocked\n");
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09006997 } else if (rc == -ENOENT) {
Namjae Jeone2f34482021-03-16 10:49:09 +09006998 rsp->hdr.Status = STATUS_NOT_LOCKED;
6999 goto out;
7000 }
7001 locks_free_lock(flock);
7002 kfree(smb_lock);
7003 } else {
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09007004 if (rc == FILE_LOCK_DEFERRED) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007005 void **argv;
7006
7007 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09007008 "would have to wait for getting lock\n");
Hyunchul Leed63528e2021-07-10 16:22:41 +09007009 spin_lock(&work->conn->llist_lock);
7010 list_add_tail(&smb_lock->clist,
7011 &work->conn->lock_list);
7012 spin_unlock(&work->conn->llist_lock);
Namjae Jeone2f34482021-03-16 10:49:09 +09007013 list_add(&smb_lock->llist, &rollback_list);
7014
7015 argv = kmalloc(sizeof(void *), GFP_KERNEL);
7016 if (!argv) {
7017 err = -ENOMEM;
7018 goto out;
7019 }
7020 argv[0] = flock;
7021
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09007022 rc = setup_async_work(work,
7023 smb2_remove_blocked_lock,
7024 argv);
7025 if (rc) {
7026 err = -ENOMEM;
Namjae Jeone2f34482021-03-16 10:49:09 +09007027 goto out;
7028 }
7029 spin_lock(&fp->f_lock);
7030 list_add(&work->fp_entry, &fp->blocked_works);
7031 spin_unlock(&fp->f_lock);
7032
7033 smb2_send_interim_resp(work, STATUS_PENDING);
7034
Hyunchul Lee45a64e82021-07-10 09:34:20 +09007035 ksmbd_vfs_posix_lock_wait(flock);
Namjae Jeone2f34482021-03-16 10:49:09 +09007036
Hyunchul Leed4075ab2021-06-25 07:02:10 +09007037 if (work->state != KSMBD_WORK_ACTIVE) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007038 list_del(&smb_lock->llist);
Hyunchul Leed63528e2021-07-10 16:22:41 +09007039 spin_lock(&work->conn->llist_lock);
7040 list_del(&smb_lock->clist);
7041 spin_unlock(&work->conn->llist_lock);
Namjae Jeone2f34482021-03-16 10:49:09 +09007042 locks_free_lock(flock);
7043
Hyunchul Leed4075ab2021-06-25 07:02:10 +09007044 if (work->state == KSMBD_WORK_CANCELLED) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007045 spin_lock(&fp->f_lock);
7046 list_del(&work->fp_entry);
7047 spin_unlock(&fp->f_lock);
7048 rsp->hdr.Status =
7049 STATUS_CANCELLED;
7050 kfree(smb_lock);
7051 smb2_send_interim_resp(work,
Namjae Jeon070fb212021-05-26 17:57:12 +09007052 STATUS_CANCELLED);
Namjae Jeone2f34482021-03-16 10:49:09 +09007053 work->send_no_response = 1;
7054 goto out;
7055 }
7056 init_smb2_rsp_hdr(work);
7057 smb2_set_err_rsp(work);
7058 rsp->hdr.Status =
7059 STATUS_RANGE_NOT_LOCKED;
7060 kfree(smb_lock);
7061 goto out2;
7062 }
7063
7064 list_del(&smb_lock->llist);
Hyunchul Leed63528e2021-07-10 16:22:41 +09007065 spin_lock(&work->conn->llist_lock);
7066 list_del(&smb_lock->clist);
7067 spin_unlock(&work->conn->llist_lock);
7068
Namjae Jeone2f34482021-03-16 10:49:09 +09007069 spin_lock(&fp->f_lock);
7070 list_del(&work->fp_entry);
7071 spin_unlock(&fp->f_lock);
7072 goto retry;
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09007073 } else if (!rc) {
Hyunchul Leed63528e2021-07-10 16:22:41 +09007074 spin_lock(&work->conn->llist_lock);
7075 list_add_tail(&smb_lock->clist,
7076 &work->conn->lock_list);
7077 list_add_tail(&smb_lock->flist,
7078 &fp->lock_list);
7079 spin_unlock(&work->conn->llist_lock);
Namjae Jeone2f34482021-03-16 10:49:09 +09007080 list_add(&smb_lock->llist, &rollback_list);
7081 ksmbd_debug(SMB, "successful in taking lock\n");
7082 } else {
Namjae Jeone2f34482021-03-16 10:49:09 +09007083 goto out;
7084 }
7085 }
7086 }
7087
7088 if (atomic_read(&fp->f_ci->op_count) > 1)
7089 smb_break_all_oplock(work, fp);
7090
7091 rsp->StructureSize = cpu_to_le16(4);
7092 ksmbd_debug(SMB, "successful in taking lock\n");
7093 rsp->hdr.Status = STATUS_SUCCESS;
7094 rsp->Reserved = 0;
Namjae Jeoncb451722021-11-03 08:08:44 +09007095 inc_rfc1001_len(work->response_buf, 4);
Namjae Jeone2f34482021-03-16 10:49:09 +09007096 ksmbd_fd_put(work, fp);
Namjae Jeon96ad4ec2021-07-13 17:17:28 +09007097 return 0;
Namjae Jeone2f34482021-03-16 10:49:09 +09007098
7099out:
7100 list_for_each_entry_safe(smb_lock, tmp, &lock_list, llist) {
7101 locks_free_lock(smb_lock->fl);
7102 list_del(&smb_lock->llist);
7103 kfree(smb_lock);
7104 }
7105
7106 list_for_each_entry_safe(smb_lock, tmp, &rollback_list, llist) {
7107 struct file_lock *rlock = NULL;
7108
7109 rlock = smb_flock_init(filp);
7110 rlock->fl_type = F_UNLCK;
7111 rlock->fl_start = smb_lock->start;
7112 rlock->fl_end = smb_lock->end;
7113
Namjae Jeon96ad4ec2021-07-13 17:17:28 +09007114 rc = vfs_lock_file(filp, 0, rlock, NULL);
7115 if (rc)
7116 pr_err("rollback unlock fail : %d\n", rc);
Hyunchul Leed63528e2021-07-10 16:22:41 +09007117
Namjae Jeone2f34482021-03-16 10:49:09 +09007118 list_del(&smb_lock->llist);
Hyunchul Leed63528e2021-07-10 16:22:41 +09007119 spin_lock(&work->conn->llist_lock);
7120 if (!list_empty(&smb_lock->flist))
7121 list_del(&smb_lock->flist);
7122 list_del(&smb_lock->clist);
7123 spin_unlock(&work->conn->llist_lock);
7124
Namjae Jeone2f34482021-03-16 10:49:09 +09007125 locks_free_lock(smb_lock->fl);
7126 locks_free_lock(rlock);
7127 kfree(smb_lock);
7128 }
7129out2:
Namjae Jeon6c99dfc2021-07-27 09:40:05 +09007130 ksmbd_debug(SMB, "failed in taking lock(flags : %x), err : %d\n", flags, err);
7131
7132 if (!rsp->hdr.Status) {
7133 if (err == -EINVAL)
7134 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
7135 else if (err == -ENOMEM)
7136 rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES;
7137 else if (err == -ENOENT)
7138 rsp->hdr.Status = STATUS_FILE_CLOSED;
7139 else
7140 rsp->hdr.Status = STATUS_LOCK_NOT_GRANTED;
7141 }
7142
Namjae Jeone2f34482021-03-16 10:49:09 +09007143 smb2_set_err_rsp(work);
7144 ksmbd_fd_put(work, fp);
Namjae Jeon96ad4ec2021-07-13 17:17:28 +09007145 return err;
Namjae Jeone2f34482021-03-16 10:49:09 +09007146}
7147
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007148static int fsctl_copychunk(struct ksmbd_work *work,
7149 struct copychunk_ioctl_req *ci_req,
7150 unsigned int cnt_code,
7151 unsigned int input_count,
7152 unsigned long long volatile_id,
7153 unsigned long long persistent_id,
Namjae Jeon070fb212021-05-26 17:57:12 +09007154 struct smb2_ioctl_rsp *rsp)
Namjae Jeone2f34482021-03-16 10:49:09 +09007155{
Namjae Jeone2f34482021-03-16 10:49:09 +09007156 struct copychunk_ioctl_rsp *ci_rsp;
7157 struct ksmbd_file *src_fp = NULL, *dst_fp = NULL;
7158 struct srv_copychunk *chunks;
7159 unsigned int i, chunk_count, chunk_count_written = 0;
7160 unsigned int chunk_size_written = 0;
7161 loff_t total_size_written = 0;
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007162 int ret = 0;
Namjae Jeone2f34482021-03-16 10:49:09 +09007163
Namjae Jeone2f34482021-03-16 10:49:09 +09007164 ci_rsp = (struct copychunk_ioctl_rsp *)&rsp->Buffer[0];
7165
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007166 rsp->VolatileFileId = cpu_to_le64(volatile_id);
7167 rsp->PersistentFileId = cpu_to_le64(persistent_id);
Namjae Jeon64b39f42021-03-30 14:25:35 +09007168 ci_rsp->ChunksWritten =
7169 cpu_to_le32(ksmbd_server_side_copy_max_chunk_count());
7170 ci_rsp->ChunkBytesWritten =
7171 cpu_to_le32(ksmbd_server_side_copy_max_chunk_size());
7172 ci_rsp->TotalBytesWritten =
7173 cpu_to_le32(ksmbd_server_side_copy_max_total_size());
Namjae Jeone2f34482021-03-16 10:49:09 +09007174
7175 chunks = (struct srv_copychunk *)&ci_req->Chunks[0];
7176 chunk_count = le32_to_cpu(ci_req->ChunkCount);
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007177 if (chunk_count == 0)
7178 goto out;
Namjae Jeone2f34482021-03-16 10:49:09 +09007179 total_size_written = 0;
7180
7181 /* verify the SRV_COPYCHUNK_COPY packet */
7182 if (chunk_count > ksmbd_server_side_copy_max_chunk_count() ||
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007183 input_count < offsetof(struct copychunk_ioctl_req, Chunks) +
Namjae Jeon64b39f42021-03-30 14:25:35 +09007184 chunk_count * sizeof(struct srv_copychunk)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007185 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
7186 return -EINVAL;
7187 }
7188
7189 for (i = 0; i < chunk_count; i++) {
7190 if (le32_to_cpu(chunks[i].Length) == 0 ||
Namjae Jeon64b39f42021-03-30 14:25:35 +09007191 le32_to_cpu(chunks[i].Length) > ksmbd_server_side_copy_max_chunk_size())
Namjae Jeone2f34482021-03-16 10:49:09 +09007192 break;
7193 total_size_written += le32_to_cpu(chunks[i].Length);
7194 }
Namjae Jeon64b39f42021-03-30 14:25:35 +09007195
7196 if (i < chunk_count ||
7197 total_size_written > ksmbd_server_side_copy_max_total_size()) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007198 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
7199 return -EINVAL;
7200 }
7201
7202 src_fp = ksmbd_lookup_foreign_fd(work,
Namjae Jeon070fb212021-05-26 17:57:12 +09007203 le64_to_cpu(ci_req->ResumeKey[0]));
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007204 dst_fp = ksmbd_lookup_fd_slow(work, volatile_id, persistent_id);
Namjae Jeone2f34482021-03-16 10:49:09 +09007205 ret = -EINVAL;
Namjae Jeon64b39f42021-03-30 14:25:35 +09007206 if (!src_fp ||
7207 src_fp->persistent_id != le64_to_cpu(ci_req->ResumeKey[1])) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007208 rsp->hdr.Status = STATUS_OBJECT_NAME_NOT_FOUND;
7209 goto out;
7210 }
Namjae Jeon64b39f42021-03-30 14:25:35 +09007211
Namjae Jeone2f34482021-03-16 10:49:09 +09007212 if (!dst_fp) {
7213 rsp->hdr.Status = STATUS_FILE_CLOSED;
7214 goto out;
7215 }
7216
7217 /*
7218 * FILE_READ_DATA should only be included in
7219 * the FSCTL_COPYCHUNK case
7220 */
Namjae Jeon070fb212021-05-26 17:57:12 +09007221 if (cnt_code == FSCTL_COPYCHUNK &&
7222 !(dst_fp->daccess & (FILE_READ_DATA_LE | FILE_GENERIC_READ_LE))) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007223 rsp->hdr.Status = STATUS_ACCESS_DENIED;
7224 goto out;
7225 }
7226
7227 ret = ksmbd_vfs_copy_file_ranges(work, src_fp, dst_fp,
Namjae Jeon070fb212021-05-26 17:57:12 +09007228 chunks, chunk_count,
7229 &chunk_count_written,
7230 &chunk_size_written,
7231 &total_size_written);
Namjae Jeone2f34482021-03-16 10:49:09 +09007232 if (ret < 0) {
7233 if (ret == -EACCES)
7234 rsp->hdr.Status = STATUS_ACCESS_DENIED;
7235 if (ret == -EAGAIN)
7236 rsp->hdr.Status = STATUS_FILE_LOCK_CONFLICT;
7237 else if (ret == -EBADF)
7238 rsp->hdr.Status = STATUS_INVALID_HANDLE;
7239 else if (ret == -EFBIG || ret == -ENOSPC)
7240 rsp->hdr.Status = STATUS_DISK_FULL;
7241 else if (ret == -EINVAL)
7242 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
7243 else if (ret == -EISDIR)
7244 rsp->hdr.Status = STATUS_FILE_IS_A_DIRECTORY;
7245 else if (ret == -E2BIG)
7246 rsp->hdr.Status = STATUS_INVALID_VIEW_SIZE;
7247 else
7248 rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR;
7249 }
7250
7251 ci_rsp->ChunksWritten = cpu_to_le32(chunk_count_written);
7252 ci_rsp->ChunkBytesWritten = cpu_to_le32(chunk_size_written);
7253 ci_rsp->TotalBytesWritten = cpu_to_le32(total_size_written);
7254out:
7255 ksmbd_fd_put(work, src_fp);
7256 ksmbd_fd_put(work, dst_fp);
7257 return ret;
7258}
7259
7260static __be32 idev_ipv4_address(struct in_device *idev)
7261{
7262 __be32 addr = 0;
7263
7264 struct in_ifaddr *ifa;
7265
7266 rcu_read_lock();
7267 in_dev_for_each_ifa_rcu(ifa, idev) {
7268 if (ifa->ifa_flags & IFA_F_SECONDARY)
7269 continue;
7270
7271 addr = ifa->ifa_address;
7272 break;
7273 }
7274 rcu_read_unlock();
7275 return addr;
7276}
7277
7278static int fsctl_query_iface_info_ioctl(struct ksmbd_conn *conn,
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007279 struct smb2_ioctl_rsp *rsp,
7280 unsigned int out_buf_len)
Namjae Jeone2f34482021-03-16 10:49:09 +09007281{
7282 struct network_interface_info_ioctl_rsp *nii_rsp = NULL;
7283 int nbytes = 0;
7284 struct net_device *netdev;
7285 struct sockaddr_storage_rsp *sockaddr_storage;
7286 unsigned int flags;
7287 unsigned long long speed;
7288
7289 rtnl_lock();
7290 for_each_netdev(&init_net, netdev) {
Namjae Jeon71cd9cb2021-12-16 10:31:44 +09007291 bool ipv4_set = false;
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007292
Namjae Jeone2f34482021-03-16 10:49:09 +09007293 if (netdev->type == ARPHRD_LOOPBACK)
7294 continue;
7295
7296 flags = dev_get_flags(netdev);
7297 if (!(flags & IFF_RUNNING))
7298 continue;
Namjae Jeon71cd9cb2021-12-16 10:31:44 +09007299ipv6_retry:
7300 if (out_buf_len <
7301 nbytes + sizeof(struct network_interface_info_ioctl_rsp)) {
7302 rtnl_unlock();
7303 return -ENOSPC;
7304 }
Namjae Jeone2f34482021-03-16 10:49:09 +09007305
7306 nii_rsp = (struct network_interface_info_ioctl_rsp *)
7307 &rsp->Buffer[nbytes];
7308 nii_rsp->IfIndex = cpu_to_le32(netdev->ifindex);
7309
Hyunchul Lee03d8d4f2021-07-13 16:09:34 +09007310 nii_rsp->Capability = 0;
Namjae Jeona58b45a2021-12-16 10:26:43 +09007311 if (netdev->real_num_tx_queues > 1)
7312 nii_rsp->Capability |= cpu_to_le32(RSS_CAPABLE);
Hyunchul Lee03d8d4f2021-07-13 16:09:34 +09007313 if (ksmbd_rdma_capable_netdev(netdev))
7314 nii_rsp->Capability |= cpu_to_le32(RDMA_CAPABLE);
Namjae Jeone2f34482021-03-16 10:49:09 +09007315
7316 nii_rsp->Next = cpu_to_le32(152);
7317 nii_rsp->Reserved = 0;
7318
7319 if (netdev->ethtool_ops->get_link_ksettings) {
7320 struct ethtool_link_ksettings cmd;
7321
7322 netdev->ethtool_ops->get_link_ksettings(netdev, &cmd);
7323 speed = cmd.base.speed;
7324 } else {
Per Forlind4758662021-08-30 13:23:04 +09007325 ksmbd_debug(SMB, "%s %s\n", netdev->name,
7326 "speed is unknown, defaulting to 1Gb/sec");
Namjae Jeone2f34482021-03-16 10:49:09 +09007327 speed = SPEED_1000;
7328 }
7329
7330 speed *= 1000000;
7331 nii_rsp->LinkSpeed = cpu_to_le64(speed);
7332
7333 sockaddr_storage = (struct sockaddr_storage_rsp *)
7334 nii_rsp->SockAddr_Storage;
7335 memset(sockaddr_storage, 0, 128);
7336
Namjae Jeon71cd9cb2021-12-16 10:31:44 +09007337 if (!ipv4_set) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007338 struct in_device *idev;
7339
7340 sockaddr_storage->Family = cpu_to_le16(INTERNETWORK);
7341 sockaddr_storage->addr4.Port = 0;
7342
7343 idev = __in_dev_get_rtnl(netdev);
7344 if (!idev)
7345 continue;
7346 sockaddr_storage->addr4.IPv4address =
7347 idev_ipv4_address(idev);
Namjae Jeon71cd9cb2021-12-16 10:31:44 +09007348 nbytes += sizeof(struct network_interface_info_ioctl_rsp);
7349 ipv4_set = true;
7350 goto ipv6_retry;
Namjae Jeone2f34482021-03-16 10:49:09 +09007351 } else {
7352 struct inet6_dev *idev6;
7353 struct inet6_ifaddr *ifa;
7354 __u8 *ipv6_addr = sockaddr_storage->addr6.IPv6address;
7355
7356 sockaddr_storage->Family = cpu_to_le16(INTERNETWORKV6);
7357 sockaddr_storage->addr6.Port = 0;
7358 sockaddr_storage->addr6.FlowInfo = 0;
7359
7360 idev6 = __in6_dev_get(netdev);
7361 if (!idev6)
7362 continue;
7363
7364 list_for_each_entry(ifa, &idev6->addr_list, if_list) {
7365 if (ifa->flags & (IFA_F_TENTATIVE |
7366 IFA_F_DEPRECATED))
7367 continue;
7368 memcpy(ipv6_addr, ifa->addr.s6_addr, 16);
7369 break;
7370 }
7371 sockaddr_storage->addr6.ScopeId = 0;
Namjae Jeon71cd9cb2021-12-16 10:31:44 +09007372 nbytes += sizeof(struct network_interface_info_ioctl_rsp);
Namjae Jeone2f34482021-03-16 10:49:09 +09007373 }
Namjae Jeone2f34482021-03-16 10:49:09 +09007374 }
7375 rtnl_unlock();
7376
7377 /* zero if this is last one */
7378 if (nii_rsp)
7379 nii_rsp->Next = 0;
7380
Namjae Jeone2f34482021-03-16 10:49:09 +09007381 rsp->PersistentFileId = cpu_to_le64(SMB2_NO_FID);
7382 rsp->VolatileFileId = cpu_to_le64(SMB2_NO_FID);
7383 return nbytes;
7384}
7385
Namjae Jeone2f34482021-03-16 10:49:09 +09007386static int fsctl_validate_negotiate_info(struct ksmbd_conn *conn,
Namjae Jeon070fb212021-05-26 17:57:12 +09007387 struct validate_negotiate_info_req *neg_req,
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007388 struct validate_negotiate_info_rsp *neg_rsp,
7389 unsigned int in_buf_len)
Namjae Jeone2f34482021-03-16 10:49:09 +09007390{
7391 int ret = 0;
7392 int dialect;
7393
Marios Makassikis78f16882021-10-28 21:01:27 +02007394 if (in_buf_len < offsetof(struct validate_negotiate_info_req, Dialects) +
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007395 le16_to_cpu(neg_req->DialectCount) * sizeof(__le16))
7396 return -EINVAL;
7397
Namjae Jeone2f34482021-03-16 10:49:09 +09007398 dialect = ksmbd_lookup_dialect_by_id(neg_req->Dialects,
Namjae Jeon070fb212021-05-26 17:57:12 +09007399 neg_req->DialectCount);
Namjae Jeone2f34482021-03-16 10:49:09 +09007400 if (dialect == BAD_PROT_ID || dialect != conn->dialect) {
7401 ret = -EINVAL;
7402 goto err_out;
7403 }
7404
7405 if (strncmp(neg_req->Guid, conn->ClientGUID, SMB2_CLIENT_GUID_SIZE)) {
7406 ret = -EINVAL;
7407 goto err_out;
7408 }
7409
7410 if (le16_to_cpu(neg_req->SecurityMode) != conn->cli_sec_mode) {
7411 ret = -EINVAL;
7412 goto err_out;
7413 }
7414
7415 if (le32_to_cpu(neg_req->Capabilities) != conn->cli_cap) {
7416 ret = -EINVAL;
7417 goto err_out;
7418 }
7419
7420 neg_rsp->Capabilities = cpu_to_le32(conn->vals->capabilities);
7421 memset(neg_rsp->Guid, 0, SMB2_CLIENT_GUID_SIZE);
7422 neg_rsp->SecurityMode = cpu_to_le16(conn->srv_sec_mode);
7423 neg_rsp->Dialect = cpu_to_le16(conn->dialect);
7424err_out:
7425 return ret;
7426}
7427
Namjae Jeon64b39f42021-03-30 14:25:35 +09007428static int fsctl_query_allocated_ranges(struct ksmbd_work *work, u64 id,
Namjae Jeon070fb212021-05-26 17:57:12 +09007429 struct file_allocated_range_buffer *qar_req,
7430 struct file_allocated_range_buffer *qar_rsp,
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007431 unsigned int in_count, unsigned int *out_count)
Namjae Jeone2f34482021-03-16 10:49:09 +09007432{
7433 struct ksmbd_file *fp;
7434 loff_t start, length;
7435 int ret = 0;
7436
7437 *out_count = 0;
7438 if (in_count == 0)
7439 return -EINVAL;
7440
7441 fp = ksmbd_lookup_fd_fast(work, id);
7442 if (!fp)
7443 return -ENOENT;
7444
7445 start = le64_to_cpu(qar_req->file_offset);
7446 length = le64_to_cpu(qar_req->length);
7447
7448 ret = ksmbd_vfs_fqar_lseek(fp, start, length,
Namjae Jeon070fb212021-05-26 17:57:12 +09007449 qar_rsp, in_count, out_count);
Namjae Jeone2f34482021-03-16 10:49:09 +09007450 if (ret && ret != -E2BIG)
7451 *out_count = 0;
7452
7453 ksmbd_fd_put(work, fp);
7454 return ret;
7455}
7456
Namjae Jeon64b39f42021-03-30 14:25:35 +09007457static int fsctl_pipe_transceive(struct ksmbd_work *work, u64 id,
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007458 unsigned int out_buf_len,
7459 struct smb2_ioctl_req *req,
Namjae Jeon070fb212021-05-26 17:57:12 +09007460 struct smb2_ioctl_rsp *rsp)
Namjae Jeone2f34482021-03-16 10:49:09 +09007461{
7462 struct ksmbd_rpc_command *rpc_resp;
7463 char *data_buf = (char *)&req->Buffer[0];
7464 int nbytes = 0;
7465
Namjae Jeon64b39f42021-03-30 14:25:35 +09007466 rpc_resp = ksmbd_rpc_ioctl(work->sess, id, data_buf,
Namjae Jeon070fb212021-05-26 17:57:12 +09007467 le32_to_cpu(req->InputCount));
Namjae Jeone2f34482021-03-16 10:49:09 +09007468 if (rpc_resp) {
7469 if (rpc_resp->flags == KSMBD_RPC_SOME_NOT_MAPPED) {
7470 /*
7471 * set STATUS_SOME_NOT_MAPPED response
7472 * for unknown domain sid.
7473 */
7474 rsp->hdr.Status = STATUS_SOME_NOT_MAPPED;
7475 } else if (rpc_resp->flags == KSMBD_RPC_ENOTIMPLEMENTED) {
7476 rsp->hdr.Status = STATUS_NOT_SUPPORTED;
7477 goto out;
7478 } else if (rpc_resp->flags != KSMBD_RPC_OK) {
7479 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
7480 goto out;
7481 }
7482
7483 nbytes = rpc_resp->payload_sz;
7484 if (rpc_resp->payload_sz > out_buf_len) {
7485 rsp->hdr.Status = STATUS_BUFFER_OVERFLOW;
7486 nbytes = out_buf_len;
7487 }
7488
7489 if (!rpc_resp->payload_sz) {
7490 rsp->hdr.Status =
7491 STATUS_UNEXPECTED_IO_ERROR;
7492 goto out;
7493 }
7494
7495 memcpy((char *)rsp->Buffer, rpc_resp->payload, nbytes);
7496 }
7497out:
Namjae Jeon79f6b112021-04-02 12:47:14 +09007498 kvfree(rpc_resp);
Namjae Jeone2f34482021-03-16 10:49:09 +09007499 return nbytes;
7500}
7501
Namjae Jeon64b39f42021-03-30 14:25:35 +09007502static inline int fsctl_set_sparse(struct ksmbd_work *work, u64 id,
Namjae Jeon070fb212021-05-26 17:57:12 +09007503 struct file_sparse *sparse)
Namjae Jeone2f34482021-03-16 10:49:09 +09007504{
7505 struct ksmbd_file *fp;
Hyunchul Lee465d7202021-07-03 12:10:36 +09007506 struct user_namespace *user_ns;
Namjae Jeone2f34482021-03-16 10:49:09 +09007507 int ret = 0;
7508 __le32 old_fattr;
7509
7510 fp = ksmbd_lookup_fd_fast(work, id);
7511 if (!fp)
7512 return -ENOENT;
Hyunchul Lee465d7202021-07-03 12:10:36 +09007513 user_ns = file_mnt_user_ns(fp->filp);
Namjae Jeone2f34482021-03-16 10:49:09 +09007514
7515 old_fattr = fp->f_ci->m_fattr;
7516 if (sparse->SetSparse)
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09007517 fp->f_ci->m_fattr |= FILE_ATTRIBUTE_SPARSE_FILE_LE;
Namjae Jeone2f34482021-03-16 10:49:09 +09007518 else
Ronnie Sahlberg26a27872021-11-03 08:45:52 +09007519 fp->f_ci->m_fattr &= ~FILE_ATTRIBUTE_SPARSE_FILE_LE;
Namjae Jeone2f34482021-03-16 10:49:09 +09007520
7521 if (fp->f_ci->m_fattr != old_fattr &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09007522 test_share_config_flag(work->tcon->share_conf,
7523 KSMBD_SHARE_FLAG_STORE_DOS_ATTRS)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007524 struct xattr_dos_attrib da;
7525
Hyunchul Lee465d7202021-07-03 12:10:36 +09007526 ret = ksmbd_vfs_get_dos_attrib_xattr(user_ns,
Hyunchul Leeaf349832021-06-30 18:25:53 +09007527 fp->filp->f_path.dentry, &da);
Namjae Jeone2f34482021-03-16 10:49:09 +09007528 if (ret <= 0)
7529 goto out;
7530
7531 da.attr = le32_to_cpu(fp->f_ci->m_fattr);
Hyunchul Lee465d7202021-07-03 12:10:36 +09007532 ret = ksmbd_vfs_set_dos_attrib_xattr(user_ns,
Hyunchul Leeaf349832021-06-30 18:25:53 +09007533 fp->filp->f_path.dentry, &da);
Namjae Jeone2f34482021-03-16 10:49:09 +09007534 if (ret)
7535 fp->f_ci->m_fattr = old_fattr;
7536 }
7537
7538out:
7539 ksmbd_fd_put(work, fp);
7540 return ret;
7541}
7542
7543static int fsctl_request_resume_key(struct ksmbd_work *work,
Namjae Jeon070fb212021-05-26 17:57:12 +09007544 struct smb2_ioctl_req *req,
7545 struct resume_key_ioctl_rsp *key_rsp)
Namjae Jeone2f34482021-03-16 10:49:09 +09007546{
7547 struct ksmbd_file *fp;
7548
7549 fp = ksmbd_lookup_fd_slow(work,
Namjae Jeon070fb212021-05-26 17:57:12 +09007550 le64_to_cpu(req->VolatileFileId),
7551 le64_to_cpu(req->PersistentFileId));
Namjae Jeone2f34482021-03-16 10:49:09 +09007552 if (!fp)
7553 return -ENOENT;
7554
7555 memset(key_rsp, 0, sizeof(*key_rsp));
7556 key_rsp->ResumeKey[0] = req->VolatileFileId;
7557 key_rsp->ResumeKey[1] = req->PersistentFileId;
7558 ksmbd_fd_put(work, fp);
7559
7560 return 0;
7561}
7562
7563/**
7564 * smb2_ioctl() - handler for smb2 ioctl command
7565 * @work: smb work containing ioctl command buffer
7566 *
7567 * Return: 0 on success, otherwise error
7568 */
7569int smb2_ioctl(struct ksmbd_work *work)
7570{
7571 struct smb2_ioctl_req *req;
Namjae Jeoncb451722021-11-03 08:08:44 +09007572 struct smb2_ioctl_rsp *rsp;
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007573 unsigned int cnt_code, nbytes = 0, out_buf_len, in_buf_len;
Namjae Jeon64b39f42021-03-30 14:25:35 +09007574 u64 id = KSMBD_NO_FID;
Namjae Jeone2f34482021-03-16 10:49:09 +09007575 struct ksmbd_conn *conn = work->conn;
7576 int ret = 0;
7577
Namjae Jeone2f34482021-03-16 10:49:09 +09007578 if (work->next_smb2_rcv_hdr_off) {
Namjae Jeon8a893312021-06-25 13:43:37 +09007579 req = ksmbd_req_buf_next(work);
7580 rsp = ksmbd_resp_buf_next(work);
Namjae Jeon38673692021-07-08 12:32:27 +09007581 if (!has_file_id(le64_to_cpu(req->VolatileFileId))) {
7582 ksmbd_debug(SMB, "Compound request set FID = %llu\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09007583 work->compound_fid);
Namjae Jeone2f34482021-03-16 10:49:09 +09007584 id = work->compound_fid;
7585 }
7586 } else {
Namjae Jeoncb451722021-11-03 08:08:44 +09007587 req = smb2_get_msg(work->request_buf);
7588 rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09007589 }
7590
Namjae Jeon38673692021-07-08 12:32:27 +09007591 if (!has_file_id(id))
Namjae Jeone2f34482021-03-16 10:49:09 +09007592 id = le64_to_cpu(req->VolatileFileId);
7593
7594 if (req->Flags != cpu_to_le32(SMB2_0_IOCTL_IS_FSCTL)) {
7595 rsp->hdr.Status = STATUS_NOT_SUPPORTED;
7596 goto out;
7597 }
7598
7599 cnt_code = le32_to_cpu(req->CntCode);
Hyunchul Lee34061d62021-10-16 08:39:54 +09007600 ret = smb2_calc_max_out_buf_len(work, 48,
7601 le32_to_cpu(req->MaxOutputResponse));
7602 if (ret < 0) {
7603 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
7604 goto out;
7605 }
7606 out_buf_len = (unsigned int)ret;
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007607 in_buf_len = le32_to_cpu(req->InputCount);
Namjae Jeone2f34482021-03-16 10:49:09 +09007608
7609 switch (cnt_code) {
7610 case FSCTL_DFS_GET_REFERRALS:
7611 case FSCTL_DFS_GET_REFERRALS_EX:
7612 /* Not support DFS yet */
7613 rsp->hdr.Status = STATUS_FS_DRIVER_REQUIRED;
7614 goto out;
7615 case FSCTL_CREATE_OR_GET_OBJECT_ID:
7616 {
7617 struct file_object_buf_type1_ioctl_rsp *obj_buf;
7618
7619 nbytes = sizeof(struct file_object_buf_type1_ioctl_rsp);
7620 obj_buf = (struct file_object_buf_type1_ioctl_rsp *)
7621 &rsp->Buffer[0];
7622
7623 /*
7624 * TODO: This is dummy implementation to pass smbtorture
7625 * Need to check correct response later
7626 */
7627 memset(obj_buf->ObjectId, 0x0, 16);
7628 memset(obj_buf->BirthVolumeId, 0x0, 16);
7629 memset(obj_buf->BirthObjectId, 0x0, 16);
7630 memset(obj_buf->DomainId, 0x0, 16);
7631
7632 break;
7633 }
7634 case FSCTL_PIPE_TRANSCEIVE:
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007635 out_buf_len = min_t(u32, KSMBD_IPC_MAX_PAYLOAD, out_buf_len);
Namjae Jeone2f34482021-03-16 10:49:09 +09007636 nbytes = fsctl_pipe_transceive(work, id, out_buf_len, req, rsp);
7637 break;
7638 case FSCTL_VALIDATE_NEGOTIATE_INFO:
7639 if (conn->dialect < SMB30_PROT_ID) {
7640 ret = -EOPNOTSUPP;
7641 goto out;
7642 }
7643
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007644 if (in_buf_len < sizeof(struct validate_negotiate_info_req))
7645 return -EINVAL;
7646
7647 if (out_buf_len < sizeof(struct validate_negotiate_info_rsp))
7648 return -EINVAL;
7649
Namjae Jeone2f34482021-03-16 10:49:09 +09007650 ret = fsctl_validate_negotiate_info(conn,
7651 (struct validate_negotiate_info_req *)&req->Buffer[0],
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007652 (struct validate_negotiate_info_rsp *)&rsp->Buffer[0],
7653 in_buf_len);
Namjae Jeone2f34482021-03-16 10:49:09 +09007654 if (ret < 0)
7655 goto out;
7656
7657 nbytes = sizeof(struct validate_negotiate_info_rsp);
7658 rsp->PersistentFileId = cpu_to_le64(SMB2_NO_FID);
7659 rsp->VolatileFileId = cpu_to_le64(SMB2_NO_FID);
7660 break;
7661 case FSCTL_QUERY_NETWORK_INTERFACE_INFO:
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007662 ret = fsctl_query_iface_info_ioctl(conn, rsp, out_buf_len);
7663 if (ret < 0)
Namjae Jeone2f34482021-03-16 10:49:09 +09007664 goto out;
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007665 nbytes = ret;
Namjae Jeone2f34482021-03-16 10:49:09 +09007666 break;
7667 case FSCTL_REQUEST_RESUME_KEY:
7668 if (out_buf_len < sizeof(struct resume_key_ioctl_rsp)) {
7669 ret = -EINVAL;
7670 goto out;
7671 }
7672
7673 ret = fsctl_request_resume_key(work, req,
Namjae Jeon070fb212021-05-26 17:57:12 +09007674 (struct resume_key_ioctl_rsp *)&rsp->Buffer[0]);
Namjae Jeone2f34482021-03-16 10:49:09 +09007675 if (ret < 0)
7676 goto out;
7677 rsp->PersistentFileId = req->PersistentFileId;
7678 rsp->VolatileFileId = req->VolatileFileId;
7679 nbytes = sizeof(struct resume_key_ioctl_rsp);
7680 break;
7681 case FSCTL_COPYCHUNK:
7682 case FSCTL_COPYCHUNK_WRITE:
Namjae Jeon64b39f42021-03-30 14:25:35 +09007683 if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007684 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09007685 "User does not have write permission\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09007686 ret = -EACCES;
7687 goto out;
7688 }
7689
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007690 if (in_buf_len < sizeof(struct copychunk_ioctl_req)) {
7691 ret = -EINVAL;
7692 goto out;
7693 }
7694
Namjae Jeone2f34482021-03-16 10:49:09 +09007695 if (out_buf_len < sizeof(struct copychunk_ioctl_rsp)) {
7696 ret = -EINVAL;
7697 goto out;
7698 }
7699
7700 nbytes = sizeof(struct copychunk_ioctl_rsp);
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007701 rsp->VolatileFileId = req->VolatileFileId;
7702 rsp->PersistentFileId = req->PersistentFileId;
7703 fsctl_copychunk(work,
7704 (struct copychunk_ioctl_req *)&req->Buffer[0],
7705 le32_to_cpu(req->CntCode),
7706 le32_to_cpu(req->InputCount),
7707 le64_to_cpu(req->VolatileFileId),
7708 le64_to_cpu(req->PersistentFileId),
7709 rsp);
Namjae Jeone2f34482021-03-16 10:49:09 +09007710 break;
7711 case FSCTL_SET_SPARSE:
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007712 if (in_buf_len < sizeof(struct file_sparse)) {
7713 ret = -EINVAL;
7714 goto out;
7715 }
7716
Namjae Jeone2f34482021-03-16 10:49:09 +09007717 ret = fsctl_set_sparse(work, id,
Namjae Jeon070fb212021-05-26 17:57:12 +09007718 (struct file_sparse *)&req->Buffer[0]);
Namjae Jeone2f34482021-03-16 10:49:09 +09007719 if (ret < 0)
7720 goto out;
7721 break;
7722 case FSCTL_SET_ZERO_DATA:
7723 {
7724 struct file_zero_data_information *zero_data;
7725 struct ksmbd_file *fp;
7726 loff_t off, len;
7727
Namjae Jeon64b39f42021-03-30 14:25:35 +09007728 if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007729 ksmbd_debug(SMB,
Namjae Jeon070fb212021-05-26 17:57:12 +09007730 "User does not have write permission\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09007731 ret = -EACCES;
7732 goto out;
7733 }
7734
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007735 if (in_buf_len < sizeof(struct file_zero_data_information)) {
7736 ret = -EINVAL;
7737 goto out;
7738 }
7739
Namjae Jeone2f34482021-03-16 10:49:09 +09007740 zero_data =
7741 (struct file_zero_data_information *)&req->Buffer[0];
7742
7743 fp = ksmbd_lookup_fd_fast(work, id);
7744 if (!fp) {
7745 ret = -ENOENT;
7746 goto out;
7747 }
7748
7749 off = le64_to_cpu(zero_data->FileOffset);
7750 len = le64_to_cpu(zero_data->BeyondFinalZero) - off;
7751
7752 ret = ksmbd_vfs_zero_data(work, fp, off, len);
7753 ksmbd_fd_put(work, fp);
7754 if (ret < 0)
7755 goto out;
7756 break;
7757 }
7758 case FSCTL_QUERY_ALLOCATED_RANGES:
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007759 if (in_buf_len < sizeof(struct file_allocated_range_buffer)) {
7760 ret = -EINVAL;
7761 goto out;
7762 }
7763
Namjae Jeone2f34482021-03-16 10:49:09 +09007764 ret = fsctl_query_allocated_ranges(work, id,
7765 (struct file_allocated_range_buffer *)&req->Buffer[0],
7766 (struct file_allocated_range_buffer *)&rsp->Buffer[0],
7767 out_buf_len /
7768 sizeof(struct file_allocated_range_buffer), &nbytes);
7769 if (ret == -E2BIG) {
7770 rsp->hdr.Status = STATUS_BUFFER_OVERFLOW;
7771 } else if (ret < 0) {
7772 nbytes = 0;
7773 goto out;
7774 }
7775
7776 nbytes *= sizeof(struct file_allocated_range_buffer);
7777 break;
7778 case FSCTL_GET_REPARSE_POINT:
7779 {
7780 struct reparse_data_buffer *reparse_ptr;
7781 struct ksmbd_file *fp;
7782
7783 reparse_ptr = (struct reparse_data_buffer *)&rsp->Buffer[0];
7784 fp = ksmbd_lookup_fd_fast(work, id);
7785 if (!fp) {
Namjae Jeonbde16942021-06-28 15:23:19 +09007786 pr_err("not found fp!!\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09007787 ret = -ENOENT;
7788 goto out;
7789 }
7790
7791 reparse_ptr->ReparseTag =
Namjae Jeonab0b2632021-06-29 09:20:13 +09007792 smb2_get_reparse_tag_special_file(file_inode(fp->filp)->i_mode);
Namjae Jeone2f34482021-03-16 10:49:09 +09007793 reparse_ptr->ReparseDataLength = 0;
7794 ksmbd_fd_put(work, fp);
7795 nbytes = sizeof(struct reparse_data_buffer);
7796 break;
7797 }
Namjae Jeoneb817362021-05-18 10:37:59 +09007798 case FSCTL_DUPLICATE_EXTENTS_TO_FILE:
7799 {
7800 struct ksmbd_file *fp_in, *fp_out = NULL;
7801 struct duplicate_extents_to_file *dup_ext;
7802 loff_t src_off, dst_off, length, cloned;
7803
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007804 if (in_buf_len < sizeof(struct duplicate_extents_to_file)) {
7805 ret = -EINVAL;
7806 goto out;
7807 }
7808
Namjae Jeoneb817362021-05-18 10:37:59 +09007809 dup_ext = (struct duplicate_extents_to_file *)&req->Buffer[0];
7810
7811 fp_in = ksmbd_lookup_fd_slow(work, dup_ext->VolatileFileHandle,
Namjae Jeon070fb212021-05-26 17:57:12 +09007812 dup_ext->PersistentFileHandle);
Namjae Jeoneb817362021-05-18 10:37:59 +09007813 if (!fp_in) {
Namjae Jeonbde16942021-06-28 15:23:19 +09007814 pr_err("not found file handle in duplicate extent to file\n");
Namjae Jeoneb817362021-05-18 10:37:59 +09007815 ret = -ENOENT;
7816 goto out;
7817 }
7818
7819 fp_out = ksmbd_lookup_fd_fast(work, id);
7820 if (!fp_out) {
Namjae Jeonbde16942021-06-28 15:23:19 +09007821 pr_err("not found fp\n");
Namjae Jeoneb817362021-05-18 10:37:59 +09007822 ret = -ENOENT;
7823 goto dup_ext_out;
7824 }
7825
7826 src_off = le64_to_cpu(dup_ext->SourceFileOffset);
7827 dst_off = le64_to_cpu(dup_ext->TargetFileOffset);
7828 length = le64_to_cpu(dup_ext->ByteCount);
7829 cloned = vfs_clone_file_range(fp_in->filp, src_off, fp_out->filp,
Namjae Jeon070fb212021-05-26 17:57:12 +09007830 dst_off, length, 0);
Namjae Jeoneb817362021-05-18 10:37:59 +09007831 if (cloned == -EXDEV || cloned == -EOPNOTSUPP) {
7832 ret = -EOPNOTSUPP;
7833 goto dup_ext_out;
7834 } else if (cloned != length) {
Namjae Jeonf8524772021-06-18 10:28:00 +09007835 cloned = vfs_copy_file_range(fp_in->filp, src_off,
7836 fp_out->filp, dst_off, length, 0);
Namjae Jeoneb817362021-05-18 10:37:59 +09007837 if (cloned != length) {
7838 if (cloned < 0)
7839 ret = cloned;
7840 else
7841 ret = -EINVAL;
7842 }
7843 }
7844
7845dup_ext_out:
7846 ksmbd_fd_put(work, fp_in);
7847 ksmbd_fd_put(work, fp_out);
7848 if (ret < 0)
7849 goto out;
7850 break;
7851 }
Namjae Jeone2f34482021-03-16 10:49:09 +09007852 default:
7853 ksmbd_debug(SMB, "not implemented yet ioctl command 0x%x\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09007854 cnt_code);
Namjae Jeone2f34482021-03-16 10:49:09 +09007855 ret = -EOPNOTSUPP;
7856 goto out;
7857 }
7858
7859 rsp->CntCode = cpu_to_le32(cnt_code);
7860 rsp->InputCount = cpu_to_le32(0);
7861 rsp->InputOffset = cpu_to_le32(112);
7862 rsp->OutputOffset = cpu_to_le32(112);
7863 rsp->OutputCount = cpu_to_le32(nbytes);
7864 rsp->StructureSize = cpu_to_le16(49);
7865 rsp->Reserved = cpu_to_le16(0);
7866 rsp->Flags = cpu_to_le32(0);
7867 rsp->Reserved2 = cpu_to_le32(0);
Namjae Jeoncb451722021-11-03 08:08:44 +09007868 inc_rfc1001_len(work->response_buf, 48 + nbytes);
Namjae Jeone2f34482021-03-16 10:49:09 +09007869
7870 return 0;
7871
7872out:
7873 if (ret == -EACCES)
7874 rsp->hdr.Status = STATUS_ACCESS_DENIED;
7875 else if (ret == -ENOENT)
7876 rsp->hdr.Status = STATUS_OBJECT_NAME_NOT_FOUND;
7877 else if (ret == -EOPNOTSUPP)
7878 rsp->hdr.Status = STATUS_NOT_SUPPORTED;
Namjae Jeonf7db8fd2021-10-08 07:31:03 +09007879 else if (ret == -ENOSPC)
7880 rsp->hdr.Status = STATUS_BUFFER_TOO_SMALL;
Namjae Jeone2f34482021-03-16 10:49:09 +09007881 else if (ret < 0 || rsp->hdr.Status == 0)
7882 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
7883 smb2_set_err_rsp(work);
7884 return 0;
7885}
7886
7887/**
7888 * smb20_oplock_break_ack() - handler for smb2.0 oplock break command
7889 * @work: smb work containing oplock break command buffer
7890 *
7891 * Return: 0
7892 */
7893static void smb20_oplock_break_ack(struct ksmbd_work *work)
7894{
Namjae Jeoncb451722021-11-03 08:08:44 +09007895 struct smb2_oplock_break *req = smb2_get_msg(work->request_buf);
7896 struct smb2_oplock_break *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09007897 struct ksmbd_file *fp;
7898 struct oplock_info *opinfo = NULL;
7899 __le32 err = 0;
7900 int ret = 0;
Namjae Jeon64b39f42021-03-30 14:25:35 +09007901 u64 volatile_id, persistent_id;
Namjae Jeone2f34482021-03-16 10:49:09 +09007902 char req_oplevel = 0, rsp_oplevel = 0;
7903 unsigned int oplock_change_type;
7904
7905 volatile_id = le64_to_cpu(req->VolatileFid);
7906 persistent_id = le64_to_cpu(req->PersistentFid);
7907 req_oplevel = req->OplockLevel;
7908 ksmbd_debug(OPLOCK, "v_id %llu, p_id %llu request oplock level %d\n",
7909 volatile_id, persistent_id, req_oplevel);
7910
7911 fp = ksmbd_lookup_fd_slow(work, volatile_id, persistent_id);
7912 if (!fp) {
7913 rsp->hdr.Status = STATUS_FILE_CLOSED;
7914 smb2_set_err_rsp(work);
7915 return;
7916 }
7917
7918 opinfo = opinfo_get(fp);
7919 if (!opinfo) {
Namjae Jeonbde16942021-06-28 15:23:19 +09007920 pr_err("unexpected null oplock_info\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09007921 rsp->hdr.Status = STATUS_INVALID_OPLOCK_PROTOCOL;
7922 smb2_set_err_rsp(work);
7923 ksmbd_fd_put(work, fp);
7924 return;
7925 }
7926
7927 if (opinfo->level == SMB2_OPLOCK_LEVEL_NONE) {
7928 rsp->hdr.Status = STATUS_INVALID_OPLOCK_PROTOCOL;
7929 goto err_out;
7930 }
7931
7932 if (opinfo->op_state == OPLOCK_STATE_NONE) {
7933 ksmbd_debug(SMB, "unexpected oplock state 0x%x\n", opinfo->op_state);
7934 rsp->hdr.Status = STATUS_UNSUCCESSFUL;
7935 goto err_out;
7936 }
7937
Namjae Jeon64b39f42021-03-30 14:25:35 +09007938 if ((opinfo->level == SMB2_OPLOCK_LEVEL_EXCLUSIVE ||
7939 opinfo->level == SMB2_OPLOCK_LEVEL_BATCH) &&
7940 (req_oplevel != SMB2_OPLOCK_LEVEL_II &&
7941 req_oplevel != SMB2_OPLOCK_LEVEL_NONE)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007942 err = STATUS_INVALID_OPLOCK_PROTOCOL;
7943 oplock_change_type = OPLOCK_WRITE_TO_NONE;
Namjae Jeon64b39f42021-03-30 14:25:35 +09007944 } else if (opinfo->level == SMB2_OPLOCK_LEVEL_II &&
7945 req_oplevel != SMB2_OPLOCK_LEVEL_NONE) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007946 err = STATUS_INVALID_OPLOCK_PROTOCOL;
7947 oplock_change_type = OPLOCK_READ_TO_NONE;
Namjae Jeon64b39f42021-03-30 14:25:35 +09007948 } else if (req_oplevel == SMB2_OPLOCK_LEVEL_II ||
7949 req_oplevel == SMB2_OPLOCK_LEVEL_NONE) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007950 err = STATUS_INVALID_DEVICE_STATE;
Namjae Jeon64b39f42021-03-30 14:25:35 +09007951 if ((opinfo->level == SMB2_OPLOCK_LEVEL_EXCLUSIVE ||
7952 opinfo->level == SMB2_OPLOCK_LEVEL_BATCH) &&
7953 req_oplevel == SMB2_OPLOCK_LEVEL_II) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007954 oplock_change_type = OPLOCK_WRITE_TO_READ;
Namjae Jeon64b39f42021-03-30 14:25:35 +09007955 } else if ((opinfo->level == SMB2_OPLOCK_LEVEL_EXCLUSIVE ||
7956 opinfo->level == SMB2_OPLOCK_LEVEL_BATCH) &&
7957 req_oplevel == SMB2_OPLOCK_LEVEL_NONE) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007958 oplock_change_type = OPLOCK_WRITE_TO_NONE;
Namjae Jeon64b39f42021-03-30 14:25:35 +09007959 } else if (opinfo->level == SMB2_OPLOCK_LEVEL_II &&
7960 req_oplevel == SMB2_OPLOCK_LEVEL_NONE) {
Namjae Jeone2f34482021-03-16 10:49:09 +09007961 oplock_change_type = OPLOCK_READ_TO_NONE;
Namjae Jeon64b39f42021-03-30 14:25:35 +09007962 } else {
Namjae Jeone2f34482021-03-16 10:49:09 +09007963 oplock_change_type = 0;
Namjae Jeon64b39f42021-03-30 14:25:35 +09007964 }
7965 } else {
Namjae Jeone2f34482021-03-16 10:49:09 +09007966 oplock_change_type = 0;
Namjae Jeon64b39f42021-03-30 14:25:35 +09007967 }
Namjae Jeone2f34482021-03-16 10:49:09 +09007968
7969 switch (oplock_change_type) {
7970 case OPLOCK_WRITE_TO_READ:
7971 ret = opinfo_write_to_read(opinfo);
7972 rsp_oplevel = SMB2_OPLOCK_LEVEL_II;
7973 break;
7974 case OPLOCK_WRITE_TO_NONE:
7975 ret = opinfo_write_to_none(opinfo);
7976 rsp_oplevel = SMB2_OPLOCK_LEVEL_NONE;
7977 break;
7978 case OPLOCK_READ_TO_NONE:
7979 ret = opinfo_read_to_none(opinfo);
7980 rsp_oplevel = SMB2_OPLOCK_LEVEL_NONE;
7981 break;
7982 default:
Namjae Jeonbde16942021-06-28 15:23:19 +09007983 pr_err("unknown oplock change 0x%x -> 0x%x\n",
7984 opinfo->level, rsp_oplevel);
Namjae Jeone2f34482021-03-16 10:49:09 +09007985 }
7986
7987 if (ret < 0) {
7988 rsp->hdr.Status = err;
7989 goto err_out;
7990 }
7991
7992 opinfo_put(opinfo);
7993 ksmbd_fd_put(work, fp);
7994 opinfo->op_state = OPLOCK_STATE_NONE;
7995 wake_up_interruptible_all(&opinfo->oplock_q);
7996
7997 rsp->StructureSize = cpu_to_le16(24);
7998 rsp->OplockLevel = rsp_oplevel;
7999 rsp->Reserved = 0;
8000 rsp->Reserved2 = 0;
8001 rsp->VolatileFid = cpu_to_le64(volatile_id);
8002 rsp->PersistentFid = cpu_to_le64(persistent_id);
Namjae Jeoncb451722021-11-03 08:08:44 +09008003 inc_rfc1001_len(work->response_buf, 24);
Namjae Jeone2f34482021-03-16 10:49:09 +09008004 return;
8005
8006err_out:
8007 opinfo->op_state = OPLOCK_STATE_NONE;
8008 wake_up_interruptible_all(&opinfo->oplock_q);
8009
8010 opinfo_put(opinfo);
8011 ksmbd_fd_put(work, fp);
8012 smb2_set_err_rsp(work);
8013}
8014
8015static int check_lease_state(struct lease *lease, __le32 req_state)
8016{
8017 if ((lease->new_state ==
Namjae Jeon64b39f42021-03-30 14:25:35 +09008018 (SMB2_LEASE_READ_CACHING_LE | SMB2_LEASE_HANDLE_CACHING_LE)) &&
8019 !(req_state & SMB2_LEASE_WRITE_CACHING_LE)) {
Namjae Jeone2f34482021-03-16 10:49:09 +09008020 lease->new_state = req_state;
8021 return 0;
8022 }
8023
8024 if (lease->new_state == req_state)
8025 return 0;
8026
8027 return 1;
8028}
8029
8030/**
8031 * smb21_lease_break_ack() - handler for smb2.1 lease break command
8032 * @work: smb work containing lease break command buffer
8033 *
8034 * Return: 0
8035 */
8036static void smb21_lease_break_ack(struct ksmbd_work *work)
8037{
8038 struct ksmbd_conn *conn = work->conn;
Namjae Jeoncb451722021-11-03 08:08:44 +09008039 struct smb2_lease_ack *req = smb2_get_msg(work->request_buf);
8040 struct smb2_lease_ack *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09008041 struct oplock_info *opinfo;
8042 __le32 err = 0;
8043 int ret = 0;
8044 unsigned int lease_change_type;
8045 __le32 lease_state;
8046 struct lease *lease;
8047
8048 ksmbd_debug(OPLOCK, "smb21 lease break, lease state(0x%x)\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09008049 le32_to_cpu(req->LeaseState));
Namjae Jeone2f34482021-03-16 10:49:09 +09008050 opinfo = lookup_lease_in_table(conn, req->LeaseKey);
8051 if (!opinfo) {
8052 ksmbd_debug(OPLOCK, "file not opened\n");
8053 smb2_set_err_rsp(work);
8054 rsp->hdr.Status = STATUS_UNSUCCESSFUL;
8055 return;
8056 }
8057 lease = opinfo->o_lease;
8058
8059 if (opinfo->op_state == OPLOCK_STATE_NONE) {
Namjae Jeonbde16942021-06-28 15:23:19 +09008060 pr_err("unexpected lease break state 0x%x\n",
8061 opinfo->op_state);
Namjae Jeone2f34482021-03-16 10:49:09 +09008062 rsp->hdr.Status = STATUS_UNSUCCESSFUL;
8063 goto err_out;
8064 }
8065
8066 if (check_lease_state(lease, req->LeaseState)) {
8067 rsp->hdr.Status = STATUS_REQUEST_NOT_ACCEPTED;
8068 ksmbd_debug(OPLOCK,
Namjae Jeon070fb212021-05-26 17:57:12 +09008069 "req lease state: 0x%x, expected state: 0x%x\n",
8070 req->LeaseState, lease->new_state);
Namjae Jeone2f34482021-03-16 10:49:09 +09008071 goto err_out;
8072 }
8073
8074 if (!atomic_read(&opinfo->breaking_cnt)) {
8075 rsp->hdr.Status = STATUS_UNSUCCESSFUL;
8076 goto err_out;
8077 }
8078
8079 /* check for bad lease state */
Namjae Jeon070fb212021-05-26 17:57:12 +09008080 if (req->LeaseState &
8081 (~(SMB2_LEASE_READ_CACHING_LE | SMB2_LEASE_HANDLE_CACHING_LE))) {
Namjae Jeone2f34482021-03-16 10:49:09 +09008082 err = STATUS_INVALID_OPLOCK_PROTOCOL;
8083 if (lease->state & SMB2_LEASE_WRITE_CACHING_LE)
8084 lease_change_type = OPLOCK_WRITE_TO_NONE;
8085 else
8086 lease_change_type = OPLOCK_READ_TO_NONE;
8087 ksmbd_debug(OPLOCK, "handle bad lease state 0x%x -> 0x%x\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09008088 le32_to_cpu(lease->state),
8089 le32_to_cpu(req->LeaseState));
Namjae Jeon64b39f42021-03-30 14:25:35 +09008090 } else if (lease->state == SMB2_LEASE_READ_CACHING_LE &&
8091 req->LeaseState != SMB2_LEASE_NONE_LE) {
Namjae Jeone2f34482021-03-16 10:49:09 +09008092 err = STATUS_INVALID_OPLOCK_PROTOCOL;
8093 lease_change_type = OPLOCK_READ_TO_NONE;
8094 ksmbd_debug(OPLOCK, "handle bad lease state 0x%x -> 0x%x\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09008095 le32_to_cpu(lease->state),
8096 le32_to_cpu(req->LeaseState));
Namjae Jeone2f34482021-03-16 10:49:09 +09008097 } else {
8098 /* valid lease state changes */
8099 err = STATUS_INVALID_DEVICE_STATE;
8100 if (req->LeaseState == SMB2_LEASE_NONE_LE) {
8101 if (lease->state & SMB2_LEASE_WRITE_CACHING_LE)
8102 lease_change_type = OPLOCK_WRITE_TO_NONE;
8103 else
8104 lease_change_type = OPLOCK_READ_TO_NONE;
8105 } else if (req->LeaseState & SMB2_LEASE_READ_CACHING_LE) {
8106 if (lease->state & SMB2_LEASE_WRITE_CACHING_LE)
8107 lease_change_type = OPLOCK_WRITE_TO_READ;
8108 else
8109 lease_change_type = OPLOCK_READ_HANDLE_TO_READ;
Namjae Jeon64b39f42021-03-30 14:25:35 +09008110 } else {
Namjae Jeone2f34482021-03-16 10:49:09 +09008111 lease_change_type = 0;
Namjae Jeon64b39f42021-03-30 14:25:35 +09008112 }
Namjae Jeone2f34482021-03-16 10:49:09 +09008113 }
8114
8115 switch (lease_change_type) {
8116 case OPLOCK_WRITE_TO_READ:
8117 ret = opinfo_write_to_read(opinfo);
8118 break;
8119 case OPLOCK_READ_HANDLE_TO_READ:
8120 ret = opinfo_read_handle_to_read(opinfo);
8121 break;
8122 case OPLOCK_WRITE_TO_NONE:
8123 ret = opinfo_write_to_none(opinfo);
8124 break;
8125 case OPLOCK_READ_TO_NONE:
8126 ret = opinfo_read_to_none(opinfo);
8127 break;
8128 default:
8129 ksmbd_debug(OPLOCK, "unknown lease change 0x%x -> 0x%x\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09008130 le32_to_cpu(lease->state),
8131 le32_to_cpu(req->LeaseState));
Namjae Jeone2f34482021-03-16 10:49:09 +09008132 }
8133
8134 lease_state = lease->state;
8135 opinfo->op_state = OPLOCK_STATE_NONE;
8136 wake_up_interruptible_all(&opinfo->oplock_q);
8137 atomic_dec(&opinfo->breaking_cnt);
8138 wake_up_interruptible_all(&opinfo->oplock_brk);
8139 opinfo_put(opinfo);
8140
8141 if (ret < 0) {
8142 rsp->hdr.Status = err;
8143 goto err_out;
8144 }
8145
8146 rsp->StructureSize = cpu_to_le16(36);
8147 rsp->Reserved = 0;
8148 rsp->Flags = 0;
8149 memcpy(rsp->LeaseKey, req->LeaseKey, 16);
8150 rsp->LeaseState = lease_state;
8151 rsp->LeaseDuration = 0;
Namjae Jeoncb451722021-11-03 08:08:44 +09008152 inc_rfc1001_len(work->response_buf, 36);
Namjae Jeone2f34482021-03-16 10:49:09 +09008153 return;
8154
8155err_out:
8156 opinfo->op_state = OPLOCK_STATE_NONE;
8157 wake_up_interruptible_all(&opinfo->oplock_q);
8158 atomic_dec(&opinfo->breaking_cnt);
8159 wake_up_interruptible_all(&opinfo->oplock_brk);
8160
8161 opinfo_put(opinfo);
8162 smb2_set_err_rsp(work);
8163}
8164
8165/**
8166 * smb2_oplock_break() - dispatcher for smb2.0 and 2.1 oplock/lease break
8167 * @work: smb work containing oplock/lease break command buffer
8168 *
8169 * Return: 0
8170 */
8171int smb2_oplock_break(struct ksmbd_work *work)
8172{
Namjae Jeoncb451722021-11-03 08:08:44 +09008173 struct smb2_oplock_break *req = smb2_get_msg(work->request_buf);
8174 struct smb2_oplock_break *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09008175
8176 switch (le16_to_cpu(req->StructureSize)) {
8177 case OP_BREAK_STRUCT_SIZE_20:
8178 smb20_oplock_break_ack(work);
8179 break;
8180 case OP_BREAK_STRUCT_SIZE_21:
8181 smb21_lease_break_ack(work);
8182 break;
8183 default:
8184 ksmbd_debug(OPLOCK, "invalid break cmd %d\n",
Namjae Jeon070fb212021-05-26 17:57:12 +09008185 le16_to_cpu(req->StructureSize));
Namjae Jeone2f34482021-03-16 10:49:09 +09008186 rsp->hdr.Status = STATUS_INVALID_PARAMETER;
8187 smb2_set_err_rsp(work);
8188 }
8189
8190 return 0;
8191}
8192
8193/**
8194 * smb2_notify() - handler for smb2 notify request
Hyunchul Lee95fa1ce2021-03-21 17:05:56 +09008195 * @work: smb work containing notify command buffer
Namjae Jeone2f34482021-03-16 10:49:09 +09008196 *
8197 * Return: 0
8198 */
8199int smb2_notify(struct ksmbd_work *work)
8200{
Ronnie Sahlberg699230f2021-09-09 12:26:12 +09008201 struct smb2_change_notify_req *req;
8202 struct smb2_change_notify_rsp *rsp;
Namjae Jeone2f34482021-03-16 10:49:09 +09008203
8204 WORK_BUFFERS(work, req, rsp);
8205
8206 if (work->next_smb2_rcv_hdr_off && req->hdr.NextCommand) {
8207 rsp->hdr.Status = STATUS_INTERNAL_ERROR;
8208 smb2_set_err_rsp(work);
8209 return 0;
8210 }
8211
8212 smb2_set_err_rsp(work);
8213 rsp->hdr.Status = STATUS_NOT_IMPLEMENTED;
8214 return 0;
8215}
8216
8217/**
8218 * smb2_is_sign_req() - handler for checking packet signing status
Hyunchul Lee95fa1ce2021-03-21 17:05:56 +09008219 * @work: smb work containing notify command buffer
8220 * @command: SMB2 command id
Namjae Jeone2f34482021-03-16 10:49:09 +09008221 *
8222 * Return: true if packed is signed, false otherwise
8223 */
8224bool smb2_is_sign_req(struct ksmbd_work *work, unsigned int command)
8225{
Namjae Jeoncb451722021-11-03 08:08:44 +09008226 struct smb2_hdr *rcv_hdr2 = smb2_get_msg(work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09008227
8228 if ((rcv_hdr2->Flags & SMB2_FLAGS_SIGNED) &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09008229 command != SMB2_NEGOTIATE_HE &&
8230 command != SMB2_SESSION_SETUP_HE &&
8231 command != SMB2_OPLOCK_BREAK_HE)
Namjae Jeone2f34482021-03-16 10:49:09 +09008232 return true;
8233
kernel test robot56160152021-05-12 09:24:37 +09008234 return false;
Namjae Jeone2f34482021-03-16 10:49:09 +09008235}
8236
8237/**
8238 * smb2_check_sign_req() - handler for req packet sign processing
8239 * @work: smb work containing notify command buffer
8240 *
8241 * Return: 1 on success, 0 otherwise
8242 */
8243int smb2_check_sign_req(struct ksmbd_work *work)
8244{
Namjae Jeoncb451722021-11-03 08:08:44 +09008245 struct smb2_hdr *hdr;
Namjae Jeone2f34482021-03-16 10:49:09 +09008246 char signature_req[SMB2_SIGNATURE_SIZE];
8247 char signature[SMB2_HMACSHA256_SIZE];
8248 struct kvec iov[1];
8249 size_t len;
8250
Namjae Jeoncb451722021-11-03 08:08:44 +09008251 hdr = smb2_get_msg(work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09008252 if (work->next_smb2_rcv_hdr_off)
Namjae Jeon8a893312021-06-25 13:43:37 +09008253 hdr = ksmbd_req_buf_next(work);
Namjae Jeone2f34482021-03-16 10:49:09 +09008254
8255 if (!hdr->NextCommand && !work->next_smb2_rcv_hdr_off)
Namjae Jeoncb451722021-11-03 08:08:44 +09008256 len = get_rfc1002_len(work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09008257 else if (hdr->NextCommand)
8258 len = le32_to_cpu(hdr->NextCommand);
8259 else
Namjae Jeoncb451722021-11-03 08:08:44 +09008260 len = get_rfc1002_len(work->request_buf) -
Namjae Jeone2f34482021-03-16 10:49:09 +09008261 work->next_smb2_rcv_hdr_off;
8262
8263 memcpy(signature_req, hdr->Signature, SMB2_SIGNATURE_SIZE);
8264 memset(hdr->Signature, 0, SMB2_SIGNATURE_SIZE);
8265
8266 iov[0].iov_base = (char *)&hdr->ProtocolId;
8267 iov[0].iov_len = len;
8268
8269 if (ksmbd_sign_smb2_pdu(work->conn, work->sess->sess_key, iov, 1,
Namjae Jeon64b39f42021-03-30 14:25:35 +09008270 signature))
Namjae Jeone2f34482021-03-16 10:49:09 +09008271 return 0;
8272
8273 if (memcmp(signature, signature_req, SMB2_SIGNATURE_SIZE)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09008274 pr_err("bad smb2 signature\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09008275 return 0;
8276 }
8277
8278 return 1;
8279}
8280
8281/**
8282 * smb2_set_sign_rsp() - handler for rsp packet sign processing
8283 * @work: smb work containing notify command buffer
8284 *
8285 */
8286void smb2_set_sign_rsp(struct ksmbd_work *work)
8287{
Namjae Jeoncb451722021-11-03 08:08:44 +09008288 struct smb2_hdr *hdr;
Namjae Jeone2f34482021-03-16 10:49:09 +09008289 struct smb2_hdr *req_hdr;
8290 char signature[SMB2_HMACSHA256_SIZE];
8291 struct kvec iov[2];
8292 size_t len;
8293 int n_vec = 1;
8294
Namjae Jeoncb451722021-11-03 08:08:44 +09008295 hdr = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09008296 if (work->next_smb2_rsp_hdr_off)
Namjae Jeon8a893312021-06-25 13:43:37 +09008297 hdr = ksmbd_resp_buf_next(work);
Namjae Jeone2f34482021-03-16 10:49:09 +09008298
Namjae Jeon8a893312021-06-25 13:43:37 +09008299 req_hdr = ksmbd_req_buf_next(work);
Namjae Jeone2f34482021-03-16 10:49:09 +09008300
8301 if (!work->next_smb2_rsp_hdr_off) {
Namjae Jeoncb451722021-11-03 08:08:44 +09008302 len = get_rfc1002_len(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09008303 if (req_hdr->NextCommand)
8304 len = ALIGN(len, 8);
8305 } else {
Namjae Jeoncb451722021-11-03 08:08:44 +09008306 len = get_rfc1002_len(work->response_buf) -
8307 work->next_smb2_rsp_hdr_off;
Namjae Jeone2f34482021-03-16 10:49:09 +09008308 len = ALIGN(len, 8);
8309 }
8310
8311 if (req_hdr->NextCommand)
8312 hdr->NextCommand = cpu_to_le32(len);
8313
8314 hdr->Flags |= SMB2_FLAGS_SIGNED;
8315 memset(hdr->Signature, 0, SMB2_SIGNATURE_SIZE);
8316
8317 iov[0].iov_base = (char *)&hdr->ProtocolId;
8318 iov[0].iov_len = len;
8319
Namjae Jeone5066492021-03-30 12:35:23 +09008320 if (work->aux_payload_sz) {
8321 iov[0].iov_len -= work->aux_payload_sz;
Namjae Jeone2f34482021-03-16 10:49:09 +09008322
Namjae Jeone5066492021-03-30 12:35:23 +09008323 iov[1].iov_base = work->aux_payload_buf;
8324 iov[1].iov_len = work->aux_payload_sz;
Namjae Jeone2f34482021-03-16 10:49:09 +09008325 n_vec++;
8326 }
8327
8328 if (!ksmbd_sign_smb2_pdu(work->conn, work->sess->sess_key, iov, n_vec,
Namjae Jeon64b39f42021-03-30 14:25:35 +09008329 signature))
Namjae Jeone2f34482021-03-16 10:49:09 +09008330 memcpy(hdr->Signature, signature, SMB2_SIGNATURE_SIZE);
8331}
8332
8333/**
8334 * smb3_check_sign_req() - handler for req packet sign processing
8335 * @work: smb work containing notify command buffer
8336 *
8337 * Return: 1 on success, 0 otherwise
8338 */
8339int smb3_check_sign_req(struct ksmbd_work *work)
8340{
Namjae Jeonf5a544e2021-06-18 10:04:19 +09008341 struct ksmbd_conn *conn = work->conn;
Namjae Jeone2f34482021-03-16 10:49:09 +09008342 char *signing_key;
Namjae Jeoncb451722021-11-03 08:08:44 +09008343 struct smb2_hdr *hdr;
Namjae Jeone2f34482021-03-16 10:49:09 +09008344 struct channel *chann;
8345 char signature_req[SMB2_SIGNATURE_SIZE];
8346 char signature[SMB2_CMACAES_SIZE];
8347 struct kvec iov[1];
8348 size_t len;
8349
Namjae Jeoncb451722021-11-03 08:08:44 +09008350 hdr = smb2_get_msg(work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09008351 if (work->next_smb2_rcv_hdr_off)
Namjae Jeon8a893312021-06-25 13:43:37 +09008352 hdr = ksmbd_req_buf_next(work);
Namjae Jeone2f34482021-03-16 10:49:09 +09008353
8354 if (!hdr->NextCommand && !work->next_smb2_rcv_hdr_off)
Namjae Jeoncb451722021-11-03 08:08:44 +09008355 len = get_rfc1002_len(work->request_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09008356 else if (hdr->NextCommand)
8357 len = le32_to_cpu(hdr->NextCommand);
8358 else
Namjae Jeoncb451722021-11-03 08:08:44 +09008359 len = get_rfc1002_len(work->request_buf) -
Namjae Jeone2f34482021-03-16 10:49:09 +09008360 work->next_smb2_rcv_hdr_off;
8361
8362 if (le16_to_cpu(hdr->Command) == SMB2_SESSION_SETUP_HE) {
8363 signing_key = work->sess->smb3signingkey;
Namjae Jeone2f34482021-03-16 10:49:09 +09008364 } else {
Namjae Jeonf5a544e2021-06-18 10:04:19 +09008365 chann = lookup_chann_list(work->sess, conn);
Namjae Jeone2f34482021-03-16 10:49:09 +09008366 if (!chann)
8367 return 0;
8368 signing_key = chann->smb3signingkey;
Namjae Jeone2f34482021-03-16 10:49:09 +09008369 }
8370
8371 if (!signing_key) {
Namjae Jeonbde16942021-06-28 15:23:19 +09008372 pr_err("SMB3 signing key is not generated\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09008373 return 0;
8374 }
8375
8376 memcpy(signature_req, hdr->Signature, SMB2_SIGNATURE_SIZE);
8377 memset(hdr->Signature, 0, SMB2_SIGNATURE_SIZE);
8378 iov[0].iov_base = (char *)&hdr->ProtocolId;
8379 iov[0].iov_len = len;
8380
8381 if (ksmbd_sign_smb3_pdu(conn, signing_key, iov, 1, signature))
8382 return 0;
8383
8384 if (memcmp(signature, signature_req, SMB2_SIGNATURE_SIZE)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09008385 pr_err("bad smb2 signature\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09008386 return 0;
8387 }
8388
8389 return 1;
8390}
8391
8392/**
8393 * smb3_set_sign_rsp() - handler for rsp packet sign processing
8394 * @work: smb work containing notify command buffer
8395 *
8396 */
8397void smb3_set_sign_rsp(struct ksmbd_work *work)
8398{
Namjae Jeonf5a544e2021-06-18 10:04:19 +09008399 struct ksmbd_conn *conn = work->conn;
Namjae Jeoncb451722021-11-03 08:08:44 +09008400 struct smb2_hdr *req_hdr, *hdr;
Namjae Jeone2f34482021-03-16 10:49:09 +09008401 struct channel *chann;
8402 char signature[SMB2_CMACAES_SIZE];
8403 struct kvec iov[2];
8404 int n_vec = 1;
8405 size_t len;
8406 char *signing_key;
8407
Namjae Jeoncb451722021-11-03 08:08:44 +09008408 hdr = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09008409 if (work->next_smb2_rsp_hdr_off)
Namjae Jeon8a893312021-06-25 13:43:37 +09008410 hdr = ksmbd_resp_buf_next(work);
Namjae Jeone2f34482021-03-16 10:49:09 +09008411
Namjae Jeon8a893312021-06-25 13:43:37 +09008412 req_hdr = ksmbd_req_buf_next(work);
Namjae Jeone2f34482021-03-16 10:49:09 +09008413
8414 if (!work->next_smb2_rsp_hdr_off) {
Namjae Jeoncb451722021-11-03 08:08:44 +09008415 len = get_rfc1002_len(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09008416 if (req_hdr->NextCommand)
8417 len = ALIGN(len, 8);
8418 } else {
Namjae Jeoncb451722021-11-03 08:08:44 +09008419 len = get_rfc1002_len(work->response_buf) -
8420 work->next_smb2_rsp_hdr_off;
Namjae Jeone2f34482021-03-16 10:49:09 +09008421 len = ALIGN(len, 8);
8422 }
8423
Namjae Jeon08bdbc62021-07-27 09:30:29 +09008424 if (conn->binding == false &&
8425 le16_to_cpu(hdr->Command) == SMB2_SESSION_SETUP_HE) {
Namjae Jeone2f34482021-03-16 10:49:09 +09008426 signing_key = work->sess->smb3signingkey;
Namjae Jeone2f34482021-03-16 10:49:09 +09008427 } else {
Namjae Jeonf5a544e2021-06-18 10:04:19 +09008428 chann = lookup_chann_list(work->sess, work->conn);
Namjae Jeone2f34482021-03-16 10:49:09 +09008429 if (!chann)
8430 return;
8431 signing_key = chann->smb3signingkey;
Namjae Jeone2f34482021-03-16 10:49:09 +09008432 }
8433
8434 if (!signing_key)
8435 return;
8436
8437 if (req_hdr->NextCommand)
8438 hdr->NextCommand = cpu_to_le32(len);
8439
8440 hdr->Flags |= SMB2_FLAGS_SIGNED;
8441 memset(hdr->Signature, 0, SMB2_SIGNATURE_SIZE);
8442 iov[0].iov_base = (char *)&hdr->ProtocolId;
8443 iov[0].iov_len = len;
Namjae Jeone5066492021-03-30 12:35:23 +09008444 if (work->aux_payload_sz) {
8445 iov[0].iov_len -= work->aux_payload_sz;
8446 iov[1].iov_base = work->aux_payload_buf;
8447 iov[1].iov_len = work->aux_payload_sz;
Namjae Jeone2f34482021-03-16 10:49:09 +09008448 n_vec++;
8449 }
8450
8451 if (!ksmbd_sign_smb3_pdu(conn, signing_key, iov, n_vec, signature))
8452 memcpy(hdr->Signature, signature, SMB2_SIGNATURE_SIZE);
8453}
8454
8455/**
8456 * smb3_preauth_hash_rsp() - handler for computing preauth hash on response
8457 * @work: smb work containing response buffer
8458 *
8459 */
8460void smb3_preauth_hash_rsp(struct ksmbd_work *work)
8461{
8462 struct ksmbd_conn *conn = work->conn;
8463 struct ksmbd_session *sess = work->sess;
8464 struct smb2_hdr *req, *rsp;
8465
8466 if (conn->dialect != SMB311_PROT_ID)
8467 return;
8468
8469 WORK_BUFFERS(work, req, rsp);
8470
Namjae Jeon442ff9e2021-09-29 15:44:32 +09008471 if (le16_to_cpu(req->Command) == SMB2_NEGOTIATE_HE &&
8472 conn->preauth_info)
Namjae Jeoncb451722021-11-03 08:08:44 +09008473 ksmbd_gen_preauth_integrity_hash(conn, work->response_buf,
Namjae Jeon070fb212021-05-26 17:57:12 +09008474 conn->preauth_info->Preauth_HashValue);
Namjae Jeone2f34482021-03-16 10:49:09 +09008475
Namjae Jeonf5a544e2021-06-18 10:04:19 +09008476 if (le16_to_cpu(rsp->Command) == SMB2_SESSION_SETUP_HE && sess) {
Namjae Jeone2f34482021-03-16 10:49:09 +09008477 __u8 *hash_value;
8478
Namjae Jeonf5a544e2021-06-18 10:04:19 +09008479 if (conn->binding) {
8480 struct preauth_session *preauth_sess;
8481
8482 preauth_sess = ksmbd_preauth_session_lookup(conn, sess->id);
8483 if (!preauth_sess)
8484 return;
8485 hash_value = preauth_sess->Preauth_HashValue;
8486 } else {
8487 hash_value = sess->Preauth_HashValue;
8488 if (!hash_value)
8489 return;
8490 }
Namjae Jeoncb451722021-11-03 08:08:44 +09008491 ksmbd_gen_preauth_integrity_hash(conn, work->response_buf,
Namjae Jeon070fb212021-05-26 17:57:12 +09008492 hash_value);
Namjae Jeone2f34482021-03-16 10:49:09 +09008493 }
8494}
8495
Namjae Jeon2dd91292021-11-03 08:25:54 +09008496static void fill_transform_hdr(void *tr_buf, char *old_buf, __le16 cipher_type)
Namjae Jeone2f34482021-03-16 10:49:09 +09008497{
Namjae Jeon2dd91292021-11-03 08:25:54 +09008498 struct smb2_transform_hdr *tr_hdr = tr_buf + 4;
8499 struct smb2_hdr *hdr = smb2_get_msg(old_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09008500 unsigned int orig_len = get_rfc1002_len(old_buf);
8501
Namjae Jeon2dd91292021-11-03 08:25:54 +09008502 memset(tr_buf, 0, sizeof(struct smb2_transform_hdr) + 4);
Namjae Jeone2f34482021-03-16 10:49:09 +09008503 tr_hdr->ProtocolId = SMB2_TRANSFORM_PROTO_NUM;
8504 tr_hdr->OriginalMessageSize = cpu_to_le32(orig_len);
Ronnie Sahlberg4355a8f2021-11-03 08:43:42 +09008505 tr_hdr->Flags = cpu_to_le16(TRANSFORM_FLAG_ENCRYPTED);
Namjae Jeon5a0ca772021-05-06 11:43:37 +09008506 if (cipher_type == SMB2_ENCRYPTION_AES128_GCM ||
8507 cipher_type == SMB2_ENCRYPTION_AES256_GCM)
8508 get_random_bytes(&tr_hdr->Nonce, SMB3_AES_GCM_NONCE);
Namjae Jeone2f34482021-03-16 10:49:09 +09008509 else
Namjae Jeon5a0ca772021-05-06 11:43:37 +09008510 get_random_bytes(&tr_hdr->Nonce, SMB3_AES_CCM_NONCE);
Namjae Jeone2f34482021-03-16 10:49:09 +09008511 memcpy(&tr_hdr->SessionId, &hdr->SessionId, 8);
Namjae Jeon2dd91292021-11-03 08:25:54 +09008512 inc_rfc1001_len(tr_buf, sizeof(struct smb2_transform_hdr));
8513 inc_rfc1001_len(tr_buf, orig_len);
Namjae Jeone2f34482021-03-16 10:49:09 +09008514}
8515
8516int smb3_encrypt_resp(struct ksmbd_work *work)
8517{
Namjae Jeone5066492021-03-30 12:35:23 +09008518 char *buf = work->response_buf;
Namjae Jeone2f34482021-03-16 10:49:09 +09008519 struct kvec iov[3];
8520 int rc = -ENOMEM;
Namjae Jeone5066492021-03-30 12:35:23 +09008521 int buf_size = 0, rq_nvec = 2 + (work->aux_payload_sz ? 1 : 0);
Namjae Jeone2f34482021-03-16 10:49:09 +09008522
8523 if (ARRAY_SIZE(iov) < rq_nvec)
8524 return -ENOMEM;
8525
Namjae Jeon2dd91292021-11-03 08:25:54 +09008526 work->tr_buf = kzalloc(sizeof(struct smb2_transform_hdr) + 4, GFP_KERNEL);
8527 if (!work->tr_buf)
Namjae Jeone2f34482021-03-16 10:49:09 +09008528 return rc;
8529
8530 /* fill transform header */
Namjae Jeon2dd91292021-11-03 08:25:54 +09008531 fill_transform_hdr(work->tr_buf, buf, work->conn->cipher_type);
Namjae Jeone2f34482021-03-16 10:49:09 +09008532
Namjae Jeon2dd91292021-11-03 08:25:54 +09008533 iov[0].iov_base = work->tr_buf;
8534 iov[0].iov_len = sizeof(struct smb2_transform_hdr) + 4;
Namjae Jeone2f34482021-03-16 10:49:09 +09008535 buf_size += iov[0].iov_len - 4;
8536
8537 iov[1].iov_base = buf + 4;
8538 iov[1].iov_len = get_rfc1002_len(buf);
Namjae Jeone5066492021-03-30 12:35:23 +09008539 if (work->aux_payload_sz) {
8540 iov[1].iov_len = work->resp_hdr_sz - 4;
Namjae Jeone2f34482021-03-16 10:49:09 +09008541
Namjae Jeone5066492021-03-30 12:35:23 +09008542 iov[2].iov_base = work->aux_payload_buf;
8543 iov[2].iov_len = work->aux_payload_sz;
Namjae Jeone2f34482021-03-16 10:49:09 +09008544 buf_size += iov[2].iov_len;
8545 }
8546 buf_size += iov[1].iov_len;
8547 work->resp_hdr_sz = iov[1].iov_len;
8548
8549 rc = ksmbd_crypt_message(work->conn, iov, rq_nvec, 1);
8550 if (rc)
8551 return rc;
8552
8553 memmove(buf, iov[1].iov_base, iov[1].iov_len);
Namjae Jeon2dd91292021-11-03 08:25:54 +09008554 *(__be32 *)work->tr_buf = cpu_to_be32(buf_size);
Namjae Jeone2f34482021-03-16 10:49:09 +09008555
8556 return rc;
8557}
8558
Namjae Jeonf4228b62021-08-12 10:16:40 +09008559bool smb3_is_transform_hdr(void *buf)
Namjae Jeone2f34482021-03-16 10:49:09 +09008560{
Namjae Jeon2dd91292021-11-03 08:25:54 +09008561 struct smb2_transform_hdr *trhdr = smb2_get_msg(buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09008562
8563 return trhdr->ProtocolId == SMB2_TRANSFORM_PROTO_NUM;
8564}
8565
8566int smb3_decrypt_req(struct ksmbd_work *work)
8567{
8568 struct ksmbd_conn *conn = work->conn;
8569 struct ksmbd_session *sess;
Namjae Jeone5066492021-03-30 12:35:23 +09008570 char *buf = work->request_buf;
Namjae Jeone2f34482021-03-16 10:49:09 +09008571 unsigned int pdu_length = get_rfc1002_len(buf);
8572 struct kvec iov[2];
Namjae Jeon2dd91292021-11-03 08:25:54 +09008573 int buf_data_size = pdu_length - sizeof(struct smb2_transform_hdr);
8574 struct smb2_transform_hdr *tr_hdr = smb2_get_msg(buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09008575 int rc = 0;
8576
Namjae Jeonc7705ee2021-10-04 20:44:52 +09008577 if (buf_data_size < sizeof(struct smb2_hdr)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09008578 pr_err("Transform message is too small (%u)\n",
8579 pdu_length);
Namjae Jeone2f34482021-03-16 10:49:09 +09008580 return -ECONNABORTED;
8581 }
8582
Namjae Jeonc7705ee2021-10-04 20:44:52 +09008583 if (buf_data_size < le32_to_cpu(tr_hdr->OriginalMessageSize)) {
Namjae Jeonbde16942021-06-28 15:23:19 +09008584 pr_err("Transform message is broken\n");
Namjae Jeone2f34482021-03-16 10:49:09 +09008585 return -ECONNABORTED;
8586 }
8587
Namjae Jeon4227f812021-09-29 19:52:51 +09008588 sess = ksmbd_session_lookup_all(conn, le64_to_cpu(tr_hdr->SessionId));
8589 if (!sess) {
8590 pr_err("invalid session id(%llx) in transform header\n",
8591 le64_to_cpu(tr_hdr->SessionId));
8592 return -ECONNABORTED;
8593 }
8594
Namjae Jeone2f34482021-03-16 10:49:09 +09008595 iov[0].iov_base = buf;
Namjae Jeon2dd91292021-11-03 08:25:54 +09008596 iov[0].iov_len = sizeof(struct smb2_transform_hdr) + 4;
8597 iov[1].iov_base = buf + sizeof(struct smb2_transform_hdr) + 4;
Namjae Jeone2f34482021-03-16 10:49:09 +09008598 iov[1].iov_len = buf_data_size;
8599 rc = ksmbd_crypt_message(conn, iov, 2, 0);
8600 if (rc)
8601 return rc;
8602
8603 memmove(buf + 4, iov[1].iov_base, buf_data_size);
Namjae Jeoncb451722021-11-03 08:08:44 +09008604 *(__be32 *)buf = cpu_to_be32(buf_data_size);
Namjae Jeone2f34482021-03-16 10:49:09 +09008605
8606 return rc;
8607}
8608
8609bool smb3_11_final_sess_setup_resp(struct ksmbd_work *work)
8610{
8611 struct ksmbd_conn *conn = work->conn;
Namjae Jeoncb451722021-11-03 08:08:44 +09008612 struct smb2_hdr *rsp = smb2_get_msg(work->response_buf);
Namjae Jeone2f34482021-03-16 10:49:09 +09008613
8614 if (conn->dialect < SMB30_PROT_ID)
8615 return false;
8616
8617 if (work->next_smb2_rcv_hdr_off)
Namjae Jeon8a893312021-06-25 13:43:37 +09008618 rsp = ksmbd_resp_buf_next(work);
Namjae Jeone2f34482021-03-16 10:49:09 +09008619
8620 if (le16_to_cpu(rsp->Command) == SMB2_SESSION_SETUP_HE &&
Namjae Jeon64b39f42021-03-30 14:25:35 +09008621 rsp->Status == STATUS_SUCCESS)
Namjae Jeone2f34482021-03-16 10:49:09 +09008622 return true;
8623 return false;
8624}