blob: cc420d6b71f78313a8651fa7b56937400da45f47 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/cifssmb.c
3 *
Steve Frenchf19159d2010-04-21 04:12:10 +00004 * Copyright (C) International Business Machines Corp., 2002,2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Steve French (sfrench@us.ibm.com)
6 *
7 * Contains the routines for constructing the SMB PDUs themselves
8 *
9 * This library is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published
11 * by the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
17 * the GNU Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24 /* SMB/CIFS PDU handling routines here - except for leftovers in connect.c */
25 /* These are mostly routines that operate on a pathname, or on a tree id */
26 /* (mounted volume), but there are eight handle based routines which must be */
Steve French2dd29d32007-04-23 22:07:35 +000027 /* treated slightly differently for reconnection purposes since we never */
28 /* want to reuse a stale file handle and only the caller knows the file info */
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include <linux/fs.h>
31#include <linux/kernel.h>
32#include <linux/vfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/posix_acl_xattr.h>
Jeff Laytonc28c89f2011-05-19 16:22:56 -040035#include <linux/pagemap.h>
Jeff Laytone28bc5b2011-10-19 15:30:07 -040036#include <linux/swap.h>
37#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/uaccess.h>
39#include "cifspdu.h"
40#include "cifsglob.h"
Shirish Pargaonkard0d66c42007-10-03 18:22:19 +000041#include "cifsacl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "cifsproto.h"
43#include "cifs_unicode.h"
44#include "cifs_debug.h"
Jeff Laytone28bc5b2011-10-19 15:30:07 -040045#include "fscache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#ifdef CONFIG_CIFS_POSIX
48static struct {
49 int index;
50 char *name;
51} protocols[] = {
Steve French39798772006-05-31 22:40:51 +000052#ifdef CONFIG_CIFS_WEAK_PW_HASH
53 {LANMAN_PROT, "\2LM1.2X002"},
Steve French9ac00b72006-09-30 04:13:17 +000054 {LANMAN2_PROT, "\2LANMAN2.1"},
Steve French39798772006-05-31 22:40:51 +000055#endif /* weak password hashing for legacy clients */
Steve French50c2f752007-07-13 00:33:32 +000056 {CIFS_PROT, "\2NT LM 0.12"},
Steve French39798772006-05-31 22:40:51 +000057 {POSIX_PROT, "\2POSIX 2"},
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 {BAD_PROT, "\2"}
59};
60#else
61static struct {
62 int index;
63 char *name;
64} protocols[] = {
Steve French39798772006-05-31 22:40:51 +000065#ifdef CONFIG_CIFS_WEAK_PW_HASH
66 {LANMAN_PROT, "\2LM1.2X002"},
Steve French18f75ca2006-10-01 03:13:01 +000067 {LANMAN2_PROT, "\2LANMAN2.1"},
Steve French39798772006-05-31 22:40:51 +000068#endif /* weak password hashing for legacy clients */
Steve French790fe572007-07-07 19:25:05 +000069 {CIFS_PROT, "\2NT LM 0.12"},
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 {BAD_PROT, "\2"}
71};
72#endif
73
Steve French39798772006-05-31 22:40:51 +000074/* define the number of elements in the cifs dialect array */
75#ifdef CONFIG_CIFS_POSIX
76#ifdef CONFIG_CIFS_WEAK_PW_HASH
Steve French9ac00b72006-09-30 04:13:17 +000077#define CIFS_NUM_PROT 4
Steve French39798772006-05-31 22:40:51 +000078#else
79#define CIFS_NUM_PROT 2
80#endif /* CIFS_WEAK_PW_HASH */
81#else /* not posix */
82#ifdef CONFIG_CIFS_WEAK_PW_HASH
Steve French9ac00b72006-09-30 04:13:17 +000083#define CIFS_NUM_PROT 3
Steve French39798772006-05-31 22:40:51 +000084#else
85#define CIFS_NUM_PROT 1
86#endif /* CONFIG_CIFS_WEAK_PW_HASH */
87#endif /* CIFS_POSIX */
88
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +040089/*
90 * Mark as invalid, all open files on tree connections since they
91 * were closed when session to server was lost.
92 */
93void
94cifs_mark_open_files_invalid(struct cifs_tcon *tcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
96 struct cifsFileInfo *open_file = NULL;
Steve French790fe572007-07-07 19:25:05 +000097 struct list_head *tmp;
98 struct list_head *tmp1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400100 /* list all files open on tree connection and mark them invalid */
Steve French3afca262016-09-22 18:58:16 -0500101 spin_lock(&tcon->open_file_lock);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400102 list_for_each_safe(tmp, tmp1, &tcon->openFileList) {
Steve French790fe572007-07-07 19:25:05 +0000103 open_file = list_entry(tmp, struct cifsFileInfo, tlist);
Steve Frenchad8b15f2008-08-08 21:10:16 +0000104 open_file->invalidHandle = true;
Jeff Layton3bc303c2009-09-21 06:47:50 -0400105 open_file->oplock_break_cancelled = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
Steve French3afca262016-09-22 18:58:16 -0500107 spin_unlock(&tcon->open_file_lock);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400108 /*
109 * BB Add call to invalidate_inodes(sb) for all superblocks mounted
110 * to this tcon.
111 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
Jeff Layton9162ab22009-09-03 12:07:17 -0400114/* reconnect the socket, tcon, and smb session if needed */
115static int
Steve French96daf2b2011-05-27 04:34:02 +0000116cifs_reconnect_tcon(struct cifs_tcon *tcon, int smb_command)
Jeff Layton9162ab22009-09-03 12:07:17 -0400117{
Jeff Laytonc4a55342011-07-28 12:40:36 -0400118 int rc;
Steve French96daf2b2011-05-27 04:34:02 +0000119 struct cifs_ses *ses;
Jeff Layton9162ab22009-09-03 12:07:17 -0400120 struct TCP_Server_Info *server;
121 struct nls_table *nls_codepage;
122
123 /*
124 * SMBs NegProt, SessSetup, uLogoff do not have tcon yet so check for
125 * tcp and smb session status done differently for those three - in the
126 * calling routine
127 */
128 if (!tcon)
129 return 0;
130
131 ses = tcon->ses;
132 server = ses->server;
133
134 /*
135 * only tree disconnect, open, and write, (and ulogoff which does not
136 * have tcon) are allowed as we start force umount
137 */
138 if (tcon->tidStatus == CifsExiting) {
139 if (smb_command != SMB_COM_WRITE_ANDX &&
140 smb_command != SMB_COM_OPEN_ANDX &&
141 smb_command != SMB_COM_TREE_DISCONNECT) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500142 cifs_dbg(FYI, "can not send cmd %d while umounting\n",
143 smb_command);
Jeff Layton9162ab22009-09-03 12:07:17 -0400144 return -ENODEV;
145 }
146 }
147
Jeff Layton9162ab22009-09-03 12:07:17 -0400148 /*
149 * Give demultiplex thread up to 10 seconds to reconnect, should be
150 * greater than cifs socket timeout which is 7 seconds
151 */
152 while (server->tcpStatus == CifsNeedReconnect) {
153 wait_event_interruptible_timeout(server->response_q,
Steve Frenchfd88ce92011-04-12 01:01:14 +0000154 (server->tcpStatus != CifsNeedReconnect), 10 * HZ);
Jeff Layton9162ab22009-09-03 12:07:17 -0400155
Steve Frenchfd88ce92011-04-12 01:01:14 +0000156 /* are we still trying to reconnect? */
Jeff Layton9162ab22009-09-03 12:07:17 -0400157 if (server->tcpStatus != CifsNeedReconnect)
158 break;
159
160 /*
161 * on "soft" mounts we wait once. Hard mounts keep
162 * retrying until process is killed or server comes
163 * back on-line
164 */
Jeff Laytond4025392011-02-07 08:54:35 -0500165 if (!tcon->retry) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500166 cifs_dbg(FYI, "gave up waiting on reconnect in smb_init\n");
Jeff Layton9162ab22009-09-03 12:07:17 -0400167 return -EHOSTDOWN;
168 }
169 }
170
171 if (!ses->need_reconnect && !tcon->need_reconnect)
172 return 0;
173
174 nls_codepage = load_nls_default();
175
176 /*
177 * need to prevent multiple threads trying to simultaneously
178 * reconnect the same SMB session
179 */
Steve Frenchd7b619c2010-02-25 05:36:46 +0000180 mutex_lock(&ses->session_mutex);
Jeff Layton198b5682010-04-24 07:57:48 -0400181 rc = cifs_negotiate_protocol(0, ses);
182 if (rc == 0 && ses->need_reconnect)
Jeff Layton9162ab22009-09-03 12:07:17 -0400183 rc = cifs_setup_session(0, ses, nls_codepage);
184
185 /* do we need to reconnect tcon? */
186 if (rc || !tcon->need_reconnect) {
Steve Frenchd7b619c2010-02-25 05:36:46 +0000187 mutex_unlock(&ses->session_mutex);
Jeff Layton9162ab22009-09-03 12:07:17 -0400188 goto out;
189 }
190
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400191 cifs_mark_open_files_invalid(tcon);
Jeff Layton9162ab22009-09-03 12:07:17 -0400192 rc = CIFSTCon(0, ses, tcon->treeName, tcon, nls_codepage);
Steve Frenchd7b619c2010-02-25 05:36:46 +0000193 mutex_unlock(&ses->session_mutex);
Joe Perchesf96637b2013-05-04 22:12:25 -0500194 cifs_dbg(FYI, "reconnect tcon rc = %d\n", rc);
Jeff Layton9162ab22009-09-03 12:07:17 -0400195
196 if (rc)
197 goto out;
198
Jeff Layton9162ab22009-09-03 12:07:17 -0400199 atomic_inc(&tconInfoReconnectCount);
200
201 /* tell server Unix caps we support */
202 if (ses->capabilities & CAP_UNIX)
203 reset_cifs_unix_caps(0, tcon, NULL, NULL);
204
205 /*
206 * Removed call to reopen open files here. It is safer (and faster) to
207 * reopen files one at a time as needed in read and write.
208 *
209 * FIXME: what about file locks? don't we need to reclaim them ASAP?
210 */
211
212out:
213 /*
214 * Check if handle based operation so we know whether we can continue
215 * or not without returning to caller to reset file handle
216 */
217 switch (smb_command) {
218 case SMB_COM_READ_ANDX:
219 case SMB_COM_WRITE_ANDX:
220 case SMB_COM_CLOSE:
221 case SMB_COM_FIND_CLOSE2:
222 case SMB_COM_LOCKING_ANDX:
223 rc = -EAGAIN;
224 }
225
226 unload_nls(nls_codepage);
227 return rc;
228}
229
Steve Frenchad7a2922008-02-07 23:25:02 +0000230/* Allocate and return pointer to an SMB request buffer, and set basic
231 SMB information in the SMB header. If the return code is zero, this
232 function must have filled in request_buf pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233static int
Steve French96daf2b2011-05-27 04:34:02 +0000234small_smb_init(int smb_command, int wct, struct cifs_tcon *tcon,
Steve Frenchad7a2922008-02-07 23:25:02 +0000235 void **request_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Jeff Laytonf5695992010-09-29 15:27:08 -0400237 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Jeff Layton9162ab22009-09-03 12:07:17 -0400239 rc = cifs_reconnect_tcon(tcon, smb_command);
Steve French790fe572007-07-07 19:25:05 +0000240 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return rc;
242
243 *request_buf = cifs_small_buf_get();
244 if (*request_buf == NULL) {
245 /* BB should we add a retry in here if not a writepage? */
246 return -ENOMEM;
247 }
248
Steve French63135e02007-07-17 17:34:02 +0000249 header_assemble((struct smb_hdr *) *request_buf, smb_command,
Steve Frenchc18c8422007-07-18 23:21:09 +0000250 tcon, wct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Steve French790fe572007-07-07 19:25:05 +0000252 if (tcon != NULL)
253 cifs_stats_inc(&tcon->num_smbs_sent);
Steve Frencha4544342005-08-24 13:59:35 -0700254
Jeff Laytonf5695992010-09-29 15:27:08 -0400255 return 0;
Steve French5815449d2006-02-14 01:36:20 +0000256}
257
Steve French12b3b8f2006-02-09 21:12:47 +0000258int
Steve French50c2f752007-07-13 00:33:32 +0000259small_smb_init_no_tc(const int smb_command, const int wct,
Steve French96daf2b2011-05-27 04:34:02 +0000260 struct cifs_ses *ses, void **request_buf)
Steve French12b3b8f2006-02-09 21:12:47 +0000261{
262 int rc;
Steve French50c2f752007-07-13 00:33:32 +0000263 struct smb_hdr *buffer;
Steve French12b3b8f2006-02-09 21:12:47 +0000264
Steve French5815449d2006-02-14 01:36:20 +0000265 rc = small_smb_init(smb_command, wct, NULL, request_buf);
Steve French790fe572007-07-07 19:25:05 +0000266 if (rc)
Steve French12b3b8f2006-02-09 21:12:47 +0000267 return rc;
268
Steve French04fdabe2006-02-10 05:52:50 +0000269 buffer = (struct smb_hdr *)*request_buf;
Pavel Shilovsky88257362012-05-23 14:01:59 +0400270 buffer->Mid = get_next_mid(ses->server);
Steve French12b3b8f2006-02-09 21:12:47 +0000271 if (ses->capabilities & CAP_UNICODE)
272 buffer->Flags2 |= SMBFLG2_UNICODE;
Steve French04fdabe2006-02-10 05:52:50 +0000273 if (ses->capabilities & CAP_STATUS32)
Steve French12b3b8f2006-02-09 21:12:47 +0000274 buffer->Flags2 |= SMBFLG2_ERR_STATUS;
275
276 /* uid, tid can stay at zero as set in header assemble */
277
Steve French50c2f752007-07-13 00:33:32 +0000278 /* BB add support for turning on the signing when
Steve French12b3b8f2006-02-09 21:12:47 +0000279 this function is used after 1st of session setup requests */
280
281 return rc;
282}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284/* If the return code is zero, this function must fill in request_buf pointer */
285static int
Steve French96daf2b2011-05-27 04:34:02 +0000286__smb_init(int smb_command, int wct, struct cifs_tcon *tcon,
Jeff Laytonf5695992010-09-29 15:27:08 -0400287 void **request_buf, void **response_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 *request_buf = cifs_buf_get();
290 if (*request_buf == NULL) {
291 /* BB should we add a retry in here if not a writepage? */
292 return -ENOMEM;
293 }
294 /* Although the original thought was we needed the response buf for */
295 /* potential retries of smb operations it turns out we can determine */
296 /* from the mid flags when the request buffer can be resent without */
297 /* having to use a second distinct buffer for the response */
Steve French790fe572007-07-07 19:25:05 +0000298 if (response_buf)
Steve French50c2f752007-07-13 00:33:32 +0000299 *response_buf = *request_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 header_assemble((struct smb_hdr *) *request_buf, smb_command, tcon,
Steve Frenchad7a2922008-02-07 23:25:02 +0000302 wct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Steve French790fe572007-07-07 19:25:05 +0000304 if (tcon != NULL)
305 cifs_stats_inc(&tcon->num_smbs_sent);
Steve Frencha4544342005-08-24 13:59:35 -0700306
Jeff Laytonf5695992010-09-29 15:27:08 -0400307 return 0;
308}
309
310/* If the return code is zero, this function must fill in request_buf pointer */
311static int
Steve French96daf2b2011-05-27 04:34:02 +0000312smb_init(int smb_command, int wct, struct cifs_tcon *tcon,
Jeff Laytonf5695992010-09-29 15:27:08 -0400313 void **request_buf, void **response_buf)
314{
315 int rc;
316
317 rc = cifs_reconnect_tcon(tcon, smb_command);
318 if (rc)
319 return rc;
320
321 return __smb_init(smb_command, wct, tcon, request_buf, response_buf);
322}
323
324static int
Steve French96daf2b2011-05-27 04:34:02 +0000325smb_init_no_reconnect(int smb_command, int wct, struct cifs_tcon *tcon,
Jeff Laytonf5695992010-09-29 15:27:08 -0400326 void **request_buf, void **response_buf)
327{
328 if (tcon->ses->need_reconnect || tcon->need_reconnect)
329 return -EHOSTDOWN;
330
331 return __smb_init(smb_command, wct, tcon, request_buf, response_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
Steve French50c2f752007-07-13 00:33:32 +0000334static int validate_t2(struct smb_t2_rsp *pSMB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Jeff Layton12df83c2011-01-20 13:36:51 -0500336 unsigned int total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Jeff Layton12df83c2011-01-20 13:36:51 -0500338 /* check for plausible wct */
339 if (pSMB->hdr.WordCount < 10)
340 goto vt2_err;
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 /* check for parm and data offset going beyond end of smb */
Jeff Layton12df83c2011-01-20 13:36:51 -0500343 if (get_unaligned_le16(&pSMB->t2_rsp.ParameterOffset) > 1024 ||
344 get_unaligned_le16(&pSMB->t2_rsp.DataOffset) > 1024)
345 goto vt2_err;
346
Jeff Layton12df83c2011-01-20 13:36:51 -0500347 total_size = get_unaligned_le16(&pSMB->t2_rsp.ParameterCount);
348 if (total_size >= 512)
349 goto vt2_err;
350
Jeff Laytonfd5707e2011-03-31 17:22:07 -0400351 /* check that bcc is at least as big as parms + data, and that it is
352 * less than negotiated smb buffer
353 */
Jeff Layton12df83c2011-01-20 13:36:51 -0500354 total_size += get_unaligned_le16(&pSMB->t2_rsp.DataCount);
355 if (total_size > get_bcc(&pSMB->hdr) ||
356 total_size >= CIFSMaxBufSize + MAX_CIFS_HDR_SIZE)
357 goto vt2_err;
358
359 return 0;
360vt2_err:
Steve French50c2f752007-07-13 00:33:32 +0000361 cifs_dump_mem("Invalid transact2 SMB: ", (char *)pSMB,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 sizeof(struct smb_t2_rsp) + 16);
Jeff Layton12df83c2011-01-20 13:36:51 -0500363 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
Jeff Layton690c5222011-01-20 13:36:51 -0500365
Jeff Layton31d9e2b2013-05-26 07:00:57 -0400366static int
Jeff Layton3f618222013-06-12 19:52:14 -0500367decode_ext_sec_blob(struct cifs_ses *ses, NEGOTIATE_RSP *pSMBr)
Jeff Layton31d9e2b2013-05-26 07:00:57 -0400368{
369 int rc = 0;
370 u16 count;
371 char *guid = pSMBr->u.extended_response.GUID;
Jeff Layton3f618222013-06-12 19:52:14 -0500372 struct TCP_Server_Info *server = ses->server;
Jeff Layton31d9e2b2013-05-26 07:00:57 -0400373
374 count = get_bcc(&pSMBr->hdr);
375 if (count < SMB1_CLIENT_GUID_SIZE)
376 return -EIO;
377
378 spin_lock(&cifs_tcp_ses_lock);
379 if (server->srv_count > 1) {
380 spin_unlock(&cifs_tcp_ses_lock);
381 if (memcmp(server->server_GUID, guid, SMB1_CLIENT_GUID_SIZE) != 0) {
382 cifs_dbg(FYI, "server UID changed\n");
383 memcpy(server->server_GUID, guid, SMB1_CLIENT_GUID_SIZE);
384 }
385 } else {
386 spin_unlock(&cifs_tcp_ses_lock);
387 memcpy(server->server_GUID, guid, SMB1_CLIENT_GUID_SIZE);
388 }
389
390 if (count == SMB1_CLIENT_GUID_SIZE) {
Jeff Layton3f618222013-06-12 19:52:14 -0500391 server->sec_ntlmssp = true;
Jeff Layton31d9e2b2013-05-26 07:00:57 -0400392 } else {
393 count -= SMB1_CLIENT_GUID_SIZE;
394 rc = decode_negTokenInit(
395 pSMBr->u.extended_response.SecurityBlob, count, server);
396 if (rc != 1)
397 return -EINVAL;
Jeff Layton31d9e2b2013-05-26 07:00:57 -0400398 }
399
400 return 0;
401}
402
Jeff Layton9ddec562013-05-26 07:00:58 -0400403int
Jeff Layton38d77c52013-05-26 07:01:00 -0400404cifs_enable_signing(struct TCP_Server_Info *server, bool mnt_sign_required)
Jeff Layton9ddec562013-05-26 07:00:58 -0400405{
Jeff Layton50285882013-06-27 12:45:00 -0400406 bool srv_sign_required = server->sec_mode & server->vals->signing_required;
407 bool srv_sign_enabled = server->sec_mode & server->vals->signing_enabled;
Jeff Layton38d77c52013-05-26 07:01:00 -0400408 bool mnt_sign_enabled = global_secflags & CIFSSEC_MAY_SIGN;
409
410 /*
411 * Is signing required by mnt options? If not then check
412 * global_secflags to see if it is there.
413 */
414 if (!mnt_sign_required)
415 mnt_sign_required = ((global_secflags & CIFSSEC_MUST_SIGN) ==
416 CIFSSEC_MUST_SIGN);
417
418 /*
419 * If signing is required then it's automatically enabled too,
420 * otherwise, check to see if the secflags allow it.
421 */
422 mnt_sign_enabled = mnt_sign_required ? mnt_sign_required :
423 (global_secflags & CIFSSEC_MAY_SIGN);
424
425 /* If server requires signing, does client allow it? */
426 if (srv_sign_required) {
427 if (!mnt_sign_enabled) {
428 cifs_dbg(VFS, "Server requires signing, but it's disabled in SecurityFlags!");
429 return -ENOTSUPP;
Jeff Layton9ddec562013-05-26 07:00:58 -0400430 }
Jeff Layton38d77c52013-05-26 07:01:00 -0400431 server->sign = true;
432 }
433
434 /* If client requires signing, does server allow it? */
435 if (mnt_sign_required) {
436 if (!srv_sign_enabled) {
437 cifs_dbg(VFS, "Server does not support signing!");
438 return -ENOTSUPP;
439 }
440 server->sign = true;
Jeff Layton9ddec562013-05-26 07:00:58 -0400441 }
442
443 return 0;
444}
445
Jeff Layton2190eca2013-05-26 07:00:57 -0400446#ifdef CONFIG_CIFS_WEAK_PW_HASH
447static int
Jeff Layton3f618222013-06-12 19:52:14 -0500448decode_lanman_negprot_rsp(struct TCP_Server_Info *server, NEGOTIATE_RSP *pSMBr)
Jeff Layton2190eca2013-05-26 07:00:57 -0400449{
450 __s16 tmp;
451 struct lanman_neg_rsp *rsp = (struct lanman_neg_rsp *)pSMBr;
452
453 if (server->dialect != LANMAN_PROT && server->dialect != LANMAN2_PROT)
454 return -EOPNOTSUPP;
455
Jeff Layton2190eca2013-05-26 07:00:57 -0400456 server->sec_mode = le16_to_cpu(rsp->SecurityMode);
457 server->maxReq = min_t(unsigned int,
458 le16_to_cpu(rsp->MaxMpxCount),
459 cifs_max_pending);
460 set_credits(server, server->maxReq);
461 server->maxBuf = le16_to_cpu(rsp->MaxBufSize);
Jeff Layton2190eca2013-05-26 07:00:57 -0400462 /* even though we do not use raw we might as well set this
463 accurately, in case we ever find a need for it */
464 if ((le16_to_cpu(rsp->RawMode) & RAW_ENABLE) == RAW_ENABLE) {
465 server->max_rw = 0xFF00;
466 server->capabilities = CAP_MPX_MODE | CAP_RAW_MODE;
467 } else {
468 server->max_rw = 0;/* do not need to use raw anyway */
469 server->capabilities = CAP_MPX_MODE;
470 }
471 tmp = (__s16)le16_to_cpu(rsp->ServerTimeZone);
472 if (tmp == -1) {
473 /* OS/2 often does not set timezone therefore
474 * we must use server time to calc time zone.
475 * Could deviate slightly from the right zone.
476 * Smallest defined timezone difference is 15 minutes
477 * (i.e. Nepal). Rounding up/down is done to match
478 * this requirement.
479 */
480 int val, seconds, remain, result;
481 struct timespec ts, utc;
482 utc = CURRENT_TIME;
483 ts = cnvrtDosUnixTm(rsp->SrvTime.Date,
484 rsp->SrvTime.Time, 0);
485 cifs_dbg(FYI, "SrvTime %d sec since 1970 (utc: %d) diff: %d\n",
486 (int)ts.tv_sec, (int)utc.tv_sec,
487 (int)(utc.tv_sec - ts.tv_sec));
488 val = (int)(utc.tv_sec - ts.tv_sec);
489 seconds = abs(val);
490 result = (seconds / MIN_TZ_ADJ) * MIN_TZ_ADJ;
491 remain = seconds % MIN_TZ_ADJ;
492 if (remain >= (MIN_TZ_ADJ / 2))
493 result += MIN_TZ_ADJ;
494 if (val < 0)
495 result = -result;
496 server->timeAdj = result;
497 } else {
498 server->timeAdj = (int)tmp;
499 server->timeAdj *= 60; /* also in seconds */
500 }
501 cifs_dbg(FYI, "server->timeAdj: %d seconds\n", server->timeAdj);
502
503
504 /* BB get server time for time conversions and add
505 code to use it and timezone since this is not UTC */
506
507 if (rsp->EncryptionKeyLength ==
508 cpu_to_le16(CIFS_CRYPTO_KEY_SIZE)) {
509 memcpy(server->cryptkey, rsp->EncryptionKey,
510 CIFS_CRYPTO_KEY_SIZE);
511 } else if (server->sec_mode & SECMODE_PW_ENCRYPT) {
512 return -EIO; /* need cryptkey unless plain text */
513 }
514
515 cifs_dbg(FYI, "LANMAN negotiated\n");
516 return 0;
517}
518#else
519static inline int
Jeff Layton3f618222013-06-12 19:52:14 -0500520decode_lanman_negprot_rsp(struct TCP_Server_Info *server, NEGOTIATE_RSP *pSMBr)
Jeff Layton2190eca2013-05-26 07:00:57 -0400521{
522 cifs_dbg(VFS, "mount failed, cifs module not built with CIFS_WEAK_PW_HASH support\n");
523 return -EOPNOTSUPP;
524}
525#endif
526
Jeff Layton91934002013-05-26 07:00:58 -0400527static bool
Jeff Layton3f618222013-06-12 19:52:14 -0500528should_set_ext_sec_flag(enum securityEnum sectype)
Jeff Layton91934002013-05-26 07:00:58 -0400529{
Jeff Layton3f618222013-06-12 19:52:14 -0500530 switch (sectype) {
531 case RawNTLMSSP:
532 case Kerberos:
Jeff Layton91934002013-05-26 07:00:58 -0400533 return true;
Jeff Layton3f618222013-06-12 19:52:14 -0500534 case Unspecified:
535 if (global_secflags &
536 (CIFSSEC_MAY_KRB5 | CIFSSEC_MAY_NTLMSSP))
537 return true;
538 /* Fallthrough */
539 default:
540 return false;
541 }
Jeff Layton91934002013-05-26 07:00:58 -0400542}
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544int
Pavel Shilovsky286170a2012-05-25 10:43:58 +0400545CIFSSMBNegotiate(const unsigned int xid, struct cifs_ses *ses)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 NEGOTIATE_REQ *pSMB;
548 NEGOTIATE_RSP *pSMBr;
549 int rc = 0;
550 int bytes_returned;
Steve French39798772006-05-31 22:40:51 +0000551 int i;
Jeff Layton3534b852013-05-24 07:41:01 -0400552 struct TCP_Server_Info *server = ses->server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 u16 count;
554
Jeff Layton3534b852013-05-24 07:41:01 -0400555 if (!server) {
556 WARN(1, "%s: server is NULL!\n", __func__);
557 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
Jeff Layton3534b852013-05-24 07:41:01 -0400559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 rc = smb_init(SMB_COM_NEGOTIATE, 0, NULL /* no tcon yet */ ,
561 (void **) &pSMB, (void **) &pSMBr);
562 if (rc)
563 return rc;
Steve French750d1152006-06-27 06:28:30 +0000564
Pavel Shilovsky88257362012-05-23 14:01:59 +0400565 pSMB->hdr.Mid = get_next_mid(server);
Yehuda Sadeh Weinraub100c1dd2007-06-05 21:31:16 +0000566 pSMB->hdr.Flags2 |= (SMBFLG2_UNICODE | SMBFLG2_ERR_STATUS);
Steve Frencha0136892007-10-04 20:05:09 +0000567
Jeff Layton3f618222013-06-12 19:52:14 -0500568 if (should_set_ext_sec_flag(ses->sectype)) {
Jeff Layton91934002013-05-26 07:00:58 -0400569 cifs_dbg(FYI, "Requesting extended security.");
Steve Frenchac683922009-05-06 04:16:04 +0000570 pSMB->hdr.Flags2 |= SMBFLG2_EXT_SEC;
571 }
Steve French50c2f752007-07-13 00:33:32 +0000572
Steve French39798772006-05-31 22:40:51 +0000573 count = 0;
Steve French50c2f752007-07-13 00:33:32 +0000574 for (i = 0; i < CIFS_NUM_PROT; i++) {
Steve French39798772006-05-31 22:40:51 +0000575 strncpy(pSMB->DialectsArray+count, protocols[i].name, 16);
576 count += strlen(protocols[i].name) + 1;
577 /* null at end of source and target buffers anyway */
578 }
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000579 inc_rfc1001_len(pSMB, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 pSMB->ByteCount = cpu_to_le16(count);
581
582 rc = SendReceive(xid, ses, (struct smb_hdr *) pSMB,
583 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Steve French50c2f752007-07-13 00:33:32 +0000584 if (rc != 0)
Steve French254e55e2006-06-04 05:53:15 +0000585 goto neg_err_exit;
586
Jeff Layton9bf67e52010-04-24 07:57:46 -0400587 server->dialect = le16_to_cpu(pSMBr->DialectIndex);
Joe Perchesf96637b2013-05-04 22:12:25 -0500588 cifs_dbg(FYI, "Dialect: %d\n", server->dialect);
Steve French254e55e2006-06-04 05:53:15 +0000589 /* Check wct = 1 error case */
Jeff Layton9bf67e52010-04-24 07:57:46 -0400590 if ((pSMBr->hdr.WordCount < 13) || (server->dialect == BAD_PROT)) {
Steve French254e55e2006-06-04 05:53:15 +0000591 /* core returns wct = 1, but we do not ask for core - otherwise
Steve French50c2f752007-07-13 00:33:32 +0000592 small wct just comes when dialect index is -1 indicating we
Steve French254e55e2006-06-04 05:53:15 +0000593 could not negotiate a common dialect */
594 rc = -EOPNOTSUPP;
595 goto neg_err_exit;
Steve French790fe572007-07-07 19:25:05 +0000596 } else if (pSMBr->hdr.WordCount == 13) {
Jeff Laytone598d1d82013-05-26 07:00:59 -0400597 server->negflavor = CIFS_NEGFLAVOR_LANMAN;
Jeff Layton3f618222013-06-12 19:52:14 -0500598 rc = decode_lanman_negprot_rsp(server, pSMBr);
Jeff Layton9ddec562013-05-26 07:00:58 -0400599 goto signing_check;
Steve French790fe572007-07-07 19:25:05 +0000600 } else if (pSMBr->hdr.WordCount != 17) {
Steve French254e55e2006-06-04 05:53:15 +0000601 /* unknown wct */
602 rc = -EOPNOTSUPP;
603 goto neg_err_exit;
604 }
Jeff Layton2190eca2013-05-26 07:00:57 -0400605 /* else wct == 17, NTLM or better */
606
Steve French96daf2b2011-05-27 04:34:02 +0000607 server->sec_mode = pSMBr->SecurityMode;
608 if ((server->sec_mode & SECMODE_USER) == 0)
Joe Perchesf96637b2013-05-04 22:12:25 -0500609 cifs_dbg(FYI, "share mode security\n");
Steve French39798772006-05-31 22:40:51 +0000610
Steve French254e55e2006-06-04 05:53:15 +0000611 /* one byte, so no need to convert this or EncryptionKeyLen from
612 little endian */
Pavel Shilovsky10b9b982012-03-20 12:55:09 +0300613 server->maxReq = min_t(unsigned int, le16_to_cpu(pSMBr->MaxMpxCount),
614 cifs_max_pending);
Pavel Shilovsky45275782012-05-17 17:53:29 +0400615 set_credits(server, server->maxReq);
Steve French254e55e2006-06-04 05:53:15 +0000616 /* probably no need to store and check maxvcs */
Jeff Laytonc974bef2011-10-11 06:41:32 -0400617 server->maxBuf = le32_to_cpu(pSMBr->MaxBufferSize);
Steve Frencheca6acf2009-02-20 05:43:09 +0000618 server->max_rw = le32_to_cpu(pSMBr->MaxRawSize);
Joe Perchesf96637b2013-05-04 22:12:25 -0500619 cifs_dbg(NOISY, "Max buf = %d\n", ses->server->maxBuf);
Steve French254e55e2006-06-04 05:53:15 +0000620 server->capabilities = le32_to_cpu(pSMBr->Capabilities);
Steve Frenchb815f1e52006-10-02 05:53:29 +0000621 server->timeAdj = (int)(__s16)le16_to_cpu(pSMBr->ServerTimeZone);
622 server->timeAdj *= 60;
Jeff Layton31d9e2b2013-05-26 07:00:57 -0400623
Jeff Laytone598d1d82013-05-26 07:00:59 -0400624 if (pSMBr->EncryptionKeyLength == CIFS_CRYPTO_KEY_SIZE) {
625 server->negflavor = CIFS_NEGFLAVOR_UNENCAP;
Shirish Pargaonkard3ba50b2010-10-27 15:20:36 -0500626 memcpy(ses->server->cryptkey, pSMBr->u.EncryptionKey,
Steve French254e55e2006-06-04 05:53:15 +0000627 CIFS_CRYPTO_KEY_SIZE);
Noel Powerf2910952015-05-27 09:22:10 +0100628 } else if (pSMBr->hdr.Flags2 & SMBFLG2_EXT_SEC ||
629 server->capabilities & CAP_EXTENDED_SECURITY) {
Jeff Laytone598d1d82013-05-26 07:00:59 -0400630 server->negflavor = CIFS_NEGFLAVOR_EXTENDED;
Jeff Layton3f618222013-06-12 19:52:14 -0500631 rc = decode_ext_sec_blob(ses, pSMBr);
Jeff Laytone598d1d82013-05-26 07:00:59 -0400632 } else if (server->sec_mode & SECMODE_PW_ENCRYPT) {
Steve French07cc6cf2011-05-27 04:12:29 +0000633 rc = -EIO; /* no crypt key only if plain text pwd */
Jeff Laytone598d1d82013-05-26 07:00:59 -0400634 } else {
635 server->negflavor = CIFS_NEGFLAVOR_UNENCAP;
Steve French254e55e2006-06-04 05:53:15 +0000636 server->capabilities &= ~CAP_EXTENDED_SECURITY;
Jeff Laytone598d1d82013-05-26 07:00:59 -0400637 }
Steve French254e55e2006-06-04 05:53:15 +0000638
639signing_check:
Jeff Layton9ddec562013-05-26 07:00:58 -0400640 if (!rc)
Jeff Layton38d77c52013-05-26 07:01:00 -0400641 rc = cifs_enable_signing(server, ses->sign);
Steve French50c2f752007-07-13 00:33:32 +0000642neg_err_exit:
Steve French4a6d87f2005-08-13 08:15:54 -0700643 cifs_buf_release(pSMB);
Steve French254e55e2006-06-04 05:53:15 +0000644
Joe Perchesf96637b2013-05-04 22:12:25 -0500645 cifs_dbg(FYI, "negprot rc %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return rc;
647}
648
649int
Pavel Shilovsky2e6e02a2012-05-25 11:11:39 +0400650CIFSSMBTDis(const unsigned int xid, struct cifs_tcon *tcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
652 struct smb_hdr *smb_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Joe Perchesf96637b2013-05-04 22:12:25 -0500655 cifs_dbg(FYI, "In tree disconnect\n");
Jeff Laytonf1987b42008-11-15 11:12:47 -0500656
657 /* BB: do we need to check this? These should never be NULL. */
658 if ((tcon->ses == NULL) || (tcon->ses->server == NULL))
659 return -EIO;
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 /*
Jeff Laytonf1987b42008-11-15 11:12:47 -0500662 * No need to return error on this operation if tid invalidated and
663 * closed on server already e.g. due to tcp session crashing. Also,
664 * the tcon is no longer on the list, so no need to take lock before
665 * checking this.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 */
Steve French268875b2009-06-25 00:29:21 +0000667 if ((tcon->need_reconnect) || (tcon->ses->need_reconnect))
Steve French50c2f752007-07-13 00:33:32 +0000668 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Steve French50c2f752007-07-13 00:33:32 +0000670 rc = small_smb_init(SMB_COM_TREE_DISCONNECT, 0, tcon,
Steve French09d1db52005-04-28 22:41:08 -0700671 (void **)&smb_buffer);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500672 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return rc;
Steve French133672e2007-11-13 22:41:37 +0000674
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400675 rc = SendReceiveNoRsp(xid, tcon->ses, (char *)smb_buffer, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500677 cifs_dbg(FYI, "Tree disconnect failed %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Steve French50c2f752007-07-13 00:33:32 +0000679 /* No need to return error on this operation if tid invalidated and
Jeff Laytonf1987b42008-11-15 11:12:47 -0500680 closed on server already e.g. due to tcp session crashing */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (rc == -EAGAIN)
682 rc = 0;
683
684 return rc;
685}
686
Jeff Layton766fdbb2011-01-11 07:24:21 -0500687/*
688 * This is a no-op for now. We're not really interested in the reply, but
689 * rather in the fact that the server sent one and that server->lstrp
690 * gets updated.
691 *
692 * FIXME: maybe we should consider checking that the reply matches request?
693 */
694static void
695cifs_echo_callback(struct mid_q_entry *mid)
696{
697 struct TCP_Server_Info *server = mid->callback_data;
698
Christopher Oo5fb4e282015-06-25 16:10:48 -0700699 mutex_lock(&server->srv_mutex);
Jeff Layton766fdbb2011-01-11 07:24:21 -0500700 DeleteMidQEntry(mid);
Christopher Oo5fb4e282015-06-25 16:10:48 -0700701 mutex_unlock(&server->srv_mutex);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400702 add_credits(server, 1, CIFS_ECHO_OP);
Jeff Layton766fdbb2011-01-11 07:24:21 -0500703}
704
705int
706CIFSSMBEcho(struct TCP_Server_Info *server)
707{
708 ECHO_REQ *smb;
709 int rc = 0;
Jeff Laytonfcc31cb2011-05-19 16:22:53 -0400710 struct kvec iov;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700711 struct smb_rqst rqst = { .rq_iov = &iov,
712 .rq_nvec = 1 };
Jeff Layton766fdbb2011-01-11 07:24:21 -0500713
Joe Perchesf96637b2013-05-04 22:12:25 -0500714 cifs_dbg(FYI, "In echo request\n");
Jeff Layton766fdbb2011-01-11 07:24:21 -0500715
716 rc = small_smb_init(SMB_COM_ECHO, 0, NULL, (void **)&smb);
717 if (rc)
718 return rc;
719
Steve French2ac2ad92017-05-02 13:35:20 -0500720 if (server->capabilities & CAP_UNICODE)
721 smb->hdr.Flags2 |= SMBFLG2_UNICODE;
722
Jeff Layton766fdbb2011-01-11 07:24:21 -0500723 /* set up echo request */
Steve French5443d132011-03-13 05:08:25 +0000724 smb->hdr.Tid = 0xffff;
Jeff Layton99d86c82011-01-20 21:19:25 -0500725 smb->hdr.WordCount = 1;
726 put_unaligned_le16(1, &smb->EchoCount);
Jeff Layton820a8032011-05-04 08:05:26 -0400727 put_bcc(1, &smb->hdr);
Jeff Layton766fdbb2011-01-11 07:24:21 -0500728 smb->Data[0] = 'a';
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000729 inc_rfc1001_len(smb, 3);
Jeff Laytonfcc31cb2011-05-19 16:22:53 -0400730 iov.iov_base = smb;
731 iov.iov_len = be32_to_cpu(smb->hdr.smb_buf_length) + 4;
Jeff Layton766fdbb2011-01-11 07:24:21 -0500732
Jeff Laytonfec344e2012-09-18 16:20:35 -0700733 rc = cifs_call_async(server, &rqst, NULL, cifs_echo_callback,
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400734 server, CIFS_ASYNC_OP | CIFS_ECHO_OP);
Jeff Layton766fdbb2011-01-11 07:24:21 -0500735 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500736 cifs_dbg(FYI, "Echo request failed: %d\n", rc);
Jeff Layton766fdbb2011-01-11 07:24:21 -0500737
738 cifs_small_buf_release(smb);
739
740 return rc;
741}
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743int
Pavel Shilovsky58c45c52012-05-25 10:54:49 +0400744CIFSSMBLogoff(const unsigned int xid, struct cifs_ses *ses)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 LOGOFF_ANDX_REQ *pSMB;
747 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Joe Perchesf96637b2013-05-04 22:12:25 -0500749 cifs_dbg(FYI, "In SMBLogoff for session disconnect\n");
Jeff Layton14fbf502008-11-14 13:53:46 -0500750
751 /*
752 * BB: do we need to check validity of ses and server? They should
753 * always be valid since we have an active reference. If not, that
754 * should probably be a BUG()
755 */
756 if (!ses || !ses->server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 return -EIO;
758
Steve Frenchd7b619c2010-02-25 05:36:46 +0000759 mutex_lock(&ses->session_mutex);
Steve French3b795212008-11-13 19:45:32 +0000760 if (ses->need_reconnect)
761 goto session_already_dead; /* no need to send SMBlogoff if uid
762 already closed due to reconnect */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 rc = small_smb_init(SMB_COM_LOGOFF_ANDX, 2, NULL, (void **)&pSMB);
764 if (rc) {
Steve Frenchd7b619c2010-02-25 05:36:46 +0000765 mutex_unlock(&ses->session_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return rc;
767 }
768
Pavel Shilovsky88257362012-05-23 14:01:59 +0400769 pSMB->hdr.Mid = get_next_mid(ses->server);
Steve French1982c342005-08-17 12:38:22 -0700770
Jeff Layton38d77c52013-05-26 07:01:00 -0400771 if (ses->server->sign)
772 pSMB->hdr.Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 pSMB->hdr.Uid = ses->Suid;
775
776 pSMB->AndXCommand = 0xFF;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400777 rc = SendReceiveNoRsp(xid, ses, (char *) pSMB, 0);
Steve French3b795212008-11-13 19:45:32 +0000778session_already_dead:
Steve Frenchd7b619c2010-02-25 05:36:46 +0000779 mutex_unlock(&ses->session_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 /* if session dead then we do not need to do ulogoff,
Steve French50c2f752007-07-13 00:33:32 +0000782 since server closed smb session, no sense reporting
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 error */
784 if (rc == -EAGAIN)
785 rc = 0;
786 return rc;
787}
788
789int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400790CIFSPOSIXDelFile(const unsigned int xid, struct cifs_tcon *tcon,
791 const char *fileName, __u16 type,
792 const struct nls_table *nls_codepage, int remap)
Steve French2d785a52007-07-15 01:48:57 +0000793{
794 TRANSACTION2_SPI_REQ *pSMB = NULL;
795 TRANSACTION2_SPI_RSP *pSMBr = NULL;
796 struct unlink_psx_rq *pRqD;
797 int name_len;
798 int rc = 0;
799 int bytes_returned = 0;
800 __u16 params, param_offset, offset, byte_count;
801
Joe Perchesf96637b2013-05-04 22:12:25 -0500802 cifs_dbg(FYI, "In POSIX delete\n");
Steve French2d785a52007-07-15 01:48:57 +0000803PsxDelete:
804 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
805 (void **) &pSMBr);
806 if (rc)
807 return rc;
808
809 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
810 name_len =
Steve Frenchacbbb762012-01-18 22:32:33 -0600811 cifsConvertToUTF16((__le16 *) pSMB->FileName, fileName,
812 PATH_MAX, nls_codepage, remap);
Steve French2d785a52007-07-15 01:48:57 +0000813 name_len++; /* trailing null */
814 name_len *= 2;
815 } else { /* BB add path length overrun check */
816 name_len = strnlen(fileName, PATH_MAX);
817 name_len++; /* trailing null */
818 strncpy(pSMB->FileName, fileName, name_len);
819 }
820
821 params = 6 + name_len;
822 pSMB->MaxParameterCount = cpu_to_le16(2);
823 pSMB->MaxDataCount = 0; /* BB double check this with jra */
824 pSMB->MaxSetupCount = 0;
825 pSMB->Reserved = 0;
826 pSMB->Flags = 0;
827 pSMB->Timeout = 0;
828 pSMB->Reserved2 = 0;
829 param_offset = offsetof(struct smb_com_transaction2_spi_req,
830 InformationLevel) - 4;
831 offset = param_offset + params;
832
833 /* Setup pointer to Request Data (inode type) */
834 pRqD = (struct unlink_psx_rq *)(((char *)&pSMB->hdr.Protocol) + offset);
835 pRqD->type = cpu_to_le16(type);
836 pSMB->ParameterOffset = cpu_to_le16(param_offset);
837 pSMB->DataOffset = cpu_to_le16(offset);
838 pSMB->SetupCount = 1;
839 pSMB->Reserved3 = 0;
840 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
841 byte_count = 3 /* pad */ + params + sizeof(struct unlink_psx_rq);
842
843 pSMB->DataCount = cpu_to_le16(sizeof(struct unlink_psx_rq));
844 pSMB->TotalDataCount = cpu_to_le16(sizeof(struct unlink_psx_rq));
845 pSMB->ParameterCount = cpu_to_le16(params);
846 pSMB->TotalParameterCount = pSMB->ParameterCount;
847 pSMB->InformationLevel = cpu_to_le16(SMB_POSIX_UNLINK);
848 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000849 inc_rfc1001_len(pSMB, byte_count);
Steve French2d785a52007-07-15 01:48:57 +0000850 pSMB->ByteCount = cpu_to_le16(byte_count);
851 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
852 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Steve Frenchad7a2922008-02-07 23:25:02 +0000853 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500854 cifs_dbg(FYI, "Posix delete returned %d\n", rc);
Steve French2d785a52007-07-15 01:48:57 +0000855 cifs_buf_release(pSMB);
856
Pavel Shilovsky44c58182012-05-28 14:16:31 +0400857 cifs_stats_inc(&tcon->stats.cifs_stats.num_deletes);
Steve French2d785a52007-07-15 01:48:57 +0000858
859 if (rc == -EAGAIN)
860 goto PsxDelete;
861
862 return rc;
863}
864
865int
Pavel Shilovskyed6875e2012-09-18 16:20:25 -0700866CIFSSMBDelFile(const unsigned int xid, struct cifs_tcon *tcon, const char *name,
867 struct cifs_sb_info *cifs_sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
869 DELETE_FILE_REQ *pSMB = NULL;
870 DELETE_FILE_RSP *pSMBr = NULL;
871 int rc = 0;
872 int bytes_returned;
873 int name_len;
Steve French2baa2682014-09-27 02:19:01 -0500874 int remap = cifs_remap(cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876DelFileRetry:
877 rc = smb_init(SMB_COM_DELETE, 1, tcon, (void **) &pSMB,
878 (void **) &pSMBr);
879 if (rc)
880 return rc;
881
882 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
Pavel Shilovskyed6875e2012-09-18 16:20:25 -0700883 name_len = cifsConvertToUTF16((__le16 *) pSMB->fileName, name,
884 PATH_MAX, cifs_sb->local_nls,
885 remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 name_len++; /* trailing null */
887 name_len *= 2;
Steve French09d1db52005-04-28 22:41:08 -0700888 } else { /* BB improve check for buffer overruns BB */
Pavel Shilovskyed6875e2012-09-18 16:20:25 -0700889 name_len = strnlen(name, PATH_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 name_len++; /* trailing null */
Pavel Shilovskyed6875e2012-09-18 16:20:25 -0700891 strncpy(pSMB->fileName, name, name_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
893 pSMB->SearchAttributes =
894 cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM);
895 pSMB->BufferFormat = 0x04;
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000896 inc_rfc1001_len(pSMB, name_len + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 pSMB->ByteCount = cpu_to_le16(name_len + 1);
898 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
899 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +0400900 cifs_stats_inc(&tcon->stats.cifs_stats.num_deletes);
Steve Frenchad7a2922008-02-07 23:25:02 +0000901 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500902 cifs_dbg(FYI, "Error in RMFile = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
904 cifs_buf_release(pSMB);
905 if (rc == -EAGAIN)
906 goto DelFileRetry;
907
908 return rc;
909}
910
911int
Pavel Shilovskyf958ca52012-07-10 16:14:18 +0400912CIFSSMBRmDir(const unsigned int xid, struct cifs_tcon *tcon, const char *name,
913 struct cifs_sb_info *cifs_sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
915 DELETE_DIRECTORY_REQ *pSMB = NULL;
916 DELETE_DIRECTORY_RSP *pSMBr = NULL;
917 int rc = 0;
918 int bytes_returned;
919 int name_len;
Steve French2baa2682014-09-27 02:19:01 -0500920 int remap = cifs_remap(cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Joe Perchesf96637b2013-05-04 22:12:25 -0500922 cifs_dbg(FYI, "In CIFSSMBRmDir\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923RmDirRetry:
924 rc = smb_init(SMB_COM_DELETE_DIRECTORY, 0, tcon, (void **) &pSMB,
925 (void **) &pSMBr);
926 if (rc)
927 return rc;
928
929 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
Pavel Shilovskyf958ca52012-07-10 16:14:18 +0400930 name_len = cifsConvertToUTF16((__le16 *) pSMB->DirName, name,
931 PATH_MAX, cifs_sb->local_nls,
932 remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 name_len++; /* trailing null */
934 name_len *= 2;
Steve French09d1db52005-04-28 22:41:08 -0700935 } else { /* BB improve check for buffer overruns BB */
Pavel Shilovskyf958ca52012-07-10 16:14:18 +0400936 name_len = strnlen(name, PATH_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 name_len++; /* trailing null */
Pavel Shilovskyf958ca52012-07-10 16:14:18 +0400938 strncpy(pSMB->DirName, name, name_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
940
941 pSMB->BufferFormat = 0x04;
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000942 inc_rfc1001_len(pSMB, name_len + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 pSMB->ByteCount = cpu_to_le16(name_len + 1);
944 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
945 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +0400946 cifs_stats_inc(&tcon->stats.cifs_stats.num_rmdirs);
Steve Frenchad7a2922008-02-07 23:25:02 +0000947 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500948 cifs_dbg(FYI, "Error in RMDir = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950 cifs_buf_release(pSMB);
951 if (rc == -EAGAIN)
952 goto RmDirRetry;
953 return rc;
954}
955
956int
Pavel Shilovskyf4367202012-03-17 11:41:12 +0300957CIFSSMBMkDir(const unsigned int xid, struct cifs_tcon *tcon, const char *name,
958 struct cifs_sb_info *cifs_sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
960 int rc = 0;
961 CREATE_DIRECTORY_REQ *pSMB = NULL;
962 CREATE_DIRECTORY_RSP *pSMBr = NULL;
963 int bytes_returned;
964 int name_len;
Steve French2baa2682014-09-27 02:19:01 -0500965 int remap = cifs_remap(cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Joe Perchesf96637b2013-05-04 22:12:25 -0500967 cifs_dbg(FYI, "In CIFSSMBMkDir\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968MkDirRetry:
969 rc = smb_init(SMB_COM_CREATE_DIRECTORY, 0, tcon, (void **) &pSMB,
970 (void **) &pSMBr);
971 if (rc)
972 return rc;
973
974 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
Steve Frenchacbbb762012-01-18 22:32:33 -0600975 name_len = cifsConvertToUTF16((__le16 *) pSMB->DirName, name,
Pavel Shilovskyf4367202012-03-17 11:41:12 +0300976 PATH_MAX, cifs_sb->local_nls,
977 remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 name_len++; /* trailing null */
979 name_len *= 2;
Steve French09d1db52005-04-28 22:41:08 -0700980 } else { /* BB improve check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 name_len = strnlen(name, PATH_MAX);
982 name_len++; /* trailing null */
983 strncpy(pSMB->DirName, name, name_len);
984 }
985
986 pSMB->BufferFormat = 0x04;
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000987 inc_rfc1001_len(pSMB, name_len + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 pSMB->ByteCount = cpu_to_le16(name_len + 1);
989 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
990 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +0400991 cifs_stats_inc(&tcon->stats.cifs_stats.num_mkdirs);
Steve Frenchad7a2922008-02-07 23:25:02 +0000992 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500993 cifs_dbg(FYI, "Error in Mkdir = %d\n", rc);
Steve Frencha5a2b482005-08-20 21:42:53 -0700994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 cifs_buf_release(pSMB);
996 if (rc == -EAGAIN)
997 goto MkDirRetry;
998 return rc;
999}
1000
Steve French2dd29d32007-04-23 22:07:35 +00001001int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001002CIFSPOSIXCreate(const unsigned int xid, struct cifs_tcon *tcon,
1003 __u32 posix_flags, __u64 mode, __u16 *netfid,
1004 FILE_UNIX_BASIC_INFO *pRetData, __u32 *pOplock,
1005 const char *name, const struct nls_table *nls_codepage,
1006 int remap)
Steve French2dd29d32007-04-23 22:07:35 +00001007{
1008 TRANSACTION2_SPI_REQ *pSMB = NULL;
1009 TRANSACTION2_SPI_RSP *pSMBr = NULL;
1010 int name_len;
1011 int rc = 0;
1012 int bytes_returned = 0;
Steve French2dd29d32007-04-23 22:07:35 +00001013 __u16 params, param_offset, offset, byte_count, count;
Steve Frenchad7a2922008-02-07 23:25:02 +00001014 OPEN_PSX_REQ *pdata;
1015 OPEN_PSX_RSP *psx_rsp;
Steve French2dd29d32007-04-23 22:07:35 +00001016
Joe Perchesf96637b2013-05-04 22:12:25 -05001017 cifs_dbg(FYI, "In POSIX Create\n");
Steve French2dd29d32007-04-23 22:07:35 +00001018PsxCreat:
1019 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
1020 (void **) &pSMBr);
1021 if (rc)
1022 return rc;
1023
1024 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
1025 name_len =
Steve Frenchacbbb762012-01-18 22:32:33 -06001026 cifsConvertToUTF16((__le16 *) pSMB->FileName, name,
1027 PATH_MAX, nls_codepage, remap);
Steve French2dd29d32007-04-23 22:07:35 +00001028 name_len++; /* trailing null */
1029 name_len *= 2;
1030 } else { /* BB improve the check for buffer overruns BB */
1031 name_len = strnlen(name, PATH_MAX);
1032 name_len++; /* trailing null */
1033 strncpy(pSMB->FileName, name, name_len);
1034 }
1035
1036 params = 6 + name_len;
1037 count = sizeof(OPEN_PSX_REQ);
1038 pSMB->MaxParameterCount = cpu_to_le16(2);
1039 pSMB->MaxDataCount = cpu_to_le16(1000); /* large enough */
1040 pSMB->MaxSetupCount = 0;
1041 pSMB->Reserved = 0;
1042 pSMB->Flags = 0;
1043 pSMB->Timeout = 0;
1044 pSMB->Reserved2 = 0;
1045 param_offset = offsetof(struct smb_com_transaction2_spi_req,
Steve French50c2f752007-07-13 00:33:32 +00001046 InformationLevel) - 4;
Steve French2dd29d32007-04-23 22:07:35 +00001047 offset = param_offset + params;
Steve French2dd29d32007-04-23 22:07:35 +00001048 pdata = (OPEN_PSX_REQ *)(((char *)&pSMB->hdr.Protocol) + offset);
Cyril Gorcunov8f2376a2007-10-14 17:58:43 +00001049 pdata->Level = cpu_to_le16(SMB_QUERY_FILE_UNIX_BASIC);
Steve French2dd29d32007-04-23 22:07:35 +00001050 pdata->Permissions = cpu_to_le64(mode);
Steve French50c2f752007-07-13 00:33:32 +00001051 pdata->PosixOpenFlags = cpu_to_le32(posix_flags);
Steve French2dd29d32007-04-23 22:07:35 +00001052 pdata->OpenFlags = cpu_to_le32(*pOplock);
1053 pSMB->ParameterOffset = cpu_to_le16(param_offset);
1054 pSMB->DataOffset = cpu_to_le16(offset);
1055 pSMB->SetupCount = 1;
1056 pSMB->Reserved3 = 0;
1057 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
1058 byte_count = 3 /* pad */ + params + count;
1059
1060 pSMB->DataCount = cpu_to_le16(count);
1061 pSMB->ParameterCount = cpu_to_le16(params);
1062 pSMB->TotalDataCount = pSMB->DataCount;
1063 pSMB->TotalParameterCount = pSMB->ParameterCount;
1064 pSMB->InformationLevel = cpu_to_le16(SMB_POSIX_OPEN);
1065 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00001066 inc_rfc1001_len(pSMB, byte_count);
Steve French2dd29d32007-04-23 22:07:35 +00001067 pSMB->ByteCount = cpu_to_le16(byte_count);
1068 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
1069 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
1070 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001071 cifs_dbg(FYI, "Posix create returned %d\n", rc);
Steve French2dd29d32007-04-23 22:07:35 +00001072 goto psx_create_err;
1073 }
1074
Joe Perchesf96637b2013-05-04 22:12:25 -05001075 cifs_dbg(FYI, "copying inode info\n");
Steve French2dd29d32007-04-23 22:07:35 +00001076 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
1077
Jeff Layton820a8032011-05-04 08:05:26 -04001078 if (rc || get_bcc(&pSMBr->hdr) < sizeof(OPEN_PSX_RSP)) {
Steve French2dd29d32007-04-23 22:07:35 +00001079 rc = -EIO; /* bad smb */
1080 goto psx_create_err;
1081 }
1082
1083 /* copy return information to pRetData */
Steve French50c2f752007-07-13 00:33:32 +00001084 psx_rsp = (OPEN_PSX_RSP *)((char *) &pSMBr->hdr.Protocol
Steve French2dd29d32007-04-23 22:07:35 +00001085 + le16_to_cpu(pSMBr->t2.DataOffset));
Steve French50c2f752007-07-13 00:33:32 +00001086
Steve French2dd29d32007-04-23 22:07:35 +00001087 *pOplock = le16_to_cpu(psx_rsp->OplockFlags);
Steve French790fe572007-07-07 19:25:05 +00001088 if (netfid)
Steve French2dd29d32007-04-23 22:07:35 +00001089 *netfid = psx_rsp->Fid; /* cifs fid stays in le */
1090 /* Let caller know file was created so we can set the mode. */
1091 /* Do we care about the CreateAction in any other cases? */
Steve French790fe572007-07-07 19:25:05 +00001092 if (cpu_to_le32(FILE_CREATE) == psx_rsp->CreateAction)
Steve French2dd29d32007-04-23 22:07:35 +00001093 *pOplock |= CIFS_CREATE_ACTION;
1094 /* check to make sure response data is there */
Cyril Gorcunov8f2376a2007-10-14 17:58:43 +00001095 if (psx_rsp->ReturnedLevel != cpu_to_le16(SMB_QUERY_FILE_UNIX_BASIC)) {
1096 pRetData->Type = cpu_to_le32(-1); /* unknown */
Joe Perchesf96637b2013-05-04 22:12:25 -05001097 cifs_dbg(NOISY, "unknown type\n");
Steve Frenchcbac3cb2007-04-25 11:46:06 +00001098 } else {
Jeff Layton820a8032011-05-04 08:05:26 -04001099 if (get_bcc(&pSMBr->hdr) < sizeof(OPEN_PSX_RSP)
Steve French2dd29d32007-04-23 22:07:35 +00001100 + sizeof(FILE_UNIX_BASIC_INFO)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001101 cifs_dbg(VFS, "Open response data too small\n");
Cyril Gorcunov8f2376a2007-10-14 17:58:43 +00001102 pRetData->Type = cpu_to_le32(-1);
Steve French2dd29d32007-04-23 22:07:35 +00001103 goto psx_create_err;
1104 }
Steve French50c2f752007-07-13 00:33:32 +00001105 memcpy((char *) pRetData,
Steve Frenchcbac3cb2007-04-25 11:46:06 +00001106 (char *)psx_rsp + sizeof(OPEN_PSX_RSP),
Steve French26f57362007-08-30 22:09:15 +00001107 sizeof(FILE_UNIX_BASIC_INFO));
Steve French2dd29d32007-04-23 22:07:35 +00001108 }
Steve French2dd29d32007-04-23 22:07:35 +00001109
1110psx_create_err:
1111 cifs_buf_release(pSMB);
1112
Steve French65bc98b2009-07-10 15:27:25 +00001113 if (posix_flags & SMB_O_DIRECTORY)
Pavel Shilovsky44c58182012-05-28 14:16:31 +04001114 cifs_stats_inc(&tcon->stats.cifs_stats.num_posixmkdirs);
Steve French65bc98b2009-07-10 15:27:25 +00001115 else
Pavel Shilovsky44c58182012-05-28 14:16:31 +04001116 cifs_stats_inc(&tcon->stats.cifs_stats.num_posixopens);
Steve French2dd29d32007-04-23 22:07:35 +00001117
1118 if (rc == -EAGAIN)
1119 goto PsxCreat;
1120
Steve French50c2f752007-07-13 00:33:32 +00001121 return rc;
Steve French2dd29d32007-04-23 22:07:35 +00001122}
1123
Steve Frencha9d02ad2005-08-24 23:06:05 -07001124static __u16 convert_disposition(int disposition)
1125{
1126 __u16 ofun = 0;
1127
1128 switch (disposition) {
1129 case FILE_SUPERSEDE:
1130 ofun = SMBOPEN_OCREATE | SMBOPEN_OTRUNC;
1131 break;
1132 case FILE_OPEN:
1133 ofun = SMBOPEN_OAPPEND;
1134 break;
1135 case FILE_CREATE:
1136 ofun = SMBOPEN_OCREATE;
1137 break;
1138 case FILE_OPEN_IF:
1139 ofun = SMBOPEN_OCREATE | SMBOPEN_OAPPEND;
1140 break;
1141 case FILE_OVERWRITE:
1142 ofun = SMBOPEN_OTRUNC;
1143 break;
1144 case FILE_OVERWRITE_IF:
1145 ofun = SMBOPEN_OCREATE | SMBOPEN_OTRUNC;
1146 break;
1147 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001148 cifs_dbg(FYI, "unknown disposition %d\n", disposition);
Steve Frencha9d02ad2005-08-24 23:06:05 -07001149 ofun = SMBOPEN_OAPPEND; /* regular open */
1150 }
1151 return ofun;
1152}
1153
Jeff Layton35fc37d2008-05-14 10:22:03 -07001154static int
1155access_flags_to_smbopen_mode(const int access_flags)
1156{
1157 int masked_flags = access_flags & (GENERIC_READ | GENERIC_WRITE);
1158
1159 if (masked_flags == GENERIC_READ)
1160 return SMBOPEN_READ;
1161 else if (masked_flags == GENERIC_WRITE)
1162 return SMBOPEN_WRITE;
1163
1164 /* just go for read/write */
1165 return SMBOPEN_READWRITE;
1166}
1167
Steve Frencha9d02ad2005-08-24 23:06:05 -07001168int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001169SMBLegacyOpen(const unsigned int xid, struct cifs_tcon *tcon,
Steve Frencha9d02ad2005-08-24 23:06:05 -07001170 const char *fileName, const int openDisposition,
Steve Frenchad7a2922008-02-07 23:25:02 +00001171 const int access_flags, const int create_options, __u16 *netfid,
1172 int *pOplock, FILE_ALL_INFO *pfile_info,
Steve Frencha9d02ad2005-08-24 23:06:05 -07001173 const struct nls_table *nls_codepage, int remap)
1174{
1175 int rc = -EACCES;
1176 OPENX_REQ *pSMB = NULL;
1177 OPENX_RSP *pSMBr = NULL;
1178 int bytes_returned;
1179 int name_len;
1180 __u16 count;
1181
1182OldOpenRetry:
1183 rc = smb_init(SMB_COM_OPEN_ANDX, 15, tcon, (void **) &pSMB,
1184 (void **) &pSMBr);
1185 if (rc)
1186 return rc;
1187
1188 pSMB->AndXCommand = 0xFF; /* none */
1189
1190 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
1191 count = 1; /* account for one byte pad to word boundary */
1192 name_len =
Steve Frenchacbbb762012-01-18 22:32:33 -06001193 cifsConvertToUTF16((__le16 *) (pSMB->fileName + 1),
1194 fileName, PATH_MAX, nls_codepage, remap);
Steve Frencha9d02ad2005-08-24 23:06:05 -07001195 name_len++; /* trailing null */
1196 name_len *= 2;
1197 } else { /* BB improve check for buffer overruns BB */
1198 count = 0; /* no pad */
1199 name_len = strnlen(fileName, PATH_MAX);
1200 name_len++; /* trailing null */
1201 strncpy(pSMB->fileName, fileName, name_len);
1202 }
1203 if (*pOplock & REQ_OPLOCK)
1204 pSMB->OpenFlags = cpu_to_le16(REQ_OPLOCK);
Steve French26f57362007-08-30 22:09:15 +00001205 else if (*pOplock & REQ_BATCHOPLOCK)
Steve Frencha9d02ad2005-08-24 23:06:05 -07001206 pSMB->OpenFlags = cpu_to_le16(REQ_BATCHOPLOCK);
Steve French26f57362007-08-30 22:09:15 +00001207
Steve Frencha9d02ad2005-08-24 23:06:05 -07001208 pSMB->OpenFlags |= cpu_to_le16(REQ_MORE_INFO);
Jeff Layton35fc37d2008-05-14 10:22:03 -07001209 pSMB->Mode = cpu_to_le16(access_flags_to_smbopen_mode(access_flags));
Steve Frencha9d02ad2005-08-24 23:06:05 -07001210 pSMB->Mode |= cpu_to_le16(0x40); /* deny none */
1211 /* set file as system file if special file such
1212 as fifo and server expecting SFU style and
1213 no Unix extensions */
1214
Steve French790fe572007-07-07 19:25:05 +00001215 if (create_options & CREATE_OPTION_SPECIAL)
1216 pSMB->FileAttributes = cpu_to_le16(ATTR_SYSTEM);
Steve Frenchad7a2922008-02-07 23:25:02 +00001217 else /* BB FIXME BB */
1218 pSMB->FileAttributes = cpu_to_le16(0/*ATTR_NORMAL*/);
Steve Frencha9d02ad2005-08-24 23:06:05 -07001219
Jeff Layton67750fb2008-05-09 22:28:02 +00001220 if (create_options & CREATE_OPTION_READONLY)
1221 pSMB->FileAttributes |= cpu_to_le16(ATTR_READONLY);
Steve Frencha9d02ad2005-08-24 23:06:05 -07001222
1223 /* BB FIXME BB */
Steve French50c2f752007-07-13 00:33:32 +00001224/* pSMB->CreateOptions = cpu_to_le32(create_options &
1225 CREATE_OPTIONS_MASK); */
Steve Frencha9d02ad2005-08-24 23:06:05 -07001226 /* BB FIXME END BB */
Steve French3e87d802005-09-18 20:49:21 -07001227
1228 pSMB->Sattr = cpu_to_le16(ATTR_HIDDEN | ATTR_SYSTEM | ATTR_DIRECTORY);
Steve French70ca7342005-09-22 16:32:06 -07001229 pSMB->OpenFunction = cpu_to_le16(convert_disposition(openDisposition));
Steve Frencha9d02ad2005-08-24 23:06:05 -07001230 count += name_len;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00001231 inc_rfc1001_len(pSMB, count);
Steve Frencha9d02ad2005-08-24 23:06:05 -07001232
1233 pSMB->ByteCount = cpu_to_le16(count);
Steve Frencha9d02ad2005-08-24 23:06:05 -07001234 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
Jeff Layton77499812011-01-11 07:24:23 -05001235 (struct smb_hdr *)pSMBr, &bytes_returned, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +04001236 cifs_stats_inc(&tcon->stats.cifs_stats.num_opens);
Steve Frencha9d02ad2005-08-24 23:06:05 -07001237 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001238 cifs_dbg(FYI, "Error in Open = %d\n", rc);
Steve Frencha9d02ad2005-08-24 23:06:05 -07001239 } else {
1240 /* BB verify if wct == 15 */
1241
Steve French582d21e2008-05-13 04:54:12 +00001242/* *pOplock = pSMBr->OplockLevel; */ /* BB take from action field*/
Steve Frencha9d02ad2005-08-24 23:06:05 -07001243
1244 *netfid = pSMBr->Fid; /* cifs fid stays in le */
1245 /* Let caller know file was created so we can set the mode. */
1246 /* Do we care about the CreateAction in any other cases? */
1247 /* BB FIXME BB */
Steve French790fe572007-07-07 19:25:05 +00001248/* if (cpu_to_le32(FILE_CREATE) == pSMBr->CreateAction)
Steve Frencha9d02ad2005-08-24 23:06:05 -07001249 *pOplock |= CIFS_CREATE_ACTION; */
1250 /* BB FIXME END */
1251
Steve French790fe572007-07-07 19:25:05 +00001252 if (pfile_info) {
Steve Frencha9d02ad2005-08-24 23:06:05 -07001253 pfile_info->CreationTime = 0; /* BB convert CreateTime*/
1254 pfile_info->LastAccessTime = 0; /* BB fixme */
1255 pfile_info->LastWriteTime = 0; /* BB fixme */
1256 pfile_info->ChangeTime = 0; /* BB fixme */
Steve French70ca7342005-09-22 16:32:06 -07001257 pfile_info->Attributes =
Steve French50c2f752007-07-13 00:33:32 +00001258 cpu_to_le32(le16_to_cpu(pSMBr->FileAttributes));
Steve Frencha9d02ad2005-08-24 23:06:05 -07001259 /* the file_info buf is endian converted by caller */
Steve French70ca7342005-09-22 16:32:06 -07001260 pfile_info->AllocationSize =
1261 cpu_to_le64(le32_to_cpu(pSMBr->EndOfFile));
1262 pfile_info->EndOfFile = pfile_info->AllocationSize;
Steve Frencha9d02ad2005-08-24 23:06:05 -07001263 pfile_info->NumberOfLinks = cpu_to_le32(1);
Jeff Layton9a8165f2008-10-17 21:03:20 -04001264 pfile_info->DeletePending = 0;
Steve Frencha9d02ad2005-08-24 23:06:05 -07001265 }
1266 }
1267
1268 cifs_buf_release(pSMB);
1269 if (rc == -EAGAIN)
1270 goto OldOpenRetry;
1271 return rc;
1272}
1273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274int
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001275CIFS_open(const unsigned int xid, struct cifs_open_parms *oparms, int *oplock,
1276 FILE_ALL_INFO *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
1278 int rc = -EACCES;
Pavel Shilovsky9bf4fa02014-01-16 15:53:33 +04001279 OPEN_REQ *req = NULL;
1280 OPEN_RSP *rsp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 int bytes_returned;
1282 int name_len;
1283 __u16 count;
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001284 struct cifs_sb_info *cifs_sb = oparms->cifs_sb;
1285 struct cifs_tcon *tcon = oparms->tcon;
Steve French2baa2682014-09-27 02:19:01 -05001286 int remap = cifs_remap(cifs_sb);
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001287 const struct nls_table *nls = cifs_sb->local_nls;
1288 int create_options = oparms->create_options;
1289 int desired_access = oparms->desired_access;
1290 int disposition = oparms->disposition;
1291 const char *path = oparms->path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293openRetry:
Pavel Shilovsky9bf4fa02014-01-16 15:53:33 +04001294 rc = smb_init(SMB_COM_NT_CREATE_ANDX, 24, tcon, (void **)&req,
1295 (void **)&rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if (rc)
1297 return rc;
1298
Pavel Shilovsky9bf4fa02014-01-16 15:53:33 +04001299 /* no commands go after this */
1300 req->AndXCommand = 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Pavel Shilovsky9bf4fa02014-01-16 15:53:33 +04001302 if (req->hdr.Flags2 & SMBFLG2_UNICODE) {
1303 /* account for one byte pad to word boundary */
1304 count = 1;
1305 name_len = cifsConvertToUTF16((__le16 *)(req->fileName + 1),
1306 path, PATH_MAX, nls, remap);
1307 /* trailing null */
1308 name_len++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 name_len *= 2;
Pavel Shilovsky9bf4fa02014-01-16 15:53:33 +04001310 req->NameLength = cpu_to_le16(name_len);
1311 } else {
1312 /* BB improve check for buffer overruns BB */
1313 /* no pad */
1314 count = 0;
1315 name_len = strnlen(path, PATH_MAX);
1316 /* trailing null */
1317 name_len++;
1318 req->NameLength = cpu_to_le16(name_len);
1319 strncpy(req->fileName, path, name_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
Jeff Layton67750fb2008-05-09 22:28:02 +00001321
Pavel Shilovsky9bf4fa02014-01-16 15:53:33 +04001322 if (*oplock & REQ_OPLOCK)
1323 req->OpenFlags = cpu_to_le32(REQ_OPLOCK);
1324 else if (*oplock & REQ_BATCHOPLOCK)
1325 req->OpenFlags = cpu_to_le32(REQ_BATCHOPLOCK);
1326
1327 req->DesiredAccess = cpu_to_le32(desired_access);
1328 req->AllocationSize = 0;
1329
1330 /*
1331 * Set file as system file if special file such as fifo and server
1332 * expecting SFU style and no Unix extensions.
1333 */
1334 if (create_options & CREATE_OPTION_SPECIAL)
1335 req->FileAttributes = cpu_to_le32(ATTR_SYSTEM);
1336 else
1337 req->FileAttributes = cpu_to_le32(ATTR_NORMAL);
1338
1339 /*
1340 * XP does not handle ATTR_POSIX_SEMANTICS but it helps speed up case
1341 * sensitive checks for other servers such as Samba.
1342 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 if (tcon->ses->capabilities & CAP_UNIX)
Pavel Shilovsky9bf4fa02014-01-16 15:53:33 +04001344 req->FileAttributes |= cpu_to_le32(ATTR_POSIX_SEMANTICS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Jeff Layton67750fb2008-05-09 22:28:02 +00001346 if (create_options & CREATE_OPTION_READONLY)
Pavel Shilovsky9bf4fa02014-01-16 15:53:33 +04001347 req->FileAttributes |= cpu_to_le32(ATTR_READONLY);
Jeff Layton67750fb2008-05-09 22:28:02 +00001348
Pavel Shilovsky9bf4fa02014-01-16 15:53:33 +04001349 req->ShareAccess = cpu_to_le32(FILE_SHARE_ALL);
1350 req->CreateDisposition = cpu_to_le32(disposition);
1351 req->CreateOptions = cpu_to_le32(create_options & CREATE_OPTIONS_MASK);
1352
Steve French09d1db52005-04-28 22:41:08 -07001353 /* BB Expirement with various impersonation levels and verify */
Pavel Shilovsky9bf4fa02014-01-16 15:53:33 +04001354 req->ImpersonationLevel = cpu_to_le32(SECURITY_IMPERSONATION);
1355 req->SecurityFlags = SECURITY_CONTEXT_TRACKING|SECURITY_EFFECTIVE_ONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 count += name_len;
Pavel Shilovsky9bf4fa02014-01-16 15:53:33 +04001358 inc_rfc1001_len(req, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Pavel Shilovsky9bf4fa02014-01-16 15:53:33 +04001360 req->ByteCount = cpu_to_le16(count);
1361 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *)req,
1362 (struct smb_hdr *)rsp, &bytes_returned, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +04001363 cifs_stats_inc(&tcon->stats.cifs_stats.num_opens);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001365 cifs_dbg(FYI, "Error in Open = %d\n", rc);
Pavel Shilovsky9bf4fa02014-01-16 15:53:33 +04001366 cifs_buf_release(req);
1367 if (rc == -EAGAIN)
1368 goto openRetry;
1369 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 }
Steve Frencha5a2b482005-08-20 21:42:53 -07001371
Pavel Shilovsky9bf4fa02014-01-16 15:53:33 +04001372 /* 1 byte no need to le_to_cpu */
1373 *oplock = rsp->OplockLevel;
1374 /* cifs fid stays in le */
Pavel Shilovskyd81b8a42014-01-16 15:53:36 +04001375 oparms->fid->netfid = rsp->Fid;
Pavel Shilovsky9bf4fa02014-01-16 15:53:33 +04001376
1377 /* Let caller know file was created so we can set the mode. */
1378 /* Do we care about the CreateAction in any other cases? */
1379 if (cpu_to_le32(FILE_CREATE) == rsp->CreateAction)
1380 *oplock |= CIFS_CREATE_ACTION;
1381
1382 if (buf) {
1383 /* copy from CreationTime to Attributes */
1384 memcpy((char *)buf, (char *)&rsp->CreationTime, 36);
1385 /* the file_info buf is endian converted by caller */
1386 buf->AllocationSize = rsp->AllocationSize;
1387 buf->EndOfFile = rsp->EndOfFile;
1388 buf->NumberOfLinks = cpu_to_le32(1);
1389 buf->DeletePending = 0;
1390 }
1391
1392 cifs_buf_release(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 return rc;
1394}
1395
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001396/*
1397 * Discard any remaining data in the current SMB. To do this, we borrow the
1398 * current bigbuf.
1399 */
1400static int
Pavel Shilovsky6cc3b242016-02-27 11:58:18 +03001401discard_remaining_data(struct TCP_Server_Info *server)
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001402{
Pavel Shilovsky5ffef7b2012-03-23 14:28:03 -04001403 unsigned int rfclen = get_rfc1002_length(server->smallbuf);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001404 int remaining = rfclen + 4 - server->total_read;
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001405
1406 while (remaining > 0) {
1407 int length;
1408
1409 length = cifs_read_from_socket(server, server->bigbuf,
1410 min_t(unsigned int, remaining,
Pavel Shilovsky1887f602012-05-17 12:45:31 +04001411 CIFSMaxBufSize + MAX_HEADER_SIZE(server)));
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001412 if (length < 0)
1413 return length;
1414 server->total_read += length;
1415 remaining -= length;
1416 }
1417
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001418 return 0;
1419}
1420
Pavel Shilovsky6cc3b242016-02-27 11:58:18 +03001421static int
1422cifs_readv_discard(struct TCP_Server_Info *server, struct mid_q_entry *mid)
1423{
1424 int length;
1425 struct cifs_readdata *rdata = mid->callback_data;
1426
1427 length = discard_remaining_data(server);
1428 dequeue_mid(mid, rdata->result);
Sachin Prabhud8fd99d2017-03-03 15:41:38 -08001429 mid->resp_buf = server->smallbuf;
1430 server->smallbuf = NULL;
Pavel Shilovsky6cc3b242016-02-27 11:58:18 +03001431 return length;
1432}
1433
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001434int
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001435cifs_readv_receive(struct TCP_Server_Info *server, struct mid_q_entry *mid)
1436{
1437 int length, len;
Jeff Layton8d5ce4d2012-05-16 07:13:16 -04001438 unsigned int data_offset, data_len;
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001439 struct cifs_readdata *rdata = mid->callback_data;
Pavel Shilovsky5ffef7b2012-03-23 14:28:03 -04001440 char *buf = server->smallbuf;
1441 unsigned int buflen = get_rfc1002_length(buf) + 4;
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001442
Joe Perchesf96637b2013-05-04 22:12:25 -05001443 cifs_dbg(FYI, "%s: mid=%llu offset=%llu bytes=%u\n",
1444 __func__, mid->mid, rdata->offset, rdata->bytes);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001445
1446 /*
1447 * read the rest of READ_RSP header (sans Data array), or whatever we
1448 * can if there's not enough data. At this point, we've read down to
1449 * the Mid.
1450 */
Pavel Shilovskyeb378712012-05-17 13:02:51 +04001451 len = min_t(unsigned int, buflen, server->vals->read_rsp_size) -
Pavel Shilovsky1887f602012-05-17 12:45:31 +04001452 HEADER_SIZE(server) + 1;
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001453
Al Viroa6137302016-01-09 19:37:16 -05001454 length = cifs_read_from_socket(server,
1455 buf + HEADER_SIZE(server) - 1, len);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001456 if (length < 0)
1457 return length;
1458 server->total_read += length;
1459
Pavel Shilovsky92d7d3e2017-07-08 14:32:00 -07001460 if (server->ops->is_session_expired &&
1461 server->ops->is_session_expired(buf)) {
1462 cifs_reconnect(server);
1463 wake_up(&server->response_q);
1464 return -1;
1465 }
1466
Pavel Shilovsky6cc3b242016-02-27 11:58:18 +03001467 if (server->ops->is_status_pending &&
1468 server->ops->is_status_pending(buf, server, 0)) {
1469 discard_remaining_data(server);
1470 return -1;
1471 }
1472
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001473 /* Was the SMB read successful? */
Pavel Shilovskyeb378712012-05-17 13:02:51 +04001474 rdata->result = server->ops->map_error(buf, false);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001475 if (rdata->result != 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001476 cifs_dbg(FYI, "%s: server returned error %d\n",
1477 __func__, rdata->result);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001478 return cifs_readv_discard(server, mid);
1479 }
1480
1481 /* Is there enough to get to the rest of the READ_RSP header? */
Pavel Shilovskyeb378712012-05-17 13:02:51 +04001482 if (server->total_read < server->vals->read_rsp_size) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001483 cifs_dbg(FYI, "%s: server returned short header. got=%u expected=%zu\n",
1484 __func__, server->total_read,
1485 server->vals->read_rsp_size);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001486 rdata->result = -EIO;
1487 return cifs_readv_discard(server, mid);
1488 }
1489
Pavel Shilovskyeb378712012-05-17 13:02:51 +04001490 data_offset = server->ops->read_data_offset(buf) + 4;
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001491 if (data_offset < server->total_read) {
1492 /*
1493 * win2k8 sometimes sends an offset of 0 when the read
1494 * is beyond the EOF. Treat it as if the data starts just after
1495 * the header.
1496 */
Joe Perchesf96637b2013-05-04 22:12:25 -05001497 cifs_dbg(FYI, "%s: data offset (%u) inside read response header\n",
1498 __func__, data_offset);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001499 data_offset = server->total_read;
1500 } else if (data_offset > MAX_CIFS_SMALL_BUFFER_SIZE) {
1501 /* data_offset is beyond the end of smallbuf */
Joe Perchesf96637b2013-05-04 22:12:25 -05001502 cifs_dbg(FYI, "%s: data offset (%u) beyond end of smallbuf\n",
1503 __func__, data_offset);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001504 rdata->result = -EIO;
1505 return cifs_readv_discard(server, mid);
1506 }
1507
Joe Perchesf96637b2013-05-04 22:12:25 -05001508 cifs_dbg(FYI, "%s: total_read=%u data_offset=%u\n",
1509 __func__, server->total_read, data_offset);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001510
1511 len = data_offset - server->total_read;
1512 if (len > 0) {
1513 /* read any junk before data into the rest of smallbuf */
Al Viroa6137302016-01-09 19:37:16 -05001514 length = cifs_read_from_socket(server,
1515 buf + server->total_read, len);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001516 if (length < 0)
1517 return length;
1518 server->total_read += length;
1519 }
1520
1521 /* set up first iov for signature check */
Jeff Layton58195752012-09-19 06:22:34 -07001522 rdata->iov.iov_base = buf;
1523 rdata->iov.iov_len = server->total_read;
Joe Perchesf96637b2013-05-04 22:12:25 -05001524 cifs_dbg(FYI, "0: iov_base=%p iov_len=%zu\n",
1525 rdata->iov.iov_base, rdata->iov.iov_len);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001526
1527 /* how much data is in the response? */
Pavel Shilovskyeb378712012-05-17 13:02:51 +04001528 data_len = server->ops->read_data_length(buf);
Pavel Shilovsky5ffef7b2012-03-23 14:28:03 -04001529 if (data_offset + data_len > buflen) {
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001530 /* data_len is corrupt -- discard frame */
1531 rdata->result = -EIO;
1532 return cifs_readv_discard(server, mid);
1533 }
1534
Jeff Layton8321fec2012-09-19 06:22:32 -07001535 length = rdata->read_into_pages(server, rdata, data_len);
1536 if (length < 0)
1537 return length;
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001538
Jeff Layton8321fec2012-09-19 06:22:32 -07001539 server->total_read += length;
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001540
Joe Perchesf96637b2013-05-04 22:12:25 -05001541 cifs_dbg(FYI, "total_read=%u buflen=%u remaining=%u\n",
1542 server->total_read, buflen, data_len);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001543
1544 /* discard anything left over */
Pavel Shilovsky5ffef7b2012-03-23 14:28:03 -04001545 if (server->total_read < buflen)
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001546 return cifs_readv_discard(server, mid);
1547
1548 dequeue_mid(mid, false);
Sachin Prabhud8fd99d2017-03-03 15:41:38 -08001549 mid->resp_buf = server->smallbuf;
1550 server->smallbuf = NULL;
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001551 return length;
1552}
1553
1554static void
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001555cifs_readv_callback(struct mid_q_entry *mid)
1556{
1557 struct cifs_readdata *rdata = mid->callback_data;
1558 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
1559 struct TCP_Server_Info *server = tcon->ses->server;
Jeff Layton58195752012-09-19 06:22:34 -07001560 struct smb_rqst rqst = { .rq_iov = &rdata->iov,
1561 .rq_nvec = 1,
Jeff Layton8321fec2012-09-19 06:22:32 -07001562 .rq_pages = rdata->pages,
1563 .rq_npages = rdata->nr_pages,
1564 .rq_pagesz = rdata->pagesz,
1565 .rq_tailsz = rdata->tailsz };
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001566
Joe Perchesf96637b2013-05-04 22:12:25 -05001567 cifs_dbg(FYI, "%s: mid=%llu state=%d result=%d bytes=%u\n",
1568 __func__, mid->mid, mid->mid_state, rdata->result,
1569 rdata->bytes);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001570
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001571 switch (mid->mid_state) {
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001572 case MID_RESPONSE_RECEIVED:
1573 /* result already set, check signature */
Jeff Layton38d77c52013-05-26 07:01:00 -04001574 if (server->sign) {
Steve French985e4ff02012-08-03 09:42:45 -05001575 int rc = 0;
1576
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -07001577 rc = cifs_verify_signature(&rqst, server,
Jeff Layton0124cc42013-04-03 11:55:03 -04001578 mid->sequence_number);
Steve French985e4ff02012-08-03 09:42:45 -05001579 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05001580 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
1581 rc);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001582 }
1583 /* FIXME: should this be counted toward the initiating task? */
Pavel Shilovsky34a54d62014-07-10 10:03:29 +04001584 task_io_account_read(rdata->got_bytes);
1585 cifs_stats_bytes_read(tcon, rdata->got_bytes);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001586 break;
1587 case MID_REQUEST_SUBMITTED:
1588 case MID_RETRY_NEEDED:
1589 rdata->result = -EAGAIN;
Pavel Shilovskyd913ed12014-07-10 11:31:48 +04001590 if (server->sign && rdata->got_bytes)
1591 /* reset bytes number since we can not check a sign */
1592 rdata->got_bytes = 0;
1593 /* FIXME: should this be counted toward the initiating task? */
1594 task_io_account_read(rdata->got_bytes);
1595 cifs_stats_bytes_read(tcon, rdata->got_bytes);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001596 break;
1597 default:
1598 rdata->result = -EIO;
1599 }
1600
Jeff Laytonda472fc2012-03-23 14:40:53 -04001601 queue_work(cifsiod_wq, &rdata->work);
Christopher Oo5fb4e282015-06-25 16:10:48 -07001602 mutex_lock(&server->srv_mutex);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001603 DeleteMidQEntry(mid);
Christopher Oo5fb4e282015-06-25 16:10:48 -07001604 mutex_unlock(&server->srv_mutex);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04001605 add_credits(server, 1, 0);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001606}
1607
1608/* cifs_async_readv - send an async write, and set up mid to handle result */
1609int
1610cifs_async_readv(struct cifs_readdata *rdata)
1611{
1612 int rc;
1613 READ_REQ *smb = NULL;
1614 int wct;
1615 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
Jeff Layton58195752012-09-19 06:22:34 -07001616 struct smb_rqst rqst = { .rq_iov = &rdata->iov,
Jeff Laytonfec344e2012-09-18 16:20:35 -07001617 .rq_nvec = 1 };
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001618
Joe Perchesf96637b2013-05-04 22:12:25 -05001619 cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n",
1620 __func__, rdata->offset, rdata->bytes);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001621
1622 if (tcon->ses->capabilities & CAP_LARGE_FILES)
1623 wct = 12;
1624 else {
1625 wct = 10; /* old style read */
1626 if ((rdata->offset >> 32) > 0) {
1627 /* can not handle this big offset for old */
1628 return -EIO;
1629 }
1630 }
1631
1632 rc = small_smb_init(SMB_COM_READ_ANDX, wct, tcon, (void **)&smb);
1633 if (rc)
1634 return rc;
1635
1636 smb->hdr.Pid = cpu_to_le16((__u16)rdata->pid);
1637 smb->hdr.PidHigh = cpu_to_le16((__u16)(rdata->pid >> 16));
1638
1639 smb->AndXCommand = 0xFF; /* none */
Pavel Shilovsky4b4de762012-09-18 16:20:26 -07001640 smb->Fid = rdata->cfile->fid.netfid;
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001641 smb->OffsetLow = cpu_to_le32(rdata->offset & 0xFFFFFFFF);
1642 if (wct == 12)
1643 smb->OffsetHigh = cpu_to_le32(rdata->offset >> 32);
1644 smb->Remaining = 0;
1645 smb->MaxCount = cpu_to_le16(rdata->bytes & 0xFFFF);
1646 smb->MaxCountHigh = cpu_to_le32(rdata->bytes >> 16);
1647 if (wct == 12)
1648 smb->ByteCount = 0;
1649 else {
1650 /* old style read */
1651 struct smb_com_readx_req *smbr =
1652 (struct smb_com_readx_req *)smb;
1653 smbr->ByteCount = 0;
1654 }
1655
1656 /* 4 for RFC1001 length + 1 for BCC */
Jeff Layton58195752012-09-19 06:22:34 -07001657 rdata->iov.iov_base = smb;
1658 rdata->iov.iov_len = be32_to_cpu(smb->hdr.smb_buf_length) + 4;
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001659
Jeff Layton6993f742012-05-16 07:13:17 -04001660 kref_get(&rdata->refcount);
Jeff Laytonfec344e2012-09-18 16:20:35 -07001661 rc = cifs_call_async(tcon->ses->server, &rqst, cifs_readv_receive,
1662 cifs_readv_callback, rdata, 0);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001663
1664 if (rc == 0)
Pavel Shilovsky44c58182012-05-28 14:16:31 +04001665 cifs_stats_inc(&tcon->stats.cifs_stats.num_reads);
Jeff Layton6993f742012-05-16 07:13:17 -04001666 else
1667 kref_put(&rdata->refcount, cifs_readdata_release);
Jeff Laytone28bc5b2011-10-19 15:30:07 -04001668
1669 cifs_small_buf_release(smb);
1670 return rc;
1671}
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001674CIFSSMBRead(const unsigned int xid, struct cifs_io_parms *io_parms,
1675 unsigned int *nbytes, char **buf, int *pbuf_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676{
1677 int rc = -EACCES;
1678 READ_REQ *pSMB = NULL;
1679 READ_RSP *pSMBr = NULL;
1680 char *pReadData = NULL;
Steve Frenchbfa0d752005-08-31 21:50:37 -07001681 int wct;
Steve Frenchec637e32005-12-12 20:53:18 -08001682 int resp_buf_type = 0;
1683 struct kvec iov[1];
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00001684 __u32 pid = io_parms->pid;
1685 __u16 netfid = io_parms->netfid;
1686 __u64 offset = io_parms->offset;
Steve French96daf2b2011-05-27 04:34:02 +00001687 struct cifs_tcon *tcon = io_parms->tcon;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00001688 unsigned int count = io_parms->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Joe Perchesf96637b2013-05-04 22:12:25 -05001690 cifs_dbg(FYI, "Reading %d bytes on fid %d\n", count, netfid);
Steve French790fe572007-07-07 19:25:05 +00001691 if (tcon->ses->capabilities & CAP_LARGE_FILES)
Steve Frenchbfa0d752005-08-31 21:50:37 -07001692 wct = 12;
Steve French4c3130e2008-12-09 00:28:16 +00001693 else {
Steve Frenchbfa0d752005-08-31 21:50:37 -07001694 wct = 10; /* old style read */
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00001695 if ((offset >> 32) > 0) {
Steve French4c3130e2008-12-09 00:28:16 +00001696 /* can not handle this big offset for old */
1697 return -EIO;
1698 }
1699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 *nbytes = 0;
Steve Frenchec637e32005-12-12 20:53:18 -08001702 rc = small_smb_init(SMB_COM_READ_ANDX, wct, tcon, (void **) &pSMB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 if (rc)
1704 return rc;
1705
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00001706 pSMB->hdr.Pid = cpu_to_le16((__u16)pid);
1707 pSMB->hdr.PidHigh = cpu_to_le16((__u16)(pid >> 16));
1708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 /* tcon and ses pointer are checked in smb_init */
1710 if (tcon->ses->server == NULL)
1711 return -ECONNABORTED;
1712
Steve Frenchec637e32005-12-12 20:53:18 -08001713 pSMB->AndXCommand = 0xFF; /* none */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 pSMB->Fid = netfid;
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00001715 pSMB->OffsetLow = cpu_to_le32(offset & 0xFFFFFFFF);
Steve French790fe572007-07-07 19:25:05 +00001716 if (wct == 12)
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +00001717 pSMB->OffsetHigh = cpu_to_le32(offset >> 32);
Steve Frenchbfa0d752005-08-31 21:50:37 -07001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 pSMB->Remaining = 0;
1720 pSMB->MaxCount = cpu_to_le16(count & 0xFFFF);
1721 pSMB->MaxCountHigh = cpu_to_le32(count >> 16);
Steve French790fe572007-07-07 19:25:05 +00001722 if (wct == 12)
Steve Frenchbfa0d752005-08-31 21:50:37 -07001723 pSMB->ByteCount = 0; /* no need to do le conversion since 0 */
1724 else {
1725 /* old style read */
Steve French50c2f752007-07-13 00:33:32 +00001726 struct smb_com_readx_req *pSMBW =
Steve Frenchbfa0d752005-08-31 21:50:37 -07001727 (struct smb_com_readx_req *)pSMB;
Steve Frenchec637e32005-12-12 20:53:18 -08001728 pSMBW->ByteCount = 0;
Steve Frenchbfa0d752005-08-31 21:50:37 -07001729 }
Steve Frenchec637e32005-12-12 20:53:18 -08001730
1731 iov[0].iov_base = (char *)pSMB;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00001732 iov[0].iov_len = be32_to_cpu(pSMB->hdr.smb_buf_length) + 4;
Steve Frencha761ac52007-10-18 21:45:27 +00001733 rc = SendReceive2(xid, tcon->ses, iov, 1 /* num iovecs */,
Jeff Layton77499812011-01-11 07:24:23 -05001734 &resp_buf_type, CIFS_LOG_ERROR);
Pavel Shilovsky44c58182012-05-28 14:16:31 +04001735 cifs_stats_inc(&tcon->stats.cifs_stats.num_reads);
Steve Frenchec637e32005-12-12 20:53:18 -08001736 pSMBr = (READ_RSP *)iov[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001738 cifs_dbg(VFS, "Send error in read = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 } else {
1740 int data_length = le16_to_cpu(pSMBr->DataLengthHigh);
1741 data_length = data_length << 16;
1742 data_length += le16_to_cpu(pSMBr->DataLength);
1743 *nbytes = data_length;
1744
1745 /*check that DataLength would not go beyond end of SMB */
Steve Frenchec637e32005-12-12 20:53:18 -08001746 if ((data_length > CIFSMaxBufSize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 || (data_length > count)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001748 cifs_dbg(FYI, "bad length %d for count %d\n",
Joe Perchesb6b38f72010-04-21 03:50:45 +00001749 data_length, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 rc = -EIO;
1751 *nbytes = 0;
1752 } else {
Steve Frenchec637e32005-12-12 20:53:18 -08001753 pReadData = (char *) (&pSMBr->hdr.Protocol) +
Steve French26f57362007-08-30 22:09:15 +00001754 le16_to_cpu(pSMBr->DataOffset);
1755/* if (rc = copy_to_user(buf, pReadData, data_length)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001756 cifs_dbg(VFS, "Faulting on read rc = %d\n",rc);
Steve French50c2f752007-07-13 00:33:32 +00001757 rc = -EFAULT;
Steve French26f57362007-08-30 22:09:15 +00001758 }*/ /* can not use copy_to_user when using page cache*/
Steve French790fe572007-07-07 19:25:05 +00001759 if (*buf)
Steve French50c2f752007-07-13 00:33:32 +00001760 memcpy(*buf, pReadData, data_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 }
1762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Steve French4b8f9302006-02-26 16:41:18 +00001764/* cifs_small_buf_release(pSMB); */ /* Freed earlier now in SendReceive2 */
Steve French790fe572007-07-07 19:25:05 +00001765 if (*buf) {
Sachin Prabhu6d81ed12014-06-16 15:35:24 +01001766 free_rsp_buf(resp_buf_type, iov[0].iov_base);
Steve French790fe572007-07-07 19:25:05 +00001767 } else if (resp_buf_type != CIFS_NO_BUFFER) {
Steve French50c2f752007-07-13 00:33:32 +00001768 /* return buffer to caller to free */
1769 *buf = iov[0].iov_base;
Steve French790fe572007-07-07 19:25:05 +00001770 if (resp_buf_type == CIFS_SMALL_BUFFER)
Steve Frenchec637e32005-12-12 20:53:18 -08001771 *pbuf_type = CIFS_SMALL_BUFFER;
Steve French790fe572007-07-07 19:25:05 +00001772 else if (resp_buf_type == CIFS_LARGE_BUFFER)
Steve Frenchec637e32005-12-12 20:53:18 -08001773 *pbuf_type = CIFS_LARGE_BUFFER;
Steve French6cec2ae2006-02-22 17:31:52 -06001774 } /* else no valid buffer on return - leave as null */
Steve Frenchec637e32005-12-12 20:53:18 -08001775
1776 /* Note: On -EAGAIN error only caller can retry on handle based calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 since file handle passed in no longer valid */
1778 return rc;
1779}
1780
Steve Frenchec637e32005-12-12 20:53:18 -08001781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04001783CIFSSMBWrite(const unsigned int xid, struct cifs_io_parms *io_parms,
Al Virodbbab322016-09-05 17:53:43 -04001784 unsigned int *nbytes, const char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785{
1786 int rc = -EACCES;
1787 WRITE_REQ *pSMB = NULL;
1788 WRITE_RSP *pSMBr = NULL;
Steve French1c955182005-08-30 20:58:07 -07001789 int bytes_returned, wct;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 __u32 bytes_sent;
1791 __u16 byte_count;
Pavel Shilovskyfa2989f2011-05-26 10:01:59 +04001792 __u32 pid = io_parms->pid;
1793 __u16 netfid = io_parms->netfid;
1794 __u64 offset = io_parms->offset;
Steve French96daf2b2011-05-27 04:34:02 +00001795 struct cifs_tcon *tcon = io_parms->tcon;
Pavel Shilovskyfa2989f2011-05-26 10:01:59 +04001796 unsigned int count = io_parms->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Steve Frencha24e2d72010-04-03 17:20:21 +00001798 *nbytes = 0;
1799
Joe Perchesf96637b2013-05-04 22:12:25 -05001800 /* cifs_dbg(FYI, "write at %lld %d bytes\n", offset, count);*/
Steve French790fe572007-07-07 19:25:05 +00001801 if (tcon->ses == NULL)
Steve French1c955182005-08-30 20:58:07 -07001802 return -ECONNABORTED;
1803
Steve French790fe572007-07-07 19:25:05 +00001804 if (tcon->ses->capabilities & CAP_LARGE_FILES)
Steve French1c955182005-08-30 20:58:07 -07001805 wct = 14;
Steve French4c3130e2008-12-09 00:28:16 +00001806 else {
Steve French1c955182005-08-30 20:58:07 -07001807 wct = 12;
Steve French4c3130e2008-12-09 00:28:16 +00001808 if ((offset >> 32) > 0) {
1809 /* can not handle big offset for old srv */
1810 return -EIO;
1811 }
1812 }
Steve French1c955182005-08-30 20:58:07 -07001813
1814 rc = smb_init(SMB_COM_WRITE_ANDX, wct, tcon, (void **) &pSMB,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 (void **) &pSMBr);
1816 if (rc)
1817 return rc;
Pavel Shilovskyfa2989f2011-05-26 10:01:59 +04001818
1819 pSMB->hdr.Pid = cpu_to_le16((__u16)pid);
1820 pSMB->hdr.PidHigh = cpu_to_le16((__u16)(pid >> 16));
1821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 /* tcon and ses pointer are checked in smb_init */
1823 if (tcon->ses->server == NULL)
1824 return -ECONNABORTED;
1825
1826 pSMB->AndXCommand = 0xFF; /* none */
1827 pSMB->Fid = netfid;
1828 pSMB->OffsetLow = cpu_to_le32(offset & 0xFFFFFFFF);
Steve French790fe572007-07-07 19:25:05 +00001829 if (wct == 14)
Steve French1c955182005-08-30 20:58:07 -07001830 pSMB->OffsetHigh = cpu_to_le32(offset >> 32);
Steve French50c2f752007-07-13 00:33:32 +00001831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 pSMB->Reserved = 0xFFFFFFFF;
1833 pSMB->WriteMode = 0;
1834 pSMB->Remaining = 0;
1835
Steve French50c2f752007-07-13 00:33:32 +00001836 /* Can increase buffer size if buffer is big enough in some cases ie we
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 can send more if LARGE_WRITE_X capability returned by the server and if
1838 our buffer is big enough or if we convert to iovecs on socket writes
1839 and eliminate the copy to the CIFS buffer */
Steve French790fe572007-07-07 19:25:05 +00001840 if (tcon->ses->capabilities & CAP_LARGE_WRITE_X) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 bytes_sent = min_t(const unsigned int, CIFSMaxBufSize, count);
1842 } else {
1843 bytes_sent = (tcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE)
1844 & ~0xFF;
1845 }
1846
1847 if (bytes_sent > count)
1848 bytes_sent = count;
1849 pSMB->DataOffset =
Steve French50c2f752007-07-13 00:33:32 +00001850 cpu_to_le16(offsetof(struct smb_com_write_req, Data) - 4);
Steve French790fe572007-07-07 19:25:05 +00001851 if (buf)
Steve French61e74802008-12-03 00:57:54 +00001852 memcpy(pSMB->Data, buf, bytes_sent);
Al Virodbbab322016-09-05 17:53:43 -04001853 else if (count != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 /* No buffer */
1855 cifs_buf_release(pSMB);
1856 return -EINVAL;
Steve Frenche30dcf32005-09-20 20:49:16 -07001857 } /* else setting file size with write of zero bytes */
Steve French790fe572007-07-07 19:25:05 +00001858 if (wct == 14)
Steve Frenche30dcf32005-09-20 20:49:16 -07001859 byte_count = bytes_sent + 1; /* pad */
Steve Frenchad7a2922008-02-07 23:25:02 +00001860 else /* wct == 12 */
Steve Frenche30dcf32005-09-20 20:49:16 -07001861 byte_count = bytes_sent + 5; /* bigger pad, smaller smb hdr */
Steve Frenchad7a2922008-02-07 23:25:02 +00001862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 pSMB->DataLengthLow = cpu_to_le16(bytes_sent & 0xFFFF);
1864 pSMB->DataLengthHigh = cpu_to_le16(bytes_sent >> 16);
Steve Frenchbe8e3b02011-04-29 05:40:20 +00001865 inc_rfc1001_len(pSMB, byte_count);
Steve French1c955182005-08-30 20:58:07 -07001866
Steve French790fe572007-07-07 19:25:05 +00001867 if (wct == 14)
Steve French1c955182005-08-30 20:58:07 -07001868 pSMB->ByteCount = cpu_to_le16(byte_count);
Steve French50c2f752007-07-13 00:33:32 +00001869 else { /* old style write has byte count 4 bytes earlier
1870 so 4 bytes pad */
1871 struct smb_com_writex_req *pSMBW =
Steve French1c955182005-08-30 20:58:07 -07001872 (struct smb_com_writex_req *)pSMB;
1873 pSMBW->ByteCount = cpu_to_le16(byte_count);
1874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
1876 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
Al Virodbbab322016-09-05 17:53:43 -04001877 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +04001878 cifs_stats_inc(&tcon->stats.cifs_stats.num_writes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001880 cifs_dbg(FYI, "Send error in write = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 } else {
1882 *nbytes = le16_to_cpu(pSMBr->CountHigh);
1883 *nbytes = (*nbytes) << 16;
1884 *nbytes += le16_to_cpu(pSMBr->Count);
Suresh Jayaraman6513a812010-03-31 12:00:03 +05301885
1886 /*
1887 * Mask off high 16 bits when bytes written as returned by the
1888 * server is greater than bytes requested by the client. Some
1889 * OS/2 servers are known to set incorrect CountHigh values.
1890 */
1891 if (*nbytes > count)
1892 *nbytes &= 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 }
1894
1895 cifs_buf_release(pSMB);
1896
Steve French50c2f752007-07-13 00:33:32 +00001897 /* Note: On -EAGAIN error only caller can retry on handle based calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 since file handle passed in no longer valid */
1899
1900 return rc;
1901}
1902
Jeff Laytonc28c89f2011-05-19 16:22:56 -04001903void
1904cifs_writedata_release(struct kref *refcount)
1905{
1906 struct cifs_writedata *wdata = container_of(refcount,
1907 struct cifs_writedata, refcount);
1908
1909 if (wdata->cfile)
1910 cifsFileInfo_put(wdata->cfile);
1911
1912 kfree(wdata);
1913}
1914
1915/*
1916 * Write failed with a retryable error. Resend the write request. It's also
1917 * possible that the page was redirtied so re-clean the page.
1918 */
1919static void
1920cifs_writev_requeue(struct cifs_writedata *wdata)
1921{
Pavel Shilovsky7f6c5002014-06-22 11:03:22 +04001922 int i, rc = 0;
David Howells2b0143b2015-03-17 22:25:59 +00001923 struct inode *inode = d_inode(wdata->cfile->dentry);
Pavel Shilovskyc9de5c82012-09-18 16:20:29 -07001924 struct TCP_Server_Info *server;
Pavel Shilovsky7f6c5002014-06-22 11:03:22 +04001925 unsigned int rest_len;
Jeff Laytonc28c89f2011-05-19 16:22:56 -04001926
Pavel Shilovsky7f6c5002014-06-22 11:03:22 +04001927 server = tlink_tcon(wdata->cfile->tlink)->ses->server;
1928 i = 0;
1929 rest_len = wdata->bytes;
Jeff Laytonc28c89f2011-05-19 16:22:56 -04001930 do {
Pavel Shilovsky7f6c5002014-06-22 11:03:22 +04001931 struct cifs_writedata *wdata2;
1932 unsigned int j, nr_pages, wsize, tailsz, cur_len;
Jeff Laytonc28c89f2011-05-19 16:22:56 -04001933
Pavel Shilovsky7f6c5002014-06-22 11:03:22 +04001934 wsize = server->ops->wp_retry_size(inode);
1935 if (wsize < rest_len) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001936 nr_pages = wsize / PAGE_SIZE;
Pavel Shilovsky7f6c5002014-06-22 11:03:22 +04001937 if (!nr_pages) {
1938 rc = -ENOTSUPP;
1939 break;
1940 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001941 cur_len = nr_pages * PAGE_SIZE;
1942 tailsz = PAGE_SIZE;
Pavel Shilovsky7f6c5002014-06-22 11:03:22 +04001943 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001944 nr_pages = DIV_ROUND_UP(rest_len, PAGE_SIZE);
Pavel Shilovsky7f6c5002014-06-22 11:03:22 +04001945 cur_len = rest_len;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001946 tailsz = rest_len - (nr_pages - 1) * PAGE_SIZE;
Ouyang Maochunc51bb0e2013-02-18 09:54:52 -06001947 }
Pavel Shilovsky7f6c5002014-06-22 11:03:22 +04001948
1949 wdata2 = cifs_writedata_alloc(nr_pages, cifs_writev_complete);
1950 if (!wdata2) {
1951 rc = -ENOMEM;
1952 break;
1953 }
1954
1955 for (j = 0; j < nr_pages; j++) {
1956 wdata2->pages[j] = wdata->pages[i + j];
1957 lock_page(wdata2->pages[j]);
1958 clear_page_dirty_for_io(wdata2->pages[j]);
1959 }
1960
1961 wdata2->sync_mode = wdata->sync_mode;
1962 wdata2->nr_pages = nr_pages;
1963 wdata2->offset = page_offset(wdata2->pages[0]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001964 wdata2->pagesz = PAGE_SIZE;
Pavel Shilovsky7f6c5002014-06-22 11:03:22 +04001965 wdata2->tailsz = tailsz;
1966 wdata2->bytes = cur_len;
1967
1968 wdata2->cfile = find_writable_file(CIFS_I(inode), false);
1969 if (!wdata2->cfile) {
1970 cifs_dbg(VFS, "No writable handles for inode\n");
1971 rc = -EBADF;
1972 break;
1973 }
1974 wdata2->pid = wdata2->cfile->pid;
1975 rc = server->ops->async_writev(wdata2, cifs_writedata_release);
1976
1977 for (j = 0; j < nr_pages; j++) {
1978 unlock_page(wdata2->pages[j]);
1979 if (rc != 0 && rc != -EAGAIN) {
1980 SetPageError(wdata2->pages[j]);
1981 end_page_writeback(wdata2->pages[j]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001982 put_page(wdata2->pages[j]);
Pavel Shilovsky7f6c5002014-06-22 11:03:22 +04001983 }
1984 }
1985
1986 if (rc) {
1987 kref_put(&wdata2->refcount, cifs_writedata_release);
1988 if (rc == -EAGAIN)
1989 continue;
1990 break;
1991 }
1992
1993 rest_len -= cur_len;
1994 i += nr_pages;
1995 } while (i < wdata->nr_pages);
Jeff Laytonc28c89f2011-05-19 16:22:56 -04001996
1997 mapping_set_error(inode->i_mapping, rc);
1998 kref_put(&wdata->refcount, cifs_writedata_release);
1999}
2000
Jeff Laytonc2e87642012-03-23 14:40:55 -04002001void
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002002cifs_writev_complete(struct work_struct *work)
2003{
2004 struct cifs_writedata *wdata = container_of(work,
2005 struct cifs_writedata, work);
David Howells2b0143b2015-03-17 22:25:59 +00002006 struct inode *inode = d_inode(wdata->cfile->dentry);
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002007 int i = 0;
2008
2009 if (wdata->result == 0) {
Jeff Layton597b0272012-03-23 14:40:56 -04002010 spin_lock(&inode->i_lock);
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002011 cifs_update_eof(CIFS_I(inode), wdata->offset, wdata->bytes);
Jeff Layton597b0272012-03-23 14:40:56 -04002012 spin_unlock(&inode->i_lock);
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002013 cifs_stats_bytes_written(tlink_tcon(wdata->cfile->tlink),
2014 wdata->bytes);
2015 } else if (wdata->sync_mode == WB_SYNC_ALL && wdata->result == -EAGAIN)
2016 return cifs_writev_requeue(wdata);
2017
2018 for (i = 0; i < wdata->nr_pages; i++) {
2019 struct page *page = wdata->pages[i];
2020 if (wdata->result == -EAGAIN)
2021 __set_page_dirty_nobuffers(page);
2022 else if (wdata->result < 0)
2023 SetPageError(page);
2024 end_page_writeback(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002025 put_page(page);
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002026 }
2027 if (wdata->result != -EAGAIN)
2028 mapping_set_error(inode->i_mapping, wdata->result);
2029 kref_put(&wdata->refcount, cifs_writedata_release);
2030}
2031
2032struct cifs_writedata *
Jeff Laytonc2e87642012-03-23 14:40:55 -04002033cifs_writedata_alloc(unsigned int nr_pages, work_func_t complete)
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002034{
2035 struct cifs_writedata *wdata;
2036
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002037 /* writedata + number of page pointers */
2038 wdata = kzalloc(sizeof(*wdata) +
Jeff Layton26c8f0d2014-02-07 11:04:04 -05002039 sizeof(struct page *) * nr_pages, GFP_NOFS);
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002040 if (wdata != NULL) {
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002041 kref_init(&wdata->refcount);
Jeff Laytonda82f7e2012-03-23 14:40:56 -04002042 INIT_LIST_HEAD(&wdata->list);
2043 init_completion(&wdata->done);
2044 INIT_WORK(&wdata->work, complete);
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002045 }
2046 return wdata;
2047}
2048
2049/*
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04002050 * Check the mid_state and signature on received buffer (if any), and queue the
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002051 * workqueue completion task.
2052 */
2053static void
2054cifs_writev_callback(struct mid_q_entry *mid)
2055{
2056 struct cifs_writedata *wdata = mid->callback_data;
Steve French96daf2b2011-05-27 04:34:02 +00002057 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
Christopher Oo5fb4e282015-06-25 16:10:48 -07002058 struct TCP_Server_Info *server = tcon->ses->server;
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002059 unsigned int written;
2060 WRITE_RSP *smb = (WRITE_RSP *)mid->resp_buf;
2061
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04002062 switch (mid->mid_state) {
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002063 case MID_RESPONSE_RECEIVED:
2064 wdata->result = cifs_check_receive(mid, tcon->ses->server, 0);
2065 if (wdata->result != 0)
2066 break;
2067
2068 written = le16_to_cpu(smb->CountHigh);
2069 written <<= 16;
2070 written += le16_to_cpu(smb->Count);
2071 /*
2072 * Mask off high 16 bits when bytes written as returned
2073 * by the server is greater than bytes requested by the
2074 * client. OS/2 servers are known to set incorrect
2075 * CountHigh values.
2076 */
2077 if (written > wdata->bytes)
2078 written &= 0xFFFF;
2079
2080 if (written < wdata->bytes)
2081 wdata->result = -ENOSPC;
2082 else
2083 wdata->bytes = written;
2084 break;
2085 case MID_REQUEST_SUBMITTED:
2086 case MID_RETRY_NEEDED:
2087 wdata->result = -EAGAIN;
2088 break;
2089 default:
2090 wdata->result = -EIO;
2091 break;
2092 }
2093
Jeff Laytonda472fc2012-03-23 14:40:53 -04002094 queue_work(cifsiod_wq, &wdata->work);
Christopher Oo5fb4e282015-06-25 16:10:48 -07002095 mutex_lock(&server->srv_mutex);
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002096 DeleteMidQEntry(mid);
Christopher Oo5fb4e282015-06-25 16:10:48 -07002097 mutex_unlock(&server->srv_mutex);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04002098 add_credits(tcon->ses->server, 1, 0);
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002099}
2100
2101/* cifs_async_writev - send an async write, and set up mid to handle result */
2102int
Steve French4a5c80d2014-02-07 20:45:12 -06002103cifs_async_writev(struct cifs_writedata *wdata,
2104 void (*release)(struct kref *kref))
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002105{
Jeff Laytoneddb0792012-09-18 16:20:35 -07002106 int rc = -EACCES;
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002107 WRITE_REQ *smb = NULL;
2108 int wct;
Steve French96daf2b2011-05-27 04:34:02 +00002109 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
Jeff Laytoneddb0792012-09-18 16:20:35 -07002110 struct kvec iov;
Jeff Laytonfec344e2012-09-18 16:20:35 -07002111 struct smb_rqst rqst = { };
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002112
2113 if (tcon->ses->capabilities & CAP_LARGE_FILES) {
2114 wct = 14;
2115 } else {
2116 wct = 12;
2117 if (wdata->offset >> 32 > 0) {
2118 /* can not handle big offset for old srv */
2119 return -EIO;
2120 }
2121 }
2122
2123 rc = small_smb_init(SMB_COM_WRITE_ANDX, wct, tcon, (void **)&smb);
2124 if (rc)
2125 goto async_writev_out;
2126
Jeff Laytonfe5f5d22012-03-23 14:40:55 -04002127 smb->hdr.Pid = cpu_to_le16((__u16)wdata->pid);
2128 smb->hdr.PidHigh = cpu_to_le16((__u16)(wdata->pid >> 16));
Pavel Shilovskyfa2989f2011-05-26 10:01:59 +04002129
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002130 smb->AndXCommand = 0xFF; /* none */
Pavel Shilovsky4b4de762012-09-18 16:20:26 -07002131 smb->Fid = wdata->cfile->fid.netfid;
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002132 smb->OffsetLow = cpu_to_le32(wdata->offset & 0xFFFFFFFF);
2133 if (wct == 14)
2134 smb->OffsetHigh = cpu_to_le32(wdata->offset >> 32);
2135 smb->Reserved = 0xFFFFFFFF;
2136 smb->WriteMode = 0;
2137 smb->Remaining = 0;
2138
2139 smb->DataOffset =
2140 cpu_to_le16(offsetof(struct smb_com_write_req, Data) - 4);
2141
2142 /* 4 for RFC1001 length + 1 for BCC */
Jeff Laytoneddb0792012-09-18 16:20:35 -07002143 iov.iov_len = be32_to_cpu(smb->hdr.smb_buf_length) + 4 + 1;
2144 iov.iov_base = smb;
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002145
Jeff Laytoneddb0792012-09-18 16:20:35 -07002146 rqst.rq_iov = &iov;
2147 rqst.rq_nvec = 1;
2148 rqst.rq_pages = wdata->pages;
2149 rqst.rq_npages = wdata->nr_pages;
2150 rqst.rq_pagesz = wdata->pagesz;
2151 rqst.rq_tailsz = wdata->tailsz;
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002152
Joe Perchesf96637b2013-05-04 22:12:25 -05002153 cifs_dbg(FYI, "async write at %llu %u bytes\n",
2154 wdata->offset, wdata->bytes);
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002155
2156 smb->DataLengthLow = cpu_to_le16(wdata->bytes & 0xFFFF);
2157 smb->DataLengthHigh = cpu_to_le16(wdata->bytes >> 16);
2158
2159 if (wct == 14) {
2160 inc_rfc1001_len(&smb->hdr, wdata->bytes + 1);
2161 put_bcc(wdata->bytes + 1, &smb->hdr);
2162 } else {
2163 /* wct == 12 */
2164 struct smb_com_writex_req *smbw =
2165 (struct smb_com_writex_req *)smb;
2166 inc_rfc1001_len(&smbw->hdr, wdata->bytes + 5);
2167 put_bcc(wdata->bytes + 5, &smbw->hdr);
Jeff Laytoneddb0792012-09-18 16:20:35 -07002168 iov.iov_len += 4; /* pad bigger by four bytes */
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002169 }
2170
2171 kref_get(&wdata->refcount);
Jeff Laytonfec344e2012-09-18 16:20:35 -07002172 rc = cifs_call_async(tcon->ses->server, &rqst, NULL,
2173 cifs_writev_callback, wdata, 0);
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002174
2175 if (rc == 0)
Pavel Shilovsky44c58182012-05-28 14:16:31 +04002176 cifs_stats_inc(&tcon->stats.cifs_stats.num_writes);
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002177 else
Steve French4a5c80d2014-02-07 20:45:12 -06002178 kref_put(&wdata->refcount, release);
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002179
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002180async_writev_out:
2181 cifs_small_buf_release(smb);
Jeff Laytonc28c89f2011-05-19 16:22:56 -04002182 return rc;
2183}
2184
Steve Frenchd6e04ae2005-06-13 13:24:43 -05002185int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002186CIFSSMBWrite2(const unsigned int xid, struct cifs_io_parms *io_parms,
Pavel Shilovskyba9ad7252012-09-18 16:20:30 -07002187 unsigned int *nbytes, struct kvec *iov, int n_vec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
2189 int rc = -EACCES;
2190 WRITE_REQ *pSMB = NULL;
Steve Frenchec637e32005-12-12 20:53:18 -08002191 int wct;
Steve Frenchd6e04ae2005-06-13 13:24:43 -05002192 int smb_hdr_len;
Steve Frenchec637e32005-12-12 20:53:18 -08002193 int resp_buf_type = 0;
Pavel Shilovskyfa2989f2011-05-26 10:01:59 +04002194 __u32 pid = io_parms->pid;
2195 __u16 netfid = io_parms->netfid;
2196 __u64 offset = io_parms->offset;
Steve French96daf2b2011-05-27 04:34:02 +00002197 struct cifs_tcon *tcon = io_parms->tcon;
Pavel Shilovskyfa2989f2011-05-26 10:01:59 +04002198 unsigned int count = io_parms->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
Jeff Laytonfbec9ab2009-04-03 13:44:00 -04002200 *nbytes = 0;
2201
Joe Perchesf96637b2013-05-04 22:12:25 -05002202 cifs_dbg(FYI, "write2 at %lld %d bytes\n", (long long)offset, count);
Steve Frenchff7feac2005-11-15 16:45:16 -08002203
Steve French4c3130e2008-12-09 00:28:16 +00002204 if (tcon->ses->capabilities & CAP_LARGE_FILES) {
Steve French8cc64c62005-10-03 13:49:43 -07002205 wct = 14;
Steve French4c3130e2008-12-09 00:28:16 +00002206 } else {
Steve French8cc64c62005-10-03 13:49:43 -07002207 wct = 12;
Steve French4c3130e2008-12-09 00:28:16 +00002208 if ((offset >> 32) > 0) {
2209 /* can not handle big offset for old srv */
2210 return -EIO;
2211 }
2212 }
Steve French8cc64c62005-10-03 13:49:43 -07002213 rc = small_smb_init(SMB_COM_WRITE_ANDX, wct, tcon, (void **) &pSMB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 if (rc)
2215 return rc;
Pavel Shilovskyfa2989f2011-05-26 10:01:59 +04002216
2217 pSMB->hdr.Pid = cpu_to_le16((__u16)pid);
2218 pSMB->hdr.PidHigh = cpu_to_le16((__u16)(pid >> 16));
2219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 /* tcon and ses pointer are checked in smb_init */
2221 if (tcon->ses->server == NULL)
2222 return -ECONNABORTED;
2223
Steve Frenchd6e04ae2005-06-13 13:24:43 -05002224 pSMB->AndXCommand = 0xFF; /* none */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 pSMB->Fid = netfid;
2226 pSMB->OffsetLow = cpu_to_le32(offset & 0xFFFFFFFF);
Steve French790fe572007-07-07 19:25:05 +00002227 if (wct == 14)
Steve French8cc64c62005-10-03 13:49:43 -07002228 pSMB->OffsetHigh = cpu_to_le32(offset >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 pSMB->Reserved = 0xFFFFFFFF;
2230 pSMB->WriteMode = 0;
2231 pSMB->Remaining = 0;
Steve Frenchd6e04ae2005-06-13 13:24:43 -05002232
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 pSMB->DataOffset =
Steve French50c2f752007-07-13 00:33:32 +00002234 cpu_to_le16(offsetof(struct smb_com_write_req, Data) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Steve French3e844692005-10-03 13:37:24 -07002236 pSMB->DataLengthLow = cpu_to_le16(count & 0xFFFF);
2237 pSMB->DataLengthHigh = cpu_to_le16(count >> 16);
Steve Frenchbe8e3b02011-04-29 05:40:20 +00002238 /* header + 1 byte pad */
2239 smb_hdr_len = be32_to_cpu(pSMB->hdr.smb_buf_length) + 1;
Steve French790fe572007-07-07 19:25:05 +00002240 if (wct == 14)
Steve Frenchbe8e3b02011-04-29 05:40:20 +00002241 inc_rfc1001_len(pSMB, count + 1);
Steve French8cc64c62005-10-03 13:49:43 -07002242 else /* wct == 12 */
Steve Frenchbe8e3b02011-04-29 05:40:20 +00002243 inc_rfc1001_len(pSMB, count + 5); /* smb data starts later */
Steve French790fe572007-07-07 19:25:05 +00002244 if (wct == 14)
Steve French8cc64c62005-10-03 13:49:43 -07002245 pSMB->ByteCount = cpu_to_le16(count + 1);
2246 else /* wct == 12 */ /* bigger pad, smaller smb hdr, keep offset ok */ {
Steve French50c2f752007-07-13 00:33:32 +00002247 struct smb_com_writex_req *pSMBW =
Steve French8cc64c62005-10-03 13:49:43 -07002248 (struct smb_com_writex_req *)pSMB;
2249 pSMBW->ByteCount = cpu_to_le16(count + 5);
2250 }
Steve French3e844692005-10-03 13:37:24 -07002251 iov[0].iov_base = pSMB;
Steve French790fe572007-07-07 19:25:05 +00002252 if (wct == 14)
Steve Frenchec637e32005-12-12 20:53:18 -08002253 iov[0].iov_len = smb_hdr_len + 4;
2254 else /* wct == 12 pad bigger by four bytes */
2255 iov[0].iov_len = smb_hdr_len + 8;
Steve French50c2f752007-07-13 00:33:32 +00002256
Steve French3e844692005-10-03 13:37:24 -07002257
Pavel Shilovskyba9ad7252012-09-18 16:20:30 -07002258 rc = SendReceive2(xid, tcon->ses, iov, n_vec + 1, &resp_buf_type, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +04002259 cifs_stats_inc(&tcon->stats.cifs_stats.num_writes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002261 cifs_dbg(FYI, "Send error Write2 = %d\n", rc);
Steve French790fe572007-07-07 19:25:05 +00002262 } else if (resp_buf_type == 0) {
Steve Frenchec637e32005-12-12 20:53:18 -08002263 /* presumably this can not happen, but best to be safe */
2264 rc = -EIO;
Steve Frenchd6e04ae2005-06-13 13:24:43 -05002265 } else {
Steve Frenchad7a2922008-02-07 23:25:02 +00002266 WRITE_RSP *pSMBr = (WRITE_RSP *)iov[0].iov_base;
Steve Frenchd6e04ae2005-06-13 13:24:43 -05002267 *nbytes = le16_to_cpu(pSMBr->CountHigh);
2268 *nbytes = (*nbytes) << 16;
2269 *nbytes += le16_to_cpu(pSMBr->Count);
Suresh Jayaraman6513a812010-03-31 12:00:03 +05302270
2271 /*
2272 * Mask off high 16 bits when bytes written as returned by the
2273 * server is greater than bytes requested by the client. OS/2
2274 * servers are known to set incorrect CountHigh values.
2275 */
2276 if (*nbytes > count)
2277 *nbytes &= 0xFFFF;
Steve French50c2f752007-07-13 00:33:32 +00002278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Steve French4b8f9302006-02-26 16:41:18 +00002280/* cifs_small_buf_release(pSMB); */ /* Freed earlier now in SendReceive2 */
Sachin Prabhu6d81ed12014-06-16 15:35:24 +01002281 free_rsp_buf(resp_buf_type, iov[0].iov_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Steve French50c2f752007-07-13 00:33:32 +00002283 /* Note: On -EAGAIN error only caller can retry on handle based calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 since file handle passed in no longer valid */
2285
2286 return rc;
2287}
Steve Frenchd6e04ae2005-06-13 13:24:43 -05002288
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002289int cifs_lockv(const unsigned int xid, struct cifs_tcon *tcon,
2290 const __u16 netfid, const __u8 lock_type, const __u32 num_unlock,
Pavel Shilovsky9ee305b2011-10-22 15:33:31 +04002291 const __u32 num_lock, LOCKING_ANDX_RANGE *buf)
2292{
2293 int rc = 0;
2294 LOCK_REQ *pSMB = NULL;
2295 struct kvec iov[2];
2296 int resp_buf_type;
2297 __u16 count;
2298
Joe Perchesf96637b2013-05-04 22:12:25 -05002299 cifs_dbg(FYI, "cifs_lockv num lock %d num unlock %d\n",
2300 num_lock, num_unlock);
Pavel Shilovsky9ee305b2011-10-22 15:33:31 +04002301
2302 rc = small_smb_init(SMB_COM_LOCKING_ANDX, 8, tcon, (void **) &pSMB);
2303 if (rc)
2304 return rc;
2305
2306 pSMB->Timeout = 0;
2307 pSMB->NumberOfLocks = cpu_to_le16(num_lock);
2308 pSMB->NumberOfUnlocks = cpu_to_le16(num_unlock);
2309 pSMB->LockType = lock_type;
2310 pSMB->AndXCommand = 0xFF; /* none */
2311 pSMB->Fid = netfid; /* netfid stays le */
2312
2313 count = (num_unlock + num_lock) * sizeof(LOCKING_ANDX_RANGE);
2314 inc_rfc1001_len(pSMB, count);
2315 pSMB->ByteCount = cpu_to_le16(count);
2316
2317 iov[0].iov_base = (char *)pSMB;
2318 iov[0].iov_len = be32_to_cpu(pSMB->hdr.smb_buf_length) + 4 -
2319 (num_unlock + num_lock) * sizeof(LOCKING_ANDX_RANGE);
2320 iov[1].iov_base = (char *)buf;
2321 iov[1].iov_len = (num_unlock + num_lock) * sizeof(LOCKING_ANDX_RANGE);
2322
Pavel Shilovsky44c58182012-05-28 14:16:31 +04002323 cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
Pavel Shilovsky9ee305b2011-10-22 15:33:31 +04002324 rc = SendReceive2(xid, tcon->ses, iov, 2, &resp_buf_type, CIFS_NO_RESP);
2325 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05002326 cifs_dbg(FYI, "Send error in cifs_lockv = %d\n", rc);
Pavel Shilovsky9ee305b2011-10-22 15:33:31 +04002327
2328 return rc;
2329}
Steve Frenchd6e04ae2005-06-13 13:24:43 -05002330
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002332CIFSSMBLock(const unsigned int xid, struct cifs_tcon *tcon,
Pavel Shilovsky03776f42010-08-17 11:26:00 +04002333 const __u16 smb_file_id, const __u32 netpid, const __u64 len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 const __u64 offset, const __u32 numUnlock,
Pavel Shilovsky12fed002011-01-17 20:15:44 +03002335 const __u32 numLock, const __u8 lockType,
2336 const bool waitFlag, const __u8 oplock_level)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337{
2338 int rc = 0;
2339 LOCK_REQ *pSMB = NULL;
Steve Frenchaaa9bbe2008-05-23 17:38:32 +00002340/* LOCK_RSP *pSMBr = NULL; */ /* No response data other than rc to parse */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 int bytes_returned;
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04002342 int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 __u16 count;
2344
Joe Perchesf96637b2013-05-04 22:12:25 -05002345 cifs_dbg(FYI, "CIFSSMBLock timeout %d numLock %d\n",
2346 (int)waitFlag, numLock);
Steve French46810cb2005-04-28 22:41:09 -07002347 rc = small_smb_init(SMB_COM_LOCKING_ANDX, 8, tcon, (void **) &pSMB);
2348
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 if (rc)
2350 return rc;
2351
Steve French790fe572007-07-07 19:25:05 +00002352 if (lockType == LOCKING_ANDX_OPLOCK_RELEASE) {
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04002353 /* no response expected */
2354 flags = CIFS_ASYNC_OP | CIFS_OBREAK_OP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 pSMB->Timeout = 0;
Steve French4b18f2a2008-04-29 00:06:05 +00002356 } else if (waitFlag) {
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04002357 flags = CIFS_BLOCKING_OP; /* blocking operation, no timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 pSMB->Timeout = cpu_to_le32(-1);/* blocking - do not time out */
2359 } else {
2360 pSMB->Timeout = 0;
2361 }
2362
2363 pSMB->NumberOfLocks = cpu_to_le16(numLock);
2364 pSMB->NumberOfUnlocks = cpu_to_le16(numUnlock);
2365 pSMB->LockType = lockType;
Pavel Shilovsky12fed002011-01-17 20:15:44 +03002366 pSMB->OplockLevel = oplock_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 pSMB->AndXCommand = 0xFF; /* none */
2368 pSMB->Fid = smb_file_id; /* netfid stays le */
2369
Steve French790fe572007-07-07 19:25:05 +00002370 if ((numLock != 0) || (numUnlock != 0)) {
Pavel Shilovsky03776f42010-08-17 11:26:00 +04002371 pSMB->Locks[0].Pid = cpu_to_le16(netpid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 /* BB where to store pid high? */
2373 pSMB->Locks[0].LengthLow = cpu_to_le32((u32)len);
2374 pSMB->Locks[0].LengthHigh = cpu_to_le32((u32)(len>>32));
2375 pSMB->Locks[0].OffsetLow = cpu_to_le32((u32)offset);
2376 pSMB->Locks[0].OffsetHigh = cpu_to_le32((u32)(offset>>32));
2377 count = sizeof(LOCKING_ANDX_RANGE);
2378 } else {
2379 /* oplock break */
2380 count = 0;
2381 }
Steve Frenchbe8e3b02011-04-29 05:40:20 +00002382 inc_rfc1001_len(pSMB, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 pSMB->ByteCount = cpu_to_le16(count);
2384
Jeremy Allison7ee1af72006-08-02 21:56:33 +00002385 if (waitFlag) {
2386 rc = SendReceiveBlockingLock(xid, tcon, (struct smb_hdr *) pSMB,
Steve Frenchaaa9bbe2008-05-23 17:38:32 +00002387 (struct smb_hdr *) pSMB, &bytes_returned);
Steve French133672e2007-11-13 22:41:37 +00002388 cifs_small_buf_release(pSMB);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00002389 } else {
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04002390 rc = SendReceiveNoRsp(xid, tcon->ses, (char *)pSMB, flags);
Steve French133672e2007-11-13 22:41:37 +00002391 /* SMB buffer freed by function above */
Jeremy Allison7ee1af72006-08-02 21:56:33 +00002392 }
Pavel Shilovsky44c58182012-05-28 14:16:31 +04002393 cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
Steve Frenchad7a2922008-02-07 23:25:02 +00002394 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05002395 cifs_dbg(FYI, "Send error in Lock = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
Steve French50c2f752007-07-13 00:33:32 +00002397 /* Note: On -EAGAIN error only caller can retry on handle based calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 since file handle passed in no longer valid */
2399 return rc;
2400}
2401
2402int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002403CIFSSMBPosixLock(const unsigned int xid, struct cifs_tcon *tcon,
Jeff Laytonc5fd3632012-07-23 13:28:37 -04002404 const __u16 smb_file_id, const __u32 netpid,
2405 const loff_t start_offset, const __u64 len,
2406 struct file_lock *pLockData, const __u16 lock_type,
2407 const bool waitFlag)
Steve French08547b02006-02-28 22:39:25 +00002408{
2409 struct smb_com_transaction2_sfi_req *pSMB = NULL;
2410 struct smb_com_transaction2_sfi_rsp *pSMBr = NULL;
Steve French08547b02006-02-28 22:39:25 +00002411 struct cifs_posix_lock *parm_data;
2412 int rc = 0;
Steve French3a5ff612006-07-14 22:37:11 +00002413 int timeout = 0;
Steve French08547b02006-02-28 22:39:25 +00002414 int bytes_returned = 0;
Steve French133672e2007-11-13 22:41:37 +00002415 int resp_buf_type = 0;
Steve French08547b02006-02-28 22:39:25 +00002416 __u16 params, param_offset, offset, byte_count, count;
Steve French133672e2007-11-13 22:41:37 +00002417 struct kvec iov[1];
Steve French08547b02006-02-28 22:39:25 +00002418
Joe Perchesf96637b2013-05-04 22:12:25 -05002419 cifs_dbg(FYI, "Posix Lock\n");
Steve Frenchfc94cdb2006-05-30 18:03:32 +00002420
Steve French08547b02006-02-28 22:39:25 +00002421 rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB);
2422
2423 if (rc)
2424 return rc;
2425
2426 pSMBr = (struct smb_com_transaction2_sfi_rsp *)pSMB;
2427
Steve French50c2f752007-07-13 00:33:32 +00002428 params = 6;
Steve French08547b02006-02-28 22:39:25 +00002429 pSMB->MaxSetupCount = 0;
2430 pSMB->Reserved = 0;
2431 pSMB->Flags = 0;
Steve French08547b02006-02-28 22:39:25 +00002432 pSMB->Reserved2 = 0;
2433 param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4;
2434 offset = param_offset + params;
2435
Steve French08547b02006-02-28 22:39:25 +00002436 count = sizeof(struct cifs_posix_lock);
2437 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve Frenchad7a2922008-02-07 23:25:02 +00002438 pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find max SMB from sess */
Steve French08547b02006-02-28 22:39:25 +00002439 pSMB->SetupCount = 1;
2440 pSMB->Reserved3 = 0;
Jeff Laytonc5fd3632012-07-23 13:28:37 -04002441 if (pLockData)
Steve French08547b02006-02-28 22:39:25 +00002442 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FILE_INFORMATION);
2443 else
2444 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION);
2445 byte_count = 3 /* pad */ + params + count;
2446 pSMB->DataCount = cpu_to_le16(count);
2447 pSMB->ParameterCount = cpu_to_le16(params);
2448 pSMB->TotalDataCount = pSMB->DataCount;
2449 pSMB->TotalParameterCount = pSMB->ParameterCount;
2450 pSMB->ParameterOffset = cpu_to_le16(param_offset);
Steve French50c2f752007-07-13 00:33:32 +00002451 parm_data = (struct cifs_posix_lock *)
Steve French08547b02006-02-28 22:39:25 +00002452 (((char *) &pSMB->hdr.Protocol) + offset);
2453
2454 parm_data->lock_type = cpu_to_le16(lock_type);
Steve French790fe572007-07-07 19:25:05 +00002455 if (waitFlag) {
Steve French133672e2007-11-13 22:41:37 +00002456 timeout = CIFS_BLOCKING_OP; /* blocking operation, no timeout */
Steve Frenchcec6815a2006-05-30 18:07:17 +00002457 parm_data->lock_flags = cpu_to_le16(1);
Steve French3a5ff612006-07-14 22:37:11 +00002458 pSMB->Timeout = cpu_to_le32(-1);
2459 } else
2460 pSMB->Timeout = 0;
2461
Pavel Shilovsky4f6bcec2011-10-22 15:33:30 +04002462 parm_data->pid = cpu_to_le32(netpid);
Jeff Laytonc5fd3632012-07-23 13:28:37 -04002463 parm_data->start = cpu_to_le64(start_offset);
Steve Frenchcec6815a2006-05-30 18:07:17 +00002464 parm_data->length = cpu_to_le64(len); /* normalize negative numbers */
Steve French08547b02006-02-28 22:39:25 +00002465
2466 pSMB->DataOffset = cpu_to_le16(offset);
Steve Frenchf26282c2006-03-01 09:17:37 +00002467 pSMB->Fid = smb_file_id;
Steve French08547b02006-02-28 22:39:25 +00002468 pSMB->InformationLevel = cpu_to_le16(SMB_SET_POSIX_LOCK);
2469 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00002470 inc_rfc1001_len(pSMB, byte_count);
Steve French08547b02006-02-28 22:39:25 +00002471 pSMB->ByteCount = cpu_to_le16(byte_count);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00002472 if (waitFlag) {
2473 rc = SendReceiveBlockingLock(xid, tcon, (struct smb_hdr *) pSMB,
2474 (struct smb_hdr *) pSMBr, &bytes_returned);
2475 } else {
Steve French133672e2007-11-13 22:41:37 +00002476 iov[0].iov_base = (char *)pSMB;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00002477 iov[0].iov_len = be32_to_cpu(pSMB->hdr.smb_buf_length) + 4;
Steve French133672e2007-11-13 22:41:37 +00002478 rc = SendReceive2(xid, tcon->ses, iov, 1 /* num iovecs */,
2479 &resp_buf_type, timeout);
2480 pSMB = NULL; /* request buf already freed by SendReceive2. Do
2481 not try to free it twice below on exit */
2482 pSMBr = (struct smb_com_transaction2_sfi_rsp *)iov[0].iov_base;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00002483 }
2484
Steve French08547b02006-02-28 22:39:25 +00002485 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002486 cifs_dbg(FYI, "Send error in Posix Lock = %d\n", rc);
Jeff Laytonc5fd3632012-07-23 13:28:37 -04002487 } else if (pLockData) {
Steve Frenchfc94cdb2006-05-30 18:03:32 +00002488 /* lock structure can be returned on get */
2489 __u16 data_offset;
2490 __u16 data_count;
2491 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
Steve French08547b02006-02-28 22:39:25 +00002492
Jeff Layton820a8032011-05-04 08:05:26 -04002493 if (rc || get_bcc(&pSMBr->hdr) < sizeof(*parm_data)) {
Steve Frenchfc94cdb2006-05-30 18:03:32 +00002494 rc = -EIO; /* bad smb */
2495 goto plk_err_exit;
2496 }
Steve Frenchfc94cdb2006-05-30 18:03:32 +00002497 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
2498 data_count = le16_to_cpu(pSMBr->t2.DataCount);
Steve French790fe572007-07-07 19:25:05 +00002499 if (data_count < sizeof(struct cifs_posix_lock)) {
Steve Frenchfc94cdb2006-05-30 18:03:32 +00002500 rc = -EIO;
2501 goto plk_err_exit;
2502 }
2503 parm_data = (struct cifs_posix_lock *)
2504 ((char *)&pSMBr->hdr.Protocol + data_offset);
Fabian Frederickbc09d142014-12-10 15:41:15 -08002505 if (parm_data->lock_type == cpu_to_le16(CIFS_UNLCK))
Steve Frenchfc94cdb2006-05-30 18:03:32 +00002506 pLockData->fl_type = F_UNLCK;
Pavel Shilovskyf05337c2010-04-05 09:59:14 +04002507 else {
2508 if (parm_data->lock_type ==
Fabian Frederickbc09d142014-12-10 15:41:15 -08002509 cpu_to_le16(CIFS_RDLCK))
Pavel Shilovskyf05337c2010-04-05 09:59:14 +04002510 pLockData->fl_type = F_RDLCK;
2511 else if (parm_data->lock_type ==
Fabian Frederickbc09d142014-12-10 15:41:15 -08002512 cpu_to_le16(CIFS_WRLCK))
Pavel Shilovskyf05337c2010-04-05 09:59:14 +04002513 pLockData->fl_type = F_WRLCK;
2514
Steve French5443d132011-03-13 05:08:25 +00002515 pLockData->fl_start = le64_to_cpu(parm_data->start);
2516 pLockData->fl_end = pLockData->fl_start +
2517 le64_to_cpu(parm_data->length) - 1;
2518 pLockData->fl_pid = le32_to_cpu(parm_data->pid);
Pavel Shilovskyf05337c2010-04-05 09:59:14 +04002519 }
Steve Frenchfc94cdb2006-05-30 18:03:32 +00002520 }
Steve French50c2f752007-07-13 00:33:32 +00002521
Steve Frenchfc94cdb2006-05-30 18:03:32 +00002522plk_err_exit:
Steve French08547b02006-02-28 22:39:25 +00002523 if (pSMB)
2524 cifs_small_buf_release(pSMB);
2525
Sachin Prabhu6d81ed12014-06-16 15:35:24 +01002526 free_rsp_buf(resp_buf_type, iov[0].iov_base);
Steve French133672e2007-11-13 22:41:37 +00002527
Steve French08547b02006-02-28 22:39:25 +00002528 /* Note: On -EAGAIN error only caller can retry on handle based calls
2529 since file handle passed in no longer valid */
2530
2531 return rc;
2532}
2533
2534
2535int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002536CIFSSMBClose(const unsigned int xid, struct cifs_tcon *tcon, int smb_file_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537{
2538 int rc = 0;
2539 CLOSE_REQ *pSMB = NULL;
Joe Perchesf96637b2013-05-04 22:12:25 -05002540 cifs_dbg(FYI, "In CIFSSMBClose\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541
2542/* do not retry on dead session on close */
2543 rc = small_smb_init(SMB_COM_CLOSE, 3, tcon, (void **) &pSMB);
Steve French790fe572007-07-07 19:25:05 +00002544 if (rc == -EAGAIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 return 0;
2546 if (rc)
2547 return rc;
2548
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 pSMB->FileID = (__u16) smb_file_id;
Steve Frenchb815f1e52006-10-02 05:53:29 +00002550 pSMB->LastWriteTime = 0xFFFFFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 pSMB->ByteCount = 0;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04002552 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +04002553 cifs_stats_inc(&tcon->stats.cifs_stats.num_closes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 if (rc) {
Steve French790fe572007-07-07 19:25:05 +00002555 if (rc != -EINTR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 /* EINTR is expected when user ctl-c to kill app */
Joe Perchesf96637b2013-05-04 22:12:25 -05002557 cifs_dbg(VFS, "Send error in Close = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 }
2559 }
2560
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 /* Since session is dead, file will be closed on server already */
Steve French790fe572007-07-07 19:25:05 +00002562 if (rc == -EAGAIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 rc = 0;
2564
2565 return rc;
2566}
2567
2568int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002569CIFSSMBFlush(const unsigned int xid, struct cifs_tcon *tcon, int smb_file_id)
Steve Frenchb298f222009-02-21 21:17:43 +00002570{
2571 int rc = 0;
2572 FLUSH_REQ *pSMB = NULL;
Joe Perchesf96637b2013-05-04 22:12:25 -05002573 cifs_dbg(FYI, "In CIFSSMBFlush\n");
Steve Frenchb298f222009-02-21 21:17:43 +00002574
2575 rc = small_smb_init(SMB_COM_FLUSH, 1, tcon, (void **) &pSMB);
2576 if (rc)
2577 return rc;
2578
2579 pSMB->FileID = (__u16) smb_file_id;
2580 pSMB->ByteCount = 0;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04002581 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +04002582 cifs_stats_inc(&tcon->stats.cifs_stats.num_flushes);
Steve Frenchb298f222009-02-21 21:17:43 +00002583 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05002584 cifs_dbg(VFS, "Send error in Flush = %d\n", rc);
Steve Frenchb298f222009-02-21 21:17:43 +00002585
2586 return rc;
2587}
2588
2589int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002590CIFSSMBRename(const unsigned int xid, struct cifs_tcon *tcon,
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07002591 const char *from_name, const char *to_name,
2592 struct cifs_sb_info *cifs_sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593{
2594 int rc = 0;
2595 RENAME_REQ *pSMB = NULL;
2596 RENAME_RSP *pSMBr = NULL;
2597 int bytes_returned;
2598 int name_len, name_len2;
2599 __u16 count;
Steve French2baa2682014-09-27 02:19:01 -05002600 int remap = cifs_remap(cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Joe Perchesf96637b2013-05-04 22:12:25 -05002602 cifs_dbg(FYI, "In CIFSSMBRename\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603renameRetry:
2604 rc = smb_init(SMB_COM_RENAME, 1, tcon, (void **) &pSMB,
2605 (void **) &pSMBr);
2606 if (rc)
2607 return rc;
2608
2609 pSMB->BufferFormat = 0x04;
2610 pSMB->SearchAttributes =
2611 cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM |
2612 ATTR_DIRECTORY);
2613
2614 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07002615 name_len = cifsConvertToUTF16((__le16 *) pSMB->OldFileName,
2616 from_name, PATH_MAX,
2617 cifs_sb->local_nls, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 name_len++; /* trailing null */
2619 name_len *= 2;
2620 pSMB->OldFileName[name_len] = 0x04; /* pad */
2621 /* protocol requires ASCII signature byte on Unicode string */
2622 pSMB->OldFileName[name_len + 1] = 0x00;
2623 name_len2 =
Steve Frenchacbbb762012-01-18 22:32:33 -06002624 cifsConvertToUTF16((__le16 *)&pSMB->OldFileName[name_len+2],
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07002625 to_name, PATH_MAX, cifs_sb->local_nls,
2626 remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 name_len2 += 1 /* trailing null */ + 1 /* Signature word */ ;
2628 name_len2 *= 2; /* convert to bytes */
Steve French50c2f752007-07-13 00:33:32 +00002629 } else { /* BB improve the check for buffer overruns BB */
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07002630 name_len = strnlen(from_name, PATH_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 name_len++; /* trailing null */
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07002632 strncpy(pSMB->OldFileName, from_name, name_len);
2633 name_len2 = strnlen(to_name, PATH_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 name_len2++; /* trailing null */
2635 pSMB->OldFileName[name_len] = 0x04; /* 2nd buffer format */
Pavel Shilovsky8ceb9842012-09-18 16:20:30 -07002636 strncpy(&pSMB->OldFileName[name_len + 1], to_name, name_len2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 name_len2++; /* trailing null */
2638 name_len2++; /* signature byte */
2639 }
2640
2641 count = 1 /* 1st signature byte */ + name_len + name_len2;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00002642 inc_rfc1001_len(pSMB, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 pSMB->ByteCount = cpu_to_le16(count);
2644
2645 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2646 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +04002647 cifs_stats_inc(&tcon->stats.cifs_stats.num_renames);
Steve Frenchad7a2922008-02-07 23:25:02 +00002648 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05002649 cifs_dbg(FYI, "Send error in rename = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 cifs_buf_release(pSMB);
2652
2653 if (rc == -EAGAIN)
2654 goto renameRetry;
2655
2656 return rc;
2657}
2658
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002659int CIFSSMBRenameOpenFile(const unsigned int xid, struct cifs_tcon *pTcon,
Jeff Layton391e5752008-09-24 11:32:59 -04002660 int netfid, const char *target_name,
Steve French50c2f752007-07-13 00:33:32 +00002661 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662{
2663 struct smb_com_transaction2_sfi_req *pSMB = NULL;
2664 struct smb_com_transaction2_sfi_rsp *pSMBr = NULL;
Steve French50c2f752007-07-13 00:33:32 +00002665 struct set_file_rename *rename_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 char *data_offset;
2667 char dummy_string[30];
2668 int rc = 0;
2669 int bytes_returned = 0;
2670 int len_of_str;
2671 __u16 params, param_offset, offset, count, byte_count;
2672
Joe Perchesf96637b2013-05-04 22:12:25 -05002673 cifs_dbg(FYI, "Rename to File by handle\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 rc = smb_init(SMB_COM_TRANSACTION2, 15, pTcon, (void **) &pSMB,
2675 (void **) &pSMBr);
2676 if (rc)
2677 return rc;
2678
2679 params = 6;
2680 pSMB->MaxSetupCount = 0;
2681 pSMB->Reserved = 0;
2682 pSMB->Flags = 0;
2683 pSMB->Timeout = 0;
2684 pSMB->Reserved2 = 0;
2685 param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4;
2686 offset = param_offset + params;
2687
2688 data_offset = (char *) (&pSMB->hdr.Protocol) + offset;
2689 rename_info = (struct set_file_rename *) data_offset;
2690 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve Frenchad7a2922008-02-07 23:25:02 +00002691 pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find max SMB from sess */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 pSMB->SetupCount = 1;
2693 pSMB->Reserved3 = 0;
2694 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION);
2695 byte_count = 3 /* pad */ + params;
2696 pSMB->ParameterCount = cpu_to_le16(params);
2697 pSMB->TotalParameterCount = pSMB->ParameterCount;
2698 pSMB->ParameterOffset = cpu_to_le16(param_offset);
2699 pSMB->DataOffset = cpu_to_le16(offset);
2700 /* construct random name ".cifs_tmp<inodenum><mid>" */
2701 rename_info->overwrite = cpu_to_le32(1);
2702 rename_info->root_fid = 0;
2703 /* unicode only call */
Steve French790fe572007-07-07 19:25:05 +00002704 if (target_name == NULL) {
Steve French50c2f752007-07-13 00:33:32 +00002705 sprintf(dummy_string, "cifs%x", pSMB->hdr.Mid);
Steve Frenchacbbb762012-01-18 22:32:33 -06002706 len_of_str =
2707 cifsConvertToUTF16((__le16 *)rename_info->target_name,
Steve French737b7582005-04-28 22:41:06 -07002708 dummy_string, 24, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 } else {
Steve Frenchacbbb762012-01-18 22:32:33 -06002710 len_of_str =
2711 cifsConvertToUTF16((__le16 *)rename_info->target_name,
Steve French50c2f752007-07-13 00:33:32 +00002712 target_name, PATH_MAX, nls_codepage,
2713 remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 }
2715 rename_info->target_name_len = cpu_to_le32(2 * len_of_str);
Jeff Layton391e5752008-09-24 11:32:59 -04002716 count = 12 /* sizeof(struct set_file_rename) */ + (2 * len_of_str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 byte_count += count;
2718 pSMB->DataCount = cpu_to_le16(count);
2719 pSMB->TotalDataCount = pSMB->DataCount;
2720 pSMB->Fid = netfid;
2721 pSMB->InformationLevel =
2722 cpu_to_le16(SMB_SET_FILE_RENAME_INFORMATION);
2723 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00002724 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 pSMB->ByteCount = cpu_to_le16(byte_count);
2726 rc = SendReceive(xid, pTcon->ses, (struct smb_hdr *) pSMB,
Steve French50c2f752007-07-13 00:33:32 +00002727 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +04002728 cifs_stats_inc(&pTcon->stats.cifs_stats.num_t2renames);
Steve Frenchad7a2922008-02-07 23:25:02 +00002729 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05002730 cifs_dbg(FYI, "Send error in Rename (by file handle) = %d\n",
2731 rc);
Steve Frencha5a2b482005-08-20 21:42:53 -07002732
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 cifs_buf_release(pSMB);
2734
2735 /* Note: On -EAGAIN error only caller can retry on handle based calls
2736 since file handle passed in no longer valid */
2737
2738 return rc;
2739}
2740
2741int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002742CIFSSMBCopy(const unsigned int xid, struct cifs_tcon *tcon,
2743 const char *fromName, const __u16 target_tid, const char *toName,
2744 const int flags, const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745{
2746 int rc = 0;
2747 COPY_REQ *pSMB = NULL;
2748 COPY_RSP *pSMBr = NULL;
2749 int bytes_returned;
2750 int name_len, name_len2;
2751 __u16 count;
2752
Joe Perchesf96637b2013-05-04 22:12:25 -05002753 cifs_dbg(FYI, "In CIFSSMBCopy\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754copyRetry:
2755 rc = smb_init(SMB_COM_COPY, 1, tcon, (void **) &pSMB,
2756 (void **) &pSMBr);
2757 if (rc)
2758 return rc;
2759
2760 pSMB->BufferFormat = 0x04;
2761 pSMB->Tid2 = target_tid;
2762
2763 pSMB->Flags = cpu_to_le16(flags & COPY_TREE);
2764
2765 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
Steve Frenchacbbb762012-01-18 22:32:33 -06002766 name_len = cifsConvertToUTF16((__le16 *) pSMB->OldFileName,
2767 fromName, PATH_MAX, nls_codepage,
2768 remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 name_len++; /* trailing null */
2770 name_len *= 2;
2771 pSMB->OldFileName[name_len] = 0x04; /* pad */
2772 /* protocol requires ASCII signature byte on Unicode string */
2773 pSMB->OldFileName[name_len + 1] = 0x00;
Steve French50c2f752007-07-13 00:33:32 +00002774 name_len2 =
Steve Frenchacbbb762012-01-18 22:32:33 -06002775 cifsConvertToUTF16((__le16 *)&pSMB->OldFileName[name_len+2],
2776 toName, PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 name_len2 += 1 /* trailing null */ + 1 /* Signature word */ ;
2778 name_len2 *= 2; /* convert to bytes */
Steve French50c2f752007-07-13 00:33:32 +00002779 } else { /* BB improve the check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 name_len = strnlen(fromName, PATH_MAX);
2781 name_len++; /* trailing null */
2782 strncpy(pSMB->OldFileName, fromName, name_len);
2783 name_len2 = strnlen(toName, PATH_MAX);
2784 name_len2++; /* trailing null */
2785 pSMB->OldFileName[name_len] = 0x04; /* 2nd buffer format */
2786 strncpy(&pSMB->OldFileName[name_len + 1], toName, name_len2);
2787 name_len2++; /* trailing null */
2788 name_len2++; /* signature byte */
2789 }
2790
2791 count = 1 /* 1st signature byte */ + name_len + name_len2;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00002792 inc_rfc1001_len(pSMB, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 pSMB->ByteCount = cpu_to_le16(count);
2794
2795 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2796 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2797 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002798 cifs_dbg(FYI, "Send error in copy = %d with %d files copied\n",
2799 rc, le16_to_cpu(pSMBr->CopyCount));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 }
Steve French0d817bc2008-05-22 02:02:03 +00002801 cifs_buf_release(pSMB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
2803 if (rc == -EAGAIN)
2804 goto copyRetry;
2805
2806 return rc;
2807}
2808
2809int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002810CIFSUnixCreateSymLink(const unsigned int xid, struct cifs_tcon *tcon,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 const char *fromName, const char *toName,
Nakajima Akirabc8ebdc42015-02-13 15:35:58 +09002812 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813{
2814 TRANSACTION2_SPI_REQ *pSMB = NULL;
2815 TRANSACTION2_SPI_RSP *pSMBr = NULL;
2816 char *data_offset;
2817 int name_len;
2818 int name_len_target;
2819 int rc = 0;
2820 int bytes_returned = 0;
2821 __u16 params, param_offset, offset, byte_count;
2822
Joe Perchesf96637b2013-05-04 22:12:25 -05002823 cifs_dbg(FYI, "In Symlink Unix style\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824createSymLinkRetry:
2825 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
2826 (void **) &pSMBr);
2827 if (rc)
2828 return rc;
2829
2830 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
2831 name_len =
Nakajima Akirabc8ebdc42015-02-13 15:35:58 +09002832 cifsConvertToUTF16((__le16 *) pSMB->FileName, fromName,
2833 /* find define for this maxpathcomponent */
2834 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 name_len++; /* trailing null */
2836 name_len *= 2;
2837
Steve French50c2f752007-07-13 00:33:32 +00002838 } else { /* BB improve the check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 name_len = strnlen(fromName, PATH_MAX);
2840 name_len++; /* trailing null */
2841 strncpy(pSMB->FileName, fromName, name_len);
2842 }
2843 params = 6 + name_len;
2844 pSMB->MaxSetupCount = 0;
2845 pSMB->Reserved = 0;
2846 pSMB->Flags = 0;
2847 pSMB->Timeout = 0;
2848 pSMB->Reserved2 = 0;
2849 param_offset = offsetof(struct smb_com_transaction2_spi_req,
Steve French50c2f752007-07-13 00:33:32 +00002850 InformationLevel) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 offset = param_offset + params;
2852
2853 data_offset = (char *) (&pSMB->hdr.Protocol) + offset;
2854 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
2855 name_len_target =
Nakajima Akirabc8ebdc42015-02-13 15:35:58 +09002856 cifsConvertToUTF16((__le16 *) data_offset, toName,
2857 /* find define for this maxpathcomponent */
2858 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 name_len_target++; /* trailing null */
2860 name_len_target *= 2;
Steve French50c2f752007-07-13 00:33:32 +00002861 } else { /* BB improve the check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 name_len_target = strnlen(toName, PATH_MAX);
2863 name_len_target++; /* trailing null */
2864 strncpy(data_offset, toName, name_len_target);
2865 }
2866
2867 pSMB->MaxParameterCount = cpu_to_le16(2);
2868 /* BB find exact max on data count below from sess */
2869 pSMB->MaxDataCount = cpu_to_le16(1000);
2870 pSMB->SetupCount = 1;
2871 pSMB->Reserved3 = 0;
2872 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
2873 byte_count = 3 /* pad */ + params + name_len_target;
2874 pSMB->DataCount = cpu_to_le16(name_len_target);
2875 pSMB->ParameterCount = cpu_to_le16(params);
2876 pSMB->TotalDataCount = pSMB->DataCount;
2877 pSMB->TotalParameterCount = pSMB->ParameterCount;
2878 pSMB->ParameterOffset = cpu_to_le16(param_offset);
2879 pSMB->DataOffset = cpu_to_le16(offset);
2880 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_UNIX_LINK);
2881 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00002882 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 pSMB->ByteCount = cpu_to_le16(byte_count);
2884 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2885 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +04002886 cifs_stats_inc(&tcon->stats.cifs_stats.num_symlinks);
Steve Frenchad7a2922008-02-07 23:25:02 +00002887 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05002888 cifs_dbg(FYI, "Send error in SetPathInfo create symlink = %d\n",
2889 rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
Steve French0d817bc2008-05-22 02:02:03 +00002891 cifs_buf_release(pSMB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
2893 if (rc == -EAGAIN)
2894 goto createSymLinkRetry;
2895
2896 return rc;
2897}
2898
2899int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002900CIFSUnixCreateHardLink(const unsigned int xid, struct cifs_tcon *tcon,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 const char *fromName, const char *toName,
Steve French737b7582005-04-28 22:41:06 -07002902 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903{
2904 TRANSACTION2_SPI_REQ *pSMB = NULL;
2905 TRANSACTION2_SPI_RSP *pSMBr = NULL;
2906 char *data_offset;
2907 int name_len;
2908 int name_len_target;
2909 int rc = 0;
2910 int bytes_returned = 0;
2911 __u16 params, param_offset, offset, byte_count;
2912
Joe Perchesf96637b2013-05-04 22:12:25 -05002913 cifs_dbg(FYI, "In Create Hard link Unix style\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914createHardLinkRetry:
2915 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
2916 (void **) &pSMBr);
2917 if (rc)
2918 return rc;
2919
2920 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
Steve Frenchacbbb762012-01-18 22:32:33 -06002921 name_len = cifsConvertToUTF16((__le16 *) pSMB->FileName, toName,
2922 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 name_len++; /* trailing null */
2924 name_len *= 2;
2925
Steve French50c2f752007-07-13 00:33:32 +00002926 } else { /* BB improve the check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 name_len = strnlen(toName, PATH_MAX);
2928 name_len++; /* trailing null */
2929 strncpy(pSMB->FileName, toName, name_len);
2930 }
2931 params = 6 + name_len;
2932 pSMB->MaxSetupCount = 0;
2933 pSMB->Reserved = 0;
2934 pSMB->Flags = 0;
2935 pSMB->Timeout = 0;
2936 pSMB->Reserved2 = 0;
2937 param_offset = offsetof(struct smb_com_transaction2_spi_req,
Steve French50c2f752007-07-13 00:33:32 +00002938 InformationLevel) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 offset = param_offset + params;
2940
2941 data_offset = (char *) (&pSMB->hdr.Protocol) + offset;
2942 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
2943 name_len_target =
Steve Frenchacbbb762012-01-18 22:32:33 -06002944 cifsConvertToUTF16((__le16 *) data_offset, fromName,
2945 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 name_len_target++; /* trailing null */
2947 name_len_target *= 2;
Steve French50c2f752007-07-13 00:33:32 +00002948 } else { /* BB improve the check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 name_len_target = strnlen(fromName, PATH_MAX);
2950 name_len_target++; /* trailing null */
2951 strncpy(data_offset, fromName, name_len_target);
2952 }
2953
2954 pSMB->MaxParameterCount = cpu_to_le16(2);
2955 /* BB find exact max on data count below from sess*/
2956 pSMB->MaxDataCount = cpu_to_le16(1000);
2957 pSMB->SetupCount = 1;
2958 pSMB->Reserved3 = 0;
2959 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
2960 byte_count = 3 /* pad */ + params + name_len_target;
2961 pSMB->ParameterCount = cpu_to_le16(params);
2962 pSMB->TotalParameterCount = pSMB->ParameterCount;
2963 pSMB->DataCount = cpu_to_le16(name_len_target);
2964 pSMB->TotalDataCount = pSMB->DataCount;
2965 pSMB->ParameterOffset = cpu_to_le16(param_offset);
2966 pSMB->DataOffset = cpu_to_le16(offset);
2967 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_UNIX_HLINK);
2968 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00002969 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 pSMB->ByteCount = cpu_to_le16(byte_count);
2971 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2972 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +04002973 cifs_stats_inc(&tcon->stats.cifs_stats.num_hardlinks);
Steve Frenchad7a2922008-02-07 23:25:02 +00002974 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05002975 cifs_dbg(FYI, "Send error in SetPathInfo (hard link) = %d\n",
2976 rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
2978 cifs_buf_release(pSMB);
2979 if (rc == -EAGAIN)
2980 goto createHardLinkRetry;
2981
2982 return rc;
2983}
2984
2985int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04002986CIFSCreateHardLink(const unsigned int xid, struct cifs_tcon *tcon,
Steve Frenchd6e906f2012-09-18 16:20:31 -07002987 const char *from_name, const char *to_name,
2988 struct cifs_sb_info *cifs_sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989{
2990 int rc = 0;
2991 NT_RENAME_REQ *pSMB = NULL;
2992 RENAME_RSP *pSMBr = NULL;
2993 int bytes_returned;
2994 int name_len, name_len2;
2995 __u16 count;
Steve French2baa2682014-09-27 02:19:01 -05002996 int remap = cifs_remap(cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997
Joe Perchesf96637b2013-05-04 22:12:25 -05002998 cifs_dbg(FYI, "In CIFSCreateHardLink\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999winCreateHardLinkRetry:
3000
3001 rc = smb_init(SMB_COM_NT_RENAME, 4, tcon, (void **) &pSMB,
3002 (void **) &pSMBr);
3003 if (rc)
3004 return rc;
3005
3006 pSMB->SearchAttributes =
3007 cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM |
3008 ATTR_DIRECTORY);
3009 pSMB->Flags = cpu_to_le16(CREATE_HARD_LINK);
3010 pSMB->ClusterCount = 0;
3011
3012 pSMB->BufferFormat = 0x04;
3013
3014 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
3015 name_len =
Steve Frenchd6e906f2012-09-18 16:20:31 -07003016 cifsConvertToUTF16((__le16 *) pSMB->OldFileName, from_name,
3017 PATH_MAX, cifs_sb->local_nls, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 name_len++; /* trailing null */
3019 name_len *= 2;
Jeff Laytonfcc7c092009-02-28 12:59:03 -05003020
3021 /* protocol specifies ASCII buffer format (0x04) for unicode */
3022 pSMB->OldFileName[name_len] = 0x04;
3023 pSMB->OldFileName[name_len + 1] = 0x00; /* pad */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 name_len2 =
Steve Frenchacbbb762012-01-18 22:32:33 -06003025 cifsConvertToUTF16((__le16 *)&pSMB->OldFileName[name_len+2],
Steve Frenchd6e906f2012-09-18 16:20:31 -07003026 to_name, PATH_MAX, cifs_sb->local_nls,
3027 remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 name_len2 += 1 /* trailing null */ + 1 /* Signature word */ ;
3029 name_len2 *= 2; /* convert to bytes */
Steve French50c2f752007-07-13 00:33:32 +00003030 } else { /* BB improve the check for buffer overruns BB */
Steve Frenchd6e906f2012-09-18 16:20:31 -07003031 name_len = strnlen(from_name, PATH_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 name_len++; /* trailing null */
Steve Frenchd6e906f2012-09-18 16:20:31 -07003033 strncpy(pSMB->OldFileName, from_name, name_len);
3034 name_len2 = strnlen(to_name, PATH_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 name_len2++; /* trailing null */
3036 pSMB->OldFileName[name_len] = 0x04; /* 2nd buffer format */
Steve Frenchd6e906f2012-09-18 16:20:31 -07003037 strncpy(&pSMB->OldFileName[name_len + 1], to_name, name_len2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 name_len2++; /* trailing null */
3039 name_len2++; /* signature byte */
3040 }
3041
3042 count = 1 /* string type byte */ + name_len + name_len2;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00003043 inc_rfc1001_len(pSMB, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 pSMB->ByteCount = cpu_to_le16(count);
3045
3046 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3047 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +04003048 cifs_stats_inc(&tcon->stats.cifs_stats.num_hardlinks);
Steve Frenchad7a2922008-02-07 23:25:02 +00003049 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05003050 cifs_dbg(FYI, "Send error in hard link (NT rename) = %d\n", rc);
Steve Frenchad7a2922008-02-07 23:25:02 +00003051
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 cifs_buf_release(pSMB);
3053 if (rc == -EAGAIN)
3054 goto winCreateHardLinkRetry;
3055
3056 return rc;
3057}
3058
3059int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003060CIFSSMBUnixQuerySymLink(const unsigned int xid, struct cifs_tcon *tcon,
Jeff Layton460b9692009-04-30 07:17:56 -04003061 const unsigned char *searchName, char **symlinkinfo,
Nakajima Akirabc8ebdc42015-02-13 15:35:58 +09003062 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063{
3064/* SMB_QUERY_FILE_UNIX_LINK */
3065 TRANSACTION2_QPI_REQ *pSMB = NULL;
3066 TRANSACTION2_QPI_RSP *pSMBr = NULL;
3067 int rc = 0;
3068 int bytes_returned;
3069 int name_len;
3070 __u16 params, byte_count;
Jeff Layton460b9692009-04-30 07:17:56 -04003071 char *data_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072
Joe Perchesf96637b2013-05-04 22:12:25 -05003073 cifs_dbg(FYI, "In QPathSymLinkInfo (Unix) for path %s\n", searchName);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
3075querySymLinkRetry:
3076 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3077 (void **) &pSMBr);
3078 if (rc)
3079 return rc;
3080
3081 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
3082 name_len =
Nakajima Akirabc8ebdc42015-02-13 15:35:58 +09003083 cifsConvertToUTF16((__le16 *) pSMB->FileName,
3084 searchName, PATH_MAX, nls_codepage,
3085 remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 name_len++; /* trailing null */
3087 name_len *= 2;
Steve French50c2f752007-07-13 00:33:32 +00003088 } else { /* BB improve the check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 name_len = strnlen(searchName, PATH_MAX);
3090 name_len++; /* trailing null */
3091 strncpy(pSMB->FileName, searchName, name_len);
3092 }
3093
3094 params = 2 /* level */ + 4 /* rsrvd */ + name_len /* incl null */ ;
3095 pSMB->TotalDataCount = 0;
3096 pSMB->MaxParameterCount = cpu_to_le16(2);
Jeff Layton46a75742009-05-24 18:45:17 -04003097 pSMB->MaxDataCount = cpu_to_le16(CIFSMaxBufSize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 pSMB->MaxSetupCount = 0;
3099 pSMB->Reserved = 0;
3100 pSMB->Flags = 0;
3101 pSMB->Timeout = 0;
3102 pSMB->Reserved2 = 0;
3103 pSMB->ParameterOffset = cpu_to_le16(offsetof(
Steve French50c2f752007-07-13 00:33:32 +00003104 struct smb_com_transaction2_qpi_req, InformationLevel) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 pSMB->DataCount = 0;
3106 pSMB->DataOffset = 0;
3107 pSMB->SetupCount = 1;
3108 pSMB->Reserved3 = 0;
3109 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
3110 byte_count = params + 1 /* pad */ ;
3111 pSMB->TotalParameterCount = cpu_to_le16(params);
3112 pSMB->ParameterCount = pSMB->TotalParameterCount;
3113 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_UNIX_LINK);
3114 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00003115 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 pSMB->ByteCount = cpu_to_le16(byte_count);
3117
3118 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3119 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3120 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003121 cifs_dbg(FYI, "Send error in QuerySymLinkInfo = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 } else {
3123 /* decode response */
3124
3125 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 /* BB also check enough total bytes returned */
Jeff Layton820a8032011-05-04 08:05:26 -04003127 if (rc || get_bcc(&pSMBr->hdr) < 2)
Jeff Layton460b9692009-04-30 07:17:56 -04003128 rc = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 else {
Steve French0e0d2cf2009-05-01 05:27:32 +00003130 bool is_unicode;
Jeff Layton460b9692009-04-30 07:17:56 -04003131 u16 count = le16_to_cpu(pSMBr->t2.DataCount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132
Jeff Layton460b9692009-04-30 07:17:56 -04003133 data_start = ((char *) &pSMBr->hdr.Protocol) +
3134 le16_to_cpu(pSMBr->t2.DataOffset);
3135
Steve French0e0d2cf2009-05-01 05:27:32 +00003136 if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE)
3137 is_unicode = true;
3138 else
3139 is_unicode = false;
3140
Steve French737b7582005-04-28 22:41:06 -07003141 /* BB FIXME investigate remapping reserved chars here */
Steve Frenchacbbb762012-01-18 22:32:33 -06003142 *symlinkinfo = cifs_strndup_from_utf16(data_start,
3143 count, is_unicode, nls_codepage);
Jeff Layton8b6427a2009-05-19 09:57:03 -04003144 if (!*symlinkinfo)
Jeff Layton460b9692009-04-30 07:17:56 -04003145 rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 }
3147 }
3148 cifs_buf_release(pSMB);
3149 if (rc == -EAGAIN)
3150 goto querySymLinkRetry;
3151 return rc;
3152}
3153
Steve Frenchc52a9552011-02-24 06:16:22 +00003154/*
3155 * Recent Windows versions now create symlinks more frequently
3156 * and they use the "reparse point" mechanism below. We can of course
3157 * do symlinks nicely to Samba and other servers which support the
3158 * CIFS Unix Extensions and we can also do SFU symlinks and "client only"
3159 * "MF" symlinks optionally, but for recent Windows we really need to
3160 * reenable the code below and fix the cifs_symlink callers to handle this.
3161 * In the interim this code has been moved to its own config option so
3162 * it is not compiled in by default until callers fixed up and more tested.
3163 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164int
Pavel Shilovskyd244bf22013-08-14 19:25:22 +04003165CIFSSMBQuerySymLink(const unsigned int xid, struct cifs_tcon *tcon,
3166 __u16 fid, char **symlinkinfo,
3167 const struct nls_table *nls_codepage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168{
3169 int rc = 0;
3170 int bytes_returned;
Steve French50c2f752007-07-13 00:33:32 +00003171 struct smb_com_transaction_ioctl_req *pSMB;
3172 struct smb_com_transaction_ioctl_rsp *pSMBr;
Pavel Shilovskyd244bf22013-08-14 19:25:22 +04003173 bool is_unicode;
3174 unsigned int sub_len;
3175 char *sub_start;
Steve Frenchc31f3302013-09-28 18:24:12 -05003176 struct reparse_symlink_data *reparse_buf;
3177 struct reparse_posix_data *posix_buf;
Pavel Shilovskyd244bf22013-08-14 19:25:22 +04003178 __u32 data_offset, data_count;
3179 char *end_of_smb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180
Pavel Shilovskyd244bf22013-08-14 19:25:22 +04003181 cifs_dbg(FYI, "In Windows reparse style QueryLink for fid %u\n", fid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 rc = smb_init(SMB_COM_NT_TRANSACT, 23, tcon, (void **) &pSMB,
3183 (void **) &pSMBr);
3184 if (rc)
3185 return rc;
3186
3187 pSMB->TotalParameterCount = 0 ;
3188 pSMB->TotalDataCount = 0;
3189 pSMB->MaxParameterCount = cpu_to_le32(2);
3190 /* BB find exact data count max from sess structure BB */
Jeff Laytonc974bef2011-10-11 06:41:32 -04003191 pSMB->MaxDataCount = cpu_to_le32(CIFSMaxBufSize & 0xFFFFFF00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 pSMB->MaxSetupCount = 4;
3193 pSMB->Reserved = 0;
3194 pSMB->ParameterOffset = 0;
3195 pSMB->DataCount = 0;
3196 pSMB->DataOffset = 0;
3197 pSMB->SetupCount = 4;
3198 pSMB->SubCommand = cpu_to_le16(NT_TRANSACT_IOCTL);
3199 pSMB->ParameterCount = pSMB->TotalParameterCount;
3200 pSMB->FunctionCode = cpu_to_le32(FSCTL_GET_REPARSE_POINT);
3201 pSMB->IsFsctl = 1; /* FSCTL */
3202 pSMB->IsRootFlag = 0;
3203 pSMB->Fid = fid; /* file handle always le */
3204 pSMB->ByteCount = 0;
3205
3206 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3207 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3208 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003209 cifs_dbg(FYI, "Send error in QueryReparseLinkInfo = %d\n", rc);
Pavel Shilovskyd244bf22013-08-14 19:25:22 +04003210 goto qreparse_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 }
Steve French989c7e52009-05-02 05:32:20 +00003212
Pavel Shilovskyd244bf22013-08-14 19:25:22 +04003213 data_offset = le32_to_cpu(pSMBr->DataOffset);
3214 data_count = le32_to_cpu(pSMBr->DataCount);
3215 if (get_bcc(&pSMBr->hdr) < 2 || data_offset > 512) {
3216 /* BB also check enough total bytes returned */
3217 rc = -EIO; /* bad smb */
3218 goto qreparse_out;
3219 }
3220 if (!data_count || (data_count > 2048)) {
3221 rc = -EIO;
3222 cifs_dbg(FYI, "Invalid return data count on get reparse info ioctl\n");
3223 goto qreparse_out;
3224 }
3225 end_of_smb = 2 + get_bcc(&pSMBr->hdr) + (char *)&pSMBr->ByteCount;
Steve Frenchc31f3302013-09-28 18:24:12 -05003226 reparse_buf = (struct reparse_symlink_data *)
Pavel Shilovskyd244bf22013-08-14 19:25:22 +04003227 ((char *)&pSMBr->hdr.Protocol + data_offset);
3228 if ((char *)reparse_buf >= end_of_smb) {
3229 rc = -EIO;
3230 goto qreparse_out;
3231 }
Steve Frenchc31f3302013-09-28 18:24:12 -05003232 if (reparse_buf->ReparseTag == cpu_to_le32(IO_REPARSE_TAG_NFS)) {
3233 cifs_dbg(FYI, "NFS style reparse tag\n");
3234 posix_buf = (struct reparse_posix_data *)reparse_buf;
3235
3236 if (posix_buf->InodeType != cpu_to_le64(NFS_SPECFILE_LNK)) {
3237 cifs_dbg(FYI, "unsupported file type 0x%llx\n",
3238 le64_to_cpu(posix_buf->InodeType));
3239 rc = -EOPNOTSUPP;
3240 goto qreparse_out;
3241 }
3242 is_unicode = true;
3243 sub_len = le16_to_cpu(reparse_buf->ReparseDataLength);
3244 if (posix_buf->PathBuffer + sub_len > end_of_smb) {
3245 cifs_dbg(FYI, "reparse buf beyond SMB\n");
3246 rc = -EIO;
3247 goto qreparse_out;
3248 }
3249 *symlinkinfo = cifs_strndup_from_utf16(posix_buf->PathBuffer,
3250 sub_len, is_unicode, nls_codepage);
3251 goto qreparse_out;
3252 } else if (reparse_buf->ReparseTag !=
3253 cpu_to_le32(IO_REPARSE_TAG_SYMLINK)) {
3254 rc = -EOPNOTSUPP;
3255 goto qreparse_out;
3256 }
3257
3258 /* Reparse tag is NTFS symlink */
3259 sub_start = le16_to_cpu(reparse_buf->SubstituteNameOffset) +
3260 reparse_buf->PathBuffer;
3261 sub_len = le16_to_cpu(reparse_buf->SubstituteNameLength);
3262 if (sub_start + sub_len > end_of_smb) {
Pavel Shilovskyd244bf22013-08-14 19:25:22 +04003263 cifs_dbg(FYI, "reparse buf beyond SMB\n");
3264 rc = -EIO;
3265 goto qreparse_out;
3266 }
Pavel Shilovskyd244bf22013-08-14 19:25:22 +04003267 if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE)
3268 is_unicode = true;
3269 else
3270 is_unicode = false;
3271
3272 /* BB FIXME investigate remapping reserved chars here */
3273 *symlinkinfo = cifs_strndup_from_utf16(sub_start, sub_len, is_unicode,
3274 nls_codepage);
3275 if (!*symlinkinfo)
3276 rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277qreparse_out:
Steve French4a6d87f2005-08-13 08:15:54 -07003278 cifs_buf_release(pSMB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279
Pavel Shilovskyd244bf22013-08-14 19:25:22 +04003280 /*
3281 * Note: On -EAGAIN error only caller can retry on handle based calls
3282 * since file handle passed in no longer valid.
3283 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 return rc;
3285}
3286
Steve Frenchc7f508a2013-10-14 15:27:32 -05003287int
3288CIFSSMB_set_compression(const unsigned int xid, struct cifs_tcon *tcon,
3289 __u16 fid)
3290{
3291 int rc = 0;
3292 int bytes_returned;
3293 struct smb_com_transaction_compr_ioctl_req *pSMB;
3294 struct smb_com_transaction_ioctl_rsp *pSMBr;
3295
3296 cifs_dbg(FYI, "Set compression for %u\n", fid);
3297 rc = smb_init(SMB_COM_NT_TRANSACT, 23, tcon, (void **) &pSMB,
3298 (void **) &pSMBr);
3299 if (rc)
3300 return rc;
3301
3302 pSMB->compression_state = cpu_to_le16(COMPRESSION_FORMAT_DEFAULT);
3303
3304 pSMB->TotalParameterCount = 0;
Fabian Frederickbc09d142014-12-10 15:41:15 -08003305 pSMB->TotalDataCount = cpu_to_le32(2);
Steve Frenchc7f508a2013-10-14 15:27:32 -05003306 pSMB->MaxParameterCount = 0;
3307 pSMB->MaxDataCount = 0;
3308 pSMB->MaxSetupCount = 4;
3309 pSMB->Reserved = 0;
3310 pSMB->ParameterOffset = 0;
Fabian Frederickbc09d142014-12-10 15:41:15 -08003311 pSMB->DataCount = cpu_to_le32(2);
Steve Frenchc7f508a2013-10-14 15:27:32 -05003312 pSMB->DataOffset =
3313 cpu_to_le32(offsetof(struct smb_com_transaction_compr_ioctl_req,
3314 compression_state) - 4); /* 84 */
3315 pSMB->SetupCount = 4;
Fabian Frederickbc09d142014-12-10 15:41:15 -08003316 pSMB->SubCommand = cpu_to_le16(NT_TRANSACT_IOCTL);
Steve Frenchc7f508a2013-10-14 15:27:32 -05003317 pSMB->ParameterCount = 0;
Fabian Frederickbc09d142014-12-10 15:41:15 -08003318 pSMB->FunctionCode = cpu_to_le32(FSCTL_SET_COMPRESSION);
Steve Frenchc7f508a2013-10-14 15:27:32 -05003319 pSMB->IsFsctl = 1; /* FSCTL */
3320 pSMB->IsRootFlag = 0;
3321 pSMB->Fid = fid; /* file handle always le */
3322 /* 3 byte pad, followed by 2 byte compress state */
Fabian Frederickbc09d142014-12-10 15:41:15 -08003323 pSMB->ByteCount = cpu_to_le16(5);
Steve Frenchc7f508a2013-10-14 15:27:32 -05003324 inc_rfc1001_len(pSMB, 5);
3325
3326 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3327 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3328 if (rc)
3329 cifs_dbg(FYI, "Send error in SetCompression = %d\n", rc);
3330
3331 cifs_buf_release(pSMB);
3332
3333 /*
3334 * Note: On -EAGAIN error only caller can retry on handle based calls
3335 * since file handle passed in no longer valid.
3336 */
3337 return rc;
3338}
3339
3340
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341#ifdef CONFIG_CIFS_POSIX
3342
3343/*Convert an Access Control Entry from wire format to local POSIX xattr format*/
Andreas Gruenbacher2211d5b2016-09-27 13:03:22 +02003344static void cifs_convert_ace(struct posix_acl_xattr_entry *ace,
Steve French50c2f752007-07-13 00:33:32 +00003345 struct cifs_posix_ace *cifs_ace)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346{
3347 /* u8 cifs fields do not need le conversion */
Steve Frenchff7feac2005-11-15 16:45:16 -08003348 ace->e_perm = cpu_to_le16(cifs_ace->cifs_e_perm);
3349 ace->e_tag = cpu_to_le16(cifs_ace->cifs_e_tag);
3350 ace->e_id = cpu_to_le32(le64_to_cpu(cifs_ace->cifs_uid));
Joe Perchesf96637b2013-05-04 22:12:25 -05003351/*
3352 cifs_dbg(FYI, "perm %d tag %d id %d\n",
3353 ace->e_perm, ace->e_tag, ace->e_id);
3354*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355
3356 return;
3357}
3358
3359/* Convert ACL from CIFS POSIX wire format to local Linux POSIX ACL xattr */
Steve French50c2f752007-07-13 00:33:32 +00003360static int cifs_copy_posix_acl(char *trgt, char *src, const int buflen,
3361 const int acl_type, const int size_of_data_area)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362{
3363 int size = 0;
3364 int i;
3365 __u16 count;
Steve French50c2f752007-07-13 00:33:32 +00003366 struct cifs_posix_ace *pACE;
3367 struct cifs_posix_acl *cifs_acl = (struct cifs_posix_acl *)src;
Andreas Gruenbacher2211d5b2016-09-27 13:03:22 +02003368 struct posix_acl_xattr_header *local_acl = (void *)trgt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
3370 if (le16_to_cpu(cifs_acl->version) != CIFS_ACL_VERSION)
3371 return -EOPNOTSUPP;
3372
Andreas Gruenbacher45987e02016-04-14 00:30:14 +02003373 if (acl_type == ACL_TYPE_ACCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 count = le16_to_cpu(cifs_acl->access_entry_count);
3375 pACE = &cifs_acl->ace_array[0];
3376 size = sizeof(struct cifs_posix_acl);
3377 size += sizeof(struct cifs_posix_ace) * count;
3378 /* check if we would go beyond end of SMB */
Steve French790fe572007-07-07 19:25:05 +00003379 if (size_of_data_area < size) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003380 cifs_dbg(FYI, "bad CIFS POSIX ACL size %d vs. %d\n",
3381 size_of_data_area, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 return -EINVAL;
3383 }
Andreas Gruenbacher45987e02016-04-14 00:30:14 +02003384 } else if (acl_type == ACL_TYPE_DEFAULT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 count = le16_to_cpu(cifs_acl->access_entry_count);
3386 size = sizeof(struct cifs_posix_acl);
3387 size += sizeof(struct cifs_posix_ace) * count;
3388/* skip past access ACEs to get to default ACEs */
3389 pACE = &cifs_acl->ace_array[count];
3390 count = le16_to_cpu(cifs_acl->default_entry_count);
3391 size += sizeof(struct cifs_posix_ace) * count;
3392 /* check if we would go beyond end of SMB */
Steve French790fe572007-07-07 19:25:05 +00003393 if (size_of_data_area < size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 return -EINVAL;
3395 } else {
3396 /* illegal type */
3397 return -EINVAL;
3398 }
3399
3400 size = posix_acl_xattr_size(count);
Steve French790fe572007-07-07 19:25:05 +00003401 if ((buflen == 0) || (local_acl == NULL)) {
Steve French50c2f752007-07-13 00:33:32 +00003402 /* used to query ACL EA size */
Steve French790fe572007-07-07 19:25:05 +00003403 } else if (size > buflen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 return -ERANGE;
3405 } else /* buffer big enough */ {
Andreas Gruenbacher2211d5b2016-09-27 13:03:22 +02003406 struct posix_acl_xattr_entry *ace = (void *)(local_acl + 1);
3407
Steve Frenchff7feac2005-11-15 16:45:16 -08003408 local_acl->a_version = cpu_to_le32(POSIX_ACL_XATTR_VERSION);
Steve French50c2f752007-07-13 00:33:32 +00003409 for (i = 0; i < count ; i++) {
Andreas Gruenbacher2211d5b2016-09-27 13:03:22 +02003410 cifs_convert_ace(&ace[i], pACE);
Steve French50c2f752007-07-13 00:33:32 +00003411 pACE++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 }
3413 }
3414 return size;
3415}
3416
Steve French50c2f752007-07-13 00:33:32 +00003417static __u16 convert_ace_to_cifs_ace(struct cifs_posix_ace *cifs_ace,
Andreas Gruenbacher2211d5b2016-09-27 13:03:22 +02003418 const struct posix_acl_xattr_entry *local_ace)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419{
3420 __u16 rc = 0; /* 0 = ACL converted ok */
3421
Steve Frenchff7feac2005-11-15 16:45:16 -08003422 cifs_ace->cifs_e_perm = le16_to_cpu(local_ace->e_perm);
3423 cifs_ace->cifs_e_tag = le16_to_cpu(local_ace->e_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 /* BB is there a better way to handle the large uid? */
Steve French790fe572007-07-07 19:25:05 +00003425 if (local_ace->e_id == cpu_to_le32(-1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 /* Probably no need to le convert -1 on any arch but can not hurt */
3427 cifs_ace->cifs_uid = cpu_to_le64(-1);
Steve French50c2f752007-07-13 00:33:32 +00003428 } else
Steve Frenchff7feac2005-11-15 16:45:16 -08003429 cifs_ace->cifs_uid = cpu_to_le64(le32_to_cpu(local_ace->e_id));
Joe Perchesf96637b2013-05-04 22:12:25 -05003430/*
3431 cifs_dbg(FYI, "perm %d tag %d id %d\n",
3432 ace->e_perm, ace->e_tag, ace->e_id);
3433*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 return rc;
3435}
3436
3437/* Convert ACL from local Linux POSIX xattr to CIFS POSIX ACL wire format */
Steve French50c2f752007-07-13 00:33:32 +00003438static __u16 ACL_to_cifs_posix(char *parm_data, const char *pACL,
3439 const int buflen, const int acl_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440{
3441 __u16 rc = 0;
Steve French50c2f752007-07-13 00:33:32 +00003442 struct cifs_posix_acl *cifs_acl = (struct cifs_posix_acl *)parm_data;
Andreas Gruenbacher2211d5b2016-09-27 13:03:22 +02003443 struct posix_acl_xattr_header *local_acl = (void *)pACL;
Eryu Guanae9ebe72016-10-24 20:46:40 +08003444 struct posix_acl_xattr_entry *ace = (void *)(local_acl + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 int count;
3446 int i;
3447
Steve French790fe572007-07-07 19:25:05 +00003448 if ((buflen == 0) || (pACL == NULL) || (cifs_acl == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 return 0;
3450
3451 count = posix_acl_xattr_count((size_t)buflen);
Joe Perchesf96637b2013-05-04 22:12:25 -05003452 cifs_dbg(FYI, "setting acl with %d entries from buf of length %d and version of %d\n",
3453 count, buflen, le32_to_cpu(local_acl->a_version));
Steve French790fe572007-07-07 19:25:05 +00003454 if (le32_to_cpu(local_acl->a_version) != 2) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003455 cifs_dbg(FYI, "unknown POSIX ACL version %d\n",
3456 le32_to_cpu(local_acl->a_version));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 return 0;
3458 }
3459 cifs_acl->version = cpu_to_le16(1);
Steve Frenchb1d93352013-11-15 20:41:32 -06003460 if (acl_type == ACL_TYPE_ACCESS) {
Steve Frenchff7feac2005-11-15 16:45:16 -08003461 cifs_acl->access_entry_count = cpu_to_le16(count);
Fabian Frederickbc09d142014-12-10 15:41:15 -08003462 cifs_acl->default_entry_count = cpu_to_le16(0xFFFF);
Steve Frenchb1d93352013-11-15 20:41:32 -06003463 } else if (acl_type == ACL_TYPE_DEFAULT) {
Steve Frenchff7feac2005-11-15 16:45:16 -08003464 cifs_acl->default_entry_count = cpu_to_le16(count);
Fabian Frederickbc09d142014-12-10 15:41:15 -08003465 cifs_acl->access_entry_count = cpu_to_le16(0xFFFF);
Steve Frenchb1d93352013-11-15 20:41:32 -06003466 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -05003467 cifs_dbg(FYI, "unknown ACL type %d\n", acl_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 return 0;
3469 }
Steve French50c2f752007-07-13 00:33:32 +00003470 for (i = 0; i < count; i++) {
Eryu Guanae9ebe72016-10-24 20:46:40 +08003471 rc = convert_ace_to_cifs_ace(&cifs_acl->ace_array[i], &ace[i]);
Steve French790fe572007-07-07 19:25:05 +00003472 if (rc != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 /* ACE not converted */
3474 break;
3475 }
3476 }
Steve French790fe572007-07-07 19:25:05 +00003477 if (rc == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 rc = (__u16)(count * sizeof(struct cifs_posix_ace));
3479 rc += sizeof(struct cifs_posix_acl);
3480 /* BB add check to make sure ACL does not overflow SMB */
3481 }
3482 return rc;
3483}
3484
3485int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003486CIFSSMBGetPosixACL(const unsigned int xid, struct cifs_tcon *tcon,
Steve French50c2f752007-07-13 00:33:32 +00003487 const unsigned char *searchName,
3488 char *acl_inf, const int buflen, const int acl_type,
3489 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490{
3491/* SMB_QUERY_POSIX_ACL */
3492 TRANSACTION2_QPI_REQ *pSMB = NULL;
3493 TRANSACTION2_QPI_RSP *pSMBr = NULL;
3494 int rc = 0;
3495 int bytes_returned;
3496 int name_len;
3497 __u16 params, byte_count;
Steve French50c2f752007-07-13 00:33:32 +00003498
Joe Perchesf96637b2013-05-04 22:12:25 -05003499 cifs_dbg(FYI, "In GetPosixACL (Unix) for path %s\n", searchName);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
3501queryAclRetry:
3502 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3503 (void **) &pSMBr);
3504 if (rc)
3505 return rc;
Steve French50c2f752007-07-13 00:33:32 +00003506
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
3508 name_len =
Steve Frenchacbbb762012-01-18 22:32:33 -06003509 cifsConvertToUTF16((__le16 *) pSMB->FileName,
3510 searchName, PATH_MAX, nls_codepage,
3511 remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 name_len++; /* trailing null */
3513 name_len *= 2;
3514 pSMB->FileName[name_len] = 0;
3515 pSMB->FileName[name_len+1] = 0;
Steve French50c2f752007-07-13 00:33:32 +00003516 } else { /* BB improve the check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 name_len = strnlen(searchName, PATH_MAX);
3518 name_len++; /* trailing null */
3519 strncpy(pSMB->FileName, searchName, name_len);
3520 }
3521
3522 params = 2 /* level */ + 4 /* rsrvd */ + name_len /* incl null */ ;
3523 pSMB->TotalDataCount = 0;
3524 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve French50c2f752007-07-13 00:33:32 +00003525 /* BB find exact max data count below from sess structure BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 pSMB->MaxDataCount = cpu_to_le16(4000);
3527 pSMB->MaxSetupCount = 0;
3528 pSMB->Reserved = 0;
3529 pSMB->Flags = 0;
3530 pSMB->Timeout = 0;
3531 pSMB->Reserved2 = 0;
3532 pSMB->ParameterOffset = cpu_to_le16(
Steve French50c2f752007-07-13 00:33:32 +00003533 offsetof(struct smb_com_transaction2_qpi_req,
3534 InformationLevel) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 pSMB->DataCount = 0;
3536 pSMB->DataOffset = 0;
3537 pSMB->SetupCount = 1;
3538 pSMB->Reserved3 = 0;
3539 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
3540 byte_count = params + 1 /* pad */ ;
3541 pSMB->TotalParameterCount = cpu_to_le16(params);
3542 pSMB->ParameterCount = pSMB->TotalParameterCount;
3543 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_POSIX_ACL);
3544 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00003545 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 pSMB->ByteCount = cpu_to_le16(byte_count);
3547
3548 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3549 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +04003550 cifs_stats_inc(&tcon->stats.cifs_stats.num_acl_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003552 cifs_dbg(FYI, "Send error in Query POSIX ACL = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 } else {
3554 /* decode response */
Steve French50c2f752007-07-13 00:33:32 +00003555
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 /* BB also check enough total bytes returned */
Jeff Layton820a8032011-05-04 08:05:26 -04003558 if (rc || get_bcc(&pSMBr->hdr) < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 rc = -EIO; /* bad smb */
3560 else {
3561 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
3562 __u16 count = le16_to_cpu(pSMBr->t2.DataCount);
3563 rc = cifs_copy_posix_acl(acl_inf,
3564 (char *)&pSMBr->hdr.Protocol+data_offset,
Steve French50c2f752007-07-13 00:33:32 +00003565 buflen, acl_type, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 }
3567 }
3568 cifs_buf_release(pSMB);
3569 if (rc == -EAGAIN)
3570 goto queryAclRetry;
3571 return rc;
3572}
3573
3574int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003575CIFSSMBSetPosixACL(const unsigned int xid, struct cifs_tcon *tcon,
Steve French50c2f752007-07-13 00:33:32 +00003576 const unsigned char *fileName,
3577 const char *local_acl, const int buflen,
3578 const int acl_type,
3579 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580{
3581 struct smb_com_transaction2_spi_req *pSMB = NULL;
3582 struct smb_com_transaction2_spi_rsp *pSMBr = NULL;
3583 char *parm_data;
3584 int name_len;
3585 int rc = 0;
3586 int bytes_returned = 0;
3587 __u16 params, byte_count, data_count, param_offset, offset;
3588
Joe Perchesf96637b2013-05-04 22:12:25 -05003589 cifs_dbg(FYI, "In SetPosixACL (Unix) for path %s\n", fileName);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590setAclRetry:
3591 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
Steve French50c2f752007-07-13 00:33:32 +00003592 (void **) &pSMBr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 if (rc)
3594 return rc;
3595 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
3596 name_len =
Steve Frenchacbbb762012-01-18 22:32:33 -06003597 cifsConvertToUTF16((__le16 *) pSMB->FileName, fileName,
3598 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 name_len++; /* trailing null */
3600 name_len *= 2;
Steve French50c2f752007-07-13 00:33:32 +00003601 } else { /* BB improve the check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 name_len = strnlen(fileName, PATH_MAX);
3603 name_len++; /* trailing null */
3604 strncpy(pSMB->FileName, fileName, name_len);
3605 }
3606 params = 6 + name_len;
3607 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve French582d21e2008-05-13 04:54:12 +00003608 /* BB find max SMB size from sess */
3609 pSMB->MaxDataCount = cpu_to_le16(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 pSMB->MaxSetupCount = 0;
3611 pSMB->Reserved = 0;
3612 pSMB->Flags = 0;
3613 pSMB->Timeout = 0;
3614 pSMB->Reserved2 = 0;
3615 param_offset = offsetof(struct smb_com_transaction2_spi_req,
Steve French50c2f752007-07-13 00:33:32 +00003616 InformationLevel) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 offset = param_offset + params;
3618 parm_data = ((char *) &pSMB->hdr.Protocol) + offset;
3619 pSMB->ParameterOffset = cpu_to_le16(param_offset);
3620
3621 /* convert to on the wire format for POSIX ACL */
Steve French50c2f752007-07-13 00:33:32 +00003622 data_count = ACL_to_cifs_posix(parm_data, local_acl, buflen, acl_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623
Steve French790fe572007-07-07 19:25:05 +00003624 if (data_count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 rc = -EOPNOTSUPP;
3626 goto setACLerrorExit;
3627 }
3628 pSMB->DataOffset = cpu_to_le16(offset);
3629 pSMB->SetupCount = 1;
3630 pSMB->Reserved3 = 0;
3631 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
3632 pSMB->InformationLevel = cpu_to_le16(SMB_SET_POSIX_ACL);
3633 byte_count = 3 /* pad */ + params + data_count;
3634 pSMB->DataCount = cpu_to_le16(data_count);
3635 pSMB->TotalDataCount = pSMB->DataCount;
3636 pSMB->ParameterCount = cpu_to_le16(params);
3637 pSMB->TotalParameterCount = pSMB->ParameterCount;
3638 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00003639 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 pSMB->ByteCount = cpu_to_le16(byte_count);
3641 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
Steve French50c2f752007-07-13 00:33:32 +00003642 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Steve Frenchad7a2922008-02-07 23:25:02 +00003643 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05003644 cifs_dbg(FYI, "Set POSIX ACL returned %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645
3646setACLerrorExit:
3647 cifs_buf_release(pSMB);
3648 if (rc == -EAGAIN)
3649 goto setAclRetry;
3650 return rc;
3651}
3652
Steve Frenchf654bac2005-04-28 22:41:04 -07003653/* BB fix tabs in this function FIXME BB */
3654int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003655CIFSGetExtAttr(const unsigned int xid, struct cifs_tcon *tcon,
Steve Frenchad7a2922008-02-07 23:25:02 +00003656 const int netfid, __u64 *pExtAttrBits, __u64 *pMask)
Steve Frenchf654bac2005-04-28 22:41:04 -07003657{
Steve French50c2f752007-07-13 00:33:32 +00003658 int rc = 0;
3659 struct smb_t2_qfi_req *pSMB = NULL;
3660 struct smb_t2_qfi_rsp *pSMBr = NULL;
3661 int bytes_returned;
3662 __u16 params, byte_count;
Steve Frenchf654bac2005-04-28 22:41:04 -07003663
Joe Perchesf96637b2013-05-04 22:12:25 -05003664 cifs_dbg(FYI, "In GetExtAttr\n");
Steve French790fe572007-07-07 19:25:05 +00003665 if (tcon == NULL)
3666 return -ENODEV;
Steve Frenchf654bac2005-04-28 22:41:04 -07003667
3668GetExtAttrRetry:
Steve French790fe572007-07-07 19:25:05 +00003669 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3670 (void **) &pSMBr);
3671 if (rc)
3672 return rc;
Steve Frenchf654bac2005-04-28 22:41:04 -07003673
Steve Frenchad7a2922008-02-07 23:25:02 +00003674 params = 2 /* level */ + 2 /* fid */;
Steve French790fe572007-07-07 19:25:05 +00003675 pSMB->t2.TotalDataCount = 0;
3676 pSMB->t2.MaxParameterCount = cpu_to_le16(4);
3677 /* BB find exact max data count below from sess structure BB */
3678 pSMB->t2.MaxDataCount = cpu_to_le16(4000);
3679 pSMB->t2.MaxSetupCount = 0;
3680 pSMB->t2.Reserved = 0;
3681 pSMB->t2.Flags = 0;
3682 pSMB->t2.Timeout = 0;
3683 pSMB->t2.Reserved2 = 0;
3684 pSMB->t2.ParameterOffset = cpu_to_le16(offsetof(struct smb_t2_qfi_req,
3685 Fid) - 4);
3686 pSMB->t2.DataCount = 0;
3687 pSMB->t2.DataOffset = 0;
3688 pSMB->t2.SetupCount = 1;
3689 pSMB->t2.Reserved3 = 0;
3690 pSMB->t2.SubCommand = cpu_to_le16(TRANS2_QUERY_FILE_INFORMATION);
3691 byte_count = params + 1 /* pad */ ;
3692 pSMB->t2.TotalParameterCount = cpu_to_le16(params);
3693 pSMB->t2.ParameterCount = pSMB->t2.TotalParameterCount;
3694 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_ATTR_FLAGS);
3695 pSMB->Pad = 0;
Steve Frenchf654bac2005-04-28 22:41:04 -07003696 pSMB->Fid = netfid;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00003697 inc_rfc1001_len(pSMB, byte_count);
Steve French790fe572007-07-07 19:25:05 +00003698 pSMB->t2.ByteCount = cpu_to_le16(byte_count);
Steve Frenchf654bac2005-04-28 22:41:04 -07003699
Steve French790fe572007-07-07 19:25:05 +00003700 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3701 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3702 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003703 cifs_dbg(FYI, "error %d in GetExtAttr\n", rc);
Steve French790fe572007-07-07 19:25:05 +00003704 } else {
3705 /* decode response */
3706 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
Steve French790fe572007-07-07 19:25:05 +00003707 /* BB also check enough total bytes returned */
Jeff Layton820a8032011-05-04 08:05:26 -04003708 if (rc || get_bcc(&pSMBr->hdr) < 2)
Steve French790fe572007-07-07 19:25:05 +00003709 /* If rc should we check for EOPNOSUPP and
3710 disable the srvino flag? or in caller? */
3711 rc = -EIO; /* bad smb */
3712 else {
3713 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
3714 __u16 count = le16_to_cpu(pSMBr->t2.DataCount);
3715 struct file_chattr_info *pfinfo;
3716 /* BB Do we need a cast or hash here ? */
3717 if (count != 16) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003718 cifs_dbg(FYI, "Illegal size ret in GetExtAttr\n");
Steve French790fe572007-07-07 19:25:05 +00003719 rc = -EIO;
3720 goto GetExtAttrOut;
3721 }
3722 pfinfo = (struct file_chattr_info *)
3723 (data_offset + (char *) &pSMBr->hdr.Protocol);
3724 *pExtAttrBits = le64_to_cpu(pfinfo->mode);
Steve Frenchf654bac2005-04-28 22:41:04 -07003725 *pMask = le64_to_cpu(pfinfo->mask);
Steve French790fe572007-07-07 19:25:05 +00003726 }
3727 }
Steve Frenchf654bac2005-04-28 22:41:04 -07003728GetExtAttrOut:
Steve French790fe572007-07-07 19:25:05 +00003729 cifs_buf_release(pSMB);
3730 if (rc == -EAGAIN)
3731 goto GetExtAttrRetry;
3732 return rc;
Steve Frenchf654bac2005-04-28 22:41:04 -07003733}
3734
Steve Frenchf654bac2005-04-28 22:41:04 -07003735#endif /* CONFIG_POSIX */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736
Jeff Layton79df1ba2010-12-06 12:52:08 -05003737#ifdef CONFIG_CIFS_ACL
3738/*
3739 * Initialize NT TRANSACT SMB into small smb request buffer. This assumes that
3740 * all NT TRANSACTS that we init here have total parm and data under about 400
3741 * bytes (to fit in small cifs buffer size), which is the case so far, it
3742 * easily fits. NB: Setup words themselves and ByteCount MaxSetupCount (size of
3743 * returned setup area) and MaxParameterCount (returned parms size) must be set
3744 * by caller
3745 */
3746static int
3747smb_init_nttransact(const __u16 sub_command, const int setup_count,
Steve French96daf2b2011-05-27 04:34:02 +00003748 const int parm_len, struct cifs_tcon *tcon,
Jeff Layton79df1ba2010-12-06 12:52:08 -05003749 void **ret_buf)
3750{
3751 int rc;
3752 __u32 temp_offset;
3753 struct smb_com_ntransact_req *pSMB;
3754
3755 rc = small_smb_init(SMB_COM_NT_TRANSACT, 19 + setup_count, tcon,
3756 (void **)&pSMB);
3757 if (rc)
3758 return rc;
3759 *ret_buf = (void *)pSMB;
3760 pSMB->Reserved = 0;
3761 pSMB->TotalParameterCount = cpu_to_le32(parm_len);
3762 pSMB->TotalDataCount = 0;
Jeff Laytonc974bef2011-10-11 06:41:32 -04003763 pSMB->MaxDataCount = cpu_to_le32(CIFSMaxBufSize & 0xFFFFFF00);
Jeff Layton79df1ba2010-12-06 12:52:08 -05003764 pSMB->ParameterCount = pSMB->TotalParameterCount;
3765 pSMB->DataCount = pSMB->TotalDataCount;
3766 temp_offset = offsetof(struct smb_com_ntransact_req, Parms) +
3767 (setup_count * 2) - 4 /* for rfc1001 length itself */;
3768 pSMB->ParameterOffset = cpu_to_le32(temp_offset);
3769 pSMB->DataOffset = cpu_to_le32(temp_offset + parm_len);
3770 pSMB->SetupCount = setup_count; /* no need to le convert byte fields */
3771 pSMB->SubCommand = cpu_to_le16(sub_command);
3772 return 0;
3773}
3774
3775static int
3776validate_ntransact(char *buf, char **ppparm, char **ppdata,
3777 __u32 *pparmlen, __u32 *pdatalen)
3778{
3779 char *end_of_smb;
3780 __u32 data_count, data_offset, parm_count, parm_offset;
3781 struct smb_com_ntransact_rsp *pSMBr;
Jeff Layton820a8032011-05-04 08:05:26 -04003782 u16 bcc;
Jeff Layton79df1ba2010-12-06 12:52:08 -05003783
3784 *pdatalen = 0;
3785 *pparmlen = 0;
3786
3787 if (buf == NULL)
3788 return -EINVAL;
3789
3790 pSMBr = (struct smb_com_ntransact_rsp *)buf;
3791
Jeff Layton820a8032011-05-04 08:05:26 -04003792 bcc = get_bcc(&pSMBr->hdr);
3793 end_of_smb = 2 /* sizeof byte count */ + bcc +
Jeff Layton79df1ba2010-12-06 12:52:08 -05003794 (char *)&pSMBr->ByteCount;
3795
3796 data_offset = le32_to_cpu(pSMBr->DataOffset);
3797 data_count = le32_to_cpu(pSMBr->DataCount);
3798 parm_offset = le32_to_cpu(pSMBr->ParameterOffset);
3799 parm_count = le32_to_cpu(pSMBr->ParameterCount);
3800
3801 *ppparm = (char *)&pSMBr->hdr.Protocol + parm_offset;
3802 *ppdata = (char *)&pSMBr->hdr.Protocol + data_offset;
3803
3804 /* should we also check that parm and data areas do not overlap? */
3805 if (*ppparm > end_of_smb) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003806 cifs_dbg(FYI, "parms start after end of smb\n");
Jeff Layton79df1ba2010-12-06 12:52:08 -05003807 return -EINVAL;
3808 } else if (parm_count + *ppparm > end_of_smb) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003809 cifs_dbg(FYI, "parm end after end of smb\n");
Jeff Layton79df1ba2010-12-06 12:52:08 -05003810 return -EINVAL;
3811 } else if (*ppdata > end_of_smb) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003812 cifs_dbg(FYI, "data starts after end of smb\n");
Jeff Layton79df1ba2010-12-06 12:52:08 -05003813 return -EINVAL;
3814 } else if (data_count + *ppdata > end_of_smb) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003815 cifs_dbg(FYI, "data %p + count %d (%p) past smb end %p start %p\n",
3816 *ppdata, data_count, (data_count + *ppdata),
3817 end_of_smb, pSMBr);
Jeff Layton79df1ba2010-12-06 12:52:08 -05003818 return -EINVAL;
Jeff Layton820a8032011-05-04 08:05:26 -04003819 } else if (parm_count + data_count > bcc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003820 cifs_dbg(FYI, "parm count and data count larger than SMB\n");
Jeff Layton79df1ba2010-12-06 12:52:08 -05003821 return -EINVAL;
3822 }
3823 *pdatalen = data_count;
3824 *pparmlen = parm_count;
3825 return 0;
3826}
3827
Steve French0a4b92c2006-01-12 15:44:21 -08003828/* Get Security Descriptor (by handle) from remote server for a file or dir */
3829int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003830CIFSSMBGetCIFSACL(const unsigned int xid, struct cifs_tcon *tcon, __u16 fid,
Steve French630f3f0c2007-10-25 21:17:17 +00003831 struct cifs_ntsd **acl_inf, __u32 *pbuflen)
Steve French0a4b92c2006-01-12 15:44:21 -08003832{
3833 int rc = 0;
3834 int buf_type = 0;
Steve Frenchad7a2922008-02-07 23:25:02 +00003835 QUERY_SEC_DESC_REQ *pSMB;
Steve French0a4b92c2006-01-12 15:44:21 -08003836 struct kvec iov[1];
3837
Joe Perchesf96637b2013-05-04 22:12:25 -05003838 cifs_dbg(FYI, "GetCifsACL\n");
Steve French0a4b92c2006-01-12 15:44:21 -08003839
Steve French630f3f0c2007-10-25 21:17:17 +00003840 *pbuflen = 0;
3841 *acl_inf = NULL;
3842
Steve Frenchb9c7a2b2007-10-26 23:40:20 +00003843 rc = smb_init_nttransact(NT_TRANSACT_QUERY_SECURITY_DESC, 0,
Steve French0a4b92c2006-01-12 15:44:21 -08003844 8 /* parm len */, tcon, (void **) &pSMB);
3845 if (rc)
3846 return rc;
3847
3848 pSMB->MaxParameterCount = cpu_to_le32(4);
3849 /* BB TEST with big acls that might need to be e.g. larger than 16K */
3850 pSMB->MaxSetupCount = 0;
3851 pSMB->Fid = fid; /* file handle always le */
3852 pSMB->AclFlags = cpu_to_le32(CIFS_ACL_OWNER | CIFS_ACL_GROUP |
3853 CIFS_ACL_DACL);
3854 pSMB->ByteCount = cpu_to_le16(11); /* 3 bytes pad + 8 bytes parm */
Steve Frenchbe8e3b02011-04-29 05:40:20 +00003855 inc_rfc1001_len(pSMB, 11);
Steve French0a4b92c2006-01-12 15:44:21 -08003856 iov[0].iov_base = (char *)pSMB;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00003857 iov[0].iov_len = be32_to_cpu(pSMB->hdr.smb_buf_length) + 4;
Steve French0a4b92c2006-01-12 15:44:21 -08003858
Steve Frencha761ac52007-10-18 21:45:27 +00003859 rc = SendReceive2(xid, tcon->ses, iov, 1 /* num iovec */, &buf_type,
Jeff Layton77499812011-01-11 07:24:23 -05003860 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +04003861 cifs_stats_inc(&tcon->stats.cifs_stats.num_acl_get);
Steve French0a4b92c2006-01-12 15:44:21 -08003862 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003863 cifs_dbg(FYI, "Send error in QuerySecDesc = %d\n", rc);
Steve French0a4b92c2006-01-12 15:44:21 -08003864 } else { /* decode response */
Steve Frenchad7a2922008-02-07 23:25:02 +00003865 __le32 *parm;
Steve French630f3f0c2007-10-25 21:17:17 +00003866 __u32 parm_len;
3867 __u32 acl_len;
Steve French50c2f752007-07-13 00:33:32 +00003868 struct smb_com_ntransact_rsp *pSMBr;
Steve French630f3f0c2007-10-25 21:17:17 +00003869 char *pdata;
Steve French0a4b92c2006-01-12 15:44:21 -08003870
3871/* validate_nttransact */
Steve French50c2f752007-07-13 00:33:32 +00003872 rc = validate_ntransact(iov[0].iov_base, (char **)&parm,
Steve French630f3f0c2007-10-25 21:17:17 +00003873 &pdata, &parm_len, pbuflen);
Steve French790fe572007-07-07 19:25:05 +00003874 if (rc)
Steve French0a4b92c2006-01-12 15:44:21 -08003875 goto qsec_out;
3876 pSMBr = (struct smb_com_ntransact_rsp *)iov[0].iov_base;
3877
Joe Perchesf96637b2013-05-04 22:12:25 -05003878 cifs_dbg(FYI, "smb %p parm %p data %p\n",
3879 pSMBr, parm, *acl_inf);
Steve French0a4b92c2006-01-12 15:44:21 -08003880
3881 if (le32_to_cpu(pSMBr->ParameterCount) != 4) {
3882 rc = -EIO; /* bad smb */
Steve French630f3f0c2007-10-25 21:17:17 +00003883 *pbuflen = 0;
Steve French0a4b92c2006-01-12 15:44:21 -08003884 goto qsec_out;
3885 }
3886
3887/* BB check that data area is minimum length and as big as acl_len */
3888
Steve Frenchaf6f4612007-10-16 18:40:37 +00003889 acl_len = le32_to_cpu(*parm);
Steve French630f3f0c2007-10-25 21:17:17 +00003890 if (acl_len != *pbuflen) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003891 cifs_dbg(VFS, "acl length %d does not match %d\n",
3892 acl_len, *pbuflen);
Steve French630f3f0c2007-10-25 21:17:17 +00003893 if (*pbuflen > acl_len)
3894 *pbuflen = acl_len;
3895 }
Steve French0a4b92c2006-01-12 15:44:21 -08003896
Steve French630f3f0c2007-10-25 21:17:17 +00003897 /* check if buffer is big enough for the acl
3898 header followed by the smallest SID */
3899 if ((*pbuflen < sizeof(struct cifs_ntsd) + 8) ||
3900 (*pbuflen >= 64 * 1024)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003901 cifs_dbg(VFS, "bad acl length %d\n", *pbuflen);
Steve French630f3f0c2007-10-25 21:17:17 +00003902 rc = -EINVAL;
3903 *pbuflen = 0;
3904 } else {
Silviu-Mihai Popescuf7f7c182013-03-11 18:22:32 +02003905 *acl_inf = kmemdup(pdata, *pbuflen, GFP_KERNEL);
Steve French630f3f0c2007-10-25 21:17:17 +00003906 if (*acl_inf == NULL) {
3907 *pbuflen = 0;
3908 rc = -ENOMEM;
3909 }
Steve French630f3f0c2007-10-25 21:17:17 +00003910 }
Steve French0a4b92c2006-01-12 15:44:21 -08003911 }
3912qsec_out:
Sachin Prabhu6d81ed12014-06-16 15:35:24 +01003913 free_rsp_buf(buf_type, iov[0].iov_base);
Steve French4b8f9302006-02-26 16:41:18 +00003914/* cifs_small_buf_release(pSMB); */ /* Freed earlier now in SendReceive2 */
Steve French0a4b92c2006-01-12 15:44:21 -08003915 return rc;
3916}
Steve French97837582007-12-31 07:47:21 +00003917
3918int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04003919CIFSSMBSetCIFSACL(const unsigned int xid, struct cifs_tcon *tcon, __u16 fid,
Shirish Pargaonkara5ff3762011-10-13 10:26:03 -05003920 struct cifs_ntsd *pntsd, __u32 acllen, int aclflag)
Steve French97837582007-12-31 07:47:21 +00003921{
3922 __u16 byte_count, param_count, data_count, param_offset, data_offset;
3923 int rc = 0;
3924 int bytes_returned = 0;
3925 SET_SEC_DESC_REQ *pSMB = NULL;
Jeff Laytonb2a3ad92012-03-26 09:55:29 -04003926 void *pSMBr;
Steve French97837582007-12-31 07:47:21 +00003927
3928setCifsAclRetry:
Jeff Laytonb2a3ad92012-03-26 09:55:29 -04003929 rc = smb_init(SMB_COM_NT_TRANSACT, 19, tcon, (void **) &pSMB, &pSMBr);
Steve French97837582007-12-31 07:47:21 +00003930 if (rc)
Jeff Laytonb2a3ad92012-03-26 09:55:29 -04003931 return rc;
Steve French97837582007-12-31 07:47:21 +00003932
3933 pSMB->MaxSetupCount = 0;
3934 pSMB->Reserved = 0;
3935
3936 param_count = 8;
3937 param_offset = offsetof(struct smb_com_transaction_ssec_req, Fid) - 4;
3938 data_count = acllen;
3939 data_offset = param_offset + param_count;
3940 byte_count = 3 /* pad */ + param_count;
3941
3942 pSMB->DataCount = cpu_to_le32(data_count);
3943 pSMB->TotalDataCount = pSMB->DataCount;
3944 pSMB->MaxParameterCount = cpu_to_le32(4);
3945 pSMB->MaxDataCount = cpu_to_le32(16384);
3946 pSMB->ParameterCount = cpu_to_le32(param_count);
3947 pSMB->ParameterOffset = cpu_to_le32(param_offset);
3948 pSMB->TotalParameterCount = pSMB->ParameterCount;
3949 pSMB->DataOffset = cpu_to_le32(data_offset);
3950 pSMB->SetupCount = 0;
3951 pSMB->SubCommand = cpu_to_le16(NT_TRANSACT_SET_SECURITY_DESC);
3952 pSMB->ByteCount = cpu_to_le16(byte_count+data_count);
3953
3954 pSMB->Fid = fid; /* file handle always le */
3955 pSMB->Reserved2 = 0;
Shirish Pargaonkara5ff3762011-10-13 10:26:03 -05003956 pSMB->AclFlags = cpu_to_le32(aclflag);
Steve French97837582007-12-31 07:47:21 +00003957
3958 if (pntsd && acllen) {
Jeff Laytonb2a3ad92012-03-26 09:55:29 -04003959 memcpy((char *)pSMBr + offsetof(struct smb_hdr, Protocol) +
3960 data_offset, pntsd, acllen);
Steve Frenchbe8e3b02011-04-29 05:40:20 +00003961 inc_rfc1001_len(pSMB, byte_count + data_count);
Steve French97837582007-12-31 07:47:21 +00003962 } else
Steve Frenchbe8e3b02011-04-29 05:40:20 +00003963 inc_rfc1001_len(pSMB, byte_count);
Steve French97837582007-12-31 07:47:21 +00003964
3965 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3966 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3967
Joe Perchesf96637b2013-05-04 22:12:25 -05003968 cifs_dbg(FYI, "SetCIFSACL bytes_returned: %d, rc: %d\n",
3969 bytes_returned, rc);
Steve French97837582007-12-31 07:47:21 +00003970 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05003971 cifs_dbg(FYI, "Set CIFS ACL returned %d\n", rc);
Steve French97837582007-12-31 07:47:21 +00003972 cifs_buf_release(pSMB);
3973
3974 if (rc == -EAGAIN)
3975 goto setCifsAclRetry;
3976
3977 return (rc);
3978}
3979
Jeff Layton79df1ba2010-12-06 12:52:08 -05003980#endif /* CONFIG_CIFS_ACL */
Steve French0a4b92c2006-01-12 15:44:21 -08003981
Steve French6b8edfe2005-08-23 20:26:03 -07003982/* Legacy Query Path Information call for lookup to old servers such
3983 as Win9x/WinME */
Pavel Shilovsky68889f22012-05-25 14:40:22 +04003984int
3985SMBQueryInformation(const unsigned int xid, struct cifs_tcon *tcon,
3986 const char *search_name, FILE_ALL_INFO *data,
3987 const struct nls_table *nls_codepage, int remap)
Steve French6b8edfe2005-08-23 20:26:03 -07003988{
Steve Frenchad7a2922008-02-07 23:25:02 +00003989 QUERY_INFORMATION_REQ *pSMB;
3990 QUERY_INFORMATION_RSP *pSMBr;
Steve French6b8edfe2005-08-23 20:26:03 -07003991 int rc = 0;
3992 int bytes_returned;
3993 int name_len;
3994
Joe Perchesf96637b2013-05-04 22:12:25 -05003995 cifs_dbg(FYI, "In SMBQPath path %s\n", search_name);
Steve French6b8edfe2005-08-23 20:26:03 -07003996QInfRetry:
3997 rc = smb_init(SMB_COM_QUERY_INFORMATION, 0, tcon, (void **) &pSMB,
Steve French50c2f752007-07-13 00:33:32 +00003998 (void **) &pSMBr);
Steve French6b8edfe2005-08-23 20:26:03 -07003999 if (rc)
4000 return rc;
4001
4002 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
4003 name_len =
Steve Frenchacbbb762012-01-18 22:32:33 -06004004 cifsConvertToUTF16((__le16 *) pSMB->FileName,
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004005 search_name, PATH_MAX, nls_codepage,
Steve Frenchacbbb762012-01-18 22:32:33 -06004006 remap);
Steve French6b8edfe2005-08-23 20:26:03 -07004007 name_len++; /* trailing null */
4008 name_len *= 2;
Steve French50c2f752007-07-13 00:33:32 +00004009 } else {
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004010 name_len = strnlen(search_name, PATH_MAX);
Steve French6b8edfe2005-08-23 20:26:03 -07004011 name_len++; /* trailing null */
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004012 strncpy(pSMB->FileName, search_name, name_len);
Steve French6b8edfe2005-08-23 20:26:03 -07004013 }
4014 pSMB->BufferFormat = 0x04;
Steve French50c2f752007-07-13 00:33:32 +00004015 name_len++; /* account for buffer type byte */
Steve Frenchbe8e3b02011-04-29 05:40:20 +00004016 inc_rfc1001_len(pSMB, (__u16)name_len);
Steve French6b8edfe2005-08-23 20:26:03 -07004017 pSMB->ByteCount = cpu_to_le16(name_len);
4018
4019 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
Steve French50c2f752007-07-13 00:33:32 +00004020 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Steve French6b8edfe2005-08-23 20:26:03 -07004021 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004022 cifs_dbg(FYI, "Send error in QueryInfo = %d\n", rc);
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004023 } else if (data) {
Steve French1bd5bbc2006-09-28 03:35:57 +00004024 struct timespec ts;
4025 __u32 time = le32_to_cpu(pSMBr->last_write_time);
Steve Frenchad7a2922008-02-07 23:25:02 +00004026
4027 /* decode response */
Steve French1bd5bbc2006-09-28 03:35:57 +00004028 /* BB FIXME - add time zone adjustment BB */
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004029 memset(data, 0, sizeof(FILE_ALL_INFO));
Steve French1bd5bbc2006-09-28 03:35:57 +00004030 ts.tv_nsec = 0;
4031 ts.tv_sec = time;
4032 /* decode time fields */
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004033 data->ChangeTime = cpu_to_le64(cifs_UnixTimeToNT(ts));
4034 data->LastWriteTime = data->ChangeTime;
4035 data->LastAccessTime = 0;
4036 data->AllocationSize =
Steve French70ca7342005-09-22 16:32:06 -07004037 cpu_to_le64(le32_to_cpu(pSMBr->size));
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004038 data->EndOfFile = data->AllocationSize;
4039 data->Attributes =
Steve French70ca7342005-09-22 16:32:06 -07004040 cpu_to_le32(le16_to_cpu(pSMBr->attr));
Steve French6b8edfe2005-08-23 20:26:03 -07004041 } else
4042 rc = -EIO; /* bad buffer passed in */
4043
4044 cifs_buf_release(pSMB);
4045
4046 if (rc == -EAGAIN)
4047 goto QInfRetry;
4048
4049 return rc;
4050}
4051
Jeff Laytonbcd53572010-02-12 07:44:16 -05004052int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04004053CIFSSMBQFileInfo(const unsigned int xid, struct cifs_tcon *tcon,
Jeff Laytonbcd53572010-02-12 07:44:16 -05004054 u16 netfid, FILE_ALL_INFO *pFindData)
4055{
4056 struct smb_t2_qfi_req *pSMB = NULL;
4057 struct smb_t2_qfi_rsp *pSMBr = NULL;
4058 int rc = 0;
4059 int bytes_returned;
4060 __u16 params, byte_count;
Steve French6b8edfe2005-08-23 20:26:03 -07004061
Jeff Laytonbcd53572010-02-12 07:44:16 -05004062QFileInfoRetry:
4063 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
4064 (void **) &pSMBr);
4065 if (rc)
4066 return rc;
Steve French6b8edfe2005-08-23 20:26:03 -07004067
Jeff Laytonbcd53572010-02-12 07:44:16 -05004068 params = 2 /* level */ + 2 /* fid */;
4069 pSMB->t2.TotalDataCount = 0;
4070 pSMB->t2.MaxParameterCount = cpu_to_le16(4);
4071 /* BB find exact max data count below from sess structure BB */
4072 pSMB->t2.MaxDataCount = cpu_to_le16(CIFSMaxBufSize);
4073 pSMB->t2.MaxSetupCount = 0;
4074 pSMB->t2.Reserved = 0;
4075 pSMB->t2.Flags = 0;
4076 pSMB->t2.Timeout = 0;
4077 pSMB->t2.Reserved2 = 0;
4078 pSMB->t2.ParameterOffset = cpu_to_le16(offsetof(struct smb_t2_qfi_req,
4079 Fid) - 4);
4080 pSMB->t2.DataCount = 0;
4081 pSMB->t2.DataOffset = 0;
4082 pSMB->t2.SetupCount = 1;
4083 pSMB->t2.Reserved3 = 0;
4084 pSMB->t2.SubCommand = cpu_to_le16(TRANS2_QUERY_FILE_INFORMATION);
4085 byte_count = params + 1 /* pad */ ;
4086 pSMB->t2.TotalParameterCount = cpu_to_le16(params);
4087 pSMB->t2.ParameterCount = pSMB->t2.TotalParameterCount;
4088 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_ALL_INFO);
4089 pSMB->Pad = 0;
4090 pSMB->Fid = netfid;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00004091 inc_rfc1001_len(pSMB, byte_count);
David Disseldorp7ac0feb2013-06-28 11:47:33 +02004092 pSMB->t2.ByteCount = cpu_to_le16(byte_count);
Jeff Laytonbcd53572010-02-12 07:44:16 -05004093
4094 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4095 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4096 if (rc) {
Steve Frenchebcc9432013-12-09 09:18:09 -06004097 cifs_dbg(FYI, "Send error in QFileInfo = %d", rc);
Jeff Laytonbcd53572010-02-12 07:44:16 -05004098 } else { /* decode response */
4099 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
4100
4101 if (rc) /* BB add auto retry on EOPNOTSUPP? */
4102 rc = -EIO;
Jeff Layton820a8032011-05-04 08:05:26 -04004103 else if (get_bcc(&pSMBr->hdr) < 40)
Jeff Laytonbcd53572010-02-12 07:44:16 -05004104 rc = -EIO; /* bad smb */
4105 else if (pFindData) {
4106 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
4107 memcpy((char *) pFindData,
4108 (char *) &pSMBr->hdr.Protocol +
4109 data_offset, sizeof(FILE_ALL_INFO));
4110 } else
4111 rc = -ENOMEM;
4112 }
4113 cifs_buf_release(pSMB);
4114 if (rc == -EAGAIN)
4115 goto QFileInfoRetry;
4116
4117 return rc;
4118}
Steve French6b8edfe2005-08-23 20:26:03 -07004119
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04004121CIFSSMBQPathInfo(const unsigned int xid, struct cifs_tcon *tcon,
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004122 const char *search_name, FILE_ALL_INFO *data,
Steve Frenchacf1a1b2006-10-12 03:28:28 +00004123 int legacy /* old style infolevel */,
Steve French737b7582005-04-28 22:41:06 -07004124 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125{
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004126 /* level 263 SMB_QUERY_FILE_ALL_INFO */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 TRANSACTION2_QPI_REQ *pSMB = NULL;
4128 TRANSACTION2_QPI_RSP *pSMBr = NULL;
4129 int rc = 0;
4130 int bytes_returned;
4131 int name_len;
4132 __u16 params, byte_count;
4133
Joe Perchesf96637b2013-05-04 22:12:25 -05004134 /* cifs_dbg(FYI, "In QPathInfo path %s\n", search_name); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135QPathInfoRetry:
4136 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
4137 (void **) &pSMBr);
4138 if (rc)
4139 return rc;
4140
4141 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
4142 name_len =
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004143 cifsConvertToUTF16((__le16 *) pSMB->FileName, search_name,
Steve Frenchacbbb762012-01-18 22:32:33 -06004144 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145 name_len++; /* trailing null */
4146 name_len *= 2;
Steve French50c2f752007-07-13 00:33:32 +00004147 } else { /* BB improve the check for buffer overruns BB */
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004148 name_len = strnlen(search_name, PATH_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 name_len++; /* trailing null */
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004150 strncpy(pSMB->FileName, search_name, name_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151 }
4152
Steve French50c2f752007-07-13 00:33:32 +00004153 params = 2 /* level */ + 4 /* reserved */ + name_len /* includes NUL */;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 pSMB->TotalDataCount = 0;
4155 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve French582d21e2008-05-13 04:54:12 +00004156 /* BB find exact max SMB PDU from sess structure BB */
4157 pSMB->MaxDataCount = cpu_to_le16(4000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 pSMB->MaxSetupCount = 0;
4159 pSMB->Reserved = 0;
4160 pSMB->Flags = 0;
4161 pSMB->Timeout = 0;
4162 pSMB->Reserved2 = 0;
4163 pSMB->ParameterOffset = cpu_to_le16(offsetof(
Steve French50c2f752007-07-13 00:33:32 +00004164 struct smb_com_transaction2_qpi_req, InformationLevel) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165 pSMB->DataCount = 0;
4166 pSMB->DataOffset = 0;
4167 pSMB->SetupCount = 1;
4168 pSMB->Reserved3 = 0;
4169 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
4170 byte_count = params + 1 /* pad */ ;
4171 pSMB->TotalParameterCount = cpu_to_le16(params);
4172 pSMB->ParameterCount = pSMB->TotalParameterCount;
Steve French790fe572007-07-07 19:25:05 +00004173 if (legacy)
Steve Frenchacf1a1b2006-10-12 03:28:28 +00004174 pSMB->InformationLevel = cpu_to_le16(SMB_INFO_STANDARD);
4175 else
4176 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_ALL_INFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00004178 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 pSMB->ByteCount = cpu_to_le16(byte_count);
4180
4181 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4182 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4183 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004184 cifs_dbg(FYI, "Send error in QPathInfo = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 } else { /* decode response */
4186 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
4187
Steve Frenchacf1a1b2006-10-12 03:28:28 +00004188 if (rc) /* BB add auto retry on EOPNOTSUPP? */
4189 rc = -EIO;
Jeff Layton820a8032011-05-04 08:05:26 -04004190 else if (!legacy && get_bcc(&pSMBr->hdr) < 40)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 rc = -EIO; /* bad smb */
Jeff Layton820a8032011-05-04 08:05:26 -04004192 else if (legacy && get_bcc(&pSMBr->hdr) < 24)
Steve French50c2f752007-07-13 00:33:32 +00004193 rc = -EIO; /* 24 or 26 expected but we do not read
4194 last field */
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004195 else if (data) {
Steve Frenchacf1a1b2006-10-12 03:28:28 +00004196 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
Steve Frenchad7a2922008-02-07 23:25:02 +00004198
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004199 /*
4200 * On legacy responses we do not read the last field,
4201 * EAsize, fortunately since it varies by subdialect and
4202 * also note it differs on Set vs Get, ie two bytes or 4
4203 * bytes depending but we don't care here.
4204 */
Steve Frenchad7a2922008-02-07 23:25:02 +00004205 if (legacy)
Steve Frenchacf1a1b2006-10-12 03:28:28 +00004206 size = sizeof(FILE_INFO_STANDARD);
4207 else
4208 size = sizeof(FILE_ALL_INFO);
Pavel Shilovsky68889f22012-05-25 14:40:22 +04004209 memcpy((char *) data, (char *) &pSMBr->hdr.Protocol +
Steve Frenchacf1a1b2006-10-12 03:28:28 +00004210 data_offset, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 } else
4212 rc = -ENOMEM;
4213 }
4214 cifs_buf_release(pSMB);
4215 if (rc == -EAGAIN)
4216 goto QPathInfoRetry;
4217
4218 return rc;
4219}
4220
4221int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04004222CIFSSMBUnixQFileInfo(const unsigned int xid, struct cifs_tcon *tcon,
Jeff Laytonc8634fd2010-02-12 07:44:17 -05004223 u16 netfid, FILE_UNIX_BASIC_INFO *pFindData)
4224{
4225 struct smb_t2_qfi_req *pSMB = NULL;
4226 struct smb_t2_qfi_rsp *pSMBr = NULL;
4227 int rc = 0;
4228 int bytes_returned;
4229 __u16 params, byte_count;
4230
4231UnixQFileInfoRetry:
4232 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
4233 (void **) &pSMBr);
4234 if (rc)
4235 return rc;
4236
4237 params = 2 /* level */ + 2 /* fid */;
4238 pSMB->t2.TotalDataCount = 0;
4239 pSMB->t2.MaxParameterCount = cpu_to_le16(4);
4240 /* BB find exact max data count below from sess structure BB */
4241 pSMB->t2.MaxDataCount = cpu_to_le16(CIFSMaxBufSize);
4242 pSMB->t2.MaxSetupCount = 0;
4243 pSMB->t2.Reserved = 0;
4244 pSMB->t2.Flags = 0;
4245 pSMB->t2.Timeout = 0;
4246 pSMB->t2.Reserved2 = 0;
4247 pSMB->t2.ParameterOffset = cpu_to_le16(offsetof(struct smb_t2_qfi_req,
4248 Fid) - 4);
4249 pSMB->t2.DataCount = 0;
4250 pSMB->t2.DataOffset = 0;
4251 pSMB->t2.SetupCount = 1;
4252 pSMB->t2.Reserved3 = 0;
4253 pSMB->t2.SubCommand = cpu_to_le16(TRANS2_QUERY_FILE_INFORMATION);
4254 byte_count = params + 1 /* pad */ ;
4255 pSMB->t2.TotalParameterCount = cpu_to_le16(params);
4256 pSMB->t2.ParameterCount = pSMB->t2.TotalParameterCount;
4257 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_UNIX_BASIC);
4258 pSMB->Pad = 0;
4259 pSMB->Fid = netfid;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00004260 inc_rfc1001_len(pSMB, byte_count);
David Disseldorp7ac0feb2013-06-28 11:47:33 +02004261 pSMB->t2.ByteCount = cpu_to_le16(byte_count);
Jeff Laytonc8634fd2010-02-12 07:44:17 -05004262
4263 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4264 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4265 if (rc) {
Steve Frenchebcc9432013-12-09 09:18:09 -06004266 cifs_dbg(FYI, "Send error in UnixQFileInfo = %d", rc);
Jeff Laytonc8634fd2010-02-12 07:44:17 -05004267 } else { /* decode response */
4268 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
4269
Jeff Layton820a8032011-05-04 08:05:26 -04004270 if (rc || get_bcc(&pSMBr->hdr) < sizeof(FILE_UNIX_BASIC_INFO)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004271 cifs_dbg(VFS, "Malformed FILE_UNIX_BASIC_INFO response. Unix Extensions can be disabled on mount by specifying the nosfu mount option.\n");
Jeff Laytonc8634fd2010-02-12 07:44:17 -05004272 rc = -EIO; /* bad smb */
4273 } else {
4274 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
4275 memcpy((char *) pFindData,
4276 (char *) &pSMBr->hdr.Protocol +
4277 data_offset,
4278 sizeof(FILE_UNIX_BASIC_INFO));
4279 }
4280 }
4281
4282 cifs_buf_release(pSMB);
4283 if (rc == -EAGAIN)
4284 goto UnixQFileInfoRetry;
4285
4286 return rc;
4287}
4288
4289int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04004290CIFSSMBUnixQPathInfo(const unsigned int xid, struct cifs_tcon *tcon,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 const unsigned char *searchName,
Steve French582d21e2008-05-13 04:54:12 +00004292 FILE_UNIX_BASIC_INFO *pFindData,
Steve French737b7582005-04-28 22:41:06 -07004293 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294{
4295/* SMB_QUERY_FILE_UNIX_BASIC */
4296 TRANSACTION2_QPI_REQ *pSMB = NULL;
4297 TRANSACTION2_QPI_RSP *pSMBr = NULL;
4298 int rc = 0;
4299 int bytes_returned = 0;
4300 int name_len;
4301 __u16 params, byte_count;
4302
Joe Perchesf96637b2013-05-04 22:12:25 -05004303 cifs_dbg(FYI, "In QPathInfo (Unix) the path %s\n", searchName);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304UnixQPathInfoRetry:
4305 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
4306 (void **) &pSMBr);
4307 if (rc)
4308 return rc;
4309
4310 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
4311 name_len =
Steve Frenchacbbb762012-01-18 22:32:33 -06004312 cifsConvertToUTF16((__le16 *) pSMB->FileName, searchName,
4313 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 name_len++; /* trailing null */
4315 name_len *= 2;
Steve French50c2f752007-07-13 00:33:32 +00004316 } else { /* BB improve the check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 name_len = strnlen(searchName, PATH_MAX);
4318 name_len++; /* trailing null */
4319 strncpy(pSMB->FileName, searchName, name_len);
4320 }
4321
Steve French50c2f752007-07-13 00:33:32 +00004322 params = 2 /* level */ + 4 /* reserved */ + name_len /* includes NUL */;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 pSMB->TotalDataCount = 0;
4324 pSMB->MaxParameterCount = cpu_to_le16(2);
4325 /* BB find exact max SMB PDU from sess structure BB */
Steve French50c2f752007-07-13 00:33:32 +00004326 pSMB->MaxDataCount = cpu_to_le16(4000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 pSMB->MaxSetupCount = 0;
4328 pSMB->Reserved = 0;
4329 pSMB->Flags = 0;
4330 pSMB->Timeout = 0;
4331 pSMB->Reserved2 = 0;
4332 pSMB->ParameterOffset = cpu_to_le16(offsetof(
Steve French50c2f752007-07-13 00:33:32 +00004333 struct smb_com_transaction2_qpi_req, InformationLevel) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 pSMB->DataCount = 0;
4335 pSMB->DataOffset = 0;
4336 pSMB->SetupCount = 1;
4337 pSMB->Reserved3 = 0;
4338 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
4339 byte_count = params + 1 /* pad */ ;
4340 pSMB->TotalParameterCount = cpu_to_le16(params);
4341 pSMB->ParameterCount = pSMB->TotalParameterCount;
4342 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_UNIX_BASIC);
4343 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00004344 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 pSMB->ByteCount = cpu_to_le16(byte_count);
4346
4347 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4348 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4349 if (rc) {
Steve Frenchebcc9432013-12-09 09:18:09 -06004350 cifs_dbg(FYI, "Send error in UnixQPathInfo = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351 } else { /* decode response */
4352 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
4353
Jeff Layton820a8032011-05-04 08:05:26 -04004354 if (rc || get_bcc(&pSMBr->hdr) < sizeof(FILE_UNIX_BASIC_INFO)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004355 cifs_dbg(VFS, "Malformed FILE_UNIX_BASIC_INFO response. Unix Extensions can be disabled on mount by specifying the nosfu mount option.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 rc = -EIO; /* bad smb */
4357 } else {
4358 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
4359 memcpy((char *) pFindData,
4360 (char *) &pSMBr->hdr.Protocol +
4361 data_offset,
Steve French630f3f0c2007-10-25 21:17:17 +00004362 sizeof(FILE_UNIX_BASIC_INFO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363 }
4364 }
4365 cifs_buf_release(pSMB);
4366 if (rc == -EAGAIN)
4367 goto UnixQPathInfoRetry;
4368
4369 return rc;
4370}
4371
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372/* xid, tcon, searchName and codepage are input parms, rest are returned */
4373int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04004374CIFSFindFirst(const unsigned int xid, struct cifs_tcon *tcon,
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -05004375 const char *searchName, struct cifs_sb_info *cifs_sb,
Shirish Pargaonkar2608bee2012-05-15 10:19:16 -05004376 __u16 *pnetfid, __u16 search_flags,
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -05004377 struct cifs_search_info *psrch_inf, bool msearch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378{
4379/* level 257 SMB_ */
4380 TRANSACTION2_FFIRST_REQ *pSMB = NULL;
4381 TRANSACTION2_FFIRST_RSP *pSMBr = NULL;
Steve Frenchad7a2922008-02-07 23:25:02 +00004382 T2_FFIRST_RSP_PARMS *parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 int rc = 0;
4384 int bytes_returned = 0;
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -05004385 int name_len, remap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 __u16 params, byte_count;
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -05004387 struct nls_table *nls_codepage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388
Joe Perchesf96637b2013-05-04 22:12:25 -05004389 cifs_dbg(FYI, "In FindFirst for %s\n", searchName);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390
4391findFirstRetry:
4392 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
4393 (void **) &pSMBr);
4394 if (rc)
4395 return rc;
4396
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -05004397 nls_codepage = cifs_sb->local_nls;
Steve French2baa2682014-09-27 02:19:01 -05004398 remap = cifs_remap(cifs_sb);
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -05004399
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
4401 name_len =
Steve Frenchacbbb762012-01-18 22:32:33 -06004402 cifsConvertToUTF16((__le16 *) pSMB->FileName, searchName,
4403 PATH_MAX, nls_codepage, remap);
Steve French737b7582005-04-28 22:41:06 -07004404 /* We can not add the asterik earlier in case
4405 it got remapped to 0xF03A as if it were part of the
4406 directory name instead of a wildcard */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 name_len *= 2;
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -05004408 if (msearch) {
4409 pSMB->FileName[name_len] = CIFS_DIR_SEP(cifs_sb);
4410 pSMB->FileName[name_len+1] = 0;
4411 pSMB->FileName[name_len+2] = '*';
4412 pSMB->FileName[name_len+3] = 0;
4413 name_len += 4; /* now the trailing null */
4414 /* null terminate just in case */
4415 pSMB->FileName[name_len] = 0;
4416 pSMB->FileName[name_len+1] = 0;
4417 name_len += 2;
4418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419 } else { /* BB add check for overrun of SMB buf BB */
4420 name_len = strnlen(searchName, PATH_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421/* BB fix here and in unicode clause above ie
Steve French790fe572007-07-07 19:25:05 +00004422 if (name_len > buffersize-header)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423 free buffer exit; BB */
4424 strncpy(pSMB->FileName, searchName, name_len);
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -05004425 if (msearch) {
4426 pSMB->FileName[name_len] = CIFS_DIR_SEP(cifs_sb);
4427 pSMB->FileName[name_len+1] = '*';
4428 pSMB->FileName[name_len+2] = 0;
4429 name_len += 3;
4430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431 }
4432
4433 params = 12 + name_len /* includes null */ ;
4434 pSMB->TotalDataCount = 0; /* no EAs */
4435 pSMB->MaxParameterCount = cpu_to_le16(10);
Jeff Laytonc974bef2011-10-11 06:41:32 -04004436 pSMB->MaxDataCount = cpu_to_le16(CIFSMaxBufSize & 0xFFFFFF00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437 pSMB->MaxSetupCount = 0;
4438 pSMB->Reserved = 0;
4439 pSMB->Flags = 0;
4440 pSMB->Timeout = 0;
4441 pSMB->Reserved2 = 0;
4442 byte_count = params + 1 /* pad */ ;
4443 pSMB->TotalParameterCount = cpu_to_le16(params);
4444 pSMB->ParameterCount = pSMB->TotalParameterCount;
4445 pSMB->ParameterOffset = cpu_to_le16(
Steve French88274812006-03-09 22:21:45 +00004446 offsetof(struct smb_com_transaction2_ffirst_req, SearchAttributes)
4447 - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448 pSMB->DataCount = 0;
4449 pSMB->DataOffset = 0;
4450 pSMB->SetupCount = 1; /* one byte, no need to make endian neutral */
4451 pSMB->Reserved3 = 0;
4452 pSMB->SubCommand = cpu_to_le16(TRANS2_FIND_FIRST);
4453 pSMB->SearchAttributes =
4454 cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM |
4455 ATTR_DIRECTORY);
Steve French50c2f752007-07-13 00:33:32 +00004456 pSMB->SearchCount = cpu_to_le16(CIFSMaxBufSize/sizeof(FILE_UNIX_INFO));
Shirish Pargaonkar2608bee2012-05-15 10:19:16 -05004457 pSMB->SearchFlags = cpu_to_le16(search_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 pSMB->InformationLevel = cpu_to_le16(psrch_inf->info_level);
4459
4460 /* BB what should we set StorageType to? Does it matter? BB */
4461 pSMB->SearchStorageType = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00004462 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 pSMB->ByteCount = cpu_to_le16(byte_count);
4464
4465 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4466 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +04004467 cifs_stats_inc(&tcon->stats.cifs_stats.num_ffirst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468
Steve French88274812006-03-09 22:21:45 +00004469 if (rc) {/* BB add logic to retry regular search if Unix search
4470 rejected unexpectedly by server */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471 /* BB Add code to handle unsupported level rc */
Joe Perchesf96637b2013-05-04 22:12:25 -05004472 cifs_dbg(FYI, "Error in FindFirst = %d\n", rc);
Steve French1982c342005-08-17 12:38:22 -07004473
Steve French88274812006-03-09 22:21:45 +00004474 cifs_buf_release(pSMB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475
4476 /* BB eventually could optimize out free and realloc of buf */
4477 /* for this case */
4478 if (rc == -EAGAIN)
4479 goto findFirstRetry;
4480 } else { /* decode response */
4481 /* BB remember to free buffer if error BB */
4482 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
Steve French790fe572007-07-07 19:25:05 +00004483 if (rc == 0) {
Steve Frenchb77d7532008-10-08 19:13:46 +00004484 unsigned int lnoff;
4485
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486 if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE)
Steve French4b18f2a2008-04-29 00:06:05 +00004487 psrch_inf->unicode = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 else
Steve French4b18f2a2008-04-29 00:06:05 +00004489 psrch_inf->unicode = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490
4491 psrch_inf->ntwrk_buf_start = (char *)pSMBr;
Steve Frenchd47d7c12006-02-28 03:45:48 +00004492 psrch_inf->smallBuf = 0;
Steve French50c2f752007-07-13 00:33:32 +00004493 psrch_inf->srch_entries_start =
4494 (char *) &pSMBr->hdr.Protocol +
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 le16_to_cpu(pSMBr->t2.DataOffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 parms = (T2_FFIRST_RSP_PARMS *)((char *) &pSMBr->hdr.Protocol +
4497 le16_to_cpu(pSMBr->t2.ParameterOffset));
4498
Steve French790fe572007-07-07 19:25:05 +00004499 if (parms->EndofSearch)
Steve French4b18f2a2008-04-29 00:06:05 +00004500 psrch_inf->endOfSearch = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 else
Steve French4b18f2a2008-04-29 00:06:05 +00004502 psrch_inf->endOfSearch = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503
Steve French50c2f752007-07-13 00:33:32 +00004504 psrch_inf->entries_in_buffer =
4505 le16_to_cpu(parms->SearchCount);
Steve French60808232006-04-22 15:53:05 +00004506 psrch_inf->index_of_last_entry = 2 /* skip . and .. */ +
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507 psrch_inf->entries_in_buffer;
Steve Frenchb77d7532008-10-08 19:13:46 +00004508 lnoff = le16_to_cpu(parms->LastNameOffset);
Jeff Laytonc974bef2011-10-11 06:41:32 -04004509 if (CIFSMaxBufSize < lnoff) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004510 cifs_dbg(VFS, "ignoring corrupt resume name\n");
Steve Frenchb77d7532008-10-08 19:13:46 +00004511 psrch_inf->last_entry = NULL;
4512 return rc;
4513 }
4514
Steve French0752f152008-10-07 20:03:33 +00004515 psrch_inf->last_entry = psrch_inf->srch_entries_start +
Steve Frenchb77d7532008-10-08 19:13:46 +00004516 lnoff;
4517
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -05004518 if (pnetfid)
4519 *pnetfid = parms->SearchHandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520 } else {
4521 cifs_buf_release(pSMB);
4522 }
4523 }
4524
4525 return rc;
4526}
4527
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04004528int CIFSFindNext(const unsigned int xid, struct cifs_tcon *tcon,
4529 __u16 searchHandle, __u16 search_flags,
4530 struct cifs_search_info *psrch_inf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531{
4532 TRANSACTION2_FNEXT_REQ *pSMB = NULL;
4533 TRANSACTION2_FNEXT_RSP *pSMBr = NULL;
Steve Frenchad7a2922008-02-07 23:25:02 +00004534 T2_FNEXT_RSP_PARMS *parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 char *response_data;
4536 int rc = 0;
Jeff Layton9438fab2011-08-23 07:21:28 -04004537 int bytes_returned;
4538 unsigned int name_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539 __u16 params, byte_count;
4540
Joe Perchesf96637b2013-05-04 22:12:25 -05004541 cifs_dbg(FYI, "In FindNext\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542
Steve French4b18f2a2008-04-29 00:06:05 +00004543 if (psrch_inf->endOfSearch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 return -ENOENT;
4545
4546 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
4547 (void **) &pSMBr);
4548 if (rc)
4549 return rc;
4550
Steve French50c2f752007-07-13 00:33:32 +00004551 params = 14; /* includes 2 bytes of null string, converted to LE below*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552 byte_count = 0;
4553 pSMB->TotalDataCount = 0; /* no EAs */
4554 pSMB->MaxParameterCount = cpu_to_le16(8);
Jeff Laytonc974bef2011-10-11 06:41:32 -04004555 pSMB->MaxDataCount = cpu_to_le16(CIFSMaxBufSize & 0xFFFFFF00);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 pSMB->MaxSetupCount = 0;
4557 pSMB->Reserved = 0;
4558 pSMB->Flags = 0;
4559 pSMB->Timeout = 0;
4560 pSMB->Reserved2 = 0;
4561 pSMB->ParameterOffset = cpu_to_le16(
4562 offsetof(struct smb_com_transaction2_fnext_req,SearchHandle) - 4);
4563 pSMB->DataCount = 0;
4564 pSMB->DataOffset = 0;
4565 pSMB->SetupCount = 1;
4566 pSMB->Reserved3 = 0;
4567 pSMB->SubCommand = cpu_to_le16(TRANS2_FIND_NEXT);
4568 pSMB->SearchHandle = searchHandle; /* always kept as le */
4569 pSMB->SearchCount =
Steve French630f3f0c2007-10-25 21:17:17 +00004570 cpu_to_le16(CIFSMaxBufSize / sizeof(FILE_UNIX_INFO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571 pSMB->InformationLevel = cpu_to_le16(psrch_inf->info_level);
4572 pSMB->ResumeKey = psrch_inf->resume_key;
Shirish Pargaonkar2608bee2012-05-15 10:19:16 -05004573 pSMB->SearchFlags = cpu_to_le16(search_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574
4575 name_len = psrch_inf->resume_name_len;
4576 params += name_len;
Steve French790fe572007-07-07 19:25:05 +00004577 if (name_len < PATH_MAX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578 memcpy(pSMB->ResumeFileName, psrch_inf->presume_name, name_len);
4579 byte_count += name_len;
Steve Frenchef6724e2005-08-02 21:31:05 -07004580 /* 14 byte parm len above enough for 2 byte null terminator */
4581 pSMB->ResumeFileName[name_len] = 0;
4582 pSMB->ResumeFileName[name_len+1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 } else {
4584 rc = -EINVAL;
4585 goto FNext2_err_exit;
4586 }
4587 byte_count = params + 1 /* pad */ ;
4588 pSMB->TotalParameterCount = cpu_to_le16(params);
4589 pSMB->ParameterCount = pSMB->TotalParameterCount;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00004590 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 pSMB->ByteCount = cpu_to_le16(byte_count);
Steve French50c2f752007-07-13 00:33:32 +00004592
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4594 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +04004595 cifs_stats_inc(&tcon->stats.cifs_stats.num_fnext);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 if (rc) {
4597 if (rc == -EBADF) {
Steve French4b18f2a2008-04-29 00:06:05 +00004598 psrch_inf->endOfSearch = true;
Jeff Layton63534502008-05-12 19:56:05 -07004599 cifs_buf_release(pSMB);
Steve French50c2f752007-07-13 00:33:32 +00004600 rc = 0; /* search probably was closed at end of search*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 } else
Joe Perchesf96637b2013-05-04 22:12:25 -05004602 cifs_dbg(FYI, "FindNext returned = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 } else { /* decode response */
4604 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
Steve French50c2f752007-07-13 00:33:32 +00004605
Steve French790fe572007-07-07 19:25:05 +00004606 if (rc == 0) {
Steve Frenchb77d7532008-10-08 19:13:46 +00004607 unsigned int lnoff;
4608
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609 /* BB fixme add lock for file (srch_info) struct here */
4610 if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE)
Steve French4b18f2a2008-04-29 00:06:05 +00004611 psrch_inf->unicode = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 else
Steve French4b18f2a2008-04-29 00:06:05 +00004613 psrch_inf->unicode = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 response_data = (char *) &pSMBr->hdr.Protocol +
4615 le16_to_cpu(pSMBr->t2.ParameterOffset);
4616 parms = (T2_FNEXT_RSP_PARMS *)response_data;
4617 response_data = (char *)&pSMBr->hdr.Protocol +
4618 le16_to_cpu(pSMBr->t2.DataOffset);
Steve French790fe572007-07-07 19:25:05 +00004619 if (psrch_inf->smallBuf)
Steve Frenchd47d7c12006-02-28 03:45:48 +00004620 cifs_small_buf_release(
4621 psrch_inf->ntwrk_buf_start);
4622 else
4623 cifs_buf_release(psrch_inf->ntwrk_buf_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624 psrch_inf->srch_entries_start = response_data;
4625 psrch_inf->ntwrk_buf_start = (char *)pSMB;
Steve Frenchd47d7c12006-02-28 03:45:48 +00004626 psrch_inf->smallBuf = 0;
Steve French790fe572007-07-07 19:25:05 +00004627 if (parms->EndofSearch)
Steve French4b18f2a2008-04-29 00:06:05 +00004628 psrch_inf->endOfSearch = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629 else
Steve French4b18f2a2008-04-29 00:06:05 +00004630 psrch_inf->endOfSearch = false;
Steve French50c2f752007-07-13 00:33:32 +00004631 psrch_inf->entries_in_buffer =
4632 le16_to_cpu(parms->SearchCount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 psrch_inf->index_of_last_entry +=
4634 psrch_inf->entries_in_buffer;
Steve Frenchb77d7532008-10-08 19:13:46 +00004635 lnoff = le16_to_cpu(parms->LastNameOffset);
Jeff Laytonc974bef2011-10-11 06:41:32 -04004636 if (CIFSMaxBufSize < lnoff) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004637 cifs_dbg(VFS, "ignoring corrupt resume name\n");
Steve Frenchb77d7532008-10-08 19:13:46 +00004638 psrch_inf->last_entry = NULL;
4639 return rc;
4640 } else
4641 psrch_inf->last_entry =
4642 psrch_inf->srch_entries_start + lnoff;
4643
Joe Perchesf96637b2013-05-04 22:12:25 -05004644/* cifs_dbg(FYI, "fnxt2 entries in buf %d index_of_last %d\n",
4645 psrch_inf->entries_in_buffer, psrch_inf->index_of_last_entry); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646
4647 /* BB fixme add unlock here */
4648 }
4649
4650 }
4651
4652 /* BB On error, should we leave previous search buf (and count and
4653 last entry fields) intact or free the previous one? */
4654
4655 /* Note: On -EAGAIN error only caller can retry on handle based calls
4656 since file handle passed in no longer valid */
4657FNext2_err_exit:
4658 if (rc != 0)
4659 cifs_buf_release(pSMB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660 return rc;
4661}
4662
4663int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04004664CIFSFindClose(const unsigned int xid, struct cifs_tcon *tcon,
Steve French50c2f752007-07-13 00:33:32 +00004665 const __u16 searchHandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666{
4667 int rc = 0;
4668 FINDCLOSE_REQ *pSMB = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669
Joe Perchesf96637b2013-05-04 22:12:25 -05004670 cifs_dbg(FYI, "In CIFSSMBFindClose\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 rc = small_smb_init(SMB_COM_FIND_CLOSE2, 1, tcon, (void **)&pSMB);
4672
4673 /* no sense returning error if session restarted
4674 as file handle has been closed */
Steve French790fe572007-07-07 19:25:05 +00004675 if (rc == -EAGAIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 return 0;
4677 if (rc)
4678 return rc;
4679
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 pSMB->FileID = searchHandle;
4681 pSMB->ByteCount = 0;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04004682 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0);
Steve Frenchad7a2922008-02-07 23:25:02 +00004683 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05004684 cifs_dbg(VFS, "Send error in FindClose = %d\n", rc);
Steve Frenchad7a2922008-02-07 23:25:02 +00004685
Pavel Shilovsky44c58182012-05-28 14:16:31 +04004686 cifs_stats_inc(&tcon->stats.cifs_stats.num_fclose);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687
4688 /* Since session is dead, search handle closed on server already */
4689 if (rc == -EAGAIN)
4690 rc = 0;
4691
4692 return rc;
4693}
4694
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04004696CIFSGetSrvInodeNumber(const unsigned int xid, struct cifs_tcon *tcon,
Pavel Shilovsky1208ef12012-05-27 17:34:43 +04004697 const char *search_name, __u64 *inode_number,
Steve French50c2f752007-07-13 00:33:32 +00004698 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699{
4700 int rc = 0;
4701 TRANSACTION2_QPI_REQ *pSMB = NULL;
4702 TRANSACTION2_QPI_RSP *pSMBr = NULL;
4703 int name_len, bytes_returned;
4704 __u16 params, byte_count;
4705
Joe Perchesf96637b2013-05-04 22:12:25 -05004706 cifs_dbg(FYI, "In GetSrvInodeNum for %s\n", search_name);
Steve French790fe572007-07-07 19:25:05 +00004707 if (tcon == NULL)
Steve French50c2f752007-07-13 00:33:32 +00004708 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709
4710GetInodeNumberRetry:
4711 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
Steve French50c2f752007-07-13 00:33:32 +00004712 (void **) &pSMBr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713 if (rc)
4714 return rc;
4715
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
4717 name_len =
Steve Frenchacbbb762012-01-18 22:32:33 -06004718 cifsConvertToUTF16((__le16 *) pSMB->FileName,
Pavel Shilovsky1208ef12012-05-27 17:34:43 +04004719 search_name, PATH_MAX, nls_codepage,
Steve Frenchacbbb762012-01-18 22:32:33 -06004720 remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721 name_len++; /* trailing null */
4722 name_len *= 2;
Steve French50c2f752007-07-13 00:33:32 +00004723 } else { /* BB improve the check for buffer overruns BB */
Pavel Shilovsky1208ef12012-05-27 17:34:43 +04004724 name_len = strnlen(search_name, PATH_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725 name_len++; /* trailing null */
Pavel Shilovsky1208ef12012-05-27 17:34:43 +04004726 strncpy(pSMB->FileName, search_name, name_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727 }
4728
4729 params = 2 /* level */ + 4 /* rsrvd */ + name_len /* incl null */ ;
4730 pSMB->TotalDataCount = 0;
4731 pSMB->MaxParameterCount = cpu_to_le16(2);
4732 /* BB find exact max data count below from sess structure BB */
4733 pSMB->MaxDataCount = cpu_to_le16(4000);
4734 pSMB->MaxSetupCount = 0;
4735 pSMB->Reserved = 0;
4736 pSMB->Flags = 0;
4737 pSMB->Timeout = 0;
4738 pSMB->Reserved2 = 0;
4739 pSMB->ParameterOffset = cpu_to_le16(offsetof(
Steve French50c2f752007-07-13 00:33:32 +00004740 struct smb_com_transaction2_qpi_req, InformationLevel) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 pSMB->DataCount = 0;
4742 pSMB->DataOffset = 0;
4743 pSMB->SetupCount = 1;
4744 pSMB->Reserved3 = 0;
4745 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
4746 byte_count = params + 1 /* pad */ ;
4747 pSMB->TotalParameterCount = cpu_to_le16(params);
4748 pSMB->ParameterCount = pSMB->TotalParameterCount;
4749 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_INTERNAL_INFO);
4750 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00004751 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752 pSMB->ByteCount = cpu_to_le16(byte_count);
4753
4754 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4755 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4756 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004757 cifs_dbg(FYI, "error %d in QueryInternalInfo\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 } else {
4759 /* decode response */
4760 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 /* BB also check enough total bytes returned */
Jeff Layton820a8032011-05-04 08:05:26 -04004762 if (rc || get_bcc(&pSMBr->hdr) < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 /* If rc should we check for EOPNOSUPP and
4764 disable the srvino flag? or in caller? */
4765 rc = -EIO; /* bad smb */
Steve French50c2f752007-07-13 00:33:32 +00004766 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
4768 __u16 count = le16_to_cpu(pSMBr->t2.DataCount);
Steve French50c2f752007-07-13 00:33:32 +00004769 struct file_internal_info *pfinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770 /* BB Do we need a cast or hash here ? */
Steve French790fe572007-07-07 19:25:05 +00004771 if (count < 8) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004772 cifs_dbg(FYI, "Illegal size ret in QryIntrnlInf\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 rc = -EIO;
4774 goto GetInodeNumOut;
4775 }
4776 pfinfo = (struct file_internal_info *)
4777 (data_offset + (char *) &pSMBr->hdr.Protocol);
Steve French85a6dac2009-04-01 05:22:00 +00004778 *inode_number = le64_to_cpu(pfinfo->UniqueId);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779 }
4780 }
4781GetInodeNumOut:
4782 cifs_buf_release(pSMB);
4783 if (rc == -EAGAIN)
4784 goto GetInodeNumberRetry;
4785 return rc;
4786}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787
Igor Mammedovfec45852008-05-16 13:06:30 +04004788/* parses DFS refferal V3 structure
4789 * caller is responsible for freeing target_nodes
4790 * returns:
4791 * on success - 0
4792 * on failure - errno
4793 */
4794static int
Steve Frencha1fe78f2008-05-16 18:48:38 +00004795parse_DFS_referrals(TRANSACTION2_GET_DFS_REFER_RSP *pSMBr,
Igor Mammedovfec45852008-05-16 13:06:30 +04004796 unsigned int *num_of_nodes,
4797 struct dfs_info3_param **target_nodes,
Igor Mammedov2c556082008-10-23 13:58:42 +04004798 const struct nls_table *nls_codepage, int remap,
4799 const char *searchName)
Igor Mammedovfec45852008-05-16 13:06:30 +04004800{
4801 int i, rc = 0;
4802 char *data_end;
4803 bool is_unicode;
4804 struct dfs_referral_level_3 *ref;
4805
Harvey Harrison5ca33c62008-07-23 17:45:58 -07004806 if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE)
4807 is_unicode = true;
4808 else
4809 is_unicode = false;
Igor Mammedovfec45852008-05-16 13:06:30 +04004810 *num_of_nodes = le16_to_cpu(pSMBr->NumberOfReferrals);
4811
4812 if (*num_of_nodes < 1) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004813 cifs_dbg(VFS, "num_referrals: must be at least > 0, but we get num_referrals = %d\n",
4814 *num_of_nodes);
Igor Mammedovfec45852008-05-16 13:06:30 +04004815 rc = -EINVAL;
Steve Frencha1fe78f2008-05-16 18:48:38 +00004816 goto parse_DFS_referrals_exit;
Igor Mammedovfec45852008-05-16 13:06:30 +04004817 }
4818
4819 ref = (struct dfs_referral_level_3 *) &(pSMBr->referrals);
Al Viro1d92cfd2008-06-02 10:59:02 +01004820 if (ref->VersionNumber != cpu_to_le16(3)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004821 cifs_dbg(VFS, "Referrals of V%d version are not supported, should be V3\n",
4822 le16_to_cpu(ref->VersionNumber));
Igor Mammedovfec45852008-05-16 13:06:30 +04004823 rc = -EINVAL;
Steve Frencha1fe78f2008-05-16 18:48:38 +00004824 goto parse_DFS_referrals_exit;
Igor Mammedovfec45852008-05-16 13:06:30 +04004825 }
4826
4827 /* get the upper boundary of the resp buffer */
4828 data_end = (char *)(&(pSMBr->PathConsumed)) +
4829 le16_to_cpu(pSMBr->t2.DataCount);
4830
Joe Perchesf96637b2013-05-04 22:12:25 -05004831 cifs_dbg(FYI, "num_referrals: %d dfs flags: 0x%x ...\n",
4832 *num_of_nodes, le32_to_cpu(pSMBr->DFSFlags));
Igor Mammedovfec45852008-05-16 13:06:30 +04004833
Joe Perchesf96637b2013-05-04 22:12:25 -05004834 *target_nodes = kcalloc(*num_of_nodes, sizeof(struct dfs_info3_param),
4835 GFP_KERNEL);
Igor Mammedovfec45852008-05-16 13:06:30 +04004836 if (*target_nodes == NULL) {
Igor Mammedovfec45852008-05-16 13:06:30 +04004837 rc = -ENOMEM;
Steve Frencha1fe78f2008-05-16 18:48:38 +00004838 goto parse_DFS_referrals_exit;
Igor Mammedovfec45852008-05-16 13:06:30 +04004839 }
4840
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08004841 /* collect necessary data from referrals */
Igor Mammedovfec45852008-05-16 13:06:30 +04004842 for (i = 0; i < *num_of_nodes; i++) {
4843 char *temp;
4844 int max_len;
4845 struct dfs_info3_param *node = (*target_nodes)+i;
4846
Steve French0e0d2cf2009-05-01 05:27:32 +00004847 node->flags = le32_to_cpu(pSMBr->DFSFlags);
Igor Mammedov2c556082008-10-23 13:58:42 +04004848 if (is_unicode) {
Jeff Layton331c3132008-12-17 06:31:53 -05004849 __le16 *tmp = kmalloc(strlen(searchName)*2 + 2,
4850 GFP_KERNEL);
Steve French2920ee22009-08-31 15:27:26 +00004851 if (tmp == NULL) {
4852 rc = -ENOMEM;
4853 goto parse_DFS_referrals_exit;
4854 }
Steve Frenchacbbb762012-01-18 22:32:33 -06004855 cifsConvertToUTF16((__le16 *) tmp, searchName,
4856 PATH_MAX, nls_codepage, remap);
4857 node->path_consumed = cifs_utf16_bytes(tmp,
Jeff Layton69f801f2009-04-30 06:46:32 -04004858 le16_to_cpu(pSMBr->PathConsumed),
Igor Mammedov2c556082008-10-23 13:58:42 +04004859 nls_codepage);
4860 kfree(tmp);
4861 } else
4862 node->path_consumed = le16_to_cpu(pSMBr->PathConsumed);
4863
Igor Mammedovfec45852008-05-16 13:06:30 +04004864 node->server_type = le16_to_cpu(ref->ServerType);
4865 node->ref_flag = le16_to_cpu(ref->ReferralEntryFlags);
4866
4867 /* copy DfsPath */
4868 temp = (char *)ref + le16_to_cpu(ref->DfsPathOffset);
4869 max_len = data_end - temp;
Steve Frenchacbbb762012-01-18 22:32:33 -06004870 node->path_name = cifs_strndup_from_utf16(temp, max_len,
4871 is_unicode, nls_codepage);
Jeff Laytond8e2f532009-05-14 07:46:59 -04004872 if (!node->path_name) {
4873 rc = -ENOMEM;
Steve Frencha1fe78f2008-05-16 18:48:38 +00004874 goto parse_DFS_referrals_exit;
Jeff Layton066ce682009-04-30 07:16:14 -04004875 }
Igor Mammedovfec45852008-05-16 13:06:30 +04004876
4877 /* copy link target UNC */
4878 temp = (char *)ref + le16_to_cpu(ref->NetworkAddressOffset);
4879 max_len = data_end - temp;
Steve Frenchacbbb762012-01-18 22:32:33 -06004880 node->node_name = cifs_strndup_from_utf16(temp, max_len,
4881 is_unicode, nls_codepage);
Stefan Metzmacherd8f27992012-05-04 00:19:28 +02004882 if (!node->node_name) {
Jeff Laytond8e2f532009-05-14 07:46:59 -04004883 rc = -ENOMEM;
Stefan Metzmacherd8f27992012-05-04 00:19:28 +02004884 goto parse_DFS_referrals_exit;
4885 }
4886
4887 ref++;
Igor Mammedovfec45852008-05-16 13:06:30 +04004888 }
4889
Steve Frencha1fe78f2008-05-16 18:48:38 +00004890parse_DFS_referrals_exit:
Igor Mammedovfec45852008-05-16 13:06:30 +04004891 if (rc) {
4892 free_dfs_info_array(*target_nodes, *num_of_nodes);
4893 *target_nodes = NULL;
4894 *num_of_nodes = 0;
4895 }
4896 return rc;
4897}
4898
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04004900CIFSGetDFSRefer(const unsigned int xid, struct cifs_ses *ses,
Pavel Shilovskyb669f332012-05-27 20:21:53 +04004901 const char *search_name, struct dfs_info3_param **target_nodes,
Steve Frenchc2cf07d2008-05-15 06:20:02 +00004902 unsigned int *num_of_nodes,
Steve French737b7582005-04-28 22:41:06 -07004903 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904{
4905/* TRANS2_GET_DFS_REFERRAL */
4906 TRANSACTION2_GET_DFS_REFER_REQ *pSMB = NULL;
4907 TRANSACTION2_GET_DFS_REFER_RSP *pSMBr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908 int rc = 0;
4909 int bytes_returned;
4910 int name_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911 __u16 params, byte_count;
Steve Frenchc2cf07d2008-05-15 06:20:02 +00004912 *num_of_nodes = 0;
4913 *target_nodes = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914
Joe Perchesf96637b2013-05-04 22:12:25 -05004915 cifs_dbg(FYI, "In GetDFSRefer the path %s\n", search_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916 if (ses == NULL)
4917 return -ENODEV;
4918getDFSRetry:
4919 rc = smb_init(SMB_COM_TRANSACTION2, 15, NULL, (void **) &pSMB,
4920 (void **) &pSMBr);
4921 if (rc)
4922 return rc;
Steve French50c2f752007-07-13 00:33:32 +00004923
4924 /* server pointer checked in called function,
Steve French1982c342005-08-17 12:38:22 -07004925 but should never be null here anyway */
Pavel Shilovsky88257362012-05-23 14:01:59 +04004926 pSMB->hdr.Mid = get_next_mid(ses->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927 pSMB->hdr.Tid = ses->ipc_tid;
4928 pSMB->hdr.Uid = ses->Suid;
Steve French26f57362007-08-30 22:09:15 +00004929 if (ses->capabilities & CAP_STATUS32)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930 pSMB->hdr.Flags2 |= SMBFLG2_ERR_STATUS;
Steve French26f57362007-08-30 22:09:15 +00004931 if (ses->capabilities & CAP_DFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932 pSMB->hdr.Flags2 |= SMBFLG2_DFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933
4934 if (ses->capabilities & CAP_UNICODE) {
4935 pSMB->hdr.Flags2 |= SMBFLG2_UNICODE;
4936 name_len =
Steve Frenchacbbb762012-01-18 22:32:33 -06004937 cifsConvertToUTF16((__le16 *) pSMB->RequestFileName,
Pavel Shilovskyb669f332012-05-27 20:21:53 +04004938 search_name, PATH_MAX, nls_codepage,
Steve Frenchacbbb762012-01-18 22:32:33 -06004939 remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940 name_len++; /* trailing null */
4941 name_len *= 2;
Steve French50c2f752007-07-13 00:33:32 +00004942 } else { /* BB improve the check for buffer overruns BB */
Pavel Shilovskyb669f332012-05-27 20:21:53 +04004943 name_len = strnlen(search_name, PATH_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944 name_len++; /* trailing null */
Pavel Shilovskyb669f332012-05-27 20:21:53 +04004945 strncpy(pSMB->RequestFileName, search_name, name_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946 }
4947
Dan Carpenter65c3b202015-04-30 17:30:24 +03004948 if (ses->server->sign)
Jeff Layton38d77c52013-05-26 07:01:00 -04004949 pSMB->hdr.Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
Steve French1a4e15a2006-10-12 21:33:51 +00004950
Steve French50c2f752007-07-13 00:33:32 +00004951 pSMB->hdr.Uid = ses->Suid;
Steve French1a4e15a2006-10-12 21:33:51 +00004952
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953 params = 2 /* level */ + name_len /*includes null */ ;
4954 pSMB->TotalDataCount = 0;
4955 pSMB->DataCount = 0;
4956 pSMB->DataOffset = 0;
4957 pSMB->MaxParameterCount = 0;
Steve French582d21e2008-05-13 04:54:12 +00004958 /* BB find exact max SMB PDU from sess structure BB */
4959 pSMB->MaxDataCount = cpu_to_le16(4000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 pSMB->MaxSetupCount = 0;
4961 pSMB->Reserved = 0;
4962 pSMB->Flags = 0;
4963 pSMB->Timeout = 0;
4964 pSMB->Reserved2 = 0;
4965 pSMB->ParameterOffset = cpu_to_le16(offsetof(
Steve French50c2f752007-07-13 00:33:32 +00004966 struct smb_com_transaction2_get_dfs_refer_req, MaxReferralLevel) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967 pSMB->SetupCount = 1;
4968 pSMB->Reserved3 = 0;
4969 pSMB->SubCommand = cpu_to_le16(TRANS2_GET_DFS_REFERRAL);
4970 byte_count = params + 3 /* pad */ ;
4971 pSMB->ParameterCount = cpu_to_le16(params);
4972 pSMB->TotalParameterCount = pSMB->ParameterCount;
4973 pSMB->MaxReferralLevel = cpu_to_le16(3);
Steve Frenchbe8e3b02011-04-29 05:40:20 +00004974 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975 pSMB->ByteCount = cpu_to_le16(byte_count);
4976
4977 rc = SendReceive(xid, ses, (struct smb_hdr *) pSMB,
4978 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4979 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004980 cifs_dbg(FYI, "Send error in GetDFSRefer = %d\n", rc);
Steve Frenchc2cf07d2008-05-15 06:20:02 +00004981 goto GetDFSRefExit;
4982 }
4983 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984
Steve Frenchc2cf07d2008-05-15 06:20:02 +00004985 /* BB Also check if enough total bytes returned? */
Jeff Layton820a8032011-05-04 08:05:26 -04004986 if (rc || get_bcc(&pSMBr->hdr) < 17) {
Steve Frenchc2cf07d2008-05-15 06:20:02 +00004987 rc = -EIO; /* bad smb */
Igor Mammedovfec45852008-05-16 13:06:30 +04004988 goto GetDFSRefExit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989 }
Igor Mammedovfec45852008-05-16 13:06:30 +04004990
Joe Perchesf96637b2013-05-04 22:12:25 -05004991 cifs_dbg(FYI, "Decoding GetDFSRefer response BCC: %d Offset %d\n",
4992 get_bcc(&pSMBr->hdr), le16_to_cpu(pSMBr->t2.DataOffset));
Igor Mammedovfec45852008-05-16 13:06:30 +04004993
4994 /* parse returned result into more usable form */
Steve Frencha1fe78f2008-05-16 18:48:38 +00004995 rc = parse_DFS_referrals(pSMBr, num_of_nodes,
Igor Mammedov2c556082008-10-23 13:58:42 +04004996 target_nodes, nls_codepage, remap,
Pavel Shilovskyb669f332012-05-27 20:21:53 +04004997 search_name);
Igor Mammedovfec45852008-05-16 13:06:30 +04004998
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999GetDFSRefExit:
Steve French0d817bc2008-05-22 02:02:03 +00005000 cifs_buf_release(pSMB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001
5002 if (rc == -EAGAIN)
5003 goto getDFSRetry;
5004
5005 return rc;
5006}
5007
Steve French20962432005-09-21 22:05:57 -07005008/* Query File System Info such as free space to old servers such as Win 9x */
5009int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04005010SMBOldQFSInfo(const unsigned int xid, struct cifs_tcon *tcon,
5011 struct kstatfs *FSData)
Steve French20962432005-09-21 22:05:57 -07005012{
5013/* level 0x01 SMB_QUERY_FILE_SYSTEM_INFO */
5014 TRANSACTION2_QFSI_REQ *pSMB = NULL;
5015 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
5016 FILE_SYSTEM_ALLOC_INFO *response_data;
5017 int rc = 0;
5018 int bytes_returned = 0;
5019 __u16 params, byte_count;
5020
Joe Perchesf96637b2013-05-04 22:12:25 -05005021 cifs_dbg(FYI, "OldQFSInfo\n");
Steve French20962432005-09-21 22:05:57 -07005022oldQFSInfoRetry:
5023 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
5024 (void **) &pSMBr);
5025 if (rc)
5026 return rc;
Steve French20962432005-09-21 22:05:57 -07005027
5028 params = 2; /* level */
5029 pSMB->TotalDataCount = 0;
5030 pSMB->MaxParameterCount = cpu_to_le16(2);
5031 pSMB->MaxDataCount = cpu_to_le16(1000);
5032 pSMB->MaxSetupCount = 0;
5033 pSMB->Reserved = 0;
5034 pSMB->Flags = 0;
5035 pSMB->Timeout = 0;
5036 pSMB->Reserved2 = 0;
5037 byte_count = params + 1 /* pad */ ;
5038 pSMB->TotalParameterCount = cpu_to_le16(params);
5039 pSMB->ParameterCount = pSMB->TotalParameterCount;
5040 pSMB->ParameterOffset = cpu_to_le16(offsetof(
5041 struct smb_com_transaction2_qfsi_req, InformationLevel) - 4);
5042 pSMB->DataCount = 0;
5043 pSMB->DataOffset = 0;
5044 pSMB->SetupCount = 1;
5045 pSMB->Reserved3 = 0;
5046 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
5047 pSMB->InformationLevel = cpu_to_le16(SMB_INFO_ALLOCATION);
Steve Frenchbe8e3b02011-04-29 05:40:20 +00005048 inc_rfc1001_len(pSMB, byte_count);
Steve French20962432005-09-21 22:05:57 -07005049 pSMB->ByteCount = cpu_to_le16(byte_count);
5050
5051 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5052 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
5053 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05005054 cifs_dbg(FYI, "Send error in QFSInfo = %d\n", rc);
Steve French20962432005-09-21 22:05:57 -07005055 } else { /* decode response */
5056 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
5057
Jeff Layton820a8032011-05-04 08:05:26 -04005058 if (rc || get_bcc(&pSMBr->hdr) < 18)
Steve French20962432005-09-21 22:05:57 -07005059 rc = -EIO; /* bad smb */
5060 else {
5061 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
Joe Perchesf96637b2013-05-04 22:12:25 -05005062 cifs_dbg(FYI, "qfsinf resp BCC: %d Offset %d\n",
Jeff Layton820a8032011-05-04 08:05:26 -04005063 get_bcc(&pSMBr->hdr), data_offset);
Steve French20962432005-09-21 22:05:57 -07005064
Steve French50c2f752007-07-13 00:33:32 +00005065 response_data = (FILE_SYSTEM_ALLOC_INFO *)
Steve French20962432005-09-21 22:05:57 -07005066 (((char *) &pSMBr->hdr.Protocol) + data_offset);
5067 FSData->f_bsize =
5068 le16_to_cpu(response_data->BytesPerSector) *
5069 le32_to_cpu(response_data->
5070 SectorsPerAllocationUnit);
5071 FSData->f_blocks =
Steve French50c2f752007-07-13 00:33:32 +00005072 le32_to_cpu(response_data->TotalAllocationUnits);
Steve French20962432005-09-21 22:05:57 -07005073 FSData->f_bfree = FSData->f_bavail =
5074 le32_to_cpu(response_data->FreeAllocationUnits);
Joe Perchesf96637b2013-05-04 22:12:25 -05005075 cifs_dbg(FYI, "Blocks: %lld Free: %lld Block size %ld\n",
5076 (unsigned long long)FSData->f_blocks,
5077 (unsigned long long)FSData->f_bfree,
5078 FSData->f_bsize);
Steve French20962432005-09-21 22:05:57 -07005079 }
5080 }
5081 cifs_buf_release(pSMB);
5082
5083 if (rc == -EAGAIN)
5084 goto oldQFSInfoRetry;
5085
5086 return rc;
5087}
5088
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04005090CIFSSMBQFSInfo(const unsigned int xid, struct cifs_tcon *tcon,
5091 struct kstatfs *FSData)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092{
5093/* level 0x103 SMB_QUERY_FILE_SYSTEM_INFO */
5094 TRANSACTION2_QFSI_REQ *pSMB = NULL;
5095 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
5096 FILE_SYSTEM_INFO *response_data;
5097 int rc = 0;
5098 int bytes_returned = 0;
5099 __u16 params, byte_count;
5100
Joe Perchesf96637b2013-05-04 22:12:25 -05005101 cifs_dbg(FYI, "In QFSInfo\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102QFSInfoRetry:
5103 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
5104 (void **) &pSMBr);
5105 if (rc)
5106 return rc;
5107
5108 params = 2; /* level */
5109 pSMB->TotalDataCount = 0;
5110 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve French20962432005-09-21 22:05:57 -07005111 pSMB->MaxDataCount = cpu_to_le16(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 pSMB->MaxSetupCount = 0;
5113 pSMB->Reserved = 0;
5114 pSMB->Flags = 0;
5115 pSMB->Timeout = 0;
5116 pSMB->Reserved2 = 0;
5117 byte_count = params + 1 /* pad */ ;
5118 pSMB->TotalParameterCount = cpu_to_le16(params);
5119 pSMB->ParameterCount = pSMB->TotalParameterCount;
5120 pSMB->ParameterOffset = cpu_to_le16(offsetof(
Steve French50c2f752007-07-13 00:33:32 +00005121 struct smb_com_transaction2_qfsi_req, InformationLevel) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122 pSMB->DataCount = 0;
5123 pSMB->DataOffset = 0;
5124 pSMB->SetupCount = 1;
5125 pSMB->Reserved3 = 0;
5126 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
5127 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FS_SIZE_INFO);
Steve Frenchbe8e3b02011-04-29 05:40:20 +00005128 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129 pSMB->ByteCount = cpu_to_le16(byte_count);
5130
5131 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5132 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
5133 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05005134 cifs_dbg(FYI, "Send error in QFSInfo = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 } else { /* decode response */
Steve French50c2f752007-07-13 00:33:32 +00005136 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137
Jeff Layton820a8032011-05-04 08:05:26 -04005138 if (rc || get_bcc(&pSMBr->hdr) < 24)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 rc = -EIO; /* bad smb */
5140 else {
5141 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142
5143 response_data =
5144 (FILE_SYSTEM_INFO
5145 *) (((char *) &pSMBr->hdr.Protocol) +
5146 data_offset);
5147 FSData->f_bsize =
5148 le32_to_cpu(response_data->BytesPerSector) *
5149 le32_to_cpu(response_data->
5150 SectorsPerAllocationUnit);
5151 FSData->f_blocks =
5152 le64_to_cpu(response_data->TotalAllocationUnits);
5153 FSData->f_bfree = FSData->f_bavail =
5154 le64_to_cpu(response_data->FreeAllocationUnits);
Joe Perchesf96637b2013-05-04 22:12:25 -05005155 cifs_dbg(FYI, "Blocks: %lld Free: %lld Block size %ld\n",
5156 (unsigned long long)FSData->f_blocks,
5157 (unsigned long long)FSData->f_bfree,
5158 FSData->f_bsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159 }
5160 }
5161 cifs_buf_release(pSMB);
5162
5163 if (rc == -EAGAIN)
5164 goto QFSInfoRetry;
5165
5166 return rc;
5167}
5168
5169int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04005170CIFSSMBQFSAttributeInfo(const unsigned int xid, struct cifs_tcon *tcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171{
5172/* level 0x105 SMB_QUERY_FILE_SYSTEM_INFO */
5173 TRANSACTION2_QFSI_REQ *pSMB = NULL;
5174 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
5175 FILE_SYSTEM_ATTRIBUTE_INFO *response_data;
5176 int rc = 0;
5177 int bytes_returned = 0;
5178 __u16 params, byte_count;
5179
Joe Perchesf96637b2013-05-04 22:12:25 -05005180 cifs_dbg(FYI, "In QFSAttributeInfo\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181QFSAttributeRetry:
5182 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
5183 (void **) &pSMBr);
5184 if (rc)
5185 return rc;
5186
5187 params = 2; /* level */
5188 pSMB->TotalDataCount = 0;
5189 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve French582d21e2008-05-13 04:54:12 +00005190 /* BB find exact max SMB PDU from sess structure BB */
5191 pSMB->MaxDataCount = cpu_to_le16(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192 pSMB->MaxSetupCount = 0;
5193 pSMB->Reserved = 0;
5194 pSMB->Flags = 0;
5195 pSMB->Timeout = 0;
5196 pSMB->Reserved2 = 0;
5197 byte_count = params + 1 /* pad */ ;
5198 pSMB->TotalParameterCount = cpu_to_le16(params);
5199 pSMB->ParameterCount = pSMB->TotalParameterCount;
5200 pSMB->ParameterOffset = cpu_to_le16(offsetof(
Steve French50c2f752007-07-13 00:33:32 +00005201 struct smb_com_transaction2_qfsi_req, InformationLevel) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202 pSMB->DataCount = 0;
5203 pSMB->DataOffset = 0;
5204 pSMB->SetupCount = 1;
5205 pSMB->Reserved3 = 0;
5206 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
5207 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FS_ATTRIBUTE_INFO);
Steve Frenchbe8e3b02011-04-29 05:40:20 +00005208 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209 pSMB->ByteCount = cpu_to_le16(byte_count);
5210
5211 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5212 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
5213 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05005214 cifs_dbg(VFS, "Send error in QFSAttributeInfo = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215 } else { /* decode response */
5216 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
5217
Jeff Layton820a8032011-05-04 08:05:26 -04005218 if (rc || get_bcc(&pSMBr->hdr) < 13) {
Steve French50c2f752007-07-13 00:33:32 +00005219 /* BB also check if enough bytes returned */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220 rc = -EIO; /* bad smb */
5221 } else {
5222 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
5223 response_data =
5224 (FILE_SYSTEM_ATTRIBUTE_INFO
5225 *) (((char *) &pSMBr->hdr.Protocol) +
5226 data_offset);
5227 memcpy(&tcon->fsAttrInfo, response_data,
Steve French26f57362007-08-30 22:09:15 +00005228 sizeof(FILE_SYSTEM_ATTRIBUTE_INFO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229 }
5230 }
5231 cifs_buf_release(pSMB);
5232
5233 if (rc == -EAGAIN)
5234 goto QFSAttributeRetry;
5235
5236 return rc;
5237}
5238
5239int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04005240CIFSSMBQFSDeviceInfo(const unsigned int xid, struct cifs_tcon *tcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241{
5242/* level 0x104 SMB_QUERY_FILE_SYSTEM_INFO */
5243 TRANSACTION2_QFSI_REQ *pSMB = NULL;
5244 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
5245 FILE_SYSTEM_DEVICE_INFO *response_data;
5246 int rc = 0;
5247 int bytes_returned = 0;
5248 __u16 params, byte_count;
5249
Joe Perchesf96637b2013-05-04 22:12:25 -05005250 cifs_dbg(FYI, "In QFSDeviceInfo\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251QFSDeviceRetry:
5252 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
5253 (void **) &pSMBr);
5254 if (rc)
5255 return rc;
5256
5257 params = 2; /* level */
5258 pSMB->TotalDataCount = 0;
5259 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve French582d21e2008-05-13 04:54:12 +00005260 /* BB find exact max SMB PDU from sess structure BB */
5261 pSMB->MaxDataCount = cpu_to_le16(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262 pSMB->MaxSetupCount = 0;
5263 pSMB->Reserved = 0;
5264 pSMB->Flags = 0;
5265 pSMB->Timeout = 0;
5266 pSMB->Reserved2 = 0;
5267 byte_count = params + 1 /* pad */ ;
5268 pSMB->TotalParameterCount = cpu_to_le16(params);
5269 pSMB->ParameterCount = pSMB->TotalParameterCount;
5270 pSMB->ParameterOffset = cpu_to_le16(offsetof(
Steve French50c2f752007-07-13 00:33:32 +00005271 struct smb_com_transaction2_qfsi_req, InformationLevel) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272
5273 pSMB->DataCount = 0;
5274 pSMB->DataOffset = 0;
5275 pSMB->SetupCount = 1;
5276 pSMB->Reserved3 = 0;
5277 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
5278 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FS_DEVICE_INFO);
Steve Frenchbe8e3b02011-04-29 05:40:20 +00005279 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280 pSMB->ByteCount = cpu_to_le16(byte_count);
5281
5282 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5283 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
5284 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05005285 cifs_dbg(FYI, "Send error in QFSDeviceInfo = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286 } else { /* decode response */
5287 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
5288
Jeff Layton820a8032011-05-04 08:05:26 -04005289 if (rc || get_bcc(&pSMBr->hdr) <
5290 sizeof(FILE_SYSTEM_DEVICE_INFO))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291 rc = -EIO; /* bad smb */
5292 else {
5293 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
5294 response_data =
Steve French737b7582005-04-28 22:41:06 -07005295 (FILE_SYSTEM_DEVICE_INFO *)
5296 (((char *) &pSMBr->hdr.Protocol) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297 data_offset);
5298 memcpy(&tcon->fsDevInfo, response_data,
Steve French26f57362007-08-30 22:09:15 +00005299 sizeof(FILE_SYSTEM_DEVICE_INFO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300 }
5301 }
5302 cifs_buf_release(pSMB);
5303
5304 if (rc == -EAGAIN)
5305 goto QFSDeviceRetry;
5306
5307 return rc;
5308}
5309
5310int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04005311CIFSSMBQFSUnixInfo(const unsigned int xid, struct cifs_tcon *tcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312{
5313/* level 0x200 SMB_QUERY_CIFS_UNIX_INFO */
5314 TRANSACTION2_QFSI_REQ *pSMB = NULL;
5315 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
5316 FILE_SYSTEM_UNIX_INFO *response_data;
5317 int rc = 0;
5318 int bytes_returned = 0;
5319 __u16 params, byte_count;
5320
Joe Perchesf96637b2013-05-04 22:12:25 -05005321 cifs_dbg(FYI, "In QFSUnixInfo\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322QFSUnixRetry:
Jeff Laytonf5695992010-09-29 15:27:08 -04005323 rc = smb_init_no_reconnect(SMB_COM_TRANSACTION2, 15, tcon,
5324 (void **) &pSMB, (void **) &pSMBr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325 if (rc)
5326 return rc;
5327
5328 params = 2; /* level */
5329 pSMB->TotalDataCount = 0;
5330 pSMB->DataCount = 0;
5331 pSMB->DataOffset = 0;
5332 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve French582d21e2008-05-13 04:54:12 +00005333 /* BB find exact max SMB PDU from sess structure BB */
5334 pSMB->MaxDataCount = cpu_to_le16(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335 pSMB->MaxSetupCount = 0;
5336 pSMB->Reserved = 0;
5337 pSMB->Flags = 0;
5338 pSMB->Timeout = 0;
5339 pSMB->Reserved2 = 0;
5340 byte_count = params + 1 /* pad */ ;
5341 pSMB->ParameterCount = cpu_to_le16(params);
5342 pSMB->TotalParameterCount = pSMB->ParameterCount;
Steve French50c2f752007-07-13 00:33:32 +00005343 pSMB->ParameterOffset = cpu_to_le16(offsetof(struct
5344 smb_com_transaction2_qfsi_req, InformationLevel) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345 pSMB->SetupCount = 1;
5346 pSMB->Reserved3 = 0;
5347 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
5348 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_CIFS_UNIX_INFO);
Steve Frenchbe8e3b02011-04-29 05:40:20 +00005349 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350 pSMB->ByteCount = cpu_to_le16(byte_count);
5351
5352 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5353 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
5354 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05005355 cifs_dbg(VFS, "Send error in QFSUnixInfo = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356 } else { /* decode response */
5357 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
5358
Jeff Layton820a8032011-05-04 08:05:26 -04005359 if (rc || get_bcc(&pSMBr->hdr) < 13) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360 rc = -EIO; /* bad smb */
5361 } else {
5362 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
5363 response_data =
5364 (FILE_SYSTEM_UNIX_INFO
5365 *) (((char *) &pSMBr->hdr.Protocol) +
5366 data_offset);
5367 memcpy(&tcon->fsUnixInfo, response_data,
Steve French26f57362007-08-30 22:09:15 +00005368 sizeof(FILE_SYSTEM_UNIX_INFO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369 }
5370 }
5371 cifs_buf_release(pSMB);
5372
5373 if (rc == -EAGAIN)
5374 goto QFSUnixRetry;
5375
5376
5377 return rc;
5378}
5379
Jeremy Allisonac670552005-06-22 17:26:35 -07005380int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04005381CIFSSMBSetFSUnixInfo(const unsigned int xid, struct cifs_tcon *tcon, __u64 cap)
Jeremy Allisonac670552005-06-22 17:26:35 -07005382{
5383/* level 0x200 SMB_SET_CIFS_UNIX_INFO */
5384 TRANSACTION2_SETFSI_REQ *pSMB = NULL;
5385 TRANSACTION2_SETFSI_RSP *pSMBr = NULL;
5386 int rc = 0;
5387 int bytes_returned = 0;
5388 __u16 params, param_offset, offset, byte_count;
5389
Joe Perchesf96637b2013-05-04 22:12:25 -05005390 cifs_dbg(FYI, "In SETFSUnixInfo\n");
Jeremy Allisonac670552005-06-22 17:26:35 -07005391SETFSUnixRetry:
Steve Frenchf26282c2006-03-01 09:17:37 +00005392 /* BB switch to small buf init to save memory */
Jeff Laytonf5695992010-09-29 15:27:08 -04005393 rc = smb_init_no_reconnect(SMB_COM_TRANSACTION2, 15, tcon,
5394 (void **) &pSMB, (void **) &pSMBr);
Jeremy Allisonac670552005-06-22 17:26:35 -07005395 if (rc)
5396 return rc;
5397
5398 params = 4; /* 2 bytes zero followed by info level. */
5399 pSMB->MaxSetupCount = 0;
5400 pSMB->Reserved = 0;
5401 pSMB->Flags = 0;
5402 pSMB->Timeout = 0;
5403 pSMB->Reserved2 = 0;
Steve French50c2f752007-07-13 00:33:32 +00005404 param_offset = offsetof(struct smb_com_transaction2_setfsi_req, FileNum)
5405 - 4;
Jeremy Allisonac670552005-06-22 17:26:35 -07005406 offset = param_offset + params;
5407
5408 pSMB->MaxParameterCount = cpu_to_le16(4);
Steve French582d21e2008-05-13 04:54:12 +00005409 /* BB find exact max SMB PDU from sess structure BB */
5410 pSMB->MaxDataCount = cpu_to_le16(100);
Jeremy Allisonac670552005-06-22 17:26:35 -07005411 pSMB->SetupCount = 1;
5412 pSMB->Reserved3 = 0;
5413 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FS_INFORMATION);
5414 byte_count = 1 /* pad */ + params + 12;
5415
5416 pSMB->DataCount = cpu_to_le16(12);
5417 pSMB->ParameterCount = cpu_to_le16(params);
5418 pSMB->TotalDataCount = pSMB->DataCount;
5419 pSMB->TotalParameterCount = pSMB->ParameterCount;
5420 pSMB->ParameterOffset = cpu_to_le16(param_offset);
5421 pSMB->DataOffset = cpu_to_le16(offset);
5422
5423 /* Params. */
5424 pSMB->FileNum = 0;
5425 pSMB->InformationLevel = cpu_to_le16(SMB_SET_CIFS_UNIX_INFO);
5426
5427 /* Data. */
5428 pSMB->ClientUnixMajor = cpu_to_le16(CIFS_UNIX_MAJOR_VERSION);
5429 pSMB->ClientUnixMinor = cpu_to_le16(CIFS_UNIX_MINOR_VERSION);
5430 pSMB->ClientUnixCap = cpu_to_le64(cap);
5431
Steve Frenchbe8e3b02011-04-29 05:40:20 +00005432 inc_rfc1001_len(pSMB, byte_count);
Jeremy Allisonac670552005-06-22 17:26:35 -07005433 pSMB->ByteCount = cpu_to_le16(byte_count);
5434
5435 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5436 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
5437 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05005438 cifs_dbg(VFS, "Send error in SETFSUnixInfo = %d\n", rc);
Jeremy Allisonac670552005-06-22 17:26:35 -07005439 } else { /* decode response */
5440 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
Steve Frenchad7a2922008-02-07 23:25:02 +00005441 if (rc)
Jeremy Allisonac670552005-06-22 17:26:35 -07005442 rc = -EIO; /* bad smb */
Jeremy Allisonac670552005-06-22 17:26:35 -07005443 }
5444 cifs_buf_release(pSMB);
5445
5446 if (rc == -EAGAIN)
5447 goto SETFSUnixRetry;
5448
5449 return rc;
5450}
5451
5452
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453
5454int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04005455CIFSSMBQFSPosixInfo(const unsigned int xid, struct cifs_tcon *tcon,
Steve French737b7582005-04-28 22:41:06 -07005456 struct kstatfs *FSData)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457{
5458/* level 0x201 SMB_QUERY_CIFS_POSIX_INFO */
5459 TRANSACTION2_QFSI_REQ *pSMB = NULL;
5460 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
5461 FILE_SYSTEM_POSIX_INFO *response_data;
5462 int rc = 0;
5463 int bytes_returned = 0;
5464 __u16 params, byte_count;
5465
Joe Perchesf96637b2013-05-04 22:12:25 -05005466 cifs_dbg(FYI, "In QFSPosixInfo\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467QFSPosixRetry:
5468 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
5469 (void **) &pSMBr);
5470 if (rc)
5471 return rc;
5472
5473 params = 2; /* level */
5474 pSMB->TotalDataCount = 0;
5475 pSMB->DataCount = 0;
5476 pSMB->DataOffset = 0;
5477 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve French582d21e2008-05-13 04:54:12 +00005478 /* BB find exact max SMB PDU from sess structure BB */
5479 pSMB->MaxDataCount = cpu_to_le16(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480 pSMB->MaxSetupCount = 0;
5481 pSMB->Reserved = 0;
5482 pSMB->Flags = 0;
5483 pSMB->Timeout = 0;
5484 pSMB->Reserved2 = 0;
5485 byte_count = params + 1 /* pad */ ;
5486 pSMB->ParameterCount = cpu_to_le16(params);
5487 pSMB->TotalParameterCount = pSMB->ParameterCount;
Steve French50c2f752007-07-13 00:33:32 +00005488 pSMB->ParameterOffset = cpu_to_le16(offsetof(struct
5489 smb_com_transaction2_qfsi_req, InformationLevel) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490 pSMB->SetupCount = 1;
5491 pSMB->Reserved3 = 0;
5492 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
5493 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_POSIX_FS_INFO);
Steve Frenchbe8e3b02011-04-29 05:40:20 +00005494 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495 pSMB->ByteCount = cpu_to_le16(byte_count);
5496
5497 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5498 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
5499 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05005500 cifs_dbg(FYI, "Send error in QFSUnixInfo = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501 } else { /* decode response */
5502 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
5503
Jeff Layton820a8032011-05-04 08:05:26 -04005504 if (rc || get_bcc(&pSMBr->hdr) < 13) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505 rc = -EIO; /* bad smb */
5506 } else {
5507 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
5508 response_data =
5509 (FILE_SYSTEM_POSIX_INFO
5510 *) (((char *) &pSMBr->hdr.Protocol) +
5511 data_offset);
5512 FSData->f_bsize =
5513 le32_to_cpu(response_data->BlockSize);
5514 FSData->f_blocks =
5515 le64_to_cpu(response_data->TotalBlocks);
5516 FSData->f_bfree =
5517 le64_to_cpu(response_data->BlocksAvail);
Steve French790fe572007-07-07 19:25:05 +00005518 if (response_data->UserBlocksAvail == cpu_to_le64(-1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005519 FSData->f_bavail = FSData->f_bfree;
5520 } else {
5521 FSData->f_bavail =
Steve French50c2f752007-07-13 00:33:32 +00005522 le64_to_cpu(response_data->UserBlocksAvail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523 }
Steve French790fe572007-07-07 19:25:05 +00005524 if (response_data->TotalFileNodes != cpu_to_le64(-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525 FSData->f_files =
Steve French50c2f752007-07-13 00:33:32 +00005526 le64_to_cpu(response_data->TotalFileNodes);
Steve French790fe572007-07-07 19:25:05 +00005527 if (response_data->FreeFileNodes != cpu_to_le64(-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005528 FSData->f_ffree =
Steve French50c2f752007-07-13 00:33:32 +00005529 le64_to_cpu(response_data->FreeFileNodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530 }
5531 }
5532 cifs_buf_release(pSMB);
5533
5534 if (rc == -EAGAIN)
5535 goto QFSPosixRetry;
5536
5537 return rc;
5538}
5539
5540
Pavel Shilovskyd1433412012-09-18 16:20:31 -07005541/*
5542 * We can not use write of zero bytes trick to set file size due to need for
5543 * large file support. Also note that this SetPathInfo is preferred to
5544 * SetFileInfo based method in next routine which is only needed to work around
5545 * a sharing violation bugin Samba which this routine can run into.
5546 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04005548CIFSSMBSetEOF(const unsigned int xid, struct cifs_tcon *tcon,
Pavel Shilovskyd1433412012-09-18 16:20:31 -07005549 const char *file_name, __u64 size, struct cifs_sb_info *cifs_sb,
5550 bool set_allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551{
5552 struct smb_com_transaction2_spi_req *pSMB = NULL;
5553 struct smb_com_transaction2_spi_rsp *pSMBr = NULL;
5554 struct file_end_of_file_info *parm_data;
5555 int name_len;
5556 int rc = 0;
5557 int bytes_returned = 0;
Steve French2baa2682014-09-27 02:19:01 -05005558 int remap = cifs_remap(cifs_sb);
Pavel Shilovskyd1433412012-09-18 16:20:31 -07005559
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560 __u16 params, byte_count, data_count, param_offset, offset;
5561
Joe Perchesf96637b2013-05-04 22:12:25 -05005562 cifs_dbg(FYI, "In SetEOF\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563SetEOFRetry:
5564 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
5565 (void **) &pSMBr);
5566 if (rc)
5567 return rc;
5568
5569 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
5570 name_len =
Pavel Shilovskyd1433412012-09-18 16:20:31 -07005571 cifsConvertToUTF16((__le16 *) pSMB->FileName, file_name,
5572 PATH_MAX, cifs_sb->local_nls, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005573 name_len++; /* trailing null */
5574 name_len *= 2;
Steve French3e87d802005-09-18 20:49:21 -07005575 } else { /* BB improve the check for buffer overruns BB */
Pavel Shilovskyd1433412012-09-18 16:20:31 -07005576 name_len = strnlen(file_name, PATH_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577 name_len++; /* trailing null */
Pavel Shilovskyd1433412012-09-18 16:20:31 -07005578 strncpy(pSMB->FileName, file_name, name_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579 }
5580 params = 6 + name_len;
Steve French26f57362007-08-30 22:09:15 +00005581 data_count = sizeof(struct file_end_of_file_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005582 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve French3e87d802005-09-18 20:49:21 -07005583 pSMB->MaxDataCount = cpu_to_le16(4100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584 pSMB->MaxSetupCount = 0;
5585 pSMB->Reserved = 0;
5586 pSMB->Flags = 0;
5587 pSMB->Timeout = 0;
5588 pSMB->Reserved2 = 0;
5589 param_offset = offsetof(struct smb_com_transaction2_spi_req,
Steve French50c2f752007-07-13 00:33:32 +00005590 InformationLevel) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591 offset = param_offset + params;
Pavel Shilovskyd1433412012-09-18 16:20:31 -07005592 if (set_allocation) {
Steve French50c2f752007-07-13 00:33:32 +00005593 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
5594 pSMB->InformationLevel =
5595 cpu_to_le16(SMB_SET_FILE_ALLOCATION_INFO2);
5596 else
5597 pSMB->InformationLevel =
5598 cpu_to_le16(SMB_SET_FILE_ALLOCATION_INFO);
5599 } else /* Set File Size */ {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
5601 pSMB->InformationLevel =
Steve French50c2f752007-07-13 00:33:32 +00005602 cpu_to_le16(SMB_SET_FILE_END_OF_FILE_INFO2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603 else
5604 pSMB->InformationLevel =
Steve French50c2f752007-07-13 00:33:32 +00005605 cpu_to_le16(SMB_SET_FILE_END_OF_FILE_INFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606 }
5607
5608 parm_data =
5609 (struct file_end_of_file_info *) (((char *) &pSMB->hdr.Protocol) +
5610 offset);
5611 pSMB->ParameterOffset = cpu_to_le16(param_offset);
5612 pSMB->DataOffset = cpu_to_le16(offset);
5613 pSMB->SetupCount = 1;
5614 pSMB->Reserved3 = 0;
5615 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
5616 byte_count = 3 /* pad */ + params + data_count;
5617 pSMB->DataCount = cpu_to_le16(data_count);
5618 pSMB->TotalDataCount = pSMB->DataCount;
5619 pSMB->ParameterCount = cpu_to_le16(params);
5620 pSMB->TotalParameterCount = pSMB->ParameterCount;
5621 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00005622 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623 parm_data->FileSize = cpu_to_le64(size);
5624 pSMB->ByteCount = cpu_to_le16(byte_count);
5625 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5626 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Steve Frenchad7a2922008-02-07 23:25:02 +00005627 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05005628 cifs_dbg(FYI, "SetPathInfo (file size) returned %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629
5630 cifs_buf_release(pSMB);
5631
5632 if (rc == -EAGAIN)
5633 goto SetEOFRetry;
5634
5635 return rc;
5636}
5637
5638int
Pavel Shilovskyd1433412012-09-18 16:20:31 -07005639CIFSSMBSetFileSize(const unsigned int xid, struct cifs_tcon *tcon,
5640 struct cifsFileInfo *cfile, __u64 size, bool set_allocation)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641{
5642 struct smb_com_transaction2_sfi_req *pSMB = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643 struct file_end_of_file_info *parm_data;
5644 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645 __u16 params, param_offset, offset, byte_count, count;
5646
Joe Perchesf96637b2013-05-04 22:12:25 -05005647 cifs_dbg(FYI, "SetFileSize (via SetFileInfo) %lld\n",
5648 (long long)size);
Steve Frenchcd634992005-04-28 22:41:10 -07005649 rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB);
5650
Linus Torvalds1da177e2005-04-16 15:20:36 -07005651 if (rc)
5652 return rc;
5653
Pavel Shilovskyd1433412012-09-18 16:20:31 -07005654 pSMB->hdr.Pid = cpu_to_le16((__u16)cfile->pid);
5655 pSMB->hdr.PidHigh = cpu_to_le16((__u16)(cfile->pid >> 16));
Steve French50c2f752007-07-13 00:33:32 +00005656
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657 params = 6;
5658 pSMB->MaxSetupCount = 0;
5659 pSMB->Reserved = 0;
5660 pSMB->Flags = 0;
5661 pSMB->Timeout = 0;
5662 pSMB->Reserved2 = 0;
5663 param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4;
5664 offset = param_offset + params;
5665
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666 count = sizeof(struct file_end_of_file_info);
5667 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve French582d21e2008-05-13 04:54:12 +00005668 /* BB find exact max SMB PDU from sess structure BB */
5669 pSMB->MaxDataCount = cpu_to_le16(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670 pSMB->SetupCount = 1;
5671 pSMB->Reserved3 = 0;
5672 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION);
5673 byte_count = 3 /* pad */ + params + count;
5674 pSMB->DataCount = cpu_to_le16(count);
5675 pSMB->ParameterCount = cpu_to_le16(params);
5676 pSMB->TotalDataCount = pSMB->DataCount;
5677 pSMB->TotalParameterCount = pSMB->ParameterCount;
5678 pSMB->ParameterOffset = cpu_to_le16(param_offset);
5679 parm_data =
Steve French50c2f752007-07-13 00:33:32 +00005680 (struct file_end_of_file_info *) (((char *) &pSMB->hdr.Protocol)
5681 + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682 pSMB->DataOffset = cpu_to_le16(offset);
5683 parm_data->FileSize = cpu_to_le64(size);
Pavel Shilovskyd1433412012-09-18 16:20:31 -07005684 pSMB->Fid = cfile->fid.netfid;
5685 if (set_allocation) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005686 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
5687 pSMB->InformationLevel =
5688 cpu_to_le16(SMB_SET_FILE_ALLOCATION_INFO2);
5689 else
5690 pSMB->InformationLevel =
5691 cpu_to_le16(SMB_SET_FILE_ALLOCATION_INFO);
Steve French50c2f752007-07-13 00:33:32 +00005692 } else /* Set File Size */ {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
5694 pSMB->InformationLevel =
Steve French50c2f752007-07-13 00:33:32 +00005695 cpu_to_le16(SMB_SET_FILE_END_OF_FILE_INFO2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696 else
5697 pSMB->InformationLevel =
Steve French50c2f752007-07-13 00:33:32 +00005698 cpu_to_le16(SMB_SET_FILE_END_OF_FILE_INFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699 }
5700 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00005701 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005702 pSMB->ByteCount = cpu_to_le16(byte_count);
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04005703 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05005705 cifs_dbg(FYI, "Send error in SetFileInfo (SetFileSize) = %d\n",
5706 rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707 }
5708
Steve French50c2f752007-07-13 00:33:32 +00005709 /* Note: On -EAGAIN error only caller can retry on handle based calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710 since file handle passed in no longer valid */
5711
5712 return rc;
5713}
5714
Steve French50c2f752007-07-13 00:33:32 +00005715/* Some legacy servers such as NT4 require that the file times be set on
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716 an open handle, rather than by pathname - this is awkward due to
5717 potential access conflicts on the open, but it is unavoidable for these
5718 old servers since the only other choice is to go from 100 nanosecond DCE
5719 time and resort to the original setpathinfo level which takes the ancient
5720 DOS time format with 2 second granularity */
5721int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04005722CIFSSMBSetFileInfo(const unsigned int xid, struct cifs_tcon *tcon,
Jeff Layton2dd2dfa2008-08-02 07:26:12 -04005723 const FILE_BASIC_INFO *data, __u16 fid, __u32 pid_of_opener)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724{
5725 struct smb_com_transaction2_sfi_req *pSMB = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726 char *data_offset;
5727 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728 __u16 params, param_offset, offset, byte_count, count;
5729
Joe Perchesf96637b2013-05-04 22:12:25 -05005730 cifs_dbg(FYI, "Set Times (via SetFileInfo)\n");
Steve Frenchcd634992005-04-28 22:41:10 -07005731 rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB);
5732
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733 if (rc)
5734 return rc;
5735
Jeff Layton2dd2dfa2008-08-02 07:26:12 -04005736 pSMB->hdr.Pid = cpu_to_le16((__u16)pid_of_opener);
5737 pSMB->hdr.PidHigh = cpu_to_le16((__u16)(pid_of_opener >> 16));
Steve French50c2f752007-07-13 00:33:32 +00005738
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739 params = 6;
5740 pSMB->MaxSetupCount = 0;
5741 pSMB->Reserved = 0;
5742 pSMB->Flags = 0;
5743 pSMB->Timeout = 0;
5744 pSMB->Reserved2 = 0;
5745 param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4;
5746 offset = param_offset + params;
5747
Jeff Laytonb2a3ad92012-03-26 09:55:29 -04005748 data_offset = (char *)pSMB +
5749 offsetof(struct smb_hdr, Protocol) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750
Steve French26f57362007-08-30 22:09:15 +00005751 count = sizeof(FILE_BASIC_INFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve French582d21e2008-05-13 04:54:12 +00005753 /* BB find max SMB PDU from sess */
5754 pSMB->MaxDataCount = cpu_to_le16(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755 pSMB->SetupCount = 1;
5756 pSMB->Reserved3 = 0;
5757 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION);
5758 byte_count = 3 /* pad */ + params + count;
5759 pSMB->DataCount = cpu_to_le16(count);
5760 pSMB->ParameterCount = cpu_to_le16(params);
5761 pSMB->TotalDataCount = pSMB->DataCount;
5762 pSMB->TotalParameterCount = pSMB->ParameterCount;
5763 pSMB->ParameterOffset = cpu_to_le16(param_offset);
5764 pSMB->DataOffset = cpu_to_le16(offset);
5765 pSMB->Fid = fid;
5766 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
5767 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_BASIC_INFO2);
5768 else
5769 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_BASIC_INFO);
5770 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00005771 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772 pSMB->ByteCount = cpu_to_le16(byte_count);
Steve French50c2f752007-07-13 00:33:32 +00005773 memcpy(data_offset, data, sizeof(FILE_BASIC_INFO));
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04005774 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0);
Steve Frenchad7a2922008-02-07 23:25:02 +00005775 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05005776 cifs_dbg(FYI, "Send error in Set Time (SetFileInfo) = %d\n",
5777 rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778
Steve French50c2f752007-07-13 00:33:32 +00005779 /* Note: On -EAGAIN error only caller can retry on handle based calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07005780 since file handle passed in no longer valid */
5781
5782 return rc;
5783}
5784
Jeff Layton6d22f092008-09-23 11:48:35 -04005785int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04005786CIFSSMBSetFileDisposition(const unsigned int xid, struct cifs_tcon *tcon,
Jeff Layton6d22f092008-09-23 11:48:35 -04005787 bool delete_file, __u16 fid, __u32 pid_of_opener)
5788{
5789 struct smb_com_transaction2_sfi_req *pSMB = NULL;
5790 char *data_offset;
5791 int rc = 0;
5792 __u16 params, param_offset, offset, byte_count, count;
5793
Joe Perchesf96637b2013-05-04 22:12:25 -05005794 cifs_dbg(FYI, "Set File Disposition (via SetFileInfo)\n");
Jeff Layton6d22f092008-09-23 11:48:35 -04005795 rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB);
5796
5797 if (rc)
5798 return rc;
5799
5800 pSMB->hdr.Pid = cpu_to_le16((__u16)pid_of_opener);
5801 pSMB->hdr.PidHigh = cpu_to_le16((__u16)(pid_of_opener >> 16));
5802
5803 params = 6;
5804 pSMB->MaxSetupCount = 0;
5805 pSMB->Reserved = 0;
5806 pSMB->Flags = 0;
5807 pSMB->Timeout = 0;
5808 pSMB->Reserved2 = 0;
5809 param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4;
5810 offset = param_offset + params;
5811
5812 data_offset = (char *) (&pSMB->hdr.Protocol) + offset;
5813
5814 count = 1;
5815 pSMB->MaxParameterCount = cpu_to_le16(2);
5816 /* BB find max SMB PDU from sess */
5817 pSMB->MaxDataCount = cpu_to_le16(1000);
5818 pSMB->SetupCount = 1;
5819 pSMB->Reserved3 = 0;
5820 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION);
5821 byte_count = 3 /* pad */ + params + count;
5822 pSMB->DataCount = cpu_to_le16(count);
5823 pSMB->ParameterCount = cpu_to_le16(params);
5824 pSMB->TotalDataCount = pSMB->DataCount;
5825 pSMB->TotalParameterCount = pSMB->ParameterCount;
5826 pSMB->ParameterOffset = cpu_to_le16(param_offset);
5827 pSMB->DataOffset = cpu_to_le16(offset);
5828 pSMB->Fid = fid;
5829 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_DISPOSITION_INFO);
5830 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00005831 inc_rfc1001_len(pSMB, byte_count);
Jeff Layton6d22f092008-09-23 11:48:35 -04005832 pSMB->ByteCount = cpu_to_le16(byte_count);
5833 *data_offset = delete_file ? 1 : 0;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04005834 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0);
Jeff Layton6d22f092008-09-23 11:48:35 -04005835 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05005836 cifs_dbg(FYI, "Send error in SetFileDisposition = %d\n", rc);
Jeff Layton6d22f092008-09-23 11:48:35 -04005837
5838 return rc;
5839}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840
5841int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04005842CIFSSMBSetPathInfo(const unsigned int xid, struct cifs_tcon *tcon,
Jeff Layton6fc000e2008-08-02 07:26:12 -04005843 const char *fileName, const FILE_BASIC_INFO *data,
5844 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845{
5846 TRANSACTION2_SPI_REQ *pSMB = NULL;
5847 TRANSACTION2_SPI_RSP *pSMBr = NULL;
5848 int name_len;
5849 int rc = 0;
5850 int bytes_returned = 0;
5851 char *data_offset;
5852 __u16 params, param_offset, offset, byte_count, count;
5853
Joe Perchesf96637b2013-05-04 22:12:25 -05005854 cifs_dbg(FYI, "In SetTimes\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855
5856SetTimesRetry:
5857 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
5858 (void **) &pSMBr);
5859 if (rc)
5860 return rc;
5861
5862 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
5863 name_len =
Steve Frenchacbbb762012-01-18 22:32:33 -06005864 cifsConvertToUTF16((__le16 *) pSMB->FileName, fileName,
5865 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866 name_len++; /* trailing null */
5867 name_len *= 2;
Steve French50c2f752007-07-13 00:33:32 +00005868 } else { /* BB improve the check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869 name_len = strnlen(fileName, PATH_MAX);
5870 name_len++; /* trailing null */
5871 strncpy(pSMB->FileName, fileName, name_len);
5872 }
5873
5874 params = 6 + name_len;
Steve French26f57362007-08-30 22:09:15 +00005875 count = sizeof(FILE_BASIC_INFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve French582d21e2008-05-13 04:54:12 +00005877 /* BB find max SMB PDU from sess structure BB */
5878 pSMB->MaxDataCount = cpu_to_le16(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879 pSMB->MaxSetupCount = 0;
5880 pSMB->Reserved = 0;
5881 pSMB->Flags = 0;
5882 pSMB->Timeout = 0;
5883 pSMB->Reserved2 = 0;
5884 param_offset = offsetof(struct smb_com_transaction2_spi_req,
Steve French50c2f752007-07-13 00:33:32 +00005885 InformationLevel) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886 offset = param_offset + params;
5887 data_offset = (char *) (&pSMB->hdr.Protocol) + offset;
5888 pSMB->ParameterOffset = cpu_to_le16(param_offset);
5889 pSMB->DataOffset = cpu_to_le16(offset);
5890 pSMB->SetupCount = 1;
5891 pSMB->Reserved3 = 0;
5892 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
5893 byte_count = 3 /* pad */ + params + count;
5894
5895 pSMB->DataCount = cpu_to_le16(count);
5896 pSMB->ParameterCount = cpu_to_le16(params);
5897 pSMB->TotalDataCount = pSMB->DataCount;
5898 pSMB->TotalParameterCount = pSMB->ParameterCount;
5899 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
5900 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_BASIC_INFO2);
5901 else
5902 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_BASIC_INFO);
5903 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00005904 inc_rfc1001_len(pSMB, byte_count);
Steve French26f57362007-08-30 22:09:15 +00005905 memcpy(data_offset, data, sizeof(FILE_BASIC_INFO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906 pSMB->ByteCount = cpu_to_le16(byte_count);
5907 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5908 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Steve Frenchad7a2922008-02-07 23:25:02 +00005909 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05005910 cifs_dbg(FYI, "SetPathInfo (times) returned %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911
5912 cifs_buf_release(pSMB);
5913
5914 if (rc == -EAGAIN)
5915 goto SetTimesRetry;
5916
5917 return rc;
5918}
5919
5920/* Can not be used to set time stamps yet (due to old DOS time format) */
5921/* Can be used to set attributes */
5922#if 0 /* Possibly not needed - since it turns out that strangely NT4 has a bug
5923 handling it anyway and NT4 was what we thought it would be needed for
5924 Do not delete it until we prove whether needed for Win9x though */
5925int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04005926CIFSSMBSetAttrLegacy(unsigned int xid, struct cifs_tcon *tcon, char *fileName,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927 __u16 dos_attrs, const struct nls_table *nls_codepage)
5928{
5929 SETATTR_REQ *pSMB = NULL;
5930 SETATTR_RSP *pSMBr = NULL;
5931 int rc = 0;
5932 int bytes_returned;
5933 int name_len;
5934
Joe Perchesf96637b2013-05-04 22:12:25 -05005935 cifs_dbg(FYI, "In SetAttrLegacy\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936
5937SetAttrLgcyRetry:
5938 rc = smb_init(SMB_COM_SETATTR, 8, tcon, (void **) &pSMB,
5939 (void **) &pSMBr);
5940 if (rc)
5941 return rc;
5942
5943 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
5944 name_len =
Steve Frenchacbbb762012-01-18 22:32:33 -06005945 ConvertToUTF16((__le16 *) pSMB->fileName, fileName,
5946 PATH_MAX, nls_codepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947 name_len++; /* trailing null */
5948 name_len *= 2;
Steve French50c2f752007-07-13 00:33:32 +00005949 } else { /* BB improve the check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950 name_len = strnlen(fileName, PATH_MAX);
5951 name_len++; /* trailing null */
5952 strncpy(pSMB->fileName, fileName, name_len);
5953 }
5954 pSMB->attr = cpu_to_le16(dos_attrs);
5955 pSMB->BufferFormat = 0x04;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00005956 inc_rfc1001_len(pSMB, name_len + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957 pSMB->ByteCount = cpu_to_le16(name_len + 1);
5958 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5959 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Steve Frenchad7a2922008-02-07 23:25:02 +00005960 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05005961 cifs_dbg(FYI, "Error in LegacySetAttr = %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962
5963 cifs_buf_release(pSMB);
5964
5965 if (rc == -EAGAIN)
5966 goto SetAttrLgcyRetry;
5967
5968 return rc;
5969}
5970#endif /* temporarily unneeded SetAttr legacy function */
5971
Jeff Layton654cf142009-07-09 20:02:49 -04005972static void
5973cifs_fill_unix_set_info(FILE_UNIX_BASIC_INFO *data_offset,
5974 const struct cifs_unix_set_info_args *args)
5975{
Eric W. Biederman49418b22013-02-06 00:57:56 -08005976 u64 uid = NO_CHANGE_64, gid = NO_CHANGE_64;
Jeff Layton654cf142009-07-09 20:02:49 -04005977 u64 mode = args->mode;
5978
Eric W. Biederman49418b22013-02-06 00:57:56 -08005979 if (uid_valid(args->uid))
5980 uid = from_kuid(&init_user_ns, args->uid);
5981 if (gid_valid(args->gid))
5982 gid = from_kgid(&init_user_ns, args->gid);
5983
Jeff Layton654cf142009-07-09 20:02:49 -04005984 /*
5985 * Samba server ignores set of file size to zero due to bugs in some
5986 * older clients, but we should be precise - we use SetFileSize to
5987 * set file size and do not want to truncate file size to zero
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005988 * accidentally as happened on one Samba server beta by putting
Jeff Layton654cf142009-07-09 20:02:49 -04005989 * zero instead of -1 here
5990 */
5991 data_offset->EndOfFile = cpu_to_le64(NO_CHANGE_64);
5992 data_offset->NumOfBytes = cpu_to_le64(NO_CHANGE_64);
5993 data_offset->LastStatusChange = cpu_to_le64(args->ctime);
5994 data_offset->LastAccessTime = cpu_to_le64(args->atime);
5995 data_offset->LastModificationTime = cpu_to_le64(args->mtime);
Eric W. Biederman49418b22013-02-06 00:57:56 -08005996 data_offset->Uid = cpu_to_le64(uid);
5997 data_offset->Gid = cpu_to_le64(gid);
Jeff Layton654cf142009-07-09 20:02:49 -04005998 /* better to leave device as zero when it is */
5999 data_offset->DevMajor = cpu_to_le64(MAJOR(args->device));
6000 data_offset->DevMinor = cpu_to_le64(MINOR(args->device));
6001 data_offset->Permissions = cpu_to_le64(mode);
6002
6003 if (S_ISREG(mode))
6004 data_offset->Type = cpu_to_le32(UNIX_FILE);
6005 else if (S_ISDIR(mode))
6006 data_offset->Type = cpu_to_le32(UNIX_DIR);
6007 else if (S_ISLNK(mode))
6008 data_offset->Type = cpu_to_le32(UNIX_SYMLINK);
6009 else if (S_ISCHR(mode))
6010 data_offset->Type = cpu_to_le32(UNIX_CHARDEV);
6011 else if (S_ISBLK(mode))
6012 data_offset->Type = cpu_to_le32(UNIX_BLOCKDEV);
6013 else if (S_ISFIFO(mode))
6014 data_offset->Type = cpu_to_le32(UNIX_FIFO);
6015 else if (S_ISSOCK(mode))
6016 data_offset->Type = cpu_to_le32(UNIX_SOCKET);
6017}
6018
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04006020CIFSSMBUnixSetFileInfo(const unsigned int xid, struct cifs_tcon *tcon,
Jeff Layton3bbeeb32009-07-09 20:02:50 -04006021 const struct cifs_unix_set_info_args *args,
6022 u16 fid, u32 pid_of_opener)
6023{
6024 struct smb_com_transaction2_sfi_req *pSMB = NULL;
Jeff Laytonb2a3ad92012-03-26 09:55:29 -04006025 char *data_offset;
Jeff Layton3bbeeb32009-07-09 20:02:50 -04006026 int rc = 0;
6027 u16 params, param_offset, offset, byte_count, count;
6028
Joe Perchesf96637b2013-05-04 22:12:25 -05006029 cifs_dbg(FYI, "Set Unix Info (via SetFileInfo)\n");
Jeff Layton3bbeeb32009-07-09 20:02:50 -04006030 rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB);
6031
6032 if (rc)
6033 return rc;
6034
6035 pSMB->hdr.Pid = cpu_to_le16((__u16)pid_of_opener);
6036 pSMB->hdr.PidHigh = cpu_to_le16((__u16)(pid_of_opener >> 16));
6037
6038 params = 6;
6039 pSMB->MaxSetupCount = 0;
6040 pSMB->Reserved = 0;
6041 pSMB->Flags = 0;
6042 pSMB->Timeout = 0;
6043 pSMB->Reserved2 = 0;
6044 param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4;
6045 offset = param_offset + params;
6046
Jeff Laytonb2a3ad92012-03-26 09:55:29 -04006047 data_offset = (char *)pSMB +
6048 offsetof(struct smb_hdr, Protocol) + offset;
6049
Jeff Layton3bbeeb32009-07-09 20:02:50 -04006050 count = sizeof(FILE_UNIX_BASIC_INFO);
6051
6052 pSMB->MaxParameterCount = cpu_to_le16(2);
6053 /* BB find max SMB PDU from sess */
6054 pSMB->MaxDataCount = cpu_to_le16(1000);
6055 pSMB->SetupCount = 1;
6056 pSMB->Reserved3 = 0;
6057 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION);
6058 byte_count = 3 /* pad */ + params + count;
6059 pSMB->DataCount = cpu_to_le16(count);
6060 pSMB->ParameterCount = cpu_to_le16(params);
6061 pSMB->TotalDataCount = pSMB->DataCount;
6062 pSMB->TotalParameterCount = pSMB->ParameterCount;
6063 pSMB->ParameterOffset = cpu_to_le16(param_offset);
6064 pSMB->DataOffset = cpu_to_le16(offset);
6065 pSMB->Fid = fid;
6066 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_UNIX_BASIC);
6067 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00006068 inc_rfc1001_len(pSMB, byte_count);
Jeff Layton3bbeeb32009-07-09 20:02:50 -04006069 pSMB->ByteCount = cpu_to_le16(byte_count);
6070
Jeff Laytonb2a3ad92012-03-26 09:55:29 -04006071 cifs_fill_unix_set_info((FILE_UNIX_BASIC_INFO *)data_offset, args);
Jeff Layton3bbeeb32009-07-09 20:02:50 -04006072
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04006073 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0);
Jeff Layton3bbeeb32009-07-09 20:02:50 -04006074 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05006075 cifs_dbg(FYI, "Send error in Set Time (SetFileInfo) = %d\n",
6076 rc);
Jeff Layton3bbeeb32009-07-09 20:02:50 -04006077
6078 /* Note: On -EAGAIN error only caller can retry on handle based calls
6079 since file handle passed in no longer valid */
6080
6081 return rc;
6082}
6083
6084int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04006085CIFSSMBUnixSetPathInfo(const unsigned int xid, struct cifs_tcon *tcon,
Pavel Shilovskyff691e92012-07-13 14:04:46 +04006086 const char *file_name,
Jeff Layton01ea95e2009-07-09 20:02:49 -04006087 const struct cifs_unix_set_info_args *args,
6088 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089{
6090 TRANSACTION2_SPI_REQ *pSMB = NULL;
6091 TRANSACTION2_SPI_RSP *pSMBr = NULL;
6092 int name_len;
6093 int rc = 0;
6094 int bytes_returned = 0;
6095 FILE_UNIX_BASIC_INFO *data_offset;
6096 __u16 params, param_offset, offset, count, byte_count;
6097
Joe Perchesf96637b2013-05-04 22:12:25 -05006098 cifs_dbg(FYI, "In SetUID/GID/Mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099setPermsRetry:
6100 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
6101 (void **) &pSMBr);
6102 if (rc)
6103 return rc;
6104
6105 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
6106 name_len =
Pavel Shilovskyff691e92012-07-13 14:04:46 +04006107 cifsConvertToUTF16((__le16 *) pSMB->FileName, file_name,
Steve Frenchacbbb762012-01-18 22:32:33 -06006108 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109 name_len++; /* trailing null */
6110 name_len *= 2;
Steve French3e87d802005-09-18 20:49:21 -07006111 } else { /* BB improve the check for buffer overruns BB */
Pavel Shilovskyff691e92012-07-13 14:04:46 +04006112 name_len = strnlen(file_name, PATH_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113 name_len++; /* trailing null */
Pavel Shilovskyff691e92012-07-13 14:04:46 +04006114 strncpy(pSMB->FileName, file_name, name_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115 }
6116
6117 params = 6 + name_len;
Steve French26f57362007-08-30 22:09:15 +00006118 count = sizeof(FILE_UNIX_BASIC_INFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve French582d21e2008-05-13 04:54:12 +00006120 /* BB find max SMB PDU from sess structure BB */
6121 pSMB->MaxDataCount = cpu_to_le16(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122 pSMB->MaxSetupCount = 0;
6123 pSMB->Reserved = 0;
6124 pSMB->Flags = 0;
6125 pSMB->Timeout = 0;
6126 pSMB->Reserved2 = 0;
6127 param_offset = offsetof(struct smb_com_transaction2_spi_req,
Steve French50c2f752007-07-13 00:33:32 +00006128 InformationLevel) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129 offset = param_offset + params;
6130 data_offset =
6131 (FILE_UNIX_BASIC_INFO *) ((char *) &pSMB->hdr.Protocol +
6132 offset);
6133 memset(data_offset, 0, count);
6134 pSMB->DataOffset = cpu_to_le16(offset);
6135 pSMB->ParameterOffset = cpu_to_le16(param_offset);
6136 pSMB->SetupCount = 1;
6137 pSMB->Reserved3 = 0;
6138 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
6139 byte_count = 3 /* pad */ + params + count;
6140 pSMB->ParameterCount = cpu_to_le16(params);
6141 pSMB->DataCount = cpu_to_le16(count);
6142 pSMB->TotalParameterCount = pSMB->ParameterCount;
6143 pSMB->TotalDataCount = pSMB->DataCount;
6144 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_UNIX_BASIC);
6145 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00006146 inc_rfc1001_len(pSMB, byte_count);
Steve French50c2f752007-07-13 00:33:32 +00006147
Jeff Layton654cf142009-07-09 20:02:49 -04006148 cifs_fill_unix_set_info(data_offset, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006149
6150 pSMB->ByteCount = cpu_to_le16(byte_count);
6151 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
6152 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Steve Frenchad7a2922008-02-07 23:25:02 +00006153 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05006154 cifs_dbg(FYI, "SetPathInfo (perms) returned %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006155
Steve French0d817bc2008-05-22 02:02:03 +00006156 cifs_buf_release(pSMB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006157 if (rc == -EAGAIN)
6158 goto setPermsRetry;
6159 return rc;
6160}
6161
Linus Torvalds1da177e2005-04-16 15:20:36 -07006162#ifdef CONFIG_CIFS_XATTR
Jeff Layton31c05192010-02-10 16:18:26 -05006163/*
6164 * Do a path-based QUERY_ALL_EAS call and parse the result. This is a common
6165 * function used by listxattr and getxattr type calls. When ea_name is set,
6166 * it looks for that attribute name and stuffs that value into the EAData
6167 * buffer. When ea_name is NULL, it stuffs a list of attribute names into the
6168 * buffer. In both cases, the return value is either the length of the
6169 * resulting data or a negative error code. If EAData is a NULL pointer then
6170 * the data isn't copied to it, but the length is returned.
6171 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006172ssize_t
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04006173CIFSSMBQAllEAs(const unsigned int xid, struct cifs_tcon *tcon,
Jeff Layton31c05192010-02-10 16:18:26 -05006174 const unsigned char *searchName, const unsigned char *ea_name,
6175 char *EAData, size_t buf_size,
6176 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006177{
6178 /* BB assumes one setup word */
6179 TRANSACTION2_QPI_REQ *pSMB = NULL;
6180 TRANSACTION2_QPI_RSP *pSMBr = NULL;
6181 int rc = 0;
6182 int bytes_returned;
Jeff Layton6e462b92010-02-10 16:18:26 -05006183 int list_len;
Jeff Laytonf0d38682010-02-10 16:18:26 -05006184 struct fealist *ea_response_data;
Steve French50c2f752007-07-13 00:33:32 +00006185 struct fea *temp_fea;
6186 char *temp_ptr;
Jeff Layton0cd126b2010-02-10 16:18:26 -05006187 char *end_of_smb;
Jeff Laytonf0d38682010-02-10 16:18:26 -05006188 __u16 params, byte_count, data_offset;
Jeff Layton5980fc92011-07-28 12:48:26 -04006189 unsigned int ea_name_len = ea_name ? strlen(ea_name) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190
Joe Perchesf96637b2013-05-04 22:12:25 -05006191 cifs_dbg(FYI, "In Query All EAs path %s\n", searchName);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192QAllEAsRetry:
6193 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
6194 (void **) &pSMBr);
6195 if (rc)
6196 return rc;
6197
6198 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
Jeff Layton6e462b92010-02-10 16:18:26 -05006199 list_len =
Steve Frenchacbbb762012-01-18 22:32:33 -06006200 cifsConvertToUTF16((__le16 *) pSMB->FileName, searchName,
6201 PATH_MAX, nls_codepage, remap);
Jeff Layton6e462b92010-02-10 16:18:26 -05006202 list_len++; /* trailing null */
6203 list_len *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204 } else { /* BB improve the check for buffer overruns BB */
Jeff Layton6e462b92010-02-10 16:18:26 -05006205 list_len = strnlen(searchName, PATH_MAX);
6206 list_len++; /* trailing null */
6207 strncpy(pSMB->FileName, searchName, list_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006208 }
6209
Jeff Layton6e462b92010-02-10 16:18:26 -05006210 params = 2 /* level */ + 4 /* reserved */ + list_len /* includes NUL */;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006211 pSMB->TotalDataCount = 0;
6212 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve French582d21e2008-05-13 04:54:12 +00006213 /* BB find exact max SMB PDU from sess structure BB */
Jeff Laytone5296142010-02-10 16:18:26 -05006214 pSMB->MaxDataCount = cpu_to_le16(CIFSMaxBufSize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215 pSMB->MaxSetupCount = 0;
6216 pSMB->Reserved = 0;
6217 pSMB->Flags = 0;
6218 pSMB->Timeout = 0;
6219 pSMB->Reserved2 = 0;
6220 pSMB->ParameterOffset = cpu_to_le16(offsetof(
Steve French50c2f752007-07-13 00:33:32 +00006221 struct smb_com_transaction2_qpi_req, InformationLevel) - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222 pSMB->DataCount = 0;
6223 pSMB->DataOffset = 0;
6224 pSMB->SetupCount = 1;
6225 pSMB->Reserved3 = 0;
6226 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
6227 byte_count = params + 1 /* pad */ ;
6228 pSMB->TotalParameterCount = cpu_to_le16(params);
6229 pSMB->ParameterCount = pSMB->TotalParameterCount;
6230 pSMB->InformationLevel = cpu_to_le16(SMB_INFO_QUERY_ALL_EAS);
6231 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00006232 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233 pSMB->ByteCount = cpu_to_le16(byte_count);
6234
6235 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
6236 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
6237 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05006238 cifs_dbg(FYI, "Send error in QueryAllEAs = %d\n", rc);
Jeff Laytonf0d38682010-02-10 16:18:26 -05006239 goto QAllEAsOut;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240 }
Jeff Laytonf0d38682010-02-10 16:18:26 -05006241
6242
6243 /* BB also check enough total bytes returned */
6244 /* BB we need to improve the validity checking
6245 of these trans2 responses */
6246
6247 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
Jeff Layton820a8032011-05-04 08:05:26 -04006248 if (rc || get_bcc(&pSMBr->hdr) < 4) {
Jeff Laytonf0d38682010-02-10 16:18:26 -05006249 rc = -EIO; /* bad smb */
6250 goto QAllEAsOut;
6251 }
6252
6253 /* check that length of list is not more than bcc */
6254 /* check that each entry does not go beyond length
6255 of list */
6256 /* check that each element of each entry does not
6257 go beyond end of list */
6258 /* validate_trans2_offsets() */
6259 /* BB check if start of smb + data_offset > &bcc+ bcc */
6260
6261 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
6262 ea_response_data = (struct fealist *)
6263 (((char *) &pSMBr->hdr.Protocol) + data_offset);
6264
Jeff Layton6e462b92010-02-10 16:18:26 -05006265 list_len = le32_to_cpu(ea_response_data->list_len);
Joe Perchesf96637b2013-05-04 22:12:25 -05006266 cifs_dbg(FYI, "ea length %d\n", list_len);
Jeff Layton6e462b92010-02-10 16:18:26 -05006267 if (list_len <= 8) {
Joe Perchesf96637b2013-05-04 22:12:25 -05006268 cifs_dbg(FYI, "empty EA list returned from server\n");
Steve French60977fc2014-03-25 19:46:36 -05006269 /* didn't find the named attribute */
6270 if (ea_name)
6271 rc = -ENODATA;
Jeff Laytonf0d38682010-02-10 16:18:26 -05006272 goto QAllEAsOut;
6273 }
6274
Jeff Layton0cd126b2010-02-10 16:18:26 -05006275 /* make sure list_len doesn't go past end of SMB */
Jeff Layton690c5222011-01-20 13:36:51 -05006276 end_of_smb = (char *)pByteArea(&pSMBr->hdr) + get_bcc(&pSMBr->hdr);
Jeff Layton0cd126b2010-02-10 16:18:26 -05006277 if ((char *)ea_response_data + list_len > end_of_smb) {
Joe Perchesf96637b2013-05-04 22:12:25 -05006278 cifs_dbg(FYI, "EA list appears to go beyond SMB\n");
Jeff Layton0cd126b2010-02-10 16:18:26 -05006279 rc = -EIO;
6280 goto QAllEAsOut;
6281 }
6282
Jeff Laytonf0d38682010-02-10 16:18:26 -05006283 /* account for ea list len */
Jeff Layton6e462b92010-02-10 16:18:26 -05006284 list_len -= 4;
Jeff Laytonf0d38682010-02-10 16:18:26 -05006285 temp_fea = ea_response_data->list;
6286 temp_ptr = (char *)temp_fea;
Jeff Layton6e462b92010-02-10 16:18:26 -05006287 while (list_len > 0) {
Steve French122ca002010-02-24 21:56:48 +00006288 unsigned int name_len;
Jeff Laytonf0d38682010-02-10 16:18:26 -05006289 __u16 value_len;
Jeff Layton0cd126b2010-02-10 16:18:26 -05006290
Jeff Layton6e462b92010-02-10 16:18:26 -05006291 list_len -= 4;
Jeff Laytonf0d38682010-02-10 16:18:26 -05006292 temp_ptr += 4;
Jeff Layton0cd126b2010-02-10 16:18:26 -05006293 /* make sure we can read name_len and value_len */
6294 if (list_len < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05006295 cifs_dbg(FYI, "EA entry goes beyond length of list\n");
Jeff Layton0cd126b2010-02-10 16:18:26 -05006296 rc = -EIO;
6297 goto QAllEAsOut;
6298 }
6299
6300 name_len = temp_fea->name_len;
6301 value_len = le16_to_cpu(temp_fea->value_len);
6302 list_len -= name_len + 1 + value_len;
6303 if (list_len < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -05006304 cifs_dbg(FYI, "EA entry goes beyond length of list\n");
Jeff Layton0cd126b2010-02-10 16:18:26 -05006305 rc = -EIO;
6306 goto QAllEAsOut;
6307 }
6308
Jeff Layton31c05192010-02-10 16:18:26 -05006309 if (ea_name) {
Jeff Layton91d065c2011-07-26 18:23:47 -04006310 if (ea_name_len == name_len &&
Jeff Laytonac423442011-10-11 06:41:32 -04006311 memcmp(ea_name, temp_ptr, name_len) == 0) {
Jeff Layton31c05192010-02-10 16:18:26 -05006312 temp_ptr += name_len + 1;
6313 rc = value_len;
6314 if (buf_size == 0)
6315 goto QAllEAsOut;
6316 if ((size_t)value_len > buf_size) {
6317 rc = -ERANGE;
6318 goto QAllEAsOut;
6319 }
6320 memcpy(EAData, temp_ptr, value_len);
6321 goto QAllEAsOut;
6322 }
Jeff Laytonf0d38682010-02-10 16:18:26 -05006323 } else {
Jeff Layton31c05192010-02-10 16:18:26 -05006324 /* account for prefix user. and trailing null */
6325 rc += (5 + 1 + name_len);
6326 if (rc < (int) buf_size) {
6327 memcpy(EAData, "user.", 5);
6328 EAData += 5;
6329 memcpy(EAData, temp_ptr, name_len);
6330 EAData += name_len;
6331 /* null terminate name */
6332 *EAData = 0;
6333 ++EAData;
6334 } else if (buf_size == 0) {
6335 /* skip copy - calc size only */
6336 } else {
6337 /* stop before overrun buffer */
6338 rc = -ERANGE;
6339 break;
6340 }
Jeff Laytonf0d38682010-02-10 16:18:26 -05006341 }
Jeff Layton0cd126b2010-02-10 16:18:26 -05006342 temp_ptr += name_len + 1 + value_len;
Jeff Laytonf0d38682010-02-10 16:18:26 -05006343 temp_fea = (struct fea *)temp_ptr;
6344 }
6345
Jeff Layton31c05192010-02-10 16:18:26 -05006346 /* didn't find the named attribute */
6347 if (ea_name)
6348 rc = -ENODATA;
6349
Jeff Laytonf0d38682010-02-10 16:18:26 -05006350QAllEAsOut:
Steve French0d817bc2008-05-22 02:02:03 +00006351 cifs_buf_release(pSMB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006352 if (rc == -EAGAIN)
6353 goto QAllEAsRetry;
6354
6355 return (ssize_t)rc;
6356}
6357
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358int
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04006359CIFSSMBSetEA(const unsigned int xid, struct cifs_tcon *tcon,
6360 const char *fileName, const char *ea_name, const void *ea_value,
Steve French50c2f752007-07-13 00:33:32 +00006361 const __u16 ea_value_len, const struct nls_table *nls_codepage,
6362 int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363{
6364 struct smb_com_transaction2_spi_req *pSMB = NULL;
6365 struct smb_com_transaction2_spi_rsp *pSMBr = NULL;
6366 struct fealist *parm_data;
6367 int name_len;
6368 int rc = 0;
6369 int bytes_returned = 0;
6370 __u16 params, param_offset, byte_count, offset, count;
6371
Joe Perchesf96637b2013-05-04 22:12:25 -05006372 cifs_dbg(FYI, "In SetEA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373SetEARetry:
6374 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
6375 (void **) &pSMBr);
6376 if (rc)
6377 return rc;
6378
6379 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
6380 name_len =
Steve Frenchacbbb762012-01-18 22:32:33 -06006381 cifsConvertToUTF16((__le16 *) pSMB->FileName, fileName,
6382 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383 name_len++; /* trailing null */
6384 name_len *= 2;
Steve French50c2f752007-07-13 00:33:32 +00006385 } else { /* BB improve the check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006386 name_len = strnlen(fileName, PATH_MAX);
6387 name_len++; /* trailing null */
6388 strncpy(pSMB->FileName, fileName, name_len);
6389 }
6390
6391 params = 6 + name_len;
6392
6393 /* done calculating parms using name_len of file name,
6394 now use name_len to calculate length of ea name
6395 we are going to create in the inode xattrs */
Steve French790fe572007-07-07 19:25:05 +00006396 if (ea_name == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006397 name_len = 0;
6398 else
Steve French50c2f752007-07-13 00:33:32 +00006399 name_len = strnlen(ea_name, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400
Steve Frenchdae5dbdb2007-12-30 23:49:57 +00006401 count = sizeof(*parm_data) + ea_value_len + name_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006402 pSMB->MaxParameterCount = cpu_to_le16(2);
Steve French582d21e2008-05-13 04:54:12 +00006403 /* BB find max SMB PDU from sess */
6404 pSMB->MaxDataCount = cpu_to_le16(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405 pSMB->MaxSetupCount = 0;
6406 pSMB->Reserved = 0;
6407 pSMB->Flags = 0;
6408 pSMB->Timeout = 0;
6409 pSMB->Reserved2 = 0;
6410 param_offset = offsetof(struct smb_com_transaction2_spi_req,
Steve French50c2f752007-07-13 00:33:32 +00006411 InformationLevel) - 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412 offset = param_offset + params;
6413 pSMB->InformationLevel =
6414 cpu_to_le16(SMB_SET_FILE_EA);
6415
6416 parm_data =
6417 (struct fealist *) (((char *) &pSMB->hdr.Protocol) +
6418 offset);
6419 pSMB->ParameterOffset = cpu_to_le16(param_offset);
6420 pSMB->DataOffset = cpu_to_le16(offset);
6421 pSMB->SetupCount = 1;
6422 pSMB->Reserved3 = 0;
6423 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
6424 byte_count = 3 /* pad */ + params + count;
6425 pSMB->DataCount = cpu_to_le16(count);
6426 parm_data->list_len = cpu_to_le32(count);
6427 parm_data->list[0].EA_flags = 0;
6428 /* we checked above that name len is less than 255 */
Alexey Dobriyan53b35312006-03-24 03:16:13 -08006429 parm_data->list[0].name_len = (__u8)name_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006430 /* EA names are always ASCII */
Steve French790fe572007-07-07 19:25:05 +00006431 if (ea_name)
Steve French50c2f752007-07-13 00:33:32 +00006432 strncpy(parm_data->list[0].name, ea_name, name_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433 parm_data->list[0].name[name_len] = 0;
6434 parm_data->list[0].value_len = cpu_to_le16(ea_value_len);
6435 /* caller ensures that ea_value_len is less than 64K but
6436 we need to ensure that it fits within the smb */
6437
Steve French50c2f752007-07-13 00:33:32 +00006438 /*BB add length check to see if it would fit in
6439 negotiated SMB buffer size BB */
Steve French790fe572007-07-07 19:25:05 +00006440 /* if (ea_value_len > buffer_size - 512 (enough for header)) */
6441 if (ea_value_len)
Steve French50c2f752007-07-13 00:33:32 +00006442 memcpy(parm_data->list[0].name+name_len+1,
6443 ea_value, ea_value_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006444
6445 pSMB->TotalDataCount = pSMB->DataCount;
6446 pSMB->ParameterCount = cpu_to_le16(params);
6447 pSMB->TotalParameterCount = pSMB->ParameterCount;
6448 pSMB->Reserved4 = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +00006449 inc_rfc1001_len(pSMB, byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450 pSMB->ByteCount = cpu_to_le16(byte_count);
6451 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
6452 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
Steve Frenchad7a2922008-02-07 23:25:02 +00006453 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05006454 cifs_dbg(FYI, "SetPathInfo (EA) returned %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455
6456 cifs_buf_release(pSMB);
6457
6458 if (rc == -EAGAIN)
6459 goto SetEARetry;
6460
6461 return rc;
6462}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006463#endif
Steve French0eff0e22011-02-24 05:39:23 +00006464
6465#ifdef CONFIG_CIFS_DNOTIFY_EXPERIMENTAL /* BB unused temporarily */
6466/*
6467 * Years ago the kernel added a "dnotify" function for Samba server,
6468 * to allow network clients (such as Windows) to display updated
6469 * lists of files in directory listings automatically when
6470 * files are added by one user when another user has the
6471 * same directory open on their desktop. The Linux cifs kernel
6472 * client hooked into the kernel side of this interface for
6473 * the same reason, but ironically when the VFS moved from
6474 * "dnotify" to "inotify" it became harder to plug in Linux
6475 * network file system clients (the most obvious use case
6476 * for notify interfaces is when multiple users can update
6477 * the contents of the same directory - exactly what network
6478 * file systems can do) although the server (Samba) could
6479 * still use it. For the short term we leave the worker
6480 * function ifdeffed out (below) until inotify is fixed
6481 * in the VFS to make it easier to plug in network file
6482 * system clients. If inotify turns out to be permanently
6483 * incompatible for network fs clients, we could instead simply
6484 * expose this config flag by adding a future cifs (and smb2) notify ioctl.
6485 */
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +04006486int CIFSSMBNotify(const unsigned int xid, struct cifs_tcon *tcon,
Steve French0eff0e22011-02-24 05:39:23 +00006487 const int notify_subdirs, const __u16 netfid,
6488 __u32 filter, struct file *pfile, int multishot,
6489 const struct nls_table *nls_codepage)
6490{
6491 int rc = 0;
6492 struct smb_com_transaction_change_notify_req *pSMB = NULL;
6493 struct smb_com_ntransaction_change_notify_rsp *pSMBr = NULL;
6494 struct dir_notify_req *dnotify_req;
6495 int bytes_returned;
6496
Joe Perchesf96637b2013-05-04 22:12:25 -05006497 cifs_dbg(FYI, "In CIFSSMBNotify for file handle %d\n", (int)netfid);
Steve French0eff0e22011-02-24 05:39:23 +00006498 rc = smb_init(SMB_COM_NT_TRANSACT, 23, tcon, (void **) &pSMB,
6499 (void **) &pSMBr);
6500 if (rc)
6501 return rc;
6502
6503 pSMB->TotalParameterCount = 0 ;
6504 pSMB->TotalDataCount = 0;
6505 pSMB->MaxParameterCount = cpu_to_le32(2);
Jeff Laytonc974bef2011-10-11 06:41:32 -04006506 pSMB->MaxDataCount = cpu_to_le32(CIFSMaxBufSize & 0xFFFFFF00);
Steve French0eff0e22011-02-24 05:39:23 +00006507 pSMB->MaxSetupCount = 4;
6508 pSMB->Reserved = 0;
6509 pSMB->ParameterOffset = 0;
6510 pSMB->DataCount = 0;
6511 pSMB->DataOffset = 0;
6512 pSMB->SetupCount = 4; /* single byte does not need le conversion */
6513 pSMB->SubCommand = cpu_to_le16(NT_TRANSACT_NOTIFY_CHANGE);
6514 pSMB->ParameterCount = pSMB->TotalParameterCount;
6515 if (notify_subdirs)
6516 pSMB->WatchTree = 1; /* one byte - no le conversion needed */
6517 pSMB->Reserved2 = 0;
6518 pSMB->CompletionFilter = cpu_to_le32(filter);
6519 pSMB->Fid = netfid; /* file handle always le */
6520 pSMB->ByteCount = 0;
6521
6522 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
6523 (struct smb_hdr *)pSMBr, &bytes_returned,
6524 CIFS_ASYNC_OP);
6525 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05006526 cifs_dbg(FYI, "Error in Notify = %d\n", rc);
Steve French0eff0e22011-02-24 05:39:23 +00006527 } else {
6528 /* Add file to outstanding requests */
6529 /* BB change to kmem cache alloc */
6530 dnotify_req = kmalloc(
6531 sizeof(struct dir_notify_req),
6532 GFP_KERNEL);
6533 if (dnotify_req) {
6534 dnotify_req->Pid = pSMB->hdr.Pid;
6535 dnotify_req->PidHigh = pSMB->hdr.PidHigh;
6536 dnotify_req->Mid = pSMB->hdr.Mid;
6537 dnotify_req->Tid = pSMB->hdr.Tid;
6538 dnotify_req->Uid = pSMB->hdr.Uid;
6539 dnotify_req->netfid = netfid;
6540 dnotify_req->pfile = pfile;
6541 dnotify_req->filter = filter;
6542 dnotify_req->multishot = multishot;
6543 spin_lock(&GlobalMid_Lock);
6544 list_add_tail(&dnotify_req->lhead,
6545 &GlobalDnotifyReqList);
6546 spin_unlock(&GlobalMid_Lock);
6547 } else
6548 rc = -ENOMEM;
6549 }
6550 cifs_buf_release(pSMB);
6551 return rc;
6552}
6553#endif /* was needed for dnotify, and will be needed for inotify when VFS fix */