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 cifsSesInfo
*ses
)
42 struct mid_q_entry
*temp
;
45 cERROR(1, ("Null session passed in to AllocMidQEntry"));
48 if (ses
->server
== NULL
) {
49 cERROR(1, ("Null TCP session in AllocMidQEntry"));
53 temp
= mempool_alloc(cifs_mid_poolp
, GFP_NOFS
);
57 memset(temp
, 0, sizeof(struct mid_q_entry
));
58 temp
->mid
= smb_buffer
->Mid
; /* always LE */
59 temp
->pid
= current
->pid
;
60 temp
->command
= smb_buffer
->Command
;
61 cFYI(1, ("For smb_command %d", temp
->command
));
62 /* do_gettimeofday(&temp->when_sent);*/ /* easier to use jiffies */
63 /* when mid allocated can be before when sent */
64 temp
->when_alloc
= jiffies
;
69 spin_lock(&GlobalMid_Lock
);
70 list_add_tail(&temp
->qhead
, &ses
->server
->pending_mid_q
);
71 atomic_inc(&midCount
);
72 temp
->midState
= MID_REQUEST_ALLOCATED
;
73 spin_unlock(&GlobalMid_Lock
);
78 DeleteMidQEntry(struct mid_q_entry
*midEntry
)
80 #ifdef CONFIG_CIFS_STATS2
83 spin_lock(&GlobalMid_Lock
);
84 midEntry
->midState
= MID_FREE
;
85 list_del(&midEntry
->qhead
);
86 atomic_dec(&midCount
);
87 spin_unlock(&GlobalMid_Lock
);
88 if (midEntry
->largeBuf
)
89 cifs_buf_release(midEntry
->resp_buf
);
91 cifs_small_buf_release(midEntry
->resp_buf
);
92 #ifdef CONFIG_CIFS_STATS2
94 /* commands taking longer than one second are indications that
95 something is wrong, unless it is quite a slow link or server */
96 if ((now
- midEntry
->when_alloc
) > HZ
) {
97 if ((cifsFYI
& CIFS_TIMER
) &&
98 (midEntry
->command
!= SMB_COM_LOCKING_ANDX
)) {
99 printk(KERN_DEBUG
" CIFS slow rsp: cmd %d mid %d",
100 midEntry
->command
, midEntry
->mid
);
101 printk(" A: 0x%lx S: 0x%lx R: 0x%lx\n",
102 now
- midEntry
->when_alloc
,
103 now
- midEntry
->when_sent
,
104 now
- midEntry
->when_received
);
108 mempool_free(midEntry
, cifs_mid_poolp
);
111 struct oplock_q_entry
*
112 AllocOplockQEntry(struct inode
*pinode
, __u16 fid
, struct cifsTconInfo
*tcon
)
114 struct oplock_q_entry
*temp
;
115 if ((pinode
== NULL
) || (tcon
== NULL
)) {
116 cERROR(1, ("Null parms passed to AllocOplockQEntry"));
119 temp
= (struct oplock_q_entry
*) kmem_cache_alloc(cifs_oplock_cachep
,
124 temp
->pinode
= pinode
;
127 spin_lock(&GlobalMid_Lock
);
128 list_add_tail(&temp
->qhead
, &GlobalOplock_Q
);
129 spin_unlock(&GlobalMid_Lock
);
135 void DeleteOplockQEntry(struct oplock_q_entry
*oplockEntry
)
137 spin_lock(&GlobalMid_Lock
);
138 /* should we check if list empty first? */
139 list_del(&oplockEntry
->qhead
);
140 spin_unlock(&GlobalMid_Lock
);
141 kmem_cache_free(cifs_oplock_cachep
, oplockEntry
);
145 void DeleteTconOplockQEntries(struct cifsTconInfo
*tcon
)
147 struct oplock_q_entry
*temp
;
152 spin_lock(&GlobalMid_Lock
);
153 list_for_each_entry(temp
, &GlobalOplock_Q
, qhead
) {
154 if ((temp
->tcon
) && (temp
->tcon
== tcon
)) {
155 list_del(&temp
->qhead
);
156 kmem_cache_free(cifs_oplock_cachep
, temp
);
159 spin_unlock(&GlobalMid_Lock
);
163 smb_send(struct socket
*ssocket
, struct smb_hdr
*smb_buffer
,
164 unsigned int smb_buf_length
, struct sockaddr
*sin
, bool noblocksnd
)
168 struct msghdr smb_msg
;
170 unsigned len
= smb_buf_length
+ 4;
173 return -ENOTSOCK
; /* BB eventually add reconnect code here */
174 iov
.iov_base
= smb_buffer
;
177 smb_msg
.msg_name
= sin
;
178 smb_msg
.msg_namelen
= sizeof(struct sockaddr
);
179 smb_msg
.msg_control
= NULL
;
180 smb_msg
.msg_controllen
= 0;
182 smb_msg
.msg_flags
= MSG_DONTWAIT
+ MSG_NOSIGNAL
;
184 smb_msg
.msg_flags
= MSG_NOSIGNAL
;
186 /* smb header is converted in header_assemble. bcc and rest of SMB word
187 area, and byte area if necessary, is converted to littleendian in
188 cifssmb.c and RFC1001 len is converted to bigendian in smb_send
189 Flags2 is converted in SendReceive */
191 smb_buffer
->smb_buf_length
= cpu_to_be32(smb_buffer
->smb_buf_length
);
192 cFYI(1, ("Sending smb of length %d", smb_buf_length
));
193 dump_smb(smb_buffer
, len
);
196 rc
= kernel_sendmsg(ssocket
, &smb_msg
, &iov
, 1, len
);
197 if ((rc
== -ENOSPC
) || (rc
== -EAGAIN
)) {
199 /* smaller timeout here than send2 since smaller size */
200 /* Although it may not be required, this also is smaller
204 ("sends on sock %p stuck for 7 seconds",
215 i
= 0; /* reset i after each successful send */
222 cERROR(1, ("Error %d sending data on socket to server", rc
));
227 /* Don't want to modify the buffer as a
228 side effect of this call. */
229 smb_buffer
->smb_buf_length
= smb_buf_length
;
235 smb_send2(struct TCP_Server_Info
*server
, struct kvec
*iov
, int n_vec
,
236 struct sockaddr
*sin
, bool noblocksnd
)
240 struct msghdr smb_msg
;
241 struct smb_hdr
*smb_buffer
= iov
[0].iov_base
;
242 unsigned int len
= iov
[0].iov_len
;
243 unsigned int total_len
;
245 unsigned int smb_buf_length
= smb_buffer
->smb_buf_length
;
246 struct socket
*ssocket
= server
->ssocket
;
249 return -ENOTSOCK
; /* BB eventually add reconnect code here */
251 smb_msg
.msg_name
= sin
;
252 smb_msg
.msg_namelen
= sizeof(struct sockaddr
);
253 smb_msg
.msg_control
= NULL
;
254 smb_msg
.msg_controllen
= 0;
256 smb_msg
.msg_flags
= MSG_DONTWAIT
+ MSG_NOSIGNAL
;
258 smb_msg
.msg_flags
= MSG_NOSIGNAL
;
260 /* smb header is converted in header_assemble. bcc and rest of SMB word
261 area, and byte area if necessary, is converted to littleendian in
262 cifssmb.c and RFC1001 len is converted to bigendian in smb_send
263 Flags2 is converted in SendReceive */
267 for (i
= 0; i
< n_vec
; i
++)
268 total_len
+= iov
[i
].iov_len
;
270 smb_buffer
->smb_buf_length
= cpu_to_be32(smb_buffer
->smb_buf_length
);
271 cFYI(1, ("Sending smb: total_len %d", total_len
));
272 dump_smb(smb_buffer
, len
);
276 rc
= kernel_sendmsg(ssocket
, &smb_msg
, &iov
[first_vec
],
277 n_vec
- first_vec
, total_len
);
278 if ((rc
== -ENOSPC
) || (rc
== -EAGAIN
)) {
282 ("sends on sock %p stuck for 15 seconds",
293 if (rc
== total_len
) {
296 } else if (rc
> total_len
) {
297 cERROR(1, ("sent %d requested %d", rc
, total_len
));
301 /* should never happen, letting socket clear before
302 retrying is our only obvious option here */
303 cERROR(1, ("tcp sent no data"));
308 /* the line below resets i */
309 for (i
= first_vec
; i
< n_vec
; i
++) {
310 if (iov
[i
].iov_len
) {
311 if (rc
> iov
[i
].iov_len
) {
312 rc
-= iov
[i
].iov_len
;
315 iov
[i
].iov_base
+= rc
;
316 iov
[i
].iov_len
-= rc
;
322 i
= 0; /* in case we get ENOSPC on the next send */
325 if ((total_len
> 0) && (total_len
!= smb_buf_length
+ 4)) {
326 cFYI(1, ("partial send (%d remaining), terminating session",
328 /* If we have only sent part of an SMB then the next SMB
329 could be taken as the remainder of this one. We need
330 to kill the socket so the server throws away the partial
332 server
->tcpStatus
= CifsNeedReconnect
;
336 cERROR(1, ("Error %d sending data on socket to server", rc
));
340 /* Don't want to modify the buffer as a
341 side effect of this call. */
342 smb_buffer
->smb_buf_length
= smb_buf_length
;
347 static int wait_for_free_request(struct cifsSesInfo
*ses
, const int long_op
)
349 if (long_op
== CIFS_ASYNC_OP
) {
350 /* oplock breaks must not be held up */
351 atomic_inc(&ses
->server
->inFlight
);
353 spin_lock(&GlobalMid_Lock
);
355 if (atomic_read(&ses
->server
->inFlight
) >=
357 spin_unlock(&GlobalMid_Lock
);
358 #ifdef CONFIG_CIFS_STATS2
359 atomic_inc(&ses
->server
->num_waiters
);
361 wait_event(ses
->server
->request_q
,
362 atomic_read(&ses
->server
->inFlight
)
364 #ifdef CONFIG_CIFS_STATS2
365 atomic_dec(&ses
->server
->num_waiters
);
367 spin_lock(&GlobalMid_Lock
);
369 if (ses
->server
->tcpStatus
== CifsExiting
) {
370 spin_unlock(&GlobalMid_Lock
);
374 /* can not count locking commands against total
375 as they are allowed to block on server */
377 /* update # of requests on the wire to server */
378 if (long_op
!= CIFS_BLOCKING_OP
)
379 atomic_inc(&ses
->server
->inFlight
);
380 spin_unlock(&GlobalMid_Lock
);
388 static int allocate_mid(struct cifsSesInfo
*ses
, struct smb_hdr
*in_buf
,
389 struct mid_q_entry
**ppmidQ
)
391 if (ses
->server
->tcpStatus
== CifsExiting
) {
393 } else if (ses
->server
->tcpStatus
== CifsNeedReconnect
) {
394 cFYI(1, ("tcp session dead - return to caller to retry"));
396 } else if (ses
->status
!= CifsGood
) {
397 /* check if SMB session is bad because we are setting it up */
398 if ((in_buf
->Command
!= SMB_COM_SESSION_SETUP_ANDX
) &&
399 (in_buf
->Command
!= SMB_COM_NEGOTIATE
))
401 /* else ok - we are setting up session */
403 *ppmidQ
= AllocMidQEntry(in_buf
, ses
);
409 static int wait_for_response(struct cifsSesInfo
*ses
,
410 struct mid_q_entry
*midQ
,
411 unsigned long timeout
,
412 unsigned long time_to_wait
)
414 unsigned long curr_timeout
;
417 curr_timeout
= timeout
+ jiffies
;
418 wait_event(ses
->server
->response_q
,
419 (!(midQ
->midState
== MID_REQUEST_SUBMITTED
)) ||
420 time_after(jiffies
, curr_timeout
) ||
421 ((ses
->server
->tcpStatus
!= CifsGood
) &&
422 (ses
->server
->tcpStatus
!= CifsNew
)));
424 if (time_after(jiffies
, curr_timeout
) &&
425 (midQ
->midState
== MID_REQUEST_SUBMITTED
) &&
426 ((ses
->server
->tcpStatus
== CifsGood
) ||
427 (ses
->server
->tcpStatus
== CifsNew
))) {
431 /* We timed out. Is the server still
433 spin_lock(&GlobalMid_Lock
);
434 lrt
= ses
->server
->lstrp
;
435 spin_unlock(&GlobalMid_Lock
);
437 /* Calculate time_to_wait past last receive time.
438 Although we prefer not to time out if the
439 server is still responding - we will time
440 out if the server takes more than 15 (or 45
441 or 180) seconds to respond to this request
442 and has not responded to any request from
443 other threads on the client within 10 seconds */
445 if (time_after(jiffies
, lrt
)) {
446 /* No replies for time_to_wait. */
447 cERROR(1, ("server not responding"));
459 * Send an SMB Request. No response info (other than return code)
460 * needs to be parsed.
462 * flags indicate the type of request buffer and how long to wait
463 * and whether to log NT STATUS code (error) before mapping it to POSIX error
467 SendReceiveNoRsp(const unsigned int xid
, struct cifsSesInfo
*ses
,
468 struct smb_hdr
*in_buf
, int flags
)
474 iov
[0].iov_base
= (char *)in_buf
;
475 iov
[0].iov_len
= in_buf
->smb_buf_length
+ 4;
476 flags
|= CIFS_NO_RESP
;
477 rc
= SendReceive2(xid
, ses
, iov
, 1, &resp_buf_type
, flags
);
478 cFYI(DBG2
, ("SendRcvNoRsp flags %d rc %d", flags
, rc
));
484 SendReceive2(const unsigned int xid
, struct cifsSesInfo
*ses
,
485 struct kvec
*iov
, int n_vec
, int *pRespBufType
/* ret */,
490 unsigned int receive_len
;
491 unsigned long timeout
;
492 struct mid_q_entry
*midQ
;
493 struct smb_hdr
*in_buf
= iov
[0].iov_base
;
495 long_op
= flags
& CIFS_TIMEOUT_MASK
;
497 *pRespBufType
= CIFS_NO_BUFFER
; /* no response buf yet */
499 if ((ses
== NULL
) || (ses
->server
== NULL
)) {
500 cifs_small_buf_release(in_buf
);
501 cERROR(1, ("Null session"));
505 if (ses
->server
->tcpStatus
== CifsExiting
) {
506 cifs_small_buf_release(in_buf
);
510 /* Ensure that we do not send more than 50 overlapping requests
511 to the same server. We may make this configurable later or
514 rc
= wait_for_free_request(ses
, long_op
);
516 cifs_small_buf_release(in_buf
);
520 /* make sure that we sign in the same order that we send on this socket
521 and avoid races inside tcp sendmsg code that could cause corruption
524 down(&ses
->server
->tcpSem
);
526 rc
= allocate_mid(ses
, in_buf
, &midQ
);
528 up(&ses
->server
->tcpSem
);
529 cifs_small_buf_release(in_buf
);
530 /* Update # of requests on wire to server */
531 atomic_dec(&ses
->server
->inFlight
);
532 wake_up(&ses
->server
->request_q
);
535 rc
= cifs_sign_smb2(iov
, n_vec
, ses
->server
, &midQ
->sequence_number
);
537 midQ
->midState
= MID_REQUEST_SUBMITTED
;
538 #ifdef CONFIG_CIFS_STATS2
539 atomic_inc(&ses
->server
->inSend
);
541 rc
= smb_send2(ses
->server
, iov
, n_vec
,
542 (struct sockaddr
*) &(ses
->server
->addr
.sockAddr
),
543 ses
->server
->noblocksnd
);
544 #ifdef CONFIG_CIFS_STATS2
545 atomic_dec(&ses
->server
->inSend
);
546 midQ
->when_sent
= jiffies
;
549 up(&ses
->server
->tcpSem
);
550 cifs_small_buf_release(in_buf
);
555 if (long_op
== CIFS_STD_OP
)
557 else if (long_op
== CIFS_VLONG_OP
) /* e.g. slow writes past EOF */
559 else if (long_op
== CIFS_LONG_OP
)
560 timeout
= 45 * HZ
; /* should be greater than
561 servers oplock break timeout (about 43 seconds) */
562 else if (long_op
== CIFS_ASYNC_OP
)
564 else if (long_op
== CIFS_BLOCKING_OP
)
565 timeout
= 0x7FFFFFFF; /* large, but not so large as to wrap */
567 cERROR(1, ("unknown timeout flag %d", long_op
));
572 /* wait for 15 seconds or until woken up due to response arriving or
573 due to last connection to this server being unmounted */
574 if (signal_pending(current
)) {
575 /* if signal pending do not hold up user for full smb timeout
576 but we still give response a chance to complete */
580 /* No user interrupts in wait - wreaks havoc with performance */
581 wait_for_response(ses
, midQ
, timeout
, 10 * HZ
);
583 spin_lock(&GlobalMid_Lock
);
584 if (midQ
->resp_buf
) {
585 spin_unlock(&GlobalMid_Lock
);
586 receive_len
= midQ
->resp_buf
->smb_buf_length
;
588 cERROR(1, ("No response to cmd %d mid %d",
589 midQ
->command
, midQ
->mid
));
590 if (midQ
->midState
== MID_REQUEST_SUBMITTED
) {
591 if (ses
->server
->tcpStatus
== CifsExiting
)
594 ses
->server
->tcpStatus
= CifsNeedReconnect
;
595 midQ
->midState
= MID_RETRY_NEEDED
;
599 if (rc
!= -EHOSTDOWN
) {
600 if (midQ
->midState
== MID_RETRY_NEEDED
) {
602 cFYI(1, ("marking request for retry"));
607 spin_unlock(&GlobalMid_Lock
);
608 DeleteMidQEntry(midQ
);
609 /* Update # of requests on wire to server */
610 atomic_dec(&ses
->server
->inFlight
);
611 wake_up(&ses
->server
->request_q
);
615 if (receive_len
> CIFSMaxBufSize
+ MAX_CIFS_HDR_SIZE
) {
616 cERROR(1, ("Frame too large received. Length: %d Xid: %d",
619 } else { /* rcvd frame is ok */
620 if (midQ
->resp_buf
&&
621 (midQ
->midState
== MID_RESPONSE_RECEIVED
)) {
623 iov
[0].iov_base
= (char *)midQ
->resp_buf
;
625 *pRespBufType
= CIFS_LARGE_BUFFER
;
627 *pRespBufType
= CIFS_SMALL_BUFFER
;
628 iov
[0].iov_len
= receive_len
+ 4;
630 dump_smb(midQ
->resp_buf
, 80);
631 /* convert the length into a more usable form */
632 if ((receive_len
> 24) &&
633 (ses
->server
->secMode
& (SECMODE_SIGN_REQUIRED
|
634 SECMODE_SIGN_ENABLED
))) {
635 rc
= cifs_verify_signature(midQ
->resp_buf
,
636 &ses
->server
->mac_signing_key
,
637 midQ
->sequence_number
+1);
639 cERROR(1, ("Unexpected SMB signature"));
640 /* BB FIXME add code to kill session */
644 /* BB special case reconnect tid and uid here? */
645 rc
= map_smb_to_linux_error(midQ
->resp_buf
,
646 flags
& CIFS_LOG_ERROR
);
648 /* convert ByteCount if necessary */
649 if (receive_len
>= sizeof(struct smb_hdr
) - 4
650 /* do not count RFC1001 header */ +
651 (2 * midQ
->resp_buf
->WordCount
) + 2 /* bcc */ )
652 BCC(midQ
->resp_buf
) =
653 le16_to_cpu(BCC_LE(midQ
->resp_buf
));
654 if ((flags
& CIFS_NO_RESP
) == 0)
655 midQ
->resp_buf
= NULL
; /* mark it so buf will
660 cFYI(1, ("Bad MID state?"));
665 DeleteMidQEntry(midQ
);
666 atomic_dec(&ses
->server
->inFlight
);
667 wake_up(&ses
->server
->request_q
);
673 SendReceive(const unsigned int xid
, struct cifsSesInfo
*ses
,
674 struct smb_hdr
*in_buf
, struct smb_hdr
*out_buf
,
675 int *pbytes_returned
, const int long_op
)
678 unsigned int receive_len
;
679 unsigned long timeout
;
680 struct mid_q_entry
*midQ
;
683 cERROR(1, ("Null smb session"));
686 if (ses
->server
== NULL
) {
687 cERROR(1, ("Null tcp session"));
691 if (ses
->server
->tcpStatus
== CifsExiting
)
694 /* Ensure that we do not send more than 50 overlapping requests
695 to the same server. We may make this configurable later or
698 rc
= wait_for_free_request(ses
, long_op
);
702 /* make sure that we sign in the same order that we send on this socket
703 and avoid races inside tcp sendmsg code that could cause corruption
706 down(&ses
->server
->tcpSem
);
708 rc
= allocate_mid(ses
, in_buf
, &midQ
);
710 up(&ses
->server
->tcpSem
);
711 /* Update # of requests on wire to server */
712 atomic_dec(&ses
->server
->inFlight
);
713 wake_up(&ses
->server
->request_q
);
717 if (in_buf
->smb_buf_length
> CIFSMaxBufSize
+ MAX_CIFS_HDR_SIZE
- 4) {
718 cERROR(1, ("Illegal length, greater than maximum frame, %d",
719 in_buf
->smb_buf_length
));
720 DeleteMidQEntry(midQ
);
721 up(&ses
->server
->tcpSem
);
722 /* Update # of requests on wire to server */
723 atomic_dec(&ses
->server
->inFlight
);
724 wake_up(&ses
->server
->request_q
);
728 rc
= cifs_sign_smb(in_buf
, ses
->server
, &midQ
->sequence_number
);
730 midQ
->midState
= MID_REQUEST_SUBMITTED
;
731 #ifdef CONFIG_CIFS_STATS2
732 atomic_inc(&ses
->server
->inSend
);
734 rc
= smb_send(ses
->server
->ssocket
, in_buf
, in_buf
->smb_buf_length
,
735 (struct sockaddr
*) &(ses
->server
->addr
.sockAddr
),
736 ses
->server
->noblocksnd
);
737 #ifdef CONFIG_CIFS_STATS2
738 atomic_dec(&ses
->server
->inSend
);
739 midQ
->when_sent
= jiffies
;
741 up(&ses
->server
->tcpSem
);
746 if (long_op
== CIFS_STD_OP
)
748 /* wait for 15 seconds or until woken up due to response arriving or
749 due to last connection to this server being unmounted */
750 else if (long_op
== CIFS_ASYNC_OP
)
752 else if (long_op
== CIFS_VLONG_OP
) /* writes past EOF can be slow */
754 else if (long_op
== CIFS_LONG_OP
)
755 timeout
= 45 * HZ
; /* should be greater than
756 servers oplock break timeout (about 43 seconds) */
757 else if (long_op
== CIFS_BLOCKING_OP
)
758 timeout
= 0x7FFFFFFF; /* large but no so large as to wrap */
760 cERROR(1, ("unknown timeout flag %d", long_op
));
765 if (signal_pending(current
)) {
766 /* if signal pending do not hold up user for full smb timeout
767 but we still give response a chance to complete */
771 /* No user interrupts in wait - wreaks havoc with performance */
772 wait_for_response(ses
, midQ
, timeout
, 10 * HZ
);
774 spin_lock(&GlobalMid_Lock
);
775 if (midQ
->resp_buf
) {
776 spin_unlock(&GlobalMid_Lock
);
777 receive_len
= midQ
->resp_buf
->smb_buf_length
;
779 cERROR(1, ("No response for cmd %d mid %d",
780 midQ
->command
, midQ
->mid
));
781 if (midQ
->midState
== MID_REQUEST_SUBMITTED
) {
782 if (ses
->server
->tcpStatus
== CifsExiting
)
785 ses
->server
->tcpStatus
= CifsNeedReconnect
;
786 midQ
->midState
= MID_RETRY_NEEDED
;
790 if (rc
!= -EHOSTDOWN
) {
791 if (midQ
->midState
== MID_RETRY_NEEDED
) {
793 cFYI(1, ("marking request for retry"));
798 spin_unlock(&GlobalMid_Lock
);
799 DeleteMidQEntry(midQ
);
800 /* Update # of requests on wire to server */
801 atomic_dec(&ses
->server
->inFlight
);
802 wake_up(&ses
->server
->request_q
);
806 if (receive_len
> CIFSMaxBufSize
+ MAX_CIFS_HDR_SIZE
) {
807 cERROR(1, ("Frame too large received. Length: %d Xid: %d",
810 } else { /* rcvd frame is ok */
812 if (midQ
->resp_buf
&& out_buf
813 && (midQ
->midState
== MID_RESPONSE_RECEIVED
)) {
814 out_buf
->smb_buf_length
= receive_len
;
815 memcpy((char *)out_buf
+ 4,
816 (char *)midQ
->resp_buf
+ 4,
819 dump_smb(out_buf
, 92);
820 /* convert the length into a more usable form */
821 if ((receive_len
> 24) &&
822 (ses
->server
->secMode
& (SECMODE_SIGN_REQUIRED
|
823 SECMODE_SIGN_ENABLED
))) {
824 rc
= cifs_verify_signature(out_buf
,
825 &ses
->server
->mac_signing_key
,
826 midQ
->sequence_number
+1);
828 cERROR(1, ("Unexpected SMB signature"));
829 /* BB FIXME add code to kill session */
833 *pbytes_returned
= out_buf
->smb_buf_length
;
835 /* BB special case reconnect tid and uid here? */
836 rc
= map_smb_to_linux_error(out_buf
, 0 /* no log */ );
838 /* convert ByteCount if necessary */
839 if (receive_len
>= sizeof(struct smb_hdr
) - 4
840 /* do not count RFC1001 header */ +
841 (2 * out_buf
->WordCount
) + 2 /* bcc */ )
842 BCC(out_buf
) = le16_to_cpu(BCC_LE(out_buf
));
845 cERROR(1, ("Bad MID state?"));
850 DeleteMidQEntry(midQ
);
851 atomic_dec(&ses
->server
->inFlight
);
852 wake_up(&ses
->server
->request_q
);
857 /* Send an NT_CANCEL SMB to cause the POSIX blocking lock to return. */
860 send_nt_cancel(struct cifsTconInfo
*tcon
, struct smb_hdr
*in_buf
,
861 struct mid_q_entry
*midQ
)
864 struct cifsSesInfo
*ses
= tcon
->ses
;
865 __u16 mid
= in_buf
->Mid
;
867 header_assemble(in_buf
, SMB_COM_NT_CANCEL
, tcon
, 0);
869 down(&ses
->server
->tcpSem
);
870 rc
= cifs_sign_smb(in_buf
, ses
->server
, &midQ
->sequence_number
);
872 up(&ses
->server
->tcpSem
);
875 rc
= smb_send(ses
->server
->ssocket
, in_buf
, in_buf
->smb_buf_length
,
876 (struct sockaddr
*) &(ses
->server
->addr
.sockAddr
),
877 ses
->server
->noblocksnd
);
878 up(&ses
->server
->tcpSem
);
882 /* We send a LOCKINGX_CANCEL_LOCK to cause the Windows
883 blocking lock to return. */
886 send_lock_cancel(const unsigned int xid
, struct cifsTconInfo
*tcon
,
887 struct smb_hdr
*in_buf
,
888 struct smb_hdr
*out_buf
)
891 struct cifsSesInfo
*ses
= tcon
->ses
;
892 LOCK_REQ
*pSMB
= (LOCK_REQ
*)in_buf
;
894 /* We just modify the current in_buf to change
895 the type of lock from LOCKING_ANDX_SHARED_LOCK
896 or LOCKING_ANDX_EXCLUSIVE_LOCK to
897 LOCKING_ANDX_CANCEL_LOCK. */
899 pSMB
->LockType
= LOCKING_ANDX_CANCEL_LOCK
|LOCKING_ANDX_LARGE_FILES
;
901 pSMB
->hdr
.Mid
= GetNextMid(ses
->server
);
903 return SendReceive(xid
, ses
, in_buf
, out_buf
,
904 &bytes_returned
, CIFS_STD_OP
);
908 SendReceiveBlockingLock(const unsigned int xid
, struct cifsTconInfo
*tcon
,
909 struct smb_hdr
*in_buf
, struct smb_hdr
*out_buf
,
910 int *pbytes_returned
)
914 unsigned int receive_len
;
915 struct mid_q_entry
*midQ
;
916 struct cifsSesInfo
*ses
;
918 if (tcon
== NULL
|| tcon
->ses
== NULL
) {
919 cERROR(1, ("Null smb session"));
924 if (ses
->server
== NULL
) {
925 cERROR(1, ("Null tcp session"));
929 if (ses
->server
->tcpStatus
== CifsExiting
)
932 /* Ensure that we do not send more than 50 overlapping requests
933 to the same server. We may make this configurable later or
936 rc
= wait_for_free_request(ses
, CIFS_BLOCKING_OP
);
940 /* make sure that we sign in the same order that we send on this socket
941 and avoid races inside tcp sendmsg code that could cause corruption
944 down(&ses
->server
->tcpSem
);
946 rc
= allocate_mid(ses
, in_buf
, &midQ
);
948 up(&ses
->server
->tcpSem
);
952 if (in_buf
->smb_buf_length
> CIFSMaxBufSize
+ MAX_CIFS_HDR_SIZE
- 4) {
953 up(&ses
->server
->tcpSem
);
954 cERROR(1, ("Illegal length, greater than maximum frame, %d",
955 in_buf
->smb_buf_length
));
956 DeleteMidQEntry(midQ
);
960 rc
= cifs_sign_smb(in_buf
, ses
->server
, &midQ
->sequence_number
);
962 midQ
->midState
= MID_REQUEST_SUBMITTED
;
963 #ifdef CONFIG_CIFS_STATS2
964 atomic_inc(&ses
->server
->inSend
);
966 rc
= smb_send(ses
->server
->ssocket
, in_buf
, in_buf
->smb_buf_length
,
967 (struct sockaddr
*) &(ses
->server
->addr
.sockAddr
),
968 ses
->server
->noblocksnd
);
969 #ifdef CONFIG_CIFS_STATS2
970 atomic_dec(&ses
->server
->inSend
);
971 midQ
->when_sent
= jiffies
;
973 up(&ses
->server
->tcpSem
);
976 DeleteMidQEntry(midQ
);
980 /* Wait for a reply - allow signals to interrupt. */
981 rc
= wait_event_interruptible(ses
->server
->response_q
,
982 (!(midQ
->midState
== MID_REQUEST_SUBMITTED
)) ||
983 ((ses
->server
->tcpStatus
!= CifsGood
) &&
984 (ses
->server
->tcpStatus
!= CifsNew
)));
986 /* Were we interrupted by a signal ? */
987 if ((rc
== -ERESTARTSYS
) &&
988 (midQ
->midState
== MID_REQUEST_SUBMITTED
) &&
989 ((ses
->server
->tcpStatus
== CifsGood
) ||
990 (ses
->server
->tcpStatus
== CifsNew
))) {
992 if (in_buf
->Command
== SMB_COM_TRANSACTION2
) {
993 /* POSIX lock. We send a NT_CANCEL SMB to cause the
994 blocking lock to return. */
996 rc
= send_nt_cancel(tcon
, in_buf
, midQ
);
998 DeleteMidQEntry(midQ
);
1002 /* Windows lock. We send a LOCKINGX_CANCEL_LOCK
1003 to cause the blocking lock to return. */
1005 rc
= send_lock_cancel(xid
, tcon
, in_buf
, out_buf
);
1007 /* If we get -ENOLCK back the lock may have
1008 already been removed. Don't exit in this case. */
1009 if (rc
&& rc
!= -ENOLCK
) {
1010 DeleteMidQEntry(midQ
);
1015 /* Wait 5 seconds for the response. */
1016 if (wait_for_response(ses
, midQ
, 5 * HZ
, 5 * HZ
) == 0) {
1017 /* We got the response - restart system call. */
1022 spin_lock(&GlobalMid_Lock
);
1023 if (midQ
->resp_buf
) {
1024 spin_unlock(&GlobalMid_Lock
);
1025 receive_len
= midQ
->resp_buf
->smb_buf_length
;
1027 cERROR(1, ("No response for cmd %d mid %d",
1028 midQ
->command
, midQ
->mid
));
1029 if (midQ
->midState
== MID_REQUEST_SUBMITTED
) {
1030 if (ses
->server
->tcpStatus
== CifsExiting
)
1033 ses
->server
->tcpStatus
= CifsNeedReconnect
;
1034 midQ
->midState
= MID_RETRY_NEEDED
;
1038 if (rc
!= -EHOSTDOWN
) {
1039 if (midQ
->midState
== MID_RETRY_NEEDED
) {
1041 cFYI(1, ("marking request for retry"));
1046 spin_unlock(&GlobalMid_Lock
);
1047 DeleteMidQEntry(midQ
);
1051 if (receive_len
> CIFSMaxBufSize
+ MAX_CIFS_HDR_SIZE
) {
1052 cERROR(1, ("Frame too large received. Length: %d Xid: %d",
1055 } else { /* rcvd frame is ok */
1057 if (midQ
->resp_buf
&& out_buf
1058 && (midQ
->midState
== MID_RESPONSE_RECEIVED
)) {
1059 out_buf
->smb_buf_length
= receive_len
;
1060 memcpy((char *)out_buf
+ 4,
1061 (char *)midQ
->resp_buf
+ 4,
1064 dump_smb(out_buf
, 92);
1065 /* convert the length into a more usable form */
1066 if ((receive_len
> 24) &&
1067 (ses
->server
->secMode
& (SECMODE_SIGN_REQUIRED
|
1068 SECMODE_SIGN_ENABLED
))) {
1069 rc
= cifs_verify_signature(out_buf
,
1070 &ses
->server
->mac_signing_key
,
1071 midQ
->sequence_number
+1);
1073 cERROR(1, ("Unexpected SMB signature"));
1074 /* BB FIXME add code to kill session */
1078 *pbytes_returned
= out_buf
->smb_buf_length
;
1080 /* BB special case reconnect tid and uid here? */
1081 rc
= map_smb_to_linux_error(out_buf
, 0 /* no log */ );
1083 /* convert ByteCount if necessary */
1084 if (receive_len
>= sizeof(struct smb_hdr
) - 4
1085 /* do not count RFC1001 header */ +
1086 (2 * out_buf
->WordCount
) + 2 /* bcc */ )
1087 BCC(out_buf
) = le16_to_cpu(BCC_LE(out_buf
));
1090 cERROR(1, ("Bad MID state?"));
1093 DeleteMidQEntry(midQ
);
1094 if (rstart
&& rc
== -EACCES
)
1095 return -ERESTARTSYS
;