4 * Copyright (C) International Business Machines Corp., 2002,2010
5 * Author(s): Steve French (sfrench@us.ibm.com)
7 * Contains the routines for constructing the SMB PDUs themselves
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.
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.
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
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 differently for reconnection purposes since we never */
28 /* want to reuse a stale file handle and only the caller knows the file info */
31 #include <linux/kernel.h>
32 #include <linux/vfs.h>
33 #include <linux/slab.h>
34 #include <linux/posix_acl_xattr.h>
35 #include <linux/pagemap.h>
36 #include <linux/swap.h>
37 #include <linux/task_io_accounting_ops.h>
38 #include <asm/uaccess.h>
42 #include "cifsproto.h"
43 #include "cifs_unicode.h"
44 #include "cifs_debug.h"
47 #ifdef CONFIG_CIFS_POSIX
52 #ifdef CONFIG_CIFS_WEAK_PW_HASH
53 {LANMAN_PROT, "\2LM1.2X002"},
54 {LANMAN2_PROT, "\2LANMAN2.1"},
55 #endif /* weak password hashing for legacy clients */
56 {CIFS_PROT, "\2NT LM 0.12"},
57 {POSIX_PROT, "\2POSIX 2"},
65 #ifdef CONFIG_CIFS_WEAK_PW_HASH
66 {LANMAN_PROT, "\2LM1.2X002"},
67 {LANMAN2_PROT, "\2LANMAN2.1"},
68 #endif /* weak password hashing for legacy clients */
69 {CIFS_PROT, "\2NT LM 0.12"},
74 /* define the number of elements in the cifs dialect array */
75 #ifdef CONFIG_CIFS_POSIX
76 #ifdef CONFIG_CIFS_WEAK_PW_HASH
77 #define CIFS_NUM_PROT 4
79 #define CIFS_NUM_PROT 2
80 #endif /* CIFS_WEAK_PW_HASH */
82 #ifdef CONFIG_CIFS_WEAK_PW_HASH
83 #define CIFS_NUM_PROT 3
85 #define CIFS_NUM_PROT 1
86 #endif /* CONFIG_CIFS_WEAK_PW_HASH */
87 #endif /* CIFS_POSIX */
90 * Mark as invalid, all open files on tree connections since they
91 * were closed when session to server was lost.
94 cifs_mark_open_files_invalid(struct cifs_tcon *tcon)
96 struct cifsFileInfo *open_file = NULL;
97 struct list_head *tmp;
98 struct list_head *tmp1;
100 /* list all files open on tree connection and mark them invalid */
101 spin_lock(&cifs_file_list_lock);
102 list_for_each_safe(tmp, tmp1, &tcon->openFileList) {
103 open_file = list_entry(tmp, struct cifsFileInfo, tlist);
104 open_file->invalidHandle = true;
105 open_file->oplock_break_cancelled = true;
107 spin_unlock(&cifs_file_list_lock);
109 * BB Add call to invalidate_inodes(sb) for all superblocks mounted
114 /* reconnect the socket, tcon, and smb session if needed */
116 cifs_reconnect_tcon(struct cifs_tcon *tcon, int smb_command)
119 struct cifs_ses *ses;
120 struct TCP_Server_Info *server;
121 struct nls_table *nls_codepage;
124 * SMBs NegProt, SessSetup, uLogoff do not have tcon yet so check for
125 * tcp and smb session status done differently for those three - in the
132 server = ses->server;
135 * only tree disconnect, open, and write, (and ulogoff which does not
136 * have tcon) are allowed as we start force umount
138 if (tcon->tidStatus == CifsExiting) {
139 if (smb_command != SMB_COM_WRITE_ANDX &&
140 smb_command != SMB_COM_OPEN_ANDX &&
141 smb_command != SMB_COM_TREE_DISCONNECT) {
142 cifs_dbg(FYI, "can not send cmd %d while umounting\n",
149 * Give demultiplex thread up to 10 seconds to reconnect, should be
150 * greater than cifs socket timeout which is 7 seconds
152 while (server->tcpStatus == CifsNeedReconnect) {
153 wait_event_interruptible_timeout(server->response_q,
154 (server->tcpStatus != CifsNeedReconnect), 10 * HZ);
156 /* are we still trying to reconnect? */
157 if (server->tcpStatus != CifsNeedReconnect)
161 * on "soft" mounts we wait once. Hard mounts keep
162 * retrying until process is killed or server comes
166 cifs_dbg(FYI, "gave up waiting on reconnect in smb_init\n");
171 if (!ses->need_reconnect && !tcon->need_reconnect)
174 nls_codepage = load_nls_default();
177 * need to prevent multiple threads trying to simultaneously
178 * reconnect the same SMB session
180 mutex_lock(&ses->session_mutex);
181 rc = cifs_negotiate_protocol(0, ses);
182 if (rc == 0 && ses->need_reconnect)
183 rc = cifs_setup_session(0, ses, nls_codepage);
185 /* do we need to reconnect tcon? */
186 if (rc || !tcon->need_reconnect) {
187 mutex_unlock(&ses->session_mutex);
191 cifs_mark_open_files_invalid(tcon);
192 rc = CIFSTCon(0, ses, tcon->treeName, tcon, nls_codepage);
193 mutex_unlock(&ses->session_mutex);
194 cifs_dbg(FYI, "reconnect tcon rc = %d\n", rc);
200 * FIXME: check if wsize needs updated due to negotiated smb buffer
203 atomic_inc(&tconInfoReconnectCount);
205 /* tell server Unix caps we support */
206 if (ses->capabilities & CAP_UNIX)
207 reset_cifs_unix_caps(0, tcon, NULL, NULL);
210 * Removed call to reopen open files here. It is safer (and faster) to
211 * reopen files one at a time as needed in read and write.
213 * FIXME: what about file locks? don't we need to reclaim them ASAP?
218 * Check if handle based operation so we know whether we can continue
219 * or not without returning to caller to reset file handle
221 switch (smb_command) {
222 case SMB_COM_READ_ANDX:
223 case SMB_COM_WRITE_ANDX:
225 case SMB_COM_FIND_CLOSE2:
226 case SMB_COM_LOCKING_ANDX:
230 unload_nls(nls_codepage);
234 /* Allocate and return pointer to an SMB request buffer, and set basic
235 SMB information in the SMB header. If the return code is zero, this
236 function must have filled in request_buf pointer */
238 small_smb_init(int smb_command, int wct, struct cifs_tcon *tcon,
243 rc = cifs_reconnect_tcon(tcon, smb_command);
247 *request_buf = cifs_small_buf_get();
248 if (*request_buf == NULL) {
249 /* BB should we add a retry in here if not a writepage? */
253 header_assemble((struct smb_hdr *) *request_buf, smb_command,
257 cifs_stats_inc(&tcon->num_smbs_sent);
263 small_smb_init_no_tc(const int smb_command, const int wct,
264 struct cifs_ses *ses, void **request_buf)
267 struct smb_hdr *buffer;
269 rc = small_smb_init(smb_command, wct, NULL, request_buf);
273 buffer = (struct smb_hdr *)*request_buf;
274 buffer->Mid = get_next_mid(ses->server);
275 if (ses->capabilities & CAP_UNICODE)
276 buffer->Flags2 |= SMBFLG2_UNICODE;
277 if (ses->capabilities & CAP_STATUS32)
278 buffer->Flags2 |= SMBFLG2_ERR_STATUS;
280 /* uid, tid can stay at zero as set in header assemble */
282 /* BB add support for turning on the signing when
283 this function is used after 1st of session setup requests */
288 /* If the return code is zero, this function must fill in request_buf pointer */
290 __smb_init(int smb_command, int wct, struct cifs_tcon *tcon,
291 void **request_buf, void **response_buf)
293 *request_buf = cifs_buf_get();
294 if (*request_buf == NULL) {
295 /* BB should we add a retry in here if not a writepage? */
298 /* Although the original thought was we needed the response buf for */
299 /* potential retries of smb operations it turns out we can determine */
300 /* from the mid flags when the request buffer can be resent without */
301 /* having to use a second distinct buffer for the response */
303 *response_buf = *request_buf;
305 header_assemble((struct smb_hdr *) *request_buf, smb_command, tcon,
309 cifs_stats_inc(&tcon->num_smbs_sent);
314 /* If the return code is zero, this function must fill in request_buf pointer */
316 smb_init(int smb_command, int wct, struct cifs_tcon *tcon,
317 void **request_buf, void **response_buf)
321 rc = cifs_reconnect_tcon(tcon, smb_command);
325 return __smb_init(smb_command, wct, tcon, request_buf, response_buf);
329 smb_init_no_reconnect(int smb_command, int wct, struct cifs_tcon *tcon,
330 void **request_buf, void **response_buf)
332 if (tcon->ses->need_reconnect || tcon->need_reconnect)
335 return __smb_init(smb_command, wct, tcon, request_buf, response_buf);
338 static int validate_t2(struct smb_t2_rsp *pSMB)
340 unsigned int total_size;
342 /* check for plausible wct */
343 if (pSMB->hdr.WordCount < 10)
346 /* check for parm and data offset going beyond end of smb */
347 if (get_unaligned_le16(&pSMB->t2_rsp.ParameterOffset) > 1024 ||
348 get_unaligned_le16(&pSMB->t2_rsp.DataOffset) > 1024)
351 total_size = get_unaligned_le16(&pSMB->t2_rsp.ParameterCount);
352 if (total_size >= 512)
355 /* check that bcc is at least as big as parms + data, and that it is
356 * less than negotiated smb buffer
358 total_size += get_unaligned_le16(&pSMB->t2_rsp.DataCount);
359 if (total_size > get_bcc(&pSMB->hdr) ||
360 total_size >= CIFSMaxBufSize + MAX_CIFS_HDR_SIZE)
365 cifs_dump_mem("Invalid transact2 SMB: ", (char *)pSMB,
366 sizeof(struct smb_t2_rsp) + 16);
371 decode_ext_sec_blob(struct cifs_ses *ses, NEGOTIATE_RSP *pSMBr)
375 char *guid = pSMBr->u.extended_response.GUID;
376 struct TCP_Server_Info *server = ses->server;
378 count = get_bcc(&pSMBr->hdr);
379 if (count < SMB1_CLIENT_GUID_SIZE)
382 spin_lock(&cifs_tcp_ses_lock);
383 if (server->srv_count > 1) {
384 spin_unlock(&cifs_tcp_ses_lock);
385 if (memcmp(server->server_GUID, guid, SMB1_CLIENT_GUID_SIZE) != 0) {
386 cifs_dbg(FYI, "server UID changed\n");
387 memcpy(server->server_GUID, guid, SMB1_CLIENT_GUID_SIZE);
390 spin_unlock(&cifs_tcp_ses_lock);
391 memcpy(server->server_GUID, guid, SMB1_CLIENT_GUID_SIZE);
394 if (count == SMB1_CLIENT_GUID_SIZE) {
395 server->sec_ntlmssp = true;
397 count -= SMB1_CLIENT_GUID_SIZE;
398 rc = decode_negTokenInit(
399 pSMBr->u.extended_response.SecurityBlob, count, server);
408 cifs_enable_signing(struct TCP_Server_Info *server, bool mnt_sign_required)
410 bool srv_sign_required = server->sec_mode & server->vals->signing_required;
411 bool srv_sign_enabled = server->sec_mode & server->vals->signing_enabled;
412 bool mnt_sign_enabled = global_secflags & CIFSSEC_MAY_SIGN;
415 * Is signing required by mnt options? If not then check
416 * global_secflags to see if it is there.
418 if (!mnt_sign_required)
419 mnt_sign_required = ((global_secflags & CIFSSEC_MUST_SIGN) ==
423 * If signing is required then it's automatically enabled too,
424 * otherwise, check to see if the secflags allow it.
426 mnt_sign_enabled = mnt_sign_required ? mnt_sign_required :
427 (global_secflags & CIFSSEC_MAY_SIGN);
429 /* If server requires signing, does client allow it? */
430 if (srv_sign_required) {
431 if (!mnt_sign_enabled) {
432 cifs_dbg(VFS, "Server requires signing, but it's disabled in SecurityFlags!");
438 /* If client requires signing, does server allow it? */
439 if (mnt_sign_required) {
440 if (!srv_sign_enabled) {
441 cifs_dbg(VFS, "Server does not support signing!");
450 #ifdef CONFIG_CIFS_WEAK_PW_HASH
452 decode_lanman_negprot_rsp(struct TCP_Server_Info *server, NEGOTIATE_RSP *pSMBr)
455 struct lanman_neg_rsp *rsp = (struct lanman_neg_rsp *)pSMBr;
457 if (server->dialect != LANMAN_PROT && server->dialect != LANMAN2_PROT)
460 server->sec_mode = le16_to_cpu(rsp->SecurityMode);
461 server->maxReq = min_t(unsigned int,
462 le16_to_cpu(rsp->MaxMpxCount),
464 set_credits(server, server->maxReq);
465 server->maxBuf = le16_to_cpu(rsp->MaxBufSize);
466 /* even though we do not use raw we might as well set this
467 accurately, in case we ever find a need for it */
468 if ((le16_to_cpu(rsp->RawMode) & RAW_ENABLE) == RAW_ENABLE) {
469 server->max_rw = 0xFF00;
470 server->capabilities = CAP_MPX_MODE | CAP_RAW_MODE;
472 server->max_rw = 0;/* do not need to use raw anyway */
473 server->capabilities = CAP_MPX_MODE;
475 tmp = (__s16)le16_to_cpu(rsp->ServerTimeZone);
477 /* OS/2 often does not set timezone therefore
478 * we must use server time to calc time zone.
479 * Could deviate slightly from the right zone.
480 * Smallest defined timezone difference is 15 minutes
481 * (i.e. Nepal). Rounding up/down is done to match
484 int val, seconds, remain, result;
485 struct timespec ts, utc;
487 ts = cnvrtDosUnixTm(rsp->SrvTime.Date,
488 rsp->SrvTime.Time, 0);
489 cifs_dbg(FYI, "SrvTime %d sec since 1970 (utc: %d) diff: %d\n",
490 (int)ts.tv_sec, (int)utc.tv_sec,
491 (int)(utc.tv_sec - ts.tv_sec));
492 val = (int)(utc.tv_sec - ts.tv_sec);
494 result = (seconds / MIN_TZ_ADJ) * MIN_TZ_ADJ;
495 remain = seconds % MIN_TZ_ADJ;
496 if (remain >= (MIN_TZ_ADJ / 2))
497 result += MIN_TZ_ADJ;
500 server->timeAdj = result;
502 server->timeAdj = (int)tmp;
503 server->timeAdj *= 60; /* also in seconds */
505 cifs_dbg(FYI, "server->timeAdj: %d seconds\n", server->timeAdj);
508 /* BB get server time for time conversions and add
509 code to use it and timezone since this is not UTC */
511 if (rsp->EncryptionKeyLength ==
512 cpu_to_le16(CIFS_CRYPTO_KEY_SIZE)) {
513 memcpy(server->cryptkey, rsp->EncryptionKey,
514 CIFS_CRYPTO_KEY_SIZE);
515 } else if (server->sec_mode & SECMODE_PW_ENCRYPT) {
516 return -EIO; /* need cryptkey unless plain text */
519 cifs_dbg(FYI, "LANMAN negotiated\n");
524 decode_lanman_negprot_rsp(struct TCP_Server_Info *server, NEGOTIATE_RSP *pSMBr)
526 cifs_dbg(VFS, "mount failed, cifs module not built with CIFS_WEAK_PW_HASH support\n");
532 should_set_ext_sec_flag(enum securityEnum sectype)
539 if (global_secflags &
540 (CIFSSEC_MAY_KRB5 | CIFSSEC_MAY_NTLMSSP))
549 CIFSSMBNegotiate(const unsigned int xid, struct cifs_ses *ses)
552 NEGOTIATE_RSP *pSMBr;
556 struct TCP_Server_Info *server = ses->server;
560 WARN(1, "%s: server is NULL!\n", __func__);
564 rc = smb_init(SMB_COM_NEGOTIATE, 0, NULL /* no tcon yet */ ,
565 (void **) &pSMB, (void **) &pSMBr);
569 pSMB->hdr.Mid = get_next_mid(server);
570 pSMB->hdr.Flags2 |= (SMBFLG2_UNICODE | SMBFLG2_ERR_STATUS);
572 if (should_set_ext_sec_flag(ses->sectype)) {
573 cifs_dbg(FYI, "Requesting extended security.");
574 pSMB->hdr.Flags2 |= SMBFLG2_EXT_SEC;
578 for (i = 0; i < CIFS_NUM_PROT; i++) {
579 strncpy(pSMB->DialectsArray+count, protocols[i].name, 16);
580 count += strlen(protocols[i].name) + 1;
581 /* null at end of source and target buffers anyway */
583 inc_rfc1001_len(pSMB, count);
584 pSMB->ByteCount = cpu_to_le16(count);
586 rc = SendReceive(xid, ses, (struct smb_hdr *) pSMB,
587 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
591 server->dialect = le16_to_cpu(pSMBr->DialectIndex);
592 cifs_dbg(FYI, "Dialect: %d\n", server->dialect);
593 /* Check wct = 1 error case */
594 if ((pSMBr->hdr.WordCount < 13) || (server->dialect == BAD_PROT)) {
595 /* core returns wct = 1, but we do not ask for core - otherwise
596 small wct just comes when dialect index is -1 indicating we
597 could not negotiate a common dialect */
600 } else if (pSMBr->hdr.WordCount == 13) {
601 server->negflavor = CIFS_NEGFLAVOR_LANMAN;
602 rc = decode_lanman_negprot_rsp(server, pSMBr);
604 } else if (pSMBr->hdr.WordCount != 17) {
609 /* else wct == 17, NTLM or better */
611 server->sec_mode = pSMBr->SecurityMode;
612 if ((server->sec_mode & SECMODE_USER) == 0)
613 cifs_dbg(FYI, "share mode security\n");
615 /* one byte, so no need to convert this or EncryptionKeyLen from
617 server->maxReq = min_t(unsigned int, le16_to_cpu(pSMBr->MaxMpxCount),
619 set_credits(server, server->maxReq);
620 /* probably no need to store and check maxvcs */
621 server->maxBuf = le32_to_cpu(pSMBr->MaxBufferSize);
622 server->max_rw = le32_to_cpu(pSMBr->MaxRawSize);
623 cifs_dbg(NOISY, "Max buf = %d\n", ses->server->maxBuf);
624 server->capabilities = le32_to_cpu(pSMBr->Capabilities);
625 server->timeAdj = (int)(__s16)le16_to_cpu(pSMBr->ServerTimeZone);
626 server->timeAdj *= 60;
628 if (pSMBr->EncryptionKeyLength == CIFS_CRYPTO_KEY_SIZE) {
629 server->negflavor = CIFS_NEGFLAVOR_UNENCAP;
630 memcpy(ses->server->cryptkey, pSMBr->u.EncryptionKey,
631 CIFS_CRYPTO_KEY_SIZE);
632 } else if ((pSMBr->hdr.Flags2 & SMBFLG2_EXT_SEC ||
633 server->capabilities & CAP_EXTENDED_SECURITY) &&
634 (pSMBr->EncryptionKeyLength == 0)) {
635 server->negflavor = CIFS_NEGFLAVOR_EXTENDED;
636 rc = decode_ext_sec_blob(ses, pSMBr);
637 } else if (server->sec_mode & SECMODE_PW_ENCRYPT) {
638 rc = -EIO; /* no crypt key only if plain text pwd */
640 server->negflavor = CIFS_NEGFLAVOR_UNENCAP;
641 server->capabilities &= ~CAP_EXTENDED_SECURITY;
646 rc = cifs_enable_signing(server, ses->sign);
648 cifs_buf_release(pSMB);
650 cifs_dbg(FYI, "negprot rc %d\n", rc);
655 CIFSSMBTDis(const unsigned int xid, struct cifs_tcon *tcon)
657 struct smb_hdr *smb_buffer;
660 cifs_dbg(FYI, "In tree disconnect\n");
662 /* BB: do we need to check this? These should never be NULL. */
663 if ((tcon->ses == NULL) || (tcon->ses->server == NULL))
667 * No need to return error on this operation if tid invalidated and
668 * closed on server already e.g. due to tcp session crashing. Also,
669 * the tcon is no longer on the list, so no need to take lock before
672 if ((tcon->need_reconnect) || (tcon->ses->need_reconnect))
675 rc = small_smb_init(SMB_COM_TREE_DISCONNECT, 0, tcon,
676 (void **)&smb_buffer);
680 rc = SendReceiveNoRsp(xid, tcon->ses, (char *)smb_buffer, 0);
682 cifs_dbg(FYI, "Tree disconnect failed %d\n", rc);
684 /* No need to return error on this operation if tid invalidated and
685 closed on server already e.g. due to tcp session crashing */
693 * This is a no-op for now. We're not really interested in the reply, but
694 * rather in the fact that the server sent one and that server->lstrp
697 * FIXME: maybe we should consider checking that the reply matches request?
700 cifs_echo_callback(struct mid_q_entry *mid)
702 struct TCP_Server_Info *server = mid->callback_data;
704 DeleteMidQEntry(mid);
705 add_credits(server, 1, CIFS_ECHO_OP);
709 CIFSSMBEcho(struct TCP_Server_Info *server)
714 struct smb_rqst rqst = { .rq_iov = &iov,
717 cifs_dbg(FYI, "In echo request\n");
719 rc = small_smb_init(SMB_COM_ECHO, 0, NULL, (void **)&smb);
723 /* set up echo request */
724 smb->hdr.Tid = 0xffff;
725 smb->hdr.WordCount = 1;
726 put_unaligned_le16(1, &smb->EchoCount);
727 put_bcc(1, &smb->hdr);
729 inc_rfc1001_len(smb, 3);
731 iov.iov_len = be32_to_cpu(smb->hdr.smb_buf_length) + 4;
733 rc = cifs_call_async(server, &rqst, NULL, cifs_echo_callback,
734 server, CIFS_ASYNC_OP | CIFS_ECHO_OP);
736 cifs_dbg(FYI, "Echo request failed: %d\n", rc);
738 cifs_small_buf_release(smb);
744 CIFSSMBLogoff(const unsigned int xid, struct cifs_ses *ses)
746 LOGOFF_ANDX_REQ *pSMB;
749 cifs_dbg(FYI, "In SMBLogoff for session disconnect\n");
752 * BB: do we need to check validity of ses and server? They should
753 * always be valid since we have an active reference. If not, that
754 * should probably be a BUG()
756 if (!ses || !ses->server)
759 mutex_lock(&ses->session_mutex);
760 if (ses->need_reconnect)
761 goto session_already_dead; /* no need to send SMBlogoff if uid
762 already closed due to reconnect */
763 rc = small_smb_init(SMB_COM_LOGOFF_ANDX, 2, NULL, (void **)&pSMB);
765 mutex_unlock(&ses->session_mutex);
769 pSMB->hdr.Mid = get_next_mid(ses->server);
771 if (ses->server->sign)
772 pSMB->hdr.Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
774 pSMB->hdr.Uid = ses->Suid;
776 pSMB->AndXCommand = 0xFF;
777 rc = SendReceiveNoRsp(xid, ses, (char *) pSMB, 0);
778 session_already_dead:
779 mutex_unlock(&ses->session_mutex);
781 /* if session dead then we do not need to do ulogoff,
782 since server closed smb session, no sense reporting
790 CIFSPOSIXDelFile(const unsigned int xid, struct cifs_tcon *tcon,
791 const char *fileName, __u16 type,
792 const struct nls_table *nls_codepage, int remap)
794 TRANSACTION2_SPI_REQ *pSMB = NULL;
795 TRANSACTION2_SPI_RSP *pSMBr = NULL;
796 struct unlink_psx_rq *pRqD;
799 int bytes_returned = 0;
800 __u16 params, param_offset, offset, byte_count;
802 cifs_dbg(FYI, "In POSIX delete\n");
804 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
809 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
811 cifsConvertToUTF16((__le16 *) pSMB->FileName, fileName,
812 PATH_MAX, nls_codepage, remap);
813 name_len++; /* trailing null */
815 } else { /* BB add path length overrun check */
816 name_len = strnlen(fileName, PATH_MAX);
817 name_len++; /* trailing null */
818 strncpy(pSMB->FileName, fileName, name_len);
821 params = 6 + name_len;
822 pSMB->MaxParameterCount = cpu_to_le16(2);
823 pSMB->MaxDataCount = 0; /* BB double check this with jra */
824 pSMB->MaxSetupCount = 0;
829 param_offset = offsetof(struct smb_com_transaction2_spi_req,
830 InformationLevel) - 4;
831 offset = param_offset + params;
833 /* Setup pointer to Request Data (inode type) */
834 pRqD = (struct unlink_psx_rq *)(((char *)&pSMB->hdr.Protocol) + offset);
835 pRqD->type = cpu_to_le16(type);
836 pSMB->ParameterOffset = cpu_to_le16(param_offset);
837 pSMB->DataOffset = cpu_to_le16(offset);
838 pSMB->SetupCount = 1;
840 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
841 byte_count = 3 /* pad */ + params + sizeof(struct unlink_psx_rq);
843 pSMB->DataCount = cpu_to_le16(sizeof(struct unlink_psx_rq));
844 pSMB->TotalDataCount = cpu_to_le16(sizeof(struct unlink_psx_rq));
845 pSMB->ParameterCount = cpu_to_le16(params);
846 pSMB->TotalParameterCount = pSMB->ParameterCount;
847 pSMB->InformationLevel = cpu_to_le16(SMB_POSIX_UNLINK);
849 inc_rfc1001_len(pSMB, byte_count);
850 pSMB->ByteCount = cpu_to_le16(byte_count);
851 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
852 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
854 cifs_dbg(FYI, "Posix delete returned %d\n", rc);
855 cifs_buf_release(pSMB);
857 cifs_stats_inc(&tcon->stats.cifs_stats.num_deletes);
866 CIFSSMBDelFile(const unsigned int xid, struct cifs_tcon *tcon, const char *name,
867 struct cifs_sb_info *cifs_sb)
869 DELETE_FILE_REQ *pSMB = NULL;
870 DELETE_FILE_RSP *pSMBr = NULL;
874 int remap = cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR;
877 rc = smb_init(SMB_COM_DELETE, 1, tcon, (void **) &pSMB,
882 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
883 name_len = cifsConvertToUTF16((__le16 *) pSMB->fileName, name,
884 PATH_MAX, cifs_sb->local_nls,
886 name_len++; /* trailing null */
888 } else { /* BB improve check for buffer overruns BB */
889 name_len = strnlen(name, PATH_MAX);
890 name_len++; /* trailing null */
891 strncpy(pSMB->fileName, name, name_len);
893 pSMB->SearchAttributes =
894 cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM);
895 pSMB->BufferFormat = 0x04;
896 inc_rfc1001_len(pSMB, name_len + 1);
897 pSMB->ByteCount = cpu_to_le16(name_len + 1);
898 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
899 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
900 cifs_stats_inc(&tcon->stats.cifs_stats.num_deletes);
902 cifs_dbg(FYI, "Error in RMFile = %d\n", rc);
904 cifs_buf_release(pSMB);
912 CIFSSMBRmDir(const unsigned int xid, struct cifs_tcon *tcon, const char *name,
913 struct cifs_sb_info *cifs_sb)
915 DELETE_DIRECTORY_REQ *pSMB = NULL;
916 DELETE_DIRECTORY_RSP *pSMBr = NULL;
920 int remap = cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR;
922 cifs_dbg(FYI, "In CIFSSMBRmDir\n");
924 rc = smb_init(SMB_COM_DELETE_DIRECTORY, 0, tcon, (void **) &pSMB,
929 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
930 name_len = cifsConvertToUTF16((__le16 *) pSMB->DirName, name,
931 PATH_MAX, cifs_sb->local_nls,
933 name_len++; /* trailing null */
935 } else { /* BB improve check for buffer overruns BB */
936 name_len = strnlen(name, PATH_MAX);
937 name_len++; /* trailing null */
938 strncpy(pSMB->DirName, name, name_len);
941 pSMB->BufferFormat = 0x04;
942 inc_rfc1001_len(pSMB, name_len + 1);
943 pSMB->ByteCount = cpu_to_le16(name_len + 1);
944 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
945 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
946 cifs_stats_inc(&tcon->stats.cifs_stats.num_rmdirs);
948 cifs_dbg(FYI, "Error in RMDir = %d\n", rc);
950 cifs_buf_release(pSMB);
957 CIFSSMBMkDir(const unsigned int xid, struct cifs_tcon *tcon, const char *name,
958 struct cifs_sb_info *cifs_sb)
961 CREATE_DIRECTORY_REQ *pSMB = NULL;
962 CREATE_DIRECTORY_RSP *pSMBr = NULL;
965 int remap = cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR;
967 cifs_dbg(FYI, "In CIFSSMBMkDir\n");
969 rc = smb_init(SMB_COM_CREATE_DIRECTORY, 0, tcon, (void **) &pSMB,
974 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
975 name_len = cifsConvertToUTF16((__le16 *) pSMB->DirName, name,
976 PATH_MAX, cifs_sb->local_nls,
978 name_len++; /* trailing null */
980 } else { /* BB improve check for buffer overruns BB */
981 name_len = strnlen(name, PATH_MAX);
982 name_len++; /* trailing null */
983 strncpy(pSMB->DirName, name, name_len);
986 pSMB->BufferFormat = 0x04;
987 inc_rfc1001_len(pSMB, name_len + 1);
988 pSMB->ByteCount = cpu_to_le16(name_len + 1);
989 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
990 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
991 cifs_stats_inc(&tcon->stats.cifs_stats.num_mkdirs);
993 cifs_dbg(FYI, "Error in Mkdir = %d\n", rc);
995 cifs_buf_release(pSMB);
1002 CIFSPOSIXCreate(const unsigned int xid, struct cifs_tcon *tcon,
1003 __u32 posix_flags, __u64 mode, __u16 *netfid,
1004 FILE_UNIX_BASIC_INFO *pRetData, __u32 *pOplock,
1005 const char *name, const struct nls_table *nls_codepage,
1008 TRANSACTION2_SPI_REQ *pSMB = NULL;
1009 TRANSACTION2_SPI_RSP *pSMBr = NULL;
1012 int bytes_returned = 0;
1013 __u16 params, param_offset, offset, byte_count, count;
1014 OPEN_PSX_REQ *pdata;
1015 OPEN_PSX_RSP *psx_rsp;
1017 cifs_dbg(FYI, "In POSIX Create\n");
1019 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
1024 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
1026 cifsConvertToUTF16((__le16 *) pSMB->FileName, name,
1027 PATH_MAX, nls_codepage, remap);
1028 name_len++; /* trailing null */
1030 } else { /* BB improve the check for buffer overruns BB */
1031 name_len = strnlen(name, PATH_MAX);
1032 name_len++; /* trailing null */
1033 strncpy(pSMB->FileName, name, name_len);
1036 params = 6 + name_len;
1037 count = sizeof(OPEN_PSX_REQ);
1038 pSMB->MaxParameterCount = cpu_to_le16(2);
1039 pSMB->MaxDataCount = cpu_to_le16(1000); /* large enough */
1040 pSMB->MaxSetupCount = 0;
1044 pSMB->Reserved2 = 0;
1045 param_offset = offsetof(struct smb_com_transaction2_spi_req,
1046 InformationLevel) - 4;
1047 offset = param_offset + params;
1048 pdata = (OPEN_PSX_REQ *)(((char *)&pSMB->hdr.Protocol) + offset);
1049 pdata->Level = cpu_to_le16(SMB_QUERY_FILE_UNIX_BASIC);
1050 pdata->Permissions = cpu_to_le64(mode);
1051 pdata->PosixOpenFlags = cpu_to_le32(posix_flags);
1052 pdata->OpenFlags = cpu_to_le32(*pOplock);
1053 pSMB->ParameterOffset = cpu_to_le16(param_offset);
1054 pSMB->DataOffset = cpu_to_le16(offset);
1055 pSMB->SetupCount = 1;
1056 pSMB->Reserved3 = 0;
1057 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
1058 byte_count = 3 /* pad */ + params + count;
1060 pSMB->DataCount = cpu_to_le16(count);
1061 pSMB->ParameterCount = cpu_to_le16(params);
1062 pSMB->TotalDataCount = pSMB->DataCount;
1063 pSMB->TotalParameterCount = pSMB->ParameterCount;
1064 pSMB->InformationLevel = cpu_to_le16(SMB_POSIX_OPEN);
1065 pSMB->Reserved4 = 0;
1066 inc_rfc1001_len(pSMB, byte_count);
1067 pSMB->ByteCount = cpu_to_le16(byte_count);
1068 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
1069 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
1071 cifs_dbg(FYI, "Posix create returned %d\n", rc);
1072 goto psx_create_err;
1075 cifs_dbg(FYI, "copying inode info\n");
1076 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
1078 if (rc || get_bcc(&pSMBr->hdr) < sizeof(OPEN_PSX_RSP)) {
1079 rc = -EIO; /* bad smb */
1080 goto psx_create_err;
1083 /* copy return information to pRetData */
1084 psx_rsp = (OPEN_PSX_RSP *)((char *) &pSMBr->hdr.Protocol
1085 + le16_to_cpu(pSMBr->t2.DataOffset));
1087 *pOplock = le16_to_cpu(psx_rsp->OplockFlags);
1089 *netfid = psx_rsp->Fid; /* cifs fid stays in le */
1090 /* Let caller know file was created so we can set the mode. */
1091 /* Do we care about the CreateAction in any other cases? */
1092 if (cpu_to_le32(FILE_CREATE) == psx_rsp->CreateAction)
1093 *pOplock |= CIFS_CREATE_ACTION;
1094 /* check to make sure response data is there */
1095 if (psx_rsp->ReturnedLevel != cpu_to_le16(SMB_QUERY_FILE_UNIX_BASIC)) {
1096 pRetData->Type = cpu_to_le32(-1); /* unknown */
1097 cifs_dbg(NOISY, "unknown type\n");
1099 if (get_bcc(&pSMBr->hdr) < sizeof(OPEN_PSX_RSP)
1100 + sizeof(FILE_UNIX_BASIC_INFO)) {
1101 cifs_dbg(VFS, "Open response data too small\n");
1102 pRetData->Type = cpu_to_le32(-1);
1103 goto psx_create_err;
1105 memcpy((char *) pRetData,
1106 (char *)psx_rsp + sizeof(OPEN_PSX_RSP),
1107 sizeof(FILE_UNIX_BASIC_INFO));
1111 cifs_buf_release(pSMB);
1113 if (posix_flags & SMB_O_DIRECTORY)
1114 cifs_stats_inc(&tcon->stats.cifs_stats.num_posixmkdirs);
1116 cifs_stats_inc(&tcon->stats.cifs_stats.num_posixopens);
1124 static __u16 convert_disposition(int disposition)
1128 switch (disposition) {
1129 case FILE_SUPERSEDE:
1130 ofun = SMBOPEN_OCREATE | SMBOPEN_OTRUNC;
1133 ofun = SMBOPEN_OAPPEND;
1136 ofun = SMBOPEN_OCREATE;
1139 ofun = SMBOPEN_OCREATE | SMBOPEN_OAPPEND;
1141 case FILE_OVERWRITE:
1142 ofun = SMBOPEN_OTRUNC;
1144 case FILE_OVERWRITE_IF:
1145 ofun = SMBOPEN_OCREATE | SMBOPEN_OTRUNC;
1148 cifs_dbg(FYI, "unknown disposition %d\n", disposition);
1149 ofun = SMBOPEN_OAPPEND; /* regular open */
1155 access_flags_to_smbopen_mode(const int access_flags)
1157 int masked_flags = access_flags & (GENERIC_READ | GENERIC_WRITE);
1159 if (masked_flags == GENERIC_READ)
1160 return SMBOPEN_READ;
1161 else if (masked_flags == GENERIC_WRITE)
1162 return SMBOPEN_WRITE;
1164 /* just go for read/write */
1165 return SMBOPEN_READWRITE;
1169 SMBLegacyOpen(const unsigned int xid, struct cifs_tcon *tcon,
1170 const char *fileName, const int openDisposition,
1171 const int access_flags, const int create_options, __u16 *netfid,
1172 int *pOplock, FILE_ALL_INFO *pfile_info,
1173 const struct nls_table *nls_codepage, int remap)
1176 OPENX_REQ *pSMB = NULL;
1177 OPENX_RSP *pSMBr = NULL;
1183 rc = smb_init(SMB_COM_OPEN_ANDX, 15, tcon, (void **) &pSMB,
1188 pSMB->AndXCommand = 0xFF; /* none */
1190 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
1191 count = 1; /* account for one byte pad to word boundary */
1193 cifsConvertToUTF16((__le16 *) (pSMB->fileName + 1),
1194 fileName, PATH_MAX, nls_codepage, remap);
1195 name_len++; /* trailing null */
1197 } else { /* BB improve check for buffer overruns BB */
1198 count = 0; /* no pad */
1199 name_len = strnlen(fileName, PATH_MAX);
1200 name_len++; /* trailing null */
1201 strncpy(pSMB->fileName, fileName, name_len);
1203 if (*pOplock & REQ_OPLOCK)
1204 pSMB->OpenFlags = cpu_to_le16(REQ_OPLOCK);
1205 else if (*pOplock & REQ_BATCHOPLOCK)
1206 pSMB->OpenFlags = cpu_to_le16(REQ_BATCHOPLOCK);
1208 pSMB->OpenFlags |= cpu_to_le16(REQ_MORE_INFO);
1209 pSMB->Mode = cpu_to_le16(access_flags_to_smbopen_mode(access_flags));
1210 pSMB->Mode |= cpu_to_le16(0x40); /* deny none */
1211 /* set file as system file if special file such
1212 as fifo and server expecting SFU style and
1213 no Unix extensions */
1215 if (create_options & CREATE_OPTION_SPECIAL)
1216 pSMB->FileAttributes = cpu_to_le16(ATTR_SYSTEM);
1217 else /* BB FIXME BB */
1218 pSMB->FileAttributes = cpu_to_le16(0/*ATTR_NORMAL*/);
1220 if (create_options & CREATE_OPTION_READONLY)
1221 pSMB->FileAttributes |= cpu_to_le16(ATTR_READONLY);
1224 /* pSMB->CreateOptions = cpu_to_le32(create_options &
1225 CREATE_OPTIONS_MASK); */
1226 /* BB FIXME END BB */
1228 pSMB->Sattr = cpu_to_le16(ATTR_HIDDEN | ATTR_SYSTEM | ATTR_DIRECTORY);
1229 pSMB->OpenFunction = cpu_to_le16(convert_disposition(openDisposition));
1231 inc_rfc1001_len(pSMB, count);
1233 pSMB->ByteCount = cpu_to_le16(count);
1234 /* long_op set to 1 to allow for oplock break timeouts */
1235 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
1236 (struct smb_hdr *)pSMBr, &bytes_returned, 0);
1237 cifs_stats_inc(&tcon->stats.cifs_stats.num_opens);
1239 cifs_dbg(FYI, "Error in Open = %d\n", rc);
1241 /* BB verify if wct == 15 */
1243 /* *pOplock = pSMBr->OplockLevel; */ /* BB take from action field*/
1245 *netfid = pSMBr->Fid; /* cifs fid stays in le */
1246 /* Let caller know file was created so we can set the mode. */
1247 /* Do we care about the CreateAction in any other cases? */
1249 /* if (cpu_to_le32(FILE_CREATE) == pSMBr->CreateAction)
1250 *pOplock |= CIFS_CREATE_ACTION; */
1254 pfile_info->CreationTime = 0; /* BB convert CreateTime*/
1255 pfile_info->LastAccessTime = 0; /* BB fixme */
1256 pfile_info->LastWriteTime = 0; /* BB fixme */
1257 pfile_info->ChangeTime = 0; /* BB fixme */
1258 pfile_info->Attributes =
1259 cpu_to_le32(le16_to_cpu(pSMBr->FileAttributes));
1260 /* the file_info buf is endian converted by caller */
1261 pfile_info->AllocationSize =
1262 cpu_to_le64(le32_to_cpu(pSMBr->EndOfFile));
1263 pfile_info->EndOfFile = pfile_info->AllocationSize;
1264 pfile_info->NumberOfLinks = cpu_to_le32(1);
1265 pfile_info->DeletePending = 0;
1269 cifs_buf_release(pSMB);
1276 CIFS_open(const unsigned int xid, struct cifs_open_parms *oparms, int *oplock,
1280 OPEN_REQ *req = NULL;
1281 OPEN_RSP *rsp = NULL;
1285 struct cifs_sb_info *cifs_sb = oparms->cifs_sb;
1286 struct cifs_tcon *tcon = oparms->tcon;
1287 int remap = cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR;
1288 const struct nls_table *nls = cifs_sb->local_nls;
1289 int create_options = oparms->create_options;
1290 int desired_access = oparms->desired_access;
1291 int disposition = oparms->disposition;
1292 const char *path = oparms->path;
1295 rc = smb_init(SMB_COM_NT_CREATE_ANDX, 24, tcon, (void **)&req,
1300 /* no commands go after this */
1301 req->AndXCommand = 0xFF;
1303 if (req->hdr.Flags2 & SMBFLG2_UNICODE) {
1304 /* account for one byte pad to word boundary */
1306 name_len = cifsConvertToUTF16((__le16 *)(req->fileName + 1),
1307 path, PATH_MAX, nls, remap);
1311 req->NameLength = cpu_to_le16(name_len);
1313 /* BB improve check for buffer overruns BB */
1316 name_len = strnlen(path, PATH_MAX);
1319 req->NameLength = cpu_to_le16(name_len);
1320 strncpy(req->fileName, path, name_len);
1323 if (*oplock & REQ_OPLOCK)
1324 req->OpenFlags = cpu_to_le32(REQ_OPLOCK);
1325 else if (*oplock & REQ_BATCHOPLOCK)
1326 req->OpenFlags = cpu_to_le32(REQ_BATCHOPLOCK);
1328 req->DesiredAccess = cpu_to_le32(desired_access);
1329 req->AllocationSize = 0;
1332 * Set file as system file if special file such as fifo and server
1333 * expecting SFU style and no Unix extensions.
1335 if (create_options & CREATE_OPTION_SPECIAL)
1336 req->FileAttributes = cpu_to_le32(ATTR_SYSTEM);
1338 req->FileAttributes = cpu_to_le32(ATTR_NORMAL);
1341 * XP does not handle ATTR_POSIX_SEMANTICS but it helps speed up case
1342 * sensitive checks for other servers such as Samba.
1344 if (tcon->ses->capabilities & CAP_UNIX)
1345 req->FileAttributes |= cpu_to_le32(ATTR_POSIX_SEMANTICS);
1347 if (create_options & CREATE_OPTION_READONLY)
1348 req->FileAttributes |= cpu_to_le32(ATTR_READONLY);
1350 req->ShareAccess = cpu_to_le32(FILE_SHARE_ALL);
1351 req->CreateDisposition = cpu_to_le32(disposition);
1352 req->CreateOptions = cpu_to_le32(create_options & CREATE_OPTIONS_MASK);
1354 /* BB Expirement with various impersonation levels and verify */
1355 req->ImpersonationLevel = cpu_to_le32(SECURITY_IMPERSONATION);
1356 req->SecurityFlags = SECURITY_CONTEXT_TRACKING|SECURITY_EFFECTIVE_ONLY;
1359 inc_rfc1001_len(req, count);
1361 req->ByteCount = cpu_to_le16(count);
1362 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *)req,
1363 (struct smb_hdr *)rsp, &bytes_returned, 0);
1364 cifs_stats_inc(&tcon->stats.cifs_stats.num_opens);
1366 cifs_dbg(FYI, "Error in Open = %d\n", rc);
1367 cifs_buf_release(req);
1373 /* 1 byte no need to le_to_cpu */
1374 *oplock = rsp->OplockLevel;
1375 /* cifs fid stays in le */
1376 oparms->fid->netfid = rsp->Fid;
1378 /* Let caller know file was created so we can set the mode. */
1379 /* Do we care about the CreateAction in any other cases? */
1380 if (cpu_to_le32(FILE_CREATE) == rsp->CreateAction)
1381 *oplock |= CIFS_CREATE_ACTION;
1384 /* copy from CreationTime to Attributes */
1385 memcpy((char *)buf, (char *)&rsp->CreationTime, 36);
1386 /* the file_info buf is endian converted by caller */
1387 buf->AllocationSize = rsp->AllocationSize;
1388 buf->EndOfFile = rsp->EndOfFile;
1389 buf->NumberOfLinks = cpu_to_le32(1);
1390 buf->DeletePending = 0;
1393 cifs_buf_release(req);
1398 * Discard any remaining data in the current SMB. To do this, we borrow the
1402 cifs_readv_discard(struct TCP_Server_Info *server, struct mid_q_entry *mid)
1404 unsigned int rfclen = get_rfc1002_length(server->smallbuf);
1405 int remaining = rfclen + 4 - server->total_read;
1406 struct cifs_readdata *rdata = mid->callback_data;
1408 while (remaining > 0) {
1411 length = cifs_read_from_socket(server, server->bigbuf,
1412 min_t(unsigned int, remaining,
1413 CIFSMaxBufSize + MAX_HEADER_SIZE(server)));
1416 server->total_read += length;
1417 remaining -= length;
1420 dequeue_mid(mid, rdata->result);
1425 cifs_readv_receive(struct TCP_Server_Info *server, struct mid_q_entry *mid)
1428 unsigned int data_offset, data_len;
1429 struct cifs_readdata *rdata = mid->callback_data;
1430 char *buf = server->smallbuf;
1431 unsigned int buflen = get_rfc1002_length(buf) + 4;
1433 cifs_dbg(FYI, "%s: mid=%llu offset=%llu bytes=%u\n",
1434 __func__, mid->mid, rdata->offset, rdata->bytes);
1437 * read the rest of READ_RSP header (sans Data array), or whatever we
1438 * can if there's not enough data. At this point, we've read down to
1441 len = min_t(unsigned int, buflen, server->vals->read_rsp_size) -
1442 HEADER_SIZE(server) + 1;
1444 rdata->iov.iov_base = buf + HEADER_SIZE(server) - 1;
1445 rdata->iov.iov_len = len;
1447 length = cifs_readv_from_socket(server, &rdata->iov, 1, len);
1450 server->total_read += length;
1452 /* Was the SMB read successful? */
1453 rdata->result = server->ops->map_error(buf, false);
1454 if (rdata->result != 0) {
1455 cifs_dbg(FYI, "%s: server returned error %d\n",
1456 __func__, rdata->result);
1457 return cifs_readv_discard(server, mid);
1460 /* Is there enough to get to the rest of the READ_RSP header? */
1461 if (server->total_read < server->vals->read_rsp_size) {
1462 cifs_dbg(FYI, "%s: server returned short header. got=%u expected=%zu\n",
1463 __func__, server->total_read,
1464 server->vals->read_rsp_size);
1465 rdata->result = -EIO;
1466 return cifs_readv_discard(server, mid);
1469 data_offset = server->ops->read_data_offset(buf) + 4;
1470 if (data_offset < server->total_read) {
1472 * win2k8 sometimes sends an offset of 0 when the read
1473 * is beyond the EOF. Treat it as if the data starts just after
1476 cifs_dbg(FYI, "%s: data offset (%u) inside read response header\n",
1477 __func__, data_offset);
1478 data_offset = server->total_read;
1479 } else if (data_offset > MAX_CIFS_SMALL_BUFFER_SIZE) {
1480 /* data_offset is beyond the end of smallbuf */
1481 cifs_dbg(FYI, "%s: data offset (%u) beyond end of smallbuf\n",
1482 __func__, data_offset);
1483 rdata->result = -EIO;
1484 return cifs_readv_discard(server, mid);
1487 cifs_dbg(FYI, "%s: total_read=%u data_offset=%u\n",
1488 __func__, server->total_read, data_offset);
1490 len = data_offset - server->total_read;
1492 /* read any junk before data into the rest of smallbuf */
1493 rdata->iov.iov_base = buf + server->total_read;
1494 rdata->iov.iov_len = len;
1495 length = cifs_readv_from_socket(server, &rdata->iov, 1, len);
1498 server->total_read += length;
1501 /* set up first iov for signature check */
1502 rdata->iov.iov_base = buf;
1503 rdata->iov.iov_len = server->total_read;
1504 cifs_dbg(FYI, "0: iov_base=%p iov_len=%zu\n",
1505 rdata->iov.iov_base, rdata->iov.iov_len);
1507 /* how much data is in the response? */
1508 data_len = server->ops->read_data_length(buf);
1509 if (data_offset + data_len > buflen) {
1510 /* data_len is corrupt -- discard frame */
1511 rdata->result = -EIO;
1512 return cifs_readv_discard(server, mid);
1515 length = rdata->read_into_pages(server, rdata, data_len);
1519 server->total_read += length;
1520 rdata->bytes = length;
1522 cifs_dbg(FYI, "total_read=%u buflen=%u remaining=%u\n",
1523 server->total_read, buflen, data_len);
1525 /* discard anything left over */
1526 if (server->total_read < buflen)
1527 return cifs_readv_discard(server, mid);
1529 dequeue_mid(mid, false);
1534 cifs_readv_callback(struct mid_q_entry *mid)
1536 struct cifs_readdata *rdata = mid->callback_data;
1537 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
1538 struct TCP_Server_Info *server = tcon->ses->server;
1539 struct smb_rqst rqst = { .rq_iov = &rdata->iov,
1541 .rq_pages = rdata->pages,
1542 .rq_npages = rdata->nr_pages,
1543 .rq_pagesz = rdata->pagesz,
1544 .rq_tailsz = rdata->tailsz };
1546 cifs_dbg(FYI, "%s: mid=%llu state=%d result=%d bytes=%u\n",
1547 __func__, mid->mid, mid->mid_state, rdata->result,
1550 switch (mid->mid_state) {
1551 case MID_RESPONSE_RECEIVED:
1552 /* result already set, check signature */
1556 rc = cifs_verify_signature(&rqst, server,
1557 mid->sequence_number);
1559 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
1562 /* FIXME: should this be counted toward the initiating task? */
1563 task_io_account_read(rdata->bytes);
1564 cifs_stats_bytes_read(tcon, rdata->bytes);
1566 case MID_REQUEST_SUBMITTED:
1567 case MID_RETRY_NEEDED:
1568 rdata->result = -EAGAIN;
1571 rdata->result = -EIO;
1574 queue_work(cifsiod_wq, &rdata->work);
1575 DeleteMidQEntry(mid);
1576 add_credits(server, 1, 0);
1579 /* cifs_async_readv - send an async write, and set up mid to handle result */
1581 cifs_async_readv(struct cifs_readdata *rdata)
1584 READ_REQ *smb = NULL;
1586 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
1587 struct smb_rqst rqst = { .rq_iov = &rdata->iov,
1590 cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n",
1591 __func__, rdata->offset, rdata->bytes);
1593 if (tcon->ses->capabilities & CAP_LARGE_FILES)
1596 wct = 10; /* old style read */
1597 if ((rdata->offset >> 32) > 0) {
1598 /* can not handle this big offset for old */
1603 rc = small_smb_init(SMB_COM_READ_ANDX, wct, tcon, (void **)&smb);
1607 smb->hdr.Pid = cpu_to_le16((__u16)rdata->pid);
1608 smb->hdr.PidHigh = cpu_to_le16((__u16)(rdata->pid >> 16));
1610 smb->AndXCommand = 0xFF; /* none */
1611 smb->Fid = rdata->cfile->fid.netfid;
1612 smb->OffsetLow = cpu_to_le32(rdata->offset & 0xFFFFFFFF);
1614 smb->OffsetHigh = cpu_to_le32(rdata->offset >> 32);
1616 smb->MaxCount = cpu_to_le16(rdata->bytes & 0xFFFF);
1617 smb->MaxCountHigh = cpu_to_le32(rdata->bytes >> 16);
1621 /* old style read */
1622 struct smb_com_readx_req *smbr =
1623 (struct smb_com_readx_req *)smb;
1624 smbr->ByteCount = 0;
1627 /* 4 for RFC1001 length + 1 for BCC */
1628 rdata->iov.iov_base = smb;
1629 rdata->iov.iov_len = be32_to_cpu(smb->hdr.smb_buf_length) + 4;
1631 kref_get(&rdata->refcount);
1632 rc = cifs_call_async(tcon->ses->server, &rqst, cifs_readv_receive,
1633 cifs_readv_callback, rdata, 0);
1636 cifs_stats_inc(&tcon->stats.cifs_stats.num_reads);
1638 kref_put(&rdata->refcount, cifs_readdata_release);
1640 cifs_small_buf_release(smb);
1645 CIFSSMBRead(const unsigned int xid, struct cifs_io_parms *io_parms,
1646 unsigned int *nbytes, char **buf, int *pbuf_type)
1649 READ_REQ *pSMB = NULL;
1650 READ_RSP *pSMBr = NULL;
1651 char *pReadData = NULL;
1653 int resp_buf_type = 0;
1655 __u32 pid = io_parms->pid;
1656 __u16 netfid = io_parms->netfid;
1657 __u64 offset = io_parms->offset;
1658 struct cifs_tcon *tcon = io_parms->tcon;
1659 unsigned int count = io_parms->length;
1661 cifs_dbg(FYI, "Reading %d bytes on fid %d\n", count, netfid);
1662 if (tcon->ses->capabilities & CAP_LARGE_FILES)
1665 wct = 10; /* old style read */
1666 if ((offset >> 32) > 0) {
1667 /* can not handle this big offset for old */
1673 rc = small_smb_init(SMB_COM_READ_ANDX, wct, tcon, (void **) &pSMB);
1677 pSMB->hdr.Pid = cpu_to_le16((__u16)pid);
1678 pSMB->hdr.PidHigh = cpu_to_le16((__u16)(pid >> 16));
1680 /* tcon and ses pointer are checked in smb_init */
1681 if (tcon->ses->server == NULL)
1682 return -ECONNABORTED;
1684 pSMB->AndXCommand = 0xFF; /* none */
1686 pSMB->OffsetLow = cpu_to_le32(offset & 0xFFFFFFFF);
1688 pSMB->OffsetHigh = cpu_to_le32(offset >> 32);
1690 pSMB->Remaining = 0;
1691 pSMB->MaxCount = cpu_to_le16(count & 0xFFFF);
1692 pSMB->MaxCountHigh = cpu_to_le32(count >> 16);
1694 pSMB->ByteCount = 0; /* no need to do le conversion since 0 */
1696 /* old style read */
1697 struct smb_com_readx_req *pSMBW =
1698 (struct smb_com_readx_req *)pSMB;
1699 pSMBW->ByteCount = 0;
1702 iov[0].iov_base = (char *)pSMB;
1703 iov[0].iov_len = be32_to_cpu(pSMB->hdr.smb_buf_length) + 4;
1704 rc = SendReceive2(xid, tcon->ses, iov, 1 /* num iovecs */,
1705 &resp_buf_type, CIFS_LOG_ERROR);
1706 cifs_stats_inc(&tcon->stats.cifs_stats.num_reads);
1707 pSMBr = (READ_RSP *)iov[0].iov_base;
1709 cifs_dbg(VFS, "Send error in read = %d\n", rc);
1711 int data_length = le16_to_cpu(pSMBr->DataLengthHigh);
1712 data_length = data_length << 16;
1713 data_length += le16_to_cpu(pSMBr->DataLength);
1714 *nbytes = data_length;
1716 /*check that DataLength would not go beyond end of SMB */
1717 if ((data_length > CIFSMaxBufSize)
1718 || (data_length > count)) {
1719 cifs_dbg(FYI, "bad length %d for count %d\n",
1720 data_length, count);
1724 pReadData = (char *) (&pSMBr->hdr.Protocol) +
1725 le16_to_cpu(pSMBr->DataOffset);
1726 /* if (rc = copy_to_user(buf, pReadData, data_length)) {
1727 cifs_dbg(VFS, "Faulting on read rc = %d\n",rc);
1729 }*/ /* can not use copy_to_user when using page cache*/
1731 memcpy(*buf, pReadData, data_length);
1735 /* cifs_small_buf_release(pSMB); */ /* Freed earlier now in SendReceive2 */
1737 if (resp_buf_type == CIFS_SMALL_BUFFER)
1738 cifs_small_buf_release(iov[0].iov_base);
1739 else if (resp_buf_type == CIFS_LARGE_BUFFER)
1740 cifs_buf_release(iov[0].iov_base);
1741 } else if (resp_buf_type != CIFS_NO_BUFFER) {
1742 /* return buffer to caller to free */
1743 *buf = iov[0].iov_base;
1744 if (resp_buf_type == CIFS_SMALL_BUFFER)
1745 *pbuf_type = CIFS_SMALL_BUFFER;
1746 else if (resp_buf_type == CIFS_LARGE_BUFFER)
1747 *pbuf_type = CIFS_LARGE_BUFFER;
1748 } /* else no valid buffer on return - leave as null */
1750 /* Note: On -EAGAIN error only caller can retry on handle based calls
1751 since file handle passed in no longer valid */
1757 CIFSSMBWrite(const unsigned int xid, struct cifs_io_parms *io_parms,
1758 unsigned int *nbytes, const char *buf,
1759 const char __user *ubuf, const int long_op)
1762 WRITE_REQ *pSMB = NULL;
1763 WRITE_RSP *pSMBr = NULL;
1764 int bytes_returned, wct;
1767 __u32 pid = io_parms->pid;
1768 __u16 netfid = io_parms->netfid;
1769 __u64 offset = io_parms->offset;
1770 struct cifs_tcon *tcon = io_parms->tcon;
1771 unsigned int count = io_parms->length;
1775 /* cifs_dbg(FYI, "write at %lld %d bytes\n", offset, count);*/
1776 if (tcon->ses == NULL)
1777 return -ECONNABORTED;
1779 if (tcon->ses->capabilities & CAP_LARGE_FILES)
1783 if ((offset >> 32) > 0) {
1784 /* can not handle big offset for old srv */
1789 rc = smb_init(SMB_COM_WRITE_ANDX, wct, tcon, (void **) &pSMB,
1794 pSMB->hdr.Pid = cpu_to_le16((__u16)pid);
1795 pSMB->hdr.PidHigh = cpu_to_le16((__u16)(pid >> 16));
1797 /* tcon and ses pointer are checked in smb_init */
1798 if (tcon->ses->server == NULL)
1799 return -ECONNABORTED;
1801 pSMB->AndXCommand = 0xFF; /* none */
1803 pSMB->OffsetLow = cpu_to_le32(offset & 0xFFFFFFFF);
1805 pSMB->OffsetHigh = cpu_to_le32(offset >> 32);
1807 pSMB->Reserved = 0xFFFFFFFF;
1808 pSMB->WriteMode = 0;
1809 pSMB->Remaining = 0;
1811 /* Can increase buffer size if buffer is big enough in some cases ie we
1812 can send more if LARGE_WRITE_X capability returned by the server and if
1813 our buffer is big enough or if we convert to iovecs on socket writes
1814 and eliminate the copy to the CIFS buffer */
1815 if (tcon->ses->capabilities & CAP_LARGE_WRITE_X) {
1816 bytes_sent = min_t(const unsigned int, CIFSMaxBufSize, count);
1818 bytes_sent = (tcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE)
1822 if (bytes_sent > count)
1825 cpu_to_le16(offsetof(struct smb_com_write_req, Data) - 4);
1827 memcpy(pSMB->Data, buf, bytes_sent);
1829 if (copy_from_user(pSMB->Data, ubuf, bytes_sent)) {
1830 cifs_buf_release(pSMB);
1833 } else if (count != 0) {
1835 cifs_buf_release(pSMB);
1837 } /* else setting file size with write of zero bytes */
1839 byte_count = bytes_sent + 1; /* pad */
1840 else /* wct == 12 */
1841 byte_count = bytes_sent + 5; /* bigger pad, smaller smb hdr */
1843 pSMB->DataLengthLow = cpu_to_le16(bytes_sent & 0xFFFF);
1844 pSMB->DataLengthHigh = cpu_to_le16(bytes_sent >> 16);
1845 inc_rfc1001_len(pSMB, byte_count);
1848 pSMB->ByteCount = cpu_to_le16(byte_count);
1849 else { /* old style write has byte count 4 bytes earlier
1851 struct smb_com_writex_req *pSMBW =
1852 (struct smb_com_writex_req *)pSMB;
1853 pSMBW->ByteCount = cpu_to_le16(byte_count);
1856 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
1857 (struct smb_hdr *) pSMBr, &bytes_returned, long_op);
1858 cifs_stats_inc(&tcon->stats.cifs_stats.num_writes);
1860 cifs_dbg(FYI, "Send error in write = %d\n", rc);
1862 *nbytes = le16_to_cpu(pSMBr->CountHigh);
1863 *nbytes = (*nbytes) << 16;
1864 *nbytes += le16_to_cpu(pSMBr->Count);
1867 * Mask off high 16 bits when bytes written as returned by the
1868 * server is greater than bytes requested by the client. Some
1869 * OS/2 servers are known to set incorrect CountHigh values.
1871 if (*nbytes > count)
1875 cifs_buf_release(pSMB);
1877 /* Note: On -EAGAIN error only caller can retry on handle based calls
1878 since file handle passed in no longer valid */
1884 cifs_writedata_release(struct kref *refcount)
1886 struct cifs_writedata *wdata = container_of(refcount,
1887 struct cifs_writedata, refcount);
1890 cifsFileInfo_put(wdata->cfile);
1896 * Write failed with a retryable error. Resend the write request. It's also
1897 * possible that the page was redirtied so re-clean the page.
1900 cifs_writev_requeue(struct cifs_writedata *wdata)
1903 struct inode *inode = wdata->cfile->dentry->d_inode;
1904 struct TCP_Server_Info *server;
1906 for (i = 0; i < wdata->nr_pages; i++) {
1907 lock_page(wdata->pages[i]);
1908 clear_page_dirty_for_io(wdata->pages[i]);
1912 server = tlink_tcon(wdata->cfile->tlink)->ses->server;
1913 rc = server->ops->async_writev(wdata, cifs_writedata_release);
1914 } while (rc == -EAGAIN);
1916 for (i = 0; i < wdata->nr_pages; i++) {
1917 unlock_page(wdata->pages[i]);
1919 SetPageError(wdata->pages[i]);
1920 end_page_writeback(wdata->pages[i]);
1921 page_cache_release(wdata->pages[i]);
1925 mapping_set_error(inode->i_mapping, rc);
1926 kref_put(&wdata->refcount, cifs_writedata_release);
1930 cifs_writev_complete(struct work_struct *work)
1932 struct cifs_writedata *wdata = container_of(work,
1933 struct cifs_writedata, work);
1934 struct inode *inode = wdata->cfile->dentry->d_inode;
1937 if (wdata->result == 0) {
1938 spin_lock(&inode->i_lock);
1939 cifs_update_eof(CIFS_I(inode), wdata->offset, wdata->bytes);
1940 spin_unlock(&inode->i_lock);
1941 cifs_stats_bytes_written(tlink_tcon(wdata->cfile->tlink),
1943 } else if (wdata->sync_mode == WB_SYNC_ALL && wdata->result == -EAGAIN)
1944 return cifs_writev_requeue(wdata);
1946 for (i = 0; i < wdata->nr_pages; i++) {
1947 struct page *page = wdata->pages[i];
1948 if (wdata->result == -EAGAIN)
1949 __set_page_dirty_nobuffers(page);
1950 else if (wdata->result < 0)
1952 end_page_writeback(page);
1953 page_cache_release(page);
1955 if (wdata->result != -EAGAIN)
1956 mapping_set_error(inode->i_mapping, wdata->result);
1957 kref_put(&wdata->refcount, cifs_writedata_release);
1960 struct cifs_writedata *
1961 cifs_writedata_alloc(unsigned int nr_pages, work_func_t complete)
1963 struct cifs_writedata *wdata;
1965 /* writedata + number of page pointers */
1966 wdata = kzalloc(sizeof(*wdata) +
1967 sizeof(struct page *) * nr_pages, GFP_NOFS);
1968 if (wdata != NULL) {
1969 kref_init(&wdata->refcount);
1970 INIT_LIST_HEAD(&wdata->list);
1971 init_completion(&wdata->done);
1972 INIT_WORK(&wdata->work, complete);
1978 * Check the mid_state and signature on received buffer (if any), and queue the
1979 * workqueue completion task.
1982 cifs_writev_callback(struct mid_q_entry *mid)
1984 struct cifs_writedata *wdata = mid->callback_data;
1985 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
1986 unsigned int written;
1987 WRITE_RSP *smb = (WRITE_RSP *)mid->resp_buf;
1989 switch (mid->mid_state) {
1990 case MID_RESPONSE_RECEIVED:
1991 wdata->result = cifs_check_receive(mid, tcon->ses->server, 0);
1992 if (wdata->result != 0)
1995 written = le16_to_cpu(smb->CountHigh);
1997 written += le16_to_cpu(smb->Count);
1999 * Mask off high 16 bits when bytes written as returned
2000 * by the server is greater than bytes requested by the
2001 * client. OS/2 servers are known to set incorrect
2004 if (written > wdata->bytes)
2007 if (written < wdata->bytes)
2008 wdata->result = -ENOSPC;
2010 wdata->bytes = written;
2012 case MID_REQUEST_SUBMITTED:
2013 case MID_RETRY_NEEDED:
2014 wdata->result = -EAGAIN;
2017 wdata->result = -EIO;
2021 queue_work(cifsiod_wq, &wdata->work);
2022 DeleteMidQEntry(mid);
2023 add_credits(tcon->ses->server, 1, 0);
2026 /* cifs_async_writev - send an async write, and set up mid to handle result */
2028 cifs_async_writev(struct cifs_writedata *wdata,
2029 void (*release)(struct kref *kref))
2032 WRITE_REQ *smb = NULL;
2034 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
2036 struct smb_rqst rqst = { };
2038 if (tcon->ses->capabilities & CAP_LARGE_FILES) {
2042 if (wdata->offset >> 32 > 0) {
2043 /* can not handle big offset for old srv */
2048 rc = small_smb_init(SMB_COM_WRITE_ANDX, wct, tcon, (void **)&smb);
2050 goto async_writev_out;
2052 smb->hdr.Pid = cpu_to_le16((__u16)wdata->pid);
2053 smb->hdr.PidHigh = cpu_to_le16((__u16)(wdata->pid >> 16));
2055 smb->AndXCommand = 0xFF; /* none */
2056 smb->Fid = wdata->cfile->fid.netfid;
2057 smb->OffsetLow = cpu_to_le32(wdata->offset & 0xFFFFFFFF);
2059 smb->OffsetHigh = cpu_to_le32(wdata->offset >> 32);
2060 smb->Reserved = 0xFFFFFFFF;
2065 cpu_to_le16(offsetof(struct smb_com_write_req, Data) - 4);
2067 /* 4 for RFC1001 length + 1 for BCC */
2068 iov.iov_len = be32_to_cpu(smb->hdr.smb_buf_length) + 4 + 1;
2073 rqst.rq_pages = wdata->pages;
2074 rqst.rq_npages = wdata->nr_pages;
2075 rqst.rq_pagesz = wdata->pagesz;
2076 rqst.rq_tailsz = wdata->tailsz;
2078 cifs_dbg(FYI, "async write at %llu %u bytes\n",
2079 wdata->offset, wdata->bytes);
2081 smb->DataLengthLow = cpu_to_le16(wdata->bytes & 0xFFFF);
2082 smb->DataLengthHigh = cpu_to_le16(wdata->bytes >> 16);
2085 inc_rfc1001_len(&smb->hdr, wdata->bytes + 1);
2086 put_bcc(wdata->bytes + 1, &smb->hdr);
2089 struct smb_com_writex_req *smbw =
2090 (struct smb_com_writex_req *)smb;
2091 inc_rfc1001_len(&smbw->hdr, wdata->bytes + 5);
2092 put_bcc(wdata->bytes + 5, &smbw->hdr);
2093 iov.iov_len += 4; /* pad bigger by four bytes */
2096 kref_get(&wdata->refcount);
2097 rc = cifs_call_async(tcon->ses->server, &rqst, NULL,
2098 cifs_writev_callback, wdata, 0);
2101 cifs_stats_inc(&tcon->stats.cifs_stats.num_writes);
2103 kref_put(&wdata->refcount, release);
2106 cifs_small_buf_release(smb);
2111 CIFSSMBWrite2(const unsigned int xid, struct cifs_io_parms *io_parms,
2112 unsigned int *nbytes, struct kvec *iov, int n_vec)
2115 WRITE_REQ *pSMB = NULL;
2118 int resp_buf_type = 0;
2119 __u32 pid = io_parms->pid;
2120 __u16 netfid = io_parms->netfid;
2121 __u64 offset = io_parms->offset;
2122 struct cifs_tcon *tcon = io_parms->tcon;
2123 unsigned int count = io_parms->length;
2127 cifs_dbg(FYI, "write2 at %lld %d bytes\n", (long long)offset, count);
2129 if (tcon->ses->capabilities & CAP_LARGE_FILES) {
2133 if ((offset >> 32) > 0) {
2134 /* can not handle big offset for old srv */
2138 rc = small_smb_init(SMB_COM_WRITE_ANDX, wct, tcon, (void **) &pSMB);
2142 pSMB->hdr.Pid = cpu_to_le16((__u16)pid);
2143 pSMB->hdr.PidHigh = cpu_to_le16((__u16)(pid >> 16));
2145 /* tcon and ses pointer are checked in smb_init */
2146 if (tcon->ses->server == NULL)
2147 return -ECONNABORTED;
2149 pSMB->AndXCommand = 0xFF; /* none */
2151 pSMB->OffsetLow = cpu_to_le32(offset & 0xFFFFFFFF);
2153 pSMB->OffsetHigh = cpu_to_le32(offset >> 32);
2154 pSMB->Reserved = 0xFFFFFFFF;
2155 pSMB->WriteMode = 0;
2156 pSMB->Remaining = 0;
2159 cpu_to_le16(offsetof(struct smb_com_write_req, Data) - 4);
2161 pSMB->DataLengthLow = cpu_to_le16(count & 0xFFFF);
2162 pSMB->DataLengthHigh = cpu_to_le16(count >> 16);
2163 /* header + 1 byte pad */
2164 smb_hdr_len = be32_to_cpu(pSMB->hdr.smb_buf_length) + 1;
2166 inc_rfc1001_len(pSMB, count + 1);
2167 else /* wct == 12 */
2168 inc_rfc1001_len(pSMB, count + 5); /* smb data starts later */
2170 pSMB->ByteCount = cpu_to_le16(count + 1);
2171 else /* wct == 12 */ /* bigger pad, smaller smb hdr, keep offset ok */ {
2172 struct smb_com_writex_req *pSMBW =
2173 (struct smb_com_writex_req *)pSMB;
2174 pSMBW->ByteCount = cpu_to_le16(count + 5);
2176 iov[0].iov_base = pSMB;
2178 iov[0].iov_len = smb_hdr_len + 4;
2179 else /* wct == 12 pad bigger by four bytes */
2180 iov[0].iov_len = smb_hdr_len + 8;
2183 rc = SendReceive2(xid, tcon->ses, iov, n_vec + 1, &resp_buf_type, 0);
2184 cifs_stats_inc(&tcon->stats.cifs_stats.num_writes);
2186 cifs_dbg(FYI, "Send error Write2 = %d\n", rc);
2187 } else if (resp_buf_type == 0) {
2188 /* presumably this can not happen, but best to be safe */
2191 WRITE_RSP *pSMBr = (WRITE_RSP *)iov[0].iov_base;
2192 *nbytes = le16_to_cpu(pSMBr->CountHigh);
2193 *nbytes = (*nbytes) << 16;
2194 *nbytes += le16_to_cpu(pSMBr->Count);
2197 * Mask off high 16 bits when bytes written as returned by the
2198 * server is greater than bytes requested by the client. OS/2
2199 * servers are known to set incorrect CountHigh values.
2201 if (*nbytes > count)
2205 /* cifs_small_buf_release(pSMB); */ /* Freed earlier now in SendReceive2 */
2206 if (resp_buf_type == CIFS_SMALL_BUFFER)
2207 cifs_small_buf_release(iov[0].iov_base);
2208 else if (resp_buf_type == CIFS_LARGE_BUFFER)
2209 cifs_buf_release(iov[0].iov_base);
2211 /* Note: On -EAGAIN error only caller can retry on handle based calls
2212 since file handle passed in no longer valid */
2217 int cifs_lockv(const unsigned int xid, struct cifs_tcon *tcon,
2218 const __u16 netfid, const __u8 lock_type, const __u32 num_unlock,
2219 const __u32 num_lock, LOCKING_ANDX_RANGE *buf)
2222 LOCK_REQ *pSMB = NULL;
2227 cifs_dbg(FYI, "cifs_lockv num lock %d num unlock %d\n",
2228 num_lock, num_unlock);
2230 rc = small_smb_init(SMB_COM_LOCKING_ANDX, 8, tcon, (void **) &pSMB);
2235 pSMB->NumberOfLocks = cpu_to_le16(num_lock);
2236 pSMB->NumberOfUnlocks = cpu_to_le16(num_unlock);
2237 pSMB->LockType = lock_type;
2238 pSMB->AndXCommand = 0xFF; /* none */
2239 pSMB->Fid = netfid; /* netfid stays le */
2241 count = (num_unlock + num_lock) * sizeof(LOCKING_ANDX_RANGE);
2242 inc_rfc1001_len(pSMB, count);
2243 pSMB->ByteCount = cpu_to_le16(count);
2245 iov[0].iov_base = (char *)pSMB;
2246 iov[0].iov_len = be32_to_cpu(pSMB->hdr.smb_buf_length) + 4 -
2247 (num_unlock + num_lock) * sizeof(LOCKING_ANDX_RANGE);
2248 iov[1].iov_base = (char *)buf;
2249 iov[1].iov_len = (num_unlock + num_lock) * sizeof(LOCKING_ANDX_RANGE);
2251 cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
2252 rc = SendReceive2(xid, tcon->ses, iov, 2, &resp_buf_type, CIFS_NO_RESP);
2254 cifs_dbg(FYI, "Send error in cifs_lockv = %d\n", rc);
2260 CIFSSMBLock(const unsigned int xid, struct cifs_tcon *tcon,
2261 const __u16 smb_file_id, const __u32 netpid, const __u64 len,
2262 const __u64 offset, const __u32 numUnlock,
2263 const __u32 numLock, const __u8 lockType,
2264 const bool waitFlag, const __u8 oplock_level)
2267 LOCK_REQ *pSMB = NULL;
2268 /* LOCK_RSP *pSMBr = NULL; */ /* No response data other than rc to parse */
2273 cifs_dbg(FYI, "CIFSSMBLock timeout %d numLock %d\n",
2274 (int)waitFlag, numLock);
2275 rc = small_smb_init(SMB_COM_LOCKING_ANDX, 8, tcon, (void **) &pSMB);
2280 if (lockType == LOCKING_ANDX_OPLOCK_RELEASE) {
2281 /* no response expected */
2282 flags = CIFS_ASYNC_OP | CIFS_OBREAK_OP;
2284 } else if (waitFlag) {
2285 flags = CIFS_BLOCKING_OP; /* blocking operation, no timeout */
2286 pSMB->Timeout = cpu_to_le32(-1);/* blocking - do not time out */
2291 pSMB->NumberOfLocks = cpu_to_le16(numLock);
2292 pSMB->NumberOfUnlocks = cpu_to_le16(numUnlock);
2293 pSMB->LockType = lockType;
2294 pSMB->OplockLevel = oplock_level;
2295 pSMB->AndXCommand = 0xFF; /* none */
2296 pSMB->Fid = smb_file_id; /* netfid stays le */
2298 if ((numLock != 0) || (numUnlock != 0)) {
2299 pSMB->Locks[0].Pid = cpu_to_le16(netpid);
2300 /* BB where to store pid high? */
2301 pSMB->Locks[0].LengthLow = cpu_to_le32((u32)len);
2302 pSMB->Locks[0].LengthHigh = cpu_to_le32((u32)(len>>32));
2303 pSMB->Locks[0].OffsetLow = cpu_to_le32((u32)offset);
2304 pSMB->Locks[0].OffsetHigh = cpu_to_le32((u32)(offset>>32));
2305 count = sizeof(LOCKING_ANDX_RANGE);
2310 inc_rfc1001_len(pSMB, count);
2311 pSMB->ByteCount = cpu_to_le16(count);
2314 rc = SendReceiveBlockingLock(xid, tcon, (struct smb_hdr *) pSMB,
2315 (struct smb_hdr *) pSMB, &bytes_returned);
2316 cifs_small_buf_release(pSMB);
2318 rc = SendReceiveNoRsp(xid, tcon->ses, (char *)pSMB, flags);
2319 /* SMB buffer freed by function above */
2321 cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
2323 cifs_dbg(FYI, "Send error in Lock = %d\n", rc);
2325 /* Note: On -EAGAIN error only caller can retry on handle based calls
2326 since file handle passed in no longer valid */
2331 CIFSSMBPosixLock(const unsigned int xid, struct cifs_tcon *tcon,
2332 const __u16 smb_file_id, const __u32 netpid,
2333 const loff_t start_offset, const __u64 len,
2334 struct file_lock *pLockData, const __u16 lock_type,
2335 const bool waitFlag)
2337 struct smb_com_transaction2_sfi_req *pSMB = NULL;
2338 struct smb_com_transaction2_sfi_rsp *pSMBr = NULL;
2339 struct cifs_posix_lock *parm_data;
2342 int bytes_returned = 0;
2343 int resp_buf_type = 0;
2344 __u16 params, param_offset, offset, byte_count, count;
2347 cifs_dbg(FYI, "Posix Lock\n");
2349 rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB);
2354 pSMBr = (struct smb_com_transaction2_sfi_rsp *)pSMB;
2357 pSMB->MaxSetupCount = 0;
2360 pSMB->Reserved2 = 0;
2361 param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4;
2362 offset = param_offset + params;
2364 count = sizeof(struct cifs_posix_lock);
2365 pSMB->MaxParameterCount = cpu_to_le16(2);
2366 pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find max SMB from sess */
2367 pSMB->SetupCount = 1;
2368 pSMB->Reserved3 = 0;
2370 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FILE_INFORMATION);
2372 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION);
2373 byte_count = 3 /* pad */ + params + count;
2374 pSMB->DataCount = cpu_to_le16(count);
2375 pSMB->ParameterCount = cpu_to_le16(params);
2376 pSMB->TotalDataCount = pSMB->DataCount;
2377 pSMB->TotalParameterCount = pSMB->ParameterCount;
2378 pSMB->ParameterOffset = cpu_to_le16(param_offset);
2379 parm_data = (struct cifs_posix_lock *)
2380 (((char *) &pSMB->hdr.Protocol) + offset);
2382 parm_data->lock_type = cpu_to_le16(lock_type);
2384 timeout = CIFS_BLOCKING_OP; /* blocking operation, no timeout */
2385 parm_data->lock_flags = cpu_to_le16(1);
2386 pSMB->Timeout = cpu_to_le32(-1);
2390 parm_data->pid = cpu_to_le32(netpid);
2391 parm_data->start = cpu_to_le64(start_offset);
2392 parm_data->length = cpu_to_le64(len); /* normalize negative numbers */
2394 pSMB->DataOffset = cpu_to_le16(offset);
2395 pSMB->Fid = smb_file_id;
2396 pSMB->InformationLevel = cpu_to_le16(SMB_SET_POSIX_LOCK);
2397 pSMB->Reserved4 = 0;
2398 inc_rfc1001_len(pSMB, byte_count);
2399 pSMB->ByteCount = cpu_to_le16(byte_count);
2401 rc = SendReceiveBlockingLock(xid, tcon, (struct smb_hdr *) pSMB,
2402 (struct smb_hdr *) pSMBr, &bytes_returned);
2404 iov[0].iov_base = (char *)pSMB;
2405 iov[0].iov_len = be32_to_cpu(pSMB->hdr.smb_buf_length) + 4;
2406 rc = SendReceive2(xid, tcon->ses, iov, 1 /* num iovecs */,
2407 &resp_buf_type, timeout);
2408 pSMB = NULL; /* request buf already freed by SendReceive2. Do
2409 not try to free it twice below on exit */
2410 pSMBr = (struct smb_com_transaction2_sfi_rsp *)iov[0].iov_base;
2414 cifs_dbg(FYI, "Send error in Posix Lock = %d\n", rc);
2415 } else if (pLockData) {
2416 /* lock structure can be returned on get */
2419 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
2421 if (rc || get_bcc(&pSMBr->hdr) < sizeof(*parm_data)) {
2422 rc = -EIO; /* bad smb */
2425 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
2426 data_count = le16_to_cpu(pSMBr->t2.DataCount);
2427 if (data_count < sizeof(struct cifs_posix_lock)) {
2431 parm_data = (struct cifs_posix_lock *)
2432 ((char *)&pSMBr->hdr.Protocol + data_offset);
2433 if (parm_data->lock_type == __constant_cpu_to_le16(CIFS_UNLCK))
2434 pLockData->fl_type = F_UNLCK;
2436 if (parm_data->lock_type ==
2437 __constant_cpu_to_le16(CIFS_RDLCK))
2438 pLockData->fl_type = F_RDLCK;
2439 else if (parm_data->lock_type ==
2440 __constant_cpu_to_le16(CIFS_WRLCK))
2441 pLockData->fl_type = F_WRLCK;
2443 pLockData->fl_start = le64_to_cpu(parm_data->start);
2444 pLockData->fl_end = pLockData->fl_start +
2445 le64_to_cpu(parm_data->length) - 1;
2446 pLockData->fl_pid = le32_to_cpu(parm_data->pid);
2452 cifs_small_buf_release(pSMB);
2454 if (resp_buf_type == CIFS_SMALL_BUFFER)
2455 cifs_small_buf_release(iov[0].iov_base);
2456 else if (resp_buf_type == CIFS_LARGE_BUFFER)
2457 cifs_buf_release(iov[0].iov_base);
2459 /* Note: On -EAGAIN error only caller can retry on handle based calls
2460 since file handle passed in no longer valid */
2467 CIFSSMBClose(const unsigned int xid, struct cifs_tcon *tcon, int smb_file_id)
2470 CLOSE_REQ *pSMB = NULL;
2471 cifs_dbg(FYI, "In CIFSSMBClose\n");
2473 /* do not retry on dead session on close */
2474 rc = small_smb_init(SMB_COM_CLOSE, 3, tcon, (void **) &pSMB);
2480 pSMB->FileID = (__u16) smb_file_id;
2481 pSMB->LastWriteTime = 0xFFFFFFFF;
2482 pSMB->ByteCount = 0;
2483 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0);
2484 cifs_stats_inc(&tcon->stats.cifs_stats.num_closes);
2487 /* EINTR is expected when user ctl-c to kill app */
2488 cifs_dbg(VFS, "Send error in Close = %d\n", rc);
2492 /* Since session is dead, file will be closed on server already */
2500 CIFSSMBFlush(const unsigned int xid, struct cifs_tcon *tcon, int smb_file_id)
2503 FLUSH_REQ *pSMB = NULL;
2504 cifs_dbg(FYI, "In CIFSSMBFlush\n");
2506 rc = small_smb_init(SMB_COM_FLUSH, 1, tcon, (void **) &pSMB);
2510 pSMB->FileID = (__u16) smb_file_id;
2511 pSMB->ByteCount = 0;
2512 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0);
2513 cifs_stats_inc(&tcon->stats.cifs_stats.num_flushes);
2515 cifs_dbg(VFS, "Send error in Flush = %d\n", rc);
2521 CIFSSMBRename(const unsigned int xid, struct cifs_tcon *tcon,
2522 const char *from_name, const char *to_name,
2523 struct cifs_sb_info *cifs_sb)
2526 RENAME_REQ *pSMB = NULL;
2527 RENAME_RSP *pSMBr = NULL;
2529 int name_len, name_len2;
2531 int remap = cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR;
2533 cifs_dbg(FYI, "In CIFSSMBRename\n");
2535 rc = smb_init(SMB_COM_RENAME, 1, tcon, (void **) &pSMB,
2540 pSMB->BufferFormat = 0x04;
2541 pSMB->SearchAttributes =
2542 cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM |
2545 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
2546 name_len = cifsConvertToUTF16((__le16 *) pSMB->OldFileName,
2547 from_name, PATH_MAX,
2548 cifs_sb->local_nls, remap);
2549 name_len++; /* trailing null */
2551 pSMB->OldFileName[name_len] = 0x04; /* pad */
2552 /* protocol requires ASCII signature byte on Unicode string */
2553 pSMB->OldFileName[name_len + 1] = 0x00;
2555 cifsConvertToUTF16((__le16 *)&pSMB->OldFileName[name_len+2],
2556 to_name, PATH_MAX, cifs_sb->local_nls,
2558 name_len2 += 1 /* trailing null */ + 1 /* Signature word */ ;
2559 name_len2 *= 2; /* convert to bytes */
2560 } else { /* BB improve the check for buffer overruns BB */
2561 name_len = strnlen(from_name, PATH_MAX);
2562 name_len++; /* trailing null */
2563 strncpy(pSMB->OldFileName, from_name, name_len);
2564 name_len2 = strnlen(to_name, PATH_MAX);
2565 name_len2++; /* trailing null */
2566 pSMB->OldFileName[name_len] = 0x04; /* 2nd buffer format */
2567 strncpy(&pSMB->OldFileName[name_len + 1], to_name, name_len2);
2568 name_len2++; /* trailing null */
2569 name_len2++; /* signature byte */
2572 count = 1 /* 1st signature byte */ + name_len + name_len2;
2573 inc_rfc1001_len(pSMB, count);
2574 pSMB->ByteCount = cpu_to_le16(count);
2576 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2577 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2578 cifs_stats_inc(&tcon->stats.cifs_stats.num_renames);
2580 cifs_dbg(FYI, "Send error in rename = %d\n", rc);
2582 cifs_buf_release(pSMB);
2590 int CIFSSMBRenameOpenFile(const unsigned int xid, struct cifs_tcon *pTcon,
2591 int netfid, const char *target_name,
2592 const struct nls_table *nls_codepage, int remap)
2594 struct smb_com_transaction2_sfi_req *pSMB = NULL;
2595 struct smb_com_transaction2_sfi_rsp *pSMBr = NULL;
2596 struct set_file_rename *rename_info;
2598 char dummy_string[30];
2600 int bytes_returned = 0;
2602 __u16 params, param_offset, offset, count, byte_count;
2604 cifs_dbg(FYI, "Rename to File by handle\n");
2605 rc = smb_init(SMB_COM_TRANSACTION2, 15, pTcon, (void **) &pSMB,
2611 pSMB->MaxSetupCount = 0;
2615 pSMB->Reserved2 = 0;
2616 param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4;
2617 offset = param_offset + params;
2619 data_offset = (char *) (&pSMB->hdr.Protocol) + offset;
2620 rename_info = (struct set_file_rename *) data_offset;
2621 pSMB->MaxParameterCount = cpu_to_le16(2);
2622 pSMB->MaxDataCount = cpu_to_le16(1000); /* BB find max SMB from sess */
2623 pSMB->SetupCount = 1;
2624 pSMB->Reserved3 = 0;
2625 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION);
2626 byte_count = 3 /* pad */ + params;
2627 pSMB->ParameterCount = cpu_to_le16(params);
2628 pSMB->TotalParameterCount = pSMB->ParameterCount;
2629 pSMB->ParameterOffset = cpu_to_le16(param_offset);
2630 pSMB->DataOffset = cpu_to_le16(offset);
2631 /* construct random name ".cifs_tmp<inodenum><mid>" */
2632 rename_info->overwrite = cpu_to_le32(1);
2633 rename_info->root_fid = 0;
2634 /* unicode only call */
2635 if (target_name == NULL) {
2636 sprintf(dummy_string, "cifs%x", pSMB->hdr.Mid);
2638 cifsConvertToUTF16((__le16 *)rename_info->target_name,
2639 dummy_string, 24, nls_codepage, remap);
2642 cifsConvertToUTF16((__le16 *)rename_info->target_name,
2643 target_name, PATH_MAX, nls_codepage,
2646 rename_info->target_name_len = cpu_to_le32(2 * len_of_str);
2647 count = 12 /* sizeof(struct set_file_rename) */ + (2 * len_of_str);
2648 byte_count += count;
2649 pSMB->DataCount = cpu_to_le16(count);
2650 pSMB->TotalDataCount = pSMB->DataCount;
2652 pSMB->InformationLevel =
2653 cpu_to_le16(SMB_SET_FILE_RENAME_INFORMATION);
2654 pSMB->Reserved4 = 0;
2655 inc_rfc1001_len(pSMB, byte_count);
2656 pSMB->ByteCount = cpu_to_le16(byte_count);
2657 rc = SendReceive(xid, pTcon->ses, (struct smb_hdr *) pSMB,
2658 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2659 cifs_stats_inc(&pTcon->stats.cifs_stats.num_t2renames);
2661 cifs_dbg(FYI, "Send error in Rename (by file handle) = %d\n",
2664 cifs_buf_release(pSMB);
2666 /* Note: On -EAGAIN error only caller can retry on handle based calls
2667 since file handle passed in no longer valid */
2673 CIFSSMBCopy(const unsigned int xid, struct cifs_tcon *tcon,
2674 const char *fromName, const __u16 target_tid, const char *toName,
2675 const int flags, const struct nls_table *nls_codepage, int remap)
2678 COPY_REQ *pSMB = NULL;
2679 COPY_RSP *pSMBr = NULL;
2681 int name_len, name_len2;
2684 cifs_dbg(FYI, "In CIFSSMBCopy\n");
2686 rc = smb_init(SMB_COM_COPY, 1, tcon, (void **) &pSMB,
2691 pSMB->BufferFormat = 0x04;
2692 pSMB->Tid2 = target_tid;
2694 pSMB->Flags = cpu_to_le16(flags & COPY_TREE);
2696 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
2697 name_len = cifsConvertToUTF16((__le16 *) pSMB->OldFileName,
2698 fromName, PATH_MAX, nls_codepage,
2700 name_len++; /* trailing null */
2702 pSMB->OldFileName[name_len] = 0x04; /* pad */
2703 /* protocol requires ASCII signature byte on Unicode string */
2704 pSMB->OldFileName[name_len + 1] = 0x00;
2706 cifsConvertToUTF16((__le16 *)&pSMB->OldFileName[name_len+2],
2707 toName, PATH_MAX, nls_codepage, remap);
2708 name_len2 += 1 /* trailing null */ + 1 /* Signature word */ ;
2709 name_len2 *= 2; /* convert to bytes */
2710 } else { /* BB improve the check for buffer overruns BB */
2711 name_len = strnlen(fromName, PATH_MAX);
2712 name_len++; /* trailing null */
2713 strncpy(pSMB->OldFileName, fromName, name_len);
2714 name_len2 = strnlen(toName, PATH_MAX);
2715 name_len2++; /* trailing null */
2716 pSMB->OldFileName[name_len] = 0x04; /* 2nd buffer format */
2717 strncpy(&pSMB->OldFileName[name_len + 1], toName, name_len2);
2718 name_len2++; /* trailing null */
2719 name_len2++; /* signature byte */
2722 count = 1 /* 1st signature byte */ + name_len + name_len2;
2723 inc_rfc1001_len(pSMB, count);
2724 pSMB->ByteCount = cpu_to_le16(count);
2726 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2727 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2729 cifs_dbg(FYI, "Send error in copy = %d with %d files copied\n",
2730 rc, le16_to_cpu(pSMBr->CopyCount));
2732 cifs_buf_release(pSMB);
2741 CIFSUnixCreateSymLink(const unsigned int xid, struct cifs_tcon *tcon,
2742 const char *fromName, const char *toName,
2743 const struct nls_table *nls_codepage)
2745 TRANSACTION2_SPI_REQ *pSMB = NULL;
2746 TRANSACTION2_SPI_RSP *pSMBr = NULL;
2749 int name_len_target;
2751 int bytes_returned = 0;
2752 __u16 params, param_offset, offset, byte_count;
2754 cifs_dbg(FYI, "In Symlink Unix style\n");
2756 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
2761 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
2763 cifs_strtoUTF16((__le16 *) pSMB->FileName, fromName,
2764 /* find define for this maxpathcomponent */
2765 PATH_MAX, nls_codepage);
2766 name_len++; /* trailing null */
2769 } else { /* BB improve the check for buffer overruns BB */
2770 name_len = strnlen(fromName, PATH_MAX);
2771 name_len++; /* trailing null */
2772 strncpy(pSMB->FileName, fromName, name_len);
2774 params = 6 + name_len;
2775 pSMB->MaxSetupCount = 0;
2779 pSMB->Reserved2 = 0;
2780 param_offset = offsetof(struct smb_com_transaction2_spi_req,
2781 InformationLevel) - 4;
2782 offset = param_offset + params;
2784 data_offset = (char *) (&pSMB->hdr.Protocol) + offset;
2785 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
2787 cifs_strtoUTF16((__le16 *) data_offset, toName, PATH_MAX
2788 /* find define for this maxpathcomponent */
2790 name_len_target++; /* trailing null */
2791 name_len_target *= 2;
2792 } else { /* BB improve the check for buffer overruns BB */
2793 name_len_target = strnlen(toName, PATH_MAX);
2794 name_len_target++; /* trailing null */
2795 strncpy(data_offset, toName, name_len_target);
2798 pSMB->MaxParameterCount = cpu_to_le16(2);
2799 /* BB find exact max on data count below from sess */
2800 pSMB->MaxDataCount = cpu_to_le16(1000);
2801 pSMB->SetupCount = 1;
2802 pSMB->Reserved3 = 0;
2803 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
2804 byte_count = 3 /* pad */ + params + name_len_target;
2805 pSMB->DataCount = cpu_to_le16(name_len_target);
2806 pSMB->ParameterCount = cpu_to_le16(params);
2807 pSMB->TotalDataCount = pSMB->DataCount;
2808 pSMB->TotalParameterCount = pSMB->ParameterCount;
2809 pSMB->ParameterOffset = cpu_to_le16(param_offset);
2810 pSMB->DataOffset = cpu_to_le16(offset);
2811 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_UNIX_LINK);
2812 pSMB->Reserved4 = 0;
2813 inc_rfc1001_len(pSMB, byte_count);
2814 pSMB->ByteCount = cpu_to_le16(byte_count);
2815 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2816 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2817 cifs_stats_inc(&tcon->stats.cifs_stats.num_symlinks);
2819 cifs_dbg(FYI, "Send error in SetPathInfo create symlink = %d\n",
2822 cifs_buf_release(pSMB);
2825 goto createSymLinkRetry;
2831 CIFSUnixCreateHardLink(const unsigned int xid, struct cifs_tcon *tcon,
2832 const char *fromName, const char *toName,
2833 const struct nls_table *nls_codepage, int remap)
2835 TRANSACTION2_SPI_REQ *pSMB = NULL;
2836 TRANSACTION2_SPI_RSP *pSMBr = NULL;
2839 int name_len_target;
2841 int bytes_returned = 0;
2842 __u16 params, param_offset, offset, byte_count;
2844 cifs_dbg(FYI, "In Create Hard link Unix style\n");
2845 createHardLinkRetry:
2846 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
2851 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
2852 name_len = cifsConvertToUTF16((__le16 *) pSMB->FileName, toName,
2853 PATH_MAX, nls_codepage, remap);
2854 name_len++; /* trailing null */
2857 } else { /* BB improve the check for buffer overruns BB */
2858 name_len = strnlen(toName, PATH_MAX);
2859 name_len++; /* trailing null */
2860 strncpy(pSMB->FileName, toName, name_len);
2862 params = 6 + name_len;
2863 pSMB->MaxSetupCount = 0;
2867 pSMB->Reserved2 = 0;
2868 param_offset = offsetof(struct smb_com_transaction2_spi_req,
2869 InformationLevel) - 4;
2870 offset = param_offset + params;
2872 data_offset = (char *) (&pSMB->hdr.Protocol) + offset;
2873 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
2875 cifsConvertToUTF16((__le16 *) data_offset, fromName,
2876 PATH_MAX, nls_codepage, remap);
2877 name_len_target++; /* trailing null */
2878 name_len_target *= 2;
2879 } else { /* BB improve the check for buffer overruns BB */
2880 name_len_target = strnlen(fromName, PATH_MAX);
2881 name_len_target++; /* trailing null */
2882 strncpy(data_offset, fromName, name_len_target);
2885 pSMB->MaxParameterCount = cpu_to_le16(2);
2886 /* BB find exact max on data count below from sess*/
2887 pSMB->MaxDataCount = cpu_to_le16(1000);
2888 pSMB->SetupCount = 1;
2889 pSMB->Reserved3 = 0;
2890 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
2891 byte_count = 3 /* pad */ + params + name_len_target;
2892 pSMB->ParameterCount = cpu_to_le16(params);
2893 pSMB->TotalParameterCount = pSMB->ParameterCount;
2894 pSMB->DataCount = cpu_to_le16(name_len_target);
2895 pSMB->TotalDataCount = pSMB->DataCount;
2896 pSMB->ParameterOffset = cpu_to_le16(param_offset);
2897 pSMB->DataOffset = cpu_to_le16(offset);
2898 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_UNIX_HLINK);
2899 pSMB->Reserved4 = 0;
2900 inc_rfc1001_len(pSMB, byte_count);
2901 pSMB->ByteCount = cpu_to_le16(byte_count);
2902 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2903 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2904 cifs_stats_inc(&tcon->stats.cifs_stats.num_hardlinks);
2906 cifs_dbg(FYI, "Send error in SetPathInfo (hard link) = %d\n",
2909 cifs_buf_release(pSMB);
2911 goto createHardLinkRetry;
2917 CIFSCreateHardLink(const unsigned int xid, struct cifs_tcon *tcon,
2918 const char *from_name, const char *to_name,
2919 struct cifs_sb_info *cifs_sb)
2922 NT_RENAME_REQ *pSMB = NULL;
2923 RENAME_RSP *pSMBr = NULL;
2925 int name_len, name_len2;
2927 int remap = cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR;
2929 cifs_dbg(FYI, "In CIFSCreateHardLink\n");
2930 winCreateHardLinkRetry:
2932 rc = smb_init(SMB_COM_NT_RENAME, 4, tcon, (void **) &pSMB,
2937 pSMB->SearchAttributes =
2938 cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM |
2940 pSMB->Flags = cpu_to_le16(CREATE_HARD_LINK);
2941 pSMB->ClusterCount = 0;
2943 pSMB->BufferFormat = 0x04;
2945 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
2947 cifsConvertToUTF16((__le16 *) pSMB->OldFileName, from_name,
2948 PATH_MAX, cifs_sb->local_nls, remap);
2949 name_len++; /* trailing null */
2952 /* protocol specifies ASCII buffer format (0x04) for unicode */
2953 pSMB->OldFileName[name_len] = 0x04;
2954 pSMB->OldFileName[name_len + 1] = 0x00; /* pad */
2956 cifsConvertToUTF16((__le16 *)&pSMB->OldFileName[name_len+2],
2957 to_name, PATH_MAX, cifs_sb->local_nls,
2959 name_len2 += 1 /* trailing null */ + 1 /* Signature word */ ;
2960 name_len2 *= 2; /* convert to bytes */
2961 } else { /* BB improve the check for buffer overruns BB */
2962 name_len = strnlen(from_name, PATH_MAX);
2963 name_len++; /* trailing null */
2964 strncpy(pSMB->OldFileName, from_name, name_len);
2965 name_len2 = strnlen(to_name, PATH_MAX);
2966 name_len2++; /* trailing null */
2967 pSMB->OldFileName[name_len] = 0x04; /* 2nd buffer format */
2968 strncpy(&pSMB->OldFileName[name_len + 1], to_name, name_len2);
2969 name_len2++; /* trailing null */
2970 name_len2++; /* signature byte */
2973 count = 1 /* string type byte */ + name_len + name_len2;
2974 inc_rfc1001_len(pSMB, count);
2975 pSMB->ByteCount = cpu_to_le16(count);
2977 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
2978 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
2979 cifs_stats_inc(&tcon->stats.cifs_stats.num_hardlinks);
2981 cifs_dbg(FYI, "Send error in hard link (NT rename) = %d\n", rc);
2983 cifs_buf_release(pSMB);
2985 goto winCreateHardLinkRetry;
2991 CIFSSMBUnixQuerySymLink(const unsigned int xid, struct cifs_tcon *tcon,
2992 const unsigned char *searchName, char **symlinkinfo,
2993 const struct nls_table *nls_codepage)
2995 /* SMB_QUERY_FILE_UNIX_LINK */
2996 TRANSACTION2_QPI_REQ *pSMB = NULL;
2997 TRANSACTION2_QPI_RSP *pSMBr = NULL;
3001 __u16 params, byte_count;
3004 cifs_dbg(FYI, "In QPathSymLinkInfo (Unix) for path %s\n", searchName);
3007 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3012 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
3014 cifs_strtoUTF16((__le16 *) pSMB->FileName, searchName,
3015 PATH_MAX, nls_codepage);
3016 name_len++; /* trailing null */
3018 } else { /* BB improve the check for buffer overruns BB */
3019 name_len = strnlen(searchName, PATH_MAX);
3020 name_len++; /* trailing null */
3021 strncpy(pSMB->FileName, searchName, name_len);
3024 params = 2 /* level */ + 4 /* rsrvd */ + name_len /* incl null */ ;
3025 pSMB->TotalDataCount = 0;
3026 pSMB->MaxParameterCount = cpu_to_le16(2);
3027 pSMB->MaxDataCount = cpu_to_le16(CIFSMaxBufSize);
3028 pSMB->MaxSetupCount = 0;
3032 pSMB->Reserved2 = 0;
3033 pSMB->ParameterOffset = cpu_to_le16(offsetof(
3034 struct smb_com_transaction2_qpi_req, InformationLevel) - 4);
3035 pSMB->DataCount = 0;
3036 pSMB->DataOffset = 0;
3037 pSMB->SetupCount = 1;
3038 pSMB->Reserved3 = 0;
3039 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
3040 byte_count = params + 1 /* pad */ ;
3041 pSMB->TotalParameterCount = cpu_to_le16(params);
3042 pSMB->ParameterCount = pSMB->TotalParameterCount;
3043 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_UNIX_LINK);
3044 pSMB->Reserved4 = 0;
3045 inc_rfc1001_len(pSMB, byte_count);
3046 pSMB->ByteCount = cpu_to_le16(byte_count);
3048 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3049 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3051 cifs_dbg(FYI, "Send error in QuerySymLinkInfo = %d\n", rc);
3053 /* decode response */
3055 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
3056 /* BB also check enough total bytes returned */
3057 if (rc || get_bcc(&pSMBr->hdr) < 2)
3061 u16 count = le16_to_cpu(pSMBr->t2.DataCount);
3063 data_start = ((char *) &pSMBr->hdr.Protocol) +
3064 le16_to_cpu(pSMBr->t2.DataOffset);
3066 if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE)
3071 /* BB FIXME investigate remapping reserved chars here */
3072 *symlinkinfo = cifs_strndup_from_utf16(data_start,
3073 count, is_unicode, nls_codepage);
3078 cifs_buf_release(pSMB);
3080 goto querySymLinkRetry;
3085 * Recent Windows versions now create symlinks more frequently
3086 * and they use the "reparse point" mechanism below. We can of course
3087 * do symlinks nicely to Samba and other servers which support the
3088 * CIFS Unix Extensions and we can also do SFU symlinks and "client only"
3089 * "MF" symlinks optionally, but for recent Windows we really need to
3090 * reenable the code below and fix the cifs_symlink callers to handle this.
3091 * In the interim this code has been moved to its own config option so
3092 * it is not compiled in by default until callers fixed up and more tested.
3095 CIFSSMBQuerySymLink(const unsigned int xid, struct cifs_tcon *tcon,
3096 __u16 fid, char **symlinkinfo,
3097 const struct nls_table *nls_codepage)
3101 struct smb_com_transaction_ioctl_req *pSMB;
3102 struct smb_com_transaction_ioctl_rsp *pSMBr;
3104 unsigned int sub_len;
3106 struct reparse_symlink_data *reparse_buf;
3107 struct reparse_posix_data *posix_buf;
3108 __u32 data_offset, data_count;
3111 cifs_dbg(FYI, "In Windows reparse style QueryLink for fid %u\n", fid);
3112 rc = smb_init(SMB_COM_NT_TRANSACT, 23, tcon, (void **) &pSMB,
3117 pSMB->TotalParameterCount = 0 ;
3118 pSMB->TotalDataCount = 0;
3119 pSMB->MaxParameterCount = cpu_to_le32(2);
3120 /* BB find exact data count max from sess structure BB */
3121 pSMB->MaxDataCount = cpu_to_le32(CIFSMaxBufSize & 0xFFFFFF00);
3122 pSMB->MaxSetupCount = 4;
3124 pSMB->ParameterOffset = 0;
3125 pSMB->DataCount = 0;
3126 pSMB->DataOffset = 0;
3127 pSMB->SetupCount = 4;
3128 pSMB->SubCommand = cpu_to_le16(NT_TRANSACT_IOCTL);
3129 pSMB->ParameterCount = pSMB->TotalParameterCount;
3130 pSMB->FunctionCode = cpu_to_le32(FSCTL_GET_REPARSE_POINT);
3131 pSMB->IsFsctl = 1; /* FSCTL */
3132 pSMB->IsRootFlag = 0;
3133 pSMB->Fid = fid; /* file handle always le */
3134 pSMB->ByteCount = 0;
3136 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3137 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3139 cifs_dbg(FYI, "Send error in QueryReparseLinkInfo = %d\n", rc);
3143 data_offset = le32_to_cpu(pSMBr->DataOffset);
3144 data_count = le32_to_cpu(pSMBr->DataCount);
3145 if (get_bcc(&pSMBr->hdr) < 2 || data_offset > 512) {
3146 /* BB also check enough total bytes returned */
3147 rc = -EIO; /* bad smb */
3150 if (!data_count || (data_count > 2048)) {
3152 cifs_dbg(FYI, "Invalid return data count on get reparse info ioctl\n");
3155 end_of_smb = 2 + get_bcc(&pSMBr->hdr) + (char *)&pSMBr->ByteCount;
3156 reparse_buf = (struct reparse_symlink_data *)
3157 ((char *)&pSMBr->hdr.Protocol + data_offset);
3158 if ((char *)reparse_buf >= end_of_smb) {
3162 if (reparse_buf->ReparseTag == cpu_to_le32(IO_REPARSE_TAG_NFS)) {
3163 cifs_dbg(FYI, "NFS style reparse tag\n");
3164 posix_buf = (struct reparse_posix_data *)reparse_buf;
3166 if (posix_buf->InodeType != cpu_to_le64(NFS_SPECFILE_LNK)) {
3167 cifs_dbg(FYI, "unsupported file type 0x%llx\n",
3168 le64_to_cpu(posix_buf->InodeType));
3173 sub_len = le16_to_cpu(reparse_buf->ReparseDataLength);
3174 if (posix_buf->PathBuffer + sub_len > end_of_smb) {
3175 cifs_dbg(FYI, "reparse buf beyond SMB\n");
3179 *symlinkinfo = cifs_strndup_from_utf16(posix_buf->PathBuffer,
3180 sub_len, is_unicode, nls_codepage);
3182 } else if (reparse_buf->ReparseTag !=
3183 cpu_to_le32(IO_REPARSE_TAG_SYMLINK)) {
3188 /* Reparse tag is NTFS symlink */
3189 sub_start = le16_to_cpu(reparse_buf->SubstituteNameOffset) +
3190 reparse_buf->PathBuffer;
3191 sub_len = le16_to_cpu(reparse_buf->SubstituteNameLength);
3192 if (sub_start + sub_len > end_of_smb) {
3193 cifs_dbg(FYI, "reparse buf beyond SMB\n");
3197 if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE)
3202 /* BB FIXME investigate remapping reserved chars here */
3203 *symlinkinfo = cifs_strndup_from_utf16(sub_start, sub_len, is_unicode,
3208 cifs_buf_release(pSMB);
3211 * Note: On -EAGAIN error only caller can retry on handle based calls
3212 * since file handle passed in no longer valid.
3218 CIFSSMB_set_compression(const unsigned int xid, struct cifs_tcon *tcon,
3223 struct smb_com_transaction_compr_ioctl_req *pSMB;
3224 struct smb_com_transaction_ioctl_rsp *pSMBr;
3226 cifs_dbg(FYI, "Set compression for %u\n", fid);
3227 rc = smb_init(SMB_COM_NT_TRANSACT, 23, tcon, (void **) &pSMB,
3232 pSMB->compression_state = cpu_to_le16(COMPRESSION_FORMAT_DEFAULT);
3234 pSMB->TotalParameterCount = 0;
3235 pSMB->TotalDataCount = __constant_cpu_to_le32(2);
3236 pSMB->MaxParameterCount = 0;
3237 pSMB->MaxDataCount = 0;
3238 pSMB->MaxSetupCount = 4;
3240 pSMB->ParameterOffset = 0;
3241 pSMB->DataCount = __constant_cpu_to_le32(2);
3243 cpu_to_le32(offsetof(struct smb_com_transaction_compr_ioctl_req,
3244 compression_state) - 4); /* 84 */
3245 pSMB->SetupCount = 4;
3246 pSMB->SubCommand = __constant_cpu_to_le16(NT_TRANSACT_IOCTL);
3247 pSMB->ParameterCount = 0;
3248 pSMB->FunctionCode = __constant_cpu_to_le32(FSCTL_SET_COMPRESSION);
3249 pSMB->IsFsctl = 1; /* FSCTL */
3250 pSMB->IsRootFlag = 0;
3251 pSMB->Fid = fid; /* file handle always le */
3252 /* 3 byte pad, followed by 2 byte compress state */
3253 pSMB->ByteCount = __constant_cpu_to_le16(5);
3254 inc_rfc1001_len(pSMB, 5);
3256 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3257 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3259 cifs_dbg(FYI, "Send error in SetCompression = %d\n", rc);
3261 cifs_buf_release(pSMB);
3264 * Note: On -EAGAIN error only caller can retry on handle based calls
3265 * since file handle passed in no longer valid.
3271 #ifdef CONFIG_CIFS_POSIX
3273 /*Convert an Access Control Entry from wire format to local POSIX xattr format*/
3274 static void cifs_convert_ace(posix_acl_xattr_entry *ace,
3275 struct cifs_posix_ace *cifs_ace)
3277 /* u8 cifs fields do not need le conversion */
3278 ace->e_perm = cpu_to_le16(cifs_ace->cifs_e_perm);
3279 ace->e_tag = cpu_to_le16(cifs_ace->cifs_e_tag);
3280 ace->e_id = cpu_to_le32(le64_to_cpu(cifs_ace->cifs_uid));
3282 cifs_dbg(FYI, "perm %d tag %d id %d\n",
3283 ace->e_perm, ace->e_tag, ace->e_id);
3289 /* Convert ACL from CIFS POSIX wire format to local Linux POSIX ACL xattr */
3290 static int cifs_copy_posix_acl(char *trgt, char *src, const int buflen,
3291 const int acl_type, const int size_of_data_area)
3296 struct cifs_posix_ace *pACE;
3297 struct cifs_posix_acl *cifs_acl = (struct cifs_posix_acl *)src;
3298 posix_acl_xattr_header *local_acl = (posix_acl_xattr_header *)trgt;
3300 if (le16_to_cpu(cifs_acl->version) != CIFS_ACL_VERSION)
3303 if (acl_type & ACL_TYPE_ACCESS) {
3304 count = le16_to_cpu(cifs_acl->access_entry_count);
3305 pACE = &cifs_acl->ace_array[0];
3306 size = sizeof(struct cifs_posix_acl);
3307 size += sizeof(struct cifs_posix_ace) * count;
3308 /* check if we would go beyond end of SMB */
3309 if (size_of_data_area < size) {
3310 cifs_dbg(FYI, "bad CIFS POSIX ACL size %d vs. %d\n",
3311 size_of_data_area, size);
3314 } else if (acl_type & ACL_TYPE_DEFAULT) {
3315 count = le16_to_cpu(cifs_acl->access_entry_count);
3316 size = sizeof(struct cifs_posix_acl);
3317 size += sizeof(struct cifs_posix_ace) * count;
3318 /* skip past access ACEs to get to default ACEs */
3319 pACE = &cifs_acl->ace_array[count];
3320 count = le16_to_cpu(cifs_acl->default_entry_count);
3321 size += sizeof(struct cifs_posix_ace) * count;
3322 /* check if we would go beyond end of SMB */
3323 if (size_of_data_area < size)
3330 size = posix_acl_xattr_size(count);
3331 if ((buflen == 0) || (local_acl == NULL)) {
3332 /* used to query ACL EA size */
3333 } else if (size > buflen) {
3335 } else /* buffer big enough */ {
3336 local_acl->a_version = cpu_to_le32(POSIX_ACL_XATTR_VERSION);
3337 for (i = 0; i < count ; i++) {
3338 cifs_convert_ace(&local_acl->a_entries[i], pACE);
3345 static __u16 convert_ace_to_cifs_ace(struct cifs_posix_ace *cifs_ace,
3346 const posix_acl_xattr_entry *local_ace)
3348 __u16 rc = 0; /* 0 = ACL converted ok */
3350 cifs_ace->cifs_e_perm = le16_to_cpu(local_ace->e_perm);
3351 cifs_ace->cifs_e_tag = le16_to_cpu(local_ace->e_tag);
3352 /* BB is there a better way to handle the large uid? */
3353 if (local_ace->e_id == cpu_to_le32(-1)) {
3354 /* Probably no need to le convert -1 on any arch but can not hurt */
3355 cifs_ace->cifs_uid = cpu_to_le64(-1);
3357 cifs_ace->cifs_uid = cpu_to_le64(le32_to_cpu(local_ace->e_id));
3359 cifs_dbg(FYI, "perm %d tag %d id %d\n",
3360 ace->e_perm, ace->e_tag, ace->e_id);
3365 /* Convert ACL from local Linux POSIX xattr to CIFS POSIX ACL wire format */
3366 static __u16 ACL_to_cifs_posix(char *parm_data, const char *pACL,
3367 const int buflen, const int acl_type)
3370 struct cifs_posix_acl *cifs_acl = (struct cifs_posix_acl *)parm_data;
3371 posix_acl_xattr_header *local_acl = (posix_acl_xattr_header *)pACL;
3375 if ((buflen == 0) || (pACL == NULL) || (cifs_acl == NULL))
3378 count = posix_acl_xattr_count((size_t)buflen);
3379 cifs_dbg(FYI, "setting acl with %d entries from buf of length %d and version of %d\n",
3380 count, buflen, le32_to_cpu(local_acl->a_version));
3381 if (le32_to_cpu(local_acl->a_version) != 2) {
3382 cifs_dbg(FYI, "unknown POSIX ACL version %d\n",
3383 le32_to_cpu(local_acl->a_version));
3386 cifs_acl->version = cpu_to_le16(1);
3387 if (acl_type == ACL_TYPE_ACCESS) {
3388 cifs_acl->access_entry_count = cpu_to_le16(count);
3389 cifs_acl->default_entry_count = __constant_cpu_to_le16(0xFFFF);
3390 } else if (acl_type == ACL_TYPE_DEFAULT) {
3391 cifs_acl->default_entry_count = cpu_to_le16(count);
3392 cifs_acl->access_entry_count = __constant_cpu_to_le16(0xFFFF);
3394 cifs_dbg(FYI, "unknown ACL type %d\n", acl_type);
3397 for (i = 0; i < count; i++) {
3398 rc = convert_ace_to_cifs_ace(&cifs_acl->ace_array[i],
3399 &local_acl->a_entries[i]);
3401 /* ACE not converted */
3406 rc = (__u16)(count * sizeof(struct cifs_posix_ace));
3407 rc += sizeof(struct cifs_posix_acl);
3408 /* BB add check to make sure ACL does not overflow SMB */
3414 CIFSSMBGetPosixACL(const unsigned int xid, struct cifs_tcon *tcon,
3415 const unsigned char *searchName,
3416 char *acl_inf, const int buflen, const int acl_type,
3417 const struct nls_table *nls_codepage, int remap)
3419 /* SMB_QUERY_POSIX_ACL */
3420 TRANSACTION2_QPI_REQ *pSMB = NULL;
3421 TRANSACTION2_QPI_RSP *pSMBr = NULL;
3425 __u16 params, byte_count;
3427 cifs_dbg(FYI, "In GetPosixACL (Unix) for path %s\n", searchName);
3430 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3435 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
3437 cifsConvertToUTF16((__le16 *) pSMB->FileName,
3438 searchName, PATH_MAX, nls_codepage,
3440 name_len++; /* trailing null */
3442 pSMB->FileName[name_len] = 0;
3443 pSMB->FileName[name_len+1] = 0;
3444 } else { /* BB improve the check for buffer overruns BB */
3445 name_len = strnlen(searchName, PATH_MAX);
3446 name_len++; /* trailing null */
3447 strncpy(pSMB->FileName, searchName, name_len);
3450 params = 2 /* level */ + 4 /* rsrvd */ + name_len /* incl null */ ;
3451 pSMB->TotalDataCount = 0;
3452 pSMB->MaxParameterCount = cpu_to_le16(2);
3453 /* BB find exact max data count below from sess structure BB */
3454 pSMB->MaxDataCount = cpu_to_le16(4000);
3455 pSMB->MaxSetupCount = 0;
3459 pSMB->Reserved2 = 0;
3460 pSMB->ParameterOffset = cpu_to_le16(
3461 offsetof(struct smb_com_transaction2_qpi_req,
3462 InformationLevel) - 4);
3463 pSMB->DataCount = 0;
3464 pSMB->DataOffset = 0;
3465 pSMB->SetupCount = 1;
3466 pSMB->Reserved3 = 0;
3467 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
3468 byte_count = params + 1 /* pad */ ;
3469 pSMB->TotalParameterCount = cpu_to_le16(params);
3470 pSMB->ParameterCount = pSMB->TotalParameterCount;
3471 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_POSIX_ACL);
3472 pSMB->Reserved4 = 0;
3473 inc_rfc1001_len(pSMB, byte_count);
3474 pSMB->ByteCount = cpu_to_le16(byte_count);
3476 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3477 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3478 cifs_stats_inc(&tcon->stats.cifs_stats.num_acl_get);
3480 cifs_dbg(FYI, "Send error in Query POSIX ACL = %d\n", rc);
3482 /* decode response */
3484 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
3485 /* BB also check enough total bytes returned */
3486 if (rc || get_bcc(&pSMBr->hdr) < 2)
3487 rc = -EIO; /* bad smb */
3489 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
3490 __u16 count = le16_to_cpu(pSMBr->t2.DataCount);
3491 rc = cifs_copy_posix_acl(acl_inf,
3492 (char *)&pSMBr->hdr.Protocol+data_offset,
3493 buflen, acl_type, count);
3496 cifs_buf_release(pSMB);
3503 CIFSSMBSetPosixACL(const unsigned int xid, struct cifs_tcon *tcon,
3504 const unsigned char *fileName,
3505 const char *local_acl, const int buflen,
3507 const struct nls_table *nls_codepage, int remap)
3509 struct smb_com_transaction2_spi_req *pSMB = NULL;
3510 struct smb_com_transaction2_spi_rsp *pSMBr = NULL;
3514 int bytes_returned = 0;
3515 __u16 params, byte_count, data_count, param_offset, offset;
3517 cifs_dbg(FYI, "In SetPosixACL (Unix) for path %s\n", fileName);
3519 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3523 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
3525 cifsConvertToUTF16((__le16 *) pSMB->FileName, fileName,
3526 PATH_MAX, nls_codepage, remap);
3527 name_len++; /* trailing null */
3529 } else { /* BB improve the check for buffer overruns BB */
3530 name_len = strnlen(fileName, PATH_MAX);
3531 name_len++; /* trailing null */
3532 strncpy(pSMB->FileName, fileName, name_len);
3534 params = 6 + name_len;
3535 pSMB->MaxParameterCount = cpu_to_le16(2);
3536 /* BB find max SMB size from sess */
3537 pSMB->MaxDataCount = cpu_to_le16(1000);
3538 pSMB->MaxSetupCount = 0;
3542 pSMB->Reserved2 = 0;
3543 param_offset = offsetof(struct smb_com_transaction2_spi_req,
3544 InformationLevel) - 4;
3545 offset = param_offset + params;
3546 parm_data = ((char *) &pSMB->hdr.Protocol) + offset;
3547 pSMB->ParameterOffset = cpu_to_le16(param_offset);
3549 /* convert to on the wire format for POSIX ACL */
3550 data_count = ACL_to_cifs_posix(parm_data, local_acl, buflen, acl_type);
3552 if (data_count == 0) {
3554 goto setACLerrorExit;
3556 pSMB->DataOffset = cpu_to_le16(offset);
3557 pSMB->SetupCount = 1;
3558 pSMB->Reserved3 = 0;
3559 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
3560 pSMB->InformationLevel = cpu_to_le16(SMB_SET_POSIX_ACL);
3561 byte_count = 3 /* pad */ + params + data_count;
3562 pSMB->DataCount = cpu_to_le16(data_count);
3563 pSMB->TotalDataCount = pSMB->DataCount;
3564 pSMB->ParameterCount = cpu_to_le16(params);
3565 pSMB->TotalParameterCount = pSMB->ParameterCount;
3566 pSMB->Reserved4 = 0;
3567 inc_rfc1001_len(pSMB, byte_count);
3568 pSMB->ByteCount = cpu_to_le16(byte_count);
3569 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3570 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3572 cifs_dbg(FYI, "Set POSIX ACL returned %d\n", rc);
3575 cifs_buf_release(pSMB);
3581 /* BB fix tabs in this function FIXME BB */
3583 CIFSGetExtAttr(const unsigned int xid, struct cifs_tcon *tcon,
3584 const int netfid, __u64 *pExtAttrBits, __u64 *pMask)
3587 struct smb_t2_qfi_req *pSMB = NULL;
3588 struct smb_t2_qfi_rsp *pSMBr = NULL;
3590 __u16 params, byte_count;
3592 cifs_dbg(FYI, "In GetExtAttr\n");
3597 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3602 params = 2 /* level */ + 2 /* fid */;
3603 pSMB->t2.TotalDataCount = 0;
3604 pSMB->t2.MaxParameterCount = cpu_to_le16(4);
3605 /* BB find exact max data count below from sess structure BB */
3606 pSMB->t2.MaxDataCount = cpu_to_le16(4000);
3607 pSMB->t2.MaxSetupCount = 0;
3608 pSMB->t2.Reserved = 0;
3610 pSMB->t2.Timeout = 0;
3611 pSMB->t2.Reserved2 = 0;
3612 pSMB->t2.ParameterOffset = cpu_to_le16(offsetof(struct smb_t2_qfi_req,
3614 pSMB->t2.DataCount = 0;
3615 pSMB->t2.DataOffset = 0;
3616 pSMB->t2.SetupCount = 1;
3617 pSMB->t2.Reserved3 = 0;
3618 pSMB->t2.SubCommand = cpu_to_le16(TRANS2_QUERY_FILE_INFORMATION);
3619 byte_count = params + 1 /* pad */ ;
3620 pSMB->t2.TotalParameterCount = cpu_to_le16(params);
3621 pSMB->t2.ParameterCount = pSMB->t2.TotalParameterCount;
3622 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_ATTR_FLAGS);
3625 inc_rfc1001_len(pSMB, byte_count);
3626 pSMB->t2.ByteCount = cpu_to_le16(byte_count);
3628 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3629 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3631 cifs_dbg(FYI, "error %d in GetExtAttr\n", rc);
3633 /* decode response */
3634 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
3635 /* BB also check enough total bytes returned */
3636 if (rc || get_bcc(&pSMBr->hdr) < 2)
3637 /* If rc should we check for EOPNOSUPP and
3638 disable the srvino flag? or in caller? */
3639 rc = -EIO; /* bad smb */
3641 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
3642 __u16 count = le16_to_cpu(pSMBr->t2.DataCount);
3643 struct file_chattr_info *pfinfo;
3644 /* BB Do we need a cast or hash here ? */
3646 cifs_dbg(FYI, "Illegal size ret in GetExtAttr\n");
3650 pfinfo = (struct file_chattr_info *)
3651 (data_offset + (char *) &pSMBr->hdr.Protocol);
3652 *pExtAttrBits = le64_to_cpu(pfinfo->mode);
3653 *pMask = le64_to_cpu(pfinfo->mask);
3657 cifs_buf_release(pSMB);
3659 goto GetExtAttrRetry;
3663 #endif /* CONFIG_POSIX */
3665 #ifdef CONFIG_CIFS_ACL
3667 * Initialize NT TRANSACT SMB into small smb request buffer. This assumes that
3668 * all NT TRANSACTS that we init here have total parm and data under about 400
3669 * bytes (to fit in small cifs buffer size), which is the case so far, it
3670 * easily fits. NB: Setup words themselves and ByteCount MaxSetupCount (size of
3671 * returned setup area) and MaxParameterCount (returned parms size) must be set
3675 smb_init_nttransact(const __u16 sub_command, const int setup_count,
3676 const int parm_len, struct cifs_tcon *tcon,
3681 struct smb_com_ntransact_req *pSMB;
3683 rc = small_smb_init(SMB_COM_NT_TRANSACT, 19 + setup_count, tcon,
3687 *ret_buf = (void *)pSMB;
3689 pSMB->TotalParameterCount = cpu_to_le32(parm_len);
3690 pSMB->TotalDataCount = 0;
3691 pSMB->MaxDataCount = cpu_to_le32(CIFSMaxBufSize & 0xFFFFFF00);
3692 pSMB->ParameterCount = pSMB->TotalParameterCount;
3693 pSMB->DataCount = pSMB->TotalDataCount;
3694 temp_offset = offsetof(struct smb_com_ntransact_req, Parms) +
3695 (setup_count * 2) - 4 /* for rfc1001 length itself */;
3696 pSMB->ParameterOffset = cpu_to_le32(temp_offset);
3697 pSMB->DataOffset = cpu_to_le32(temp_offset + parm_len);
3698 pSMB->SetupCount = setup_count; /* no need to le convert byte fields */
3699 pSMB->SubCommand = cpu_to_le16(sub_command);
3704 validate_ntransact(char *buf, char **ppparm, char **ppdata,
3705 __u32 *pparmlen, __u32 *pdatalen)
3708 __u32 data_count, data_offset, parm_count, parm_offset;
3709 struct smb_com_ntransact_rsp *pSMBr;
3718 pSMBr = (struct smb_com_ntransact_rsp *)buf;
3720 bcc = get_bcc(&pSMBr->hdr);
3721 end_of_smb = 2 /* sizeof byte count */ + bcc +
3722 (char *)&pSMBr->ByteCount;
3724 data_offset = le32_to_cpu(pSMBr->DataOffset);
3725 data_count = le32_to_cpu(pSMBr->DataCount);
3726 parm_offset = le32_to_cpu(pSMBr->ParameterOffset);
3727 parm_count = le32_to_cpu(pSMBr->ParameterCount);
3729 *ppparm = (char *)&pSMBr->hdr.Protocol + parm_offset;
3730 *ppdata = (char *)&pSMBr->hdr.Protocol + data_offset;
3732 /* should we also check that parm and data areas do not overlap? */
3733 if (*ppparm > end_of_smb) {
3734 cifs_dbg(FYI, "parms start after end of smb\n");
3736 } else if (parm_count + *ppparm > end_of_smb) {
3737 cifs_dbg(FYI, "parm end after end of smb\n");
3739 } else if (*ppdata > end_of_smb) {
3740 cifs_dbg(FYI, "data starts after end of smb\n");
3742 } else if (data_count + *ppdata > end_of_smb) {
3743 cifs_dbg(FYI, "data %p + count %d (%p) past smb end %p start %p\n",
3744 *ppdata, data_count, (data_count + *ppdata),
3747 } else if (parm_count + data_count > bcc) {
3748 cifs_dbg(FYI, "parm count and data count larger than SMB\n");
3751 *pdatalen = data_count;
3752 *pparmlen = parm_count;
3756 /* Get Security Descriptor (by handle) from remote server for a file or dir */
3758 CIFSSMBGetCIFSACL(const unsigned int xid, struct cifs_tcon *tcon, __u16 fid,
3759 struct cifs_ntsd **acl_inf, __u32 *pbuflen)
3763 QUERY_SEC_DESC_REQ *pSMB;
3766 cifs_dbg(FYI, "GetCifsACL\n");
3771 rc = smb_init_nttransact(NT_TRANSACT_QUERY_SECURITY_DESC, 0,
3772 8 /* parm len */, tcon, (void **) &pSMB);
3776 pSMB->MaxParameterCount = cpu_to_le32(4);
3777 /* BB TEST with big acls that might need to be e.g. larger than 16K */
3778 pSMB->MaxSetupCount = 0;
3779 pSMB->Fid = fid; /* file handle always le */
3780 pSMB->AclFlags = cpu_to_le32(CIFS_ACL_OWNER | CIFS_ACL_GROUP |
3782 pSMB->ByteCount = cpu_to_le16(11); /* 3 bytes pad + 8 bytes parm */
3783 inc_rfc1001_len(pSMB, 11);
3784 iov[0].iov_base = (char *)pSMB;
3785 iov[0].iov_len = be32_to_cpu(pSMB->hdr.smb_buf_length) + 4;
3787 rc = SendReceive2(xid, tcon->ses, iov, 1 /* num iovec */, &buf_type,
3789 cifs_stats_inc(&tcon->stats.cifs_stats.num_acl_get);
3791 cifs_dbg(FYI, "Send error in QuerySecDesc = %d\n", rc);
3792 } else { /* decode response */
3796 struct smb_com_ntransact_rsp *pSMBr;
3799 /* validate_nttransact */
3800 rc = validate_ntransact(iov[0].iov_base, (char **)&parm,
3801 &pdata, &parm_len, pbuflen);
3804 pSMBr = (struct smb_com_ntransact_rsp *)iov[0].iov_base;
3806 cifs_dbg(FYI, "smb %p parm %p data %p\n",
3807 pSMBr, parm, *acl_inf);
3809 if (le32_to_cpu(pSMBr->ParameterCount) != 4) {
3810 rc = -EIO; /* bad smb */
3815 /* BB check that data area is minimum length and as big as acl_len */
3817 acl_len = le32_to_cpu(*parm);
3818 if (acl_len != *pbuflen) {
3819 cifs_dbg(VFS, "acl length %d does not match %d\n",
3821 if (*pbuflen > acl_len)
3825 /* check if buffer is big enough for the acl
3826 header followed by the smallest SID */
3827 if ((*pbuflen < sizeof(struct cifs_ntsd) + 8) ||
3828 (*pbuflen >= 64 * 1024)) {
3829 cifs_dbg(VFS, "bad acl length %d\n", *pbuflen);
3833 *acl_inf = kmemdup(pdata, *pbuflen, GFP_KERNEL);
3834 if (*acl_inf == NULL) {
3841 if (buf_type == CIFS_SMALL_BUFFER)
3842 cifs_small_buf_release(iov[0].iov_base);
3843 else if (buf_type == CIFS_LARGE_BUFFER)
3844 cifs_buf_release(iov[0].iov_base);
3845 /* cifs_small_buf_release(pSMB); */ /* Freed earlier now in SendReceive2 */
3850 CIFSSMBSetCIFSACL(const unsigned int xid, struct cifs_tcon *tcon, __u16 fid,
3851 struct cifs_ntsd *pntsd, __u32 acllen, int aclflag)
3853 __u16 byte_count, param_count, data_count, param_offset, data_offset;
3855 int bytes_returned = 0;
3856 SET_SEC_DESC_REQ *pSMB = NULL;
3860 rc = smb_init(SMB_COM_NT_TRANSACT, 19, tcon, (void **) &pSMB, &pSMBr);
3864 pSMB->MaxSetupCount = 0;
3868 param_offset = offsetof(struct smb_com_transaction_ssec_req, Fid) - 4;
3869 data_count = acllen;
3870 data_offset = param_offset + param_count;
3871 byte_count = 3 /* pad */ + param_count;
3873 pSMB->DataCount = cpu_to_le32(data_count);
3874 pSMB->TotalDataCount = pSMB->DataCount;
3875 pSMB->MaxParameterCount = cpu_to_le32(4);
3876 pSMB->MaxDataCount = cpu_to_le32(16384);
3877 pSMB->ParameterCount = cpu_to_le32(param_count);
3878 pSMB->ParameterOffset = cpu_to_le32(param_offset);
3879 pSMB->TotalParameterCount = pSMB->ParameterCount;
3880 pSMB->DataOffset = cpu_to_le32(data_offset);
3881 pSMB->SetupCount = 0;
3882 pSMB->SubCommand = cpu_to_le16(NT_TRANSACT_SET_SECURITY_DESC);
3883 pSMB->ByteCount = cpu_to_le16(byte_count+data_count);
3885 pSMB->Fid = fid; /* file handle always le */
3886 pSMB->Reserved2 = 0;
3887 pSMB->AclFlags = cpu_to_le32(aclflag);
3889 if (pntsd && acllen) {
3890 memcpy((char *)pSMBr + offsetof(struct smb_hdr, Protocol) +
3891 data_offset, pntsd, acllen);
3892 inc_rfc1001_len(pSMB, byte_count + data_count);
3894 inc_rfc1001_len(pSMB, byte_count);
3896 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3897 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3899 cifs_dbg(FYI, "SetCIFSACL bytes_returned: %d, rc: %d\n",
3900 bytes_returned, rc);
3902 cifs_dbg(FYI, "Set CIFS ACL returned %d\n", rc);
3903 cifs_buf_release(pSMB);
3906 goto setCifsAclRetry;
3911 #endif /* CONFIG_CIFS_ACL */
3913 /* Legacy Query Path Information call for lookup to old servers such
3916 SMBQueryInformation(const unsigned int xid, struct cifs_tcon *tcon,
3917 const char *search_name, FILE_ALL_INFO *data,
3918 const struct nls_table *nls_codepage, int remap)
3920 QUERY_INFORMATION_REQ *pSMB;
3921 QUERY_INFORMATION_RSP *pSMBr;
3926 cifs_dbg(FYI, "In SMBQPath path %s\n", search_name);
3928 rc = smb_init(SMB_COM_QUERY_INFORMATION, 0, tcon, (void **) &pSMB,
3933 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
3935 cifsConvertToUTF16((__le16 *) pSMB->FileName,
3936 search_name, PATH_MAX, nls_codepage,
3938 name_len++; /* trailing null */
3941 name_len = strnlen(search_name, PATH_MAX);
3942 name_len++; /* trailing null */
3943 strncpy(pSMB->FileName, search_name, name_len);
3945 pSMB->BufferFormat = 0x04;
3946 name_len++; /* account for buffer type byte */
3947 inc_rfc1001_len(pSMB, (__u16)name_len);
3948 pSMB->ByteCount = cpu_to_le16(name_len);
3950 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
3951 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
3953 cifs_dbg(FYI, "Send error in QueryInfo = %d\n", rc);
3956 __u32 time = le32_to_cpu(pSMBr->last_write_time);
3958 /* decode response */
3959 /* BB FIXME - add time zone adjustment BB */
3960 memset(data, 0, sizeof(FILE_ALL_INFO));
3963 /* decode time fields */
3964 data->ChangeTime = cpu_to_le64(cifs_UnixTimeToNT(ts));
3965 data->LastWriteTime = data->ChangeTime;
3966 data->LastAccessTime = 0;
3967 data->AllocationSize =
3968 cpu_to_le64(le32_to_cpu(pSMBr->size));
3969 data->EndOfFile = data->AllocationSize;
3971 cpu_to_le32(le16_to_cpu(pSMBr->attr));
3973 rc = -EIO; /* bad buffer passed in */
3975 cifs_buf_release(pSMB);
3984 CIFSSMBQFileInfo(const unsigned int xid, struct cifs_tcon *tcon,
3985 u16 netfid, FILE_ALL_INFO *pFindData)
3987 struct smb_t2_qfi_req *pSMB = NULL;
3988 struct smb_t2_qfi_rsp *pSMBr = NULL;
3991 __u16 params, byte_count;
3994 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
3999 params = 2 /* level */ + 2 /* fid */;
4000 pSMB->t2.TotalDataCount = 0;
4001 pSMB->t2.MaxParameterCount = cpu_to_le16(4);
4002 /* BB find exact max data count below from sess structure BB */
4003 pSMB->t2.MaxDataCount = cpu_to_le16(CIFSMaxBufSize);
4004 pSMB->t2.MaxSetupCount = 0;
4005 pSMB->t2.Reserved = 0;
4007 pSMB->t2.Timeout = 0;
4008 pSMB->t2.Reserved2 = 0;
4009 pSMB->t2.ParameterOffset = cpu_to_le16(offsetof(struct smb_t2_qfi_req,
4011 pSMB->t2.DataCount = 0;
4012 pSMB->t2.DataOffset = 0;
4013 pSMB->t2.SetupCount = 1;
4014 pSMB->t2.Reserved3 = 0;
4015 pSMB->t2.SubCommand = cpu_to_le16(TRANS2_QUERY_FILE_INFORMATION);
4016 byte_count = params + 1 /* pad */ ;
4017 pSMB->t2.TotalParameterCount = cpu_to_le16(params);
4018 pSMB->t2.ParameterCount = pSMB->t2.TotalParameterCount;
4019 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_ALL_INFO);
4022 inc_rfc1001_len(pSMB, byte_count);
4023 pSMB->t2.ByteCount = cpu_to_le16(byte_count);
4025 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4026 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4028 cifs_dbg(FYI, "Send error in QFileInfo = %d", rc);
4029 } else { /* decode response */
4030 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
4032 if (rc) /* BB add auto retry on EOPNOTSUPP? */
4034 else if (get_bcc(&pSMBr->hdr) < 40)
4035 rc = -EIO; /* bad smb */
4036 else if (pFindData) {
4037 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
4038 memcpy((char *) pFindData,
4039 (char *) &pSMBr->hdr.Protocol +
4040 data_offset, sizeof(FILE_ALL_INFO));
4044 cifs_buf_release(pSMB);
4046 goto QFileInfoRetry;
4052 CIFSSMBQPathInfo(const unsigned int xid, struct cifs_tcon *tcon,
4053 const char *search_name, FILE_ALL_INFO *data,
4054 int legacy /* old style infolevel */,
4055 const struct nls_table *nls_codepage, int remap)
4057 /* level 263 SMB_QUERY_FILE_ALL_INFO */
4058 TRANSACTION2_QPI_REQ *pSMB = NULL;
4059 TRANSACTION2_QPI_RSP *pSMBr = NULL;
4063 __u16 params, byte_count;
4065 /* cifs_dbg(FYI, "In QPathInfo path %s\n", search_name); */
4067 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
4072 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
4074 cifsConvertToUTF16((__le16 *) pSMB->FileName, search_name,
4075 PATH_MAX, nls_codepage, remap);
4076 name_len++; /* trailing null */
4078 } else { /* BB improve the check for buffer overruns BB */
4079 name_len = strnlen(search_name, PATH_MAX);
4080 name_len++; /* trailing null */
4081 strncpy(pSMB->FileName, search_name, name_len);
4084 params = 2 /* level */ + 4 /* reserved */ + name_len /* includes NUL */;
4085 pSMB->TotalDataCount = 0;
4086 pSMB->MaxParameterCount = cpu_to_le16(2);
4087 /* BB find exact max SMB PDU from sess structure BB */
4088 pSMB->MaxDataCount = cpu_to_le16(4000);
4089 pSMB->MaxSetupCount = 0;
4093 pSMB->Reserved2 = 0;
4094 pSMB->ParameterOffset = cpu_to_le16(offsetof(
4095 struct smb_com_transaction2_qpi_req, InformationLevel) - 4);
4096 pSMB->DataCount = 0;
4097 pSMB->DataOffset = 0;
4098 pSMB->SetupCount = 1;
4099 pSMB->Reserved3 = 0;
4100 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
4101 byte_count = params + 1 /* pad */ ;
4102 pSMB->TotalParameterCount = cpu_to_le16(params);
4103 pSMB->ParameterCount = pSMB->TotalParameterCount;
4105 pSMB->InformationLevel = cpu_to_le16(SMB_INFO_STANDARD);
4107 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_ALL_INFO);
4108 pSMB->Reserved4 = 0;
4109 inc_rfc1001_len(pSMB, byte_count);
4110 pSMB->ByteCount = cpu_to_le16(byte_count);
4112 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4113 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4115 cifs_dbg(FYI, "Send error in QPathInfo = %d\n", rc);
4116 } else { /* decode response */
4117 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
4119 if (rc) /* BB add auto retry on EOPNOTSUPP? */
4121 else if (!legacy && get_bcc(&pSMBr->hdr) < 40)
4122 rc = -EIO; /* bad smb */
4123 else if (legacy && get_bcc(&pSMBr->hdr) < 24)
4124 rc = -EIO; /* 24 or 26 expected but we do not read
4128 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
4131 * On legacy responses we do not read the last field,
4132 * EAsize, fortunately since it varies by subdialect and
4133 * also note it differs on Set vs Get, ie two bytes or 4
4134 * bytes depending but we don't care here.
4137 size = sizeof(FILE_INFO_STANDARD);
4139 size = sizeof(FILE_ALL_INFO);
4140 memcpy((char *) data, (char *) &pSMBr->hdr.Protocol +
4145 cifs_buf_release(pSMB);
4147 goto QPathInfoRetry;
4153 CIFSSMBUnixQFileInfo(const unsigned int xid, struct cifs_tcon *tcon,
4154 u16 netfid, FILE_UNIX_BASIC_INFO *pFindData)
4156 struct smb_t2_qfi_req *pSMB = NULL;
4157 struct smb_t2_qfi_rsp *pSMBr = NULL;
4160 __u16 params, byte_count;
4163 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
4168 params = 2 /* level */ + 2 /* fid */;
4169 pSMB->t2.TotalDataCount = 0;
4170 pSMB->t2.MaxParameterCount = cpu_to_le16(4);
4171 /* BB find exact max data count below from sess structure BB */
4172 pSMB->t2.MaxDataCount = cpu_to_le16(CIFSMaxBufSize);
4173 pSMB->t2.MaxSetupCount = 0;
4174 pSMB->t2.Reserved = 0;
4176 pSMB->t2.Timeout = 0;
4177 pSMB->t2.Reserved2 = 0;
4178 pSMB->t2.ParameterOffset = cpu_to_le16(offsetof(struct smb_t2_qfi_req,
4180 pSMB->t2.DataCount = 0;
4181 pSMB->t2.DataOffset = 0;
4182 pSMB->t2.SetupCount = 1;
4183 pSMB->t2.Reserved3 = 0;
4184 pSMB->t2.SubCommand = cpu_to_le16(TRANS2_QUERY_FILE_INFORMATION);
4185 byte_count = params + 1 /* pad */ ;
4186 pSMB->t2.TotalParameterCount = cpu_to_le16(params);
4187 pSMB->t2.ParameterCount = pSMB->t2.TotalParameterCount;
4188 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_UNIX_BASIC);
4191 inc_rfc1001_len(pSMB, byte_count);
4192 pSMB->t2.ByteCount = cpu_to_le16(byte_count);
4194 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4195 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4197 cifs_dbg(FYI, "Send error in UnixQFileInfo = %d", rc);
4198 } else { /* decode response */
4199 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
4201 if (rc || get_bcc(&pSMBr->hdr) < sizeof(FILE_UNIX_BASIC_INFO)) {
4202 cifs_dbg(VFS, "Malformed FILE_UNIX_BASIC_INFO response. Unix Extensions can be disabled on mount by specifying the nosfu mount option.\n");
4203 rc = -EIO; /* bad smb */
4205 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
4206 memcpy((char *) pFindData,
4207 (char *) &pSMBr->hdr.Protocol +
4209 sizeof(FILE_UNIX_BASIC_INFO));
4213 cifs_buf_release(pSMB);
4215 goto UnixQFileInfoRetry;
4221 CIFSSMBUnixQPathInfo(const unsigned int xid, struct cifs_tcon *tcon,
4222 const unsigned char *searchName,
4223 FILE_UNIX_BASIC_INFO *pFindData,
4224 const struct nls_table *nls_codepage, int remap)
4226 /* SMB_QUERY_FILE_UNIX_BASIC */
4227 TRANSACTION2_QPI_REQ *pSMB = NULL;
4228 TRANSACTION2_QPI_RSP *pSMBr = NULL;
4230 int bytes_returned = 0;
4232 __u16 params, byte_count;
4234 cifs_dbg(FYI, "In QPathInfo (Unix) the path %s\n", searchName);
4236 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
4241 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
4243 cifsConvertToUTF16((__le16 *) pSMB->FileName, searchName,
4244 PATH_MAX, nls_codepage, remap);
4245 name_len++; /* trailing null */
4247 } else { /* BB improve the check for buffer overruns BB */
4248 name_len = strnlen(searchName, PATH_MAX);
4249 name_len++; /* trailing null */
4250 strncpy(pSMB->FileName, searchName, name_len);
4253 params = 2 /* level */ + 4 /* reserved */ + name_len /* includes NUL */;
4254 pSMB->TotalDataCount = 0;
4255 pSMB->MaxParameterCount = cpu_to_le16(2);
4256 /* BB find exact max SMB PDU from sess structure BB */
4257 pSMB->MaxDataCount = cpu_to_le16(4000);
4258 pSMB->MaxSetupCount = 0;
4262 pSMB->Reserved2 = 0;
4263 pSMB->ParameterOffset = cpu_to_le16(offsetof(
4264 struct smb_com_transaction2_qpi_req, InformationLevel) - 4);
4265 pSMB->DataCount = 0;
4266 pSMB->DataOffset = 0;
4267 pSMB->SetupCount = 1;
4268 pSMB->Reserved3 = 0;
4269 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
4270 byte_count = params + 1 /* pad */ ;
4271 pSMB->TotalParameterCount = cpu_to_le16(params);
4272 pSMB->ParameterCount = pSMB->TotalParameterCount;
4273 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_UNIX_BASIC);
4274 pSMB->Reserved4 = 0;
4275 inc_rfc1001_len(pSMB, byte_count);
4276 pSMB->ByteCount = cpu_to_le16(byte_count);
4278 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4279 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4281 cifs_dbg(FYI, "Send error in UnixQPathInfo = %d", rc);
4282 } else { /* decode response */
4283 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
4285 if (rc || get_bcc(&pSMBr->hdr) < sizeof(FILE_UNIX_BASIC_INFO)) {
4286 cifs_dbg(VFS, "Malformed FILE_UNIX_BASIC_INFO response. Unix Extensions can be disabled on mount by specifying the nosfu mount option.\n");
4287 rc = -EIO; /* bad smb */
4289 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
4290 memcpy((char *) pFindData,
4291 (char *) &pSMBr->hdr.Protocol +
4293 sizeof(FILE_UNIX_BASIC_INFO));
4296 cifs_buf_release(pSMB);
4298 goto UnixQPathInfoRetry;
4303 /* xid, tcon, searchName and codepage are input parms, rest are returned */
4305 CIFSFindFirst(const unsigned int xid, struct cifs_tcon *tcon,
4306 const char *searchName, struct cifs_sb_info *cifs_sb,
4307 __u16 *pnetfid, __u16 search_flags,
4308 struct cifs_search_info *psrch_inf, bool msearch)
4310 /* level 257 SMB_ */
4311 TRANSACTION2_FFIRST_REQ *pSMB = NULL;
4312 TRANSACTION2_FFIRST_RSP *pSMBr = NULL;
4313 T2_FFIRST_RSP_PARMS *parms;
4315 int bytes_returned = 0;
4316 int name_len, remap;
4317 __u16 params, byte_count;
4318 struct nls_table *nls_codepage;
4320 cifs_dbg(FYI, "In FindFirst for %s\n", searchName);
4323 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
4328 nls_codepage = cifs_sb->local_nls;
4329 remap = cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR;
4331 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
4333 cifsConvertToUTF16((__le16 *) pSMB->FileName, searchName,
4334 PATH_MAX, nls_codepage, remap);
4335 /* We can not add the asterik earlier in case
4336 it got remapped to 0xF03A as if it were part of the
4337 directory name instead of a wildcard */
4340 pSMB->FileName[name_len] = CIFS_DIR_SEP(cifs_sb);
4341 pSMB->FileName[name_len+1] = 0;
4342 pSMB->FileName[name_len+2] = '*';
4343 pSMB->FileName[name_len+3] = 0;
4344 name_len += 4; /* now the trailing null */
4345 /* null terminate just in case */
4346 pSMB->FileName[name_len] = 0;
4347 pSMB->FileName[name_len+1] = 0;
4350 } else { /* BB add check for overrun of SMB buf BB */
4351 name_len = strnlen(searchName, PATH_MAX);
4352 /* BB fix here and in unicode clause above ie
4353 if (name_len > buffersize-header)
4354 free buffer exit; BB */
4355 strncpy(pSMB->FileName, searchName, name_len);
4357 pSMB->FileName[name_len] = CIFS_DIR_SEP(cifs_sb);
4358 pSMB->FileName[name_len+1] = '*';
4359 pSMB->FileName[name_len+2] = 0;
4364 params = 12 + name_len /* includes null */ ;
4365 pSMB->TotalDataCount = 0; /* no EAs */
4366 pSMB->MaxParameterCount = cpu_to_le16(10);
4367 pSMB->MaxDataCount = cpu_to_le16(CIFSMaxBufSize & 0xFFFFFF00);
4368 pSMB->MaxSetupCount = 0;
4372 pSMB->Reserved2 = 0;
4373 byte_count = params + 1 /* pad */ ;
4374 pSMB->TotalParameterCount = cpu_to_le16(params);
4375 pSMB->ParameterCount = pSMB->TotalParameterCount;
4376 pSMB->ParameterOffset = cpu_to_le16(
4377 offsetof(struct smb_com_transaction2_ffirst_req, SearchAttributes)
4379 pSMB->DataCount = 0;
4380 pSMB->DataOffset = 0;
4381 pSMB->SetupCount = 1; /* one byte, no need to make endian neutral */
4382 pSMB->Reserved3 = 0;
4383 pSMB->SubCommand = cpu_to_le16(TRANS2_FIND_FIRST);
4384 pSMB->SearchAttributes =
4385 cpu_to_le16(ATTR_READONLY | ATTR_HIDDEN | ATTR_SYSTEM |
4387 pSMB->SearchCount = cpu_to_le16(CIFSMaxBufSize/sizeof(FILE_UNIX_INFO));
4388 pSMB->SearchFlags = cpu_to_le16(search_flags);
4389 pSMB->InformationLevel = cpu_to_le16(psrch_inf->info_level);
4391 /* BB what should we set StorageType to? Does it matter? BB */
4392 pSMB->SearchStorageType = 0;
4393 inc_rfc1001_len(pSMB, byte_count);
4394 pSMB->ByteCount = cpu_to_le16(byte_count);
4396 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4397 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4398 cifs_stats_inc(&tcon->stats.cifs_stats.num_ffirst);
4400 if (rc) {/* BB add logic to retry regular search if Unix search
4401 rejected unexpectedly by server */
4402 /* BB Add code to handle unsupported level rc */
4403 cifs_dbg(FYI, "Error in FindFirst = %d\n", rc);
4405 cifs_buf_release(pSMB);
4407 /* BB eventually could optimize out free and realloc of buf */
4410 goto findFirstRetry;
4411 } else { /* decode response */
4412 /* BB remember to free buffer if error BB */
4413 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
4417 if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE)
4418 psrch_inf->unicode = true;
4420 psrch_inf->unicode = false;
4422 psrch_inf->ntwrk_buf_start = (char *)pSMBr;
4423 psrch_inf->smallBuf = 0;
4424 psrch_inf->srch_entries_start =
4425 (char *) &pSMBr->hdr.Protocol +
4426 le16_to_cpu(pSMBr->t2.DataOffset);
4427 parms = (T2_FFIRST_RSP_PARMS *)((char *) &pSMBr->hdr.Protocol +
4428 le16_to_cpu(pSMBr->t2.ParameterOffset));
4430 if (parms->EndofSearch)
4431 psrch_inf->endOfSearch = true;
4433 psrch_inf->endOfSearch = false;
4435 psrch_inf->entries_in_buffer =
4436 le16_to_cpu(parms->SearchCount);
4437 psrch_inf->index_of_last_entry = 2 /* skip . and .. */ +
4438 psrch_inf->entries_in_buffer;
4439 lnoff = le16_to_cpu(parms->LastNameOffset);
4440 if (CIFSMaxBufSize < lnoff) {
4441 cifs_dbg(VFS, "ignoring corrupt resume name\n");
4442 psrch_inf->last_entry = NULL;
4446 psrch_inf->last_entry = psrch_inf->srch_entries_start +
4450 *pnetfid = parms->SearchHandle;
4452 cifs_buf_release(pSMB);
4459 int CIFSFindNext(const unsigned int xid, struct cifs_tcon *tcon,
4460 __u16 searchHandle, __u16 search_flags,
4461 struct cifs_search_info *psrch_inf)
4463 TRANSACTION2_FNEXT_REQ *pSMB = NULL;
4464 TRANSACTION2_FNEXT_RSP *pSMBr = NULL;
4465 T2_FNEXT_RSP_PARMS *parms;
4466 char *response_data;
4469 unsigned int name_len;
4470 __u16 params, byte_count;
4472 cifs_dbg(FYI, "In FindNext\n");
4474 if (psrch_inf->endOfSearch)
4477 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
4482 params = 14; /* includes 2 bytes of null string, converted to LE below*/
4484 pSMB->TotalDataCount = 0; /* no EAs */
4485 pSMB->MaxParameterCount = cpu_to_le16(8);
4486 pSMB->MaxDataCount = cpu_to_le16(CIFSMaxBufSize & 0xFFFFFF00);
4487 pSMB->MaxSetupCount = 0;
4491 pSMB->Reserved2 = 0;
4492 pSMB->ParameterOffset = cpu_to_le16(
4493 offsetof(struct smb_com_transaction2_fnext_req,SearchHandle) - 4);
4494 pSMB->DataCount = 0;
4495 pSMB->DataOffset = 0;
4496 pSMB->SetupCount = 1;
4497 pSMB->Reserved3 = 0;
4498 pSMB->SubCommand = cpu_to_le16(TRANS2_FIND_NEXT);
4499 pSMB->SearchHandle = searchHandle; /* always kept as le */
4501 cpu_to_le16(CIFSMaxBufSize / sizeof(FILE_UNIX_INFO));
4502 pSMB->InformationLevel = cpu_to_le16(psrch_inf->info_level);
4503 pSMB->ResumeKey = psrch_inf->resume_key;
4504 pSMB->SearchFlags = cpu_to_le16(search_flags);
4506 name_len = psrch_inf->resume_name_len;
4508 if (name_len < PATH_MAX) {
4509 memcpy(pSMB->ResumeFileName, psrch_inf->presume_name, name_len);
4510 byte_count += name_len;
4511 /* 14 byte parm len above enough for 2 byte null terminator */
4512 pSMB->ResumeFileName[name_len] = 0;
4513 pSMB->ResumeFileName[name_len+1] = 0;
4516 goto FNext2_err_exit;
4518 byte_count = params + 1 /* pad */ ;
4519 pSMB->TotalParameterCount = cpu_to_le16(params);
4520 pSMB->ParameterCount = pSMB->TotalParameterCount;
4521 inc_rfc1001_len(pSMB, byte_count);
4522 pSMB->ByteCount = cpu_to_le16(byte_count);
4524 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4525 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4526 cifs_stats_inc(&tcon->stats.cifs_stats.num_fnext);
4529 psrch_inf->endOfSearch = true;
4530 cifs_buf_release(pSMB);
4531 rc = 0; /* search probably was closed at end of search*/
4533 cifs_dbg(FYI, "FindNext returned = %d\n", rc);
4534 } else { /* decode response */
4535 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
4540 /* BB fixme add lock for file (srch_info) struct here */
4541 if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE)
4542 psrch_inf->unicode = true;
4544 psrch_inf->unicode = false;
4545 response_data = (char *) &pSMBr->hdr.Protocol +
4546 le16_to_cpu(pSMBr->t2.ParameterOffset);
4547 parms = (T2_FNEXT_RSP_PARMS *)response_data;
4548 response_data = (char *)&pSMBr->hdr.Protocol +
4549 le16_to_cpu(pSMBr->t2.DataOffset);
4550 if (psrch_inf->smallBuf)
4551 cifs_small_buf_release(
4552 psrch_inf->ntwrk_buf_start);
4554 cifs_buf_release(psrch_inf->ntwrk_buf_start);
4555 psrch_inf->srch_entries_start = response_data;
4556 psrch_inf->ntwrk_buf_start = (char *)pSMB;
4557 psrch_inf->smallBuf = 0;
4558 if (parms->EndofSearch)
4559 psrch_inf->endOfSearch = true;
4561 psrch_inf->endOfSearch = false;
4562 psrch_inf->entries_in_buffer =
4563 le16_to_cpu(parms->SearchCount);
4564 psrch_inf->index_of_last_entry +=
4565 psrch_inf->entries_in_buffer;
4566 lnoff = le16_to_cpu(parms->LastNameOffset);
4567 if (CIFSMaxBufSize < lnoff) {
4568 cifs_dbg(VFS, "ignoring corrupt resume name\n");
4569 psrch_inf->last_entry = NULL;
4572 psrch_inf->last_entry =
4573 psrch_inf->srch_entries_start + lnoff;
4575 /* cifs_dbg(FYI, "fnxt2 entries in buf %d index_of_last %d\n",
4576 psrch_inf->entries_in_buffer, psrch_inf->index_of_last_entry); */
4578 /* BB fixme add unlock here */
4583 /* BB On error, should we leave previous search buf (and count and
4584 last entry fields) intact or free the previous one? */
4586 /* Note: On -EAGAIN error only caller can retry on handle based calls
4587 since file handle passed in no longer valid */
4590 cifs_buf_release(pSMB);
4595 CIFSFindClose(const unsigned int xid, struct cifs_tcon *tcon,
4596 const __u16 searchHandle)
4599 FINDCLOSE_REQ *pSMB = NULL;
4601 cifs_dbg(FYI, "In CIFSSMBFindClose\n");
4602 rc = small_smb_init(SMB_COM_FIND_CLOSE2, 1, tcon, (void **)&pSMB);
4604 /* no sense returning error if session restarted
4605 as file handle has been closed */
4611 pSMB->FileID = searchHandle;
4612 pSMB->ByteCount = 0;
4613 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0);
4615 cifs_dbg(VFS, "Send error in FindClose = %d\n", rc);
4617 cifs_stats_inc(&tcon->stats.cifs_stats.num_fclose);
4619 /* Since session is dead, search handle closed on server already */
4627 CIFSGetSrvInodeNumber(const unsigned int xid, struct cifs_tcon *tcon,
4628 const char *search_name, __u64 *inode_number,
4629 const struct nls_table *nls_codepage, int remap)
4632 TRANSACTION2_QPI_REQ *pSMB = NULL;
4633 TRANSACTION2_QPI_RSP *pSMBr = NULL;
4634 int name_len, bytes_returned;
4635 __u16 params, byte_count;
4637 cifs_dbg(FYI, "In GetSrvInodeNum for %s\n", search_name);
4641 GetInodeNumberRetry:
4642 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
4647 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
4649 cifsConvertToUTF16((__le16 *) pSMB->FileName,
4650 search_name, PATH_MAX, nls_codepage,
4652 name_len++; /* trailing null */
4654 } else { /* BB improve the check for buffer overruns BB */
4655 name_len = strnlen(search_name, PATH_MAX);
4656 name_len++; /* trailing null */
4657 strncpy(pSMB->FileName, search_name, name_len);
4660 params = 2 /* level */ + 4 /* rsrvd */ + name_len /* incl null */ ;
4661 pSMB->TotalDataCount = 0;
4662 pSMB->MaxParameterCount = cpu_to_le16(2);
4663 /* BB find exact max data count below from sess structure BB */
4664 pSMB->MaxDataCount = cpu_to_le16(4000);
4665 pSMB->MaxSetupCount = 0;
4669 pSMB->Reserved2 = 0;
4670 pSMB->ParameterOffset = cpu_to_le16(offsetof(
4671 struct smb_com_transaction2_qpi_req, InformationLevel) - 4);
4672 pSMB->DataCount = 0;
4673 pSMB->DataOffset = 0;
4674 pSMB->SetupCount = 1;
4675 pSMB->Reserved3 = 0;
4676 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
4677 byte_count = params + 1 /* pad */ ;
4678 pSMB->TotalParameterCount = cpu_to_le16(params);
4679 pSMB->ParameterCount = pSMB->TotalParameterCount;
4680 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FILE_INTERNAL_INFO);
4681 pSMB->Reserved4 = 0;
4682 inc_rfc1001_len(pSMB, byte_count);
4683 pSMB->ByteCount = cpu_to_le16(byte_count);
4685 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4686 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4688 cifs_dbg(FYI, "error %d in QueryInternalInfo\n", rc);
4690 /* decode response */
4691 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
4692 /* BB also check enough total bytes returned */
4693 if (rc || get_bcc(&pSMBr->hdr) < 2)
4694 /* If rc should we check for EOPNOSUPP and
4695 disable the srvino flag? or in caller? */
4696 rc = -EIO; /* bad smb */
4698 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
4699 __u16 count = le16_to_cpu(pSMBr->t2.DataCount);
4700 struct file_internal_info *pfinfo;
4701 /* BB Do we need a cast or hash here ? */
4703 cifs_dbg(FYI, "Illegal size ret in QryIntrnlInf\n");
4705 goto GetInodeNumOut;
4707 pfinfo = (struct file_internal_info *)
4708 (data_offset + (char *) &pSMBr->hdr.Protocol);
4709 *inode_number = le64_to_cpu(pfinfo->UniqueId);
4713 cifs_buf_release(pSMB);
4715 goto GetInodeNumberRetry;
4719 /* parses DFS refferal V3 structure
4720 * caller is responsible for freeing target_nodes
4723 * on failure - errno
4726 parse_DFS_referrals(TRANSACTION2_GET_DFS_REFER_RSP *pSMBr,
4727 unsigned int *num_of_nodes,
4728 struct dfs_info3_param **target_nodes,
4729 const struct nls_table *nls_codepage, int remap,
4730 const char *searchName)
4735 struct dfs_referral_level_3 *ref;
4737 if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE)
4741 *num_of_nodes = le16_to_cpu(pSMBr->NumberOfReferrals);
4743 if (*num_of_nodes < 1) {
4744 cifs_dbg(VFS, "num_referrals: must be at least > 0, but we get num_referrals = %d\n",
4747 goto parse_DFS_referrals_exit;
4750 ref = (struct dfs_referral_level_3 *) &(pSMBr->referrals);
4751 if (ref->VersionNumber != cpu_to_le16(3)) {
4752 cifs_dbg(VFS, "Referrals of V%d version are not supported, should be V3\n",
4753 le16_to_cpu(ref->VersionNumber));
4755 goto parse_DFS_referrals_exit;
4758 /* get the upper boundary of the resp buffer */
4759 data_end = (char *)(&(pSMBr->PathConsumed)) +
4760 le16_to_cpu(pSMBr->t2.DataCount);
4762 cifs_dbg(FYI, "num_referrals: %d dfs flags: 0x%x ...\n",
4763 *num_of_nodes, le32_to_cpu(pSMBr->DFSFlags));
4765 *target_nodes = kcalloc(*num_of_nodes, sizeof(struct dfs_info3_param),
4767 if (*target_nodes == NULL) {
4769 goto parse_DFS_referrals_exit;
4772 /* collect necessary data from referrals */
4773 for (i = 0; i < *num_of_nodes; i++) {
4776 struct dfs_info3_param *node = (*target_nodes)+i;
4778 node->flags = le32_to_cpu(pSMBr->DFSFlags);
4780 __le16 *tmp = kmalloc(strlen(searchName)*2 + 2,
4784 goto parse_DFS_referrals_exit;
4786 cifsConvertToUTF16((__le16 *) tmp, searchName,
4787 PATH_MAX, nls_codepage, remap);
4788 node->path_consumed = cifs_utf16_bytes(tmp,
4789 le16_to_cpu(pSMBr->PathConsumed),
4793 node->path_consumed = le16_to_cpu(pSMBr->PathConsumed);
4795 node->server_type = le16_to_cpu(ref->ServerType);
4796 node->ref_flag = le16_to_cpu(ref->ReferralEntryFlags);
4799 temp = (char *)ref + le16_to_cpu(ref->DfsPathOffset);
4800 max_len = data_end - temp;
4801 node->path_name = cifs_strndup_from_utf16(temp, max_len,
4802 is_unicode, nls_codepage);
4803 if (!node->path_name) {
4805 goto parse_DFS_referrals_exit;
4808 /* copy link target UNC */
4809 temp = (char *)ref + le16_to_cpu(ref->NetworkAddressOffset);
4810 max_len = data_end - temp;
4811 node->node_name = cifs_strndup_from_utf16(temp, max_len,
4812 is_unicode, nls_codepage);
4813 if (!node->node_name) {
4815 goto parse_DFS_referrals_exit;
4821 parse_DFS_referrals_exit:
4823 free_dfs_info_array(*target_nodes, *num_of_nodes);
4824 *target_nodes = NULL;
4831 CIFSGetDFSRefer(const unsigned int xid, struct cifs_ses *ses,
4832 const char *search_name, struct dfs_info3_param **target_nodes,
4833 unsigned int *num_of_nodes,
4834 const struct nls_table *nls_codepage, int remap)
4836 /* TRANS2_GET_DFS_REFERRAL */
4837 TRANSACTION2_GET_DFS_REFER_REQ *pSMB = NULL;
4838 TRANSACTION2_GET_DFS_REFER_RSP *pSMBr = NULL;
4842 __u16 params, byte_count;
4844 *target_nodes = NULL;
4846 cifs_dbg(FYI, "In GetDFSRefer the path %s\n", search_name);
4850 rc = smb_init(SMB_COM_TRANSACTION2, 15, NULL, (void **) &pSMB,
4855 /* server pointer checked in called function,
4856 but should never be null here anyway */
4857 pSMB->hdr.Mid = get_next_mid(ses->server);
4858 pSMB->hdr.Tid = ses->ipc_tid;
4859 pSMB->hdr.Uid = ses->Suid;
4860 if (ses->capabilities & CAP_STATUS32)
4861 pSMB->hdr.Flags2 |= SMBFLG2_ERR_STATUS;
4862 if (ses->capabilities & CAP_DFS)
4863 pSMB->hdr.Flags2 |= SMBFLG2_DFS;
4865 if (ses->capabilities & CAP_UNICODE) {
4866 pSMB->hdr.Flags2 |= SMBFLG2_UNICODE;
4868 cifsConvertToUTF16((__le16 *) pSMB->RequestFileName,
4869 search_name, PATH_MAX, nls_codepage,
4871 name_len++; /* trailing null */
4873 } else { /* BB improve the check for buffer overruns BB */
4874 name_len = strnlen(search_name, PATH_MAX);
4875 name_len++; /* trailing null */
4876 strncpy(pSMB->RequestFileName, search_name, name_len);
4879 if (ses->server && ses->server->sign)
4880 pSMB->hdr.Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
4882 pSMB->hdr.Uid = ses->Suid;
4884 params = 2 /* level */ + name_len /*includes null */ ;
4885 pSMB->TotalDataCount = 0;
4886 pSMB->DataCount = 0;
4887 pSMB->DataOffset = 0;
4888 pSMB->MaxParameterCount = 0;
4889 /* BB find exact max SMB PDU from sess structure BB */
4890 pSMB->MaxDataCount = cpu_to_le16(4000);
4891 pSMB->MaxSetupCount = 0;
4895 pSMB->Reserved2 = 0;
4896 pSMB->ParameterOffset = cpu_to_le16(offsetof(
4897 struct smb_com_transaction2_get_dfs_refer_req, MaxReferralLevel) - 4);
4898 pSMB->SetupCount = 1;
4899 pSMB->Reserved3 = 0;
4900 pSMB->SubCommand = cpu_to_le16(TRANS2_GET_DFS_REFERRAL);
4901 byte_count = params + 3 /* pad */ ;
4902 pSMB->ParameterCount = cpu_to_le16(params);
4903 pSMB->TotalParameterCount = pSMB->ParameterCount;
4904 pSMB->MaxReferralLevel = cpu_to_le16(3);
4905 inc_rfc1001_len(pSMB, byte_count);
4906 pSMB->ByteCount = cpu_to_le16(byte_count);
4908 rc = SendReceive(xid, ses, (struct smb_hdr *) pSMB,
4909 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4911 cifs_dbg(FYI, "Send error in GetDFSRefer = %d\n", rc);
4914 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
4916 /* BB Also check if enough total bytes returned? */
4917 if (rc || get_bcc(&pSMBr->hdr) < 17) {
4918 rc = -EIO; /* bad smb */
4922 cifs_dbg(FYI, "Decoding GetDFSRefer response BCC: %d Offset %d\n",
4923 get_bcc(&pSMBr->hdr), le16_to_cpu(pSMBr->t2.DataOffset));
4925 /* parse returned result into more usable form */
4926 rc = parse_DFS_referrals(pSMBr, num_of_nodes,
4927 target_nodes, nls_codepage, remap,
4931 cifs_buf_release(pSMB);
4939 /* Query File System Info such as free space to old servers such as Win 9x */
4941 SMBOldQFSInfo(const unsigned int xid, struct cifs_tcon *tcon,
4942 struct kstatfs *FSData)
4944 /* level 0x01 SMB_QUERY_FILE_SYSTEM_INFO */
4945 TRANSACTION2_QFSI_REQ *pSMB = NULL;
4946 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
4947 FILE_SYSTEM_ALLOC_INFO *response_data;
4949 int bytes_returned = 0;
4950 __u16 params, byte_count;
4952 cifs_dbg(FYI, "OldQFSInfo\n");
4954 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
4959 params = 2; /* level */
4960 pSMB->TotalDataCount = 0;
4961 pSMB->MaxParameterCount = cpu_to_le16(2);
4962 pSMB->MaxDataCount = cpu_to_le16(1000);
4963 pSMB->MaxSetupCount = 0;
4967 pSMB->Reserved2 = 0;
4968 byte_count = params + 1 /* pad */ ;
4969 pSMB->TotalParameterCount = cpu_to_le16(params);
4970 pSMB->ParameterCount = pSMB->TotalParameterCount;
4971 pSMB->ParameterOffset = cpu_to_le16(offsetof(
4972 struct smb_com_transaction2_qfsi_req, InformationLevel) - 4);
4973 pSMB->DataCount = 0;
4974 pSMB->DataOffset = 0;
4975 pSMB->SetupCount = 1;
4976 pSMB->Reserved3 = 0;
4977 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
4978 pSMB->InformationLevel = cpu_to_le16(SMB_INFO_ALLOCATION);
4979 inc_rfc1001_len(pSMB, byte_count);
4980 pSMB->ByteCount = cpu_to_le16(byte_count);
4982 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
4983 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
4985 cifs_dbg(FYI, "Send error in QFSInfo = %d\n", rc);
4986 } else { /* decode response */
4987 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
4989 if (rc || get_bcc(&pSMBr->hdr) < 18)
4990 rc = -EIO; /* bad smb */
4992 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
4993 cifs_dbg(FYI, "qfsinf resp BCC: %d Offset %d\n",
4994 get_bcc(&pSMBr->hdr), data_offset);
4996 response_data = (FILE_SYSTEM_ALLOC_INFO *)
4997 (((char *) &pSMBr->hdr.Protocol) + data_offset);
4999 le16_to_cpu(response_data->BytesPerSector) *
5000 le32_to_cpu(response_data->
5001 SectorsPerAllocationUnit);
5003 le32_to_cpu(response_data->TotalAllocationUnits);
5004 FSData->f_bfree = FSData->f_bavail =
5005 le32_to_cpu(response_data->FreeAllocationUnits);
5006 cifs_dbg(FYI, "Blocks: %lld Free: %lld Block size %ld\n",
5007 (unsigned long long)FSData->f_blocks,
5008 (unsigned long long)FSData->f_bfree,
5012 cifs_buf_release(pSMB);
5015 goto oldQFSInfoRetry;
5021 CIFSSMBQFSInfo(const unsigned int xid, struct cifs_tcon *tcon,
5022 struct kstatfs *FSData)
5024 /* level 0x103 SMB_QUERY_FILE_SYSTEM_INFO */
5025 TRANSACTION2_QFSI_REQ *pSMB = NULL;
5026 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
5027 FILE_SYSTEM_INFO *response_data;
5029 int bytes_returned = 0;
5030 __u16 params, byte_count;
5032 cifs_dbg(FYI, "In QFSInfo\n");
5034 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
5039 params = 2; /* level */
5040 pSMB->TotalDataCount = 0;
5041 pSMB->MaxParameterCount = cpu_to_le16(2);
5042 pSMB->MaxDataCount = cpu_to_le16(1000);
5043 pSMB->MaxSetupCount = 0;
5047 pSMB->Reserved2 = 0;
5048 byte_count = params + 1 /* pad */ ;
5049 pSMB->TotalParameterCount = cpu_to_le16(params);
5050 pSMB->ParameterCount = pSMB->TotalParameterCount;
5051 pSMB->ParameterOffset = cpu_to_le16(offsetof(
5052 struct smb_com_transaction2_qfsi_req, InformationLevel) - 4);
5053 pSMB->DataCount = 0;
5054 pSMB->DataOffset = 0;
5055 pSMB->SetupCount = 1;
5056 pSMB->Reserved3 = 0;
5057 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
5058 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FS_SIZE_INFO);
5059 inc_rfc1001_len(pSMB, byte_count);
5060 pSMB->ByteCount = cpu_to_le16(byte_count);
5062 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5063 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
5065 cifs_dbg(FYI, "Send error in QFSInfo = %d\n", rc);
5066 } else { /* decode response */
5067 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
5069 if (rc || get_bcc(&pSMBr->hdr) < 24)
5070 rc = -EIO; /* bad smb */
5072 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
5076 *) (((char *) &pSMBr->hdr.Protocol) +
5079 le32_to_cpu(response_data->BytesPerSector) *
5080 le32_to_cpu(response_data->
5081 SectorsPerAllocationUnit);
5083 le64_to_cpu(response_data->TotalAllocationUnits);
5084 FSData->f_bfree = FSData->f_bavail =
5085 le64_to_cpu(response_data->FreeAllocationUnits);
5086 cifs_dbg(FYI, "Blocks: %lld Free: %lld Block size %ld\n",
5087 (unsigned long long)FSData->f_blocks,
5088 (unsigned long long)FSData->f_bfree,
5092 cifs_buf_release(pSMB);
5101 CIFSSMBQFSAttributeInfo(const unsigned int xid, struct cifs_tcon *tcon)
5103 /* level 0x105 SMB_QUERY_FILE_SYSTEM_INFO */
5104 TRANSACTION2_QFSI_REQ *pSMB = NULL;
5105 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
5106 FILE_SYSTEM_ATTRIBUTE_INFO *response_data;
5108 int bytes_returned = 0;
5109 __u16 params, byte_count;
5111 cifs_dbg(FYI, "In QFSAttributeInfo\n");
5113 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
5118 params = 2; /* level */
5119 pSMB->TotalDataCount = 0;
5120 pSMB->MaxParameterCount = cpu_to_le16(2);
5121 /* BB find exact max SMB PDU from sess structure BB */
5122 pSMB->MaxDataCount = cpu_to_le16(1000);
5123 pSMB->MaxSetupCount = 0;
5127 pSMB->Reserved2 = 0;
5128 byte_count = params + 1 /* pad */ ;
5129 pSMB->TotalParameterCount = cpu_to_le16(params);
5130 pSMB->ParameterCount = pSMB->TotalParameterCount;
5131 pSMB->ParameterOffset = cpu_to_le16(offsetof(
5132 struct smb_com_transaction2_qfsi_req, InformationLevel) - 4);
5133 pSMB->DataCount = 0;
5134 pSMB->DataOffset = 0;
5135 pSMB->SetupCount = 1;
5136 pSMB->Reserved3 = 0;
5137 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
5138 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FS_ATTRIBUTE_INFO);
5139 inc_rfc1001_len(pSMB, byte_count);
5140 pSMB->ByteCount = cpu_to_le16(byte_count);
5142 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5143 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
5145 cifs_dbg(VFS, "Send error in QFSAttributeInfo = %d\n", rc);
5146 } else { /* decode response */
5147 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
5149 if (rc || get_bcc(&pSMBr->hdr) < 13) {
5150 /* BB also check if enough bytes returned */
5151 rc = -EIO; /* bad smb */
5153 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
5155 (FILE_SYSTEM_ATTRIBUTE_INFO
5156 *) (((char *) &pSMBr->hdr.Protocol) +
5158 memcpy(&tcon->fsAttrInfo, response_data,
5159 sizeof(FILE_SYSTEM_ATTRIBUTE_INFO));
5162 cifs_buf_release(pSMB);
5165 goto QFSAttributeRetry;
5171 CIFSSMBQFSDeviceInfo(const unsigned int xid, struct cifs_tcon *tcon)
5173 /* level 0x104 SMB_QUERY_FILE_SYSTEM_INFO */
5174 TRANSACTION2_QFSI_REQ *pSMB = NULL;
5175 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
5176 FILE_SYSTEM_DEVICE_INFO *response_data;
5178 int bytes_returned = 0;
5179 __u16 params, byte_count;
5181 cifs_dbg(FYI, "In QFSDeviceInfo\n");
5183 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
5188 params = 2; /* level */
5189 pSMB->TotalDataCount = 0;
5190 pSMB->MaxParameterCount = cpu_to_le16(2);
5191 /* BB find exact max SMB PDU from sess structure BB */
5192 pSMB->MaxDataCount = cpu_to_le16(1000);
5193 pSMB->MaxSetupCount = 0;
5197 pSMB->Reserved2 = 0;
5198 byte_count = params + 1 /* pad */ ;
5199 pSMB->TotalParameterCount = cpu_to_le16(params);
5200 pSMB->ParameterCount = pSMB->TotalParameterCount;
5201 pSMB->ParameterOffset = cpu_to_le16(offsetof(
5202 struct smb_com_transaction2_qfsi_req, InformationLevel) - 4);
5204 pSMB->DataCount = 0;
5205 pSMB->DataOffset = 0;
5206 pSMB->SetupCount = 1;
5207 pSMB->Reserved3 = 0;
5208 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
5209 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_FS_DEVICE_INFO);
5210 inc_rfc1001_len(pSMB, byte_count);
5211 pSMB->ByteCount = cpu_to_le16(byte_count);
5213 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5214 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
5216 cifs_dbg(FYI, "Send error in QFSDeviceInfo = %d\n", rc);
5217 } else { /* decode response */
5218 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
5220 if (rc || get_bcc(&pSMBr->hdr) <
5221 sizeof(FILE_SYSTEM_DEVICE_INFO))
5222 rc = -EIO; /* bad smb */
5224 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
5226 (FILE_SYSTEM_DEVICE_INFO *)
5227 (((char *) &pSMBr->hdr.Protocol) +
5229 memcpy(&tcon->fsDevInfo, response_data,
5230 sizeof(FILE_SYSTEM_DEVICE_INFO));
5233 cifs_buf_release(pSMB);
5236 goto QFSDeviceRetry;
5242 CIFSSMBQFSUnixInfo(const unsigned int xid, struct cifs_tcon *tcon)
5244 /* level 0x200 SMB_QUERY_CIFS_UNIX_INFO */
5245 TRANSACTION2_QFSI_REQ *pSMB = NULL;
5246 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
5247 FILE_SYSTEM_UNIX_INFO *response_data;
5249 int bytes_returned = 0;
5250 __u16 params, byte_count;
5252 cifs_dbg(FYI, "In QFSUnixInfo\n");
5254 rc = smb_init_no_reconnect(SMB_COM_TRANSACTION2, 15, tcon,
5255 (void **) &pSMB, (void **) &pSMBr);
5259 params = 2; /* level */
5260 pSMB->TotalDataCount = 0;
5261 pSMB->DataCount = 0;
5262 pSMB->DataOffset = 0;
5263 pSMB->MaxParameterCount = cpu_to_le16(2);
5264 /* BB find exact max SMB PDU from sess structure BB */
5265 pSMB->MaxDataCount = cpu_to_le16(100);
5266 pSMB->MaxSetupCount = 0;
5270 pSMB->Reserved2 = 0;
5271 byte_count = params + 1 /* pad */ ;
5272 pSMB->ParameterCount = cpu_to_le16(params);
5273 pSMB->TotalParameterCount = pSMB->ParameterCount;
5274 pSMB->ParameterOffset = cpu_to_le16(offsetof(struct
5275 smb_com_transaction2_qfsi_req, InformationLevel) - 4);
5276 pSMB->SetupCount = 1;
5277 pSMB->Reserved3 = 0;
5278 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
5279 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_CIFS_UNIX_INFO);
5280 inc_rfc1001_len(pSMB, byte_count);
5281 pSMB->ByteCount = cpu_to_le16(byte_count);
5283 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5284 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
5286 cifs_dbg(VFS, "Send error in QFSUnixInfo = %d\n", rc);
5287 } else { /* decode response */
5288 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
5290 if (rc || get_bcc(&pSMBr->hdr) < 13) {
5291 rc = -EIO; /* bad smb */
5293 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
5295 (FILE_SYSTEM_UNIX_INFO
5296 *) (((char *) &pSMBr->hdr.Protocol) +
5298 memcpy(&tcon->fsUnixInfo, response_data,
5299 sizeof(FILE_SYSTEM_UNIX_INFO));
5302 cifs_buf_release(pSMB);
5312 CIFSSMBSetFSUnixInfo(const unsigned int xid, struct cifs_tcon *tcon, __u64 cap)
5314 /* level 0x200 SMB_SET_CIFS_UNIX_INFO */
5315 TRANSACTION2_SETFSI_REQ *pSMB = NULL;
5316 TRANSACTION2_SETFSI_RSP *pSMBr = NULL;
5318 int bytes_returned = 0;
5319 __u16 params, param_offset, offset, byte_count;
5321 cifs_dbg(FYI, "In SETFSUnixInfo\n");
5323 /* BB switch to small buf init to save memory */
5324 rc = smb_init_no_reconnect(SMB_COM_TRANSACTION2, 15, tcon,
5325 (void **) &pSMB, (void **) &pSMBr);
5329 params = 4; /* 2 bytes zero followed by info level. */
5330 pSMB->MaxSetupCount = 0;
5334 pSMB->Reserved2 = 0;
5335 param_offset = offsetof(struct smb_com_transaction2_setfsi_req, FileNum)
5337 offset = param_offset + params;
5339 pSMB->MaxParameterCount = cpu_to_le16(4);
5340 /* BB find exact max SMB PDU from sess structure BB */
5341 pSMB->MaxDataCount = cpu_to_le16(100);
5342 pSMB->SetupCount = 1;
5343 pSMB->Reserved3 = 0;
5344 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FS_INFORMATION);
5345 byte_count = 1 /* pad */ + params + 12;
5347 pSMB->DataCount = cpu_to_le16(12);
5348 pSMB->ParameterCount = cpu_to_le16(params);
5349 pSMB->TotalDataCount = pSMB->DataCount;
5350 pSMB->TotalParameterCount = pSMB->ParameterCount;
5351 pSMB->ParameterOffset = cpu_to_le16(param_offset);
5352 pSMB->DataOffset = cpu_to_le16(offset);
5356 pSMB->InformationLevel = cpu_to_le16(SMB_SET_CIFS_UNIX_INFO);
5359 pSMB->ClientUnixMajor = cpu_to_le16(CIFS_UNIX_MAJOR_VERSION);
5360 pSMB->ClientUnixMinor = cpu_to_le16(CIFS_UNIX_MINOR_VERSION);
5361 pSMB->ClientUnixCap = cpu_to_le64(cap);
5363 inc_rfc1001_len(pSMB, byte_count);
5364 pSMB->ByteCount = cpu_to_le16(byte_count);
5366 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5367 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
5369 cifs_dbg(VFS, "Send error in SETFSUnixInfo = %d\n", rc);
5370 } else { /* decode response */
5371 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
5373 rc = -EIO; /* bad smb */
5375 cifs_buf_release(pSMB);
5378 goto SETFSUnixRetry;
5386 CIFSSMBQFSPosixInfo(const unsigned int xid, struct cifs_tcon *tcon,
5387 struct kstatfs *FSData)
5389 /* level 0x201 SMB_QUERY_CIFS_POSIX_INFO */
5390 TRANSACTION2_QFSI_REQ *pSMB = NULL;
5391 TRANSACTION2_QFSI_RSP *pSMBr = NULL;
5392 FILE_SYSTEM_POSIX_INFO *response_data;
5394 int bytes_returned = 0;
5395 __u16 params, byte_count;
5397 cifs_dbg(FYI, "In QFSPosixInfo\n");
5399 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
5404 params = 2; /* level */
5405 pSMB->TotalDataCount = 0;
5406 pSMB->DataCount = 0;
5407 pSMB->DataOffset = 0;
5408 pSMB->MaxParameterCount = cpu_to_le16(2);
5409 /* BB find exact max SMB PDU from sess structure BB */
5410 pSMB->MaxDataCount = cpu_to_le16(100);
5411 pSMB->MaxSetupCount = 0;
5415 pSMB->Reserved2 = 0;
5416 byte_count = params + 1 /* pad */ ;
5417 pSMB->ParameterCount = cpu_to_le16(params);
5418 pSMB->TotalParameterCount = pSMB->ParameterCount;
5419 pSMB->ParameterOffset = cpu_to_le16(offsetof(struct
5420 smb_com_transaction2_qfsi_req, InformationLevel) - 4);
5421 pSMB->SetupCount = 1;
5422 pSMB->Reserved3 = 0;
5423 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_FS_INFORMATION);
5424 pSMB->InformationLevel = cpu_to_le16(SMB_QUERY_POSIX_FS_INFO);
5425 inc_rfc1001_len(pSMB, byte_count);
5426 pSMB->ByteCount = cpu_to_le16(byte_count);
5428 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5429 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
5431 cifs_dbg(FYI, "Send error in QFSUnixInfo = %d\n", rc);
5432 } else { /* decode response */
5433 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
5435 if (rc || get_bcc(&pSMBr->hdr) < 13) {
5436 rc = -EIO; /* bad smb */
5438 __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
5440 (FILE_SYSTEM_POSIX_INFO
5441 *) (((char *) &pSMBr->hdr.Protocol) +
5444 le32_to_cpu(response_data->BlockSize);
5446 le64_to_cpu(response_data->TotalBlocks);
5448 le64_to_cpu(response_data->BlocksAvail);
5449 if (response_data->UserBlocksAvail == cpu_to_le64(-1)) {
5450 FSData->f_bavail = FSData->f_bfree;
5453 le64_to_cpu(response_data->UserBlocksAvail);
5455 if (response_data->TotalFileNodes != cpu_to_le64(-1))
5457 le64_to_cpu(response_data->TotalFileNodes);
5458 if (response_data->FreeFileNodes != cpu_to_le64(-1))
5460 le64_to_cpu(response_data->FreeFileNodes);
5463 cifs_buf_release(pSMB);
5473 * We can not use write of zero bytes trick to set file size due to need for
5474 * large file support. Also note that this SetPathInfo is preferred to
5475 * SetFileInfo based method in next routine which is only needed to work around
5476 * a sharing violation bugin Samba which this routine can run into.
5479 CIFSSMBSetEOF(const unsigned int xid, struct cifs_tcon *tcon,
5480 const char *file_name, __u64 size, struct cifs_sb_info *cifs_sb,
5481 bool set_allocation)
5483 struct smb_com_transaction2_spi_req *pSMB = NULL;
5484 struct smb_com_transaction2_spi_rsp *pSMBr = NULL;
5485 struct file_end_of_file_info *parm_data;
5488 int bytes_returned = 0;
5489 int remap = cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR;
5491 __u16 params, byte_count, data_count, param_offset, offset;
5493 cifs_dbg(FYI, "In SetEOF\n");
5495 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
5500 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
5502 cifsConvertToUTF16((__le16 *) pSMB->FileName, file_name,
5503 PATH_MAX, cifs_sb->local_nls, remap);
5504 name_len++; /* trailing null */
5506 } else { /* BB improve the check for buffer overruns BB */
5507 name_len = strnlen(file_name, PATH_MAX);
5508 name_len++; /* trailing null */
5509 strncpy(pSMB->FileName, file_name, name_len);
5511 params = 6 + name_len;
5512 data_count = sizeof(struct file_end_of_file_info);
5513 pSMB->MaxParameterCount = cpu_to_le16(2);
5514 pSMB->MaxDataCount = cpu_to_le16(4100);
5515 pSMB->MaxSetupCount = 0;
5519 pSMB->Reserved2 = 0;
5520 param_offset = offsetof(struct smb_com_transaction2_spi_req,
5521 InformationLevel) - 4;
5522 offset = param_offset + params;
5523 if (set_allocation) {
5524 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
5525 pSMB->InformationLevel =
5526 cpu_to_le16(SMB_SET_FILE_ALLOCATION_INFO2);
5528 pSMB->InformationLevel =
5529 cpu_to_le16(SMB_SET_FILE_ALLOCATION_INFO);
5530 } else /* Set File Size */ {
5531 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
5532 pSMB->InformationLevel =
5533 cpu_to_le16(SMB_SET_FILE_END_OF_FILE_INFO2);
5535 pSMB->InformationLevel =
5536 cpu_to_le16(SMB_SET_FILE_END_OF_FILE_INFO);
5540 (struct file_end_of_file_info *) (((char *) &pSMB->hdr.Protocol) +
5542 pSMB->ParameterOffset = cpu_to_le16(param_offset);
5543 pSMB->DataOffset = cpu_to_le16(offset);
5544 pSMB->SetupCount = 1;
5545 pSMB->Reserved3 = 0;
5546 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
5547 byte_count = 3 /* pad */ + params + data_count;
5548 pSMB->DataCount = cpu_to_le16(data_count);
5549 pSMB->TotalDataCount = pSMB->DataCount;
5550 pSMB->ParameterCount = cpu_to_le16(params);
5551 pSMB->TotalParameterCount = pSMB->ParameterCount;
5552 pSMB->Reserved4 = 0;
5553 inc_rfc1001_len(pSMB, byte_count);
5554 parm_data->FileSize = cpu_to_le64(size);
5555 pSMB->ByteCount = cpu_to_le16(byte_count);
5556 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5557 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
5559 cifs_dbg(FYI, "SetPathInfo (file size) returned %d\n", rc);
5561 cifs_buf_release(pSMB);
5570 CIFSSMBSetFileSize(const unsigned int xid, struct cifs_tcon *tcon,
5571 struct cifsFileInfo *cfile, __u64 size, bool set_allocation)
5573 struct smb_com_transaction2_sfi_req *pSMB = NULL;
5574 struct file_end_of_file_info *parm_data;
5576 __u16 params, param_offset, offset, byte_count, count;
5578 cifs_dbg(FYI, "SetFileSize (via SetFileInfo) %lld\n",
5580 rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB);
5585 pSMB->hdr.Pid = cpu_to_le16((__u16)cfile->pid);
5586 pSMB->hdr.PidHigh = cpu_to_le16((__u16)(cfile->pid >> 16));
5589 pSMB->MaxSetupCount = 0;
5593 pSMB->Reserved2 = 0;
5594 param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4;
5595 offset = param_offset + params;
5597 count = sizeof(struct file_end_of_file_info);
5598 pSMB->MaxParameterCount = cpu_to_le16(2);
5599 /* BB find exact max SMB PDU from sess structure BB */
5600 pSMB->MaxDataCount = cpu_to_le16(1000);
5601 pSMB->SetupCount = 1;
5602 pSMB->Reserved3 = 0;
5603 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION);
5604 byte_count = 3 /* pad */ + params + count;
5605 pSMB->DataCount = cpu_to_le16(count);
5606 pSMB->ParameterCount = cpu_to_le16(params);
5607 pSMB->TotalDataCount = pSMB->DataCount;
5608 pSMB->TotalParameterCount = pSMB->ParameterCount;
5609 pSMB->ParameterOffset = cpu_to_le16(param_offset);
5611 (struct file_end_of_file_info *) (((char *) &pSMB->hdr.Protocol)
5613 pSMB->DataOffset = cpu_to_le16(offset);
5614 parm_data->FileSize = cpu_to_le64(size);
5615 pSMB->Fid = cfile->fid.netfid;
5616 if (set_allocation) {
5617 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
5618 pSMB->InformationLevel =
5619 cpu_to_le16(SMB_SET_FILE_ALLOCATION_INFO2);
5621 pSMB->InformationLevel =
5622 cpu_to_le16(SMB_SET_FILE_ALLOCATION_INFO);
5623 } else /* Set File Size */ {
5624 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
5625 pSMB->InformationLevel =
5626 cpu_to_le16(SMB_SET_FILE_END_OF_FILE_INFO2);
5628 pSMB->InformationLevel =
5629 cpu_to_le16(SMB_SET_FILE_END_OF_FILE_INFO);
5631 pSMB->Reserved4 = 0;
5632 inc_rfc1001_len(pSMB, byte_count);
5633 pSMB->ByteCount = cpu_to_le16(byte_count);
5634 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0);
5636 cifs_dbg(FYI, "Send error in SetFileInfo (SetFileSize) = %d\n",
5640 /* Note: On -EAGAIN error only caller can retry on handle based calls
5641 since file handle passed in no longer valid */
5646 /* Some legacy servers such as NT4 require that the file times be set on
5647 an open handle, rather than by pathname - this is awkward due to
5648 potential access conflicts on the open, but it is unavoidable for these
5649 old servers since the only other choice is to go from 100 nanosecond DCE
5650 time and resort to the original setpathinfo level which takes the ancient
5651 DOS time format with 2 second granularity */
5653 CIFSSMBSetFileInfo(const unsigned int xid, struct cifs_tcon *tcon,
5654 const FILE_BASIC_INFO *data, __u16 fid, __u32 pid_of_opener)
5656 struct smb_com_transaction2_sfi_req *pSMB = NULL;
5659 __u16 params, param_offset, offset, byte_count, count;
5661 cifs_dbg(FYI, "Set Times (via SetFileInfo)\n");
5662 rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB);
5667 pSMB->hdr.Pid = cpu_to_le16((__u16)pid_of_opener);
5668 pSMB->hdr.PidHigh = cpu_to_le16((__u16)(pid_of_opener >> 16));
5671 pSMB->MaxSetupCount = 0;
5675 pSMB->Reserved2 = 0;
5676 param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4;
5677 offset = param_offset + params;
5679 data_offset = (char *)pSMB +
5680 offsetof(struct smb_hdr, Protocol) + offset;
5682 count = sizeof(FILE_BASIC_INFO);
5683 pSMB->MaxParameterCount = cpu_to_le16(2);
5684 /* BB find max SMB PDU from sess */
5685 pSMB->MaxDataCount = cpu_to_le16(1000);
5686 pSMB->SetupCount = 1;
5687 pSMB->Reserved3 = 0;
5688 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION);
5689 byte_count = 3 /* pad */ + params + count;
5690 pSMB->DataCount = cpu_to_le16(count);
5691 pSMB->ParameterCount = cpu_to_le16(params);
5692 pSMB->TotalDataCount = pSMB->DataCount;
5693 pSMB->TotalParameterCount = pSMB->ParameterCount;
5694 pSMB->ParameterOffset = cpu_to_le16(param_offset);
5695 pSMB->DataOffset = cpu_to_le16(offset);
5697 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
5698 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_BASIC_INFO2);
5700 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_BASIC_INFO);
5701 pSMB->Reserved4 = 0;
5702 inc_rfc1001_len(pSMB, byte_count);
5703 pSMB->ByteCount = cpu_to_le16(byte_count);
5704 memcpy(data_offset, data, sizeof(FILE_BASIC_INFO));
5705 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0);
5707 cifs_dbg(FYI, "Send error in Set Time (SetFileInfo) = %d\n",
5710 /* Note: On -EAGAIN error only caller can retry on handle based calls
5711 since file handle passed in no longer valid */
5717 CIFSSMBSetFileDisposition(const unsigned int xid, struct cifs_tcon *tcon,
5718 bool delete_file, __u16 fid, __u32 pid_of_opener)
5720 struct smb_com_transaction2_sfi_req *pSMB = NULL;
5723 __u16 params, param_offset, offset, byte_count, count;
5725 cifs_dbg(FYI, "Set File Disposition (via SetFileInfo)\n");
5726 rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB);
5731 pSMB->hdr.Pid = cpu_to_le16((__u16)pid_of_opener);
5732 pSMB->hdr.PidHigh = cpu_to_le16((__u16)(pid_of_opener >> 16));
5735 pSMB->MaxSetupCount = 0;
5739 pSMB->Reserved2 = 0;
5740 param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4;
5741 offset = param_offset + params;
5743 data_offset = (char *) (&pSMB->hdr.Protocol) + offset;
5746 pSMB->MaxParameterCount = cpu_to_le16(2);
5747 /* BB find max SMB PDU from sess */
5748 pSMB->MaxDataCount = cpu_to_le16(1000);
5749 pSMB->SetupCount = 1;
5750 pSMB->Reserved3 = 0;
5751 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION);
5752 byte_count = 3 /* pad */ + params + count;
5753 pSMB->DataCount = cpu_to_le16(count);
5754 pSMB->ParameterCount = cpu_to_le16(params);
5755 pSMB->TotalDataCount = pSMB->DataCount;
5756 pSMB->TotalParameterCount = pSMB->ParameterCount;
5757 pSMB->ParameterOffset = cpu_to_le16(param_offset);
5758 pSMB->DataOffset = cpu_to_le16(offset);
5760 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_DISPOSITION_INFO);
5761 pSMB->Reserved4 = 0;
5762 inc_rfc1001_len(pSMB, byte_count);
5763 pSMB->ByteCount = cpu_to_le16(byte_count);
5764 *data_offset = delete_file ? 1 : 0;
5765 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0);
5767 cifs_dbg(FYI, "Send error in SetFileDisposition = %d\n", rc);
5773 CIFSSMBSetPathInfo(const unsigned int xid, struct cifs_tcon *tcon,
5774 const char *fileName, const FILE_BASIC_INFO *data,
5775 const struct nls_table *nls_codepage, int remap)
5777 TRANSACTION2_SPI_REQ *pSMB = NULL;
5778 TRANSACTION2_SPI_RSP *pSMBr = NULL;
5781 int bytes_returned = 0;
5783 __u16 params, param_offset, offset, byte_count, count;
5785 cifs_dbg(FYI, "In SetTimes\n");
5788 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
5793 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
5795 cifsConvertToUTF16((__le16 *) pSMB->FileName, fileName,
5796 PATH_MAX, nls_codepage, remap);
5797 name_len++; /* trailing null */
5799 } else { /* BB improve the check for buffer overruns BB */
5800 name_len = strnlen(fileName, PATH_MAX);
5801 name_len++; /* trailing null */
5802 strncpy(pSMB->FileName, fileName, name_len);
5805 params = 6 + name_len;
5806 count = sizeof(FILE_BASIC_INFO);
5807 pSMB->MaxParameterCount = cpu_to_le16(2);
5808 /* BB find max SMB PDU from sess structure BB */
5809 pSMB->MaxDataCount = cpu_to_le16(1000);
5810 pSMB->MaxSetupCount = 0;
5814 pSMB->Reserved2 = 0;
5815 param_offset = offsetof(struct smb_com_transaction2_spi_req,
5816 InformationLevel) - 4;
5817 offset = param_offset + params;
5818 data_offset = (char *) (&pSMB->hdr.Protocol) + offset;
5819 pSMB->ParameterOffset = cpu_to_le16(param_offset);
5820 pSMB->DataOffset = cpu_to_le16(offset);
5821 pSMB->SetupCount = 1;
5822 pSMB->Reserved3 = 0;
5823 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
5824 byte_count = 3 /* pad */ + params + count;
5826 pSMB->DataCount = cpu_to_le16(count);
5827 pSMB->ParameterCount = cpu_to_le16(params);
5828 pSMB->TotalDataCount = pSMB->DataCount;
5829 pSMB->TotalParameterCount = pSMB->ParameterCount;
5830 if (tcon->ses->capabilities & CAP_INFOLEVEL_PASSTHRU)
5831 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_BASIC_INFO2);
5833 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_BASIC_INFO);
5834 pSMB->Reserved4 = 0;
5835 inc_rfc1001_len(pSMB, byte_count);
5836 memcpy(data_offset, data, sizeof(FILE_BASIC_INFO));
5837 pSMB->ByteCount = cpu_to_le16(byte_count);
5838 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5839 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
5841 cifs_dbg(FYI, "SetPathInfo (times) returned %d\n", rc);
5843 cifs_buf_release(pSMB);
5851 /* Can not be used to set time stamps yet (due to old DOS time format) */
5852 /* Can be used to set attributes */
5853 #if 0 /* Possibly not needed - since it turns out that strangely NT4 has a bug
5854 handling it anyway and NT4 was what we thought it would be needed for
5855 Do not delete it until we prove whether needed for Win9x though */
5857 CIFSSMBSetAttrLegacy(unsigned int xid, struct cifs_tcon *tcon, char *fileName,
5858 __u16 dos_attrs, const struct nls_table *nls_codepage)
5860 SETATTR_REQ *pSMB = NULL;
5861 SETATTR_RSP *pSMBr = NULL;
5866 cifs_dbg(FYI, "In SetAttrLegacy\n");
5869 rc = smb_init(SMB_COM_SETATTR, 8, tcon, (void **) &pSMB,
5874 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
5876 ConvertToUTF16((__le16 *) pSMB->fileName, fileName,
5877 PATH_MAX, nls_codepage);
5878 name_len++; /* trailing null */
5880 } else { /* BB improve the check for buffer overruns BB */
5881 name_len = strnlen(fileName, PATH_MAX);
5882 name_len++; /* trailing null */
5883 strncpy(pSMB->fileName, fileName, name_len);
5885 pSMB->attr = cpu_to_le16(dos_attrs);
5886 pSMB->BufferFormat = 0x04;
5887 inc_rfc1001_len(pSMB, name_len + 1);
5888 pSMB->ByteCount = cpu_to_le16(name_len + 1);
5889 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
5890 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
5892 cifs_dbg(FYI, "Error in LegacySetAttr = %d\n", rc);
5894 cifs_buf_release(pSMB);
5897 goto SetAttrLgcyRetry;
5901 #endif /* temporarily unneeded SetAttr legacy function */
5904 cifs_fill_unix_set_info(FILE_UNIX_BASIC_INFO *data_offset,
5905 const struct cifs_unix_set_info_args *args)
5907 u64 uid = NO_CHANGE_64, gid = NO_CHANGE_64;
5908 u64 mode = args->mode;
5910 if (uid_valid(args->uid))
5911 uid = from_kuid(&init_user_ns, args->uid);
5912 if (gid_valid(args->gid))
5913 gid = from_kgid(&init_user_ns, args->gid);
5916 * Samba server ignores set of file size to zero due to bugs in some
5917 * older clients, but we should be precise - we use SetFileSize to
5918 * set file size and do not want to truncate file size to zero
5919 * accidentally as happened on one Samba server beta by putting
5920 * zero instead of -1 here
5922 data_offset->EndOfFile = cpu_to_le64(NO_CHANGE_64);
5923 data_offset->NumOfBytes = cpu_to_le64(NO_CHANGE_64);
5924 data_offset->LastStatusChange = cpu_to_le64(args->ctime);
5925 data_offset->LastAccessTime = cpu_to_le64(args->atime);
5926 data_offset->LastModificationTime = cpu_to_le64(args->mtime);
5927 data_offset->Uid = cpu_to_le64(uid);
5928 data_offset->Gid = cpu_to_le64(gid);
5929 /* better to leave device as zero when it is */
5930 data_offset->DevMajor = cpu_to_le64(MAJOR(args->device));
5931 data_offset->DevMinor = cpu_to_le64(MINOR(args->device));
5932 data_offset->Permissions = cpu_to_le64(mode);
5935 data_offset->Type = cpu_to_le32(UNIX_FILE);
5936 else if (S_ISDIR(mode))
5937 data_offset->Type = cpu_to_le32(UNIX_DIR);
5938 else if (S_ISLNK(mode))
5939 data_offset->Type = cpu_to_le32(UNIX_SYMLINK);
5940 else if (S_ISCHR(mode))
5941 data_offset->Type = cpu_to_le32(UNIX_CHARDEV);
5942 else if (S_ISBLK(mode))
5943 data_offset->Type = cpu_to_le32(UNIX_BLOCKDEV);
5944 else if (S_ISFIFO(mode))
5945 data_offset->Type = cpu_to_le32(UNIX_FIFO);
5946 else if (S_ISSOCK(mode))
5947 data_offset->Type = cpu_to_le32(UNIX_SOCKET);
5951 CIFSSMBUnixSetFileInfo(const unsigned int xid, struct cifs_tcon *tcon,
5952 const struct cifs_unix_set_info_args *args,
5953 u16 fid, u32 pid_of_opener)
5955 struct smb_com_transaction2_sfi_req *pSMB = NULL;
5958 u16 params, param_offset, offset, byte_count, count;
5960 cifs_dbg(FYI, "Set Unix Info (via SetFileInfo)\n");
5961 rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB);
5966 pSMB->hdr.Pid = cpu_to_le16((__u16)pid_of_opener);
5967 pSMB->hdr.PidHigh = cpu_to_le16((__u16)(pid_of_opener >> 16));
5970 pSMB->MaxSetupCount = 0;
5974 pSMB->Reserved2 = 0;
5975 param_offset = offsetof(struct smb_com_transaction2_sfi_req, Fid) - 4;
5976 offset = param_offset + params;
5978 data_offset = (char *)pSMB +
5979 offsetof(struct smb_hdr, Protocol) + offset;
5981 count = sizeof(FILE_UNIX_BASIC_INFO);
5983 pSMB->MaxParameterCount = cpu_to_le16(2);
5984 /* BB find max SMB PDU from sess */
5985 pSMB->MaxDataCount = cpu_to_le16(1000);
5986 pSMB->SetupCount = 1;
5987 pSMB->Reserved3 = 0;
5988 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_FILE_INFORMATION);
5989 byte_count = 3 /* pad */ + params + count;
5990 pSMB->DataCount = cpu_to_le16(count);
5991 pSMB->ParameterCount = cpu_to_le16(params);
5992 pSMB->TotalDataCount = pSMB->DataCount;
5993 pSMB->TotalParameterCount = pSMB->ParameterCount;
5994 pSMB->ParameterOffset = cpu_to_le16(param_offset);
5995 pSMB->DataOffset = cpu_to_le16(offset);
5997 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_UNIX_BASIC);
5998 pSMB->Reserved4 = 0;
5999 inc_rfc1001_len(pSMB, byte_count);
6000 pSMB->ByteCount = cpu_to_le16(byte_count);
6002 cifs_fill_unix_set_info((FILE_UNIX_BASIC_INFO *)data_offset, args);
6004 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) pSMB, 0);
6006 cifs_dbg(FYI, "Send error in Set Time (SetFileInfo) = %d\n",
6009 /* Note: On -EAGAIN error only caller can retry on handle based calls
6010 since file handle passed in no longer valid */
6016 CIFSSMBUnixSetPathInfo(const unsigned int xid, struct cifs_tcon *tcon,
6017 const char *file_name,
6018 const struct cifs_unix_set_info_args *args,
6019 const struct nls_table *nls_codepage, int remap)
6021 TRANSACTION2_SPI_REQ *pSMB = NULL;
6022 TRANSACTION2_SPI_RSP *pSMBr = NULL;
6025 int bytes_returned = 0;
6026 FILE_UNIX_BASIC_INFO *data_offset;
6027 __u16 params, param_offset, offset, count, byte_count;
6029 cifs_dbg(FYI, "In SetUID/GID/Mode\n");
6031 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
6036 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
6038 cifsConvertToUTF16((__le16 *) pSMB->FileName, file_name,
6039 PATH_MAX, nls_codepage, remap);
6040 name_len++; /* trailing null */
6042 } else { /* BB improve the check for buffer overruns BB */
6043 name_len = strnlen(file_name, PATH_MAX);
6044 name_len++; /* trailing null */
6045 strncpy(pSMB->FileName, file_name, name_len);
6048 params = 6 + name_len;
6049 count = sizeof(FILE_UNIX_BASIC_INFO);
6050 pSMB->MaxParameterCount = cpu_to_le16(2);
6051 /* BB find max SMB PDU from sess structure BB */
6052 pSMB->MaxDataCount = cpu_to_le16(1000);
6053 pSMB->MaxSetupCount = 0;
6057 pSMB->Reserved2 = 0;
6058 param_offset = offsetof(struct smb_com_transaction2_spi_req,
6059 InformationLevel) - 4;
6060 offset = param_offset + params;
6062 (FILE_UNIX_BASIC_INFO *) ((char *) &pSMB->hdr.Protocol +
6064 memset(data_offset, 0, count);
6065 pSMB->DataOffset = cpu_to_le16(offset);
6066 pSMB->ParameterOffset = cpu_to_le16(param_offset);
6067 pSMB->SetupCount = 1;
6068 pSMB->Reserved3 = 0;
6069 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
6070 byte_count = 3 /* pad */ + params + count;
6071 pSMB->ParameterCount = cpu_to_le16(params);
6072 pSMB->DataCount = cpu_to_le16(count);
6073 pSMB->TotalParameterCount = pSMB->ParameterCount;
6074 pSMB->TotalDataCount = pSMB->DataCount;
6075 pSMB->InformationLevel = cpu_to_le16(SMB_SET_FILE_UNIX_BASIC);
6076 pSMB->Reserved4 = 0;
6077 inc_rfc1001_len(pSMB, byte_count);
6079 cifs_fill_unix_set_info(data_offset, args);
6081 pSMB->ByteCount = cpu_to_le16(byte_count);
6082 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
6083 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
6085 cifs_dbg(FYI, "SetPathInfo (perms) returned %d\n", rc);
6087 cifs_buf_release(pSMB);
6093 #ifdef CONFIG_CIFS_XATTR
6095 * Do a path-based QUERY_ALL_EAS call and parse the result. This is a common
6096 * function used by listxattr and getxattr type calls. When ea_name is set,
6097 * it looks for that attribute name and stuffs that value into the EAData
6098 * buffer. When ea_name is NULL, it stuffs a list of attribute names into the
6099 * buffer. In both cases, the return value is either the length of the
6100 * resulting data or a negative error code. If EAData is a NULL pointer then
6101 * the data isn't copied to it, but the length is returned.
6104 CIFSSMBQAllEAs(const unsigned int xid, struct cifs_tcon *tcon,
6105 const unsigned char *searchName, const unsigned char *ea_name,
6106 char *EAData, size_t buf_size,
6107 const struct nls_table *nls_codepage, int remap)
6109 /* BB assumes one setup word */
6110 TRANSACTION2_QPI_REQ *pSMB = NULL;
6111 TRANSACTION2_QPI_RSP *pSMBr = NULL;
6115 struct fealist *ea_response_data;
6116 struct fea *temp_fea;
6119 __u16 params, byte_count, data_offset;
6120 unsigned int ea_name_len = ea_name ? strlen(ea_name) : 0;
6122 cifs_dbg(FYI, "In Query All EAs path %s\n", searchName);
6124 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
6129 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
6131 cifsConvertToUTF16((__le16 *) pSMB->FileName, searchName,
6132 PATH_MAX, nls_codepage, remap);
6133 list_len++; /* trailing null */
6135 } else { /* BB improve the check for buffer overruns BB */
6136 list_len = strnlen(searchName, PATH_MAX);
6137 list_len++; /* trailing null */
6138 strncpy(pSMB->FileName, searchName, list_len);
6141 params = 2 /* level */ + 4 /* reserved */ + list_len /* includes NUL */;
6142 pSMB->TotalDataCount = 0;
6143 pSMB->MaxParameterCount = cpu_to_le16(2);
6144 /* BB find exact max SMB PDU from sess structure BB */
6145 pSMB->MaxDataCount = cpu_to_le16(CIFSMaxBufSize);
6146 pSMB->MaxSetupCount = 0;
6150 pSMB->Reserved2 = 0;
6151 pSMB->ParameterOffset = cpu_to_le16(offsetof(
6152 struct smb_com_transaction2_qpi_req, InformationLevel) - 4);
6153 pSMB->DataCount = 0;
6154 pSMB->DataOffset = 0;
6155 pSMB->SetupCount = 1;
6156 pSMB->Reserved3 = 0;
6157 pSMB->SubCommand = cpu_to_le16(TRANS2_QUERY_PATH_INFORMATION);
6158 byte_count = params + 1 /* pad */ ;
6159 pSMB->TotalParameterCount = cpu_to_le16(params);
6160 pSMB->ParameterCount = pSMB->TotalParameterCount;
6161 pSMB->InformationLevel = cpu_to_le16(SMB_INFO_QUERY_ALL_EAS);
6162 pSMB->Reserved4 = 0;
6163 inc_rfc1001_len(pSMB, byte_count);
6164 pSMB->ByteCount = cpu_to_le16(byte_count);
6166 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
6167 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
6169 cifs_dbg(FYI, "Send error in QueryAllEAs = %d\n", rc);
6174 /* BB also check enough total bytes returned */
6175 /* BB we need to improve the validity checking
6176 of these trans2 responses */
6178 rc = validate_t2((struct smb_t2_rsp *)pSMBr);
6179 if (rc || get_bcc(&pSMBr->hdr) < 4) {
6180 rc = -EIO; /* bad smb */
6184 /* check that length of list is not more than bcc */
6185 /* check that each entry does not go beyond length
6187 /* check that each element of each entry does not
6188 go beyond end of list */
6189 /* validate_trans2_offsets() */
6190 /* BB check if start of smb + data_offset > &bcc+ bcc */
6192 data_offset = le16_to_cpu(pSMBr->t2.DataOffset);
6193 ea_response_data = (struct fealist *)
6194 (((char *) &pSMBr->hdr.Protocol) + data_offset);
6196 list_len = le32_to_cpu(ea_response_data->list_len);
6197 cifs_dbg(FYI, "ea length %d\n", list_len);
6198 if (list_len <= 8) {
6199 cifs_dbg(FYI, "empty EA list returned from server\n");
6200 /* didn't find the named attribute */
6206 /* make sure list_len doesn't go past end of SMB */
6207 end_of_smb = (char *)pByteArea(&pSMBr->hdr) + get_bcc(&pSMBr->hdr);
6208 if ((char *)ea_response_data + list_len > end_of_smb) {
6209 cifs_dbg(FYI, "EA list appears to go beyond SMB\n");
6214 /* account for ea list len */
6216 temp_fea = ea_response_data->list;
6217 temp_ptr = (char *)temp_fea;
6218 while (list_len > 0) {
6219 unsigned int name_len;
6224 /* make sure we can read name_len and value_len */
6226 cifs_dbg(FYI, "EA entry goes beyond length of list\n");
6231 name_len = temp_fea->name_len;
6232 value_len = le16_to_cpu(temp_fea->value_len);
6233 list_len -= name_len + 1 + value_len;
6235 cifs_dbg(FYI, "EA entry goes beyond length of list\n");
6241 if (ea_name_len == name_len &&
6242 memcmp(ea_name, temp_ptr, name_len) == 0) {
6243 temp_ptr += name_len + 1;
6247 if ((size_t)value_len > buf_size) {
6251 memcpy(EAData, temp_ptr, value_len);
6255 /* account for prefix user. and trailing null */
6256 rc += (5 + 1 + name_len);
6257 if (rc < (int) buf_size) {
6258 memcpy(EAData, "user.", 5);
6260 memcpy(EAData, temp_ptr, name_len);
6262 /* null terminate name */
6265 } else if (buf_size == 0) {
6266 /* skip copy - calc size only */
6268 /* stop before overrun buffer */
6273 temp_ptr += name_len + 1 + value_len;
6274 temp_fea = (struct fea *)temp_ptr;
6277 /* didn't find the named attribute */
6282 cifs_buf_release(pSMB);
6290 CIFSSMBSetEA(const unsigned int xid, struct cifs_tcon *tcon,
6291 const char *fileName, const char *ea_name, const void *ea_value,
6292 const __u16 ea_value_len, const struct nls_table *nls_codepage,
6295 struct smb_com_transaction2_spi_req *pSMB = NULL;
6296 struct smb_com_transaction2_spi_rsp *pSMBr = NULL;
6297 struct fealist *parm_data;
6300 int bytes_returned = 0;
6301 __u16 params, param_offset, byte_count, offset, count;
6303 cifs_dbg(FYI, "In SetEA\n");
6305 rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
6310 if (pSMB->hdr.Flags2 & SMBFLG2_UNICODE) {
6312 cifsConvertToUTF16((__le16 *) pSMB->FileName, fileName,
6313 PATH_MAX, nls_codepage, remap);
6314 name_len++; /* trailing null */
6316 } else { /* BB improve the check for buffer overruns BB */
6317 name_len = strnlen(fileName, PATH_MAX);
6318 name_len++; /* trailing null */
6319 strncpy(pSMB->FileName, fileName, name_len);
6322 params = 6 + name_len;
6324 /* done calculating parms using name_len of file name,
6325 now use name_len to calculate length of ea name
6326 we are going to create in the inode xattrs */
6327 if (ea_name == NULL)
6330 name_len = strnlen(ea_name, 255);
6332 count = sizeof(*parm_data) + ea_value_len + name_len;
6333 pSMB->MaxParameterCount = cpu_to_le16(2);
6334 /* BB find max SMB PDU from sess */
6335 pSMB->MaxDataCount = cpu_to_le16(1000);
6336 pSMB->MaxSetupCount = 0;
6340 pSMB->Reserved2 = 0;
6341 param_offset = offsetof(struct smb_com_transaction2_spi_req,
6342 InformationLevel) - 4;
6343 offset = param_offset + params;
6344 pSMB->InformationLevel =
6345 cpu_to_le16(SMB_SET_FILE_EA);
6348 (struct fealist *) (((char *) &pSMB->hdr.Protocol) +
6350 pSMB->ParameterOffset = cpu_to_le16(param_offset);
6351 pSMB->DataOffset = cpu_to_le16(offset);
6352 pSMB->SetupCount = 1;
6353 pSMB->Reserved3 = 0;
6354 pSMB->SubCommand = cpu_to_le16(TRANS2_SET_PATH_INFORMATION);
6355 byte_count = 3 /* pad */ + params + count;
6356 pSMB->DataCount = cpu_to_le16(count);
6357 parm_data->list_len = cpu_to_le32(count);
6358 parm_data->list[0].EA_flags = 0;
6359 /* we checked above that name len is less than 255 */
6360 parm_data->list[0].name_len = (__u8)name_len;
6361 /* EA names are always ASCII */
6363 strncpy(parm_data->list[0].name, ea_name, name_len);
6364 parm_data->list[0].name[name_len] = 0;
6365 parm_data->list[0].value_len = cpu_to_le16(ea_value_len);
6366 /* caller ensures that ea_value_len is less than 64K but
6367 we need to ensure that it fits within the smb */
6369 /*BB add length check to see if it would fit in
6370 negotiated SMB buffer size BB */
6371 /* if (ea_value_len > buffer_size - 512 (enough for header)) */
6373 memcpy(parm_data->list[0].name+name_len+1,
6374 ea_value, ea_value_len);
6376 pSMB->TotalDataCount = pSMB->DataCount;
6377 pSMB->ParameterCount = cpu_to_le16(params);
6378 pSMB->TotalParameterCount = pSMB->ParameterCount;
6379 pSMB->Reserved4 = 0;
6380 inc_rfc1001_len(pSMB, byte_count);
6381 pSMB->ByteCount = cpu_to_le16(byte_count);
6382 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
6383 (struct smb_hdr *) pSMBr, &bytes_returned, 0);
6385 cifs_dbg(FYI, "SetPathInfo (EA) returned %d\n", rc);
6387 cifs_buf_release(pSMB);
6396 #ifdef CONFIG_CIFS_DNOTIFY_EXPERIMENTAL /* BB unused temporarily */
6398 * Years ago the kernel added a "dnotify" function for Samba server,
6399 * to allow network clients (such as Windows) to display updated
6400 * lists of files in directory listings automatically when
6401 * files are added by one user when another user has the
6402 * same directory open on their desktop. The Linux cifs kernel
6403 * client hooked into the kernel side of this interface for
6404 * the same reason, but ironically when the VFS moved from
6405 * "dnotify" to "inotify" it became harder to plug in Linux
6406 * network file system clients (the most obvious use case
6407 * for notify interfaces is when multiple users can update
6408 * the contents of the same directory - exactly what network
6409 * file systems can do) although the server (Samba) could
6410 * still use it. For the short term we leave the worker
6411 * function ifdeffed out (below) until inotify is fixed
6412 * in the VFS to make it easier to plug in network file
6413 * system clients. If inotify turns out to be permanently
6414 * incompatible for network fs clients, we could instead simply
6415 * expose this config flag by adding a future cifs (and smb2) notify ioctl.
6417 int CIFSSMBNotify(const unsigned int xid, struct cifs_tcon *tcon,
6418 const int notify_subdirs, const __u16 netfid,
6419 __u32 filter, struct file *pfile, int multishot,
6420 const struct nls_table *nls_codepage)
6423 struct smb_com_transaction_change_notify_req *pSMB = NULL;
6424 struct smb_com_ntransaction_change_notify_rsp *pSMBr = NULL;
6425 struct dir_notify_req *dnotify_req;
6428 cifs_dbg(FYI, "In CIFSSMBNotify for file handle %d\n", (int)netfid);
6429 rc = smb_init(SMB_COM_NT_TRANSACT, 23, tcon, (void **) &pSMB,
6434 pSMB->TotalParameterCount = 0 ;
6435 pSMB->TotalDataCount = 0;
6436 pSMB->MaxParameterCount = cpu_to_le32(2);
6437 pSMB->MaxDataCount = cpu_to_le32(CIFSMaxBufSize & 0xFFFFFF00);
6438 pSMB->MaxSetupCount = 4;
6440 pSMB->ParameterOffset = 0;
6441 pSMB->DataCount = 0;
6442 pSMB->DataOffset = 0;
6443 pSMB->SetupCount = 4; /* single byte does not need le conversion */
6444 pSMB->SubCommand = cpu_to_le16(NT_TRANSACT_NOTIFY_CHANGE);
6445 pSMB->ParameterCount = pSMB->TotalParameterCount;
6447 pSMB->WatchTree = 1; /* one byte - no le conversion needed */
6448 pSMB->Reserved2 = 0;
6449 pSMB->CompletionFilter = cpu_to_le32(filter);
6450 pSMB->Fid = netfid; /* file handle always le */
6451 pSMB->ByteCount = 0;
6453 rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB,
6454 (struct smb_hdr *)pSMBr, &bytes_returned,
6457 cifs_dbg(FYI, "Error in Notify = %d\n", rc);
6459 /* Add file to outstanding requests */
6460 /* BB change to kmem cache alloc */
6461 dnotify_req = kmalloc(
6462 sizeof(struct dir_notify_req),
6465 dnotify_req->Pid = pSMB->hdr.Pid;
6466 dnotify_req->PidHigh = pSMB->hdr.PidHigh;
6467 dnotify_req->Mid = pSMB->hdr.Mid;
6468 dnotify_req->Tid = pSMB->hdr.Tid;
6469 dnotify_req->Uid = pSMB->hdr.Uid;
6470 dnotify_req->netfid = netfid;
6471 dnotify_req->pfile = pfile;
6472 dnotify_req->filter = filter;
6473 dnotify_req->multishot = multishot;
6474 spin_lock(&GlobalMid_Lock);
6475 list_add_tail(&dnotify_req->lhead,
6476 &GlobalDnotifyReqList);
6477 spin_unlock(&GlobalMid_Lock);
6481 cifs_buf_release(pSMB);
6484 #endif /* was needed for dnotify, and will be needed for inotify when VFS fix */