blob: fbe651858c886c03304b94737e24eb40c6d9d546 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/cifssmb.c
3 *
4 * Copyright (C) International Business Machines Corp., 2002,2005
5 * 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 */
27 /* treated slightly different for reconnection purposes since we never want */
28 /* to reuse a stale file handle and the caller knows the file handle */
29
30#include <linux/fs.h>
31#include <linux/kernel.h>
32#include <linux/vfs.h>
33#include <linux/posix_acl_xattr.h>
34#include <asm/uaccess.h>
35#include "cifspdu.h"
36#include "cifsglob.h"
37#include "cifsproto.h"
38#include "cifs_unicode.h"
39#include "cifs_debug.h"
40
41#ifdef CONFIG_CIFS_POSIX
42static struct {
43 int index;
44 char *name;
45} protocols[] = {
46 {CIFS_PROT, "\2NT LM 0.12"},
47 {CIFS_PROT, "\2POSIX 2"},
48 {BAD_PROT, "\2"}
49};
50#else
51static struct {
52 int index;
53 char *name;
54} protocols[] = {
55 {CIFS_PROT, "\2NT LM 0.12"},
56 {BAD_PROT, "\2"}
57};
58#endif
59
60
61/* Mark as invalid, all open files on tree connections since they
62 were closed when session to server was lost */
63static void mark_open_files_invalid(struct cifsTconInfo * pTcon)
64{
65 struct cifsFileInfo *open_file = NULL;
66 struct list_head * tmp;
67 struct list_head * tmp1;
68
69/* list all files open on tree connection and mark them invalid */
70 write_lock(&GlobalSMBSeslock);
71 list_for_each_safe(tmp, tmp1, &pTcon->openFileList) {
72 open_file = list_entry(tmp,struct cifsFileInfo, tlist);
73 if(open_file) {
74 open_file->invalidHandle = TRUE;
75 }
76 }
77 write_unlock(&GlobalSMBSeslock);
Steve French09d1db52005-04-28 22:41:08 -070078 /* BB Add call to invalidate_inodes(sb) for all superblocks mounted
79 to this tcon */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
82/* If the return code is zero, this function must fill in request_buf pointer */
83static int
84small_smb_init(int smb_command, int wct, struct cifsTconInfo *tcon,
85 void **request_buf /* returned */)
86{
87 int rc = 0;
88
89 /* SMBs NegProt, SessSetup, uLogoff do not have tcon yet so
90 check for tcp and smb session status done differently
91 for those three - in the calling routine */
92 if(tcon) {
Steve French31ca3bc2005-04-28 22:41:11 -070093 if((tcon->ses) && (tcon->ses->status != CifsExiting) &&
94 (tcon->ses->server)){
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 struct nls_table *nls_codepage;
96 /* Give Demultiplex thread up to 10 seconds to
Steve French09d1db52005-04-28 22:41:08 -070097 reconnect, should be greater than cifs socket
98 timeout which is 7 seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 while(tcon->ses->server->tcpStatus == CifsNeedReconnect) {
100 wait_event_interruptible_timeout(tcon->ses->server->response_q,
101 (tcon->ses->server->tcpStatus == CifsGood), 10 * HZ);
102 if(tcon->ses->server->tcpStatus == CifsNeedReconnect) {
103 /* on "soft" mounts we wait once */
104 if((tcon->retry == FALSE) ||
105 (tcon->ses->status == CifsExiting)) {
106 cFYI(1,("gave up waiting on reconnect in smb_init"));
107 return -EHOSTDOWN;
Steve French09d1db52005-04-28 22:41:08 -0700108 } /* else "hard" mount - keep retrying
109 until process is killed or server
110 comes back on-line */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 } else /* TCP session is reestablished now */
112 break;
113
114 }
115
116 nls_codepage = load_nls_default();
117 /* need to prevent multiple threads trying to
118 simultaneously reconnect the same SMB session */
119 down(&tcon->ses->sesSem);
120 if(tcon->ses->status == CifsNeedReconnect)
Steve French09d1db52005-04-28 22:41:08 -0700121 rc = cifs_setup_session(0, tcon->ses,
122 nls_codepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if(!rc && (tcon->tidStatus == CifsNeedReconnect)) {
124 mark_open_files_invalid(tcon);
Steve French09d1db52005-04-28 22:41:08 -0700125 rc = CIFSTCon(0, tcon->ses, tcon->treeName, tcon
126 , nls_codepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 up(&tcon->ses->sesSem);
128 if(rc == 0)
129 atomic_inc(&tconInfoReconnectCount);
130
131 cFYI(1, ("reconnect tcon rc = %d", rc));
132 /* Removed call to reopen open files here -
Steve French09d1db52005-04-28 22:41:08 -0700133 it is safer (and faster) to reopen files
134 one at a time as needed in read and write */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 /* Check if handle based operation so we
Steve French09d1db52005-04-28 22:41:08 -0700137 know whether we can continue or not without
138 returning to caller to reset file handle */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 switch(smb_command) {
140 case SMB_COM_READ_ANDX:
141 case SMB_COM_WRITE_ANDX:
142 case SMB_COM_CLOSE:
143 case SMB_COM_FIND_CLOSE2:
144 case SMB_COM_LOCKING_ANDX: {
145 unload_nls(nls_codepage);
146 return -EAGAIN;
147 }
148 }
149 } else {
150 up(&tcon->ses->sesSem);
151 }
152 unload_nls(nls_codepage);
153
154 } else {
155 return -EIO;
156 }
157 }
158 if(rc)
159 return rc;
160
161 *request_buf = cifs_small_buf_get();
162 if (*request_buf == NULL) {
163 /* BB should we add a retry in here if not a writepage? */
164 return -ENOMEM;
165 }
166
167 header_assemble((struct smb_hdr *) *request_buf, smb_command, tcon,wct);
168
169#ifdef CONFIG_CIFS_STATS
170 if(tcon != NULL) {
171 atomic_inc(&tcon->num_smbs_sent);
172 }
173#endif /* CONFIG_CIFS_STATS */
174 return rc;
175}
176
177/* If the return code is zero, this function must fill in request_buf pointer */
178static int
179smb_init(int smb_command, int wct, struct cifsTconInfo *tcon,
180 void **request_buf /* returned */ ,
181 void **response_buf /* returned */ )
182{
183 int rc = 0;
184
185 /* SMBs NegProt, SessSetup, uLogoff do not have tcon yet so
186 check for tcp and smb session status done differently
187 for those three - in the calling routine */
188 if(tcon) {
Steve French31ca3bc2005-04-28 22:41:11 -0700189 if((tcon->ses) && (tcon->ses->status != CifsExiting) &&
190 (tcon->ses->server)){
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 struct nls_table *nls_codepage;
Steve French09d1db52005-04-28 22:41:08 -0700192 /* Give Demultiplex thread up to 10 seconds to
193 reconnect, should be greater than cifs socket
194 timeout which is 7 seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 while(tcon->ses->server->tcpStatus == CifsNeedReconnect) {
196 wait_event_interruptible_timeout(tcon->ses->server->response_q,
197 (tcon->ses->server->tcpStatus == CifsGood), 10 * HZ);
Steve French09d1db52005-04-28 22:41:08 -0700198 if(tcon->ses->server->tcpStatus ==
199 CifsNeedReconnect) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 /* on "soft" mounts we wait once */
201 if((tcon->retry == FALSE) ||
202 (tcon->ses->status == CifsExiting)) {
203 cFYI(1,("gave up waiting on reconnect in smb_init"));
204 return -EHOSTDOWN;
Steve French09d1db52005-04-28 22:41:08 -0700205 } /* else "hard" mount - keep retrying
206 until process is killed or server
207 comes on-line */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 } else /* TCP session is reestablished now */
209 break;
210
211 }
212
213 nls_codepage = load_nls_default();
214 /* need to prevent multiple threads trying to
215 simultaneously reconnect the same SMB session */
216 down(&tcon->ses->sesSem);
217 if(tcon->ses->status == CifsNeedReconnect)
Steve French09d1db52005-04-28 22:41:08 -0700218 rc = cifs_setup_session(0, tcon->ses,
219 nls_codepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if(!rc && (tcon->tidStatus == CifsNeedReconnect)) {
221 mark_open_files_invalid(tcon);
Steve French09d1db52005-04-28 22:41:08 -0700222 rc = CIFSTCon(0, tcon->ses, tcon->treeName,
223 tcon, nls_codepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 up(&tcon->ses->sesSem);
225 if(rc == 0)
226 atomic_inc(&tconInfoReconnectCount);
227
228 cFYI(1, ("reconnect tcon rc = %d", rc));
229 /* Removed call to reopen open files here -
Steve French09d1db52005-04-28 22:41:08 -0700230 it is safer (and faster) to reopen files
231 one at a time as needed in read and write */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 /* Check if handle based operation so we
Steve French09d1db52005-04-28 22:41:08 -0700234 know whether we can continue or not without
235 returning to caller to reset file handle */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 switch(smb_command) {
237 case SMB_COM_READ_ANDX:
238 case SMB_COM_WRITE_ANDX:
239 case SMB_COM_CLOSE:
240 case SMB_COM_FIND_CLOSE2:
241 case SMB_COM_LOCKING_ANDX: {
242 unload_nls(nls_codepage);
243 return -EAGAIN;
244 }
245 }
246 } else {
247 up(&tcon->ses->sesSem);
248 }
249 unload_nls(nls_codepage);
250
251 } else {
252 return -EIO;
253 }
254 }
255 if(rc)
256 return rc;
257
258 *request_buf = cifs_buf_get();
259 if (*request_buf == NULL) {
260 /* BB should we add a retry in here if not a writepage? */
261 return -ENOMEM;
262 }
263 /* Although the original thought was we needed the response buf for */
264 /* potential retries of smb operations it turns out we can determine */
265 /* from the mid flags when the request buffer can be resent without */
266 /* having to use a second distinct buffer for the response */
267 *response_buf = *request_buf;
268
269 header_assemble((struct smb_hdr *) *request_buf, smb_command, tcon,
270 wct /*wct */ );
271
272#ifdef CONFIG_CIFS_STATS
273 if(tcon != NULL) {
274 atomic_inc(&tcon->num_smbs_sent);
275 }
276#endif /* CONFIG_CIFS_STATS */
277 return rc;
278}
279
280static int validate_t2(struct smb_t2_rsp * pSMB)
281{
282 int rc = -EINVAL;
283 int total_size;
284 char * pBCC;
285
286 /* check for plausible wct, bcc and t2 data and parm sizes */
287 /* check for parm and data offset going beyond end of smb */
288 if(pSMB->hdr.WordCount >= 10) {
289 if((le16_to_cpu(pSMB->t2_rsp.ParameterOffset) <= 1024) &&
290 (le16_to_cpu(pSMB->t2_rsp.DataOffset) <= 1024)) {
291 /* check that bcc is at least as big as parms + data */
292 /* check that bcc is less than negotiated smb buffer */
293 total_size = le16_to_cpu(pSMB->t2_rsp.ParameterCount);
294 if(total_size < 512) {
295 total_size+=le16_to_cpu(pSMB->t2_rsp.DataCount);
296 /* BCC le converted in SendReceive */
Steve French09d1db52005-04-28 22:41:08 -0700297 pBCC = (pSMB->hdr.WordCount * 2) +
298 sizeof(struct smb_hdr) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 (char *)pSMB;
300 if((total_size <= (*(u16 *)pBCC)) &&
301 (total_size <
302 CIFSMaxBufSize+MAX_CIFS_HDR_SIZE)) {
303 return 0;
304 }
305
306 }
307 }
308 }
309 cifs_dump_mem("Invalid transact2 SMB: ",(char *)pSMB,
310 sizeof(struct smb_t2_rsp) + 16);
311 return rc;
312}
313int
314CIFSSMBNegotiate(unsigned int xid, struct cifsSesInfo *ses)
315{
316 NEGOTIATE_REQ *pSMB;
317 NEGOTIATE_RSP *pSMBr;
318 int rc = 0;
319 int bytes_returned;
320 struct TCP_Server_Info * server;
321 u16 count;
322
323 if(ses->server)
324 server = ses->server;
325 else {
326 rc = -EIO;
327 return rc;
328 }
329 rc = smb_init(SMB_COM_NEGOTIATE, 0, NULL /* no tcon yet */ ,
330 (void **) &pSMB, (void **) &pSMBr);
331 if (rc)
332 return rc;
333
334 pSMB->hdr.Flags2 |= SMBFLG2_UNICODE;
335 if (extended_security)
336 pSMB->hdr.Flags2 |= SMBFLG2_EXT_SEC;
337
338 count = strlen(protocols[0].name) + 1;
339 strncpy(pSMB->DialectsArray, protocols[0].name, 30);
340 /* null guaranteed to be at end of source and target buffers anyway */
341
342 pSMB->hdr.smb_buf_length += count;
343 pSMB->ByteCount = cpu_to_le16(count);
344
345 rc = SendReceive(xid, ses, (struct smb_hdr *) pSMB,
346 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
347 if (rc == 0) {
348 server->secMode = pSMBr->SecurityMode;
Steve French09d1db52005-04-28 22:41:08 -0700349 server->secType = NTLM; /* BB override default for
350 NTLMv2 or kerberos v5 */
351 /* one byte - no need to convert this or EncryptionKeyLen
352 from little endian */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 server->maxReq = le16_to_cpu(pSMBr->MaxMpxCount);
354 /* probably no need to store and check maxvcs */
355 server->maxBuf =
356 min(le32_to_cpu(pSMBr->MaxBufferSize),
357 (__u32) CIFSMaxBufSize + MAX_CIFS_HDR_SIZE);
358 server->maxRw = le32_to_cpu(pSMBr->MaxRawSize);
359 cFYI(0, ("Max buf = %d ", ses->server->maxBuf));
360 GETU32(ses->server->sessid) = le32_to_cpu(pSMBr->SessionKey);
361 server->capabilities = le32_to_cpu(pSMBr->Capabilities);
362 server->timeZone = le16_to_cpu(pSMBr->ServerTimeZone);
363 /* BB with UTC do we ever need to be using srvr timezone? */
364 if (pSMBr->EncryptionKeyLength == CIFS_CRYPTO_KEY_SIZE) {
365 memcpy(server->cryptKey, pSMBr->u.EncryptionKey,
366 CIFS_CRYPTO_KEY_SIZE);
367 } else if ((pSMBr->hdr.Flags2 & SMBFLG2_EXT_SEC)
368 && (pSMBr->EncryptionKeyLength == 0)) {
369 /* decode security blob */
370 } else
371 rc = -EIO;
372
373 /* BB might be helpful to save off the domain of server here */
374
375 if ((pSMBr->hdr.Flags2 & SMBFLG2_EXT_SEC) &&
376 (server->capabilities & CAP_EXTENDED_SECURITY)) {
377 count = pSMBr->ByteCount;
378 if (count < 16)
379 rc = -EIO;
380 else if (count == 16) {
381 server->secType = RawNTLMSSP;
382 if (server->socketUseCount.counter > 1) {
383 if (memcmp
384 (server->server_GUID,
385 pSMBr->u.extended_response.
386 GUID, 16) != 0) {
387 cFYI(1,
Steve French09d1db52005-04-28 22:41:08 -0700388 ("UID of server does not match previous connection to same ip address"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 memcpy(server->
390 server_GUID,
391 pSMBr->u.
392 extended_response.
393 GUID, 16);
394 }
395 } else
396 memcpy(server->server_GUID,
397 pSMBr->u.extended_response.
398 GUID, 16);
399 } else {
400 rc = decode_negTokenInit(pSMBr->u.
401 extended_response.
402 SecurityBlob,
403 count - 16,
404 &server->secType);
405 if(rc == 1) {
406 /* BB Need to fill struct for sessetup here */
407 rc = -EOPNOTSUPP;
408 } else {
409 rc = -EINVAL;
410 }
411 }
412 } else
413 server->capabilities &= ~CAP_EXTENDED_SECURITY;
414 if(sign_CIFS_PDUs == FALSE) {
415 if(server->secMode & SECMODE_SIGN_REQUIRED)
416 cERROR(1,
417 ("Server requires /proc/fs/cifs/PacketSigningEnabled"));
418 server->secMode &= ~(SECMODE_SIGN_ENABLED | SECMODE_SIGN_REQUIRED);
419 } else if(sign_CIFS_PDUs == 1) {
420 if((server->secMode & SECMODE_SIGN_REQUIRED) == 0)
421 server->secMode &= ~(SECMODE_SIGN_ENABLED | SECMODE_SIGN_REQUIRED);
422 }
423
424 }
425 if (pSMB)
426 cifs_buf_release(pSMB);
427 return rc;
428}
429
430int
431CIFSSMBTDis(const int xid, struct cifsTconInfo *tcon)
432{
433 struct smb_hdr *smb_buffer;
434 struct smb_hdr *smb_buffer_response; /* BB removeme BB */
435 int rc = 0;
436 int length;
437
438 cFYI(1, ("In tree disconnect"));
439 /*
440 * If last user of the connection and
441 * connection alive - disconnect it
442 * If this is the last connection on the server session disconnect it
443 * (and inside session disconnect we should check if tcp socket needs
444 * to be freed and kernel thread woken up).
445 */
446 if (tcon)
447 down(&tcon->tconSem);
448 else
449 return -EIO;
450
451 atomic_dec(&tcon->useCount);
452 if (atomic_read(&tcon->useCount) > 0) {
453 up(&tcon->tconSem);
454 return -EBUSY;
455 }
456
457 /* No need to return error on this operation if tid invalidated and
458 closed on server already e.g. due to tcp session crashing */
459 if(tcon->tidStatus == CifsNeedReconnect) {
460 up(&tcon->tconSem);
461 return 0;
462 }
463
464 if((tcon->ses == NULL) || (tcon->ses->server == NULL)) {
465 up(&tcon->tconSem);
466 return -EIO;
467 }
Steve French09d1db52005-04-28 22:41:08 -0700468 rc = small_smb_init(SMB_COM_TREE_DISCONNECT, 0, tcon,
469 (void **)&smb_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (rc) {
471 up(&tcon->tconSem);
472 return rc;
473 } else {
474 smb_buffer_response = smb_buffer; /* BB removeme BB */
Steve Frenchcd634992005-04-28 22:41:10 -0700475 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 rc = SendReceive(xid, tcon->ses, smb_buffer, smb_buffer_response,
477 &length, 0);
478 if (rc)
Steve French966ca922005-04-28 22:41:08 -0700479 cFYI(1, ("Tree disconnect failed %d", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 if (smb_buffer)
482 cifs_small_buf_release(smb_buffer);
483 up(&tcon->tconSem);
484
485 /* No need to return error on this operation if tid invalidated and
486 closed on server already e.g. due to tcp session crashing */
487 if (rc == -EAGAIN)
488 rc = 0;
489
490 return rc;
491}
492
493int
494CIFSSMBLogoff(const int xid, struct cifsSesInfo *ses)
495{
496 struct smb_hdr *smb_buffer_response;
497 LOGOFF_ANDX_REQ *pSMB;
498 int rc = 0;
499 int length;
500
501 cFYI(1, ("In SMBLogoff for session disconnect"));
502 if (ses)
503 down(&ses->sesSem);
504 else
505 return -EIO;
506
507 atomic_dec(&ses->inUse);
508 if (atomic_read(&ses->inUse) > 0) {
509 up(&ses->sesSem);
510 return -EBUSY;
511 }
512 rc = small_smb_init(SMB_COM_LOGOFF_ANDX, 2, NULL, (void **)&pSMB);
513 if (rc) {
514 up(&ses->sesSem);
515 return rc;
516 }
517
518 smb_buffer_response = (struct smb_hdr *)pSMB; /* BB removeme BB */
519
520 if(ses->server) {
521 if(ses->server->secMode &
522 (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED))
523 pSMB->hdr.Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
524 }
525
526 pSMB->hdr.Uid = ses->Suid;
527
528 pSMB->AndXCommand = 0xFF;
529 rc = SendReceive(xid, ses, (struct smb_hdr *) pSMB,
530 smb_buffer_response, &length, 0);
531 if (ses->server) {
532 atomic_dec(&ses->server->socketUseCount);
533 if (atomic_read(&ses->server->socketUseCount) == 0) {
534 spin_lock(&GlobalMid_Lock);
535 ses->server->tcpStatus = CifsExiting;
536 spin_unlock(&GlobalMid_Lock);
537 rc = -ESHUTDOWN;
538 }
539 }
540 if (pSMB)
541 cifs_small_buf_release(pSMB);
542 up(&ses->sesSem);
543
544 /* if session dead then we do not need to do ulogoff,
545 since server closed smb session, no sense reporting
546 error */
547 if (rc == -EAGAIN)
548 rc = 0;
549 return rc;
550}
551
552int
Steve French737b7582005-04-28 22:41:06 -0700553CIFSSMBDelFile(const int xid, struct cifsTconInfo *tcon, const char *fileName,
554 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
556 DELETE_FILE_REQ *pSMB = NULL;
557 DELETE_FILE_RSP *pSMBr = NULL;
558 int rc = 0;
559 int bytes_returned;
560 int name_len;
561
562DelFileRetry:
563 rc = smb_init(SMB_COM_DELETE, 1, tcon, (void **) &pSMB,
564 (void **) &pSMBr);
565 if (rc)
566 return rc;
567
568 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
569 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -0500570 cifsConvertToUCS((__le16 *) pSMB->fileName, fileName,
Steve French737b7582005-04-28 22:41:06 -0700571 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 name_len++; /* trailing null */
573 name_len *= 2;
Steve French09d1db52005-04-28 22:41:08 -0700574 } else { /* BB improve check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 name_len = strnlen(fileName, PATH_MAX);
576 name_len++; /* trailing null */
577 strncpy(pSMB->fileName, fileName, name_len);
578 }
579 pSMB->SearchAttributes =
580 cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM);
581 pSMB->BufferFormat = 0x04;
582 pSMB->hdr.smb_buf_length += name_len + 1;
583 pSMB->ByteCount = cpu_to_le16(name_len + 1);
584 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
585 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
586 if (rc) {
587 cFYI(1, ("Error in RMFile = %d", rc));
588 }
589#ifdef CONFIG_CIFS_STATS
590 else {
591 atomic_inc(&tcon->num_deletes);
592 }
593#endif
594
595 cifs_buf_release(pSMB);
596 if (rc == -EAGAIN)
597 goto DelFileRetry;
598
599 return rc;
600}
601
602int
Steve French737b7582005-04-28 22:41:06 -0700603CIFSSMBRmDir(const int xid, struct cifsTconInfo *tcon, const char *dirName,
604 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
606 DELETE_DIRECTORY_REQ *pSMB = NULL;
607 DELETE_DIRECTORY_RSP *pSMBr = NULL;
608 int rc = 0;
609 int bytes_returned;
610 int name_len;
611
612 cFYI(1, ("In CIFSSMBRmDir"));
613RmDirRetry:
614 rc = smb_init(SMB_COM_DELETE_DIRECTORY, 0, tcon, (void **) &pSMB,
615 (void **) &pSMBr);
616 if (rc)
617 return rc;
618
619 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
Steve French737b7582005-04-28 22:41:06 -0700620 name_len = cifsConvertToUCS((__le16 *) pSMB->DirName, dirName,
621 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 name_len++; /* trailing null */
623 name_len *= 2;
Steve French09d1db52005-04-28 22:41:08 -0700624 } else { /* BB improve check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 name_len = strnlen(dirName, PATH_MAX);
626 name_len++; /* trailing null */
627 strncpy(pSMB->DirName, dirName, name_len);
628 }
629
630 pSMB->BufferFormat = 0x04;
631 pSMB->hdr.smb_buf_length += name_len + 1;
632 pSMB->ByteCount = cpu_to_le16(name_len + 1);
633 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
634 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
635 if (rc) {
636 cFYI(1, ("Error in RMDir = %d", rc));
637 }
638#ifdef CONFIG_CIFS_STATS
639 else {
640 atomic_inc(&tcon->num_rmdirs);
641 }
642#endif
643
644 cifs_buf_release(pSMB);
645 if (rc == -EAGAIN)
646 goto RmDirRetry;
647 return rc;
648}
649
650int
651CIFSSMBMkDir(const int xid, struct cifsTconInfo *tcon,
Steve French737b7582005-04-28 22:41:06 -0700652 const char *name, const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
654 int rc = 0;
655 CREATE_DIRECTORY_REQ *pSMB = NULL;
656 CREATE_DIRECTORY_RSP *pSMBr = NULL;
657 int bytes_returned;
658 int name_len;
659
660 cFYI(1, ("In CIFSSMBMkDir"));
661MkDirRetry:
662 rc = smb_init(SMB_COM_CREATE_DIRECTORY, 0, tcon, (void **) &pSMB,
663 (void **) &pSMBr);
664 if (rc)
665 return rc;
666
667 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
Steve Frenchb1a45692005-05-17 16:07:23 -0500668 name_len = cifsConvertToUCS((__le16 *) pSMB->DirName, name,
Steve French737b7582005-04-28 22:41:06 -0700669 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 name_len++; /* trailing null */
671 name_len *= 2;
Steve French09d1db52005-04-28 22:41:08 -0700672 } else { /* BB improve check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 name_len = strnlen(name, PATH_MAX);
674 name_len++; /* trailing null */
675 strncpy(pSMB->DirName, name, name_len);
676 }
677
678 pSMB->BufferFormat = 0x04;
679 pSMB->hdr.smb_buf_length += name_len + 1;
680 pSMB->ByteCount = cpu_to_le16(name_len + 1);
681 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
682 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
683 if (rc) {
684 cFYI(1, ("Error in Mkdir = %d", rc));
685 }
686#ifdef CONFIG_CIFS_STATS
687 else {
688 atomic_inc(&tcon->num_mkdirs);
689 }
690#endif
691 cifs_buf_release(pSMB);
692 if (rc == -EAGAIN)
693 goto MkDirRetry;
694 return rc;
695}
696
697int
698CIFSSMBOpen(const int xid, struct cifsTconInfo *tcon,
699 const char *fileName, const int openDisposition,
700 const int access_flags, const int create_options, __u16 * netfid,
701 int *pOplock, FILE_ALL_INFO * pfile_info,
Steve French737b7582005-04-28 22:41:06 -0700702 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 int rc = -EACCES;
705 OPEN_REQ *pSMB = NULL;
706 OPEN_RSP *pSMBr = NULL;
707 int bytes_returned;
708 int name_len;
709 __u16 count;
710
711openRetry:
712 rc = smb_init(SMB_COM_NT_CREATE_ANDX, 24, tcon, (void **) &pSMB,
713 (void **) &pSMBr);
714 if (rc)
715 return rc;
716
717 pSMB->AndXCommand = 0xFF; /* none */
718
719 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
720 count = 1; /* account for one byte pad to word boundary */
721 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -0500722 cifsConvertToUCS((__le16 *) (pSMB->fileName + 1),
Steve French737b7582005-04-28 22:41:06 -0700723 fileName, PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 name_len++; /* trailing null */
725 name_len *= 2;
726 pSMB->NameLength = cpu_to_le16(name_len);
Steve French09d1db52005-04-28 22:41:08 -0700727 } else { /* BB improve check for buffer overruns BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 count = 0; /* no pad */
729 name_len = strnlen(fileName, PATH_MAX);
730 name_len++; /* trailing null */
731 pSMB->NameLength = cpu_to_le16(name_len);
732 strncpy(pSMB->fileName, fileName, name_len);
733 }
734 if (*pOplock & REQ_OPLOCK)
735 pSMB->OpenFlags = cpu_to_le32(REQ_OPLOCK);
736 else if (*pOplock & REQ_BATCHOPLOCK) {
737 pSMB->OpenFlags = cpu_to_le32(REQ_BATCHOPLOCK);
738 }
739 pSMB->DesiredAccess = cpu_to_le32(access_flags);
740 pSMB->AllocationSize = 0;
Steve Frencheda3c0292005-07-21 15:20:28 -0700741 /* set file as system file if special file such
742 as fifo and server expecting SFU style and
743 no Unix extensions */
744 if(create_options & CREATE_OPTION_SPECIAL)
745 pSMB->FileAttributes = cpu_to_le32(ATTR_SYSTEM);
746 else
747 pSMB->FileAttributes = cpu_to_le32(ATTR_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 /* XP does not handle ATTR_POSIX_SEMANTICS */
749 /* but it helps speed up case sensitive checks for other
750 servers such as Samba */
751 if (tcon->ses->capabilities & CAP_UNIX)
752 pSMB->FileAttributes |= cpu_to_le32(ATTR_POSIX_SEMANTICS);
753
754 /* if ((omode & S_IWUGO) == 0)
755 pSMB->FileAttributes |= cpu_to_le32(ATTR_READONLY);*/
756 /* Above line causes problems due to vfs splitting create into two
757 pieces - need to set mode after file created not while it is
758 being created */
759 pSMB->ShareAccess = cpu_to_le32(FILE_SHARE_ALL);
760 pSMB->CreateDisposition = cpu_to_le32(openDisposition);
Steve Frencheda3c0292005-07-21 15:20:28 -0700761 pSMB->CreateOptions = cpu_to_le32(create_options & CREATE_OPTIONS_MASK);
Steve French09d1db52005-04-28 22:41:08 -0700762 /* BB Expirement with various impersonation levels and verify */
763 pSMB->ImpersonationLevel = cpu_to_le32(SECURITY_IMPERSONATION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 pSMB->SecurityFlags =
765 SECURITY_CONTEXT_TRACKING | SECURITY_EFFECTIVE_ONLY;
766
767 count += name_len;
768 pSMB->hdr.smb_buf_length += count;
769
770 pSMB->ByteCount = cpu_to_le16(count);
771 /* long_op set to 1 to allow for oplock break timeouts */
772 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
773 (struct smb_hdr *) pSMBr, &bytes_returned, 1);
774 if (rc) {
775 cFYI(1, ("Error in Open = %d", rc));
776 } else {
Steve French09d1db52005-04-28 22:41:08 -0700777 *pOplock = pSMBr->OplockLevel; /* 1 byte no need to le_to_cpu */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 *netfid = pSMBr->Fid; /* cifs fid stays in le */
779 /* Let caller know file was created so we can set the mode. */
780 /* Do we care about the CreateAction in any other cases? */
781 if(cpu_to_le32(FILE_CREATE) == pSMBr->CreateAction)
782 *pOplock |= CIFS_CREATE_ACTION;
783 if(pfile_info) {
784 memcpy((char *)pfile_info,(char *)&pSMBr->CreationTime,
785 36 /* CreationTime to Attributes */);
786 /* the file_info buf is endian converted by caller */
787 pfile_info->AllocationSize = pSMBr->AllocationSize;
788 pfile_info->EndOfFile = pSMBr->EndOfFile;
789 pfile_info->NumberOfLinks = cpu_to_le32(1);
790 }
791
792#ifdef CONFIG_CIFS_STATS
793 atomic_inc(&tcon->num_opens);
794#endif
795 }
796 cifs_buf_release(pSMB);
797 if (rc == -EAGAIN)
798 goto openRetry;
799 return rc;
800}
801
802/* If no buffer passed in, then caller wants to do the copy
803 as in the case of readpages so the SMB buffer must be
804 freed by the caller */
805
806int
807CIFSSMBRead(const int xid, struct cifsTconInfo *tcon,
808 const int netfid, const unsigned int count,
809 const __u64 lseek, unsigned int *nbytes, char **buf)
810{
811 int rc = -EACCES;
812 READ_REQ *pSMB = NULL;
813 READ_RSP *pSMBr = NULL;
814 char *pReadData = NULL;
815 int bytes_returned;
816
817 cFYI(1,("Reading %d bytes on fid %d",count,netfid));
818
819 *nbytes = 0;
820 rc = smb_init(SMB_COM_READ_ANDX, 12, tcon, (void **) &pSMB,
821 (void **) &pSMBr);
822 if (rc)
823 return rc;
824
825 /* tcon and ses pointer are checked in smb_init */
826 if (tcon->ses->server == NULL)
827 return -ECONNABORTED;
828
829 pSMB->AndXCommand = 0xFF; /* none */
830 pSMB->Fid = netfid;
831 pSMB->OffsetLow = cpu_to_le32(lseek & 0xFFFFFFFF);
832 pSMB->OffsetHigh = cpu_to_le32(lseek >> 32);
833 pSMB->Remaining = 0;
834 pSMB->MaxCount = cpu_to_le16(count & 0xFFFF);
835 pSMB->MaxCountHigh = cpu_to_le32(count >> 16);
836 pSMB->ByteCount = 0; /* no need to do le conversion since it is 0 */
837
838 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
839 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
840 if (rc) {
841 cERROR(1, ("Send error in read = %d", rc));
842 } else {
843 int data_length = le16_to_cpu(pSMBr->DataLengthHigh);
844 data_length = data_length << 16;
845 data_length += le16_to_cpu(pSMBr->DataLength);
846 *nbytes = data_length;
847
848 /*check that DataLength would not go beyond end of SMB */
849 if ((data_length > CIFSMaxBufSize)
850 || (data_length > count)) {
851 cFYI(1,("bad length %d for count %d",data_length,count));
852 rc = -EIO;
853 *nbytes = 0;
854 } else {
855 pReadData =
856 (char *) (&pSMBr->hdr.Protocol) +
857 le16_to_cpu(pSMBr->DataOffset);
858/* if(rc = copy_to_user(buf, pReadData, data_length)) {
859 cERROR(1,("Faulting on read rc = %d",rc));
860 rc = -EFAULT;
861 }*/ /* can not use copy_to_user when using page cache*/
862 if(*buf)
863 memcpy(*buf,pReadData,data_length);
864 }
865 }
866 if(*buf)
867 cifs_buf_release(pSMB);
868 else
869 *buf = (char *)pSMB;
870
871 /* Note: On -EAGAIN error only caller can retry on handle based calls
872 since file handle passed in no longer valid */
873 return rc;
874}
875
876int
877CIFSSMBWrite(const int xid, struct cifsTconInfo *tcon,
878 const int netfid, const unsigned int count,
879 const __u64 offset, unsigned int *nbytes, const char *buf,
880 const char __user * ubuf, const int long_op)
881{
882 int rc = -EACCES;
883 WRITE_REQ *pSMB = NULL;
884 WRITE_RSP *pSMBr = NULL;
885 int bytes_returned;
886 __u32 bytes_sent;
887 __u16 byte_count;
888
889 /* cFYI(1,("write at %lld %d bytes",offset,count));*/
890 rc = smb_init(SMB_COM_WRITE_ANDX, 14, tcon, (void **) &pSMB,
891 (void **) &pSMBr);
892 if (rc)
893 return rc;
894 /* tcon and ses pointer are checked in smb_init */
895 if (tcon->ses->server == NULL)
896 return -ECONNABORTED;
897
898 pSMB->AndXCommand = 0xFF; /* none */
899 pSMB->Fid = netfid;
900 pSMB->OffsetLow = cpu_to_le32(offset & 0xFFFFFFFF);
901 pSMB->OffsetHigh = cpu_to_le32(offset >> 32);
902 pSMB->Reserved = 0xFFFFFFFF;
903 pSMB->WriteMode = 0;
904 pSMB->Remaining = 0;
905
906 /* Can increase buffer size if buffer is big enough in some cases - ie we
907 can send more if LARGE_WRITE_X capability returned by the server and if
908 our buffer is big enough or if we convert to iovecs on socket writes
909 and eliminate the copy to the CIFS buffer */
910 if(tcon->ses->capabilities & CAP_LARGE_WRITE_X) {
911 bytes_sent = min_t(const unsigned int, CIFSMaxBufSize, count);
912 } else {
913 bytes_sent = (tcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE)
914 & ~0xFF;
915 }
916
917 if (bytes_sent > count)
918 bytes_sent = count;
919 pSMB->DataOffset =
920 cpu_to_le16(offsetof(struct smb_com_write_req,Data) - 4);
921 if(buf)
922 memcpy(pSMB->Data,buf,bytes_sent);
923 else if(ubuf) {
924 if(copy_from_user(pSMB->Data,ubuf,bytes_sent)) {
925 cifs_buf_release(pSMB);
926 return -EFAULT;
927 }
928 } else {
929 /* No buffer */
930 cifs_buf_release(pSMB);
931 return -EINVAL;
932 }
933
934 byte_count = bytes_sent + 1 /* pad */ ; /* BB fix this for sends > 64K */
935 pSMB->DataLengthLow = cpu_to_le16(bytes_sent & 0xFFFF);
936 pSMB->DataLengthHigh = cpu_to_le16(bytes_sent >> 16);
937 pSMB->hdr.smb_buf_length += bytes_sent+1;
938 pSMB->ByteCount = cpu_to_le16(byte_count);
939
940 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
941 (struct smb_hdr *) pSMBr, &bytes_returned, long_op);
942 if (rc) {
943 cFYI(1, ("Send error in write = %d", rc));
944 *nbytes = 0;
945 } else {
946 *nbytes = le16_to_cpu(pSMBr->CountHigh);
947 *nbytes = (*nbytes) << 16;
948 *nbytes += le16_to_cpu(pSMBr->Count);
949 }
950
951 cifs_buf_release(pSMB);
952
953 /* Note: On -EAGAIN error only caller can retry on handle based calls
954 since file handle passed in no longer valid */
955
956 return rc;
957}
958
959#ifdef CONFIG_CIFS_EXPERIMENTAL
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500960int
961CIFSSMBWrite2(const int xid, struct cifsTconInfo *tcon,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 const int netfid, const unsigned int count,
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500963 const __u64 offset, unsigned int *nbytes, const char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 const int long_op)
965{
966 int rc = -EACCES;
967 WRITE_REQ *pSMB = NULL;
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500968 int bytes_returned;
969 int smb_hdr_len;
970 __u32 bytes_sent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 __u16 byte_count;
972
Steve French0c0ff092005-06-23 19:31:17 -0500973 cFYI(1,("write2 at %lld %d bytes",offset,count)); /* BB removeme BB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 rc = small_smb_init(SMB_COM_WRITE_ANDX, 14, tcon, (void **) &pSMB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (rc)
976 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 /* tcon and ses pointer are checked in smb_init */
978 if (tcon->ses->server == NULL)
979 return -ECONNABORTED;
980
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500981 pSMB->AndXCommand = 0xFF; /* none */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 pSMB->Fid = netfid;
983 pSMB->OffsetLow = cpu_to_le32(offset & 0xFFFFFFFF);
984 pSMB->OffsetHigh = cpu_to_le32(offset >> 32);
985 pSMB->Reserved = 0xFFFFFFFF;
986 pSMB->WriteMode = 0;
987 pSMB->Remaining = 0;
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500988
989 /* Can increase buffer size if buffer is big enough in some cases - ie
990 can send more if LARGE_WRITE_X capability returned by the server and if
991 our buffer is big enough or if we convert to iovecs on socket writes
992 and eliminate the copy to the CIFS buffer */
993 if(tcon->ses->capabilities & CAP_LARGE_WRITE_X) {
994 bytes_sent = min_t(const unsigned int, CIFSMaxBufSize, count);
995 } else {
996 bytes_sent = (tcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE)
997 & ~0xFF;
998 }
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (bytes_sent > count)
1001 bytes_sent = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 pSMB->DataOffset =
1003 cpu_to_le16(offsetof(struct smb_com_write_req,Data) - 4);
1004
Steve Frenchd6e04ae2005-06-13 13:24:43 -05001005 byte_count = bytes_sent + 1 /* pad */ ; /* BB fix this for sends > 64K */
1006 pSMB->DataLengthLow = cpu_to_le16(bytes_sent & 0xFFFF);
1007 pSMB->DataLengthHigh = cpu_to_le16(bytes_sent >> 16);
1008 smb_hdr_len = pSMB->hdr.smb_buf_length + 1; /* hdr + 1 byte pad */
1009 pSMB->hdr.smb_buf_length += bytes_sent+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 pSMB->ByteCount = cpu_to_le16(byte_count);
1011
Steve Frenchd6e04ae2005-06-13 13:24:43 -05001012 rc = SendReceive2(xid, tcon->ses, (struct smb_hdr *) pSMB, smb_hdr_len,
1013 buf, bytes_sent, &bytes_returned, long_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if (rc) {
Steve Frenchd6e04ae2005-06-13 13:24:43 -05001015 cFYI(1, ("Send error in write = %d", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 *nbytes = 0;
Steve Frenchd6e04ae2005-06-13 13:24:43 -05001017 } else {
1018 WRITE_RSP * pSMBr = (WRITE_RSP *)pSMB;
1019 *nbytes = le16_to_cpu(pSMBr->CountHigh);
1020 *nbytes = (*nbytes) << 16;
1021 *nbytes += le16_to_cpu(pSMBr->Count);
1022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
1024 cifs_small_buf_release(pSMB);
1025
1026 /* Note: On -EAGAIN error only caller can retry on handle based calls
1027 since file handle passed in no longer valid */
1028
1029 return rc;
1030}
Steve Frenchd6e04ae2005-06-13 13:24:43 -05001031
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033#endif /* CIFS_EXPERIMENTAL */
1034
1035int
1036CIFSSMBLock(const int xid, struct cifsTconInfo *tcon,
1037 const __u16 smb_file_id, const __u64 len,
1038 const __u64 offset, const __u32 numUnlock,
1039 const __u32 numLock, const __u8 lockType, const int waitFlag)
1040{
1041 int rc = 0;
1042 LOCK_REQ *pSMB = NULL;
1043 LOCK_RSP *pSMBr = NULL;
1044 int bytes_returned;
1045 int timeout = 0;
1046 __u16 count;
1047
1048 cFYI(1, ("In CIFSSMBLock - timeout %d numLock %d",waitFlag,numLock));
Steve French46810cb2005-04-28 22:41:09 -07001049 rc = small_smb_init(SMB_COM_LOCKING_ANDX, 8, tcon, (void **) &pSMB);
1050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 if (rc)
1052 return rc;
1053
Steve French46810cb2005-04-28 22:41:09 -07001054 pSMBr = (LOCK_RSP *)pSMB; /* BB removeme BB */
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if(lockType == LOCKING_ANDX_OPLOCK_RELEASE) {
1057 timeout = -1; /* no response expected */
1058 pSMB->Timeout = 0;
1059 } else if (waitFlag == TRUE) {
1060 timeout = 3; /* blocking operation, no timeout */
1061 pSMB->Timeout = cpu_to_le32(-1);/* blocking - do not time out */
1062 } else {
1063 pSMB->Timeout = 0;
1064 }
1065
1066 pSMB->NumberOfLocks = cpu_to_le16(numLock);
1067 pSMB->NumberOfUnlocks = cpu_to_le16(numUnlock);
1068 pSMB->LockType = lockType;
1069 pSMB->AndXCommand = 0xFF; /* none */
1070 pSMB->Fid = smb_file_id; /* netfid stays le */
1071
1072 if((numLock != 0) || (numUnlock != 0)) {
1073 pSMB->Locks[0].Pid = cpu_to_le16(current->tgid);
1074 /* BB where to store pid high? */
1075 pSMB->Locks[0].LengthLow = cpu_to_le32((u32)len);
1076 pSMB->Locks[0].LengthHigh = cpu_to_le32((u32)(len>>32));
1077 pSMB->Locks[0].OffsetLow = cpu_to_le32((u32)offset);
1078 pSMB->Locks[0].OffsetHigh = cpu_to_le32((u32)(offset>>32));
1079 count = sizeof(LOCKING_ANDX_RANGE);
1080 } else {
1081 /* oplock break */
1082 count = 0;
1083 }
1084 pSMB->hdr.smb_buf_length += count;
1085 pSMB->ByteCount = cpu_to_le16(count);
1086
1087 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
1088 (struct smb_hdr *) pSMBr, &bytes_returned, timeout);
1089
1090 if (rc) {
1091 cFYI(1, ("Send error in Lock = %d", rc));
1092 }
Steve French46810cb2005-04-28 22:41:09 -07001093 cifs_small_buf_release(pSMB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 /* Note: On -EAGAIN error only caller can retry on handle based calls
1096 since file handle passed in no longer valid */
1097 return rc;
1098}
1099
1100int
1101CIFSSMBClose(const int xid, struct cifsTconInfo *tcon, int smb_file_id)
1102{
1103 int rc = 0;
1104 CLOSE_REQ *pSMB = NULL;
1105 CLOSE_RSP *pSMBr = NULL;
1106 int bytes_returned;
1107 cFYI(1, ("In CIFSSMBClose"));
1108
1109/* do not retry on dead session on close */
1110 rc = small_smb_init(SMB_COM_CLOSE, 3, tcon, (void **) &pSMB);
1111 if(rc == -EAGAIN)
1112 return 0;
1113 if (rc)
1114 return rc;
1115
1116 pSMBr = (CLOSE_RSP *)pSMB; /* BB removeme BB */
1117
1118 pSMB->FileID = (__u16) smb_file_id;
1119 pSMB->LastWriteTime = 0;
1120 pSMB->ByteCount = 0;
1121 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
1122 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
1123 if (rc) {
1124 if(rc!=-EINTR) {
1125 /* EINTR is expected when user ctl-c to kill app */
1126 cERROR(1, ("Send error in Close = %d", rc));
1127 }
1128 }
1129
1130 cifs_small_buf_release(pSMB);
1131
1132 /* Since session is dead, file will be closed on server already */
1133 if(rc == -EAGAIN)
1134 rc = 0;
1135
1136 return rc;
1137}
1138
1139int
1140CIFSSMBRename(const int xid, struct cifsTconInfo *tcon,
1141 const char *fromName, const char *toName,
Steve French737b7582005-04-28 22:41:06 -07001142 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
1144 int rc = 0;
1145 RENAME_REQ *pSMB = NULL;
1146 RENAME_RSP *pSMBr = NULL;
1147 int bytes_returned;
1148 int name_len, name_len2;
1149 __u16 count;
1150
1151 cFYI(1, ("In CIFSSMBRename"));
1152renameRetry:
1153 rc = smb_init(SMB_COM_RENAME, 1, tcon, (void **) &pSMB,
1154 (void **) &pSMBr);
1155 if (rc)
1156 return rc;
1157
1158 pSMB->BufferFormat = 0x04;
1159 pSMB->SearchAttributes =
1160 cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM |
1161 ATTR_DIRECTORY);
1162
1163 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
1164 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05001165 cifsConvertToUCS((__le16 *) pSMB->OldFileName, fromName,
Steve French737b7582005-04-28 22:41:06 -07001166 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 name_len++; /* trailing null */
1168 name_len *= 2;
1169 pSMB->OldFileName[name_len] = 0x04; /* pad */
1170 /* protocol requires ASCII signature byte on Unicode string */
1171 pSMB->OldFileName[name_len + 1] = 0x00;
1172 name_len2 =
Steve Frenchb1a45692005-05-17 16:07:23 -05001173 cifsConvertToUCS((__le16 *) &pSMB->OldFileName[name_len + 2],
Steve French737b7582005-04-28 22:41:06 -07001174 toName, PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 name_len2 += 1 /* trailing null */ + 1 /* Signature word */ ;
1176 name_len2 *= 2; /* convert to bytes */
1177 } else { /* BB improve the check for buffer overruns BB */
1178 name_len = strnlen(fromName, PATH_MAX);
1179 name_len++; /* trailing null */
1180 strncpy(pSMB->OldFileName, fromName, name_len);
1181 name_len2 = strnlen(toName, PATH_MAX);
1182 name_len2++; /* trailing null */
1183 pSMB->OldFileName[name_len] = 0x04; /* 2nd buffer format */
1184 strncpy(&pSMB->OldFileName[name_len + 1], toName, name_len2);
1185 name_len2++; /* trailing null */
1186 name_len2++; /* signature byte */
1187 }
1188
1189 count = 1 /* 1st signature byte */ + name_len + name_len2;
1190 pSMB->hdr.smb_buf_length += count;
1191 pSMB->ByteCount = cpu_to_le16(count);
1192
1193 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
1194 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
1195 if (rc) {
1196 cFYI(1, ("Send error in rename = %d", rc));
1197 }
1198
1199#ifdef CONFIG_CIFS_STATS
1200 else {
1201 atomic_inc(&tcon->num_renames);
1202 }
1203#endif
1204
1205 cifs_buf_release(pSMB);
1206
1207 if (rc == -EAGAIN)
1208 goto renameRetry;
1209
1210 return rc;
1211}
1212
1213int CIFSSMBRenameOpenFile(const int xid,struct cifsTconInfo *pTcon,
Steve French737b7582005-04-28 22:41:06 -07001214 int netfid, char * target_name,
1215 const struct nls_table * nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
1217 struct smb_com_transaction2_sfi_req *pSMB = NULL;
1218 struct smb_com_transaction2_sfi_rsp *pSMBr = NULL;
1219 struct set_file_rename * rename_info;
1220 char *data_offset;
1221 char dummy_string[30];
1222 int rc = 0;
1223 int bytes_returned = 0;
1224 int len_of_str;
1225 __u16 params, param_offset, offset, count, byte_count;
1226
1227 cFYI(1, ("Rename to File by handle"));
1228 rc = smb_init(SMB_COM_TRANSACTION2, 15, pTcon, (void **) &pSMB,
1229 (void **) &pSMBr);
1230 if (rc)
1231 return rc;
1232
1233 params = 6;
1234 pSMB->MaxSetupCount = 0;
1235 pSMB->Reserved = 0;
1236 pSMB->Flags = 0;
1237 pSMB->Timeout = 0;
1238 pSMB->Reserved2 = 0;
1239 param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4;
1240 offset = param_offset + params;
1241
1242 data_offset = (char *) (&pSMB->hdr.Protocol) + offset;
1243 rename_info = (struct set_file_rename *) data_offset;
1244 pSMB->MaxParameterCount = cpu_to_le16(2);
1245 pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find max SMB PDU from sess */
1246 pSMB->SetupCount = 1;
1247 pSMB->Reserved3 = 0;
1248 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION);
1249 byte_count = 3 /* pad */ + params;
1250 pSMB->ParameterCount = cpu_to_le16(params);
1251 pSMB->TotalParameterCount = pSMB->ParameterCount;
1252 pSMB->ParameterOffset = cpu_to_le16(param_offset);
1253 pSMB->DataOffset = cpu_to_le16(offset);
1254 /* construct random name ".cifs_tmp<inodenum><mid>" */
1255 rename_info->overwrite = cpu_to_le32(1);
1256 rename_info->root_fid = 0;
1257 /* unicode only call */
1258 if(target_name == NULL) {
1259 sprintf(dummy_string,"cifs%x",pSMB->hdr.Mid);
Steve Frenchb1a45692005-05-17 16:07:23 -05001260 len_of_str = cifsConvertToUCS((__le16 *)rename_info->target_name,
Steve French737b7582005-04-28 22:41:06 -07001261 dummy_string, 24, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 } else {
Steve Frenchb1a45692005-05-17 16:07:23 -05001263 len_of_str = cifsConvertToUCS((__le16 *)rename_info->target_name,
Steve French737b7582005-04-28 22:41:06 -07001264 target_name, PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 }
1266 rename_info->target_name_len = cpu_to_le32(2 * len_of_str);
1267 count = 12 /* sizeof(struct set_file_rename) */ + (2 * len_of_str) + 2;
1268 byte_count += count;
1269 pSMB->DataCount = cpu_to_le16(count);
1270 pSMB->TotalDataCount = pSMB->DataCount;
1271 pSMB->Fid = netfid;
1272 pSMB->InformationLevel =
1273 cpu_to_le16(SMB_SET_FILE_RENAME_INFORMATION);
1274 pSMB->Reserved4 = 0;
1275 pSMB->hdr.smb_buf_length += byte_count;
1276 pSMB->ByteCount = cpu_to_le16(byte_count);
1277 rc = SendReceive(xid, pTcon->ses, (struct smb_hdr *) pSMB,
1278 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
1279 if (rc) {
1280 cFYI(1,("Send error in Rename (by file handle) = %d", rc));
1281 }
1282#ifdef CONFIG_CIFS_STATS
1283 else {
1284 atomic_inc(&pTcon->num_t2renames);
1285 }
1286#endif
1287 cifs_buf_release(pSMB);
1288
1289 /* Note: On -EAGAIN error only caller can retry on handle based calls
1290 since file handle passed in no longer valid */
1291
1292 return rc;
1293}
1294
1295int
1296CIFSSMBCopy(const int xid, struct cifsTconInfo *tcon, const char * fromName,
1297 const __u16 target_tid, const char *toName, const int flags,
Steve French737b7582005-04-28 22:41:06 -07001298 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
1300 int rc = 0;
1301 COPY_REQ *pSMB = NULL;
1302 COPY_RSP *pSMBr = NULL;
1303 int bytes_returned;
1304 int name_len, name_len2;
1305 __u16 count;
1306
1307 cFYI(1, ("In CIFSSMBCopy"));
1308copyRetry:
1309 rc = smb_init(SMB_COM_COPY, 1, tcon, (void **) &pSMB,
1310 (void **) &pSMBr);
1311 if (rc)
1312 return rc;
1313
1314 pSMB->BufferFormat = 0x04;
1315 pSMB->Tid2 = target_tid;
1316
1317 pSMB->Flags = cpu_to_le16(flags & COPY_TREE);
1318
1319 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
Steve Frenchb1a45692005-05-17 16:07:23 -05001320 name_len = cifsConvertToUCS((__le16 *) pSMB->OldFileName,
Steve French737b7582005-04-28 22:41:06 -07001321 fromName, PATH_MAX, nls_codepage,
1322 remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 name_len++; /* trailing null */
1324 name_len *= 2;
1325 pSMB->OldFileName[name_len] = 0x04; /* pad */
1326 /* protocol requires ASCII signature byte on Unicode string */
1327 pSMB->OldFileName[name_len + 1] = 0x00;
Steve Frenchb1a45692005-05-17 16:07:23 -05001328 name_len2 = cifsConvertToUCS((__le16 *)&pSMB->OldFileName[name_len + 2],
Steve French737b7582005-04-28 22:41:06 -07001329 toName, PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 name_len2 += 1 /* trailing null */ + 1 /* Signature word */ ;
1331 name_len2 *= 2; /* convert to bytes */
1332 } else { /* BB improve the check for buffer overruns BB */
1333 name_len = strnlen(fromName, PATH_MAX);
1334 name_len++; /* trailing null */
1335 strncpy(pSMB->OldFileName, fromName, name_len);
1336 name_len2 = strnlen(toName, PATH_MAX);
1337 name_len2++; /* trailing null */
1338 pSMB->OldFileName[name_len] = 0x04; /* 2nd buffer format */
1339 strncpy(&pSMB->OldFileName[name_len + 1], toName, name_len2);
1340 name_len2++; /* trailing null */
1341 name_len2++; /* signature byte */
1342 }
1343
1344 count = 1 /* 1st signature byte */ + name_len + name_len2;
1345 pSMB->hdr.smb_buf_length += count;
1346 pSMB->ByteCount = cpu_to_le16(count);
1347
1348 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
1349 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
1350 if (rc) {
1351 cFYI(1, ("Send error in copy = %d with %d files copied",
1352 rc, le16_to_cpu(pSMBr->CopyCount)));
1353 }
1354 if (pSMB)
1355 cifs_buf_release(pSMB);
1356
1357 if (rc == -EAGAIN)
1358 goto copyRetry;
1359
1360 return rc;
1361}
1362
1363int
1364CIFSUnixCreateSymLink(const int xid, struct cifsTconInfo *tcon,
1365 const char *fromName, const char *toName,
1366 const struct nls_table *nls_codepage)
1367{
1368 TRANSACTION2_SPI_REQ *pSMB = NULL;
1369 TRANSACTION2_SPI_RSP *pSMBr = NULL;
1370 char *data_offset;
1371 int name_len;
1372 int name_len_target;
1373 int rc = 0;
1374 int bytes_returned = 0;
1375 __u16 params, param_offset, offset, byte_count;
1376
1377 cFYI(1, ("In Symlink Unix style"));
1378createSymLinkRetry:
1379 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
1380 (void **) &pSMBr);
1381 if (rc)
1382 return rc;
1383
1384 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
1385 name_len =
1386 cifs_strtoUCS((wchar_t *) pSMB->FileName, fromName, PATH_MAX
1387 /* find define for this maxpathcomponent */
1388 , nls_codepage);
1389 name_len++; /* trailing null */
1390 name_len *= 2;
1391
1392 } else { /* BB improve the check for buffer overruns BB */
1393 name_len = strnlen(fromName, PATH_MAX);
1394 name_len++; /* trailing null */
1395 strncpy(pSMB->FileName, fromName, name_len);
1396 }
1397 params = 6 + name_len;
1398 pSMB->MaxSetupCount = 0;
1399 pSMB->Reserved = 0;
1400 pSMB->Flags = 0;
1401 pSMB->Timeout = 0;
1402 pSMB->Reserved2 = 0;
1403 param_offset = offsetof(struct smb_com_transaction2_spi_req,
1404 InformationLevel) - 4;
1405 offset = param_offset + params;
1406
1407 data_offset = (char *) (&pSMB->hdr.Protocol) + offset;
1408 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
1409 name_len_target =
1410 cifs_strtoUCS((wchar_t *) data_offset, toName, PATH_MAX
1411 /* find define for this maxpathcomponent */
1412 , nls_codepage);
1413 name_len_target++; /* trailing null */
1414 name_len_target *= 2;
1415 } else { /* BB improve the check for buffer overruns BB */
1416 name_len_target = strnlen(toName, PATH_MAX);
1417 name_len_target++; /* trailing null */
1418 strncpy(data_offset, toName, name_len_target);
1419 }
1420
1421 pSMB->MaxParameterCount = cpu_to_le16(2);
1422 /* BB find exact max on data count below from sess */
1423 pSMB->MaxDataCount = cpu_to_le16(1000);
1424 pSMB->SetupCount = 1;
1425 pSMB->Reserved3 = 0;
1426 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
1427 byte_count = 3 /* pad */ + params + name_len_target;
1428 pSMB->DataCount = cpu_to_le16(name_len_target);
1429 pSMB->ParameterCount = cpu_to_le16(params);
1430 pSMB->TotalDataCount = pSMB->DataCount;
1431 pSMB->TotalParameterCount = pSMB->ParameterCount;
1432 pSMB->ParameterOffset = cpu_to_le16(param_offset);
1433 pSMB->DataOffset = cpu_to_le16(offset);
1434 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_UNIX_LINK);
1435 pSMB->Reserved4 = 0;
1436 pSMB->hdr.smb_buf_length += byte_count;
1437 pSMB->ByteCount = cpu_to_le16(byte_count);
1438 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
1439 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
1440 if (rc) {
1441 cFYI(1,
1442 ("Send error in SetPathInfo (create symlink) = %d",
1443 rc));
1444 }
1445
1446 if (pSMB)
1447 cifs_buf_release(pSMB);
1448
1449 if (rc == -EAGAIN)
1450 goto createSymLinkRetry;
1451
1452 return rc;
1453}
1454
1455int
1456CIFSUnixCreateHardLink(const int xid, struct cifsTconInfo *tcon,
1457 const char *fromName, const char *toName,
Steve French737b7582005-04-28 22:41:06 -07001458 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459{
1460 TRANSACTION2_SPI_REQ *pSMB = NULL;
1461 TRANSACTION2_SPI_RSP *pSMBr = NULL;
1462 char *data_offset;
1463 int name_len;
1464 int name_len_target;
1465 int rc = 0;
1466 int bytes_returned = 0;
1467 __u16 params, param_offset, offset, byte_count;
1468
1469 cFYI(1, ("In Create Hard link Unix style"));
1470createHardLinkRetry:
1471 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
1472 (void **) &pSMBr);
1473 if (rc)
1474 return rc;
1475
1476 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
Steve Frenchb1a45692005-05-17 16:07:23 -05001477 name_len = cifsConvertToUCS((__le16 *) pSMB->FileName, toName,
Steve French737b7582005-04-28 22:41:06 -07001478 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 name_len++; /* trailing null */
1480 name_len *= 2;
1481
1482 } else { /* BB improve the check for buffer overruns BB */
1483 name_len = strnlen(toName, PATH_MAX);
1484 name_len++; /* trailing null */
1485 strncpy(pSMB->FileName, toName, name_len);
1486 }
1487 params = 6 + name_len;
1488 pSMB->MaxSetupCount = 0;
1489 pSMB->Reserved = 0;
1490 pSMB->Flags = 0;
1491 pSMB->Timeout = 0;
1492 pSMB->Reserved2 = 0;
1493 param_offset = offsetof(struct smb_com_transaction2_spi_req,
1494 InformationLevel) - 4;
1495 offset = param_offset + params;
1496
1497 data_offset = (char *) (&pSMB->hdr.Protocol) + offset;
1498 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
1499 name_len_target =
Steve Frenchb1a45692005-05-17 16:07:23 -05001500 cifsConvertToUCS((__le16 *) data_offset, fromName, PATH_MAX,
Steve French737b7582005-04-28 22:41:06 -07001501 nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 name_len_target++; /* trailing null */
1503 name_len_target *= 2;
1504 } else { /* BB improve the check for buffer overruns BB */
1505 name_len_target = strnlen(fromName, PATH_MAX);
1506 name_len_target++; /* trailing null */
1507 strncpy(data_offset, fromName, name_len_target);
1508 }
1509
1510 pSMB->MaxParameterCount = cpu_to_le16(2);
1511 /* BB find exact max on data count below from sess*/
1512 pSMB->MaxDataCount = cpu_to_le16(1000);
1513 pSMB->SetupCount = 1;
1514 pSMB->Reserved3 = 0;
1515 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
1516 byte_count = 3 /* pad */ + params + name_len_target;
1517 pSMB->ParameterCount = cpu_to_le16(params);
1518 pSMB->TotalParameterCount = pSMB->ParameterCount;
1519 pSMB->DataCount = cpu_to_le16(name_len_target);
1520 pSMB->TotalDataCount = pSMB->DataCount;
1521 pSMB->ParameterOffset = cpu_to_le16(param_offset);
1522 pSMB->DataOffset = cpu_to_le16(offset);
1523 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_UNIX_HLINK);
1524 pSMB->Reserved4 = 0;
1525 pSMB->hdr.smb_buf_length += byte_count;
1526 pSMB->ByteCount = cpu_to_le16(byte_count);
1527 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
1528 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
1529 if (rc) {
1530 cFYI(1, ("Send error in SetPathInfo (hard link) = %d", rc));
1531 }
1532
1533 cifs_buf_release(pSMB);
1534 if (rc == -EAGAIN)
1535 goto createHardLinkRetry;
1536
1537 return rc;
1538}
1539
1540int
1541CIFSCreateHardLink(const int xid, struct cifsTconInfo *tcon,
1542 const char *fromName, const char *toName,
Steve French737b7582005-04-28 22:41:06 -07001543 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
1545 int rc = 0;
1546 NT_RENAME_REQ *pSMB = NULL;
1547 RENAME_RSP *pSMBr = NULL;
1548 int bytes_returned;
1549 int name_len, name_len2;
1550 __u16 count;
1551
1552 cFYI(1, ("In CIFSCreateHardLink"));
1553winCreateHardLinkRetry:
1554
1555 rc = smb_init(SMB_COM_NT_RENAME, 4, tcon, (void **) &pSMB,
1556 (void **) &pSMBr);
1557 if (rc)
1558 return rc;
1559
1560 pSMB->SearchAttributes =
1561 cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM |
1562 ATTR_DIRECTORY);
1563 pSMB->Flags = cpu_to_le16(CREATE_HARD_LINK);
1564 pSMB->ClusterCount = 0;
1565
1566 pSMB->BufferFormat = 0x04;
1567
1568 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
1569 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05001570 cifsConvertToUCS((__le16 *) pSMB->OldFileName, fromName,
Steve French737b7582005-04-28 22:41:06 -07001571 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 name_len++; /* trailing null */
1573 name_len *= 2;
1574 pSMB->OldFileName[name_len] = 0; /* pad */
1575 pSMB->OldFileName[name_len + 1] = 0x04;
1576 name_len2 =
Steve Frenchb1a45692005-05-17 16:07:23 -05001577 cifsConvertToUCS((__le16 *)&pSMB->OldFileName[name_len + 2],
Steve French737b7582005-04-28 22:41:06 -07001578 toName, PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 name_len2 += 1 /* trailing null */ + 1 /* Signature word */ ;
1580 name_len2 *= 2; /* convert to bytes */
1581 } else { /* BB improve the check for buffer overruns BB */
1582 name_len = strnlen(fromName, PATH_MAX);
1583 name_len++; /* trailing null */
1584 strncpy(pSMB->OldFileName, fromName, name_len);
1585 name_len2 = strnlen(toName, PATH_MAX);
1586 name_len2++; /* trailing null */
1587 pSMB->OldFileName[name_len] = 0x04; /* 2nd buffer format */
1588 strncpy(&pSMB->OldFileName[name_len + 1], toName, name_len2);
1589 name_len2++; /* trailing null */
1590 name_len2++; /* signature byte */
1591 }
1592
1593 count = 1 /* string type byte */ + name_len + name_len2;
1594 pSMB->hdr.smb_buf_length += count;
1595 pSMB->ByteCount = cpu_to_le16(count);
1596
1597 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
1598 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
1599 if (rc) {
1600 cFYI(1, ("Send error in hard link (NT rename) = %d", rc));
1601 }
1602 cifs_buf_release(pSMB);
1603 if (rc == -EAGAIN)
1604 goto winCreateHardLinkRetry;
1605
1606 return rc;
1607}
1608
1609int
1610CIFSSMBUnixQuerySymLink(const int xid, struct cifsTconInfo *tcon,
1611 const unsigned char *searchName,
1612 char *symlinkinfo, const int buflen,
1613 const struct nls_table *nls_codepage)
1614{
1615/* SMB_QUERY_FILE_UNIX_LINK */
1616 TRANSACTION2_QPI_REQ *pSMB = NULL;
1617 TRANSACTION2_QPI_RSP *pSMBr = NULL;
1618 int rc = 0;
1619 int bytes_returned;
1620 int name_len;
1621 __u16 params, byte_count;
1622
1623 cFYI(1, ("In QPathSymLinkInfo (Unix) for path %s", searchName));
1624
1625querySymLinkRetry:
1626 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
1627 (void **) &pSMBr);
1628 if (rc)
1629 return rc;
1630
1631 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
1632 name_len =
1633 cifs_strtoUCS((wchar_t *) pSMB->FileName, searchName, PATH_MAX
1634 /* find define for this maxpathcomponent */
1635 , nls_codepage);
1636 name_len++; /* trailing null */
1637 name_len *= 2;
1638 } else { /* BB improve the check for buffer overruns BB */
1639 name_len = strnlen(searchName, PATH_MAX);
1640 name_len++; /* trailing null */
1641 strncpy(pSMB->FileName, searchName, name_len);
1642 }
1643
1644 params = 2 /* level */ + 4 /* rsrvd */ + name_len /* incl null */ ;
1645 pSMB->TotalDataCount = 0;
1646 pSMB->MaxParameterCount = cpu_to_le16(2);
1647 /* BB find exact max data count below from sess structure BB */
1648 pSMB->MaxDataCount = cpu_to_le16(4000);
1649 pSMB->MaxSetupCount = 0;
1650 pSMB->Reserved = 0;
1651 pSMB->Flags = 0;
1652 pSMB->Timeout = 0;
1653 pSMB->Reserved2 = 0;
1654 pSMB->ParameterOffset = cpu_to_le16(offsetof(
1655 struct smb_com_transaction2_qpi_req ,InformationLevel) - 4);
1656 pSMB->DataCount = 0;
1657 pSMB->DataOffset = 0;
1658 pSMB->SetupCount = 1;
1659 pSMB->Reserved3 = 0;
1660 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
1661 byte_count = params + 1 /* pad */ ;
1662 pSMB->TotalParameterCount = cpu_to_le16(params);
1663 pSMB->ParameterCount = pSMB->TotalParameterCount;
1664 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_UNIX_LINK);
1665 pSMB->Reserved4 = 0;
1666 pSMB->hdr.smb_buf_length += byte_count;
1667 pSMB->ByteCount = cpu_to_le16(byte_count);
1668
1669 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
1670 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
1671 if (rc) {
1672 cFYI(1, ("Send error in QuerySymLinkInfo = %d", rc));
1673 } else {
1674 /* decode response */
1675
1676 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
1677 if (rc || (pSMBr->ByteCount < 2))
1678 /* BB also check enough total bytes returned */
1679 rc = -EIO; /* bad smb */
1680 else {
1681 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
1682 __u16 count = le16_to_cpu(pSMBr->t2.DataCount);
1683
1684 if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE) {
1685 name_len = UniStrnlen((wchar_t *) ((char *)
1686 &pSMBr->hdr.Protocol +data_offset),
1687 min_t(const int, buflen,count) / 2);
Steve French737b7582005-04-28 22:41:06 -07001688 /* BB FIXME investigate remapping reserved chars here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 cifs_strfromUCS_le(symlinkinfo,
1690 (wchar_t *) ((char *)&pSMBr->hdr.Protocol +
1691 data_offset),
1692 name_len, nls_codepage);
1693 } else {
1694 strncpy(symlinkinfo,
1695 (char *) &pSMBr->hdr.Protocol +
1696 data_offset,
1697 min_t(const int, buflen, count));
1698 }
1699 symlinkinfo[buflen] = 0;
1700 /* just in case so calling code does not go off the end of buffer */
1701 }
1702 }
1703 cifs_buf_release(pSMB);
1704 if (rc == -EAGAIN)
1705 goto querySymLinkRetry;
1706 return rc;
1707}
1708
1709int
1710CIFSSMBQueryReparseLinkInfo(const int xid, struct cifsTconInfo *tcon,
1711 const unsigned char *searchName,
1712 char *symlinkinfo, const int buflen,__u16 fid,
1713 const struct nls_table *nls_codepage)
1714{
1715 int rc = 0;
1716 int bytes_returned;
1717 int name_len;
1718 struct smb_com_transaction_ioctl_req * pSMB;
1719 struct smb_com_transaction_ioctl_rsp * pSMBr;
1720
1721 cFYI(1, ("In Windows reparse style QueryLink for path %s", searchName));
1722 rc = smb_init(SMB_COM_NT_TRANSACT, 23, tcon, (void **) &pSMB,
1723 (void **) &pSMBr);
1724 if (rc)
1725 return rc;
1726
1727 pSMB->TotalParameterCount = 0 ;
1728 pSMB->TotalDataCount = 0;
1729 pSMB->MaxParameterCount = cpu_to_le32(2);
1730 /* BB find exact data count max from sess structure BB */
1731 pSMB->MaxDataCount = cpu_to_le32(4000);
1732 pSMB->MaxSetupCount = 4;
1733 pSMB->Reserved = 0;
1734 pSMB->ParameterOffset = 0;
1735 pSMB->DataCount = 0;
1736 pSMB->DataOffset = 0;
1737 pSMB->SetupCount = 4;
1738 pSMB->SubCommand = cpu_to_le16(NT_TRANSACT_IOCTL);
1739 pSMB->ParameterCount = pSMB->TotalParameterCount;
1740 pSMB->FunctionCode = cpu_to_le32(FSCTL_GET_REPARSE_POINT);
1741 pSMB->IsFsctl = 1; /* FSCTL */
1742 pSMB->IsRootFlag = 0;
1743 pSMB->Fid = fid; /* file handle always le */
1744 pSMB->ByteCount = 0;
1745
1746 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
1747 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
1748 if (rc) {
1749 cFYI(1, ("Send error in QueryReparseLinkInfo = %d", rc));
1750 } else { /* decode response */
1751 __u32 data_offset = le32_to_cpu(pSMBr->DataOffset);
1752 __u32 data_count = le32_to_cpu(pSMBr->DataCount);
1753 if ((pSMBr->ByteCount < 2) || (data_offset > 512))
1754 /* BB also check enough total bytes returned */
1755 rc = -EIO; /* bad smb */
1756 else {
1757 if(data_count && (data_count < 2048)) {
1758 char * end_of_smb = pSMBr->ByteCount + (char *)&pSMBr->ByteCount;
1759
1760 struct reparse_data * reparse_buf = (struct reparse_data *)
1761 ((char *)&pSMBr->hdr.Protocol + data_offset);
1762 if((char*)reparse_buf >= end_of_smb) {
1763 rc = -EIO;
1764 goto qreparse_out;
1765 }
1766 if((reparse_buf->LinkNamesBuf +
1767 reparse_buf->TargetNameOffset +
1768 reparse_buf->TargetNameLen) >
1769 end_of_smb) {
1770 cFYI(1,("reparse buf extended beyond SMB"));
1771 rc = -EIO;
1772 goto qreparse_out;
1773 }
1774
1775 if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE) {
1776 name_len = UniStrnlen((wchar_t *)
1777 (reparse_buf->LinkNamesBuf +
1778 reparse_buf->TargetNameOffset),
1779 min(buflen/2, reparse_buf->TargetNameLen / 2));
1780 cifs_strfromUCS_le(symlinkinfo,
1781 (wchar_t *) (reparse_buf->LinkNamesBuf +
1782 reparse_buf->TargetNameOffset),
1783 name_len, nls_codepage);
1784 } else { /* ASCII names */
1785 strncpy(symlinkinfo,reparse_buf->LinkNamesBuf +
1786 reparse_buf->TargetNameOffset,
1787 min_t(const int, buflen, reparse_buf->TargetNameLen));
1788 }
1789 } else {
1790 rc = -EIO;
1791 cFYI(1,("Invalid return data count on get reparse info ioctl"));
1792 }
1793 symlinkinfo[buflen] = 0; /* just in case so the caller
1794 does not go off the end of the buffer */
1795 cFYI(1,("readlink result - %s ",symlinkinfo));
1796 }
1797 }
1798qreparse_out:
1799 if (pSMB)
1800 cifs_buf_release(pSMB);
1801
1802 /* Note: On -EAGAIN error only caller can retry on handle based calls
1803 since file handle passed in no longer valid */
1804
1805 return rc;
1806}
1807
1808#ifdef CONFIG_CIFS_POSIX
1809
1810/*Convert an Access Control Entry from wire format to local POSIX xattr format*/
1811static void cifs_convert_ace(posix_acl_xattr_entry * ace, struct cifs_posix_ace * cifs_ace)
1812{
1813 /* u8 cifs fields do not need le conversion */
1814 ace->e_perm = (__u16)cifs_ace->cifs_e_perm;
1815 ace->e_tag = (__u16)cifs_ace->cifs_e_tag;
1816 ace->e_id = (__u32)le64_to_cpu(cifs_ace->cifs_uid);
1817 /* cFYI(1,("perm %d tag %d id %d",ace->e_perm,ace->e_tag,ace->e_id)); */
1818
1819 return;
1820}
1821
1822/* Convert ACL from CIFS POSIX wire format to local Linux POSIX ACL xattr */
Steve French737b7582005-04-28 22:41:06 -07001823static int cifs_copy_posix_acl(char * trgt,char * src, const int buflen,
1824 const int acl_type,const int size_of_data_area)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825{
1826 int size = 0;
1827 int i;
1828 __u16 count;
1829 struct cifs_posix_ace * pACE;
1830 struct cifs_posix_acl * cifs_acl = (struct cifs_posix_acl *)src;
1831 posix_acl_xattr_header * local_acl = (posix_acl_xattr_header *)trgt;
1832
1833 if (le16_to_cpu(cifs_acl->version) != CIFS_ACL_VERSION)
1834 return -EOPNOTSUPP;
1835
1836 if(acl_type & ACL_TYPE_ACCESS) {
1837 count = le16_to_cpu(cifs_acl->access_entry_count);
1838 pACE = &cifs_acl->ace_array[0];
1839 size = sizeof(struct cifs_posix_acl);
1840 size += sizeof(struct cifs_posix_ace) * count;
1841 /* check if we would go beyond end of SMB */
1842 if(size_of_data_area < size) {
1843 cFYI(1,("bad CIFS POSIX ACL size %d vs. %d",size_of_data_area,size));
1844 return -EINVAL;
1845 }
1846 } else if(acl_type & ACL_TYPE_DEFAULT) {
1847 count = le16_to_cpu(cifs_acl->access_entry_count);
1848 size = sizeof(struct cifs_posix_acl);
1849 size += sizeof(struct cifs_posix_ace) * count;
1850/* skip past access ACEs to get to default ACEs */
1851 pACE = &cifs_acl->ace_array[count];
1852 count = le16_to_cpu(cifs_acl->default_entry_count);
1853 size += sizeof(struct cifs_posix_ace) * count;
1854 /* check if we would go beyond end of SMB */
1855 if(size_of_data_area < size)
1856 return -EINVAL;
1857 } else {
1858 /* illegal type */
1859 return -EINVAL;
1860 }
1861
1862 size = posix_acl_xattr_size(count);
1863 if((buflen == 0) || (local_acl == NULL)) {
1864 /* used to query ACL EA size */
1865 } else if(size > buflen) {
1866 return -ERANGE;
1867 } else /* buffer big enough */ {
1868 local_acl->a_version = POSIX_ACL_XATTR_VERSION;
1869 for(i = 0;i < count ;i++) {
1870 cifs_convert_ace(&local_acl->a_entries[i],pACE);
1871 pACE ++;
1872 }
1873 }
1874 return size;
1875}
1876
1877static __u16 convert_ace_to_cifs_ace(struct cifs_posix_ace * cifs_ace,
1878 const posix_acl_xattr_entry * local_ace)
1879{
1880 __u16 rc = 0; /* 0 = ACL converted ok */
1881
1882 cifs_ace->cifs_e_perm = (__u8)cpu_to_le16(local_ace->e_perm);
1883 cifs_ace->cifs_e_tag = (__u8)cpu_to_le16(local_ace->e_tag);
1884 /* BB is there a better way to handle the large uid? */
1885 if(local_ace->e_id == -1) {
1886 /* Probably no need to le convert -1 on any arch but can not hurt */
1887 cifs_ace->cifs_uid = cpu_to_le64(-1);
1888 } else
1889 cifs_ace->cifs_uid = (__u64)cpu_to_le32(local_ace->e_id);
1890 /*cFYI(1,("perm %d tag %d id %d",ace->e_perm,ace->e_tag,ace->e_id));*/
1891 return rc;
1892}
1893
1894/* Convert ACL from local Linux POSIX xattr to CIFS POSIX ACL wire format */
1895static __u16 ACL_to_cifs_posix(char * parm_data,const char * pACL,const int buflen,
1896 const int acl_type)
1897{
1898 __u16 rc = 0;
1899 struct cifs_posix_acl * cifs_acl = (struct cifs_posix_acl *)parm_data;
1900 posix_acl_xattr_header * local_acl = (posix_acl_xattr_header *)pACL;
1901 int count;
1902 int i;
1903
1904 if((buflen == 0) || (pACL == NULL) || (cifs_acl == NULL))
1905 return 0;
1906
1907 count = posix_acl_xattr_count((size_t)buflen);
1908 cFYI(1,("setting acl with %d entries from buf of length %d and version of %d",
1909 count,buflen,local_acl->a_version));
1910 if(local_acl->a_version != 2) {
1911 cFYI(1,("unknown POSIX ACL version %d",local_acl->a_version));
1912 return 0;
1913 }
1914 cifs_acl->version = cpu_to_le16(1);
1915 if(acl_type == ACL_TYPE_ACCESS)
1916 cifs_acl->access_entry_count = count;
1917 else if(acl_type == ACL_TYPE_DEFAULT)
1918 cifs_acl->default_entry_count = count;
1919 else {
1920 cFYI(1,("unknown ACL type %d",acl_type));
1921 return 0;
1922 }
1923 for(i=0;i<count;i++) {
1924 rc = convert_ace_to_cifs_ace(&cifs_acl->ace_array[i],
1925 &local_acl->a_entries[i]);
1926 if(rc != 0) {
1927 /* ACE not converted */
1928 break;
1929 }
1930 }
1931 if(rc == 0) {
1932 rc = (__u16)(count * sizeof(struct cifs_posix_ace));
1933 rc += sizeof(struct cifs_posix_acl);
1934 /* BB add check to make sure ACL does not overflow SMB */
1935 }
1936 return rc;
1937}
1938
1939int
1940CIFSSMBGetPosixACL(const int xid, struct cifsTconInfo *tcon,
1941 const unsigned char *searchName,
1942 char *acl_inf, const int buflen, const int acl_type,
Steve French737b7582005-04-28 22:41:06 -07001943 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944{
1945/* SMB_QUERY_POSIX_ACL */
1946 TRANSACTION2_QPI_REQ *pSMB = NULL;
1947 TRANSACTION2_QPI_RSP *pSMBr = NULL;
1948 int rc = 0;
1949 int bytes_returned;
1950 int name_len;
1951 __u16 params, byte_count;
1952
1953 cFYI(1, ("In GetPosixACL (Unix) for path %s", searchName));
1954
1955queryAclRetry:
1956 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
1957 (void **) &pSMBr);
1958 if (rc)
1959 return rc;
1960
1961 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
1962 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05001963 cifsConvertToUCS((__le16 *) pSMB->FileName, searchName,
Steve French737b7582005-04-28 22:41:06 -07001964 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 name_len++; /* trailing null */
1966 name_len *= 2;
1967 pSMB->FileName[name_len] = 0;
1968 pSMB->FileName[name_len+1] = 0;
1969 } else { /* BB improve the check for buffer overruns BB */
1970 name_len = strnlen(searchName, PATH_MAX);
1971 name_len++; /* trailing null */
1972 strncpy(pSMB->FileName, searchName, name_len);
1973 }
1974
1975 params = 2 /* level */ + 4 /* rsrvd */ + name_len /* incl null */ ;
1976 pSMB->TotalDataCount = 0;
1977 pSMB->MaxParameterCount = cpu_to_le16(2);
1978 /* BB find exact max data count below from sess structure BB */
1979 pSMB->MaxDataCount = cpu_to_le16(4000);
1980 pSMB->MaxSetupCount = 0;
1981 pSMB->Reserved = 0;
1982 pSMB->Flags = 0;
1983 pSMB->Timeout = 0;
1984 pSMB->Reserved2 = 0;
1985 pSMB->ParameterOffset = cpu_to_le16(
1986 offsetof(struct smb_com_transaction2_qpi_req ,InformationLevel) - 4);
1987 pSMB->DataCount = 0;
1988 pSMB->DataOffset = 0;
1989 pSMB->SetupCount = 1;
1990 pSMB->Reserved3 = 0;
1991 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
1992 byte_count = params + 1 /* pad */ ;
1993 pSMB->TotalParameterCount = cpu_to_le16(params);
1994 pSMB->ParameterCount = pSMB->TotalParameterCount;
1995 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_POSIX_ACL);
1996 pSMB->Reserved4 = 0;
1997 pSMB->hdr.smb_buf_length += byte_count;
1998 pSMB->ByteCount = cpu_to_le16(byte_count);
1999
2000 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2001 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2002 if (rc) {
2003 cFYI(1, ("Send error in Query POSIX ACL = %d", rc));
2004 } else {
2005 /* decode response */
2006
2007 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
2008 if (rc || (pSMBr->ByteCount < 2))
2009 /* BB also check enough total bytes returned */
2010 rc = -EIO; /* bad smb */
2011 else {
2012 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
2013 __u16 count = le16_to_cpu(pSMBr->t2.DataCount);
2014 rc = cifs_copy_posix_acl(acl_inf,
2015 (char *)&pSMBr->hdr.Protocol+data_offset,
2016 buflen,acl_type,count);
2017 }
2018 }
2019 cifs_buf_release(pSMB);
2020 if (rc == -EAGAIN)
2021 goto queryAclRetry;
2022 return rc;
2023}
2024
2025int
2026CIFSSMBSetPosixACL(const int xid, struct cifsTconInfo *tcon,
2027 const unsigned char *fileName,
Steve French737b7582005-04-28 22:41:06 -07002028 const char *local_acl, const int buflen,
2029 const int acl_type,
2030 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
2032 struct smb_com_transaction2_spi_req *pSMB = NULL;
2033 struct smb_com_transaction2_spi_rsp *pSMBr = NULL;
2034 char *parm_data;
2035 int name_len;
2036 int rc = 0;
2037 int bytes_returned = 0;
2038 __u16 params, byte_count, data_count, param_offset, offset;
2039
2040 cFYI(1, ("In SetPosixACL (Unix) for path %s", fileName));
2041setAclRetry:
2042 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
2043 (void **) &pSMBr);
2044 if (rc)
2045 return rc;
2046 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
2047 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05002048 cifsConvertToUCS((__le16 *) pSMB->FileName, fileName,
Steve French737b7582005-04-28 22:41:06 -07002049 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 name_len++; /* trailing null */
2051 name_len *= 2;
2052 } else { /* BB improve the check for buffer overruns BB */
2053 name_len = strnlen(fileName, PATH_MAX);
2054 name_len++; /* trailing null */
2055 strncpy(pSMB->FileName, fileName, name_len);
2056 }
2057 params = 6 + name_len;
2058 pSMB->MaxParameterCount = cpu_to_le16(2);
2059 pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find max SMB size from sess */
2060 pSMB->MaxSetupCount = 0;
2061 pSMB->Reserved = 0;
2062 pSMB->Flags = 0;
2063 pSMB->Timeout = 0;
2064 pSMB->Reserved2 = 0;
2065 param_offset = offsetof(struct smb_com_transaction2_spi_req,
2066 InformationLevel) - 4;
2067 offset = param_offset + params;
2068 parm_data = ((char *) &pSMB->hdr.Protocol) + offset;
2069 pSMB->ParameterOffset = cpu_to_le16(param_offset);
2070
2071 /* convert to on the wire format for POSIX ACL */
2072 data_count = ACL_to_cifs_posix(parm_data,local_acl,buflen,acl_type);
2073
2074 if(data_count == 0) {
2075 rc = -EOPNOTSUPP;
2076 goto setACLerrorExit;
2077 }
2078 pSMB->DataOffset = cpu_to_le16(offset);
2079 pSMB->SetupCount = 1;
2080 pSMB->Reserved3 = 0;
2081 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
2082 pSMB->InformationLevel = cpu_to_le16(SMB_SET_POSIX_ACL);
2083 byte_count = 3 /* pad */ + params + data_count;
2084 pSMB->DataCount = cpu_to_le16(data_count);
2085 pSMB->TotalDataCount = pSMB->DataCount;
2086 pSMB->ParameterCount = cpu_to_le16(params);
2087 pSMB->TotalParameterCount = pSMB->ParameterCount;
2088 pSMB->Reserved4 = 0;
2089 pSMB->hdr.smb_buf_length += byte_count;
2090 pSMB->ByteCount = cpu_to_le16(byte_count);
2091 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2092 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2093 if (rc) {
2094 cFYI(1, ("Set POSIX ACL returned %d", rc));
2095 }
2096
2097setACLerrorExit:
2098 cifs_buf_release(pSMB);
2099 if (rc == -EAGAIN)
2100 goto setAclRetry;
2101 return rc;
2102}
2103
Steve Frenchf654bac2005-04-28 22:41:04 -07002104/* BB fix tabs in this function FIXME BB */
2105int
2106CIFSGetExtAttr(const int xid, struct cifsTconInfo *tcon,
2107 const int netfid, __u64 * pExtAttrBits, __u64 *pMask)
2108{
2109 int rc = 0;
2110 struct smb_t2_qfi_req *pSMB = NULL;
2111 struct smb_t2_qfi_rsp *pSMBr = NULL;
2112 int bytes_returned;
2113 __u16 params, byte_count;
2114
2115 cFYI(1,("In GetExtAttr"));
2116 if(tcon == NULL)
2117 return -ENODEV;
2118
2119GetExtAttrRetry:
2120 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
2121 (void **) &pSMBr);
2122 if (rc)
2123 return rc;
2124
Steve Frenchc67593a2005-04-28 22:41:04 -07002125 params = 2 /* level */ +2 /* fid */;
Steve Frenchf654bac2005-04-28 22:41:04 -07002126 pSMB->t2.TotalDataCount = 0;
Steve Frenchc67593a2005-04-28 22:41:04 -07002127 pSMB->t2.MaxParameterCount = cpu_to_le16(4);
Steve Frenchf654bac2005-04-28 22:41:04 -07002128 /* BB find exact max data count below from sess structure BB */
2129 pSMB->t2.MaxDataCount = cpu_to_le16(4000);
2130 pSMB->t2.MaxSetupCount = 0;
2131 pSMB->t2.Reserved = 0;
2132 pSMB->t2.Flags = 0;
2133 pSMB->t2.Timeout = 0;
2134 pSMB->t2.Reserved2 = 0;
Steve Frenchc67593a2005-04-28 22:41:04 -07002135 pSMB->t2.ParameterOffset = cpu_to_le16(offsetof(struct smb_t2_qfi_req,
2136 Fid) - 4);
Steve Frenchf654bac2005-04-28 22:41:04 -07002137 pSMB->t2.DataCount = 0;
2138 pSMB->t2.DataOffset = 0;
2139 pSMB->t2.SetupCount = 1;
2140 pSMB->t2.Reserved3 = 0;
2141 pSMB->t2.SubCommand = cpu_to_le16(TRANS2_QUERY_FILE_INFORMATION);
Steve Frenchc67593a2005-04-28 22:41:04 -07002142 byte_count = params + 1 /* pad */ ;
Steve Frenchf654bac2005-04-28 22:41:04 -07002143 pSMB->t2.TotalParameterCount = cpu_to_le16(params);
2144 pSMB->t2.ParameterCount = pSMB->t2.TotalParameterCount;
2145 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_ATTR_FLAGS);
Steve Frenchc67593a2005-04-28 22:41:04 -07002146 pSMB->Pad = 0;
Steve Frenchf654bac2005-04-28 22:41:04 -07002147 pSMB->Fid = netfid;
2148 pSMB->hdr.smb_buf_length += byte_count;
2149 pSMB->t2.ByteCount = cpu_to_le16(byte_count);
2150
2151 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2152 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2153 if (rc) {
2154 cFYI(1, ("error %d in GetExtAttr", rc));
2155 } else {
2156 /* decode response */
2157 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
2158 if (rc || (pSMBr->ByteCount < 2))
2159 /* BB also check enough total bytes returned */
2160 /* If rc should we check for EOPNOSUPP and
2161 disable the srvino flag? or in caller? */
2162 rc = -EIO; /* bad smb */
2163 else {
2164 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
2165 __u16 count = le16_to_cpu(pSMBr->t2.DataCount);
2166 struct file_chattr_info * pfinfo;
2167 /* BB Do we need a cast or hash here ? */
2168 if(count != 16) {
2169 cFYI(1, ("Illegal size ret in GetExtAttr"));
2170 rc = -EIO;
2171 goto GetExtAttrOut;
2172 }
2173 pfinfo = (struct file_chattr_info *)
2174 (data_offset + (char *) &pSMBr->hdr.Protocol);
2175 *pExtAttrBits = le64_to_cpu(pfinfo->mode);
2176 *pMask = le64_to_cpu(pfinfo->mask);
2177 }
2178 }
2179GetExtAttrOut:
2180 cifs_buf_release(pSMB);
2181 if (rc == -EAGAIN)
2182 goto GetExtAttrRetry;
2183 return rc;
2184}
2185
2186
2187#endif /* CONFIG_POSIX */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
2189int
2190CIFSSMBQPathInfo(const int xid, struct cifsTconInfo *tcon,
2191 const unsigned char *searchName,
2192 FILE_ALL_INFO * pFindData,
Steve French737b7582005-04-28 22:41:06 -07002193 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194{
2195/* level 263 SMB_QUERY_FILE_ALL_INFO */
2196 TRANSACTION2_QPI_REQ *pSMB = NULL;
2197 TRANSACTION2_QPI_RSP *pSMBr = NULL;
2198 int rc = 0;
2199 int bytes_returned;
2200 int name_len;
2201 __u16 params, byte_count;
2202
2203/* cFYI(1, ("In QPathInfo path %s", searchName)); */
2204QPathInfoRetry:
2205 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
2206 (void **) &pSMBr);
2207 if (rc)
2208 return rc;
2209
2210 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
2211 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05002212 cifsConvertToUCS((__le16 *) pSMB->FileName, searchName,
Steve French737b7582005-04-28 22:41:06 -07002213 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 name_len++; /* trailing null */
2215 name_len *= 2;
2216 } else { /* BB improve the check for buffer overruns BB */
2217 name_len = strnlen(searchName, PATH_MAX);
2218 name_len++; /* trailing null */
2219 strncpy(pSMB->FileName, searchName, name_len);
2220 }
2221
2222 params = 2 /* level */ + 4 /* reserved */ + name_len /* includes NUL */ ;
2223 pSMB->TotalDataCount = 0;
2224 pSMB->MaxParameterCount = cpu_to_le16(2);
2225 pSMB->MaxDataCount = cpu_to_le16(4000); /* BB find exact max SMB PDU from sess structure BB */
2226 pSMB->MaxSetupCount = 0;
2227 pSMB->Reserved = 0;
2228 pSMB->Flags = 0;
2229 pSMB->Timeout = 0;
2230 pSMB->Reserved2 = 0;
2231 pSMB->ParameterOffset = cpu_to_le16(offsetof(
2232 struct smb_com_transaction2_qpi_req ,InformationLevel) - 4);
2233 pSMB->DataCount = 0;
2234 pSMB->DataOffset = 0;
2235 pSMB->SetupCount = 1;
2236 pSMB->Reserved3 = 0;
2237 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
2238 byte_count = params + 1 /* pad */ ;
2239 pSMB->TotalParameterCount = cpu_to_le16(params);
2240 pSMB->ParameterCount = pSMB->TotalParameterCount;
2241 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_ALL_INFO);
2242 pSMB->Reserved4 = 0;
2243 pSMB->hdr.smb_buf_length += byte_count;
2244 pSMB->ByteCount = cpu_to_le16(byte_count);
2245
2246 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2247 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2248 if (rc) {
2249 cFYI(1, ("Send error in QPathInfo = %d", rc));
2250 } else { /* decode response */
2251 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
2252
2253 if (rc || (pSMBr->ByteCount < 40))
2254 rc = -EIO; /* bad smb */
2255 else if (pFindData){
2256 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
2257 memcpy((char *) pFindData,
2258 (char *) &pSMBr->hdr.Protocol +
2259 data_offset, sizeof (FILE_ALL_INFO));
2260 } else
2261 rc = -ENOMEM;
2262 }
2263 cifs_buf_release(pSMB);
2264 if (rc == -EAGAIN)
2265 goto QPathInfoRetry;
2266
2267 return rc;
2268}
2269
2270int
2271CIFSSMBUnixQPathInfo(const int xid, struct cifsTconInfo *tcon,
2272 const unsigned char *searchName,
2273 FILE_UNIX_BASIC_INFO * pFindData,
Steve French737b7582005-04-28 22:41:06 -07002274 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275{
2276/* SMB_QUERY_FILE_UNIX_BASIC */
2277 TRANSACTION2_QPI_REQ *pSMB = NULL;
2278 TRANSACTION2_QPI_RSP *pSMBr = NULL;
2279 int rc = 0;
2280 int bytes_returned = 0;
2281 int name_len;
2282 __u16 params, byte_count;
2283
2284 cFYI(1, ("In QPathInfo (Unix) the path %s", searchName));
2285UnixQPathInfoRetry:
2286 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
2287 (void **) &pSMBr);
2288 if (rc)
2289 return rc;
2290
2291 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
2292 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05002293 cifsConvertToUCS((__le16 *) pSMB->FileName, searchName,
Steve French737b7582005-04-28 22:41:06 -07002294 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 name_len++; /* trailing null */
2296 name_len *= 2;
2297 } else { /* BB improve the check for buffer overruns BB */
2298 name_len = strnlen(searchName, PATH_MAX);
2299 name_len++; /* trailing null */
2300 strncpy(pSMB->FileName, searchName, name_len);
2301 }
2302
2303 params = 2 /* level */ + 4 /* reserved */ + name_len /* includes NUL */ ;
2304 pSMB->TotalDataCount = 0;
2305 pSMB->MaxParameterCount = cpu_to_le16(2);
2306 /* BB find exact max SMB PDU from sess structure BB */
2307 pSMB->MaxDataCount = cpu_to_le16(4000);
2308 pSMB->MaxSetupCount = 0;
2309 pSMB->Reserved = 0;
2310 pSMB->Flags = 0;
2311 pSMB->Timeout = 0;
2312 pSMB->Reserved2 = 0;
2313 pSMB->ParameterOffset = cpu_to_le16(offsetof(
2314 struct smb_com_transaction2_qpi_req ,InformationLevel) - 4);
2315 pSMB->DataCount = 0;
2316 pSMB->DataOffset = 0;
2317 pSMB->SetupCount = 1;
2318 pSMB->Reserved3 = 0;
2319 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
2320 byte_count = params + 1 /* pad */ ;
2321 pSMB->TotalParameterCount = cpu_to_le16(params);
2322 pSMB->ParameterCount = pSMB->TotalParameterCount;
2323 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_UNIX_BASIC);
2324 pSMB->Reserved4 = 0;
2325 pSMB->hdr.smb_buf_length += byte_count;
2326 pSMB->ByteCount = cpu_to_le16(byte_count);
2327
2328 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2329 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2330 if (rc) {
2331 cFYI(1, ("Send error in QPathInfo = %d", rc));
2332 } else { /* decode response */
2333 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
2334
2335 if (rc || (pSMBr->ByteCount < sizeof(FILE_UNIX_BASIC_INFO))) {
2336 rc = -EIO; /* bad smb */
2337 } else {
2338 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
2339 memcpy((char *) pFindData,
2340 (char *) &pSMBr->hdr.Protocol +
2341 data_offset,
2342 sizeof (FILE_UNIX_BASIC_INFO));
2343 }
2344 }
2345 cifs_buf_release(pSMB);
2346 if (rc == -EAGAIN)
2347 goto UnixQPathInfoRetry;
2348
2349 return rc;
2350}
2351
2352#if 0 /* function unused at present */
2353int CIFSFindSingle(const int xid, struct cifsTconInfo *tcon,
2354 const char *searchName, FILE_ALL_INFO * findData,
2355 const struct nls_table *nls_codepage)
2356{
2357/* level 257 SMB_ */
2358 TRANSACTION2_FFIRST_REQ *pSMB = NULL;
2359 TRANSACTION2_FFIRST_RSP *pSMBr = NULL;
2360 int rc = 0;
2361 int bytes_returned;
2362 int name_len;
2363 __u16 params, byte_count;
2364
2365 cFYI(1, ("In FindUnique"));
2366findUniqueRetry:
2367 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
2368 (void **) &pSMBr);
2369 if (rc)
2370 return rc;
2371
2372 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
2373 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05002374 cifsConvertToUCS((__le16 *) pSMB->FileName, searchName, PATH_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 /* find define for this maxpathcomponent */
2376 , nls_codepage);
2377 name_len++; /* trailing null */
2378 name_len *= 2;
2379 } else { /* BB improve the check for buffer overruns BB */
2380 name_len = strnlen(searchName, PATH_MAX);
2381 name_len++; /* trailing null */
2382 strncpy(pSMB->FileName, searchName, name_len);
2383 }
2384
2385 params = 12 + name_len /* includes null */ ;
2386 pSMB->TotalDataCount = 0; /* no EAs */
2387 pSMB->MaxParameterCount = cpu_to_le16(2);
2388 pSMB->MaxDataCount = cpu_to_le16(4000); /* BB find exact max SMB PDU from sess structure BB */
2389 pSMB->MaxSetupCount = 0;
2390 pSMB->Reserved = 0;
2391 pSMB->Flags = 0;
2392 pSMB->Timeout = 0;
2393 pSMB->Reserved2 = 0;
2394 pSMB->ParameterOffset = cpu_to_le16(
2395 offsetof(struct smb_com_transaction2_ffirst_req,InformationLevel) - 4);
2396 pSMB->DataCount = 0;
2397 pSMB->DataOffset = 0;
2398 pSMB->SetupCount = 1; /* one byte, no need to le convert */
2399 pSMB->Reserved3 = 0;
2400 pSMB->SubCommand = cpu_to_le16(TRANS2_FIND_FIRST);
2401 byte_count = params + 1 /* pad */ ;
2402 pSMB->TotalParameterCount = cpu_to_le16(params);
2403 pSMB->ParameterCount = pSMB->TotalParameterCount;
2404 pSMB->SearchAttributes =
2405 cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM |
2406 ATTR_DIRECTORY);
2407 pSMB->SearchCount = cpu_to_le16(16); /* BB increase */
2408 pSMB->SearchFlags = cpu_to_le16(1);
2409 pSMB->InformationLevel = cpu_to_le16(SMB_FIND_FILE_DIRECTORY_INFO);
2410 pSMB->SearchStorageType = 0; /* BB what should we set this to? BB */
2411 pSMB->hdr.smb_buf_length += byte_count;
2412 pSMB->ByteCount = cpu_to_le16(byte_count);
2413
2414 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2415 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2416
2417 if (rc) {
2418 cFYI(1, ("Send error in FindFileDirInfo = %d", rc));
2419 } else { /* decode response */
Steve Frenchdfb75332005-06-22 17:13:47 -07002420#ifdef CONFIG_CIFS_STATS
2421 atomic_inc(&tcon->num_ffirst);
2422#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 /* BB fill in */
2424 }
2425
2426 cifs_buf_release(pSMB);
2427 if (rc == -EAGAIN)
2428 goto findUniqueRetry;
2429
2430 return rc;
2431}
2432#endif /* end unused (temporarily) function */
2433
2434/* xid, tcon, searchName and codepage are input parms, rest are returned */
2435int
2436CIFSFindFirst(const int xid, struct cifsTconInfo *tcon,
2437 const char *searchName,
2438 const struct nls_table *nls_codepage,
2439 __u16 * pnetfid,
Jeremy Allisonac670552005-06-22 17:26:35 -07002440 struct cifs_search_info * psrch_inf, int remap, const char dirsep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441{
2442/* level 257 SMB_ */
2443 TRANSACTION2_FFIRST_REQ *pSMB = NULL;
2444 TRANSACTION2_FFIRST_RSP *pSMBr = NULL;
2445 T2_FFIRST_RSP_PARMS * parms;
2446 int rc = 0;
2447 int bytes_returned = 0;
2448 int name_len;
2449 __u16 params, byte_count;
2450
Steve French737b7582005-04-28 22:41:06 -07002451 cFYI(1, ("In FindFirst for %s",searchName));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
2453findFirstRetry:
2454 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
2455 (void **) &pSMBr);
2456 if (rc)
2457 return rc;
2458
2459 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
2460 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05002461 cifsConvertToUCS((__le16 *) pSMB->FileName,searchName,
Steve French737b7582005-04-28 22:41:06 -07002462 PATH_MAX, nls_codepage, remap);
2463 /* We can not add the asterik earlier in case
2464 it got remapped to 0xF03A as if it were part of the
2465 directory name instead of a wildcard */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 name_len *= 2;
Jeremy Allisonac670552005-06-22 17:26:35 -07002467 pSMB->FileName[name_len] = dirsep;
Steve French737b7582005-04-28 22:41:06 -07002468 pSMB->FileName[name_len+1] = 0;
2469 pSMB->FileName[name_len+2] = '*';
2470 pSMB->FileName[name_len+3] = 0;
2471 name_len += 4; /* now the trailing null */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 pSMB->FileName[name_len] = 0; /* null terminate just in case */
2473 pSMB->FileName[name_len+1] = 0;
Steve French737b7582005-04-28 22:41:06 -07002474 name_len += 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 } else { /* BB add check for overrun of SMB buf BB */
2476 name_len = strnlen(searchName, PATH_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477/* BB fix here and in unicode clause above ie
2478 if(name_len > buffersize-header)
2479 free buffer exit; BB */
2480 strncpy(pSMB->FileName, searchName, name_len);
Jeremy Allisonac670552005-06-22 17:26:35 -07002481 pSMB->FileName[name_len] = dirsep;
Steve French68575472005-04-30 11:10:57 -07002482 pSMB->FileName[name_len+1] = '*';
2483 pSMB->FileName[name_len+2] = 0;
2484 name_len += 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 }
2486
2487 params = 12 + name_len /* includes null */ ;
2488 pSMB->TotalDataCount = 0; /* no EAs */
2489 pSMB->MaxParameterCount = cpu_to_le16(10);
2490 pSMB->MaxDataCount = cpu_to_le16((tcon->ses->server->maxBuf -
2491 MAX_CIFS_HDR_SIZE) & 0xFFFFFF00);
2492 pSMB->MaxSetupCount = 0;
2493 pSMB->Reserved = 0;
2494 pSMB->Flags = 0;
2495 pSMB->Timeout = 0;
2496 pSMB->Reserved2 = 0;
2497 byte_count = params + 1 /* pad */ ;
2498 pSMB->TotalParameterCount = cpu_to_le16(params);
2499 pSMB->ParameterCount = pSMB->TotalParameterCount;
2500 pSMB->ParameterOffset = cpu_to_le16(
2501 offsetof(struct smb_com_transaction2_ffirst_req, SearchAttributes) - 4);
2502 pSMB->DataCount = 0;
2503 pSMB->DataOffset = 0;
2504 pSMB->SetupCount = 1; /* one byte, no need to make endian neutral */
2505 pSMB->Reserved3 = 0;
2506 pSMB->SubCommand = cpu_to_le16(TRANS2_FIND_FIRST);
2507 pSMB->SearchAttributes =
2508 cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM |
2509 ATTR_DIRECTORY);
2510 pSMB->SearchCount= cpu_to_le16(CIFSMaxBufSize/sizeof(FILE_UNIX_INFO));
2511 pSMB->SearchFlags = cpu_to_le16(CIFS_SEARCH_CLOSE_AT_END |
2512 CIFS_SEARCH_RETURN_RESUME);
2513 pSMB->InformationLevel = cpu_to_le16(psrch_inf->info_level);
2514
2515 /* BB what should we set StorageType to? Does it matter? BB */
2516 pSMB->SearchStorageType = 0;
2517 pSMB->hdr.smb_buf_length += byte_count;
2518 pSMB->ByteCount = cpu_to_le16(byte_count);
2519
2520 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2521 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2522
2523 if (rc) {/* BB add logic to retry regular search if Unix search rejected unexpectedly by server */
2524 /* BB Add code to handle unsupported level rc */
2525 cFYI(1, ("Error in FindFirst = %d", rc));
2526
2527 if (pSMB)
2528 cifs_buf_release(pSMB);
2529
2530 /* BB eventually could optimize out free and realloc of buf */
2531 /* for this case */
2532 if (rc == -EAGAIN)
2533 goto findFirstRetry;
2534 } else { /* decode response */
Steve Frenchdfb75332005-06-22 17:13:47 -07002535#ifdef CONFIG_CIFS_STATS
2536 atomic_inc(&tcon->num_ffirst);
2537#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 /* BB remember to free buffer if error BB */
2539 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
2540 if(rc == 0) {
2541 if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE)
2542 psrch_inf->unicode = TRUE;
2543 else
2544 psrch_inf->unicode = FALSE;
2545
2546 psrch_inf->ntwrk_buf_start = (char *)pSMBr;
2547 psrch_inf->srch_entries_start =
2548 (char *) &pSMBr->hdr.Protocol +
2549 le16_to_cpu(pSMBr->t2.DataOffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 parms = (T2_FFIRST_RSP_PARMS *)((char *) &pSMBr->hdr.Protocol +
2551 le16_to_cpu(pSMBr->t2.ParameterOffset));
2552
2553 if(parms->EndofSearch)
2554 psrch_inf->endOfSearch = TRUE;
2555 else
2556 psrch_inf->endOfSearch = FALSE;
2557
2558 psrch_inf->entries_in_buffer = le16_to_cpu(parms->SearchCount);
2559 psrch_inf->index_of_last_entry =
2560 psrch_inf->entries_in_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 *pnetfid = parms->SearchHandle;
2562 } else {
2563 cifs_buf_release(pSMB);
2564 }
2565 }
2566
2567 return rc;
2568}
2569
2570int CIFSFindNext(const int xid, struct cifsTconInfo *tcon,
2571 __u16 searchHandle, struct cifs_search_info * psrch_inf)
2572{
2573 TRANSACTION2_FNEXT_REQ *pSMB = NULL;
2574 TRANSACTION2_FNEXT_RSP *pSMBr = NULL;
2575 T2_FNEXT_RSP_PARMS * parms;
2576 char *response_data;
2577 int rc = 0;
2578 int bytes_returned, name_len;
2579 __u16 params, byte_count;
2580
2581 cFYI(1, ("In FindNext"));
2582
2583 if(psrch_inf->endOfSearch == TRUE)
2584 return -ENOENT;
2585
2586 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
2587 (void **) &pSMBr);
2588 if (rc)
2589 return rc;
2590
2591 params = 14; /* includes 2 bytes of null string, converted to LE below */
2592 byte_count = 0;
2593 pSMB->TotalDataCount = 0; /* no EAs */
2594 pSMB->MaxParameterCount = cpu_to_le16(8);
2595 pSMB->MaxDataCount =
2596 cpu_to_le16((tcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE) & 0xFFFFFF00);
2597 pSMB->MaxSetupCount = 0;
2598 pSMB->Reserved = 0;
2599 pSMB->Flags = 0;
2600 pSMB->Timeout = 0;
2601 pSMB->Reserved2 = 0;
2602 pSMB->ParameterOffset = cpu_to_le16(
2603 offsetof(struct smb_com_transaction2_fnext_req,SearchHandle) - 4);
2604 pSMB->DataCount = 0;
2605 pSMB->DataOffset = 0;
2606 pSMB->SetupCount = 1;
2607 pSMB->Reserved3 = 0;
2608 pSMB->SubCommand = cpu_to_le16(TRANS2_FIND_NEXT);
2609 pSMB->SearchHandle = searchHandle; /* always kept as le */
2610 pSMB->SearchCount =
2611 cpu_to_le16(CIFSMaxBufSize / sizeof (FILE_UNIX_INFO));
2612 /* test for Unix extensions */
2613/* if (tcon->ses->capabilities & CAP_UNIX) {
2614 pSMB->InformationLevel = cpu_to_le16(SMB_FIND_FILE_UNIX);
2615 psrch_inf->info_level = SMB_FIND_FILE_UNIX;
2616 } else {
2617 pSMB->InformationLevel =
2618 cpu_to_le16(SMB_FIND_FILE_DIRECTORY_INFO);
2619 psrch_inf->info_level = SMB_FIND_FILE_DIRECTORY_INFO;
2620 } */
2621 pSMB->InformationLevel = cpu_to_le16(psrch_inf->info_level);
2622 pSMB->ResumeKey = psrch_inf->resume_key;
2623 pSMB->SearchFlags =
2624 cpu_to_le16(CIFS_SEARCH_CLOSE_AT_END | CIFS_SEARCH_RETURN_RESUME);
2625
2626 name_len = psrch_inf->resume_name_len;
2627 params += name_len;
2628 if(name_len < PATH_MAX) {
2629 memcpy(pSMB->ResumeFileName, psrch_inf->presume_name, name_len);
2630 byte_count += name_len;
2631 } else {
2632 rc = -EINVAL;
2633 goto FNext2_err_exit;
2634 }
2635 byte_count = params + 1 /* pad */ ;
2636 pSMB->TotalParameterCount = cpu_to_le16(params);
2637 pSMB->ParameterCount = pSMB->TotalParameterCount;
2638 pSMB->hdr.smb_buf_length += byte_count;
2639 pSMB->ByteCount = cpu_to_le16(byte_count);
2640
2641 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2642 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2643
2644 if (rc) {
2645 if (rc == -EBADF) {
2646 psrch_inf->endOfSearch = TRUE;
2647 rc = 0; /* search probably was closed at end of search above */
2648 } else
2649 cFYI(1, ("FindNext returned = %d", rc));
2650 } else { /* decode response */
Steve Frenchdfb75332005-06-22 17:13:47 -07002651#ifdef CONFIG_CIFS_STATS
2652 atomic_inc(&tcon->num_fnext);
2653#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
2655
2656 if(rc == 0) {
2657 /* BB fixme add lock for file (srch_info) struct here */
2658 if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE)
2659 psrch_inf->unicode = TRUE;
2660 else
2661 psrch_inf->unicode = FALSE;
2662 response_data = (char *) &pSMBr->hdr.Protocol +
2663 le16_to_cpu(pSMBr->t2.ParameterOffset);
2664 parms = (T2_FNEXT_RSP_PARMS *)response_data;
2665 response_data = (char *)&pSMBr->hdr.Protocol +
2666 le16_to_cpu(pSMBr->t2.DataOffset);
2667 cifs_buf_release(psrch_inf->ntwrk_buf_start);
2668 psrch_inf->srch_entries_start = response_data;
2669 psrch_inf->ntwrk_buf_start = (char *)pSMB;
2670 if(parms->EndofSearch)
2671 psrch_inf->endOfSearch = TRUE;
2672 else
2673 psrch_inf->endOfSearch = FALSE;
2674
2675 psrch_inf->entries_in_buffer = le16_to_cpu(parms->SearchCount);
2676 psrch_inf->index_of_last_entry +=
2677 psrch_inf->entries_in_buffer;
2678/* cFYI(1,("fnxt2 entries in buf %d index_of_last %d",psrch_inf->entries_in_buffer,psrch_inf->index_of_last_entry)); */
2679
2680 /* BB fixme add unlock here */
2681 }
2682
2683 }
2684
2685 /* BB On error, should we leave previous search buf (and count and
2686 last entry fields) intact or free the previous one? */
2687
2688 /* Note: On -EAGAIN error only caller can retry on handle based calls
2689 since file handle passed in no longer valid */
2690FNext2_err_exit:
2691 if (rc != 0)
2692 cifs_buf_release(pSMB);
2693
2694 return rc;
2695}
2696
2697int
2698CIFSFindClose(const int xid, struct cifsTconInfo *tcon, const __u16 searchHandle)
2699{
2700 int rc = 0;
2701 FINDCLOSE_REQ *pSMB = NULL;
2702 CLOSE_RSP *pSMBr = NULL; /* BB removeme BB */
2703 int bytes_returned;
2704
2705 cFYI(1, ("In CIFSSMBFindClose"));
2706 rc = small_smb_init(SMB_COM_FIND_CLOSE2, 1, tcon, (void **)&pSMB);
2707
2708 /* no sense returning error if session restarted
2709 as file handle has been closed */
2710 if(rc == -EAGAIN)
2711 return 0;
2712 if (rc)
2713 return rc;
2714
2715 pSMBr = (CLOSE_RSP *)pSMB; /* BB removeme BB */
2716 pSMB->FileID = searchHandle;
2717 pSMB->ByteCount = 0;
2718 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2719 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2720 if (rc) {
2721 cERROR(1, ("Send error in FindClose = %d", rc));
2722 }
Steve Frenchdfb75332005-06-22 17:13:47 -07002723#ifdef CONFIG_CIFS_STATS
2724 atomic_inc(&tcon->num_fclose);
2725#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 cifs_small_buf_release(pSMB);
2727
2728 /* Since session is dead, search handle closed on server already */
2729 if (rc == -EAGAIN)
2730 rc = 0;
2731
2732 return rc;
2733}
2734
2735#ifdef CONFIG_CIFS_EXPERIMENTAL
2736int
2737CIFSGetSrvInodeNumber(const int xid, struct cifsTconInfo *tcon,
2738 const unsigned char *searchName,
2739 __u64 * inode_number,
Steve French737b7582005-04-28 22:41:06 -07002740 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741{
2742 int rc = 0;
2743 TRANSACTION2_QPI_REQ *pSMB = NULL;
2744 TRANSACTION2_QPI_RSP *pSMBr = NULL;
2745 int name_len, bytes_returned;
2746 __u16 params, byte_count;
2747
2748 cFYI(1,("In GetSrvInodeNum for %s",searchName));
2749 if(tcon == NULL)
2750 return -ENODEV;
2751
2752GetInodeNumberRetry:
2753 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
2754 (void **) &pSMBr);
2755 if (rc)
2756 return rc;
2757
2758
2759 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
2760 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05002761 cifsConvertToUCS((__le16 *) pSMB->FileName, searchName,
Steve French737b7582005-04-28 22:41:06 -07002762 PATH_MAX,nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 name_len++; /* trailing null */
2764 name_len *= 2;
2765 } else { /* BB improve the check for buffer overruns BB */
2766 name_len = strnlen(searchName, PATH_MAX);
2767 name_len++; /* trailing null */
2768 strncpy(pSMB->FileName, searchName, name_len);
2769 }
2770
2771 params = 2 /* level */ + 4 /* rsrvd */ + name_len /* incl null */ ;
2772 pSMB->TotalDataCount = 0;
2773 pSMB->MaxParameterCount = cpu_to_le16(2);
2774 /* BB find exact max data count below from sess structure BB */
2775 pSMB->MaxDataCount = cpu_to_le16(4000);
2776 pSMB->MaxSetupCount = 0;
2777 pSMB->Reserved = 0;
2778 pSMB->Flags = 0;
2779 pSMB->Timeout = 0;
2780 pSMB->Reserved2 = 0;
2781 pSMB->ParameterOffset = cpu_to_le16(offsetof(
2782 struct smb_com_transaction2_qpi_req ,InformationLevel) - 4);
2783 pSMB->DataCount = 0;
2784 pSMB->DataOffset = 0;
2785 pSMB->SetupCount = 1;
2786 pSMB->Reserved3 = 0;
2787 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
2788 byte_count = params + 1 /* pad */ ;
2789 pSMB->TotalParameterCount = cpu_to_le16(params);
2790 pSMB->ParameterCount = pSMB->TotalParameterCount;
2791 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_INTERNAL_INFO);
2792 pSMB->Reserved4 = 0;
2793 pSMB->hdr.smb_buf_length += byte_count;
2794 pSMB->ByteCount = cpu_to_le16(byte_count);
2795
2796 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2797 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2798 if (rc) {
2799 cFYI(1, ("error %d in QueryInternalInfo", rc));
2800 } else {
2801 /* decode response */
2802 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
2803 if (rc || (pSMBr->ByteCount < 2))
2804 /* BB also check enough total bytes returned */
2805 /* If rc should we check for EOPNOSUPP and
2806 disable the srvino flag? or in caller? */
2807 rc = -EIO; /* bad smb */
2808 else {
2809 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
2810 __u16 count = le16_to_cpu(pSMBr->t2.DataCount);
2811 struct file_internal_info * pfinfo;
2812 /* BB Do we need a cast or hash here ? */
2813 if(count < 8) {
2814 cFYI(1, ("Illegal size ret in QryIntrnlInf"));
2815 rc = -EIO;
2816 goto GetInodeNumOut;
2817 }
2818 pfinfo = (struct file_internal_info *)
2819 (data_offset + (char *) &pSMBr->hdr.Protocol);
2820 *inode_number = pfinfo->UniqueId;
2821 }
2822 }
2823GetInodeNumOut:
2824 cifs_buf_release(pSMB);
2825 if (rc == -EAGAIN)
2826 goto GetInodeNumberRetry;
2827 return rc;
2828}
2829#endif /* CIFS_EXPERIMENTAL */
2830
2831int
2832CIFSGetDFSRefer(const int xid, struct cifsSesInfo *ses,
2833 const unsigned char *searchName,
2834 unsigned char **targetUNCs,
2835 unsigned int *number_of_UNC_in_array,
Steve French737b7582005-04-28 22:41:06 -07002836 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837{
2838/* TRANS2_GET_DFS_REFERRAL */
2839 TRANSACTION2_GET_DFS_REFER_REQ *pSMB = NULL;
2840 TRANSACTION2_GET_DFS_REFER_RSP *pSMBr = NULL;
2841 struct dfs_referral_level_3 * referrals = NULL;
2842 int rc = 0;
2843 int bytes_returned;
2844 int name_len;
2845 unsigned int i;
2846 char * temp;
2847 __u16 params, byte_count;
2848 *number_of_UNC_in_array = 0;
2849 *targetUNCs = NULL;
2850
2851 cFYI(1, ("In GetDFSRefer the path %s", searchName));
2852 if (ses == NULL)
2853 return -ENODEV;
2854getDFSRetry:
2855 rc = smb_init(SMB_COM_TRANSACTION2, 15, NULL, (void **) &pSMB,
2856 (void **) &pSMBr);
2857 if (rc)
2858 return rc;
2859
2860 pSMB->hdr.Tid = ses->ipc_tid;
2861 pSMB->hdr.Uid = ses->Suid;
2862 if (ses->capabilities & CAP_STATUS32) {
2863 pSMB->hdr.Flags2 |= SMBFLG2_ERR_STATUS;
2864 }
2865 if (ses->capabilities & CAP_DFS) {
2866 pSMB->hdr.Flags2 |= SMBFLG2_DFS;
2867 }
2868
2869 if (ses->capabilities & CAP_UNICODE) {
2870 pSMB->hdr.Flags2 |= SMBFLG2_UNICODE;
2871 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05002872 cifsConvertToUCS((__le16 *) pSMB->RequestFileName,
Steve French737b7582005-04-28 22:41:06 -07002873 searchName, PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 name_len++; /* trailing null */
2875 name_len *= 2;
2876 } else { /* BB improve the check for buffer overruns BB */
2877 name_len = strnlen(searchName, PATH_MAX);
2878 name_len++; /* trailing null */
2879 strncpy(pSMB->RequestFileName, searchName, name_len);
2880 }
2881
2882 params = 2 /* level */ + name_len /*includes null */ ;
2883 pSMB->TotalDataCount = 0;
2884 pSMB->DataCount = 0;
2885 pSMB->DataOffset = 0;
2886 pSMB->MaxParameterCount = 0;
2887 pSMB->MaxDataCount = cpu_to_le16(4000); /* BB find exact max SMB PDU from sess structure BB */
2888 pSMB->MaxSetupCount = 0;
2889 pSMB->Reserved = 0;
2890 pSMB->Flags = 0;
2891 pSMB->Timeout = 0;
2892 pSMB->Reserved2 = 0;
2893 pSMB->ParameterOffset = cpu_to_le16(offsetof(
2894 struct smb_com_transaction2_get_dfs_refer_req, MaxReferralLevel) - 4);
2895 pSMB->SetupCount = 1;
2896 pSMB->Reserved3 = 0;
2897 pSMB->SubCommand = cpu_to_le16(TRANS2_GET_DFS_REFERRAL);
2898 byte_count = params + 3 /* pad */ ;
2899 pSMB->ParameterCount = cpu_to_le16(params);
2900 pSMB->TotalParameterCount = pSMB->ParameterCount;
2901 pSMB->MaxReferralLevel = cpu_to_le16(3);
2902 pSMB->hdr.smb_buf_length += byte_count;
2903 pSMB->ByteCount = cpu_to_le16(byte_count);
2904
2905 rc = SendReceive(xid, ses, (struct smb_hdr *) pSMB,
2906 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2907 if (rc) {
2908 cFYI(1, ("Send error in GetDFSRefer = %d", rc));
2909 } else { /* decode response */
2910/* BB Add logic to parse referrals here */
2911 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
2912
2913 if (rc || (pSMBr->ByteCount < 17)) /* BB also check enough total bytes returned */
2914 rc = -EIO; /* bad smb */
2915 else {
2916 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
2917 __u16 data_count = le16_to_cpu(pSMBr->t2.DataCount);
2918
2919 cFYI(1,
2920 ("Decoding GetDFSRefer response. BCC: %d Offset %d",
2921 pSMBr->ByteCount, data_offset));
2922 referrals =
2923 (struct dfs_referral_level_3 *)
2924 (8 /* sizeof start of data block */ +
2925 data_offset +
2926 (char *) &pSMBr->hdr.Protocol);
2927 cFYI(1,("num_referrals: %d dfs flags: 0x%x ... \nfor referral one refer size: 0x%x srv type: 0x%x refer flags: 0x%x ttl: 0x%x",
2928 le16_to_cpu(pSMBr->NumberOfReferrals),le16_to_cpu(pSMBr->DFSFlags), le16_to_cpu(referrals->ReferralSize),le16_to_cpu(referrals->ServerType),le16_to_cpu(referrals->ReferralFlags),le16_to_cpu(referrals->TimeToLive)));
2929 /* BB This field is actually two bytes in from start of
2930 data block so we could do safety check that DataBlock
2931 begins at address of pSMBr->NumberOfReferrals */
2932 *number_of_UNC_in_array = le16_to_cpu(pSMBr->NumberOfReferrals);
2933
2934 /* BB Fix below so can return more than one referral */
2935 if(*number_of_UNC_in_array > 1)
2936 *number_of_UNC_in_array = 1;
2937
2938 /* get the length of the strings describing refs */
2939 name_len = 0;
2940 for(i=0;i<*number_of_UNC_in_array;i++) {
2941 /* make sure that DfsPathOffset not past end */
2942 __u16 offset = le16_to_cpu(referrals->DfsPathOffset);
2943 if (offset > data_count) {
2944 /* if invalid referral, stop here and do
2945 not try to copy any more */
2946 *number_of_UNC_in_array = i;
2947 break;
2948 }
2949 temp = ((char *)referrals) + offset;
2950
2951 if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE) {
2952 name_len += UniStrnlen((wchar_t *)temp,data_count);
2953 } else {
2954 name_len += strnlen(temp,data_count);
2955 }
2956 referrals++;
2957 /* BB add check that referral pointer does not fall off end PDU */
2958
2959 }
2960 /* BB add check for name_len bigger than bcc */
2961 *targetUNCs =
2962 kmalloc(name_len+1+ (*number_of_UNC_in_array),GFP_KERNEL);
2963 if(*targetUNCs == NULL) {
2964 rc = -ENOMEM;
2965 goto GetDFSRefExit;
2966 }
2967 /* copy the ref strings */
2968 referrals =
2969 (struct dfs_referral_level_3 *)
2970 (8 /* sizeof data hdr */ +
2971 data_offset +
2972 (char *) &pSMBr->hdr.Protocol);
2973
2974 for(i=0;i<*number_of_UNC_in_array;i++) {
2975 temp = ((char *)referrals) + le16_to_cpu(referrals->DfsPathOffset);
2976 if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE) {
2977 cifs_strfromUCS_le(*targetUNCs,
2978 (wchar_t *) temp, name_len, nls_codepage);
2979 } else {
2980 strncpy(*targetUNCs,temp,name_len);
2981 }
2982 /* BB update target_uncs pointers */
2983 referrals++;
2984 }
2985 temp = *targetUNCs;
2986 temp[name_len] = 0;
2987 }
2988
2989 }
2990GetDFSRefExit:
2991 if (pSMB)
2992 cifs_buf_release(pSMB);
2993
2994 if (rc == -EAGAIN)
2995 goto getDFSRetry;
2996
2997 return rc;
2998}
2999
3000int
Steve French737b7582005-04-28 22:41:06 -07003001CIFSSMBQFSInfo(const int xid, struct cifsTconInfo *tcon, struct kstatfs *FSData)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002{
3003/* level 0x103 SMB_QUERY_FILE_SYSTEM_INFO */
3004 TRANSACTION2_QFSI_REQ *pSMB = NULL;
3005 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
3006 FILE_SYSTEM_INFO *response_data;
3007 int rc = 0;
3008 int bytes_returned = 0;
3009 __u16 params, byte_count;
3010
3011 cFYI(1, ("In QFSInfo"));
3012QFSInfoRetry:
3013 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3014 (void **) &pSMBr);
3015 if (rc)
3016 return rc;
3017
3018 params = 2; /* level */
3019 pSMB->TotalDataCount = 0;
3020 pSMB->MaxParameterCount = cpu_to_le16(2);
3021 pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find exact max SMB PDU from sess structure BB */
3022 pSMB->MaxSetupCount = 0;
3023 pSMB->Reserved = 0;
3024 pSMB->Flags = 0;
3025 pSMB->Timeout = 0;
3026 pSMB->Reserved2 = 0;
3027 byte_count = params + 1 /* pad */ ;
3028 pSMB->TotalParameterCount = cpu_to_le16(params);
3029 pSMB->ParameterCount = pSMB->TotalParameterCount;
3030 pSMB->ParameterOffset = cpu_to_le16(offsetof(
3031 struct smb_com_transaction2_qfsi_req, InformationLevel) - 4);
3032 pSMB->DataCount = 0;
3033 pSMB->DataOffset = 0;
3034 pSMB->SetupCount = 1;
3035 pSMB->Reserved3 = 0;
3036 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
3037 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FS_SIZE_INFO);
3038 pSMB->hdr.smb_buf_length += byte_count;
3039 pSMB->ByteCount = cpu_to_le16(byte_count);
3040
3041 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3042 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3043 if (rc) {
3044 cERROR(1, ("Send error in QFSInfo = %d", rc));
3045 } else { /* decode response */
3046 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
3047
3048 if (rc || (pSMBr->ByteCount < 24)) /* BB alsO CHEck enough total bytes returned */
3049 rc = -EIO; /* bad smb */
3050 else {
3051 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
3052 cFYI(1,
3053 ("Decoding qfsinfo response. BCC: %d Offset %d",
3054 pSMBr->ByteCount, data_offset));
3055
3056 response_data =
3057 (FILE_SYSTEM_INFO
3058 *) (((char *) &pSMBr->hdr.Protocol) +
3059 data_offset);
3060 FSData->f_bsize =
3061 le32_to_cpu(response_data->BytesPerSector) *
3062 le32_to_cpu(response_data->
3063 SectorsPerAllocationUnit);
3064 FSData->f_blocks =
3065 le64_to_cpu(response_data->TotalAllocationUnits);
3066 FSData->f_bfree = FSData->f_bavail =
3067 le64_to_cpu(response_data->FreeAllocationUnits);
3068 cFYI(1,
3069 ("Blocks: %lld Free: %lld Block size %ld",
3070 (unsigned long long)FSData->f_blocks,
3071 (unsigned long long)FSData->f_bfree,
3072 FSData->f_bsize));
3073 }
3074 }
3075 cifs_buf_release(pSMB);
3076
3077 if (rc == -EAGAIN)
3078 goto QFSInfoRetry;
3079
3080 return rc;
3081}
3082
3083int
Steve French737b7582005-04-28 22:41:06 -07003084CIFSSMBQFSAttributeInfo(const int xid, struct cifsTconInfo *tcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085{
3086/* level 0x105 SMB_QUERY_FILE_SYSTEM_INFO */
3087 TRANSACTION2_QFSI_REQ *pSMB = NULL;
3088 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
3089 FILE_SYSTEM_ATTRIBUTE_INFO *response_data;
3090 int rc = 0;
3091 int bytes_returned = 0;
3092 __u16 params, byte_count;
3093
3094 cFYI(1, ("In QFSAttributeInfo"));
3095QFSAttributeRetry:
3096 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3097 (void **) &pSMBr);
3098 if (rc)
3099 return rc;
3100
3101 params = 2; /* level */
3102 pSMB->TotalDataCount = 0;
3103 pSMB->MaxParameterCount = cpu_to_le16(2);
3104 pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find exact max SMB PDU from sess structure BB */
3105 pSMB->MaxSetupCount = 0;
3106 pSMB->Reserved = 0;
3107 pSMB->Flags = 0;
3108 pSMB->Timeout = 0;
3109 pSMB->Reserved2 = 0;
3110 byte_count = params + 1 /* pad */ ;
3111 pSMB->TotalParameterCount = cpu_to_le16(params);
3112 pSMB->ParameterCount = pSMB->TotalParameterCount;
3113 pSMB->ParameterOffset = cpu_to_le16(offsetof(
3114 struct smb_com_transaction2_qfsi_req, InformationLevel) - 4);
3115 pSMB->DataCount = 0;
3116 pSMB->DataOffset = 0;
3117 pSMB->SetupCount = 1;
3118 pSMB->Reserved3 = 0;
3119 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
3120 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FS_ATTRIBUTE_INFO);
3121 pSMB->hdr.smb_buf_length += byte_count;
3122 pSMB->ByteCount = cpu_to_le16(byte_count);
3123
3124 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3125 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3126 if (rc) {
3127 cERROR(1, ("Send error in QFSAttributeInfo = %d", rc));
3128 } else { /* decode response */
3129 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
3130
3131 if (rc || (pSMBr->ByteCount < 13)) { /* BB also check enough bytes returned */
3132 rc = -EIO; /* bad smb */
3133 } else {
3134 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
3135 response_data =
3136 (FILE_SYSTEM_ATTRIBUTE_INFO
3137 *) (((char *) &pSMBr->hdr.Protocol) +
3138 data_offset);
3139 memcpy(&tcon->fsAttrInfo, response_data,
3140 sizeof (FILE_SYSTEM_ATTRIBUTE_INFO));
3141 }
3142 }
3143 cifs_buf_release(pSMB);
3144
3145 if (rc == -EAGAIN)
3146 goto QFSAttributeRetry;
3147
3148 return rc;
3149}
3150
3151int
Steve French737b7582005-04-28 22:41:06 -07003152CIFSSMBQFSDeviceInfo(const int xid, struct cifsTconInfo *tcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153{
3154/* level 0x104 SMB_QUERY_FILE_SYSTEM_INFO */
3155 TRANSACTION2_QFSI_REQ *pSMB = NULL;
3156 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
3157 FILE_SYSTEM_DEVICE_INFO *response_data;
3158 int rc = 0;
3159 int bytes_returned = 0;
3160 __u16 params, byte_count;
3161
3162 cFYI(1, ("In QFSDeviceInfo"));
3163QFSDeviceRetry:
3164 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3165 (void **) &pSMBr);
3166 if (rc)
3167 return rc;
3168
3169 params = 2; /* level */
3170 pSMB->TotalDataCount = 0;
3171 pSMB->MaxParameterCount = cpu_to_le16(2);
3172 pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find exact max SMB PDU from sess structure BB */
3173 pSMB->MaxSetupCount = 0;
3174 pSMB->Reserved = 0;
3175 pSMB->Flags = 0;
3176 pSMB->Timeout = 0;
3177 pSMB->Reserved2 = 0;
3178 byte_count = params + 1 /* pad */ ;
3179 pSMB->TotalParameterCount = cpu_to_le16(params);
3180 pSMB->ParameterCount = pSMB->TotalParameterCount;
3181 pSMB->ParameterOffset = cpu_to_le16(offsetof(
3182 struct smb_com_transaction2_qfsi_req, InformationLevel) - 4);
3183
3184 pSMB->DataCount = 0;
3185 pSMB->DataOffset = 0;
3186 pSMB->SetupCount = 1;
3187 pSMB->Reserved3 = 0;
3188 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
3189 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FS_DEVICE_INFO);
3190 pSMB->hdr.smb_buf_length += byte_count;
3191 pSMB->ByteCount = cpu_to_le16(byte_count);
3192
3193 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3194 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3195 if (rc) {
3196 cFYI(1, ("Send error in QFSDeviceInfo = %d", rc));
3197 } else { /* decode response */
3198 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
3199
3200 if (rc || (pSMBr->ByteCount < sizeof (FILE_SYSTEM_DEVICE_INFO)))
3201 rc = -EIO; /* bad smb */
3202 else {
3203 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
3204 response_data =
Steve French737b7582005-04-28 22:41:06 -07003205 (FILE_SYSTEM_DEVICE_INFO *)
3206 (((char *) &pSMBr->hdr.Protocol) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 data_offset);
3208 memcpy(&tcon->fsDevInfo, response_data,
3209 sizeof (FILE_SYSTEM_DEVICE_INFO));
3210 }
3211 }
3212 cifs_buf_release(pSMB);
3213
3214 if (rc == -EAGAIN)
3215 goto QFSDeviceRetry;
3216
3217 return rc;
3218}
3219
3220int
Steve French737b7582005-04-28 22:41:06 -07003221CIFSSMBQFSUnixInfo(const int xid, struct cifsTconInfo *tcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222{
3223/* level 0x200 SMB_QUERY_CIFS_UNIX_INFO */
3224 TRANSACTION2_QFSI_REQ *pSMB = NULL;
3225 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
3226 FILE_SYSTEM_UNIX_INFO *response_data;
3227 int rc = 0;
3228 int bytes_returned = 0;
3229 __u16 params, byte_count;
3230
3231 cFYI(1, ("In QFSUnixInfo"));
3232QFSUnixRetry:
3233 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3234 (void **) &pSMBr);
3235 if (rc)
3236 return rc;
3237
3238 params = 2; /* level */
3239 pSMB->TotalDataCount = 0;
3240 pSMB->DataCount = 0;
3241 pSMB->DataOffset = 0;
3242 pSMB->MaxParameterCount = cpu_to_le16(2);
3243 pSMB->MaxDataCount = cpu_to_le16(100); /* BB find exact max SMB PDU from sess structure BB */
3244 pSMB->MaxSetupCount = 0;
3245 pSMB->Reserved = 0;
3246 pSMB->Flags = 0;
3247 pSMB->Timeout = 0;
3248 pSMB->Reserved2 = 0;
3249 byte_count = params + 1 /* pad */ ;
3250 pSMB->ParameterCount = cpu_to_le16(params);
3251 pSMB->TotalParameterCount = pSMB->ParameterCount;
3252 pSMB->ParameterOffset = cpu_to_le16(offsetof(struct
3253 smb_com_transaction2_qfsi_req, InformationLevel) - 4);
3254 pSMB->SetupCount = 1;
3255 pSMB->Reserved3 = 0;
3256 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
3257 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_CIFS_UNIX_INFO);
3258 pSMB->hdr.smb_buf_length += byte_count;
3259 pSMB->ByteCount = cpu_to_le16(byte_count);
3260
3261 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3262 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3263 if (rc) {
3264 cERROR(1, ("Send error in QFSUnixInfo = %d", rc));
3265 } else { /* decode response */
3266 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
3267
3268 if (rc || (pSMBr->ByteCount < 13)) {
3269 rc = -EIO; /* bad smb */
3270 } else {
3271 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
3272 response_data =
3273 (FILE_SYSTEM_UNIX_INFO
3274 *) (((char *) &pSMBr->hdr.Protocol) +
3275 data_offset);
3276 memcpy(&tcon->fsUnixInfo, response_data,
3277 sizeof (FILE_SYSTEM_UNIX_INFO));
3278 }
3279 }
3280 cifs_buf_release(pSMB);
3281
3282 if (rc == -EAGAIN)
3283 goto QFSUnixRetry;
3284
3285
3286 return rc;
3287}
3288
Jeremy Allisonac670552005-06-22 17:26:35 -07003289int
Steve French45abc6e2005-06-23 13:42:03 -05003290CIFSSMBSetFSUnixInfo(const int xid, struct cifsTconInfo *tcon, __u64 cap)
Jeremy Allisonac670552005-06-22 17:26:35 -07003291{
3292/* level 0x200 SMB_SET_CIFS_UNIX_INFO */
3293 TRANSACTION2_SETFSI_REQ *pSMB = NULL;
3294 TRANSACTION2_SETFSI_RSP *pSMBr = NULL;
3295 int rc = 0;
3296 int bytes_returned = 0;
3297 __u16 params, param_offset, offset, byte_count;
3298
3299 cFYI(1, ("In SETFSUnixInfo"));
3300SETFSUnixRetry:
3301 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3302 (void **) &pSMBr);
3303 if (rc)
3304 return rc;
3305
3306 params = 4; /* 2 bytes zero followed by info level. */
3307 pSMB->MaxSetupCount = 0;
3308 pSMB->Reserved = 0;
3309 pSMB->Flags = 0;
3310 pSMB->Timeout = 0;
3311 pSMB->Reserved2 = 0;
3312 param_offset = offsetof(struct smb_com_transaction2_setfsi_req, FileNum) - 4;
3313 offset = param_offset + params;
3314
3315 pSMB->MaxParameterCount = cpu_to_le16(4);
3316 pSMB->MaxDataCount = cpu_to_le16(100); /* BB find exact max SMB PDU from sess structure BB */
3317 pSMB->SetupCount = 1;
3318 pSMB->Reserved3 = 0;
3319 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FS_INFORMATION);
3320 byte_count = 1 /* pad */ + params + 12;
3321
3322 pSMB->DataCount = cpu_to_le16(12);
3323 pSMB->ParameterCount = cpu_to_le16(params);
3324 pSMB->TotalDataCount = pSMB->DataCount;
3325 pSMB->TotalParameterCount = pSMB->ParameterCount;
3326 pSMB->ParameterOffset = cpu_to_le16(param_offset);
3327 pSMB->DataOffset = cpu_to_le16(offset);
3328
3329 /* Params. */
3330 pSMB->FileNum = 0;
3331 pSMB->InformationLevel = cpu_to_le16(SMB_SET_CIFS_UNIX_INFO);
3332
3333 /* Data. */
3334 pSMB->ClientUnixMajor = cpu_to_le16(CIFS_UNIX_MAJOR_VERSION);
3335 pSMB->ClientUnixMinor = cpu_to_le16(CIFS_UNIX_MINOR_VERSION);
3336 pSMB->ClientUnixCap = cpu_to_le64(cap);
3337
3338 pSMB->hdr.smb_buf_length += byte_count;
3339 pSMB->ByteCount = cpu_to_le16(byte_count);
3340
3341 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3342 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3343 if (rc) {
3344 cERROR(1, ("Send error in SETFSUnixInfo = %d", rc));
3345 } else { /* decode response */
3346 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
3347 if (rc) {
3348 rc = -EIO; /* bad smb */
3349 }
3350 }
3351 cifs_buf_release(pSMB);
3352
3353 if (rc == -EAGAIN)
3354 goto SETFSUnixRetry;
3355
3356 return rc;
3357}
3358
3359
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360
3361int
3362CIFSSMBQFSPosixInfo(const int xid, struct cifsTconInfo *tcon,
Steve French737b7582005-04-28 22:41:06 -07003363 struct kstatfs *FSData)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364{
3365/* level 0x201 SMB_QUERY_CIFS_POSIX_INFO */
3366 TRANSACTION2_QFSI_REQ *pSMB = NULL;
3367 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
3368 FILE_SYSTEM_POSIX_INFO *response_data;
3369 int rc = 0;
3370 int bytes_returned = 0;
3371 __u16 params, byte_count;
3372
3373 cFYI(1, ("In QFSPosixInfo"));
3374QFSPosixRetry:
3375 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3376 (void **) &pSMBr);
3377 if (rc)
3378 return rc;
3379
3380 params = 2; /* level */
3381 pSMB->TotalDataCount = 0;
3382 pSMB->DataCount = 0;
3383 pSMB->DataOffset = 0;
3384 pSMB->MaxParameterCount = cpu_to_le16(2);
3385 pSMB->MaxDataCount = cpu_to_le16(100); /* BB find exact max SMB PDU from sess structure BB */
3386 pSMB->MaxSetupCount = 0;
3387 pSMB->Reserved = 0;
3388 pSMB->Flags = 0;
3389 pSMB->Timeout = 0;
3390 pSMB->Reserved2 = 0;
3391 byte_count = params + 1 /* pad */ ;
3392 pSMB->ParameterCount = cpu_to_le16(params);
3393 pSMB->TotalParameterCount = pSMB->ParameterCount;
3394 pSMB->ParameterOffset = cpu_to_le16(offsetof(struct
3395 smb_com_transaction2_qfsi_req, InformationLevel) - 4);
3396 pSMB->SetupCount = 1;
3397 pSMB->Reserved3 = 0;
3398 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
3399 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_POSIX_FS_INFO);
3400 pSMB->hdr.smb_buf_length += byte_count;
3401 pSMB->ByteCount = cpu_to_le16(byte_count);
3402
3403 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3404 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3405 if (rc) {
3406 cFYI(1, ("Send error in QFSUnixInfo = %d", rc));
3407 } else { /* decode response */
3408 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
3409
3410 if (rc || (pSMBr->ByteCount < 13)) {
3411 rc = -EIO; /* bad smb */
3412 } else {
3413 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
3414 response_data =
3415 (FILE_SYSTEM_POSIX_INFO
3416 *) (((char *) &pSMBr->hdr.Protocol) +
3417 data_offset);
3418 FSData->f_bsize =
3419 le32_to_cpu(response_data->BlockSize);
3420 FSData->f_blocks =
3421 le64_to_cpu(response_data->TotalBlocks);
3422 FSData->f_bfree =
3423 le64_to_cpu(response_data->BlocksAvail);
3424 if(response_data->UserBlocksAvail == -1) {
3425 FSData->f_bavail = FSData->f_bfree;
3426 } else {
3427 FSData->f_bavail =
3428 le64_to_cpu(response_data->UserBlocksAvail);
3429 }
3430 if(response_data->TotalFileNodes != -1)
3431 FSData->f_files =
3432 le64_to_cpu(response_data->TotalFileNodes);
3433 if(response_data->FreeFileNodes != -1)
3434 FSData->f_ffree =
3435 le64_to_cpu(response_data->FreeFileNodes);
3436 }
3437 }
3438 cifs_buf_release(pSMB);
3439
3440 if (rc == -EAGAIN)
3441 goto QFSPosixRetry;
3442
3443 return rc;
3444}
3445
3446
3447/* We can not use write of zero bytes trick to
3448 set file size due to need for large file support. Also note that
3449 this SetPathInfo is preferred to SetFileInfo based method in next
3450 routine which is only needed to work around a sharing violation bug
3451 in Samba which this routine can run into */
3452
3453int
3454CIFSSMBSetEOF(const int xid, struct cifsTconInfo *tcon, const char *fileName,
Steve French737b7582005-04-28 22:41:06 -07003455 __u64 size, int SetAllocation,
3456 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457{
3458 struct smb_com_transaction2_spi_req *pSMB = NULL;
3459 struct smb_com_transaction2_spi_rsp *pSMBr = NULL;
3460 struct file_end_of_file_info *parm_data;
3461 int name_len;
3462 int rc = 0;
3463 int bytes_returned = 0;
3464 __u16 params, byte_count, data_count, param_offset, offset;
3465
3466 cFYI(1, ("In SetEOF"));
3467SetEOFRetry:
3468 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3469 (void **) &pSMBr);
3470 if (rc)
3471 return rc;
3472
3473 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
3474 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05003475 cifsConvertToUCS((__le16 *) pSMB->FileName, fileName,
Steve French737b7582005-04-28 22:41:06 -07003476 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 name_len++; /* trailing null */
3478 name_len *= 2;
3479 } else { /* BB improve the check for buffer overruns BB */
3480 name_len = strnlen(fileName, PATH_MAX);
3481 name_len++; /* trailing null */
3482 strncpy(pSMB->FileName, fileName, name_len);
3483 }
3484 params = 6 + name_len;
3485 data_count = sizeof (struct file_end_of_file_info);
3486 pSMB->MaxParameterCount = cpu_to_le16(2);
3487 pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find max SMB size from sess */
3488 pSMB->MaxSetupCount = 0;
3489 pSMB->Reserved = 0;
3490 pSMB->Flags = 0;
3491 pSMB->Timeout = 0;
3492 pSMB->Reserved2 = 0;
3493 param_offset = offsetof(struct smb_com_transaction2_spi_req,
3494 InformationLevel) - 4;
3495 offset = param_offset + params;
3496 if(SetAllocation) {
3497 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
3498 pSMB->InformationLevel =
3499 cpu_to_le16(SMB_SET_FILE_ALLOCATION_INFO2);
3500 else
3501 pSMB->InformationLevel =
3502 cpu_to_le16(SMB_SET_FILE_ALLOCATION_INFO);
3503 } else /* Set File Size */ {
3504 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
3505 pSMB->InformationLevel =
3506 cpu_to_le16(SMB_SET_FILE_END_OF_FILE_INFO2);
3507 else
3508 pSMB->InformationLevel =
3509 cpu_to_le16(SMB_SET_FILE_END_OF_FILE_INFO);
3510 }
3511
3512 parm_data =
3513 (struct file_end_of_file_info *) (((char *) &pSMB->hdr.Protocol) +
3514 offset);
3515 pSMB->ParameterOffset = cpu_to_le16(param_offset);
3516 pSMB->DataOffset = cpu_to_le16(offset);
3517 pSMB->SetupCount = 1;
3518 pSMB->Reserved3 = 0;
3519 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
3520 byte_count = 3 /* pad */ + params + data_count;
3521 pSMB->DataCount = cpu_to_le16(data_count);
3522 pSMB->TotalDataCount = pSMB->DataCount;
3523 pSMB->ParameterCount = cpu_to_le16(params);
3524 pSMB->TotalParameterCount = pSMB->ParameterCount;
3525 pSMB->Reserved4 = 0;
3526 pSMB->hdr.smb_buf_length += byte_count;
3527 parm_data->FileSize = cpu_to_le64(size);
3528 pSMB->ByteCount = cpu_to_le16(byte_count);
3529 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3530 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3531 if (rc) {
3532 cFYI(1, ("SetPathInfo (file size) returned %d", rc));
3533 }
3534
3535 cifs_buf_release(pSMB);
3536
3537 if (rc == -EAGAIN)
3538 goto SetEOFRetry;
3539
3540 return rc;
3541}
3542
3543int
3544CIFSSMBSetFileSize(const int xid, struct cifsTconInfo *tcon, __u64 size,
3545 __u16 fid, __u32 pid_of_opener, int SetAllocation)
3546{
3547 struct smb_com_transaction2_sfi_req *pSMB = NULL;
3548 struct smb_com_transaction2_sfi_rsp *pSMBr = NULL;
3549 char *data_offset;
3550 struct file_end_of_file_info *parm_data;
3551 int rc = 0;
3552 int bytes_returned = 0;
3553 __u16 params, param_offset, offset, byte_count, count;
3554
3555 cFYI(1, ("SetFileSize (via SetFileInfo) %lld",
3556 (long long)size));
Steve Frenchcd634992005-04-28 22:41:10 -07003557 rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB);
3558
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 if (rc)
3560 return rc;
3561
Steve Frenchcd634992005-04-28 22:41:10 -07003562 pSMBr = (struct smb_com_transaction2_sfi_rsp *)pSMB;
3563
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 pSMB->hdr.Pid = cpu_to_le16((__u16)pid_of_opener);
3565 pSMB->hdr.PidHigh = cpu_to_le16((__u16)(pid_of_opener >> 16));
3566
3567 params = 6;
3568 pSMB->MaxSetupCount = 0;
3569 pSMB->Reserved = 0;
3570 pSMB->Flags = 0;
3571 pSMB->Timeout = 0;
3572 pSMB->Reserved2 = 0;
3573 param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4;
3574 offset = param_offset + params;
3575
3576 data_offset = (char *) (&pSMB->hdr.Protocol) + offset;
3577
3578 count = sizeof(struct file_end_of_file_info);
3579 pSMB->MaxParameterCount = cpu_to_le16(2);
3580 pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find max SMB PDU from sess */
3581 pSMB->SetupCount = 1;
3582 pSMB->Reserved3 = 0;
3583 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION);
3584 byte_count = 3 /* pad */ + params + count;
3585 pSMB->DataCount = cpu_to_le16(count);
3586 pSMB->ParameterCount = cpu_to_le16(params);
3587 pSMB->TotalDataCount = pSMB->DataCount;
3588 pSMB->TotalParameterCount = pSMB->ParameterCount;
3589 pSMB->ParameterOffset = cpu_to_le16(param_offset);
3590 parm_data =
3591 (struct file_end_of_file_info *) (((char *) &pSMB->hdr.Protocol) +
3592 offset);
3593 pSMB->DataOffset = cpu_to_le16(offset);
3594 parm_data->FileSize = cpu_to_le64(size);
3595 pSMB->Fid = fid;
3596 if(SetAllocation) {
3597 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
3598 pSMB->InformationLevel =
3599 cpu_to_le16(SMB_SET_FILE_ALLOCATION_INFO2);
3600 else
3601 pSMB->InformationLevel =
3602 cpu_to_le16(SMB_SET_FILE_ALLOCATION_INFO);
3603 } else /* Set File Size */ {
3604 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
3605 pSMB->InformationLevel =
3606 cpu_to_le16(SMB_SET_FILE_END_OF_FILE_INFO2);
3607 else
3608 pSMB->InformationLevel =
3609 cpu_to_le16(SMB_SET_FILE_END_OF_FILE_INFO);
3610 }
3611 pSMB->Reserved4 = 0;
3612 pSMB->hdr.smb_buf_length += byte_count;
3613 pSMB->ByteCount = cpu_to_le16(byte_count);
3614 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3615 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3616 if (rc) {
3617 cFYI(1,
3618 ("Send error in SetFileInfo (SetFileSize) = %d",
3619 rc));
3620 }
3621
3622 if (pSMB)
Steve Frenchcd634992005-04-28 22:41:10 -07003623 cifs_small_buf_release(pSMB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624
3625 /* Note: On -EAGAIN error only caller can retry on handle based calls
3626 since file handle passed in no longer valid */
3627
3628 return rc;
3629}
3630
3631/* Some legacy servers such as NT4 require that the file times be set on
3632 an open handle, rather than by pathname - this is awkward due to
3633 potential access conflicts on the open, but it is unavoidable for these
3634 old servers since the only other choice is to go from 100 nanosecond DCE
3635 time and resort to the original setpathinfo level which takes the ancient
3636 DOS time format with 2 second granularity */
3637int
3638CIFSSMBSetFileTimes(const int xid, struct cifsTconInfo *tcon, const FILE_BASIC_INFO * data,
3639 __u16 fid)
3640{
3641 struct smb_com_transaction2_sfi_req *pSMB = NULL;
3642 struct smb_com_transaction2_sfi_rsp *pSMBr = NULL;
3643 char *data_offset;
3644 int rc = 0;
3645 int bytes_returned = 0;
3646 __u16 params, param_offset, offset, byte_count, count;
3647
3648 cFYI(1, ("Set Times (via SetFileInfo)"));
Steve Frenchcd634992005-04-28 22:41:10 -07003649 rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB);
3650
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 if (rc)
3652 return rc;
3653
Steve Frenchcd634992005-04-28 22:41:10 -07003654 pSMBr = (struct smb_com_transaction2_sfi_rsp *)pSMB;
3655
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 /* At this point there is no need to override the current pid
3657 with the pid of the opener, but that could change if we someday
3658 use an existing handle (rather than opening one on the fly) */
3659 /* pSMB->hdr.Pid = cpu_to_le16((__u16)pid_of_opener);
3660 pSMB->hdr.PidHigh = cpu_to_le16((__u16)(pid_of_opener >> 16));*/
3661
3662 params = 6;
3663 pSMB->MaxSetupCount = 0;
3664 pSMB->Reserved = 0;
3665 pSMB->Flags = 0;
3666 pSMB->Timeout = 0;
3667 pSMB->Reserved2 = 0;
3668 param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4;
3669 offset = param_offset + params;
3670
3671 data_offset = (char *) (&pSMB->hdr.Protocol) + offset;
3672
3673 count = sizeof (FILE_BASIC_INFO);
3674 pSMB->MaxParameterCount = cpu_to_le16(2);
3675 pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find max SMB PDU from sess */
3676 pSMB->SetupCount = 1;
3677 pSMB->Reserved3 = 0;
3678 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION);
3679 byte_count = 3 /* pad */ + params + count;
3680 pSMB->DataCount = cpu_to_le16(count);
3681 pSMB->ParameterCount = cpu_to_le16(params);
3682 pSMB->TotalDataCount = pSMB->DataCount;
3683 pSMB->TotalParameterCount = pSMB->ParameterCount;
3684 pSMB->ParameterOffset = cpu_to_le16(param_offset);
3685 pSMB->DataOffset = cpu_to_le16(offset);
3686 pSMB->Fid = fid;
3687 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
3688 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_BASIC_INFO2);
3689 else
3690 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_BASIC_INFO);
3691 pSMB->Reserved4 = 0;
3692 pSMB->hdr.smb_buf_length += byte_count;
3693 pSMB->ByteCount = cpu_to_le16(byte_count);
3694 memcpy(data_offset,data,sizeof(FILE_BASIC_INFO));
3695 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3696 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3697 if (rc) {
3698 cFYI(1,("Send error in Set Time (SetFileInfo) = %d",rc));
3699 }
3700
Steve Frenchcd634992005-04-28 22:41:10 -07003701 cifs_small_buf_release(pSMB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702
3703 /* Note: On -EAGAIN error only caller can retry on handle based calls
3704 since file handle passed in no longer valid */
3705
3706 return rc;
3707}
3708
3709
3710int
3711CIFSSMBSetTimes(const int xid, struct cifsTconInfo *tcon, const char *fileName,
3712 const FILE_BASIC_INFO * data,
Steve French737b7582005-04-28 22:41:06 -07003713 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714{
3715 TRANSACTION2_SPI_REQ *pSMB = NULL;
3716 TRANSACTION2_SPI_RSP *pSMBr = NULL;
3717 int name_len;
3718 int rc = 0;
3719 int bytes_returned = 0;
3720 char *data_offset;
3721 __u16 params, param_offset, offset, byte_count, count;
3722
3723 cFYI(1, ("In SetTimes"));
3724
3725SetTimesRetry:
3726 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3727 (void **) &pSMBr);
3728 if (rc)
3729 return rc;
3730
3731 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
3732 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05003733 cifsConvertToUCS((__le16 *) pSMB->FileName, fileName,
Steve French737b7582005-04-28 22:41:06 -07003734 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 name_len++; /* trailing null */
3736 name_len *= 2;
3737 } else { /* BB improve the check for buffer overruns BB */
3738 name_len = strnlen(fileName, PATH_MAX);
3739 name_len++; /* trailing null */
3740 strncpy(pSMB->FileName, fileName, name_len);
3741 }
3742
3743 params = 6 + name_len;
3744 count = sizeof (FILE_BASIC_INFO);
3745 pSMB->MaxParameterCount = cpu_to_le16(2);
3746 pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find exact max SMB PDU from sess structure BB */
3747 pSMB->MaxSetupCount = 0;
3748 pSMB->Reserved = 0;
3749 pSMB->Flags = 0;
3750 pSMB->Timeout = 0;
3751 pSMB->Reserved2 = 0;
3752 param_offset = offsetof(struct smb_com_transaction2_spi_req,
3753 InformationLevel) - 4;
3754 offset = param_offset + params;
3755 data_offset = (char *) (&pSMB->hdr.Protocol) + offset;
3756 pSMB->ParameterOffset = cpu_to_le16(param_offset);
3757 pSMB->DataOffset = cpu_to_le16(offset);
3758 pSMB->SetupCount = 1;
3759 pSMB->Reserved3 = 0;
3760 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
3761 byte_count = 3 /* pad */ + params + count;
3762
3763 pSMB->DataCount = cpu_to_le16(count);
3764 pSMB->ParameterCount = cpu_to_le16(params);
3765 pSMB->TotalDataCount = pSMB->DataCount;
3766 pSMB->TotalParameterCount = pSMB->ParameterCount;
3767 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
3768 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_BASIC_INFO2);
3769 else
3770 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_BASIC_INFO);
3771 pSMB->Reserved4 = 0;
3772 pSMB->hdr.smb_buf_length += byte_count;
3773 memcpy(data_offset, data, sizeof (FILE_BASIC_INFO));
3774 pSMB->ByteCount = cpu_to_le16(byte_count);
3775 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3776 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3777 if (rc) {
3778 cFYI(1, ("SetPathInfo (times) returned %d", rc));
3779 }
3780
3781 cifs_buf_release(pSMB);
3782
3783 if (rc == -EAGAIN)
3784 goto SetTimesRetry;
3785
3786 return rc;
3787}
3788
3789/* Can not be used to set time stamps yet (due to old DOS time format) */
3790/* Can be used to set attributes */
3791#if 0 /* Possibly not needed - since it turns out that strangely NT4 has a bug
3792 handling it anyway and NT4 was what we thought it would be needed for
3793 Do not delete it until we prove whether needed for Win9x though */
3794int
3795CIFSSMBSetAttrLegacy(int xid, struct cifsTconInfo *tcon, char *fileName,
3796 __u16 dos_attrs, const struct nls_table *nls_codepage)
3797{
3798 SETATTR_REQ *pSMB = NULL;
3799 SETATTR_RSP *pSMBr = NULL;
3800 int rc = 0;
3801 int bytes_returned;
3802 int name_len;
3803
3804 cFYI(1, ("In SetAttrLegacy"));
3805
3806SetAttrLgcyRetry:
3807 rc = smb_init(SMB_COM_SETATTR, 8, tcon, (void **) &pSMB,
3808 (void **) &pSMBr);
3809 if (rc)
3810 return rc;
3811
3812 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
3813 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05003814 ConvertToUCS((__le16 *) pSMB->fileName, fileName,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 PATH_MAX, nls_codepage);
3816 name_len++; /* trailing null */
3817 name_len *= 2;
3818 } else { /* BB improve the check for buffer overruns BB */
3819 name_len = strnlen(fileName, PATH_MAX);
3820 name_len++; /* trailing null */
3821 strncpy(pSMB->fileName, fileName, name_len);
3822 }
3823 pSMB->attr = cpu_to_le16(dos_attrs);
3824 pSMB->BufferFormat = 0x04;
3825 pSMB->hdr.smb_buf_length += name_len + 1;
3826 pSMB->ByteCount = cpu_to_le16(name_len + 1);
3827 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3828 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3829 if (rc) {
3830 cFYI(1, ("Error in LegacySetAttr = %d", rc));
3831 }
3832
3833 cifs_buf_release(pSMB);
3834
3835 if (rc == -EAGAIN)
3836 goto SetAttrLgcyRetry;
3837
3838 return rc;
3839}
3840#endif /* temporarily unneeded SetAttr legacy function */
3841
3842int
3843CIFSSMBUnixSetPerms(const int xid, struct cifsTconInfo *tcon,
Steve French737b7582005-04-28 22:41:06 -07003844 char *fileName, __u64 mode, __u64 uid, __u64 gid,
3845 dev_t device, const struct nls_table *nls_codepage,
3846 int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847{
3848 TRANSACTION2_SPI_REQ *pSMB = NULL;
3849 TRANSACTION2_SPI_RSP *pSMBr = NULL;
3850 int name_len;
3851 int rc = 0;
3852 int bytes_returned = 0;
3853 FILE_UNIX_BASIC_INFO *data_offset;
3854 __u16 params, param_offset, offset, count, byte_count;
3855
3856 cFYI(1, ("In SetUID/GID/Mode"));
3857setPermsRetry:
3858 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3859 (void **) &pSMBr);
3860 if (rc)
3861 return rc;
3862
3863 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
3864 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05003865 cifsConvertToUCS((__le16 *) pSMB->FileName, fileName,
Steve French737b7582005-04-28 22:41:06 -07003866 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 name_len++; /* trailing null */
3868 name_len *= 2;
3869 } else { /* BB improve the check for buffer overruns BB */
3870 name_len = strnlen(fileName, PATH_MAX);
3871 name_len++; /* trailing null */
3872 strncpy(pSMB->FileName, fileName, name_len);
3873 }
3874
3875 params = 6 + name_len;
3876 count = sizeof (FILE_UNIX_BASIC_INFO);
3877 pSMB->MaxParameterCount = cpu_to_le16(2);
3878 pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find exact max SMB PDU from sess structure BB */
3879 pSMB->MaxSetupCount = 0;
3880 pSMB->Reserved = 0;
3881 pSMB->Flags = 0;
3882 pSMB->Timeout = 0;
3883 pSMB->Reserved2 = 0;
3884 param_offset = offsetof(struct smb_com_transaction2_spi_req,
3885 InformationLevel) - 4;
3886 offset = param_offset + params;
3887 data_offset =
3888 (FILE_UNIX_BASIC_INFO *) ((char *) &pSMB->hdr.Protocol +
3889 offset);
3890 memset(data_offset, 0, count);
3891 pSMB->DataOffset = cpu_to_le16(offset);
3892 pSMB->ParameterOffset = cpu_to_le16(param_offset);
3893 pSMB->SetupCount = 1;
3894 pSMB->Reserved3 = 0;
3895 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
3896 byte_count = 3 /* pad */ + params + count;
3897 pSMB->ParameterCount = cpu_to_le16(params);
3898 pSMB->DataCount = cpu_to_le16(count);
3899 pSMB->TotalParameterCount = pSMB->ParameterCount;
3900 pSMB->TotalDataCount = pSMB->DataCount;
3901 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_UNIX_BASIC);
3902 pSMB->Reserved4 = 0;
3903 pSMB->hdr.smb_buf_length += byte_count;
3904 data_offset->Uid = cpu_to_le64(uid);
3905 data_offset->Gid = cpu_to_le64(gid);
3906 /* better to leave device as zero when it is */
3907 data_offset->DevMajor = cpu_to_le64(MAJOR(device));
3908 data_offset->DevMinor = cpu_to_le64(MINOR(device));
3909 data_offset->Permissions = cpu_to_le64(mode);
3910
3911 if(S_ISREG(mode))
3912 data_offset->Type = cpu_to_le32(UNIX_FILE);
3913 else if(S_ISDIR(mode))
3914 data_offset->Type = cpu_to_le32(UNIX_DIR);
3915 else if(S_ISLNK(mode))
3916 data_offset->Type = cpu_to_le32(UNIX_SYMLINK);
3917 else if(S_ISCHR(mode))
3918 data_offset->Type = cpu_to_le32(UNIX_CHARDEV);
3919 else if(S_ISBLK(mode))
3920 data_offset->Type = cpu_to_le32(UNIX_BLOCKDEV);
3921 else if(S_ISFIFO(mode))
3922 data_offset->Type = cpu_to_le32(UNIX_FIFO);
3923 else if(S_ISSOCK(mode))
3924 data_offset->Type = cpu_to_le32(UNIX_SOCKET);
3925
3926
3927 pSMB->ByteCount = cpu_to_le16(byte_count);
3928 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3929 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3930 if (rc) {
3931 cFYI(1, ("SetPathInfo (perms) returned %d", rc));
3932 }
3933
3934 if (pSMB)
3935 cifs_buf_release(pSMB);
3936 if (rc == -EAGAIN)
3937 goto setPermsRetry;
3938 return rc;
3939}
3940
3941int CIFSSMBNotify(const int xid, struct cifsTconInfo *tcon,
3942 const int notify_subdirs, const __u16 netfid,
3943 __u32 filter, const struct nls_table *nls_codepage)
3944{
3945 int rc = 0;
3946 struct smb_com_transaction_change_notify_req * pSMB = NULL;
3947 struct smb_com_transaction_change_notify_rsp * pSMBr = NULL;
3948 int bytes_returned;
3949
3950 cFYI(1, ("In CIFSSMBNotify for file handle %d",(int)netfid));
3951 rc = smb_init(SMB_COM_NT_TRANSACT, 23, tcon, (void **) &pSMB,
3952 (void **) &pSMBr);
3953 if (rc)
3954 return rc;
3955
3956 pSMB->TotalParameterCount = 0 ;
3957 pSMB->TotalDataCount = 0;
3958 pSMB->MaxParameterCount = cpu_to_le32(2);
3959 /* BB find exact data count max from sess structure BB */
3960 pSMB->MaxDataCount = 0; /* same in little endian or be */
3961 pSMB->MaxSetupCount = 4;
3962 pSMB->Reserved = 0;
3963 pSMB->ParameterOffset = 0;
3964 pSMB->DataCount = 0;
3965 pSMB->DataOffset = 0;
3966 pSMB->SetupCount = 4; /* single byte does not need le conversion */
3967 pSMB->SubCommand = cpu_to_le16(NT_TRANSACT_NOTIFY_CHANGE);
3968 pSMB->ParameterCount = pSMB->TotalParameterCount;
3969 if(notify_subdirs)
3970 pSMB->WatchTree = 1; /* one byte - no le conversion needed */
3971 pSMB->Reserved2 = 0;
3972 pSMB->CompletionFilter = cpu_to_le32(filter);
3973 pSMB->Fid = netfid; /* file handle always le */
3974 pSMB->ByteCount = 0;
3975
3976 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3977 (struct smb_hdr *) pSMBr, &bytes_returned, -1);
3978 if (rc) {
3979 cFYI(1, ("Error in Notify = %d", rc));
3980 }
3981 cifs_buf_release(pSMB);
3982 return rc;
3983}
3984#ifdef CONFIG_CIFS_XATTR
3985ssize_t
3986CIFSSMBQAllEAs(const int xid, struct cifsTconInfo *tcon,
3987 const unsigned char *searchName,
3988 char * EAData, size_t buf_size,
Steve French737b7582005-04-28 22:41:06 -07003989 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990{
3991 /* BB assumes one setup word */
3992 TRANSACTION2_QPI_REQ *pSMB = NULL;
3993 TRANSACTION2_QPI_RSP *pSMBr = NULL;
3994 int rc = 0;
3995 int bytes_returned;
3996 int name_len;
3997 struct fea * temp_fea;
3998 char * temp_ptr;
3999 __u16 params, byte_count;
4000
4001 cFYI(1, ("In Query All EAs path %s", searchName));
4002QAllEAsRetry:
4003 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
4004 (void **) &pSMBr);
4005 if (rc)
4006 return rc;
4007
4008 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
4009 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05004010 cifsConvertToUCS((__le16 *) pSMB->FileName, searchName,
Steve French737b7582005-04-28 22:41:06 -07004011 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 name_len++; /* trailing null */
4013 name_len *= 2;
4014 } else { /* BB improve the check for buffer overruns BB */
4015 name_len = strnlen(searchName, PATH_MAX);
4016 name_len++; /* trailing null */
4017 strncpy(pSMB->FileName, searchName, name_len);
4018 }
4019
4020 params = 2 /* level */ + 4 /* reserved */ + name_len /* includes NUL */ ;
4021 pSMB->TotalDataCount = 0;
4022 pSMB->MaxParameterCount = cpu_to_le16(2);
4023 pSMB->MaxDataCount = cpu_to_le16(4000); /* BB find exact max SMB PDU from sess structure BB */
4024 pSMB->MaxSetupCount = 0;
4025 pSMB->Reserved = 0;
4026 pSMB->Flags = 0;
4027 pSMB->Timeout = 0;
4028 pSMB->Reserved2 = 0;
4029 pSMB->ParameterOffset = cpu_to_le16(offsetof(
4030 struct smb_com_transaction2_qpi_req ,InformationLevel) - 4);
4031 pSMB->DataCount = 0;
4032 pSMB->DataOffset = 0;
4033 pSMB->SetupCount = 1;
4034 pSMB->Reserved3 = 0;
4035 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
4036 byte_count = params + 1 /* pad */ ;
4037 pSMB->TotalParameterCount = cpu_to_le16(params);
4038 pSMB->ParameterCount = pSMB->TotalParameterCount;
4039 pSMB->InformationLevel = cpu_to_le16(SMB_INFO_QUERY_ALL_EAS);
4040 pSMB->Reserved4 = 0;
4041 pSMB->hdr.smb_buf_length += byte_count;
4042 pSMB->ByteCount = cpu_to_le16(byte_count);
4043
4044 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4045 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4046 if (rc) {
4047 cFYI(1, ("Send error in QueryAllEAs = %d", rc));
4048 } else { /* decode response */
4049 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
4050
4051 /* BB also check enough total bytes returned */
4052 /* BB we need to improve the validity checking
4053 of these trans2 responses */
4054 if (rc || (pSMBr->ByteCount < 4))
4055 rc = -EIO; /* bad smb */
4056 /* else if (pFindData){
4057 memcpy((char *) pFindData,
4058 (char *) &pSMBr->hdr.Protocol +
4059 data_offset, kl);
4060 }*/ else {
4061 /* check that length of list is not more than bcc */
4062 /* check that each entry does not go beyond length
4063 of list */
4064 /* check that each element of each entry does not
4065 go beyond end of list */
4066 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
4067 struct fealist * ea_response_data;
4068 rc = 0;
4069 /* validate_trans2_offsets() */
4070 /* BB to check if(start of smb + data_offset > &bcc+ bcc)*/
4071 ea_response_data = (struct fealist *)
4072 (((char *) &pSMBr->hdr.Protocol) +
4073 data_offset);
4074 name_len = le32_to_cpu(ea_response_data->list_len);
4075 cFYI(1,("ea length %d", name_len));
4076 if(name_len <= 8) {
4077 /* returned EA size zeroed at top of function */
4078 cFYI(1,("empty EA list returned from server"));
4079 } else {
4080 /* account for ea list len */
4081 name_len -= 4;
4082 temp_fea = ea_response_data->list;
4083 temp_ptr = (char *)temp_fea;
4084 while(name_len > 0) {
4085 __u16 value_len;
4086 name_len -= 4;
4087 temp_ptr += 4;
4088 rc += temp_fea->name_len;
4089 /* account for prefix user. and trailing null */
4090 rc = rc + 5 + 1;
4091 if(rc<(int)buf_size) {
4092 memcpy(EAData,"user.",5);
4093 EAData+=5;
4094 memcpy(EAData,temp_ptr,temp_fea->name_len);
4095 EAData+=temp_fea->name_len;
4096 /* null terminate name */
4097 *EAData = 0;
4098 EAData = EAData + 1;
4099 } else if(buf_size == 0) {
4100 /* skip copy - calc size only */
4101 } else {
4102 /* stop before overrun buffer */
4103 rc = -ERANGE;
4104 break;
4105 }
4106 name_len -= temp_fea->name_len;
4107 temp_ptr += temp_fea->name_len;
4108 /* account for trailing null */
4109 name_len--;
4110 temp_ptr++;
4111 value_len = le16_to_cpu(temp_fea->value_len);
4112 name_len -= value_len;
4113 temp_ptr += value_len;
4114 /* BB check that temp_ptr is still within smb BB*/
4115 /* no trailing null to account for in value len */
4116 /* go on to next EA */
4117 temp_fea = (struct fea *)temp_ptr;
4118 }
4119 }
4120 }
4121 }
4122 if (pSMB)
4123 cifs_buf_release(pSMB);
4124 if (rc == -EAGAIN)
4125 goto QAllEAsRetry;
4126
4127 return (ssize_t)rc;
4128}
4129
4130ssize_t CIFSSMBQueryEA(const int xid,struct cifsTconInfo * tcon,
4131 const unsigned char * searchName,const unsigned char * ea_name,
4132 unsigned char * ea_value, size_t buf_size,
Steve French737b7582005-04-28 22:41:06 -07004133 const struct nls_table *nls_codepage, int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134{
4135 TRANSACTION2_QPI_REQ *pSMB = NULL;
4136 TRANSACTION2_QPI_RSP *pSMBr = NULL;
4137 int rc = 0;
4138 int bytes_returned;
4139 int name_len;
4140 struct fea * temp_fea;
4141 char * temp_ptr;
4142 __u16 params, byte_count;
4143
4144 cFYI(1, ("In Query EA path %s", searchName));
4145QEARetry:
4146 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
4147 (void **) &pSMBr);
4148 if (rc)
4149 return rc;
4150
4151 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
4152 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05004153 cifsConvertToUCS((__le16 *) pSMB->FileName, searchName,
Steve French737b7582005-04-28 22:41:06 -07004154 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155 name_len++; /* trailing null */
4156 name_len *= 2;
4157 } else { /* BB improve the check for buffer overruns BB */
4158 name_len = strnlen(searchName, PATH_MAX);
4159 name_len++; /* trailing null */
4160 strncpy(pSMB->FileName, searchName, name_len);
4161 }
4162
4163 params = 2 /* level */ + 4 /* reserved */ + name_len /* includes NUL */ ;
4164 pSMB->TotalDataCount = 0;
4165 pSMB->MaxParameterCount = cpu_to_le16(2);
4166 pSMB->MaxDataCount = cpu_to_le16(4000); /* BB find exact max SMB PDU from sess structure BB */
4167 pSMB->MaxSetupCount = 0;
4168 pSMB->Reserved = 0;
4169 pSMB->Flags = 0;
4170 pSMB->Timeout = 0;
4171 pSMB->Reserved2 = 0;
4172 pSMB->ParameterOffset = cpu_to_le16(offsetof(
4173 struct smb_com_transaction2_qpi_req ,InformationLevel) - 4);
4174 pSMB->DataCount = 0;
4175 pSMB->DataOffset = 0;
4176 pSMB->SetupCount = 1;
4177 pSMB->Reserved3 = 0;
4178 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
4179 byte_count = params + 1 /* pad */ ;
4180 pSMB->TotalParameterCount = cpu_to_le16(params);
4181 pSMB->ParameterCount = pSMB->TotalParameterCount;
4182 pSMB->InformationLevel = cpu_to_le16(SMB_INFO_QUERY_ALL_EAS);
4183 pSMB->Reserved4 = 0;
4184 pSMB->hdr.smb_buf_length += byte_count;
4185 pSMB->ByteCount = cpu_to_le16(byte_count);
4186
4187 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4188 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4189 if (rc) {
4190 cFYI(1, ("Send error in Query EA = %d", rc));
4191 } else { /* decode response */
4192 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
4193
4194 /* BB also check enough total bytes returned */
4195 /* BB we need to improve the validity checking
4196 of these trans2 responses */
4197 if (rc || (pSMBr->ByteCount < 4))
4198 rc = -EIO; /* bad smb */
4199 /* else if (pFindData){
4200 memcpy((char *) pFindData,
4201 (char *) &pSMBr->hdr.Protocol +
4202 data_offset, kl);
4203 }*/ else {
4204 /* check that length of list is not more than bcc */
4205 /* check that each entry does not go beyond length
4206 of list */
4207 /* check that each element of each entry does not
4208 go beyond end of list */
4209 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
4210 struct fealist * ea_response_data;
4211 rc = -ENODATA;
4212 /* validate_trans2_offsets() */
4213 /* BB to check if(start of smb + data_offset > &bcc+ bcc)*/
4214 ea_response_data = (struct fealist *)
4215 (((char *) &pSMBr->hdr.Protocol) +
4216 data_offset);
4217 name_len = le32_to_cpu(ea_response_data->list_len);
4218 cFYI(1,("ea length %d", name_len));
4219 if(name_len <= 8) {
4220 /* returned EA size zeroed at top of function */
4221 cFYI(1,("empty EA list returned from server"));
4222 } else {
4223 /* account for ea list len */
4224 name_len -= 4;
4225 temp_fea = ea_response_data->list;
4226 temp_ptr = (char *)temp_fea;
4227 /* loop through checking if we have a matching
4228 name and then return the associated value */
4229 while(name_len > 0) {
4230 __u16 value_len;
4231 name_len -= 4;
4232 temp_ptr += 4;
4233 value_len = le16_to_cpu(temp_fea->value_len);
4234 /* BB validate that value_len falls within SMB,
4235 even though maximum for name_len is 255 */
4236 if(memcmp(temp_fea->name,ea_name,
4237 temp_fea->name_len) == 0) {
4238 /* found a match */
4239 rc = value_len;
4240 /* account for prefix user. and trailing null */
4241 if(rc<=(int)buf_size) {
4242 memcpy(ea_value,
4243 temp_fea->name+temp_fea->name_len+1,
4244 rc);
4245 /* ea values, unlike ea names,
4246 are not null terminated */
4247 } else if(buf_size == 0) {
4248 /* skip copy - calc size only */
4249 } else {
4250 /* stop before overrun buffer */
4251 rc = -ERANGE;
4252 }
4253 break;
4254 }
4255 name_len -= temp_fea->name_len;
4256 temp_ptr += temp_fea->name_len;
4257 /* account for trailing null */
4258 name_len--;
4259 temp_ptr++;
4260 name_len -= value_len;
4261 temp_ptr += value_len;
4262 /* no trailing null to account for in value len */
4263 /* go on to next EA */
4264 temp_fea = (struct fea *)temp_ptr;
4265 }
4266 }
4267 }
4268 }
4269 if (pSMB)
4270 cifs_buf_release(pSMB);
4271 if (rc == -EAGAIN)
4272 goto QEARetry;
4273
4274 return (ssize_t)rc;
4275}
4276
4277int
4278CIFSSMBSetEA(const int xid, struct cifsTconInfo *tcon, const char *fileName,
4279 const char * ea_name, const void * ea_value,
Steve French737b7582005-04-28 22:41:06 -07004280 const __u16 ea_value_len, const struct nls_table *nls_codepage,
4281 int remap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282{
4283 struct smb_com_transaction2_spi_req *pSMB = NULL;
4284 struct smb_com_transaction2_spi_rsp *pSMBr = NULL;
4285 struct fealist *parm_data;
4286 int name_len;
4287 int rc = 0;
4288 int bytes_returned = 0;
4289 __u16 params, param_offset, byte_count, offset, count;
4290
4291 cFYI(1, ("In SetEA"));
4292SetEARetry:
4293 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
4294 (void **) &pSMBr);
4295 if (rc)
4296 return rc;
4297
4298 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
4299 name_len =
Steve Frenchb1a45692005-05-17 16:07:23 -05004300 cifsConvertToUCS((__le16 *) pSMB->FileName, fileName,
Steve French737b7582005-04-28 22:41:06 -07004301 PATH_MAX, nls_codepage, remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 name_len++; /* trailing null */
4303 name_len *= 2;
4304 } else { /* BB improve the check for buffer overruns BB */
4305 name_len = strnlen(fileName, PATH_MAX);
4306 name_len++; /* trailing null */
4307 strncpy(pSMB->FileName, fileName, name_len);
4308 }
4309
4310 params = 6 + name_len;
4311
4312 /* done calculating parms using name_len of file name,
4313 now use name_len to calculate length of ea name
4314 we are going to create in the inode xattrs */
4315 if(ea_name == NULL)
4316 name_len = 0;
4317 else
4318 name_len = strnlen(ea_name,255);
4319
4320 count = sizeof(*parm_data) + ea_value_len + name_len + 1;
4321 pSMB->MaxParameterCount = cpu_to_le16(2);
4322 pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find max SMB size from sess */
4323 pSMB->MaxSetupCount = 0;
4324 pSMB->Reserved = 0;
4325 pSMB->Flags = 0;
4326 pSMB->Timeout = 0;
4327 pSMB->Reserved2 = 0;
4328 param_offset = offsetof(struct smb_com_transaction2_spi_req,
4329 InformationLevel) - 4;
4330 offset = param_offset + params;
4331 pSMB->InformationLevel =
4332 cpu_to_le16(SMB_SET_FILE_EA);
4333
4334 parm_data =
4335 (struct fealist *) (((char *) &pSMB->hdr.Protocol) +
4336 offset);
4337 pSMB->ParameterOffset = cpu_to_le16(param_offset);
4338 pSMB->DataOffset = cpu_to_le16(offset);
4339 pSMB->SetupCount = 1;
4340 pSMB->Reserved3 = 0;
4341 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
4342 byte_count = 3 /* pad */ + params + count;
4343 pSMB->DataCount = cpu_to_le16(count);
4344 parm_data->list_len = cpu_to_le32(count);
4345 parm_data->list[0].EA_flags = 0;
4346 /* we checked above that name len is less than 255 */
4347 parm_data->list[0].name_len = (__u8)name_len;;
4348 /* EA names are always ASCII */
4349 if(ea_name)
4350 strncpy(parm_data->list[0].name,ea_name,name_len);
4351 parm_data->list[0].name[name_len] = 0;
4352 parm_data->list[0].value_len = cpu_to_le16(ea_value_len);
4353 /* caller ensures that ea_value_len is less than 64K but
4354 we need to ensure that it fits within the smb */
4355
4356 /*BB add length check that it would fit in negotiated SMB buffer size BB */
4357 /* if(ea_value_len > buffer_size - 512 (enough for header)) */
4358 if(ea_value_len)
4359 memcpy(parm_data->list[0].name+name_len+1,ea_value,ea_value_len);
4360
4361 pSMB->TotalDataCount = pSMB->DataCount;
4362 pSMB->ParameterCount = cpu_to_le16(params);
4363 pSMB->TotalParameterCount = pSMB->ParameterCount;
4364 pSMB->Reserved4 = 0;
4365 pSMB->hdr.smb_buf_length += byte_count;
4366 pSMB->ByteCount = cpu_to_le16(byte_count);
4367 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4368 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4369 if (rc) {
4370 cFYI(1, ("SetPathInfo (EA) returned %d", rc));
4371 }
4372
4373 cifs_buf_release(pSMB);
4374
4375 if (rc == -EAGAIN)
4376 goto SetEARetry;
4377
4378 return rc;
4379}
4380
4381#endif