blob: fe5bfa245fa7efc32013d9a9cc67d8a1cca96b1a [file] [log] [blame]
Steve French929be902021-06-18 00:31:49 -05001// SPDX-License-Identifier: LGPL-2.1
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002/*
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04003 *
4 * Copyright (C) International Business Machines Corp., 2002, 2011
5 * Etersoft, 2012
6 * Author(s): Pavel Shilovsky (pshilovsky@samba.org),
7 * Steve French (sfrench@us.ibm.com)
8 *
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04009 */
10#include <linux/fs.h>
11#include <linux/stat.h>
12#include <linux/slab.h>
13#include <linux/pagemap.h>
14#include <asm/div64.h>
15#include "cifsfs.h"
16#include "cifspdu.h"
17#include "cifsglob.h"
18#include "cifsproto.h"
19#include "cifs_debug.h"
20#include "cifs_fs_sb.h"
21#include "cifs_unicode.h"
22#include "fscache.h"
23#include "smb2glob.h"
24#include "smb2pdu.h"
25#include "smb2proto.h"
26
Steve French81915762019-03-13 00:02:47 -050027static void
28free_set_inf_compound(struct smb_rqst *rqst)
29{
30 if (rqst[1].rq_iov)
31 SMB2_set_info_free(&rqst[1]);
32 if (rqst[2].rq_iov)
33 SMB2_close_free(&rqst[2]);
34}
35
36
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +100037struct cop_vars {
38 struct cifs_open_parms oparms;
39 struct kvec rsp_iov[3];
40 struct smb_rqst rqst[3];
41 struct kvec open_iov[SMB2_CREATE_IOV_SIZE];
42 struct kvec qi_iov[1];
43 struct kvec si_iov[SMB2_SET_INFO_IOV_SIZE];
44 struct kvec close_iov[1];
45 struct smb2_file_rename_info rename_info;
46 struct smb2_file_link_info link_info;
47};
48
Shyam Prasad Nb6f2a0f2021-07-30 06:43:09 +000049/*
50 * note: If cfile is passed, the reference to it is dropped here.
51 * So make sure that you do not reuse cfile after return from this func.
52 */
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +040053static int
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +100054smb2_compound_op(const unsigned int xid, struct cifs_tcon *tcon,
55 struct cifs_sb_info *cifs_sb, const char *full_path,
56 __u32 desired_access, __u32 create_disposition,
Steve Frenchc3ca78e2019-09-25 00:32:13 -050057 __u32 create_options, umode_t mode, void *ptr, int command,
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +100058 struct cifsFileInfo *cfile)
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +100059{
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +100060 struct cop_vars *vars = NULL;
61 struct kvec *rsp_iov;
62 struct smb_rqst *rqst;
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +100063 int rc;
64 __le16 *utf16_path = NULL;
65 __u8 oplock = SMB2_OPLOCK_LEVEL_NONE;
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +100066 struct cifs_fid fid;
67 struct cifs_ses *ses = tcon->ses;
Aurelien Aptel352d96f2020-05-31 12:38:22 -050068 struct TCP_Server_Info *server;
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +100069 int num_rqst = 0;
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +100070 int resp_buftype[3];
Ronnie Sahlbergc2e0fe32018-09-03 13:33:45 +100071 struct smb2_query_info_rsp *qi_rsp = NULL;
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +100072 int flags = 0;
Ronnie Sahlbergc2e0fe32018-09-03 13:33:45 +100073 __u8 delete_pending[8] = {1, 0, 0, 0, 0, 0, 0, 0};
Ronnie Sahlbergbb435512018-09-03 13:33:49 +100074 unsigned int size[2];
75 void *data[2];
Ronnie Sahlbergbb435512018-09-03 13:33:49 +100076 int len;
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +100077
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +100078 vars = kzalloc(sizeof(*vars), GFP_ATOMIC);
79 if (vars == NULL)
80 return -ENOMEM;
81 rqst = &vars->rqst[0];
82 rsp_iov = &vars->rsp_iov[0];
83
Aurelien Aptel352d96f2020-05-31 12:38:22 -050084 server = cifs_pick_channel(ses);
85
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +100086 if (smb3_encryption_required(tcon))
87 flags |= CIFS_TRANSFORM_REQ;
88
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +100089 resp_buftype[0] = resp_buftype[1] = resp_buftype[2] = CIFS_NO_BUFFER;
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +100090
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +100091 /* We already have a handle so we can skip the open */
92 if (cfile)
93 goto after_open;
94
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +100095 /* Open */
96 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb);
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +100097 if (!utf16_path) {
98 rc = -ENOMEM;
99 goto finished;
100 }
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000101
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +1000102 vars->oparms.tcon = tcon;
103 vars->oparms.desired_access = desired_access;
104 vars->oparms.disposition = create_disposition;
105 vars->oparms.create_options = cifs_create_options(cifs_sb, create_options);
106 vars->oparms.fid = &fid;
107 vars->oparms.reconnect = false;
108 vars->oparms.mode = mode;
Steve Frenchc8c412f2020-08-13 12:38:08 -0500109 vars->oparms.cifs_sb = cifs_sb;
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000110
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +1000111 rqst[num_rqst].rq_iov = &vars->open_iov[0];
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000112 rqst[num_rqst].rq_nvec = SMB2_CREATE_IOV_SIZE;
Aurelien Aptel352d96f2020-05-31 12:38:22 -0500113 rc = SMB2_open_init(tcon, server,
114 &rqst[num_rqst], &oplock, &vars->oparms,
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000115 utf16_path);
116 kfree(utf16_path);
117 if (rc)
118 goto finished;
119
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000120 smb2_set_next_command(tcon, &rqst[num_rqst]);
121 after_open:
122 num_rqst++;
123 rc = 0;
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000124
125 /* Operation */
126 switch (command) {
127 case SMB2_OP_QUERY_INFO:
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +1000128 rqst[num_rqst].rq_iov = &vars->qi_iov[0];
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000129 rqst[num_rqst].rq_nvec = 1;
130
Ronnie Sahlberg496902d2019-09-09 15:30:00 +1000131 if (cfile)
Aurelien Aptel352d96f2020-05-31 12:38:22 -0500132 rc = SMB2_query_info_init(tcon, server,
133 &rqst[num_rqst],
Ronnie Sahlberg496902d2019-09-09 15:30:00 +1000134 cfile->fid.persistent_fid,
135 cfile->fid.volatile_fid,
136 FILE_ALL_INFORMATION,
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000137 SMB2_O_INFO_FILE, 0,
138 sizeof(struct smb2_file_all_info) +
Ronnie Sahlbergf5b05d62018-10-07 19:19:58 -0500139 PATH_MAX * 2, 0, NULL);
Ronnie Sahlberg496902d2019-09-09 15:30:00 +1000140 else {
Aurelien Aptel352d96f2020-05-31 12:38:22 -0500141 rc = SMB2_query_info_init(tcon, server,
142 &rqst[num_rqst],
Ronnie Sahlberg496902d2019-09-09 15:30:00 +1000143 COMPOUND_FID,
144 COMPOUND_FID,
Aurelien Aptel352d96f2020-05-31 12:38:22 -0500145 FILE_ALL_INFORMATION,
Ronnie Sahlberg496902d2019-09-09 15:30:00 +1000146 SMB2_O_INFO_FILE, 0,
147 sizeof(struct smb2_file_all_info) +
148 PATH_MAX * 2, 0, NULL);
149 if (!rc) {
150 smb2_set_next_command(tcon, &rqst[num_rqst]);
151 smb2_set_related(&rqst[num_rqst]);
152 }
153 }
154
Ronnie Sahlberg88a92c92019-07-16 10:41:46 +1000155 if (rc)
156 goto finished;
Ronnie Sahlberg496902d2019-09-09 15:30:00 +1000157 num_rqst++;
Steve French81915762019-03-13 00:02:47 -0500158 trace_smb3_query_info_compound_enter(xid, ses->Suid, tcon->tid,
159 full_path);
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000160 break;
Steve French6a5f6592020-06-11 19:25:47 -0500161 case SMB2_OP_POSIX_QUERY_INFO:
162 rqst[num_rqst].rq_iov = &vars->qi_iov[0];
163 rqst[num_rqst].rq_nvec = 1;
164
165 if (cfile)
166 rc = SMB2_query_info_init(tcon, server,
167 &rqst[num_rqst],
168 cfile->fid.persistent_fid,
169 cfile->fid.volatile_fid,
170 SMB_FIND_FILE_POSIX_INFO,
171 SMB2_O_INFO_FILE, 0,
172 /* TBD: fix following to allow for longer SIDs */
173 sizeof(struct smb311_posix_qinfo *) + (PATH_MAX * 2) +
174 (sizeof(struct cifs_sid) * 2), 0, NULL);
175 else {
176 rc = SMB2_query_info_init(tcon, server,
177 &rqst[num_rqst],
178 COMPOUND_FID,
179 COMPOUND_FID,
180 SMB_FIND_FILE_POSIX_INFO,
181 SMB2_O_INFO_FILE, 0,
182 sizeof(struct smb311_posix_qinfo *) + (PATH_MAX * 2) +
183 (sizeof(struct cifs_sid) * 2), 0, NULL);
184 if (!rc) {
185 smb2_set_next_command(tcon, &rqst[num_rqst]);
186 smb2_set_related(&rqst[num_rqst]);
187 }
188 }
189
190 if (rc)
191 goto finished;
192 num_rqst++;
Steve Frenche4bd7c42020-06-11 23:02:33 -0500193 trace_smb3_posix_query_info_compound_enter(xid, ses->Suid, tcon->tid, full_path);
Steve French6a5f6592020-06-11 19:25:47 -0500194 break;
Ronnie Sahlberg47dd9592018-09-03 13:33:43 +1000195 case SMB2_OP_DELETE:
Steve French81915762019-03-13 00:02:47 -0500196 trace_smb3_delete_enter(xid, ses->Suid, tcon->tid, full_path);
Ronnie Sahlberg47dd9592018-09-03 13:33:43 +1000197 break;
Ronnie Sahlbergf733e392018-09-03 13:33:42 +1000198 case SMB2_OP_MKDIR:
199 /*
200 * Directories are created through parameters in the
201 * SMB2_open() call.
202 */
Steve French81915762019-03-13 00:02:47 -0500203 trace_smb3_mkdir_enter(xid, ses->Suid, tcon->tid, full_path);
Ronnie Sahlbergf733e392018-09-03 13:33:42 +1000204 break;
Ronnie Sahlbergc2e0fe32018-09-03 13:33:45 +1000205 case SMB2_OP_RMDIR:
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +1000206 rqst[num_rqst].rq_iov = &vars->si_iov[0];
Ronnie Sahlbergc2e0fe32018-09-03 13:33:45 +1000207 rqst[num_rqst].rq_nvec = 1;
208
Ronnie Sahlberg271b9c02018-12-18 17:49:05 -0600209 size[0] = 1; /* sizeof __u8 See MS-FSCC section 2.4.11 */
Ronnie Sahlbergc2e0fe32018-09-03 13:33:45 +1000210 data[0] = &delete_pending[0];
211
Aurelien Aptel352d96f2020-05-31 12:38:22 -0500212 rc = SMB2_set_info_init(tcon, server,
213 &rqst[num_rqst], COMPOUND_FID,
Ronnie Sahlbergc2e0fe32018-09-03 13:33:45 +1000214 COMPOUND_FID, current->tgid,
215 FILE_DISPOSITION_INFORMATION,
216 SMB2_O_INFO_FILE, 0, data, size);
Ronnie Sahlberg88a92c92019-07-16 10:41:46 +1000217 if (rc)
218 goto finished;
Ronnie Sahlberge77fe732018-12-31 13:43:40 +1000219 smb2_set_next_command(tcon, &rqst[num_rqst]);
Ronnie Sahlbergc2e0fe32018-09-03 13:33:45 +1000220 smb2_set_related(&rqst[num_rqst++]);
Steve French81915762019-03-13 00:02:47 -0500221 trace_smb3_rmdir_enter(xid, ses->Suid, tcon->tid, full_path);
Ronnie Sahlbergc2e0fe32018-09-03 13:33:45 +1000222 break;
Ronnie Sahlbergf7bfe042018-09-03 13:33:46 +1000223 case SMB2_OP_SET_EOF:
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +1000224 rqst[num_rqst].rq_iov = &vars->si_iov[0];
Ronnie Sahlbergf7bfe042018-09-03 13:33:46 +1000225 rqst[num_rqst].rq_nvec = 1;
226
227 size[0] = 8; /* sizeof __le64 */
228 data[0] = ptr;
229
Aurelien Aptel352d96f2020-05-31 12:38:22 -0500230 rc = SMB2_set_info_init(tcon, server,
231 &rqst[num_rqst], COMPOUND_FID,
Ronnie Sahlbergf7bfe042018-09-03 13:33:46 +1000232 COMPOUND_FID, current->tgid,
233 FILE_END_OF_FILE_INFORMATION,
234 SMB2_O_INFO_FILE, 0, data, size);
Ronnie Sahlberg88a92c92019-07-16 10:41:46 +1000235 if (rc)
236 goto finished;
Ronnie Sahlberge77fe732018-12-31 13:43:40 +1000237 smb2_set_next_command(tcon, &rqst[num_rqst]);
Ronnie Sahlbergf7bfe042018-09-03 13:33:46 +1000238 smb2_set_related(&rqst[num_rqst++]);
Steve French81915762019-03-13 00:02:47 -0500239 trace_smb3_set_eof_enter(xid, ses->Suid, tcon->tid, full_path);
Ronnie Sahlbergf7bfe042018-09-03 13:33:46 +1000240 break;
Ronnie Sahlbergdcbf9102018-09-03 13:33:48 +1000241 case SMB2_OP_SET_INFO:
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +1000242 rqst[num_rqst].rq_iov = &vars->si_iov[0];
Ronnie Sahlbergdcbf9102018-09-03 13:33:48 +1000243 rqst[num_rqst].rq_nvec = 1;
244
Ronnie Sahlbergbb435512018-09-03 13:33:49 +1000245
Ronnie Sahlbergdcbf9102018-09-03 13:33:48 +1000246 size[0] = sizeof(FILE_BASIC_INFO);
247 data[0] = ptr;
248
Ronnie Sahlbergdc9300a2019-08-30 09:53:56 +1000249 if (cfile)
Aurelien Aptel352d96f2020-05-31 12:38:22 -0500250 rc = SMB2_set_info_init(tcon, server,
251 &rqst[num_rqst],
Ronnie Sahlbergdc9300a2019-08-30 09:53:56 +1000252 cfile->fid.persistent_fid,
253 cfile->fid.volatile_fid, current->tgid,
254 FILE_BASIC_INFORMATION,
255 SMB2_O_INFO_FILE, 0, data, size);
256 else {
Aurelien Aptel352d96f2020-05-31 12:38:22 -0500257 rc = SMB2_set_info_init(tcon, server,
258 &rqst[num_rqst],
Ronnie Sahlbergdc9300a2019-08-30 09:53:56 +1000259 COMPOUND_FID,
260 COMPOUND_FID, current->tgid,
261 FILE_BASIC_INFORMATION,
262 SMB2_O_INFO_FILE, 0, data, size);
263 if (!rc) {
264 smb2_set_next_command(tcon, &rqst[num_rqst]);
265 smb2_set_related(&rqst[num_rqst]);
266 }
267 }
268
Ronnie Sahlberg88a92c92019-07-16 10:41:46 +1000269 if (rc)
270 goto finished;
Ronnie Sahlbergdc9300a2019-08-30 09:53:56 +1000271 num_rqst++;
Steve French81915762019-03-13 00:02:47 -0500272 trace_smb3_set_info_compound_enter(xid, ses->Suid, tcon->tid,
273 full_path);
Ronnie Sahlbergdcbf9102018-09-03 13:33:48 +1000274 break;
Ronnie Sahlbergbb435512018-09-03 13:33:49 +1000275 case SMB2_OP_RENAME:
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +1000276 rqst[num_rqst].rq_iov = &vars->si_iov[0];
Ronnie Sahlbergbb435512018-09-03 13:33:49 +1000277 rqst[num_rqst].rq_nvec = 2;
278
279 len = (2 * UniStrnlen((wchar_t *)ptr, PATH_MAX));
280
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +1000281 vars->rename_info.ReplaceIfExists = 1;
282 vars->rename_info.RootDirectory = 0;
283 vars->rename_info.FileNameLength = cpu_to_le32(len);
Ronnie Sahlbergbb435512018-09-03 13:33:49 +1000284
285 size[0] = sizeof(struct smb2_file_rename_info);
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +1000286 data[0] = &vars->rename_info;
Ronnie Sahlbergbb435512018-09-03 13:33:49 +1000287
288 size[1] = len + 2 /* null */;
289 data[1] = (__le16 *)ptr;
290
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000291 if (cfile)
Aurelien Aptel352d96f2020-05-31 12:38:22 -0500292 rc = SMB2_set_info_init(tcon, server,
293 &rqst[num_rqst],
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000294 cfile->fid.persistent_fid,
295 cfile->fid.volatile_fid,
296 current->tgid, FILE_RENAME_INFORMATION,
Ronnie Sahlbergbb435512018-09-03 13:33:49 +1000297 SMB2_O_INFO_FILE, 0, data, size);
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000298 else {
Aurelien Aptel352d96f2020-05-31 12:38:22 -0500299 rc = SMB2_set_info_init(tcon, server,
300 &rqst[num_rqst],
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000301 COMPOUND_FID, COMPOUND_FID,
302 current->tgid, FILE_RENAME_INFORMATION,
303 SMB2_O_INFO_FILE, 0, data, size);
Ronnie Sahlbergdc9300a2019-08-30 09:53:56 +1000304 if (!rc) {
305 smb2_set_next_command(tcon, &rqst[num_rqst]);
306 smb2_set_related(&rqst[num_rqst]);
307 }
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000308 }
Ronnie Sahlberg88a92c92019-07-16 10:41:46 +1000309 if (rc)
310 goto finished;
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000311 num_rqst++;
Steve French81915762019-03-13 00:02:47 -0500312 trace_smb3_rename_enter(xid, ses->Suid, tcon->tid, full_path);
Ronnie Sahlbergbb435512018-09-03 13:33:49 +1000313 break;
314 case SMB2_OP_HARDLINK:
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +1000315 rqst[num_rqst].rq_iov = &vars->si_iov[0];
Ronnie Sahlbergbb435512018-09-03 13:33:49 +1000316 rqst[num_rqst].rq_nvec = 2;
317
318 len = (2 * UniStrnlen((wchar_t *)ptr, PATH_MAX));
319
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +1000320 vars->link_info.ReplaceIfExists = 0;
321 vars->link_info.RootDirectory = 0;
322 vars->link_info.FileNameLength = cpu_to_le32(len);
Ronnie Sahlbergbb435512018-09-03 13:33:49 +1000323
324 size[0] = sizeof(struct smb2_file_link_info);
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +1000325 data[0] = &vars->link_info;
Ronnie Sahlbergbb435512018-09-03 13:33:49 +1000326
327 size[1] = len + 2 /* null */;
328 data[1] = (__le16 *)ptr;
329
Aurelien Aptel352d96f2020-05-31 12:38:22 -0500330 rc = SMB2_set_info_init(tcon, server,
331 &rqst[num_rqst], COMPOUND_FID,
Ronnie Sahlbergbb435512018-09-03 13:33:49 +1000332 COMPOUND_FID, current->tgid,
333 FILE_LINK_INFORMATION,
334 SMB2_O_INFO_FILE, 0, data, size);
Ronnie Sahlberg88a92c92019-07-16 10:41:46 +1000335 if (rc)
336 goto finished;
Ronnie Sahlberge77fe732018-12-31 13:43:40 +1000337 smb2_set_next_command(tcon, &rqst[num_rqst]);
Ronnie Sahlbergbb435512018-09-03 13:33:49 +1000338 smb2_set_related(&rqst[num_rqst++]);
Steve French81915762019-03-13 00:02:47 -0500339 trace_smb3_hardlink_enter(xid, ses->Suid, tcon->tid, full_path);
Ronnie Sahlbergbb435512018-09-03 13:33:49 +1000340 break;
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000341 default:
342 cifs_dbg(VFS, "Invalid command\n");
343 rc = -EINVAL;
344 }
345 if (rc)
346 goto finished;
347
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000348 /* We already have a handle so we can skip the close */
349 if (cfile)
350 goto after_close;
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000351 /* Close */
Paulo Alcantara04ad69c2021-03-08 12:00:50 -0300352 flags |= CIFS_CP_CREATE_CLOSE_OP;
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +1000353 rqst[num_rqst].rq_iov = &vars->close_iov[0];
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000354 rqst[num_rqst].rq_nvec = 1;
Aurelien Aptel352d96f2020-05-31 12:38:22 -0500355 rc = SMB2_close_init(tcon, server,
356 &rqst[num_rqst], COMPOUND_FID,
Steve French43f8a6a2019-12-02 21:46:54 -0600357 COMPOUND_FID, false);
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000358 smb2_set_related(&rqst[num_rqst]);
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000359 if (rc)
360 goto finished;
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000361 after_close:
362 num_rqst++;
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000363
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000364 if (cfile) {
365 cifsFileInfo_put(cfile);
366 cfile = NULL;
Aurelien Aptel352d96f2020-05-31 12:38:22 -0500367 rc = compound_send_recv(xid, ses, server,
368 flags, num_rqst - 2,
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000369 &rqst[1], &resp_buftype[1],
370 &rsp_iov[1]);
371 } else
Aurelien Aptel352d96f2020-05-31 12:38:22 -0500372 rc = compound_send_recv(xid, ses, server,
373 flags, num_rqst,
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000374 rqst, resp_buftype,
375 rsp_iov);
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000376
377 finished:
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000378 if (cfile)
379 cifsFileInfo_put(cfile);
380
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000381 SMB2_open_free(&rqst[0]);
Steve French7dcc82c2019-09-11 00:07:36 -0500382 if (rc == -EREMCHG) {
Joe Perchesa0a30362020-04-14 22:42:53 -0700383 pr_warn_once("server share %s deleted\n", tcon->treeName);
Steve French7dcc82c2019-09-11 00:07:36 -0500384 tcon->need_reconnect = true;
385 }
386
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000387 switch (command) {
388 case SMB2_OP_QUERY_INFO:
389 if (rc == 0) {
Ronnie Sahlbergc2e0fe32018-09-03 13:33:45 +1000390 qi_rsp = (struct smb2_query_info_rsp *)
391 rsp_iov[1].iov_base;
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000392 rc = smb2_validate_and_copy_iov(
Ronnie Sahlbergc2e0fe32018-09-03 13:33:45 +1000393 le16_to_cpu(qi_rsp->OutputBufferOffset),
394 le32_to_cpu(qi_rsp->OutputBufferLength),
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000395 &rsp_iov[1], sizeof(struct smb2_file_all_info),
Ronnie Sahlbergc2e0fe32018-09-03 13:33:45 +1000396 ptr);
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000397 }
398 if (rqst[1].rq_iov)
399 SMB2_query_info_free(&rqst[1]);
400 if (rqst[2].rq_iov)
401 SMB2_close_free(&rqst[2]);
Steve French81915762019-03-13 00:02:47 -0500402 if (rc)
403 trace_smb3_query_info_compound_err(xid, ses->Suid,
404 tcon->tid, rc);
405 else
406 trace_smb3_query_info_compound_done(xid, ses->Suid,
407 tcon->tid);
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000408 break;
Steve French6a5f6592020-06-11 19:25:47 -0500409 case SMB2_OP_POSIX_QUERY_INFO:
410 if (rc == 0) {
411 qi_rsp = (struct smb2_query_info_rsp *)
412 rsp_iov[1].iov_base;
413 rc = smb2_validate_and_copy_iov(
414 le16_to_cpu(qi_rsp->OutputBufferOffset),
415 le32_to_cpu(qi_rsp->OutputBufferLength),
416 &rsp_iov[1], sizeof(struct smb311_posix_qinfo) /* add SIDs */, ptr);
417 }
418 if (rqst[1].rq_iov)
419 SMB2_query_info_free(&rqst[1]);
420 if (rqst[2].rq_iov)
421 SMB2_close_free(&rqst[2]);
422 if (rc)
Steve Frenche4bd7c42020-06-11 23:02:33 -0500423 trace_smb3_posix_query_info_compound_err(xid, ses->Suid, tcon->tid, rc);
Steve French6a5f6592020-06-11 19:25:47 -0500424 else
Steve Frenche4bd7c42020-06-11 23:02:33 -0500425 trace_smb3_posix_query_info_compound_done(xid, ses->Suid, tcon->tid);
Steve French6a5f6592020-06-11 19:25:47 -0500426 break;
Ronnie Sahlberg47dd9592018-09-03 13:33:43 +1000427 case SMB2_OP_DELETE:
Steve French81915762019-03-13 00:02:47 -0500428 if (rc)
429 trace_smb3_delete_err(xid, ses->Suid, tcon->tid, rc);
430 else
431 trace_smb3_delete_done(xid, ses->Suid, tcon->tid);
432 if (rqst[1].rq_iov)
433 SMB2_close_free(&rqst[1]);
434 break;
Ronnie Sahlbergf733e392018-09-03 13:33:42 +1000435 case SMB2_OP_MKDIR:
Steve French81915762019-03-13 00:02:47 -0500436 if (rc)
437 trace_smb3_mkdir_err(xid, ses->Suid, tcon->tid, rc);
438 else
439 trace_smb3_mkdir_done(xid, ses->Suid, tcon->tid);
Ronnie Sahlbergf733e392018-09-03 13:33:42 +1000440 if (rqst[1].rq_iov)
441 SMB2_close_free(&rqst[1]);
442 break;
Ronnie Sahlbergbb435512018-09-03 13:33:49 +1000443 case SMB2_OP_HARDLINK:
Steve French81915762019-03-13 00:02:47 -0500444 if (rc)
445 trace_smb3_hardlink_err(xid, ses->Suid, tcon->tid, rc);
446 else
447 trace_smb3_hardlink_done(xid, ses->Suid, tcon->tid);
448 free_set_inf_compound(rqst);
449 break;
Ronnie Sahlbergbb435512018-09-03 13:33:49 +1000450 case SMB2_OP_RENAME:
Steve French81915762019-03-13 00:02:47 -0500451 if (rc)
452 trace_smb3_rename_err(xid, ses->Suid, tcon->tid, rc);
453 else
454 trace_smb3_rename_done(xid, ses->Suid, tcon->tid);
455 free_set_inf_compound(rqst);
456 break;
Ronnie Sahlbergc2e0fe32018-09-03 13:33:45 +1000457 case SMB2_OP_RMDIR:
Steve French81915762019-03-13 00:02:47 -0500458 if (rc)
459 trace_smb3_rmdir_err(xid, ses->Suid, tcon->tid, rc);
460 else
461 trace_smb3_rmdir_done(xid, ses->Suid, tcon->tid);
462 free_set_inf_compound(rqst);
463 break;
Ronnie Sahlbergdcbf9102018-09-03 13:33:48 +1000464 case SMB2_OP_SET_EOF:
Steve French81915762019-03-13 00:02:47 -0500465 if (rc)
466 trace_smb3_set_eof_err(xid, ses->Suid, tcon->tid, rc);
467 else
468 trace_smb3_set_eof_done(xid, ses->Suid, tcon->tid);
469 free_set_inf_compound(rqst);
470 break;
Ronnie Sahlbergdcbf9102018-09-03 13:33:48 +1000471 case SMB2_OP_SET_INFO:
Steve French81915762019-03-13 00:02:47 -0500472 if (rc)
473 trace_smb3_set_info_compound_err(xid, ses->Suid,
474 tcon->tid, rc);
475 else
476 trace_smb3_set_info_compound_done(xid, ses->Suid,
477 tcon->tid);
478 free_set_inf_compound(rqst);
Ronnie Sahlbergc2e0fe32018-09-03 13:33:45 +1000479 break;
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000480 }
481 free_rsp_buf(resp_buftype[0], rsp_iov[0].iov_base);
482 free_rsp_buf(resp_buftype[1], rsp_iov[1].iov_base);
483 free_rsp_buf(resp_buftype[2], rsp_iov[2].iov_base);
Ronnie Sahlberga7d5c292020-05-20 12:19:59 +1000484 kfree(vars);
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000485 return rc;
486}
487
Pavel Shilovskyf0df7372012-09-18 16:20:26 -0700488void
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +0400489move_smb2_info_to_cifs(FILE_ALL_INFO *dst, struct smb2_file_all_info *src)
490{
491 memcpy(dst, src, (size_t)(&src->CurrentByteOffset) - (size_t)src);
492 dst->CurrentByteOffset = src->CurrentByteOffset;
493 dst->Mode = src->Mode;
494 dst->AlignmentRequirement = src->AlignmentRequirement;
495 dst->IndexNumber1 = 0; /* we don't use it */
496}
497
498int
499smb2_query_path_info(const unsigned int xid, struct cifs_tcon *tcon,
500 struct cifs_sb_info *cifs_sb, const char *full_path,
Steve French2e4564b2020-10-22 22:03:14 -0500501 FILE_ALL_INFO *data, bool *adjust_tz, bool *reparse)
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +0400502{
503 int rc;
504 struct smb2_file_all_info *smb2_data;
Steve French61351d62018-10-19 00:32:41 -0500505 __u32 create_options = 0;
Ronnie Sahlberg496902d2019-09-09 15:30:00 +1000506 struct cifsFileInfo *cfile;
Ronnie Sahlberg9e81e8f2020-10-05 12:37:52 +1000507 struct cached_fid *cfid = NULL;
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +0400508
509 *adjust_tz = false;
Steve French2e4564b2020-10-22 22:03:14 -0500510 *reparse = false;
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +0400511
Pavel Shilovsky1bbe4992014-08-22 13:32:11 +0400512 smb2_data = kzalloc(sizeof(struct smb2_file_all_info) + PATH_MAX * 2,
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +0400513 GFP_KERNEL);
514 if (smb2_data == NULL)
515 return -ENOMEM;
Pavel Shilovsky6a9cbdd2019-01-16 11:48:42 -0800516
517 /* If it is a root and its handle is cached then use it */
Ronnie Sahlberg45c0f1a2021-03-09 09:07:29 +1000518 rc = open_cached_dir(xid, tcon, full_path, cifs_sb, &cfid);
Ronnie Sahlberge6eb1952021-03-09 09:07:28 +1000519 if (!rc) {
520 if (tcon->crfid.file_all_info_is_valid) {
521 move_smb2_info_to_cifs(data,
Ronnie Sahlbergb0f6df72019-03-12 13:58:31 +1000522 &tcon->crfid.file_all_info);
Ronnie Sahlberge6eb1952021-03-09 09:07:28 +1000523 } else {
524 rc = SMB2_query_info(xid, tcon,
Ronnie Sahlberg9e81e8f2020-10-05 12:37:52 +1000525 cfid->fid->persistent_fid,
526 cfid->fid->volatile_fid, smb2_data);
Ronnie Sahlberge6eb1952021-03-09 09:07:28 +1000527 if (!rc)
528 move_smb2_info_to_cifs(data, smb2_data);
Ronnie Sahlbergb0f6df72019-03-12 13:58:31 +1000529 }
Ronnie Sahlberg45c0f1a2021-03-09 09:07:29 +1000530 close_cached_dir(cfid);
Ronnie Sahlberge6eb1952021-03-09 09:07:28 +1000531 goto out;
Pavel Shilovsky6a9cbdd2019-01-16 11:48:42 -0800532 }
533
Ronnie Sahlberg496902d2019-09-09 15:30:00 +1000534 cifs_get_readable_path(tcon, full_path, &cfile);
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000535 rc = smb2_compound_op(xid, tcon, cifs_sb, full_path,
Steve French61351d62018-10-19 00:32:41 -0500536 FILE_READ_ATTRIBUTES, FILE_OPEN, create_options,
Steve Frenchc3ca78e2019-09-25 00:32:13 -0500537 ACL_NO_MODE, smb2_data, SMB2_OP_QUERY_INFO, cfile);
Pavel Shilovskyeb85d94b2013-10-23 17:49:47 +0400538 if (rc == -EOPNOTSUPP) {
Steve French2e4564b2020-10-22 22:03:14 -0500539 *reparse = true;
Steve French61351d62018-10-19 00:32:41 -0500540 create_options |= OPEN_REPARSE_POINT;
541
Pavel Shilovskyeb85d94b2013-10-23 17:49:47 +0400542 /* Failed on a symbolic link - query a reparse point info */
Shyam Prasad Nb6f2a0f2021-07-30 06:43:09 +0000543 cifs_get_readable_path(tcon, full_path, &cfile);
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +1000544 rc = smb2_compound_op(xid, tcon, cifs_sb, full_path,
545 FILE_READ_ATTRIBUTES, FILE_OPEN,
Steve Frenchc3ca78e2019-09-25 00:32:13 -0500546 create_options, ACL_NO_MODE,
Shyam Prasad Nb6f2a0f2021-07-30 06:43:09 +0000547 smb2_data, SMB2_OP_QUERY_INFO, cfile);
Pavel Shilovskyeb85d94b2013-10-23 17:49:47 +0400548 }
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +0400549 if (rc)
550 goto out;
551
552 move_smb2_info_to_cifs(data, smb2_data);
553out:
554 kfree(smb2_data);
555 return rc;
556}
Pavel Shilovskya0e73182011-07-19 12:56:37 +0400557
Steve French6a5f6592020-06-11 19:25:47 -0500558
559int
560smb311_posix_query_path_info(const unsigned int xid, struct cifs_tcon *tcon,
561 struct cifs_sb_info *cifs_sb, const char *full_path,
Steve French2e4564b2020-10-22 22:03:14 -0500562 struct smb311_posix_qinfo *data, bool *adjust_tz, bool *reparse)
Steve French6a5f6592020-06-11 19:25:47 -0500563{
564 int rc;
565 __u32 create_options = 0;
566 struct cifsFileInfo *cfile;
567 struct smb311_posix_qinfo *smb2_data;
568
569 *adjust_tz = false;
Steve French2e4564b2020-10-22 22:03:14 -0500570 *reparse = false;
Steve French6a5f6592020-06-11 19:25:47 -0500571
572 /* BB TODO: Make struct larger when add support for parsing owner SIDs */
573 smb2_data = kzalloc(sizeof(struct smb311_posix_qinfo),
574 GFP_KERNEL);
575 if (smb2_data == NULL)
576 return -ENOMEM;
577
578 /*
579 * BB TODO: Add support for using the cached root handle.
580 * Create SMB2_query_posix_info worker function to do non-compounded query
581 * when we already have an open file handle for this. For now this is fast enough
582 * (always using the compounded version).
583 */
584
585 cifs_get_readable_path(tcon, full_path, &cfile);
586 rc = smb2_compound_op(xid, tcon, cifs_sb, full_path,
587 FILE_READ_ATTRIBUTES, FILE_OPEN, create_options,
588 ACL_NO_MODE, smb2_data, SMB2_OP_POSIX_QUERY_INFO, cfile);
589 if (rc == -EOPNOTSUPP) {
590 /* BB TODO: When support for special files added to Samba re-verify this path */
Steve French2e4564b2020-10-22 22:03:14 -0500591 *reparse = true;
Steve French6a5f6592020-06-11 19:25:47 -0500592 create_options |= OPEN_REPARSE_POINT;
593
594 /* Failed on a symbolic link - query a reparse point info */
Shyam Prasad Nb6f2a0f2021-07-30 06:43:09 +0000595 cifs_get_readable_path(tcon, full_path, &cfile);
Steve French6a5f6592020-06-11 19:25:47 -0500596 rc = smb2_compound_op(xid, tcon, cifs_sb, full_path,
597 FILE_READ_ATTRIBUTES, FILE_OPEN,
598 create_options, ACL_NO_MODE,
Shyam Prasad Nb6f2a0f2021-07-30 06:43:09 +0000599 smb2_data, SMB2_OP_POSIX_QUERY_INFO, cfile);
Steve French6a5f6592020-06-11 19:25:47 -0500600 }
601 if (rc)
602 goto out;
603
604 /* TODO: will need to allow for the 2 SIDs when add support for getting owner UID/GID */
605 memcpy(data, smb2_data, sizeof(struct smb311_posix_qinfo));
606
607out:
608 kfree(smb2_data);
609 return rc;
610}
611
Pavel Shilovskya0e73182011-07-19 12:56:37 +0400612int
Steve Frenchc3ca78e2019-09-25 00:32:13 -0500613smb2_mkdir(const unsigned int xid, struct inode *parent_inode, umode_t mode,
614 struct cifs_tcon *tcon, const char *name,
Pavel Shilovskya0e73182011-07-19 12:56:37 +0400615 struct cifs_sb_info *cifs_sb)
616{
Ronnie Sahlbergf733e392018-09-03 13:33:42 +1000617 return smb2_compound_op(xid, tcon, cifs_sb, name,
618 FILE_WRITE_ATTRIBUTES, FILE_CREATE,
Steve Frenchc3ca78e2019-09-25 00:32:13 -0500619 CREATE_NOT_FILE, mode, NULL, SMB2_OP_MKDIR,
620 NULL);
Pavel Shilovskya0e73182011-07-19 12:56:37 +0400621}
622
623void
624smb2_mkdir_setinfo(struct inode *inode, const char *name,
625 struct cifs_sb_info *cifs_sb, struct cifs_tcon *tcon,
626 const unsigned int xid)
627{
628 FILE_BASIC_INFO data;
629 struct cifsInodeInfo *cifs_i;
Ronnie Sahlbergdc9300a2019-08-30 09:53:56 +1000630 struct cifsFileInfo *cfile;
Pavel Shilovskya0e73182011-07-19 12:56:37 +0400631 u32 dosattrs;
632 int tmprc;
633
634 memset(&data, 0, sizeof(data));
635 cifs_i = CIFS_I(inode);
636 dosattrs = cifs_i->cifsAttrs | ATTR_READONLY;
637 data.Attributes = cpu_to_le32(dosattrs);
Aurelien Aptel86f740f2020-02-21 11:19:06 +0100638 cifs_get_writable_path(tcon, name, FIND_WR_ANY, &cfile);
Ronnie Sahlbergdcbf9102018-09-03 13:33:48 +1000639 tmprc = smb2_compound_op(xid, tcon, cifs_sb, name,
640 FILE_WRITE_ATTRIBUTES, FILE_CREATE,
Steve Frenchc3ca78e2019-09-25 00:32:13 -0500641 CREATE_NOT_FILE, ACL_NO_MODE,
642 &data, SMB2_OP_SET_INFO, cfile);
Pavel Shilovskya0e73182011-07-19 12:56:37 +0400643 if (tmprc == 0)
644 cifs_i->cifsAttrs = dosattrs;
645}
Pavel Shilovsky1a500f02012-07-10 16:14:38 +0400646
647int
648smb2_rmdir(const unsigned int xid, struct cifs_tcon *tcon, const char *name,
649 struct cifs_sb_info *cifs_sb)
650{
Ronnie Sahlbergc2e0fe32018-09-03 13:33:45 +1000651 return smb2_compound_op(xid, tcon, cifs_sb, name, DELETE, FILE_OPEN,
Steve Frenchc3ca78e2019-09-25 00:32:13 -0500652 CREATE_NOT_FILE, ACL_NO_MODE,
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000653 NULL, SMB2_OP_RMDIR, NULL);
Pavel Shilovsky1a500f02012-07-10 16:14:38 +0400654}
Pavel Shilovskycbe6f432012-09-18 16:20:25 -0700655
656int
657smb2_unlink(const unsigned int xid, struct cifs_tcon *tcon, const char *name,
658 struct cifs_sb_info *cifs_sb)
659{
Ronnie Sahlberg47dd9592018-09-03 13:33:43 +1000660 return smb2_compound_op(xid, tcon, cifs_sb, name, DELETE, FILE_OPEN,
661 CREATE_DELETE_ON_CLOSE | OPEN_REPARSE_POINT,
Steve Frenchc3ca78e2019-09-25 00:32:13 -0500662 ACL_NO_MODE, NULL, SMB2_OP_DELETE, NULL);
Pavel Shilovskycbe6f432012-09-18 16:20:25 -0700663}
Pavel Shilovsky35143eb2012-09-18 16:20:31 -0700664
Pavel Shilovsky568798c2012-09-18 16:20:31 -0700665static int
666smb2_set_path_attr(const unsigned int xid, struct cifs_tcon *tcon,
667 const char *from_name, const char *to_name,
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000668 struct cifs_sb_info *cifs_sb, __u32 access, int command,
669 struct cifsFileInfo *cfile)
Pavel Shilovsky35143eb2012-09-18 16:20:31 -0700670{
671 __le16 *smb2_to_name = NULL;
672 int rc;
673
674 smb2_to_name = cifs_convert_path_to_utf16(to_name, cifs_sb);
675 if (smb2_to_name == NULL) {
676 rc = -ENOMEM;
677 goto smb2_rename_path;
678 }
Ronnie Sahlbergbb435512018-09-03 13:33:49 +1000679 rc = smb2_compound_op(xid, tcon, cifs_sb, from_name, access,
Steve Frenchc3ca78e2019-09-25 00:32:13 -0500680 FILE_OPEN, 0, ACL_NO_MODE, smb2_to_name,
681 command, cfile);
Pavel Shilovsky35143eb2012-09-18 16:20:31 -0700682smb2_rename_path:
683 kfree(smb2_to_name);
684 return rc;
685}
Pavel Shilovsky568798c2012-09-18 16:20:31 -0700686
687int
688smb2_rename_path(const unsigned int xid, struct cifs_tcon *tcon,
689 const char *from_name, const char *to_name,
690 struct cifs_sb_info *cifs_sb)
691{
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000692 struct cifsFileInfo *cfile;
693
Aurelien Aptel86f740f2020-02-21 11:19:06 +0100694 cifs_get_writable_path(tcon, from_name, FIND_WR_WITH_DELETE, &cfile);
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000695
696 return smb2_set_path_attr(xid, tcon, from_name, to_name,
697 cifs_sb, DELETE, SMB2_OP_RENAME, cfile);
Pavel Shilovsky568798c2012-09-18 16:20:31 -0700698}
699
700int
701smb2_create_hardlink(const unsigned int xid, struct cifs_tcon *tcon,
702 const char *from_name, const char *to_name,
703 struct cifs_sb_info *cifs_sb)
704{
705 return smb2_set_path_attr(xid, tcon, from_name, to_name, cifs_sb,
Ronnie Sahlberg8de9e862019-08-30 08:25:46 +1000706 FILE_READ_ATTRIBUTES, SMB2_OP_HARDLINK,
707 NULL);
Pavel Shilovsky568798c2012-09-18 16:20:31 -0700708}
Pavel Shilovskyc839ff22012-09-18 16:20:32 -0700709
710int
711smb2_set_path_size(const unsigned int xid, struct cifs_tcon *tcon,
712 const char *full_path, __u64 size,
713 struct cifs_sb_info *cifs_sb, bool set_alloc)
714{
715 __le64 eof = cpu_to_le64(size);
Shyam Prasad Nb6f2a0f2021-07-30 06:43:09 +0000716 struct cifsFileInfo *cfile;
Ronnie Sahlbergf7bfe042018-09-03 13:33:46 +1000717
Shyam Prasad Nb6f2a0f2021-07-30 06:43:09 +0000718 cifs_get_writable_path(tcon, full_path, FIND_WR_ANY, &cfile);
Ronnie Sahlbergf7bfe042018-09-03 13:33:46 +1000719 return smb2_compound_op(xid, tcon, cifs_sb, full_path,
Steve Frenchc3ca78e2019-09-25 00:32:13 -0500720 FILE_WRITE_DATA, FILE_OPEN, 0, ACL_NO_MODE,
Shyam Prasad Nb6f2a0f2021-07-30 06:43:09 +0000721 &eof, SMB2_OP_SET_EOF, cfile);
Pavel Shilovskyc839ff22012-09-18 16:20:32 -0700722}
Pavel Shilovsky1feeaac2012-09-18 16:20:32 -0700723
724int
725smb2_set_file_info(struct inode *inode, const char *full_path,
726 FILE_BASIC_INFO *buf, const unsigned int xid)
727{
728 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
729 struct tcon_link *tlink;
Shyam Prasad Nb6f2a0f2021-07-30 06:43:09 +0000730 struct cifs_tcon *tcon;
731 struct cifsFileInfo *cfile;
Pavel Shilovsky1feeaac2012-09-18 16:20:32 -0700732 int rc;
733
Steve French18dd8e12016-09-26 14:23:08 -0500734 if ((buf->CreationTime == 0) && (buf->LastAccessTime == 0) &&
Steve Frenchfd09b7d2018-08-02 20:28:18 -0500735 (buf->LastWriteTime == 0) && (buf->ChangeTime == 0) &&
Steve French18dd8e12016-09-26 14:23:08 -0500736 (buf->Attributes == 0))
737 return 0; /* would be a no op, no sense sending this */
738
Pavel Shilovsky1feeaac2012-09-18 16:20:32 -0700739 tlink = cifs_sb_tlink(cifs_sb);
740 if (IS_ERR(tlink))
741 return PTR_ERR(tlink);
Shyam Prasad Nb6f2a0f2021-07-30 06:43:09 +0000742 tcon = tlink_tcon(tlink);
Steve French18dd8e12016-09-26 14:23:08 -0500743
Shyam Prasad Nb6f2a0f2021-07-30 06:43:09 +0000744 cifs_get_writable_path(tcon, full_path, FIND_WR_ANY, &cfile);
745 rc = smb2_compound_op(xid, tcon, cifs_sb, full_path,
Steve Frenchc3ca78e2019-09-25 00:32:13 -0500746 FILE_WRITE_ATTRIBUTES, FILE_OPEN,
Shyam Prasad Nb6f2a0f2021-07-30 06:43:09 +0000747 0, ACL_NO_MODE, buf, SMB2_OP_SET_INFO, cfile);
Pavel Shilovsky1feeaac2012-09-18 16:20:32 -0700748 cifs_put_tlink(tlink);
749 return rc;
750}