blob: 0ad3e2d116a6b0fb8238601bcb654b871ecb9845 [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>
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>
31#include "cifspdu.h"
32#include "cifsglob.h"
33#include "cifsproto.h"
34#include "cifs_debug.h"
Steve French50c2f752007-07-13 00:33:32 +000035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036extern mempool_t *cifs_mid_poolp;
Christoph Lametere18b8902006-12-06 20:33:20 -080037extern struct kmem_cache *cifs_oplock_cachep;
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) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 cERROR(1, ("Null TCP session in AllocMidQEntry"));
46 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;
57 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
64 spin_lock(&GlobalMid_Lock);
Jeff Layton24b9b062008-12-01 07:09:34 -050065 list_add_tail(&temp->qhead, &server->pending_mid_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 atomic_inc(&midCount);
67 temp->midState = MID_REQUEST_ALLOCATED;
68 spin_unlock(&GlobalMid_Lock);
69 return temp;
70}
71
72static void
73DeleteMidQEntry(struct mid_q_entry *midEntry)
74{
Steve French1047abc2005-10-11 19:58:06 -070075#ifdef CONFIG_CIFS_STATS2
76 unsigned long now;
77#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 spin_lock(&GlobalMid_Lock);
79 midEntry->midState = MID_FREE;
80 list_del(&midEntry->qhead);
81 atomic_dec(&midCount);
82 spin_unlock(&GlobalMid_Lock);
Steve French79a58d12007-07-06 22:44:50 +000083 if (midEntry->largeBuf)
Steve Frenchb8643e12005-04-28 22:41:07 -070084 cifs_buf_release(midEntry->resp_buf);
85 else
86 cifs_small_buf_release(midEntry->resp_buf);
Steve French1047abc2005-10-11 19:58:06 -070087#ifdef CONFIG_CIFS_STATS2
88 now = jiffies;
89 /* commands taking longer than one second are indications that
90 something is wrong, unless it is quite a slow link or server */
Steve French79a58d12007-07-06 22:44:50 +000091 if ((now - midEntry->when_alloc) > HZ) {
92 if ((cifsFYI & CIFS_TIMER) &&
Steve French1047abc2005-10-11 19:58:06 -070093 (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);
100 }
101 }
102#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 mempool_free(midEntry, cifs_mid_poolp);
104}
105
106struct oplock_q_entry *
Steve French79a58d12007-07-06 22:44:50 +0000107AllocOplockQEntry(struct inode *pinode, __u16 fid, struct cifsTconInfo *tcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
109 struct oplock_q_entry *temp;
Steve French79a58d12007-07-06 22:44:50 +0000110 if ((pinode == NULL) || (tcon == NULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 cERROR(1, ("Null parms passed to AllocOplockQEntry"));
112 return NULL;
113 }
114 temp = (struct oplock_q_entry *) kmem_cache_alloc(cifs_oplock_cachep,
Christoph Lametere94b1762006-12-06 20:33:17 -0800115 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 if (temp == NULL)
117 return temp;
118 else {
119 temp->pinode = pinode;
120 temp->tcon = tcon;
121 temp->netfid = fid;
122 spin_lock(&GlobalMid_Lock);
123 list_add_tail(&temp->qhead, &GlobalOplock_Q);
124 spin_unlock(&GlobalMid_Lock);
125 }
126 return temp;
127
128}
129
Steve French79a58d12007-07-06 22:44:50 +0000130void DeleteOplockQEntry(struct oplock_q_entry *oplockEntry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Steve French79a58d12007-07-06 22:44:50 +0000132 spin_lock(&GlobalMid_Lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 /* 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);
137}
138
Steve French5d941ca2008-04-15 18:40:48 +0000139
140void DeleteTconOplockQEntries(struct cifsTconInfo *tcon)
141{
142 struct oplock_q_entry *temp;
143
144 if (tcon == NULL)
145 return;
146
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);
152 }
153 }
154 spin_unlock(&GlobalMid_Lock);
155}
156
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500157static int
Jeff Layton0496e022008-12-30 12:39:16 -0500158smb_sendv(struct TCP_Server_Info *server, struct kvec *iov, int n_vec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 int rc = 0;
161 int i = 0;
162 struct msghdr smb_msg;
Steve French3e844692005-10-03 13:37:24 -0700163 struct smb_hdr *smb_buffer = iov[0].iov_base;
164 unsigned int len = iov[0].iov_len;
165 unsigned int total_len;
166 int first_vec = 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000167 unsigned int smb_buf_length = smb_buffer->smb_buf_length;
Steve Frenchedf1ae42008-10-29 00:47:57 +0000168 struct socket *ssocket = server->ssocket;
Steve French50c2f752007-07-13 00:33:32 +0000169
Steve French79a58d12007-07-06 22:44:50 +0000170 if (ssocket == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return -ENOTSOCK; /* BB eventually add reconnect code here */
Steve French3e844692005-10-03 13:37:24 -0700172
Jeff Layton0496e022008-12-30 12:39:16 -0500173 smb_msg.msg_name = (struct sockaddr *) &server->addr.sockAddr;
Steve French26f57362007-08-30 22:09:15 +0000174 smb_msg.msg_namelen = sizeof(struct sockaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 smb_msg.msg_control = NULL;
176 smb_msg.msg_controllen = 0;
Jeff Layton0496e022008-12-30 12:39:16 -0500177 if (server->noblocksnd)
Steve Frenchedf1ae42008-10-29 00:47:57 +0000178 smb_msg.msg_flags = MSG_DONTWAIT + MSG_NOSIGNAL;
179 else
180 smb_msg.msg_flags = MSG_NOSIGNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 /* smb header is converted in header_assemble. bcc and rest of SMB word
Steve French79a58d12007-07-06 22:44:50 +0000183 area, and byte area if necessary, is converted to littleendian in
184 cifssmb.c and RFC1001 len is converted to bigendian in smb_send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 Flags2 is converted in SendReceive */
186
Steve French3e844692005-10-03 13:37:24 -0700187
188 total_len = 0;
189 for (i = 0; i < n_vec; i++)
190 total_len += iov[i].iov_len;
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 smb_buffer->smb_buf_length = cpu_to_be32(smb_buffer->smb_buf_length);
Steve French3e844692005-10-03 13:37:24 -0700193 cFYI(1, ("Sending smb: total_len %d", total_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 dump_smb(smb_buffer, len);
195
Shirish Pargaonkar17680352008-07-29 21:26:13 +0000196 i = 0;
Steve French3e844692005-10-03 13:37:24 -0700197 while (total_len) {
198 rc = kernel_sendmsg(ssocket, &smb_msg, &iov[first_vec],
199 n_vec - first_vec, total_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 if ((rc == -ENOSPC) || (rc == -EAGAIN)) {
201 i++;
Steve Frenchda505c32009-01-19 03:49:35 +0000202 /* 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.
219 */
220 if ((i >= 14) || (!server->noblocksnd && (i > 2))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 cERROR(1,
Steve French68058e72005-10-10 10:34:22 -0700222 ("sends on sock %p stuck for 15 seconds",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 ssocket));
224 rc = -EAGAIN;
225 break;
226 }
Steve French68058e72005-10-10 10:34:22 -0700227 msleep(1 << i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 continue;
229 }
Steve French79a58d12007-07-06 22:44:50 +0000230 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 break;
Steve French3e844692005-10-03 13:37:24 -0700232
Steve French61de8002008-10-30 20:15:22 +0000233 if (rc == total_len) {
234 total_len = 0;
235 break;
236 } else if (rc > total_len) {
237 cERROR(1, ("sent %d requested %d", rc, total_len));
Steve French3e844692005-10-03 13:37:24 -0700238 break;
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500239 }
Steve French79a58d12007-07-06 22:44:50 +0000240 if (rc == 0) {
Steve French3e844692005-10-03 13:37:24 -0700241 /* should never happen, letting socket clear before
242 retrying is our only obvious option here */
Steve French79a58d12007-07-06 22:44:50 +0000243 cERROR(1, ("tcp sent no data"));
Steve French3e844692005-10-03 13:37:24 -0700244 msleep(500);
245 continue;
246 }
247 total_len -= rc;
Steve French68058e72005-10-10 10:34:22 -0700248 /* the line below resets i */
Steve French3e844692005-10-03 13:37:24 -0700249 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;
253 iov[i].iov_len = 0;
254 } else {
255 iov[i].iov_base += rc;
256 iov[i].iov_len -= rc;
257 first_vec = i;
258 break;
259 }
260 }
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500261 }
Steve French5e1253b2005-10-10 14:06:37 -0700262 i = 0; /* in case we get ENOSPC on the next send */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
264
Steve Frenchedf1ae42008-10-29 00:47:57 +0000265 if ((total_len > 0) && (total_len != smb_buf_length + 4)) {
266 cFYI(1, ("partial send (%d remaining), terminating session",
267 total_len));
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
271 SMB */
272 server->tcpStatus = CifsNeedReconnect;
273 }
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (rc < 0) {
Steve French79a58d12007-07-06 22:44:50 +0000276 cERROR(1, ("Error %d sending data on socket to server", rc));
Steve French3e844692005-10-03 13:37:24 -0700277 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000280 /* Don't want to modify the buffer as a
281 side effect of this call. */
282 smb_buffer->smb_buf_length = smb_buf_length;
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return rc;
285}
286
Jeff Layton0496e022008-12-30 12:39:16 -0500287int
288smb_send(struct TCP_Server_Info *server, struct smb_hdr *smb_buffer,
289 unsigned int smb_buf_length)
290{
291 struct kvec iov;
292
293 iov.iov_base = smb_buffer;
294 iov.iov_len = smb_buf_length + 4;
295
296 return smb_sendv(server, &iov, 1);
297}
298
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000299static int wait_for_free_request(struct cifsSesInfo *ses, const int long_op)
300{
Steve French133672e2007-11-13 22:41:37 +0000301 if (long_op == CIFS_ASYNC_OP) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000302 /* oplock breaks must not be held up */
303 atomic_inc(&ses->server->inFlight);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000304 return 0;
305 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000306
Volker Lendecke27a97a62008-12-08 20:59:39 +0000307 spin_lock(&GlobalMid_Lock);
308 while (1) {
309 if (atomic_read(&ses->server->inFlight) >=
310 cifs_max_pending){
311 spin_unlock(&GlobalMid_Lock);
312#ifdef CONFIG_CIFS_STATS2
313 atomic_inc(&ses->server->num_waiters);
314#endif
315 wait_event(ses->server->request_q,
316 atomic_read(&ses->server->inFlight)
317 < cifs_max_pending);
318#ifdef CONFIG_CIFS_STATS2
319 atomic_dec(&ses->server->num_waiters);
320#endif
321 spin_lock(&GlobalMid_Lock);
322 } else {
323 if (ses->server->tcpStatus == CifsExiting) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000324 spin_unlock(&GlobalMid_Lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000325 return -ENOENT;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000326 }
Volker Lendecke27a97a62008-12-08 20:59:39 +0000327
328 /* can not count locking commands against total
329 as they are allowed to block on server */
330
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);
335 break;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000336 }
337 }
338 return 0;
339}
340
341static int allocate_mid(struct cifsSesInfo *ses, struct smb_hdr *in_buf,
342 struct mid_q_entry **ppmidQ)
343{
344 if (ses->server->tcpStatus == CifsExiting) {
345 return -ENOENT;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100346 }
347
348 if (ses->server->tcpStatus == CifsNeedReconnect) {
Steve French79a58d12007-07-06 22:44:50 +0000349 cFYI(1, ("tcp session dead - return to caller to retry"));
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000350 return -EAGAIN;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100351 }
352
353 if (ses->status != CifsGood) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000354 /* check if SMB session is bad because we are setting it up */
Steve French79a58d12007-07-06 22:44:50 +0000355 if ((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) &&
Steve Frenchad7a2922008-02-07 23:25:02 +0000356 (in_buf->Command != SMB_COM_NEGOTIATE))
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000357 return -EAGAIN;
Steve Frenchad7a2922008-02-07 23:25:02 +0000358 /* else ok - we are setting up session */
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000359 }
Jeff Layton24b9b062008-12-01 07:09:34 -0500360 *ppmidQ = AllocMidQEntry(in_buf, ses->server);
Steve French26f57362007-08-30 22:09:15 +0000361 if (*ppmidQ == NULL)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000362 return -ENOMEM;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000363 return 0;
364}
365
Steve French79a58d12007-07-06 22:44:50 +0000366static int wait_for_response(struct cifsSesInfo *ses,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000367 struct mid_q_entry *midQ,
368 unsigned long timeout,
369 unsigned long time_to_wait)
370{
371 unsigned long curr_timeout;
372
373 for (;;) {
374 curr_timeout = timeout + jiffies;
Jeff Layton85705522008-12-05 20:41:21 -0500375 wait_event_timeout(ses->server->response_q,
376 midQ->midState != MID_REQUEST_SUBMITTED, timeout);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000377
378 if (time_after(jiffies, curr_timeout) &&
379 (midQ->midState == MID_REQUEST_SUBMITTED) &&
380 ((ses->server->tcpStatus == CifsGood) ||
381 (ses->server->tcpStatus == CifsNew))) {
382
383 unsigned long lrt;
384
385 /* We timed out. Is the server still
386 sending replies ? */
387 spin_lock(&GlobalMid_Lock);
388 lrt = ses->server->lstrp;
389 spin_unlock(&GlobalMid_Lock);
390
391 /* Calculate time_to_wait past last receive time.
Steve French79a58d12007-07-06 22:44:50 +0000392 Although we prefer not to time out if the
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000393 server is still responding - we will time
Steve French79a58d12007-07-06 22:44:50 +0000394 out if the server takes more than 15 (or 45
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000395 or 180) seconds to respond to this request
Steve French79a58d12007-07-06 22:44:50 +0000396 and has not responded to any request from
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000397 other threads on the client within 10 seconds */
398 lrt += time_to_wait;
399 if (time_after(jiffies, lrt)) {
400 /* No replies for time_to_wait. */
Steve French79a58d12007-07-06 22:44:50 +0000401 cERROR(1, ("server not responding"));
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000402 return -1;
403 }
404 } else {
405 return 0;
406 }
407 }
408}
409
Steve French133672e2007-11-13 22:41:37 +0000410
411/*
412 *
413 * Send an SMB Request. No response info (other than return code)
414 * needs to be parsed.
415 *
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
418 *
419 */
420int
421SendReceiveNoRsp(const unsigned int xid, struct cifsSesInfo *ses,
422 struct smb_hdr *in_buf, int flags)
423{
424 int rc;
425 struct kvec iov[1];
426 int resp_buf_type;
427
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);
Steve French90c81e02008-02-12 20:32:36 +0000432 cFYI(DBG2, ("SendRcvNoRsp flags %d rc %d", flags, rc));
433
Steve French133672e2007-11-13 22:41:37 +0000434 return rc;
435}
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437int
Steve French79a58d12007-07-06 22:44:50 +0000438SendReceive2(const unsigned int xid, struct cifsSesInfo *ses,
439 struct kvec *iov, int n_vec, int *pRespBufType /* ret */,
Steve French133672e2007-11-13 22:41:37 +0000440 const int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 int rc = 0;
Steve French133672e2007-11-13 22:41:37 +0000443 int long_op;
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500444 unsigned int receive_len;
445 unsigned long timeout;
446 struct mid_q_entry *midQ;
Steve French3e844692005-10-03 13:37:24 -0700447 struct smb_hdr *in_buf = iov[0].iov_base;
Steve French50c2f752007-07-13 00:33:32 +0000448
Steve French133672e2007-11-13 22:41:37 +0000449 long_op = flags & CIFS_TIMEOUT_MASK;
450
Steve Frenchec637e32005-12-12 20:53:18 -0800451 *pRespBufType = CIFS_NO_BUFFER; /* no response buf yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Steve French4b8f9302006-02-26 16:41:18 +0000453 if ((ses == NULL) || (ses->server == NULL)) {
454 cifs_small_buf_release(in_buf);
Steve French79a58d12007-07-06 22:44:50 +0000455 cERROR(1, ("Null session"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return -EIO;
457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Steve French79a58d12007-07-06 22:44:50 +0000459 if (ses->server->tcpStatus == CifsExiting) {
Steve French4b8f9302006-02-26 16:41:18 +0000460 cifs_small_buf_release(in_buf);
Steve French31ca3bc2005-04-28 22:41:11 -0700461 return -ENOENT;
Steve French4b8f9302006-02-26 16:41:18 +0000462 }
Steve French31ca3bc2005-04-28 22:41:11 -0700463
Steve French79a58d12007-07-06 22:44:50 +0000464 /* Ensure that we do not send more than 50 overlapping requests
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 to the same server. We may make this configurable later or
466 use ses->maxReq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000468 rc = wait_for_free_request(ses, long_op);
469 if (rc) {
470 cifs_small_buf_release(in_buf);
471 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000473
Steve French79a58d12007-07-06 22:44:50 +0000474 /* make sure that we sign in the same order that we send on this socket
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 and avoid races inside tcp sendmsg code that could cause corruption
476 of smb data */
477
Jeff Layton72ca5452008-12-01 07:09:36 -0500478 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000480 rc = allocate_mid(ses, in_buf, &midQ);
481 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500482 mutex_unlock(&ses->server->srv_mutex);
Steve French4b8f9302006-02-26 16:41:18 +0000483 cifs_small_buf_release(in_buf);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000484 /* Update # of requests on wire to server */
Steve French79a58d12007-07-06 22:44:50 +0000485 atomic_dec(&ses->server->inFlight);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000486 wake_up(&ses->server->request_q);
487 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
Steve French79a58d12007-07-06 22:44:50 +0000489 rc = cifs_sign_smb2(iov, n_vec, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +0100490 if (rc) {
491 mutex_unlock(&ses->server->srv_mutex);
492 cifs_small_buf_release(in_buf);
493 goto out;
494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 midQ->midState = MID_REQUEST_SUBMITTED;
Steve French131afd0b2005-10-07 09:51:05 -0700497#ifdef CONFIG_CIFS_STATS2
498 atomic_inc(&ses->server->inSend);
499#endif
Jeff Layton0496e022008-12-30 12:39:16 -0500500 rc = smb_sendv(ses->server, iov, n_vec);
Steve French131afd0b2005-10-07 09:51:05 -0700501#ifdef CONFIG_CIFS_STATS2
502 atomic_dec(&ses->server->inSend);
Steve French1047abc2005-10-11 19:58:06 -0700503 midQ->when_sent = jiffies;
Steve French131afd0b2005-10-07 09:51:05 -0700504#endif
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000505
Jeff Layton72ca5452008-12-01 07:09:36 -0500506 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000507 cifs_small_buf_release(in_buf);
508
Steve French79a58d12007-07-06 22:44:50 +0000509 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000510 goto out;
Steve French4b8f9302006-02-26 16:41:18 +0000511
Steve French133672e2007-11-13 22:41:37 +0000512 if (long_op == CIFS_STD_OP)
513 timeout = 15 * HZ;
514 else if (long_op == CIFS_VLONG_OP) /* e.g. slow writes past EOF */
Steve French37c0eb42005-10-05 14:50:29 -0700515 timeout = 180 * HZ;
Steve French133672e2007-11-13 22:41:37 +0000516 else if (long_op == CIFS_LONG_OP)
Steve French79a58d12007-07-06 22:44:50 +0000517 timeout = 45 * HZ; /* should be greater than
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500518 servers oplock break timeout (about 43 seconds) */
Steve French133672e2007-11-13 22:41:37 +0000519 else if (long_op == CIFS_ASYNC_OP)
520 goto out;
521 else if (long_op == CIFS_BLOCKING_OP)
522 timeout = 0x7FFFFFFF; /* large, but not so large as to wrap */
523 else {
524 cERROR(1, ("unknown timeout flag %d", long_op));
525 rc = -EIO;
526 goto out;
527 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000528
Steve French79a58d12007-07-06 22:44:50 +0000529 /* wait for 15 seconds or until woken up due to response arriving or
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500530 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
Steve French8a236262007-03-06 00:31:00 +0000533 but we still give response a chance to complete */
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500534 timeout = 2 * HZ;
Steve French79a58d12007-07-06 22:44:50 +0000535 }
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500536
537 /* No user interrupts in wait - wreaks havoc with performance */
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000538 wait_for_response(ses, midQ, timeout, 10 * HZ);
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500539
540 spin_lock(&GlobalMid_Lock);
Volker Lendecke8e4f2e82008-12-06 16:22:15 +0100541
542 if (midQ->resp_buf == NULL) {
Steve French79a58d12007-07-06 22:44:50 +0000543 cERROR(1, ("No response to cmd %d mid %d",
Steve French37c0eb42005-10-05 14:50:29 -0700544 midQ->command, midQ->mid));
Steve French79a58d12007-07-06 22:44:50 +0000545 if (midQ->midState == MID_REQUEST_SUBMITTED) {
546 if (ses->server->tcpStatus == CifsExiting)
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500547 rc = -EHOSTDOWN;
548 else {
549 ses->server->tcpStatus = CifsNeedReconnect;
550 midQ->midState = MID_RETRY_NEEDED;
551 }
552 }
553
554 if (rc != -EHOSTDOWN) {
Steve French79a58d12007-07-06 22:44:50 +0000555 if (midQ->midState == MID_RETRY_NEEDED) {
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500556 rc = -EAGAIN;
Steve French79a58d12007-07-06 22:44:50 +0000557 cFYI(1, ("marking request for retry"));
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500558 } else {
559 rc = -EIO;
560 }
561 }
562 spin_unlock(&GlobalMid_Lock);
563 DeleteMidQEntry(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000564 /* Update # of requests on wire to server */
Steve French79a58d12007-07-06 22:44:50 +0000565 atomic_dec(&ses->server->inFlight);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000566 wake_up(&ses->server->request_q);
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500567 return rc;
568 }
Steve French50c2f752007-07-13 00:33:32 +0000569
Volker Lendecke8e4f2e82008-12-06 16:22:15 +0100570 spin_unlock(&GlobalMid_Lock);
571 receive_len = midQ->resp_buf->smb_buf_length;
572
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500573 if (receive_len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE) {
574 cERROR(1, ("Frame too large received. Length: %d Xid: %d",
575 receive_len, xid));
576 rc = -EIO;
Steve French2b2bdfb2008-12-11 17:26:54 +0000577 goto out;
578 }
Steve French84afc292005-12-02 13:32:45 -0800579
Steve French2b2bdfb2008-12-11 17:26:54 +0000580 /* rcvd frame is ok */
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500581
Steve French2b2bdfb2008-12-11 17:26:54 +0000582 if (midQ->resp_buf &&
583 (midQ->midState == MID_RESPONSE_RECEIVED)) {
584
585 iov[0].iov_base = (char *)midQ->resp_buf;
586 if (midQ->largeBuf)
587 *pRespBufType = CIFS_LARGE_BUFFER;
588 else
589 *pRespBufType = CIFS_SMALL_BUFFER;
590 iov[0].iov_len = receive_len + 4;
591
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,
Steve Frenchb609f062007-07-09 07:55:14 +0000598 &ses->server->mac_signing_key,
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500599 midQ->sequence_number+1);
Steve French2b2bdfb2008-12-11 17:26:54 +0000600 if (rc) {
601 cERROR(1, ("Unexpected SMB signature"));
602 /* BB FIXME add code to kill session */
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500603 }
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500604 }
Steve French2b2bdfb2008-12-11 17:26:54 +0000605
606 /* BB special case reconnect tid and uid here? */
607 rc = map_smb_to_linux_error(midQ->resp_buf,
608 flags & CIFS_LOG_ERROR);
609
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
618 not be freed by
619 DeleteMidQEntry */
620 } else {
621 rc = -EIO;
622 cFYI(1, ("Bad MID state?"));
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500623 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000624
625out:
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500626 DeleteMidQEntry(midQ);
Steve French79a58d12007-07-06 22:44:50 +0000627 atomic_dec(&ses->server->inFlight);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000628 wake_up(&ses->server->request_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 return rc;
631}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633int
634SendReceive(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)
637{
638 int rc = 0;
639 unsigned int receive_len;
640 unsigned long timeout;
641 struct mid_q_entry *midQ;
642
643 if (ses == NULL) {
Steve French79a58d12007-07-06 22:44:50 +0000644 cERROR(1, ("Null smb session"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return -EIO;
646 }
Steve French79a58d12007-07-06 22:44:50 +0000647 if (ses->server == NULL) {
648 cERROR(1, ("Null tcp session"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return -EIO;
650 }
651
Steve French79a58d12007-07-06 22:44:50 +0000652 if (ses->server->tcpStatus == CifsExiting)
Steve French31ca3bc2005-04-28 22:41:11 -0700653 return -ENOENT;
654
Steve French79a58d12007-07-06 22:44:50 +0000655 /* Ensure that we do not send more than 50 overlapping requests
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 to the same server. We may make this configurable later or
657 use ses->maxReq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Volker Lendecke6d9c6d52008-12-08 20:50:24 +0000659 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));
662 return -EIO;
663 }
664
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000665 rc = wait_for_free_request(ses, long_op);
666 if (rc)
667 return rc;
668
Steve French79a58d12007-07-06 22:44:50 +0000669 /* make sure that we sign in the same order that we send on this socket
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 and avoid races inside tcp sendmsg code that could cause corruption
671 of smb data */
672
Jeff Layton72ca5452008-12-01 07:09:36 -0500673 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000675 rc = allocate_mid(ses, in_buf, &midQ);
676 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500677 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000678 /* Update # of requests on wire to server */
Steve French79a58d12007-07-06 22:44:50 +0000679 atomic_dec(&ses->server->inFlight);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000680 wake_up(&ses->server->request_q);
681 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
683
Steve Frenchad009ac2005-04-28 22:41:05 -0700684 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +0100685 if (rc) {
686 mutex_unlock(&ses->server->srv_mutex);
687 goto out;
688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 midQ->midState = MID_REQUEST_SUBMITTED;
Steve French131afd0b2005-10-07 09:51:05 -0700691#ifdef CONFIG_CIFS_STATS2
692 atomic_inc(&ses->server->inSend);
693#endif
Jeff Layton0496e022008-12-30 12:39:16 -0500694 rc = smb_send(ses->server, in_buf, in_buf->smb_buf_length);
Steve French131afd0b2005-10-07 09:51:05 -0700695#ifdef CONFIG_CIFS_STATS2
696 atomic_dec(&ses->server->inSend);
Steve French1047abc2005-10-11 19:58:06 -0700697 midQ->when_sent = jiffies;
Steve French131afd0b2005-10-07 09:51:05 -0700698#endif
Jeff Layton72ca5452008-12-01 07:09:36 -0500699 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000700
Steve French79a58d12007-07-06 22:44:50 +0000701 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000702 goto out;
703
Steve French133672e2007-11-13 22:41:37 +0000704 if (long_op == CIFS_STD_OP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 timeout = 15 * HZ;
Steve French79a58d12007-07-06 22:44:50 +0000706 /* wait for 15 seconds or until woken up due to response arriving or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 due to last connection to this server being unmounted */
Steve French133672e2007-11-13 22:41:37 +0000708 else if (long_op == CIFS_ASYNC_OP)
709 goto out;
710 else if (long_op == CIFS_VLONG_OP) /* writes past EOF can be slow */
711 timeout = 180 * HZ;
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 */
717 else {
718 cERROR(1, ("unknown timeout flag %d", long_op));
719 rc = -EIO;
720 goto out;
721 }
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (signal_pending(current)) {
724 /* if signal pending do not hold up user for full smb timeout
Steve French8a236262007-03-06 00:31:00 +0000725 but we still give response a chance to complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 timeout = 2 * HZ;
Steve French79a58d12007-07-06 22:44:50 +0000727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 /* No user interrupts in wait - wreaks havoc with performance */
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000730 wait_for_response(ses, midQ, timeout, 10 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 spin_lock(&GlobalMid_Lock);
Volker Lendecke8e4f2e82008-12-06 16:22:15 +0100733 if (midQ->resp_buf == NULL) {
Steve French79a58d12007-07-06 22:44:50 +0000734 cERROR(1, ("No response for cmd %d mid %d",
Steve French37c0eb42005-10-05 14:50:29 -0700735 midQ->command, midQ->mid));
Steve French79a58d12007-07-06 22:44:50 +0000736 if (midQ->midState == MID_REQUEST_SUBMITTED) {
737 if (ses->server->tcpStatus == CifsExiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 rc = -EHOSTDOWN;
739 else {
740 ses->server->tcpStatus = CifsNeedReconnect;
741 midQ->midState = MID_RETRY_NEEDED;
742 }
743 }
744
745 if (rc != -EHOSTDOWN) {
Steve French79a58d12007-07-06 22:44:50 +0000746 if (midQ->midState == MID_RETRY_NEEDED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 rc = -EAGAIN;
Steve French79a58d12007-07-06 22:44:50 +0000748 cFYI(1, ("marking request for retry"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 } else {
750 rc = -EIO;
751 }
752 }
753 spin_unlock(&GlobalMid_Lock);
754 DeleteMidQEntry(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000755 /* Update # of requests on wire to server */
Steve French79a58d12007-07-06 22:44:50 +0000756 atomic_dec(&ses->server->inFlight);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000757 wake_up(&ses->server->request_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 return rc;
759 }
Steve French50c2f752007-07-13 00:33:32 +0000760
Volker Lendecke8e4f2e82008-12-06 16:22:15 +0100761 spin_unlock(&GlobalMid_Lock);
762 receive_len = midQ->resp_buf->smb_buf_length;
763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 if (receive_len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE) {
Steve Frenchad009ac2005-04-28 22:41:05 -0700765 cERROR(1, ("Frame too large received. Length: %d Xid: %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 receive_len, xid));
767 rc = -EIO;
Steve French2b2bdfb2008-12-11 17:26:54 +0000768 goto out;
769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Steve French2b2bdfb2008-12-11 17:26:54 +0000771 /* rcvd frame is ok */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Steve French2b2bdfb2008-12-11 17:26:54 +0000773 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,
778 receive_len);
779
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,
Steve Frenchb609f062007-07-09 07:55:14 +0000786 &ses->server->mac_signing_key,
Steve Frenchad009ac2005-04-28 22:41:05 -0700787 midQ->sequence_number+1);
Steve French2b2bdfb2008-12-11 17:26:54 +0000788 if (rc) {
789 cERROR(1, ("Unexpected SMB signature"));
790 /* BB FIXME add code to kill session */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
Steve French2b2bdfb2008-12-11 17:26:54 +0000793
794 *pbytes_returned = out_buf->smb_buf_length;
795
796 /* BB special case reconnect tid and uid here? */
797 rc = map_smb_to_linux_error(out_buf, 0 /* no log */ );
798
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));
804 } else {
805 rc = -EIO;
806 cERROR(1, ("Bad MID state?"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000809out:
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000810 DeleteMidQEntry(midQ);
Steve French79a58d12007-07-06 22:44:50 +0000811 atomic_dec(&ses->server->inFlight);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000812 wake_up(&ses->server->request_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 return rc;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000815}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000817/* Send an NT_CANCEL SMB to cause the POSIX blocking lock to return. */
818
819static int
820send_nt_cancel(struct cifsTconInfo *tcon, struct smb_hdr *in_buf,
821 struct mid_q_entry *midQ)
822{
823 int rc = 0;
824 struct cifsSesInfo *ses = tcon->ses;
825 __u16 mid = in_buf->Mid;
826
827 header_assemble(in_buf, SMB_COM_NT_CANCEL, tcon, 0);
828 in_buf->Mid = mid;
Jeff Layton72ca5452008-12-01 07:09:36 -0500829 mutex_lock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000830 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
831 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500832 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000833 return rc;
834 }
Jeff Layton0496e022008-12-30 12:39:16 -0500835 rc = smb_send(ses->server, in_buf, in_buf->smb_buf_length);
Jeff Layton72ca5452008-12-01 07:09:36 -0500836 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000837 return rc;
838}
839
840/* We send a LOCKINGX_CANCEL_LOCK to cause the Windows
841 blocking lock to return. */
842
843static int
844send_lock_cancel(const unsigned int xid, struct cifsTconInfo *tcon,
845 struct smb_hdr *in_buf,
846 struct smb_hdr *out_buf)
847{
848 int bytes_returned;
849 struct cifsSesInfo *ses = tcon->ses;
850 LOCK_REQ *pSMB = (LOCK_REQ *)in_buf;
851
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. */
856
857 pSMB->LockType = LOCKING_ANDX_CANCEL_LOCK|LOCKING_ANDX_LARGE_FILES;
858 pSMB->Timeout = 0;
859 pSMB->hdr.Mid = GetNextMid(ses->server);
860
861 return SendReceive(xid, ses, in_buf, out_buf,
Steve French133672e2007-11-13 22:41:37 +0000862 &bytes_returned, CIFS_STD_OP);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000863}
864
865int
866SendReceiveBlockingLock(const unsigned int xid, struct cifsTconInfo *tcon,
867 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
868 int *pbytes_returned)
869{
870 int rc = 0;
871 int rstart = 0;
872 unsigned int receive_len;
873 struct mid_q_entry *midQ;
874 struct cifsSesInfo *ses;
875
876 if (tcon == NULL || tcon->ses == NULL) {
Steve French79a58d12007-07-06 22:44:50 +0000877 cERROR(1, ("Null smb session"));
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000878 return -EIO;
879 }
880 ses = tcon->ses;
881
Steve French79a58d12007-07-06 22:44:50 +0000882 if (ses->server == NULL) {
883 cERROR(1, ("Null tcp session"));
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000884 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
886
Steve French79a58d12007-07-06 22:44:50 +0000887 if (ses->server->tcpStatus == CifsExiting)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000888 return -ENOENT;
889
Steve French79a58d12007-07-06 22:44:50 +0000890 /* Ensure that we do not send more than 50 overlapping requests
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000891 to the same server. We may make this configurable later or
892 use ses->maxReq */
893
Volker Lendecke6d9c6d52008-12-08 20:50:24 +0000894 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));
897 return -EIO;
898 }
899
Steve French133672e2007-11-13 22:41:37 +0000900 rc = wait_for_free_request(ses, CIFS_BLOCKING_OP);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000901 if (rc)
902 return rc;
903
Steve French79a58d12007-07-06 22:44:50 +0000904 /* make sure that we sign in the same order that we send on this socket
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000905 and avoid races inside tcp sendmsg code that could cause corruption
906 of smb data */
907
Jeff Layton72ca5452008-12-01 07:09:36 -0500908 mutex_lock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000909
910 rc = allocate_mid(ses, in_buf, &midQ);
911 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500912 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000913 return rc;
914 }
915
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000916 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +0100917 if (rc) {
918 DeleteMidQEntry(midQ);
919 mutex_unlock(&ses->server->srv_mutex);
920 return rc;
921 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000922
923 midQ->midState = MID_REQUEST_SUBMITTED;
924#ifdef CONFIG_CIFS_STATS2
925 atomic_inc(&ses->server->inSend);
926#endif
Jeff Layton0496e022008-12-30 12:39:16 -0500927 rc = smb_send(ses->server, in_buf, in_buf->smb_buf_length);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000928#ifdef CONFIG_CIFS_STATS2
929 atomic_dec(&ses->server->inSend);
930 midQ->when_sent = jiffies;
931#endif
Jeff Layton72ca5452008-12-01 07:09:36 -0500932 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000933
Steve French79a58d12007-07-06 22:44:50 +0000934 if (rc < 0) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000935 DeleteMidQEntry(midQ);
936 return rc;
937 }
938
939 /* Wait for a reply - allow signals to interrupt. */
940 rc = wait_event_interruptible(ses->server->response_q,
Steve French79a58d12007-07-06 22:44:50 +0000941 (!(midQ->midState == MID_REQUEST_SUBMITTED)) ||
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000942 ((ses->server->tcpStatus != CifsGood) &&
943 (ses->server->tcpStatus != CifsNew)));
944
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))) {
950
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. */
954
955 rc = send_nt_cancel(tcon, in_buf, midQ);
956 if (rc) {
957 DeleteMidQEntry(midQ);
958 return rc;
959 }
960 } else {
961 /* Windows lock. We send a LOCKINGX_CANCEL_LOCK
962 to cause the blocking lock to return. */
963
964 rc = send_lock_cancel(xid, tcon, in_buf, out_buf);
965
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);
970 return rc;
971 }
972 }
973
974 /* Wait 5 seconds for the response. */
Steve French79a58d12007-07-06 22:44:50 +0000975 if (wait_for_response(ses, midQ, 5 * HZ, 5 * HZ) == 0) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000976 /* We got the response - restart system call. */
977 rstart = 1;
978 }
979 }
980
981 spin_lock(&GlobalMid_Lock);
982 if (midQ->resp_buf) {
983 spin_unlock(&GlobalMid_Lock);
984 receive_len = midQ->resp_buf->smb_buf_length;
985 } else {
Steve French79a58d12007-07-06 22:44:50 +0000986 cERROR(1, ("No response for cmd %d mid %d",
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000987 midQ->command, midQ->mid));
Steve French79a58d12007-07-06 22:44:50 +0000988 if (midQ->midState == MID_REQUEST_SUBMITTED) {
989 if (ses->server->tcpStatus == CifsExiting)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000990 rc = -EHOSTDOWN;
991 else {
992 ses->server->tcpStatus = CifsNeedReconnect;
993 midQ->midState = MID_RETRY_NEEDED;
994 }
995 }
996
997 if (rc != -EHOSTDOWN) {
Steve French79a58d12007-07-06 22:44:50 +0000998 if (midQ->midState == MID_RETRY_NEEDED) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000999 rc = -EAGAIN;
Steve French79a58d12007-07-06 22:44:50 +00001000 cFYI(1, ("marking request for retry"));
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001001 } else {
1002 rc = -EIO;
1003 }
1004 }
1005 spin_unlock(&GlobalMid_Lock);
1006 DeleteMidQEntry(midQ);
1007 return rc;
1008 }
Steve French50c2f752007-07-13 00:33:32 +00001009
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001010 if (receive_len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE) {
1011 cERROR(1, ("Frame too large received. Length: %d Xid: %d",
1012 receive_len, xid));
1013 rc = -EIO;
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001014 goto out;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001015 }
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001016
1017 /* rcvd frame is ok */
1018
Volker Lendeckeac6a3ef2008-12-06 16:40:40 +01001019 if ((out_buf == NULL) || (midQ->midState != MID_RESPONSE_RECEIVED)) {
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001020 rc = -EIO;
1021 cERROR(1, ("Bad MID state?"));
Volker Lendecke698e96a2008-12-06 16:39:31 +01001022 goto out;
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001023 }
1024
Volker Lendecke698e96a2008-12-06 16:39:31 +01001025 out_buf->smb_buf_length = receive_len;
1026 memcpy((char *)out_buf + 4,
1027 (char *)midQ->resp_buf + 4,
1028 receive_len);
1029
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);
1038 if (rc) {
1039 cERROR(1, ("Unexpected SMB signature"));
1040 /* BB FIXME add code to kill session */
1041 }
1042 }
1043
1044 *pbytes_returned = out_buf->smb_buf_length;
1045
1046 /* BB special case reconnect tid and uid here? */
1047 rc = map_smb_to_linux_error(out_buf, 0 /* no log */ );
1048
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));
1054
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001055out:
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001056 DeleteMidQEntry(midQ);
1057 if (rstart && rc == -EACCES)
1058 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 return rc;
1060}