blob: 801726b11e1e9140ab6e65ec272e55feac09fc7c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/transport.c
3 *
Steve Frenchad7a2922008-02-07 23:25:02 +00004 * Copyright (C) International Business Machines Corp., 2002,2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Steve French (sfrench@us.ibm.com)
Steve French14a441a2b2006-07-16 04:32:51 +00006 * Jeremy Allison (jra@samba.org) 2006.
Steve French79a58d12007-07-06 22:44:50 +00007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * 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.
12 *
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.
17 *
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
Steve French79a58d12007-07-06 22:44:50 +000020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 */
22
23#include <linux/fs.h>
24#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/wait.h>
27#include <linux/net.h>
28#include <linux/delay.h>
29#include <asm/uaccess.h>
30#include <asm/processor.h>
31#include <linux/mempool.h>
32#include "cifspdu.h"
33#include "cifsglob.h"
34#include "cifsproto.h"
35#include "cifs_debug.h"
Steve French50c2f752007-07-13 00:33:32 +000036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037extern mempool_t *cifs_mid_poolp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39static struct mid_q_entry *
Jeff Layton24b9b062008-12-01 07:09:34 -050040AllocMidQEntry(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 struct mid_q_entry *temp;
43
Jeff Layton24b9b062008-12-01 07:09:34 -050044 if (server == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +000045 cERROR(1, "Null TCP session in AllocMidQEntry");
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 return NULL;
47 }
Steve French50c2f752007-07-13 00:33:32 +000048
Pekka Enberg232087c2008-09-15 13:22:54 +030049 temp = mempool_alloc(cifs_mid_poolp, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 if (temp == NULL)
51 return temp;
52 else {
Steve French26f57362007-08-30 22:09:15 +000053 memset(temp, 0, sizeof(struct mid_q_entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 temp->mid = smb_buffer->Mid; /* always LE */
55 temp->pid = current->pid;
56 temp->command = smb_buffer->Command;
Joe Perchesb6b38f72010-04-21 03:50:45 +000057 cFYI(1, "For smb_command %d", temp->command);
Steve French1047abc2005-10-11 19:58:06 -070058 /* do_gettimeofday(&temp->when_sent);*/ /* easier to use jiffies */
59 /* when mid allocated can be before when sent */
60 temp->when_alloc = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 temp->tsk = current;
62 }
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 atomic_inc(&midCount);
65 temp->midState = MID_REQUEST_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 return temp;
67}
68
69static void
70DeleteMidQEntry(struct mid_q_entry *midEntry)
71{
Steve French1047abc2005-10-11 19:58:06 -070072#ifdef CONFIG_CIFS_STATS2
73 unsigned long now;
74#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 midEntry->midState = MID_FREE;
Jeff Layton80975312011-01-11 07:24:02 -050076 atomic_dec(&midCount);
Steve French79a58d12007-07-06 22:44:50 +000077 if (midEntry->largeBuf)
Steve Frenchb8643e12005-04-28 22:41:07 -070078 cifs_buf_release(midEntry->resp_buf);
79 else
80 cifs_small_buf_release(midEntry->resp_buf);
Steve French1047abc2005-10-11 19:58:06 -070081#ifdef CONFIG_CIFS_STATS2
82 now = jiffies;
83 /* commands taking longer than one second are indications that
84 something is wrong, unless it is quite a slow link or server */
Steve French79a58d12007-07-06 22:44:50 +000085 if ((now - midEntry->when_alloc) > HZ) {
86 if ((cifsFYI & CIFS_TIMER) &&
Steve French1047abc2005-10-11 19:58:06 -070087 (midEntry->command != SMB_COM_LOCKING_ANDX)) {
88 printk(KERN_DEBUG " CIFS slow rsp: cmd %d mid %d",
89 midEntry->command, midEntry->mid);
90 printk(" A: 0x%lx S: 0x%lx R: 0x%lx\n",
91 now - midEntry->when_alloc,
92 now - midEntry->when_sent,
93 now - midEntry->when_received);
94 }
95 }
96#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 mempool_free(midEntry, cifs_mid_poolp);
98}
99
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500100static void
101delete_mid(struct mid_q_entry *mid)
102{
103 spin_lock(&GlobalMid_Lock);
104 list_del(&mid->qhead);
105 spin_unlock(&GlobalMid_Lock);
106
107 DeleteMidQEntry(mid);
108}
109
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500110static int
Jeff Layton0496e022008-12-30 12:39:16 -0500111smb_sendv(struct TCP_Server_Info *server, struct kvec *iov, int n_vec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 int rc = 0;
114 int i = 0;
115 struct msghdr smb_msg;
Steve French3e844692005-10-03 13:37:24 -0700116 struct smb_hdr *smb_buffer = iov[0].iov_base;
117 unsigned int len = iov[0].iov_len;
118 unsigned int total_len;
119 int first_vec = 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000120 unsigned int smb_buf_length = smb_buffer->smb_buf_length;
Steve Frenchedf1ae42008-10-29 00:47:57 +0000121 struct socket *ssocket = server->ssocket;
Steve French50c2f752007-07-13 00:33:32 +0000122
Steve French79a58d12007-07-06 22:44:50 +0000123 if (ssocket == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 return -ENOTSOCK; /* BB eventually add reconnect code here */
Steve French3e844692005-10-03 13:37:24 -0700125
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300126 smb_msg.msg_name = (struct sockaddr *) &server->dstaddr;
Steve French26f57362007-08-30 22:09:15 +0000127 smb_msg.msg_namelen = sizeof(struct sockaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 smb_msg.msg_control = NULL;
129 smb_msg.msg_controllen = 0;
Jeff Layton0496e022008-12-30 12:39:16 -0500130 if (server->noblocksnd)
Steve Frenchedf1ae42008-10-29 00:47:57 +0000131 smb_msg.msg_flags = MSG_DONTWAIT + MSG_NOSIGNAL;
132 else
133 smb_msg.msg_flags = MSG_NOSIGNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 /* smb header is converted in header_assemble. bcc and rest of SMB word
Steve French79a58d12007-07-06 22:44:50 +0000136 area, and byte area if necessary, is converted to littleendian in
137 cifssmb.c and RFC1001 len is converted to bigendian in smb_send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 Flags2 is converted in SendReceive */
139
Steve French3e844692005-10-03 13:37:24 -0700140
141 total_len = 0;
142 for (i = 0; i < n_vec; i++)
143 total_len += iov[i].iov_len;
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 smb_buffer->smb_buf_length = cpu_to_be32(smb_buffer->smb_buf_length);
Joe Perchesb6b38f72010-04-21 03:50:45 +0000146 cFYI(1, "Sending smb: total_len %d", total_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 dump_smb(smb_buffer, len);
148
Shirish Pargaonkar17680352008-07-29 21:26:13 +0000149 i = 0;
Steve French3e844692005-10-03 13:37:24 -0700150 while (total_len) {
151 rc = kernel_sendmsg(ssocket, &smb_msg, &iov[first_vec],
152 n_vec - first_vec, total_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if ((rc == -ENOSPC) || (rc == -EAGAIN)) {
154 i++;
Steve Frenchda505c32009-01-19 03:49:35 +0000155 /* if blocking send we try 3 times, since each can block
156 for 5 seconds. For nonblocking we have to try more
157 but wait increasing amounts of time allowing time for
158 socket to clear. The overall time we wait in either
159 case to send on the socket is about 15 seconds.
160 Similarly we wait for 15 seconds for
161 a response from the server in SendReceive[2]
162 for the server to send a response back for
163 most types of requests (except SMB Write
164 past end of file which can be slow, and
165 blocking lock operations). NFS waits slightly longer
166 than CIFS, but this can make it take longer for
167 nonresponsive servers to be detected and 15 seconds
168 is more than enough time for modern networks to
169 send a packet. In most cases if we fail to send
170 after the retries we will kill the socket and
171 reconnect which may clear the network problem.
172 */
173 if ((i >= 14) || (!server->noblocksnd && (i > 2))) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000174 cERROR(1, "sends on sock %p stuck for 15 seconds",
175 ssocket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 rc = -EAGAIN;
177 break;
178 }
Steve French68058e72005-10-10 10:34:22 -0700179 msleep(1 << i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 continue;
181 }
Steve French79a58d12007-07-06 22:44:50 +0000182 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 break;
Steve French3e844692005-10-03 13:37:24 -0700184
Steve French61de8002008-10-30 20:15:22 +0000185 if (rc == total_len) {
186 total_len = 0;
187 break;
188 } else if (rc > total_len) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000189 cERROR(1, "sent %d requested %d", rc, total_len);
Steve French3e844692005-10-03 13:37:24 -0700190 break;
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500191 }
Steve French79a58d12007-07-06 22:44:50 +0000192 if (rc == 0) {
Steve French3e844692005-10-03 13:37:24 -0700193 /* should never happen, letting socket clear before
194 retrying is our only obvious option here */
Joe Perchesb6b38f72010-04-21 03:50:45 +0000195 cERROR(1, "tcp sent no data");
Steve French3e844692005-10-03 13:37:24 -0700196 msleep(500);
197 continue;
198 }
199 total_len -= rc;
Steve French68058e72005-10-10 10:34:22 -0700200 /* the line below resets i */
Steve French3e844692005-10-03 13:37:24 -0700201 for (i = first_vec; i < n_vec; i++) {
202 if (iov[i].iov_len) {
203 if (rc > iov[i].iov_len) {
204 rc -= iov[i].iov_len;
205 iov[i].iov_len = 0;
206 } else {
207 iov[i].iov_base += rc;
208 iov[i].iov_len -= rc;
209 first_vec = i;
210 break;
211 }
212 }
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500213 }
Steve French5e1253b2005-10-10 14:06:37 -0700214 i = 0; /* in case we get ENOSPC on the next send */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216
Steve Frenchedf1ae42008-10-29 00:47:57 +0000217 if ((total_len > 0) && (total_len != smb_buf_length + 4)) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000218 cFYI(1, "partial send (%d remaining), terminating session",
219 total_len);
Steve Frenchedf1ae42008-10-29 00:47:57 +0000220 /* If we have only sent part of an SMB then the next SMB
221 could be taken as the remainder of this one. We need
222 to kill the socket so the server throws away the partial
223 SMB */
224 server->tcpStatus = CifsNeedReconnect;
225 }
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (rc < 0) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000228 cERROR(1, "Error %d sending data on socket to server", rc);
Steve French3e844692005-10-03 13:37:24 -0700229 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000232 /* Don't want to modify the buffer as a
233 side effect of this call. */
234 smb_buffer->smb_buf_length = smb_buf_length;
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return rc;
237}
238
Jeff Layton0496e022008-12-30 12:39:16 -0500239int
240smb_send(struct TCP_Server_Info *server, struct smb_hdr *smb_buffer,
241 unsigned int smb_buf_length)
242{
243 struct kvec iov;
244
245 iov.iov_base = smb_buffer;
246 iov.iov_len = smb_buf_length + 4;
247
248 return smb_sendv(server, &iov, 1);
249}
250
Jeff Laytonc5797a92011-01-11 07:24:01 -0500251static int wait_for_free_request(struct TCP_Server_Info *server,
252 const int long_op)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000253{
Steve French133672e2007-11-13 22:41:37 +0000254 if (long_op == CIFS_ASYNC_OP) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000255 /* oplock breaks must not be held up */
Jeff Laytonc5797a92011-01-11 07:24:01 -0500256 atomic_inc(&server->inFlight);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000257 return 0;
258 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000259
Volker Lendecke27a97a62008-12-08 20:59:39 +0000260 spin_lock(&GlobalMid_Lock);
261 while (1) {
Jeff Laytonc5797a92011-01-11 07:24:01 -0500262 if (atomic_read(&server->inFlight) >= cifs_max_pending) {
Volker Lendecke27a97a62008-12-08 20:59:39 +0000263 spin_unlock(&GlobalMid_Lock);
264#ifdef CONFIG_CIFS_STATS2
Jeff Laytonc5797a92011-01-11 07:24:01 -0500265 atomic_inc(&server->num_waiters);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000266#endif
Jeff Laytonc5797a92011-01-11 07:24:01 -0500267 wait_event(server->request_q,
268 atomic_read(&server->inFlight)
Volker Lendecke27a97a62008-12-08 20:59:39 +0000269 < cifs_max_pending);
270#ifdef CONFIG_CIFS_STATS2
Jeff Laytonc5797a92011-01-11 07:24:01 -0500271 atomic_dec(&server->num_waiters);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000272#endif
273 spin_lock(&GlobalMid_Lock);
274 } else {
Jeff Laytonc5797a92011-01-11 07:24:01 -0500275 if (server->tcpStatus == CifsExiting) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000276 spin_unlock(&GlobalMid_Lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000277 return -ENOENT;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000278 }
Volker Lendecke27a97a62008-12-08 20:59:39 +0000279
280 /* can not count locking commands against total
281 as they are allowed to block on server */
282
283 /* update # of requests on the wire to server */
284 if (long_op != CIFS_BLOCKING_OP)
Jeff Laytonc5797a92011-01-11 07:24:01 -0500285 atomic_inc(&server->inFlight);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000286 spin_unlock(&GlobalMid_Lock);
287 break;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000288 }
289 }
290 return 0;
291}
292
293static int allocate_mid(struct cifsSesInfo *ses, struct smb_hdr *in_buf,
294 struct mid_q_entry **ppmidQ)
295{
296 if (ses->server->tcpStatus == CifsExiting) {
297 return -ENOENT;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100298 }
299
300 if (ses->server->tcpStatus == CifsNeedReconnect) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000301 cFYI(1, "tcp session dead - return to caller to retry");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000302 return -EAGAIN;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100303 }
304
305 if (ses->status != CifsGood) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000306 /* check if SMB session is bad because we are setting it up */
Steve French79a58d12007-07-06 22:44:50 +0000307 if ((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) &&
Steve Frenchad7a2922008-02-07 23:25:02 +0000308 (in_buf->Command != SMB_COM_NEGOTIATE))
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000309 return -EAGAIN;
Steve Frenchad7a2922008-02-07 23:25:02 +0000310 /* else ok - we are setting up session */
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000311 }
Jeff Layton24b9b062008-12-01 07:09:34 -0500312 *ppmidQ = AllocMidQEntry(in_buf, ses->server);
Steve French26f57362007-08-30 22:09:15 +0000313 if (*ppmidQ == NULL)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000314 return -ENOMEM;
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500315 spin_lock(&GlobalMid_Lock);
316 list_add_tail(&(*ppmidQ)->qhead, &ses->server->pending_mid_q);
317 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000318 return 0;
319}
320
Steve French79a58d12007-07-06 22:44:50 +0000321static int wait_for_response(struct cifsSesInfo *ses,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000322 struct mid_q_entry *midQ,
323 unsigned long timeout,
324 unsigned long time_to_wait)
325{
326 unsigned long curr_timeout;
327
328 for (;;) {
329 curr_timeout = timeout + jiffies;
Jeff Layton85705522008-12-05 20:41:21 -0500330 wait_event_timeout(ses->server->response_q,
331 midQ->midState != MID_REQUEST_SUBMITTED, timeout);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000332
333 if (time_after(jiffies, curr_timeout) &&
334 (midQ->midState == MID_REQUEST_SUBMITTED) &&
335 ((ses->server->tcpStatus == CifsGood) ||
336 (ses->server->tcpStatus == CifsNew))) {
337
338 unsigned long lrt;
339
340 /* We timed out. Is the server still
341 sending replies ? */
342 spin_lock(&GlobalMid_Lock);
343 lrt = ses->server->lstrp;
344 spin_unlock(&GlobalMid_Lock);
345
346 /* Calculate time_to_wait past last receive time.
Steve French79a58d12007-07-06 22:44:50 +0000347 Although we prefer not to time out if the
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000348 server is still responding - we will time
Steve French79a58d12007-07-06 22:44:50 +0000349 out if the server takes more than 15 (or 45
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000350 or 180) seconds to respond to this request
Steve French79a58d12007-07-06 22:44:50 +0000351 and has not responded to any request from
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000352 other threads on the client within 10 seconds */
353 lrt += time_to_wait;
354 if (time_after(jiffies, lrt)) {
355 /* No replies for time_to_wait. */
Joe Perchesb6b38f72010-04-21 03:50:45 +0000356 cERROR(1, "server not responding");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000357 return -1;
358 }
359 } else {
360 return 0;
361 }
362 }
363}
364
Steve French133672e2007-11-13 22:41:37 +0000365
366/*
367 *
368 * Send an SMB Request. No response info (other than return code)
369 * needs to be parsed.
370 *
371 * flags indicate the type of request buffer and how long to wait
372 * and whether to log NT STATUS code (error) before mapping it to POSIX error
373 *
374 */
375int
376SendReceiveNoRsp(const unsigned int xid, struct cifsSesInfo *ses,
377 struct smb_hdr *in_buf, int flags)
378{
379 int rc;
380 struct kvec iov[1];
381 int resp_buf_type;
382
383 iov[0].iov_base = (char *)in_buf;
384 iov[0].iov_len = in_buf->smb_buf_length + 4;
385 flags |= CIFS_NO_RESP;
386 rc = SendReceive2(xid, ses, iov, 1, &resp_buf_type, flags);
Joe Perchesb6b38f72010-04-21 03:50:45 +0000387 cFYI(DBG2, "SendRcvNoRsp flags %d rc %d", flags, rc);
Steve French90c81e02008-02-12 20:32:36 +0000388
Steve French133672e2007-11-13 22:41:37 +0000389 return rc;
390}
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392int
Steve French79a58d12007-07-06 22:44:50 +0000393SendReceive2(const unsigned int xid, struct cifsSesInfo *ses,
394 struct kvec *iov, int n_vec, int *pRespBufType /* ret */,
Steve French133672e2007-11-13 22:41:37 +0000395 const int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397 int rc = 0;
Steve French133672e2007-11-13 22:41:37 +0000398 int long_op;
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500399 unsigned int receive_len;
400 unsigned long timeout;
401 struct mid_q_entry *midQ;
Steve French3e844692005-10-03 13:37:24 -0700402 struct smb_hdr *in_buf = iov[0].iov_base;
Steve French50c2f752007-07-13 00:33:32 +0000403
Steve French133672e2007-11-13 22:41:37 +0000404 long_op = flags & CIFS_TIMEOUT_MASK;
405
Steve Frenchec637e32005-12-12 20:53:18 -0800406 *pRespBufType = CIFS_NO_BUFFER; /* no response buf yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Steve French4b8f9302006-02-26 16:41:18 +0000408 if ((ses == NULL) || (ses->server == NULL)) {
409 cifs_small_buf_release(in_buf);
Joe Perchesb6b38f72010-04-21 03:50:45 +0000410 cERROR(1, "Null session");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return -EIO;
412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Steve French79a58d12007-07-06 22:44:50 +0000414 if (ses->server->tcpStatus == CifsExiting) {
Steve French4b8f9302006-02-26 16:41:18 +0000415 cifs_small_buf_release(in_buf);
Steve French31ca3bc2005-04-28 22:41:11 -0700416 return -ENOENT;
Steve French4b8f9302006-02-26 16:41:18 +0000417 }
Steve French31ca3bc2005-04-28 22:41:11 -0700418
Steve French79a58d12007-07-06 22:44:50 +0000419 /* Ensure that we do not send more than 50 overlapping requests
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 to the same server. We may make this configurable later or
421 use ses->maxReq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Jeff Laytonc5797a92011-01-11 07:24:01 -0500423 rc = wait_for_free_request(ses->server, long_op);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000424 if (rc) {
425 cifs_small_buf_release(in_buf);
426 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000428
Steve French79a58d12007-07-06 22:44:50 +0000429 /* make sure that we sign in the same order that we send on this socket
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 and avoid races inside tcp sendmsg code that could cause corruption
431 of smb data */
432
Jeff Layton72ca5452008-12-01 07:09:36 -0500433 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000435 rc = allocate_mid(ses, in_buf, &midQ);
436 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500437 mutex_unlock(&ses->server->srv_mutex);
Steve French4b8f9302006-02-26 16:41:18 +0000438 cifs_small_buf_release(in_buf);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000439 /* Update # of requests on wire to server */
Steve French79a58d12007-07-06 22:44:50 +0000440 atomic_dec(&ses->server->inFlight);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000441 wake_up(&ses->server->request_q);
442 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
Steve French79a58d12007-07-06 22:44:50 +0000444 rc = cifs_sign_smb2(iov, n_vec, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +0100445 if (rc) {
446 mutex_unlock(&ses->server->srv_mutex);
447 cifs_small_buf_release(in_buf);
448 goto out;
449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 midQ->midState = MID_REQUEST_SUBMITTED;
Steve French131afd0b2005-10-07 09:51:05 -0700452#ifdef CONFIG_CIFS_STATS2
453 atomic_inc(&ses->server->inSend);
454#endif
Jeff Layton0496e022008-12-30 12:39:16 -0500455 rc = smb_sendv(ses->server, iov, n_vec);
Steve French131afd0b2005-10-07 09:51:05 -0700456#ifdef CONFIG_CIFS_STATS2
457 atomic_dec(&ses->server->inSend);
Steve French1047abc2005-10-11 19:58:06 -0700458 midQ->when_sent = jiffies;
Steve French131afd0b2005-10-07 09:51:05 -0700459#endif
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000460
Jeff Layton72ca5452008-12-01 07:09:36 -0500461 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000462 cifs_small_buf_release(in_buf);
463
Steve French79a58d12007-07-06 22:44:50 +0000464 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000465 goto out;
Steve French4b8f9302006-02-26 16:41:18 +0000466
Steve French133672e2007-11-13 22:41:37 +0000467 if (long_op == CIFS_STD_OP)
468 timeout = 15 * HZ;
469 else if (long_op == CIFS_VLONG_OP) /* e.g. slow writes past EOF */
Steve French37c0eb42005-10-05 14:50:29 -0700470 timeout = 180 * HZ;
Steve French133672e2007-11-13 22:41:37 +0000471 else if (long_op == CIFS_LONG_OP)
Steve French79a58d12007-07-06 22:44:50 +0000472 timeout = 45 * HZ; /* should be greater than
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500473 servers oplock break timeout (about 43 seconds) */
Steve French133672e2007-11-13 22:41:37 +0000474 else if (long_op == CIFS_ASYNC_OP)
475 goto out;
476 else if (long_op == CIFS_BLOCKING_OP)
477 timeout = 0x7FFFFFFF; /* large, but not so large as to wrap */
478 else {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000479 cERROR(1, "unknown timeout flag %d", long_op);
Steve French133672e2007-11-13 22:41:37 +0000480 rc = -EIO;
481 goto out;
482 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000483
Steve French79a58d12007-07-06 22:44:50 +0000484 /* wait for 15 seconds or until woken up due to response arriving or
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500485 due to last connection to this server being unmounted */
486 if (signal_pending(current)) {
487 /* if signal pending do not hold up user for full smb timeout
Steve French8a236262007-03-06 00:31:00 +0000488 but we still give response a chance to complete */
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500489 timeout = 2 * HZ;
Steve French79a58d12007-07-06 22:44:50 +0000490 }
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500491
492 /* No user interrupts in wait - wreaks havoc with performance */
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000493 wait_for_response(ses, midQ, timeout, 10 * HZ);
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500494
495 spin_lock(&GlobalMid_Lock);
Volker Lendecke8e4f2e82008-12-06 16:22:15 +0100496
497 if (midQ->resp_buf == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000498 cERROR(1, "No response to cmd %d mid %d",
499 midQ->command, midQ->mid);
Steve French79a58d12007-07-06 22:44:50 +0000500 if (midQ->midState == MID_REQUEST_SUBMITTED) {
501 if (ses->server->tcpStatus == CifsExiting)
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500502 rc = -EHOSTDOWN;
503 else {
504 ses->server->tcpStatus = CifsNeedReconnect;
505 midQ->midState = MID_RETRY_NEEDED;
506 }
507 }
508
509 if (rc != -EHOSTDOWN) {
Steve French79a58d12007-07-06 22:44:50 +0000510 if (midQ->midState == MID_RETRY_NEEDED) {
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500511 rc = -EAGAIN;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000512 cFYI(1, "marking request for retry");
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500513 } else {
514 rc = -EIO;
515 }
516 }
517 spin_unlock(&GlobalMid_Lock);
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500518 delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000519 /* Update # of requests on wire to server */
Steve French79a58d12007-07-06 22:44:50 +0000520 atomic_dec(&ses->server->inFlight);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000521 wake_up(&ses->server->request_q);
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500522 return rc;
523 }
Steve French50c2f752007-07-13 00:33:32 +0000524
Volker Lendecke8e4f2e82008-12-06 16:22:15 +0100525 spin_unlock(&GlobalMid_Lock);
526 receive_len = midQ->resp_buf->smb_buf_length;
527
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500528 if (receive_len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000529 cERROR(1, "Frame too large received. Length: %d Xid: %d",
530 receive_len, xid);
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500531 rc = -EIO;
Steve French2b2bdfb2008-12-11 17:26:54 +0000532 goto out;
533 }
Steve French84afc292005-12-02 13:32:45 -0800534
Steve French2b2bdfb2008-12-11 17:26:54 +0000535 /* rcvd frame is ok */
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500536
Steve French2b2bdfb2008-12-11 17:26:54 +0000537 if (midQ->resp_buf &&
538 (midQ->midState == MID_RESPONSE_RECEIVED)) {
539
540 iov[0].iov_base = (char *)midQ->resp_buf;
541 if (midQ->largeBuf)
542 *pRespBufType = CIFS_LARGE_BUFFER;
543 else
544 *pRespBufType = CIFS_SMALL_BUFFER;
545 iov[0].iov_len = receive_len + 4;
546
547 dump_smb(midQ->resp_buf, 80);
548 /* convert the length into a more usable form */
549 if ((receive_len > 24) &&
550 (ses->server->secMode & (SECMODE_SIGN_REQUIRED |
551 SECMODE_SIGN_ENABLED))) {
552 rc = cifs_verify_signature(midQ->resp_buf,
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500553 ses->server,
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500554 midQ->sequence_number+1);
Steve French2b2bdfb2008-12-11 17:26:54 +0000555 if (rc) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000556 cERROR(1, "Unexpected SMB signature");
Steve French2b2bdfb2008-12-11 17:26:54 +0000557 /* BB FIXME add code to kill session */
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500558 }
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500559 }
Steve French2b2bdfb2008-12-11 17:26:54 +0000560
561 /* BB special case reconnect tid and uid here? */
562 rc = map_smb_to_linux_error(midQ->resp_buf,
563 flags & CIFS_LOG_ERROR);
564
565 /* convert ByteCount if necessary */
566 if (receive_len >= sizeof(struct smb_hdr) - 4
567 /* do not count RFC1001 header */ +
568 (2 * midQ->resp_buf->WordCount) + 2 /* bcc */ )
569 BCC(midQ->resp_buf) =
570 le16_to_cpu(BCC_LE(midQ->resp_buf));
571 if ((flags & CIFS_NO_RESP) == 0)
572 midQ->resp_buf = NULL; /* mark it so buf will
573 not be freed by
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500574 delete_mid */
Steve French2b2bdfb2008-12-11 17:26:54 +0000575 } else {
576 rc = -EIO;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000577 cFYI(1, "Bad MID state?");
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500578 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000579
580out:
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500581 delete_mid(midQ);
Steve French79a58d12007-07-06 22:44:50 +0000582 atomic_dec(&ses->server->inFlight);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000583 wake_up(&ses->server->request_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 return rc;
586}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588int
589SendReceive(const unsigned int xid, struct cifsSesInfo *ses,
590 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
591 int *pbytes_returned, const int long_op)
592{
593 int rc = 0;
594 unsigned int receive_len;
595 unsigned long timeout;
596 struct mid_q_entry *midQ;
597
598 if (ses == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000599 cERROR(1, "Null smb session");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return -EIO;
601 }
Steve French79a58d12007-07-06 22:44:50 +0000602 if (ses->server == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000603 cERROR(1, "Null tcp session");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return -EIO;
605 }
606
Steve French79a58d12007-07-06 22:44:50 +0000607 if (ses->server->tcpStatus == CifsExiting)
Steve French31ca3bc2005-04-28 22:41:11 -0700608 return -ENOENT;
609
Steve French79a58d12007-07-06 22:44:50 +0000610 /* Ensure that we do not send more than 50 overlapping requests
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 to the same server. We may make this configurable later or
612 use ses->maxReq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Volker Lendecke6d9c6d52008-12-08 20:50:24 +0000614 if (in_buf->smb_buf_length > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000615 cERROR(1, "Illegal length, greater than maximum frame, %d",
616 in_buf->smb_buf_length);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +0000617 return -EIO;
618 }
619
Jeff Laytonc5797a92011-01-11 07:24:01 -0500620 rc = wait_for_free_request(ses->server, long_op);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000621 if (rc)
622 return rc;
623
Steve French79a58d12007-07-06 22:44:50 +0000624 /* make sure that we sign in the same order that we send on this socket
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 and avoid races inside tcp sendmsg code that could cause corruption
626 of smb data */
627
Jeff Layton72ca5452008-12-01 07:09:36 -0500628 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000630 rc = allocate_mid(ses, in_buf, &midQ);
631 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500632 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000633 /* Update # of requests on wire to server */
Steve French79a58d12007-07-06 22:44:50 +0000634 atomic_dec(&ses->server->inFlight);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000635 wake_up(&ses->server->request_q);
636 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638
Steve Frenchad009ac2005-04-28 22:41:05 -0700639 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +0100640 if (rc) {
641 mutex_unlock(&ses->server->srv_mutex);
642 goto out;
643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 midQ->midState = MID_REQUEST_SUBMITTED;
Steve French131afd0b2005-10-07 09:51:05 -0700646#ifdef CONFIG_CIFS_STATS2
647 atomic_inc(&ses->server->inSend);
648#endif
Jeff Layton0496e022008-12-30 12:39:16 -0500649 rc = smb_send(ses->server, in_buf, in_buf->smb_buf_length);
Steve French131afd0b2005-10-07 09:51:05 -0700650#ifdef CONFIG_CIFS_STATS2
651 atomic_dec(&ses->server->inSend);
Steve French1047abc2005-10-11 19:58:06 -0700652 midQ->when_sent = jiffies;
Steve French131afd0b2005-10-07 09:51:05 -0700653#endif
Jeff Layton72ca5452008-12-01 07:09:36 -0500654 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000655
Steve French79a58d12007-07-06 22:44:50 +0000656 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000657 goto out;
658
Steve French133672e2007-11-13 22:41:37 +0000659 if (long_op == CIFS_STD_OP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 timeout = 15 * HZ;
Steve French79a58d12007-07-06 22:44:50 +0000661 /* wait for 15 seconds or until woken up due to response arriving or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 due to last connection to this server being unmounted */
Steve French133672e2007-11-13 22:41:37 +0000663 else if (long_op == CIFS_ASYNC_OP)
664 goto out;
665 else if (long_op == CIFS_VLONG_OP) /* writes past EOF can be slow */
666 timeout = 180 * HZ;
667 else if (long_op == CIFS_LONG_OP)
668 timeout = 45 * HZ; /* should be greater than
669 servers oplock break timeout (about 43 seconds) */
670 else if (long_op == CIFS_BLOCKING_OP)
671 timeout = 0x7FFFFFFF; /* large but no so large as to wrap */
672 else {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000673 cERROR(1, "unknown timeout flag %d", long_op);
Steve French133672e2007-11-13 22:41:37 +0000674 rc = -EIO;
675 goto out;
676 }
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (signal_pending(current)) {
679 /* if signal pending do not hold up user for full smb timeout
Steve French8a236262007-03-06 00:31:00 +0000680 but we still give response a chance to complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 timeout = 2 * HZ;
Steve French79a58d12007-07-06 22:44:50 +0000682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 /* No user interrupts in wait - wreaks havoc with performance */
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000685 wait_for_response(ses, midQ, timeout, 10 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 spin_lock(&GlobalMid_Lock);
Volker Lendecke8e4f2e82008-12-06 16:22:15 +0100688 if (midQ->resp_buf == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000689 cERROR(1, "No response for cmd %d mid %d",
690 midQ->command, midQ->mid);
Steve French79a58d12007-07-06 22:44:50 +0000691 if (midQ->midState == MID_REQUEST_SUBMITTED) {
692 if (ses->server->tcpStatus == CifsExiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 rc = -EHOSTDOWN;
694 else {
695 ses->server->tcpStatus = CifsNeedReconnect;
696 midQ->midState = MID_RETRY_NEEDED;
697 }
698 }
699
700 if (rc != -EHOSTDOWN) {
Steve French79a58d12007-07-06 22:44:50 +0000701 if (midQ->midState == MID_RETRY_NEEDED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 rc = -EAGAIN;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000703 cFYI(1, "marking request for retry");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 } else {
705 rc = -EIO;
706 }
707 }
708 spin_unlock(&GlobalMid_Lock);
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500709 delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000710 /* Update # of requests on wire to server */
Steve French79a58d12007-07-06 22:44:50 +0000711 atomic_dec(&ses->server->inFlight);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000712 wake_up(&ses->server->request_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return rc;
714 }
Steve French50c2f752007-07-13 00:33:32 +0000715
Volker Lendecke8e4f2e82008-12-06 16:22:15 +0100716 spin_unlock(&GlobalMid_Lock);
717 receive_len = midQ->resp_buf->smb_buf_length;
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (receive_len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000720 cERROR(1, "Frame too large received. Length: %d Xid: %d",
721 receive_len, xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 rc = -EIO;
Steve French2b2bdfb2008-12-11 17:26:54 +0000723 goto out;
724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Steve French2b2bdfb2008-12-11 17:26:54 +0000726 /* rcvd frame is ok */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Steve French2b2bdfb2008-12-11 17:26:54 +0000728 if (midQ->resp_buf && out_buf
729 && (midQ->midState == MID_RESPONSE_RECEIVED)) {
730 out_buf->smb_buf_length = receive_len;
731 memcpy((char *)out_buf + 4,
732 (char *)midQ->resp_buf + 4,
733 receive_len);
734
735 dump_smb(out_buf, 92);
736 /* convert the length into a more usable form */
737 if ((receive_len > 24) &&
738 (ses->server->secMode & (SECMODE_SIGN_REQUIRED |
739 SECMODE_SIGN_ENABLED))) {
740 rc = cifs_verify_signature(out_buf,
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500741 ses->server,
Steve Frenchad009ac2005-04-28 22:41:05 -0700742 midQ->sequence_number+1);
Steve French2b2bdfb2008-12-11 17:26:54 +0000743 if (rc) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000744 cERROR(1, "Unexpected SMB signature");
Steve French2b2bdfb2008-12-11 17:26:54 +0000745 /* BB FIXME add code to kill session */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
Steve French2b2bdfb2008-12-11 17:26:54 +0000748
749 *pbytes_returned = out_buf->smb_buf_length;
750
751 /* BB special case reconnect tid and uid here? */
752 rc = map_smb_to_linux_error(out_buf, 0 /* no log */ );
753
754 /* convert ByteCount if necessary */
755 if (receive_len >= sizeof(struct smb_hdr) - 4
756 /* do not count RFC1001 header */ +
757 (2 * out_buf->WordCount) + 2 /* bcc */ )
758 BCC(out_buf) = le16_to_cpu(BCC_LE(out_buf));
759 } else {
760 rc = -EIO;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000761 cERROR(1, "Bad MID state?");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000764out:
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500765 delete_mid(midQ);
Steve French79a58d12007-07-06 22:44:50 +0000766 atomic_dec(&ses->server->inFlight);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000767 wake_up(&ses->server->request_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 return rc;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000770}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000772/* Send an NT_CANCEL SMB to cause the POSIX blocking lock to return. */
773
774static int
775send_nt_cancel(struct cifsTconInfo *tcon, struct smb_hdr *in_buf,
776 struct mid_q_entry *midQ)
777{
778 int rc = 0;
779 struct cifsSesInfo *ses = tcon->ses;
780 __u16 mid = in_buf->Mid;
781
782 header_assemble(in_buf, SMB_COM_NT_CANCEL, tcon, 0);
783 in_buf->Mid = mid;
Jeff Layton72ca5452008-12-01 07:09:36 -0500784 mutex_lock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000785 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
786 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500787 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000788 return rc;
789 }
Jeff Layton0496e022008-12-30 12:39:16 -0500790 rc = smb_send(ses->server, in_buf, in_buf->smb_buf_length);
Jeff Layton72ca5452008-12-01 07:09:36 -0500791 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000792 return rc;
793}
794
795/* We send a LOCKINGX_CANCEL_LOCK to cause the Windows
796 blocking lock to return. */
797
798static int
799send_lock_cancel(const unsigned int xid, struct cifsTconInfo *tcon,
800 struct smb_hdr *in_buf,
801 struct smb_hdr *out_buf)
802{
803 int bytes_returned;
804 struct cifsSesInfo *ses = tcon->ses;
805 LOCK_REQ *pSMB = (LOCK_REQ *)in_buf;
806
807 /* We just modify the current in_buf to change
808 the type of lock from LOCKING_ANDX_SHARED_LOCK
809 or LOCKING_ANDX_EXCLUSIVE_LOCK to
810 LOCKING_ANDX_CANCEL_LOCK. */
811
812 pSMB->LockType = LOCKING_ANDX_CANCEL_LOCK|LOCKING_ANDX_LARGE_FILES;
813 pSMB->Timeout = 0;
814 pSMB->hdr.Mid = GetNextMid(ses->server);
815
816 return SendReceive(xid, ses, in_buf, out_buf,
Steve French133672e2007-11-13 22:41:37 +0000817 &bytes_returned, CIFS_STD_OP);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000818}
819
820int
821SendReceiveBlockingLock(const unsigned int xid, struct cifsTconInfo *tcon,
822 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
823 int *pbytes_returned)
824{
825 int rc = 0;
826 int rstart = 0;
827 unsigned int receive_len;
828 struct mid_q_entry *midQ;
829 struct cifsSesInfo *ses;
830
831 if (tcon == NULL || tcon->ses == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000832 cERROR(1, "Null smb session");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000833 return -EIO;
834 }
835 ses = tcon->ses;
836
Steve French79a58d12007-07-06 22:44:50 +0000837 if (ses->server == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000838 cERROR(1, "Null tcp session");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000839 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
841
Steve French79a58d12007-07-06 22:44:50 +0000842 if (ses->server->tcpStatus == CifsExiting)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000843 return -ENOENT;
844
Steve French79a58d12007-07-06 22:44:50 +0000845 /* Ensure that we do not send more than 50 overlapping requests
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000846 to the same server. We may make this configurable later or
847 use ses->maxReq */
848
Volker Lendecke6d9c6d52008-12-08 20:50:24 +0000849 if (in_buf->smb_buf_length > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000850 cERROR(1, "Illegal length, greater than maximum frame, %d",
851 in_buf->smb_buf_length);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +0000852 return -EIO;
853 }
854
Jeff Laytonc5797a92011-01-11 07:24:01 -0500855 rc = wait_for_free_request(ses->server, CIFS_BLOCKING_OP);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000856 if (rc)
857 return rc;
858
Steve French79a58d12007-07-06 22:44:50 +0000859 /* make sure that we sign in the same order that we send on this socket
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000860 and avoid races inside tcp sendmsg code that could cause corruption
861 of smb data */
862
Jeff Layton72ca5452008-12-01 07:09:36 -0500863 mutex_lock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000864
865 rc = allocate_mid(ses, in_buf, &midQ);
866 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500867 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000868 return rc;
869 }
870
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000871 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +0100872 if (rc) {
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500873 delete_mid(midQ);
Volker Lendecke829049c2008-12-06 16:00:53 +0100874 mutex_unlock(&ses->server->srv_mutex);
875 return rc;
876 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000877
878 midQ->midState = MID_REQUEST_SUBMITTED;
879#ifdef CONFIG_CIFS_STATS2
880 atomic_inc(&ses->server->inSend);
881#endif
Jeff Layton0496e022008-12-30 12:39:16 -0500882 rc = smb_send(ses->server, in_buf, in_buf->smb_buf_length);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000883#ifdef CONFIG_CIFS_STATS2
884 atomic_dec(&ses->server->inSend);
885 midQ->when_sent = jiffies;
886#endif
Jeff Layton72ca5452008-12-01 07:09:36 -0500887 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000888
Steve French79a58d12007-07-06 22:44:50 +0000889 if (rc < 0) {
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500890 delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000891 return rc;
892 }
893
894 /* Wait for a reply - allow signals to interrupt. */
895 rc = wait_event_interruptible(ses->server->response_q,
Steve French79a58d12007-07-06 22:44:50 +0000896 (!(midQ->midState == MID_REQUEST_SUBMITTED)) ||
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000897 ((ses->server->tcpStatus != CifsGood) &&
898 (ses->server->tcpStatus != CifsNew)));
899
900 /* Were we interrupted by a signal ? */
901 if ((rc == -ERESTARTSYS) &&
902 (midQ->midState == MID_REQUEST_SUBMITTED) &&
903 ((ses->server->tcpStatus == CifsGood) ||
904 (ses->server->tcpStatus == CifsNew))) {
905
906 if (in_buf->Command == SMB_COM_TRANSACTION2) {
907 /* POSIX lock. We send a NT_CANCEL SMB to cause the
908 blocking lock to return. */
909
910 rc = send_nt_cancel(tcon, in_buf, midQ);
911 if (rc) {
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500912 delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000913 return rc;
914 }
915 } else {
916 /* Windows lock. We send a LOCKINGX_CANCEL_LOCK
917 to cause the blocking lock to return. */
918
919 rc = send_lock_cancel(xid, tcon, in_buf, out_buf);
920
921 /* If we get -ENOLCK back the lock may have
922 already been removed. Don't exit in this case. */
923 if (rc && rc != -ENOLCK) {
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500924 delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000925 return rc;
926 }
927 }
928
929 /* Wait 5 seconds for the response. */
Steve French79a58d12007-07-06 22:44:50 +0000930 if (wait_for_response(ses, midQ, 5 * HZ, 5 * HZ) == 0) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000931 /* We got the response - restart system call. */
932 rstart = 1;
933 }
934 }
935
936 spin_lock(&GlobalMid_Lock);
937 if (midQ->resp_buf) {
938 spin_unlock(&GlobalMid_Lock);
939 receive_len = midQ->resp_buf->smb_buf_length;
940 } else {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000941 cERROR(1, "No response for cmd %d mid %d",
942 midQ->command, midQ->mid);
Steve French79a58d12007-07-06 22:44:50 +0000943 if (midQ->midState == MID_REQUEST_SUBMITTED) {
944 if (ses->server->tcpStatus == CifsExiting)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000945 rc = -EHOSTDOWN;
946 else {
947 ses->server->tcpStatus = CifsNeedReconnect;
948 midQ->midState = MID_RETRY_NEEDED;
949 }
950 }
951
952 if (rc != -EHOSTDOWN) {
Steve French79a58d12007-07-06 22:44:50 +0000953 if (midQ->midState == MID_RETRY_NEEDED) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000954 rc = -EAGAIN;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000955 cFYI(1, "marking request for retry");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000956 } else {
957 rc = -EIO;
958 }
959 }
960 spin_unlock(&GlobalMid_Lock);
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500961 delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000962 return rc;
963 }
Steve French50c2f752007-07-13 00:33:32 +0000964
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000965 if (receive_len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000966 cERROR(1, "Frame too large received. Length: %d Xid: %d",
967 receive_len, xid);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000968 rc = -EIO;
Volker Lendecke17c8bfe2008-12-06 16:38:19 +0100969 goto out;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000970 }
Volker Lendecke17c8bfe2008-12-06 16:38:19 +0100971
972 /* rcvd frame is ok */
973
Volker Lendeckeac6a3ef2008-12-06 16:40:40 +0100974 if ((out_buf == NULL) || (midQ->midState != MID_RESPONSE_RECEIVED)) {
Volker Lendecke17c8bfe2008-12-06 16:38:19 +0100975 rc = -EIO;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000976 cERROR(1, "Bad MID state?");
Volker Lendecke698e96a2008-12-06 16:39:31 +0100977 goto out;
Volker Lendecke17c8bfe2008-12-06 16:38:19 +0100978 }
979
Volker Lendecke698e96a2008-12-06 16:39:31 +0100980 out_buf->smb_buf_length = receive_len;
981 memcpy((char *)out_buf + 4,
982 (char *)midQ->resp_buf + 4,
983 receive_len);
984
985 dump_smb(out_buf, 92);
986 /* convert the length into a more usable form */
987 if ((receive_len > 24) &&
988 (ses->server->secMode & (SECMODE_SIGN_REQUIRED |
989 SECMODE_SIGN_ENABLED))) {
990 rc = cifs_verify_signature(out_buf,
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500991 ses->server,
Volker Lendecke698e96a2008-12-06 16:39:31 +0100992 midQ->sequence_number+1);
993 if (rc) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000994 cERROR(1, "Unexpected SMB signature");
Volker Lendecke698e96a2008-12-06 16:39:31 +0100995 /* BB FIXME add code to kill session */
996 }
997 }
998
999 *pbytes_returned = out_buf->smb_buf_length;
1000
1001 /* BB special case reconnect tid and uid here? */
1002 rc = map_smb_to_linux_error(out_buf, 0 /* no log */ );
1003
1004 /* convert ByteCount if necessary */
1005 if (receive_len >= sizeof(struct smb_hdr) - 4
1006 /* do not count RFC1001 header */ +
1007 (2 * out_buf->WordCount) + 2 /* bcc */ )
1008 BCC(out_buf) = le16_to_cpu(BCC_LE(out_buf));
1009
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001010out:
Jeff Laytonddc8cf82011-01-11 07:24:02 -05001011 delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001012 if (rstart && rc == -EACCES)
1013 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return rc;
1015}