4 * Copyright (C) International Business Machines Corp., 2002,2008
5 * Author(s): Steve French (sfrench@us.ibm.com)
6 * Jeremy Allison (jra@samba.org) 2006.
8 * This library is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Lesser General Public License as published
10 * by the Free Software Foundation; either version 2.1 of the License, or
11 * (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
16 * the GNU Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <linux/list.h>
25 #include <linux/wait.h>
26 #include <linux/net.h>
27 #include <linux/delay.h>
28 #include <asm/uaccess.h>
29 #include <asm/processor.h>
30 #include <linux/mempool.h>
33 #include "cifsproto.h"
34 #include "cifs_debug.h"
36 extern mempool_t *cifs_mid_poolp;
37 extern struct kmem_cache *cifs_oplock_cachep;
39 static struct mid_q_entry *
40 AllocMidQEntry(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server)
42 struct mid_q_entry *temp;
45 cERROR(1, ("Null TCP session in AllocMidQEntry"));
49 temp = mempool_alloc(cifs_mid_poolp, GFP_NOFS);
53 memset(temp, 0, sizeof(struct mid_q_entry));
54 temp->mid = smb_buffer->Mid; /* always LE */
55 temp->pid = current->pid;
56 temp->command = smb_buffer->Command;
57 cFYI(1, ("For smb_command %d", temp->command));
58 /* do_gettimeofday(&temp->when_sent);*/ /* easier to use jiffies */
59 /* when mid allocated can be before when sent */
60 temp->when_alloc = jiffies;
64 spin_lock(&GlobalMid_Lock);
65 list_add_tail(&temp->qhead, &server->pending_mid_q);
66 atomic_inc(&midCount);
67 temp->midState = MID_REQUEST_ALLOCATED;
68 spin_unlock(&GlobalMid_Lock);
73 DeleteMidQEntry(struct mid_q_entry *midEntry)
75 #ifdef CONFIG_CIFS_STATS2
78 spin_lock(&GlobalMid_Lock);
79 midEntry->midState = MID_FREE;
80 list_del(&midEntry->qhead);
81 atomic_dec(&midCount);
82 spin_unlock(&GlobalMid_Lock);
83 if (midEntry->largeBuf)
84 cifs_buf_release(midEntry->resp_buf);
86 cifs_small_buf_release(midEntry->resp_buf);
87 #ifdef CONFIG_CIFS_STATS2
89 /* commands taking longer than one second are indications that
90 something is wrong, unless it is quite a slow link or server */
91 if ((now - midEntry->when_alloc) > HZ) {
92 if ((cifsFYI & CIFS_TIMER) &&
93 (midEntry->command != SMB_COM_LOCKING_ANDX)) {
94 printk(KERN_DEBUG " CIFS slow rsp: cmd %d mid %d",
95 midEntry->command, midEntry->mid);
96 printk(" A: 0x%lx S: 0x%lx R: 0x%lx\n",
97 now - midEntry->when_alloc,
98 now - midEntry->when_sent,
99 now - midEntry->when_received);
103 mempool_free(midEntry, cifs_mid_poolp);
106 struct oplock_q_entry *
107 AllocOplockQEntry(struct inode *pinode, __u16 fid, struct cifsTconInfo *tcon)
109 struct oplock_q_entry *temp;
110 if ((pinode == NULL) || (tcon == NULL)) {
111 cERROR(1, ("Null parms passed to AllocOplockQEntry"));
114 temp = (struct oplock_q_entry *) kmem_cache_alloc(cifs_oplock_cachep,
119 temp->pinode = pinode;
122 spin_lock(&GlobalMid_Lock);
123 list_add_tail(&temp->qhead, &GlobalOplock_Q);
124 spin_unlock(&GlobalMid_Lock);
130 void DeleteOplockQEntry(struct oplock_q_entry *oplockEntry)
132 spin_lock(&GlobalMid_Lock);
133 /* should we check if list empty first? */
134 list_del(&oplockEntry->qhead);
135 spin_unlock(&GlobalMid_Lock);
136 kmem_cache_free(cifs_oplock_cachep, oplockEntry);
140 void DeleteTconOplockQEntries(struct cifsTconInfo *tcon)
142 struct oplock_q_entry *temp;
147 spin_lock(&GlobalMid_Lock);
148 list_for_each_entry(temp, &GlobalOplock_Q, qhead) {
149 if ((temp->tcon) && (temp->tcon == tcon)) {
150 list_del(&temp->qhead);
151 kmem_cache_free(cifs_oplock_cachep, temp);
154 spin_unlock(&GlobalMid_Lock);
158 smb_sendv(struct TCP_Server_Info *server, struct kvec *iov, int n_vec)
162 struct msghdr smb_msg;
163 struct smb_hdr *smb_buffer = iov[0].iov_base;
164 unsigned int len = iov[0].iov_len;
165 unsigned int total_len;
167 unsigned int smb_buf_length = smb_buffer->smb_buf_length;
168 struct socket *ssocket = server->ssocket;
171 return -ENOTSOCK; /* BB eventually add reconnect code here */
173 smb_msg.msg_name = (struct sockaddr *) &server->addr.sockAddr;
174 smb_msg.msg_namelen = sizeof(struct sockaddr);
175 smb_msg.msg_control = NULL;
176 smb_msg.msg_controllen = 0;
177 if (server->noblocksnd)
178 smb_msg.msg_flags = MSG_DONTWAIT + MSG_NOSIGNAL;
180 smb_msg.msg_flags = MSG_NOSIGNAL;
182 /* smb header is converted in header_assemble. bcc and rest of SMB word
183 area, and byte area if necessary, is converted to littleendian in
184 cifssmb.c and RFC1001 len is converted to bigendian in smb_send
185 Flags2 is converted in SendReceive */
189 for (i = 0; i < n_vec; i++)
190 total_len += iov[i].iov_len;
192 smb_buffer->smb_buf_length = cpu_to_be32(smb_buffer->smb_buf_length);
193 cFYI(1, ("Sending smb: total_len %d", total_len));
194 dump_smb(smb_buffer, len);
198 rc = kernel_sendmsg(ssocket, &smb_msg, &iov[first_vec],
199 n_vec - first_vec, total_len);
200 if ((rc == -ENOSPC) || (rc == -EAGAIN)) {
202 /* if blocking send we try 3 times, since each can block
203 for 5 seconds. For nonblocking we have to try more
204 but wait increasing amounts of time allowing time for
205 socket to clear. The overall time we wait in either
206 case to send on the socket is about 15 seconds.
207 Similarly we wait for 15 seconds for
208 a response from the server in SendReceive[2]
209 for the server to send a response back for
210 most types of requests (except SMB Write
211 past end of file which can be slow, and
212 blocking lock operations). NFS waits slightly longer
213 than CIFS, but this can make it take longer for
214 nonresponsive servers to be detected and 15 seconds
215 is more than enough time for modern networks to
216 send a packet. In most cases if we fail to send
217 after the retries we will kill the socket and
218 reconnect which may clear the network problem.
220 if ((i >= 14) || (!server->noblocksnd && (i > 2))) {
222 ("sends on sock %p stuck for 15 seconds",
233 if (rc == total_len) {
236 } else if (rc > total_len) {
237 cERROR(1, ("sent %d requested %d", rc, total_len));
241 /* should never happen, letting socket clear before
242 retrying is our only obvious option here */
243 cERROR(1, ("tcp sent no data"));
248 /* the line below resets i */
249 for (i = first_vec; i < n_vec; i++) {
250 if (iov[i].iov_len) {
251 if (rc > iov[i].iov_len) {
252 rc -= iov[i].iov_len;
255 iov[i].iov_base += rc;
256 iov[i].iov_len -= rc;
262 i = 0; /* in case we get ENOSPC on the next send */
265 if ((total_len > 0) && (total_len != smb_buf_length + 4)) {
266 cFYI(1, ("partial send (%d remaining), terminating session",
268 /* If we have only sent part of an SMB then the next SMB
269 could be taken as the remainder of this one. We need
270 to kill the socket so the server throws away the partial
272 server->tcpStatus = CifsNeedReconnect;
276 cERROR(1, ("Error %d sending data on socket to server", rc));
280 /* Don't want to modify the buffer as a
281 side effect of this call. */
282 smb_buffer->smb_buf_length = smb_buf_length;
288 smb_send(struct TCP_Server_Info *server, struct smb_hdr *smb_buffer,
289 unsigned int smb_buf_length)
293 iov.iov_base = smb_buffer;
294 iov.iov_len = smb_buf_length + 4;
296 return smb_sendv(server, &iov, 1);
299 static int wait_for_free_request(struct cifsSesInfo *ses, const int long_op)
301 if (long_op == CIFS_ASYNC_OP) {
302 /* oplock breaks must not be held up */
303 atomic_inc(&ses->server->inFlight);
307 spin_lock(&GlobalMid_Lock);
309 if (atomic_read(&ses->server->inFlight) >=
311 spin_unlock(&GlobalMid_Lock);
312 #ifdef CONFIG_CIFS_STATS2
313 atomic_inc(&ses->server->num_waiters);
315 wait_event(ses->server->request_q,
316 atomic_read(&ses->server->inFlight)
318 #ifdef CONFIG_CIFS_STATS2
319 atomic_dec(&ses->server->num_waiters);
321 spin_lock(&GlobalMid_Lock);
323 if (ses->server->tcpStatus == CifsExiting) {
324 spin_unlock(&GlobalMid_Lock);
328 /* can not count locking commands against total
329 as they are allowed to block on server */
331 /* update # of requests on the wire to server */
332 if (long_op != CIFS_BLOCKING_OP)
333 atomic_inc(&ses->server->inFlight);
334 spin_unlock(&GlobalMid_Lock);
341 static int allocate_mid(struct cifsSesInfo *ses, struct smb_hdr *in_buf,
342 struct mid_q_entry **ppmidQ)
344 if (ses->server->tcpStatus == CifsExiting) {
348 if (ses->server->tcpStatus == CifsNeedReconnect) {
349 cFYI(1, ("tcp session dead - return to caller to retry"));
353 if (ses->status != CifsGood) {
354 /* check if SMB session is bad because we are setting it up */
355 if ((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) &&
356 (in_buf->Command != SMB_COM_NEGOTIATE))
358 /* else ok - we are setting up session */
360 *ppmidQ = AllocMidQEntry(in_buf, ses->server);
366 static int wait_for_response(struct cifsSesInfo *ses,
367 struct mid_q_entry *midQ,
368 unsigned long timeout,
369 unsigned long time_to_wait)
371 unsigned long curr_timeout;
374 curr_timeout = timeout + jiffies;
375 wait_event_timeout(ses->server->response_q,
376 midQ->midState != MID_REQUEST_SUBMITTED, timeout);
378 if (time_after(jiffies, curr_timeout) &&
379 (midQ->midState == MID_REQUEST_SUBMITTED) &&
380 ((ses->server->tcpStatus == CifsGood) ||
381 (ses->server->tcpStatus == CifsNew))) {
385 /* We timed out. Is the server still
387 spin_lock(&GlobalMid_Lock);
388 lrt = ses->server->lstrp;
389 spin_unlock(&GlobalMid_Lock);
391 /* Calculate time_to_wait past last receive time.
392 Although we prefer not to time out if the
393 server is still responding - we will time
394 out if the server takes more than 15 (or 45
395 or 180) seconds to respond to this request
396 and has not responded to any request from
397 other threads on the client within 10 seconds */
399 if (time_after(jiffies, lrt)) {
400 /* No replies for time_to_wait. */
401 cERROR(1, ("server not responding"));
413 * Send an SMB Request. No response info (other than return code)
414 * needs to be parsed.
416 * flags indicate the type of request buffer and how long to wait
417 * and whether to log NT STATUS code (error) before mapping it to POSIX error
421 SendReceiveNoRsp(const unsigned int xid, struct cifsSesInfo *ses,
422 struct smb_hdr *in_buf, int flags)
428 iov[0].iov_base = (char *)in_buf;
429 iov[0].iov_len = in_buf->smb_buf_length + 4;
430 flags |= CIFS_NO_RESP;
431 rc = SendReceive2(xid, ses, iov, 1, &resp_buf_type, flags);
432 cFYI(DBG2, ("SendRcvNoRsp flags %d rc %d", flags, rc));
438 SendReceive2(const unsigned int xid, struct cifsSesInfo *ses,
439 struct kvec *iov, int n_vec, int *pRespBufType /* ret */,
444 unsigned int receive_len;
445 unsigned long timeout;
446 struct mid_q_entry *midQ;
447 struct smb_hdr *in_buf = iov[0].iov_base;
449 long_op = flags & CIFS_TIMEOUT_MASK;
451 *pRespBufType = CIFS_NO_BUFFER; /* no response buf yet */
453 if ((ses == NULL) || (ses->server == NULL)) {
454 cifs_small_buf_release(in_buf);
455 cERROR(1, ("Null session"));
459 if (ses->server->tcpStatus == CifsExiting) {
460 cifs_small_buf_release(in_buf);
464 /* Ensure that we do not send more than 50 overlapping requests
465 to the same server. We may make this configurable later or
468 rc = wait_for_free_request(ses, long_op);
470 cifs_small_buf_release(in_buf);
474 /* make sure that we sign in the same order that we send on this socket
475 and avoid races inside tcp sendmsg code that could cause corruption
478 mutex_lock(&ses->server->srv_mutex);
480 rc = allocate_mid(ses, in_buf, &midQ);
482 mutex_unlock(&ses->server->srv_mutex);
483 cifs_small_buf_release(in_buf);
484 /* Update # of requests on wire to server */
485 atomic_dec(&ses->server->inFlight);
486 wake_up(&ses->server->request_q);
489 rc = cifs_sign_smb2(iov, n_vec, ses->server, &midQ->sequence_number);
491 mutex_unlock(&ses->server->srv_mutex);
492 cifs_small_buf_release(in_buf);
496 midQ->midState = MID_REQUEST_SUBMITTED;
497 #ifdef CONFIG_CIFS_STATS2
498 atomic_inc(&ses->server->inSend);
500 rc = smb_sendv(ses->server, iov, n_vec);
501 #ifdef CONFIG_CIFS_STATS2
502 atomic_dec(&ses->server->inSend);
503 midQ->when_sent = jiffies;
506 mutex_unlock(&ses->server->srv_mutex);
507 cifs_small_buf_release(in_buf);
512 if (long_op == CIFS_STD_OP)
514 else if (long_op == CIFS_VLONG_OP) /* e.g. slow writes past EOF */
516 else if (long_op == CIFS_LONG_OP)
517 timeout = 45 * HZ; /* should be greater than
518 servers oplock break timeout (about 43 seconds) */
519 else if (long_op == CIFS_ASYNC_OP)
521 else if (long_op == CIFS_BLOCKING_OP)
522 timeout = 0x7FFFFFFF; /* large, but not so large as to wrap */
524 cERROR(1, ("unknown timeout flag %d", long_op));
529 /* wait for 15 seconds or until woken up due to response arriving or
530 due to last connection to this server being unmounted */
531 if (signal_pending(current)) {
532 /* if signal pending do not hold up user for full smb timeout
533 but we still give response a chance to complete */
537 /* No user interrupts in wait - wreaks havoc with performance */
538 wait_for_response(ses, midQ, timeout, 10 * HZ);
540 spin_lock(&GlobalMid_Lock);
542 if (midQ->resp_buf == NULL) {
543 cERROR(1, ("No response to cmd %d mid %d",
544 midQ->command, midQ->mid));
545 if (midQ->midState == MID_REQUEST_SUBMITTED) {
546 if (ses->server->tcpStatus == CifsExiting)
549 ses->server->tcpStatus = CifsNeedReconnect;
550 midQ->midState = MID_RETRY_NEEDED;
554 if (rc != -EHOSTDOWN) {
555 if (midQ->midState == MID_RETRY_NEEDED) {
557 cFYI(1, ("marking request for retry"));
562 spin_unlock(&GlobalMid_Lock);
563 DeleteMidQEntry(midQ);
564 /* Update # of requests on wire to server */
565 atomic_dec(&ses->server->inFlight);
566 wake_up(&ses->server->request_q);
570 spin_unlock(&GlobalMid_Lock);
571 receive_len = midQ->resp_buf->smb_buf_length;
573 if (receive_len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE) {
574 cERROR(1, ("Frame too large received. Length: %d Xid: %d",
580 /* rcvd frame is ok */
582 if (midQ->resp_buf &&
583 (midQ->midState == MID_RESPONSE_RECEIVED)) {
585 iov[0].iov_base = (char *)midQ->resp_buf;
587 *pRespBufType = CIFS_LARGE_BUFFER;
589 *pRespBufType = CIFS_SMALL_BUFFER;
590 iov[0].iov_len = receive_len + 4;
592 dump_smb(midQ->resp_buf, 80);
593 /* convert the length into a more usable form */
594 if ((receive_len > 24) &&
595 (ses->server->secMode & (SECMODE_SIGN_REQUIRED |
596 SECMODE_SIGN_ENABLED))) {
597 rc = cifs_verify_signature(midQ->resp_buf,
598 &ses->server->mac_signing_key,
599 midQ->sequence_number+1);
601 cERROR(1, ("Unexpected SMB signature"));
602 /* BB FIXME add code to kill session */
606 /* BB special case reconnect tid and uid here? */
607 rc = map_smb_to_linux_error(midQ->resp_buf,
608 flags & CIFS_LOG_ERROR);
610 /* convert ByteCount if necessary */
611 if (receive_len >= sizeof(struct smb_hdr) - 4
612 /* do not count RFC1001 header */ +
613 (2 * midQ->resp_buf->WordCount) + 2 /* bcc */ )
614 BCC(midQ->resp_buf) =
615 le16_to_cpu(BCC_LE(midQ->resp_buf));
616 if ((flags & CIFS_NO_RESP) == 0)
617 midQ->resp_buf = NULL; /* mark it so buf will
622 cFYI(1, ("Bad MID state?"));
626 DeleteMidQEntry(midQ);
627 atomic_dec(&ses->server->inFlight);
628 wake_up(&ses->server->request_q);
634 SendReceive(const unsigned int xid, struct cifsSesInfo *ses,
635 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
636 int *pbytes_returned, const int long_op)
639 unsigned int receive_len;
640 unsigned long timeout;
641 struct mid_q_entry *midQ;
644 cERROR(1, ("Null smb session"));
647 if (ses->server == NULL) {
648 cERROR(1, ("Null tcp session"));
652 if (ses->server->tcpStatus == CifsExiting)
655 /* Ensure that we do not send more than 50 overlapping requests
656 to the same server. We may make this configurable later or
659 if (in_buf->smb_buf_length > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
660 cERROR(1, ("Illegal length, greater than maximum frame, %d",
661 in_buf->smb_buf_length));
665 rc = wait_for_free_request(ses, long_op);
669 /* make sure that we sign in the same order that we send on this socket
670 and avoid races inside tcp sendmsg code that could cause corruption
673 mutex_lock(&ses->server->srv_mutex);
675 rc = allocate_mid(ses, in_buf, &midQ);
677 mutex_unlock(&ses->server->srv_mutex);
678 /* Update # of requests on wire to server */
679 atomic_dec(&ses->server->inFlight);
680 wake_up(&ses->server->request_q);
684 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
686 mutex_unlock(&ses->server->srv_mutex);
690 midQ->midState = MID_REQUEST_SUBMITTED;
691 #ifdef CONFIG_CIFS_STATS2
692 atomic_inc(&ses->server->inSend);
694 rc = smb_send(ses->server, in_buf, in_buf->smb_buf_length);
695 #ifdef CONFIG_CIFS_STATS2
696 atomic_dec(&ses->server->inSend);
697 midQ->when_sent = jiffies;
699 mutex_unlock(&ses->server->srv_mutex);
704 if (long_op == CIFS_STD_OP)
706 /* wait for 15 seconds or until woken up due to response arriving or
707 due to last connection to this server being unmounted */
708 else if (long_op == CIFS_ASYNC_OP)
710 else if (long_op == CIFS_VLONG_OP) /* writes past EOF can be slow */
712 else if (long_op == CIFS_LONG_OP)
713 timeout = 45 * HZ; /* should be greater than
714 servers oplock break timeout (about 43 seconds) */
715 else if (long_op == CIFS_BLOCKING_OP)
716 timeout = 0x7FFFFFFF; /* large but no so large as to wrap */
718 cERROR(1, ("unknown timeout flag %d", long_op));
723 if (signal_pending(current)) {
724 /* if signal pending do not hold up user for full smb timeout
725 but we still give response a chance to complete */
729 /* No user interrupts in wait - wreaks havoc with performance */
730 wait_for_response(ses, midQ, timeout, 10 * HZ);
732 spin_lock(&GlobalMid_Lock);
733 if (midQ->resp_buf == NULL) {
734 cERROR(1, ("No response for cmd %d mid %d",
735 midQ->command, midQ->mid));
736 if (midQ->midState == MID_REQUEST_SUBMITTED) {
737 if (ses->server->tcpStatus == CifsExiting)
740 ses->server->tcpStatus = CifsNeedReconnect;
741 midQ->midState = MID_RETRY_NEEDED;
745 if (rc != -EHOSTDOWN) {
746 if (midQ->midState == MID_RETRY_NEEDED) {
748 cFYI(1, ("marking request for retry"));
753 spin_unlock(&GlobalMid_Lock);
754 DeleteMidQEntry(midQ);
755 /* Update # of requests on wire to server */
756 atomic_dec(&ses->server->inFlight);
757 wake_up(&ses->server->request_q);
761 spin_unlock(&GlobalMid_Lock);
762 receive_len = midQ->resp_buf->smb_buf_length;
764 if (receive_len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE) {
765 cERROR(1, ("Frame too large received. Length: %d Xid: %d",
771 /* rcvd frame is ok */
773 if (midQ->resp_buf && out_buf
774 && (midQ->midState == MID_RESPONSE_RECEIVED)) {
775 out_buf->smb_buf_length = receive_len;
776 memcpy((char *)out_buf + 4,
777 (char *)midQ->resp_buf + 4,
780 dump_smb(out_buf, 92);
781 /* convert the length into a more usable form */
782 if ((receive_len > 24) &&
783 (ses->server->secMode & (SECMODE_SIGN_REQUIRED |
784 SECMODE_SIGN_ENABLED))) {
785 rc = cifs_verify_signature(out_buf,
786 &ses->server->mac_signing_key,
787 midQ->sequence_number+1);
789 cERROR(1, ("Unexpected SMB signature"));
790 /* BB FIXME add code to kill session */
794 *pbytes_returned = out_buf->smb_buf_length;
796 /* BB special case reconnect tid and uid here? */
797 rc = map_smb_to_linux_error(out_buf, 0 /* no log */ );
799 /* convert ByteCount if necessary */
800 if (receive_len >= sizeof(struct smb_hdr) - 4
801 /* do not count RFC1001 header */ +
802 (2 * out_buf->WordCount) + 2 /* bcc */ )
803 BCC(out_buf) = le16_to_cpu(BCC_LE(out_buf));
806 cERROR(1, ("Bad MID state?"));
810 DeleteMidQEntry(midQ);
811 atomic_dec(&ses->server->inFlight);
812 wake_up(&ses->server->request_q);
817 /* Send an NT_CANCEL SMB to cause the POSIX blocking lock to return. */
820 send_nt_cancel(struct cifsTconInfo *tcon, struct smb_hdr *in_buf,
821 struct mid_q_entry *midQ)
824 struct cifsSesInfo *ses = tcon->ses;
825 __u16 mid = in_buf->Mid;
827 header_assemble(in_buf, SMB_COM_NT_CANCEL, tcon, 0);
829 mutex_lock(&ses->server->srv_mutex);
830 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
832 mutex_unlock(&ses->server->srv_mutex);
835 rc = smb_send(ses->server, in_buf, in_buf->smb_buf_length);
836 mutex_unlock(&ses->server->srv_mutex);
840 /* We send a LOCKINGX_CANCEL_LOCK to cause the Windows
841 blocking lock to return. */
844 send_lock_cancel(const unsigned int xid, struct cifsTconInfo *tcon,
845 struct smb_hdr *in_buf,
846 struct smb_hdr *out_buf)
849 struct cifsSesInfo *ses = tcon->ses;
850 LOCK_REQ *pSMB = (LOCK_REQ *)in_buf;
852 /* We just modify the current in_buf to change
853 the type of lock from LOCKING_ANDX_SHARED_LOCK
854 or LOCKING_ANDX_EXCLUSIVE_LOCK to
855 LOCKING_ANDX_CANCEL_LOCK. */
857 pSMB->LockType = LOCKING_ANDX_CANCEL_LOCK|LOCKING_ANDX_LARGE_FILES;
859 pSMB->hdr.Mid = GetNextMid(ses->server);
861 return SendReceive(xid, ses, in_buf, out_buf,
862 &bytes_returned, CIFS_STD_OP);
866 SendReceiveBlockingLock(const unsigned int xid, struct cifsTconInfo *tcon,
867 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
868 int *pbytes_returned)
872 unsigned int receive_len;
873 struct mid_q_entry *midQ;
874 struct cifsSesInfo *ses;
876 if (tcon == NULL || tcon->ses == NULL) {
877 cERROR(1, ("Null smb session"));
882 if (ses->server == NULL) {
883 cERROR(1, ("Null tcp session"));
887 if (ses->server->tcpStatus == CifsExiting)
890 /* Ensure that we do not send more than 50 overlapping requests
891 to the same server. We may make this configurable later or
894 if (in_buf->smb_buf_length > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
895 cERROR(1, ("Illegal length, greater than maximum frame, %d",
896 in_buf->smb_buf_length));
900 rc = wait_for_free_request(ses, CIFS_BLOCKING_OP);
904 /* make sure that we sign in the same order that we send on this socket
905 and avoid races inside tcp sendmsg code that could cause corruption
908 mutex_lock(&ses->server->srv_mutex);
910 rc = allocate_mid(ses, in_buf, &midQ);
912 mutex_unlock(&ses->server->srv_mutex);
916 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
918 DeleteMidQEntry(midQ);
919 mutex_unlock(&ses->server->srv_mutex);
923 midQ->midState = MID_REQUEST_SUBMITTED;
924 #ifdef CONFIG_CIFS_STATS2
925 atomic_inc(&ses->server->inSend);
927 rc = smb_send(ses->server, in_buf, in_buf->smb_buf_length);
928 #ifdef CONFIG_CIFS_STATS2
929 atomic_dec(&ses->server->inSend);
930 midQ->when_sent = jiffies;
932 mutex_unlock(&ses->server->srv_mutex);
935 DeleteMidQEntry(midQ);
939 /* Wait for a reply - allow signals to interrupt. */
940 rc = wait_event_interruptible(ses->server->response_q,
941 (!(midQ->midState == MID_REQUEST_SUBMITTED)) ||
942 ((ses->server->tcpStatus != CifsGood) &&
943 (ses->server->tcpStatus != CifsNew)));
945 /* Were we interrupted by a signal ? */
946 if ((rc == -ERESTARTSYS) &&
947 (midQ->midState == MID_REQUEST_SUBMITTED) &&
948 ((ses->server->tcpStatus == CifsGood) ||
949 (ses->server->tcpStatus == CifsNew))) {
951 if (in_buf->Command == SMB_COM_TRANSACTION2) {
952 /* POSIX lock. We send a NT_CANCEL SMB to cause the
953 blocking lock to return. */
955 rc = send_nt_cancel(tcon, in_buf, midQ);
957 DeleteMidQEntry(midQ);
961 /* Windows lock. We send a LOCKINGX_CANCEL_LOCK
962 to cause the blocking lock to return. */
964 rc = send_lock_cancel(xid, tcon, in_buf, out_buf);
966 /* If we get -ENOLCK back the lock may have
967 already been removed. Don't exit in this case. */
968 if (rc && rc != -ENOLCK) {
969 DeleteMidQEntry(midQ);
974 /* Wait 5 seconds for the response. */
975 if (wait_for_response(ses, midQ, 5 * HZ, 5 * HZ) == 0) {
976 /* We got the response - restart system call. */
981 spin_lock(&GlobalMid_Lock);
982 if (midQ->resp_buf) {
983 spin_unlock(&GlobalMid_Lock);
984 receive_len = midQ->resp_buf->smb_buf_length;
986 cERROR(1, ("No response for cmd %d mid %d",
987 midQ->command, midQ->mid));
988 if (midQ->midState == MID_REQUEST_SUBMITTED) {
989 if (ses->server->tcpStatus == CifsExiting)
992 ses->server->tcpStatus = CifsNeedReconnect;
993 midQ->midState = MID_RETRY_NEEDED;
997 if (rc != -EHOSTDOWN) {
998 if (midQ->midState == MID_RETRY_NEEDED) {
1000 cFYI(1, ("marking request for retry"));
1005 spin_unlock(&GlobalMid_Lock);
1006 DeleteMidQEntry(midQ);
1010 if (receive_len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE) {
1011 cERROR(1, ("Frame too large received. Length: %d Xid: %d",
1017 /* rcvd frame is ok */
1019 if ((out_buf == NULL) || (midQ->midState != MID_RESPONSE_RECEIVED)) {
1021 cERROR(1, ("Bad MID state?"));
1025 out_buf->smb_buf_length = receive_len;
1026 memcpy((char *)out_buf + 4,
1027 (char *)midQ->resp_buf + 4,
1030 dump_smb(out_buf, 92);
1031 /* convert the length into a more usable form */
1032 if ((receive_len > 24) &&
1033 (ses->server->secMode & (SECMODE_SIGN_REQUIRED |
1034 SECMODE_SIGN_ENABLED))) {
1035 rc = cifs_verify_signature(out_buf,
1036 &ses->server->mac_signing_key,
1037 midQ->sequence_number+1);
1039 cERROR(1, ("Unexpected SMB signature"));
1040 /* BB FIXME add code to kill session */
1044 *pbytes_returned = out_buf->smb_buf_length;
1046 /* BB special case reconnect tid and uid here? */
1047 rc = map_smb_to_linux_error(out_buf, 0 /* no log */ );
1049 /* convert ByteCount if necessary */
1050 if (receive_len >= sizeof(struct smb_hdr) - 4
1051 /* do not count RFC1001 header */ +
1052 (2 * out_buf->WordCount) + 2 /* bcc */ )
1053 BCC(out_buf) = le16_to_cpu(BCC_LE(out_buf));
1056 DeleteMidQEntry(midQ);
1057 if (rstart && rc == -EACCES)
1058 return -ERESTARTSYS;