blob: e2673aa3438127c0fb385ee293c9dae3c8bab276 [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>
Jeff Laytonf06ac722011-10-19 15:30:40 -040029#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/uaccess.h>
31#include <asm/processor.h>
32#include <linux/mempool.h>
33#include "cifspdu.h"
34#include "cifsglob.h"
35#include "cifsproto.h"
36#include "cifs_debug.h"
Steve French50c2f752007-07-13 00:33:32 +000037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038extern mempool_t *cifs_mid_poolp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Jeff Layton2b84a36c2011-01-11 07:24:21 -050040static void
41wake_up_task(struct mid_q_entry *mid)
42{
43 wake_up_process(mid->callback_data);
44}
45
Jeff Laytona6827c12011-01-11 07:24:21 -050046struct mid_q_entry *
Jeff Layton24b9b062008-12-01 07:09:34 -050047AllocMidQEntry(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 struct mid_q_entry *temp;
50
Jeff Layton24b9b062008-12-01 07:09:34 -050051 if (server == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +000052 cERROR(1, "Null TCP session in AllocMidQEntry");
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 return NULL;
54 }
Steve French50c2f752007-07-13 00:33:32 +000055
Pekka Enberg232087c2008-09-15 13:22:54 +030056 temp = mempool_alloc(cifs_mid_poolp, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 if (temp == NULL)
58 return temp;
59 else {
Steve French26f57362007-08-30 22:09:15 +000060 memset(temp, 0, sizeof(struct mid_q_entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 temp->mid = smb_buffer->Mid; /* always LE */
62 temp->pid = current->pid;
63 temp->command = smb_buffer->Command;
Joe Perchesb6b38f72010-04-21 03:50:45 +000064 cFYI(1, "For smb_command %d", temp->command);
Steve French1047abc2005-10-11 19:58:06 -070065 /* do_gettimeofday(&temp->when_sent);*/ /* easier to use jiffies */
66 /* when mid allocated can be before when sent */
67 temp->when_alloc = jiffies;
Jeff Layton2b84a36c2011-01-11 07:24:21 -050068
69 /*
70 * The default is for the mid to be synchronous, so the
71 * default callback just wakes up the current task.
72 */
73 temp->callback = wake_up_task;
74 temp->callback_data = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 }
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 atomic_inc(&midCount);
78 temp->midState = MID_REQUEST_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 return temp;
80}
81
Jeff Layton766fdbb2011-01-11 07:24:21 -050082void
Linus Torvalds1da177e2005-04-16 15:20:36 -070083DeleteMidQEntry(struct mid_q_entry *midEntry)
84{
Steve French1047abc2005-10-11 19:58:06 -070085#ifdef CONFIG_CIFS_STATS2
86 unsigned long now;
87#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 midEntry->midState = MID_FREE;
Jeff Layton80975312011-01-11 07:24:02 -050089 atomic_dec(&midCount);
Steve French79a58d12007-07-06 22:44:50 +000090 if (midEntry->largeBuf)
Steve Frenchb8643e12005-04-28 22:41:07 -070091 cifs_buf_release(midEntry->resp_buf);
92 else
93 cifs_small_buf_release(midEntry->resp_buf);
Steve French1047abc2005-10-11 19:58:06 -070094#ifdef CONFIG_CIFS_STATS2
95 now = jiffies;
96 /* commands taking longer than one second are indications that
97 something is wrong, unless it is quite a slow link or server */
Steve French79a58d12007-07-06 22:44:50 +000098 if ((now - midEntry->when_alloc) > HZ) {
99 if ((cifsFYI & CIFS_TIMER) &&
Steve French1047abc2005-10-11 19:58:06 -0700100 (midEntry->command != SMB_COM_LOCKING_ANDX)) {
101 printk(KERN_DEBUG " CIFS slow rsp: cmd %d mid %d",
102 midEntry->command, midEntry->mid);
103 printk(" A: 0x%lx S: 0x%lx R: 0x%lx\n",
104 now - midEntry->when_alloc,
105 now - midEntry->when_sent,
106 now - midEntry->when_received);
107 }
108 }
109#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 mempool_free(midEntry, cifs_mid_poolp);
111}
112
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500113static void
114delete_mid(struct mid_q_entry *mid)
115{
116 spin_lock(&GlobalMid_Lock);
117 list_del(&mid->qhead);
118 spin_unlock(&GlobalMid_Lock);
119
120 DeleteMidQEntry(mid);
121}
122
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500123static int
Jeff Layton0496e022008-12-30 12:39:16 -0500124smb_sendv(struct TCP_Server_Info *server, struct kvec *iov, int n_vec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 int rc = 0;
127 int i = 0;
128 struct msghdr smb_msg;
Steve French3e844692005-10-03 13:37:24 -0700129 struct smb_hdr *smb_buffer = iov[0].iov_base;
130 unsigned int len = iov[0].iov_len;
131 unsigned int total_len;
132 int first_vec = 0;
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000133 unsigned int smb_buf_length = be32_to_cpu(smb_buffer->smb_buf_length);
Steve Frenchedf1ae42008-10-29 00:47:57 +0000134 struct socket *ssocket = server->ssocket;
Steve French50c2f752007-07-13 00:33:32 +0000135
Steve French79a58d12007-07-06 22:44:50 +0000136 if (ssocket == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return -ENOTSOCK; /* BB eventually add reconnect code here */
Steve French3e844692005-10-03 13:37:24 -0700138
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300139 smb_msg.msg_name = (struct sockaddr *) &server->dstaddr;
Steve French26f57362007-08-30 22:09:15 +0000140 smb_msg.msg_namelen = sizeof(struct sockaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 smb_msg.msg_control = NULL;
142 smb_msg.msg_controllen = 0;
Jeff Layton0496e022008-12-30 12:39:16 -0500143 if (server->noblocksnd)
Steve Frenchedf1ae42008-10-29 00:47:57 +0000144 smb_msg.msg_flags = MSG_DONTWAIT + MSG_NOSIGNAL;
145 else
146 smb_msg.msg_flags = MSG_NOSIGNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Steve French3e844692005-10-03 13:37:24 -0700148 total_len = 0;
149 for (i = 0; i < n_vec; i++)
150 total_len += iov[i].iov_len;
151
Joe Perchesb6b38f72010-04-21 03:50:45 +0000152 cFYI(1, "Sending smb: total_len %d", total_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 dump_smb(smb_buffer, len);
154
Shirish Pargaonkar17680352008-07-29 21:26:13 +0000155 i = 0;
Steve French3e844692005-10-03 13:37:24 -0700156 while (total_len) {
157 rc = kernel_sendmsg(ssocket, &smb_msg, &iov[first_vec],
158 n_vec - first_vec, total_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if ((rc == -ENOSPC) || (rc == -EAGAIN)) {
160 i++;
Steve Frenchda505c32009-01-19 03:49:35 +0000161 /* if blocking send we try 3 times, since each can block
162 for 5 seconds. For nonblocking we have to try more
163 but wait increasing amounts of time allowing time for
164 socket to clear. The overall time we wait in either
165 case to send on the socket is about 15 seconds.
166 Similarly we wait for 15 seconds for
167 a response from the server in SendReceive[2]
168 for the server to send a response back for
169 most types of requests (except SMB Write
170 past end of file which can be slow, and
171 blocking lock operations). NFS waits slightly longer
172 than CIFS, but this can make it take longer for
173 nonresponsive servers to be detected and 15 seconds
174 is more than enough time for modern networks to
175 send a packet. In most cases if we fail to send
176 after the retries we will kill the socket and
177 reconnect which may clear the network problem.
178 */
179 if ((i >= 14) || (!server->noblocksnd && (i > 2))) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000180 cERROR(1, "sends on sock %p stuck for 15 seconds",
181 ssocket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 rc = -EAGAIN;
183 break;
184 }
Steve French68058e72005-10-10 10:34:22 -0700185 msleep(1 << i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 continue;
187 }
Steve French79a58d12007-07-06 22:44:50 +0000188 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 break;
Steve French3e844692005-10-03 13:37:24 -0700190
Steve French61de8002008-10-30 20:15:22 +0000191 if (rc == total_len) {
192 total_len = 0;
193 break;
194 } else if (rc > total_len) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000195 cERROR(1, "sent %d requested %d", rc, total_len);
Steve French3e844692005-10-03 13:37:24 -0700196 break;
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500197 }
Steve French79a58d12007-07-06 22:44:50 +0000198 if (rc == 0) {
Steve French3e844692005-10-03 13:37:24 -0700199 /* should never happen, letting socket clear before
200 retrying is our only obvious option here */
Joe Perchesb6b38f72010-04-21 03:50:45 +0000201 cERROR(1, "tcp sent no data");
Steve French3e844692005-10-03 13:37:24 -0700202 msleep(500);
203 continue;
204 }
205 total_len -= rc;
Steve French68058e72005-10-10 10:34:22 -0700206 /* the line below resets i */
Steve French3e844692005-10-03 13:37:24 -0700207 for (i = first_vec; i < n_vec; i++) {
208 if (iov[i].iov_len) {
209 if (rc > iov[i].iov_len) {
210 rc -= iov[i].iov_len;
211 iov[i].iov_len = 0;
212 } else {
213 iov[i].iov_base += rc;
214 iov[i].iov_len -= rc;
215 first_vec = i;
216 break;
217 }
218 }
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500219 }
Steve French5e1253b2005-10-10 14:06:37 -0700220 i = 0; /* in case we get ENOSPC on the next send */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
222
Steve Frenchedf1ae42008-10-29 00:47:57 +0000223 if ((total_len > 0) && (total_len != smb_buf_length + 4)) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000224 cFYI(1, "partial send (%d remaining), terminating session",
225 total_len);
Steve Frenchedf1ae42008-10-29 00:47:57 +0000226 /* If we have only sent part of an SMB then the next SMB
227 could be taken as the remainder of this one. We need
228 to kill the socket so the server throws away the partial
229 SMB */
230 server->tcpStatus = CifsNeedReconnect;
231 }
232
Jeff Laytond804d412011-01-28 15:05:43 -0500233 if (rc < 0 && rc != -EINTR)
Joe Perchesb6b38f72010-04-21 03:50:45 +0000234 cERROR(1, "Error %d sending data on socket to server", rc);
Jeff Laytond804d412011-01-28 15:05:43 -0500235 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000238 /* Don't want to modify the buffer as a
239 side effect of this call. */
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000240 smb_buffer->smb_buf_length = cpu_to_be32(smb_buf_length);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return rc;
243}
244
Jeff Layton0496e022008-12-30 12:39:16 -0500245int
246smb_send(struct TCP_Server_Info *server, struct smb_hdr *smb_buffer,
247 unsigned int smb_buf_length)
248{
249 struct kvec iov;
250
251 iov.iov_base = smb_buffer;
252 iov.iov_len = smb_buf_length + 4;
253
254 return smb_sendv(server, &iov, 1);
255}
256
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300257static int
258wait_for_free_request(struct TCP_Server_Info *server, const int long_op)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000259{
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300260 spin_lock(&server->req_lock);
261
Steve French133672e2007-11-13 22:41:37 +0000262 if (long_op == CIFS_ASYNC_OP) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000263 /* oplock breaks must not be held up */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300264 server->in_flight++;
265 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000266 return 0;
267 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000268
Volker Lendecke27a97a62008-12-08 20:59:39 +0000269 while (1) {
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300270 if (server->in_flight >= server->maxReq) {
271 spin_unlock(&server->req_lock);
Steve French789e6662011-08-09 18:44:44 +0000272 cifs_num_waiters_inc(server);
Jeff Laytonc5797a92011-01-11 07:24:01 -0500273 wait_event(server->request_q,
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300274 in_flight(server) < server->maxReq);
Steve French789e6662011-08-09 18:44:44 +0000275 cifs_num_waiters_dec(server);
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300276 spin_lock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000277 } else {
Jeff Laytonc5797a92011-01-11 07:24:01 -0500278 if (server->tcpStatus == CifsExiting) {
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300279 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000280 return -ENOENT;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000281 }
Volker Lendecke27a97a62008-12-08 20:59:39 +0000282
283 /* can not count locking commands against total
284 as they are allowed to block on server */
285
286 /* update # of requests on the wire to server */
287 if (long_op != CIFS_BLOCKING_OP)
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300288 server->in_flight++;
289 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000290 break;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000291 }
292 }
293 return 0;
294}
295
Steve French96daf2b2011-05-27 04:34:02 +0000296static int allocate_mid(struct cifs_ses *ses, struct smb_hdr *in_buf,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000297 struct mid_q_entry **ppmidQ)
298{
299 if (ses->server->tcpStatus == CifsExiting) {
300 return -ENOENT;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100301 }
302
303 if (ses->server->tcpStatus == CifsNeedReconnect) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000304 cFYI(1, "tcp session dead - return to caller to retry");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000305 return -EAGAIN;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100306 }
307
308 if (ses->status != CifsGood) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000309 /* check if SMB session is bad because we are setting it up */
Steve French79a58d12007-07-06 22:44:50 +0000310 if ((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) &&
Steve Frenchad7a2922008-02-07 23:25:02 +0000311 (in_buf->Command != SMB_COM_NEGOTIATE))
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000312 return -EAGAIN;
Steve Frenchad7a2922008-02-07 23:25:02 +0000313 /* else ok - we are setting up session */
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000314 }
Jeff Layton24b9b062008-12-01 07:09:34 -0500315 *ppmidQ = AllocMidQEntry(in_buf, ses->server);
Steve French26f57362007-08-30 22:09:15 +0000316 if (*ppmidQ == NULL)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000317 return -ENOMEM;
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500318 spin_lock(&GlobalMid_Lock);
319 list_add_tail(&(*ppmidQ)->qhead, &ses->server->pending_mid_q);
320 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000321 return 0;
322}
323
Jeff Layton0ade6402011-01-11 07:24:02 -0500324static int
325wait_for_response(struct TCP_Server_Info *server, struct mid_q_entry *midQ)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000326{
Jeff Layton0ade6402011-01-11 07:24:02 -0500327 int error;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000328
Jeff Laytonf06ac722011-10-19 15:30:40 -0400329 error = wait_event_freezekillable(server->response_q,
Jeff Layton0ade6402011-01-11 07:24:02 -0500330 midQ->midState != MID_REQUEST_SUBMITTED);
331 if (error < 0)
332 return -ERESTARTSYS;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000333
Jeff Layton0ade6402011-01-11 07:24:02 -0500334 return 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000335}
336
Steve French133672e2007-11-13 22:41:37 +0000337
338/*
Jeff Laytona6827c12011-01-11 07:24:21 -0500339 * Send a SMB request and set the callback function in the mid to handle
340 * the result. Caller is responsible for dealing with timeouts.
341 */
342int
Jeff Laytonfcc31cb2011-05-19 16:22:53 -0400343cifs_call_async(struct TCP_Server_Info *server, struct kvec *iov,
Jeff Layton44d22d82011-10-19 15:29:49 -0400344 unsigned int nvec, mid_receive_t *receive,
345 mid_callback_t *callback, void *cbdata, bool ignore_pend)
Jeff Laytona6827c12011-01-11 07:24:21 -0500346{
347 int rc;
348 struct mid_q_entry *mid;
Jeff Laytonfcc31cb2011-05-19 16:22:53 -0400349 struct smb_hdr *hdr = (struct smb_hdr *)iov[0].iov_base;
Jeff Laytona6827c12011-01-11 07:24:21 -0500350
Jeff Layton59ffd842011-05-19 16:22:55 -0400351 rc = wait_for_free_request(server, ignore_pend ? CIFS_ASYNC_OP : 0);
Jeff Laytona6827c12011-01-11 07:24:21 -0500352 if (rc)
353 return rc;
354
Jeff Laytone3f0dad2011-02-04 07:21:26 -0500355 /* enable signing if server requires it */
Steve French96daf2b2011-05-27 04:34:02 +0000356 if (server->sec_mode & (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED))
Jeff Laytonfcc31cb2011-05-19 16:22:53 -0400357 hdr->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
Jeff Laytone3f0dad2011-02-04 07:21:26 -0500358
Jeff Laytona6827c12011-01-11 07:24:21 -0500359 mutex_lock(&server->srv_mutex);
Jeff Laytonfcc31cb2011-05-19 16:22:53 -0400360 mid = AllocMidQEntry(hdr, server);
Jeff Laytona6827c12011-01-11 07:24:21 -0500361 if (mid == NULL) {
362 mutex_unlock(&server->srv_mutex);
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300363 dec_in_flight(server);
Pavel Shilovsky0193e072011-08-03 23:12:18 +0400364 wake_up(&server->request_q);
Jeff Laytona6827c12011-01-11 07:24:21 -0500365 return -ENOMEM;
366 }
367
368 /* put it on the pending_mid_q */
369 spin_lock(&GlobalMid_Lock);
370 list_add_tail(&mid->qhead, &server->pending_mid_q);
371 spin_unlock(&GlobalMid_Lock);
372
Jeff Laytonfcc31cb2011-05-19 16:22:53 -0400373 rc = cifs_sign_smb2(iov, nvec, server, &mid->sequence_number);
Jeff Laytona6827c12011-01-11 07:24:21 -0500374 if (rc) {
375 mutex_unlock(&server->srv_mutex);
376 goto out_err;
377 }
378
Jeff Layton44d22d82011-10-19 15:29:49 -0400379 mid->receive = receive;
Jeff Laytona6827c12011-01-11 07:24:21 -0500380 mid->callback = callback;
381 mid->callback_data = cbdata;
382 mid->midState = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000383
384 cifs_in_send_inc(server);
Jeff Laytonfcc31cb2011-05-19 16:22:53 -0400385 rc = smb_sendv(server, iov, nvec);
Steve French789e6662011-08-09 18:44:44 +0000386 cifs_in_send_dec(server);
387 cifs_save_when_sent(mid);
Jeff Laytona6827c12011-01-11 07:24:21 -0500388 mutex_unlock(&server->srv_mutex);
Steve French789e6662011-08-09 18:44:44 +0000389
Jeff Laytona6827c12011-01-11 07:24:21 -0500390 if (rc)
391 goto out_err;
392
393 return rc;
394out_err:
395 delete_mid(mid);
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300396 dec_in_flight(server);
Jeff Laytona6827c12011-01-11 07:24:21 -0500397 wake_up(&server->request_q);
398 return rc;
399}
400
401/*
Steve French133672e2007-11-13 22:41:37 +0000402 *
403 * Send an SMB Request. No response info (other than return code)
404 * needs to be parsed.
405 *
406 * flags indicate the type of request buffer and how long to wait
407 * and whether to log NT STATUS code (error) before mapping it to POSIX error
408 *
409 */
410int
Steve French96daf2b2011-05-27 04:34:02 +0000411SendReceiveNoRsp(const unsigned int xid, struct cifs_ses *ses,
Steve French133672e2007-11-13 22:41:37 +0000412 struct smb_hdr *in_buf, int flags)
413{
414 int rc;
415 struct kvec iov[1];
416 int resp_buf_type;
417
418 iov[0].iov_base = (char *)in_buf;
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000419 iov[0].iov_len = be32_to_cpu(in_buf->smb_buf_length) + 4;
Steve French133672e2007-11-13 22:41:37 +0000420 flags |= CIFS_NO_RESP;
421 rc = SendReceive2(xid, ses, iov, 1, &resp_buf_type, flags);
Joe Perchesb6b38f72010-04-21 03:50:45 +0000422 cFYI(DBG2, "SendRcvNoRsp flags %d rc %d", flags, rc);
Steve French90c81e02008-02-12 20:32:36 +0000423
Steve French133672e2007-11-13 22:41:37 +0000424 return rc;
425}
426
Jeff Layton053d5032011-01-11 07:24:02 -0500427static int
Jeff Layton3c1105d2011-05-22 07:09:13 -0400428cifs_sync_mid_result(struct mid_q_entry *mid, struct TCP_Server_Info *server)
Jeff Layton053d5032011-01-11 07:24:02 -0500429{
430 int rc = 0;
431
Jeff Layton74dd92a2011-01-11 07:24:02 -0500432 cFYI(1, "%s: cmd=%d mid=%d state=%d", __func__, mid->command,
433 mid->mid, mid->midState);
Jeff Layton053d5032011-01-11 07:24:02 -0500434
Jeff Layton74dd92a2011-01-11 07:24:02 -0500435 spin_lock(&GlobalMid_Lock);
436 switch (mid->midState) {
437 case MID_RESPONSE_RECEIVED:
Jeff Layton053d5032011-01-11 07:24:02 -0500438 spin_unlock(&GlobalMid_Lock);
439 return rc;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500440 case MID_RETRY_NEEDED:
441 rc = -EAGAIN;
442 break;
Jeff Layton71823ba2011-02-10 08:03:50 -0500443 case MID_RESPONSE_MALFORMED:
444 rc = -EIO;
445 break;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400446 case MID_SHUTDOWN:
447 rc = -EHOSTDOWN;
448 break;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500449 default:
Jeff Layton3c1105d2011-05-22 07:09:13 -0400450 list_del_init(&mid->qhead);
Jeff Layton74dd92a2011-01-11 07:24:02 -0500451 cERROR(1, "%s: invalid mid state mid=%d state=%d", __func__,
452 mid->mid, mid->midState);
453 rc = -EIO;
Jeff Layton053d5032011-01-11 07:24:02 -0500454 }
455 spin_unlock(&GlobalMid_Lock);
456
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500457 DeleteMidQEntry(mid);
Jeff Layton053d5032011-01-11 07:24:02 -0500458 return rc;
459}
460
Jeff Layton76dcc262011-01-11 07:24:24 -0500461/*
462 * An NT cancel request header looks just like the original request except:
463 *
464 * The Command is SMB_COM_NT_CANCEL
465 * The WordCount is zeroed out
466 * The ByteCount is zeroed out
467 *
468 * This function mangles an existing request buffer into a
469 * SMB_COM_NT_CANCEL request and then sends it.
470 */
471static int
472send_nt_cancel(struct TCP_Server_Info *server, struct smb_hdr *in_buf,
473 struct mid_q_entry *mid)
474{
475 int rc = 0;
476
477 /* -4 for RFC1001 length and +2 for BCC field */
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000478 in_buf->smb_buf_length = cpu_to_be32(sizeof(struct smb_hdr) - 4 + 2);
Jeff Layton76dcc262011-01-11 07:24:24 -0500479 in_buf->Command = SMB_COM_NT_CANCEL;
480 in_buf->WordCount = 0;
Jeff Layton820a8032011-05-04 08:05:26 -0400481 put_bcc(0, in_buf);
Jeff Layton76dcc262011-01-11 07:24:24 -0500482
483 mutex_lock(&server->srv_mutex);
484 rc = cifs_sign_smb(in_buf, server, &mid->sequence_number);
485 if (rc) {
486 mutex_unlock(&server->srv_mutex);
487 return rc;
488 }
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000489 rc = smb_send(server, in_buf, be32_to_cpu(in_buf->smb_buf_length));
Jeff Layton76dcc262011-01-11 07:24:24 -0500490 mutex_unlock(&server->srv_mutex);
491
492 cFYI(1, "issued NT_CANCEL for mid %u, rc = %d",
493 in_buf->Mid, rc);
494
495 return rc;
496}
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498int
Jeff Layton2c8f9812011-05-19 16:22:52 -0400499cifs_check_receive(struct mid_q_entry *mid, struct TCP_Server_Info *server,
500 bool log_error)
501{
Jeff Layton826a95e2011-10-11 06:41:32 -0400502 unsigned int len = be32_to_cpu(mid->resp_buf->smb_buf_length) + 4;
503
504 dump_smb(mid->resp_buf, min_t(u32, 92, len));
Jeff Layton2c8f9812011-05-19 16:22:52 -0400505
506 /* convert the length into a more usable form */
Steve French96daf2b2011-05-27 04:34:02 +0000507 if (server->sec_mode & (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) {
Jeff Layton826a95e2011-10-11 06:41:32 -0400508 struct kvec iov;
509
510 iov.iov_base = mid->resp_buf;
511 iov.iov_len = len;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400512 /* FIXME: add code to kill session */
Jeff Layton826a95e2011-10-11 06:41:32 -0400513 if (cifs_verify_signature(&iov, 1, server,
Jeff Layton2c8f9812011-05-19 16:22:52 -0400514 mid->sequence_number + 1) != 0)
515 cERROR(1, "Unexpected SMB signature");
516 }
517
518 /* BB special case reconnect tid and uid here? */
519 return map_smb_to_linux_error(mid->resp_buf, log_error);
520}
521
522int
Steve French96daf2b2011-05-27 04:34:02 +0000523SendReceive2(const unsigned int xid, struct cifs_ses *ses,
Steve French79a58d12007-07-06 22:44:50 +0000524 struct kvec *iov, int n_vec, int *pRespBufType /* ret */,
Steve French133672e2007-11-13 22:41:37 +0000525 const int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
527 int rc = 0;
Steve French133672e2007-11-13 22:41:37 +0000528 int long_op;
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500529 struct mid_q_entry *midQ;
Steve French3e844692005-10-03 13:37:24 -0700530 struct smb_hdr *in_buf = iov[0].iov_base;
Steve French50c2f752007-07-13 00:33:32 +0000531
Steve French133672e2007-11-13 22:41:37 +0000532 long_op = flags & CIFS_TIMEOUT_MASK;
533
Steve Frenchec637e32005-12-12 20:53:18 -0800534 *pRespBufType = CIFS_NO_BUFFER; /* no response buf yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Steve French4b8f9302006-02-26 16:41:18 +0000536 if ((ses == NULL) || (ses->server == NULL)) {
537 cifs_small_buf_release(in_buf);
Joe Perchesb6b38f72010-04-21 03:50:45 +0000538 cERROR(1, "Null session");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return -EIO;
540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Steve French79a58d12007-07-06 22:44:50 +0000542 if (ses->server->tcpStatus == CifsExiting) {
Steve French4b8f9302006-02-26 16:41:18 +0000543 cifs_small_buf_release(in_buf);
Steve French31ca3bc2005-04-28 22:41:11 -0700544 return -ENOENT;
Steve French4b8f9302006-02-26 16:41:18 +0000545 }
Steve French31ca3bc2005-04-28 22:41:11 -0700546
Steve French79a58d12007-07-06 22:44:50 +0000547 /* Ensure that we do not send more than 50 overlapping requests
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 to the same server. We may make this configurable later or
549 use ses->maxReq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Jeff Laytonc5797a92011-01-11 07:24:01 -0500551 rc = wait_for_free_request(ses->server, long_op);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000552 if (rc) {
553 cifs_small_buf_release(in_buf);
554 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000556
Steve French79a58d12007-07-06 22:44:50 +0000557 /* make sure that we sign in the same order that we send on this socket
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 and avoid races inside tcp sendmsg code that could cause corruption
559 of smb data */
560
Jeff Layton72ca5452008-12-01 07:09:36 -0500561 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000563 rc = allocate_mid(ses, in_buf, &midQ);
564 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500565 mutex_unlock(&ses->server->srv_mutex);
Steve French4b8f9302006-02-26 16:41:18 +0000566 cifs_small_buf_release(in_buf);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000567 /* Update # of requests on wire to server */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300568 dec_in_flight(ses->server);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000569 wake_up(&ses->server->request_q);
570 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
Steve French79a58d12007-07-06 22:44:50 +0000572 rc = cifs_sign_smb2(iov, n_vec, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +0100573 if (rc) {
574 mutex_unlock(&ses->server->srv_mutex);
575 cifs_small_buf_release(in_buf);
576 goto out;
577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 midQ->midState = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000580 cifs_in_send_inc(ses->server);
Jeff Layton0496e022008-12-30 12:39:16 -0500581 rc = smb_sendv(ses->server, iov, n_vec);
Steve French789e6662011-08-09 18:44:44 +0000582 cifs_in_send_dec(ses->server);
583 cifs_save_when_sent(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000584
Jeff Layton72ca5452008-12-01 07:09:36 -0500585 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000586
Jeff Layton2db7c582011-01-28 07:08:28 -0500587 if (rc < 0) {
588 cifs_small_buf_release(in_buf);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000589 goto out;
Jeff Layton2db7c582011-01-28 07:08:28 -0500590 }
Steve French4b8f9302006-02-26 16:41:18 +0000591
Jeff Layton2db7c582011-01-28 07:08:28 -0500592 if (long_op == CIFS_ASYNC_OP) {
593 cifs_small_buf_release(in_buf);
Steve French133672e2007-11-13 22:41:37 +0000594 goto out;
Jeff Layton2db7c582011-01-28 07:08:28 -0500595 }
Jeff Layton0ade6402011-01-11 07:24:02 -0500596
597 rc = wait_for_response(ses->server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500598 if (rc != 0) {
Jeff Layton2db7c582011-01-28 07:08:28 -0500599 send_nt_cancel(ses->server, in_buf, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500600 spin_lock(&GlobalMid_Lock);
601 if (midQ->midState == MID_REQUEST_SUBMITTED) {
602 midQ->callback = DeleteMidQEntry;
603 spin_unlock(&GlobalMid_Lock);
Jeff Layton2db7c582011-01-28 07:08:28 -0500604 cifs_small_buf_release(in_buf);
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300605 dec_in_flight(ses->server);
Jeff Layton1be912d2011-01-28 07:08:28 -0500606 wake_up(&ses->server->request_q);
607 return rc;
608 }
609 spin_unlock(&GlobalMid_Lock);
610 }
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500611
Jeff Layton2db7c582011-01-28 07:08:28 -0500612 cifs_small_buf_release(in_buf);
613
Jeff Layton3c1105d2011-05-22 07:09:13 -0400614 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -0500615 if (rc != 0) {
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300616 dec_in_flight(ses->server);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000617 wake_up(&ses->server->request_q);
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500618 return rc;
619 }
Steve French50c2f752007-07-13 00:33:32 +0000620
Jeff Layton2c8f9812011-05-19 16:22:52 -0400621 if (!midQ->resp_buf || midQ->midState != MID_RESPONSE_RECEIVED) {
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500622 rc = -EIO;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400623 cFYI(1, "Bad MID state?");
Steve French2b2bdfb2008-12-11 17:26:54 +0000624 goto out;
625 }
Steve French84afc292005-12-02 13:32:45 -0800626
Jeff Layton2c8f9812011-05-19 16:22:52 -0400627 iov[0].iov_base = (char *)midQ->resp_buf;
628 iov[0].iov_len = be32_to_cpu(midQ->resp_buf->smb_buf_length) + 4;
629 if (midQ->largeBuf)
630 *pRespBufType = CIFS_LARGE_BUFFER;
631 else
632 *pRespBufType = CIFS_SMALL_BUFFER;
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500633
Jeff Layton2c8f9812011-05-19 16:22:52 -0400634 rc = cifs_check_receive(midQ, ses->server, flags & CIFS_LOG_ERROR);
Steve French2b2bdfb2008-12-11 17:26:54 +0000635
Jeff Layton2c8f9812011-05-19 16:22:52 -0400636 /* mark it so buf will not be freed by delete_mid */
637 if ((flags & CIFS_NO_RESP) == 0)
638 midQ->resp_buf = NULL;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000639out:
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500640 delete_mid(midQ);
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300641 dec_in_flight(ses->server);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000642 wake_up(&ses->server->request_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 return rc;
645}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647int
Steve French96daf2b2011-05-27 04:34:02 +0000648SendReceive(const unsigned int xid, struct cifs_ses *ses,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
650 int *pbytes_returned, const int long_op)
651{
652 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 struct mid_q_entry *midQ;
654
655 if (ses == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000656 cERROR(1, "Null smb session");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return -EIO;
658 }
Steve French79a58d12007-07-06 22:44:50 +0000659 if (ses->server == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000660 cERROR(1, "Null tcp session");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return -EIO;
662 }
663
Steve French79a58d12007-07-06 22:44:50 +0000664 if (ses->server->tcpStatus == CifsExiting)
Steve French31ca3bc2005-04-28 22:41:11 -0700665 return -ENOENT;
666
Steve French79a58d12007-07-06 22:44:50 +0000667 /* Ensure that we do not send more than 50 overlapping requests
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 to the same server. We may make this configurable later or
669 use ses->maxReq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000671 if (be32_to_cpu(in_buf->smb_buf_length) > CIFSMaxBufSize +
672 MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000673 cERROR(1, "Illegal length, greater than maximum frame, %d",
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000674 be32_to_cpu(in_buf->smb_buf_length));
Volker Lendecke6d9c6d52008-12-08 20:50:24 +0000675 return -EIO;
676 }
677
Jeff Laytonc5797a92011-01-11 07:24:01 -0500678 rc = wait_for_free_request(ses->server, long_op);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000679 if (rc)
680 return rc;
681
Steve French79a58d12007-07-06 22:44:50 +0000682 /* make sure that we sign in the same order that we send on this socket
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 and avoid races inside tcp sendmsg code that could cause corruption
684 of smb data */
685
Jeff Layton72ca5452008-12-01 07:09:36 -0500686 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000688 rc = allocate_mid(ses, in_buf, &midQ);
689 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500690 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000691 /* Update # of requests on wire to server */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300692 dec_in_flight(ses->server);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000693 wake_up(&ses->server->request_q);
694 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
696
Steve Frenchad009ac2005-04-28 22:41:05 -0700697 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +0100698 if (rc) {
699 mutex_unlock(&ses->server->srv_mutex);
700 goto out;
701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 midQ->midState = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000704
705 cifs_in_send_inc(ses->server);
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000706 rc = smb_send(ses->server, in_buf, be32_to_cpu(in_buf->smb_buf_length));
Steve French789e6662011-08-09 18:44:44 +0000707 cifs_in_send_dec(ses->server);
708 cifs_save_when_sent(midQ);
Jeff Layton72ca5452008-12-01 07:09:36 -0500709 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000710
Steve French79a58d12007-07-06 22:44:50 +0000711 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000712 goto out;
713
Jeff Layton0ade6402011-01-11 07:24:02 -0500714 if (long_op == CIFS_ASYNC_OP)
Steve French133672e2007-11-13 22:41:37 +0000715 goto out;
Jeff Layton0ade6402011-01-11 07:24:02 -0500716
717 rc = wait_for_response(ses->server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500718 if (rc != 0) {
Jeff Layton2db7c582011-01-28 07:08:28 -0500719 send_nt_cancel(ses->server, in_buf, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500720 spin_lock(&GlobalMid_Lock);
721 if (midQ->midState == MID_REQUEST_SUBMITTED) {
722 /* no longer considered to be "in-flight" */
723 midQ->callback = DeleteMidQEntry;
724 spin_unlock(&GlobalMid_Lock);
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300725 dec_in_flight(ses->server);
Jeff Layton1be912d2011-01-28 07:08:28 -0500726 wake_up(&ses->server->request_q);
727 return rc;
728 }
729 spin_unlock(&GlobalMid_Lock);
730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Jeff Layton3c1105d2011-05-22 07:09:13 -0400732 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -0500733 if (rc != 0) {
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300734 dec_in_flight(ses->server);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000735 wake_up(&ses->server->request_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return rc;
737 }
Steve French50c2f752007-07-13 00:33:32 +0000738
Jeff Layton2c8f9812011-05-19 16:22:52 -0400739 if (!midQ->resp_buf || !out_buf ||
740 midQ->midState != MID_RESPONSE_RECEIVED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 rc = -EIO;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400742 cERROR(1, "Bad MID state?");
Steve French2b2bdfb2008-12-11 17:26:54 +0000743 goto out;
744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Jeff Layton2c8f9812011-05-19 16:22:52 -0400746 *pbytes_returned = be32_to_cpu(midQ->resp_buf->smb_buf_length);
747 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
748 rc = cifs_check_receive(midQ, ses->server, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000749out:
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500750 delete_mid(midQ);
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300751 dec_in_flight(ses->server);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000752 wake_up(&ses->server->request_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 return rc;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000755}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000757/* We send a LOCKINGX_CANCEL_LOCK to cause the Windows
758 blocking lock to return. */
759
760static int
Steve French96daf2b2011-05-27 04:34:02 +0000761send_lock_cancel(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000762 struct smb_hdr *in_buf,
763 struct smb_hdr *out_buf)
764{
765 int bytes_returned;
Steve French96daf2b2011-05-27 04:34:02 +0000766 struct cifs_ses *ses = tcon->ses;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000767 LOCK_REQ *pSMB = (LOCK_REQ *)in_buf;
768
769 /* We just modify the current in_buf to change
770 the type of lock from LOCKING_ANDX_SHARED_LOCK
771 or LOCKING_ANDX_EXCLUSIVE_LOCK to
772 LOCKING_ANDX_CANCEL_LOCK. */
773
774 pSMB->LockType = LOCKING_ANDX_CANCEL_LOCK|LOCKING_ANDX_LARGE_FILES;
775 pSMB->Timeout = 0;
776 pSMB->hdr.Mid = GetNextMid(ses->server);
777
778 return SendReceive(xid, ses, in_buf, out_buf,
Jeff Layton77499812011-01-11 07:24:23 -0500779 &bytes_returned, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000780}
781
782int
Steve French96daf2b2011-05-27 04:34:02 +0000783SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000784 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
785 int *pbytes_returned)
786{
787 int rc = 0;
788 int rstart = 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000789 struct mid_q_entry *midQ;
Steve French96daf2b2011-05-27 04:34:02 +0000790 struct cifs_ses *ses;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000791
792 if (tcon == NULL || tcon->ses == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000793 cERROR(1, "Null smb session");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000794 return -EIO;
795 }
796 ses = tcon->ses;
797
Steve French79a58d12007-07-06 22:44:50 +0000798 if (ses->server == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000799 cERROR(1, "Null tcp session");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000800 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
802
Steve French79a58d12007-07-06 22:44:50 +0000803 if (ses->server->tcpStatus == CifsExiting)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000804 return -ENOENT;
805
Steve French79a58d12007-07-06 22:44:50 +0000806 /* Ensure that we do not send more than 50 overlapping requests
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000807 to the same server. We may make this configurable later or
808 use ses->maxReq */
809
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000810 if (be32_to_cpu(in_buf->smb_buf_length) > CIFSMaxBufSize +
811 MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000812 cERROR(1, "Illegal length, greater than maximum frame, %d",
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000813 be32_to_cpu(in_buf->smb_buf_length));
Volker Lendecke6d9c6d52008-12-08 20:50:24 +0000814 return -EIO;
815 }
816
Jeff Laytonc5797a92011-01-11 07:24:01 -0500817 rc = wait_for_free_request(ses->server, CIFS_BLOCKING_OP);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000818 if (rc)
819 return rc;
820
Steve French79a58d12007-07-06 22:44:50 +0000821 /* make sure that we sign in the same order that we send on this socket
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000822 and avoid races inside tcp sendmsg code that could cause corruption
823 of smb data */
824
Jeff Layton72ca5452008-12-01 07:09:36 -0500825 mutex_lock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000826
827 rc = allocate_mid(ses, in_buf, &midQ);
828 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500829 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000830 return rc;
831 }
832
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000833 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +0100834 if (rc) {
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500835 delete_mid(midQ);
Volker Lendecke829049c2008-12-06 16:00:53 +0100836 mutex_unlock(&ses->server->srv_mutex);
837 return rc;
838 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000839
840 midQ->midState = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000841 cifs_in_send_inc(ses->server);
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000842 rc = smb_send(ses->server, in_buf, be32_to_cpu(in_buf->smb_buf_length));
Steve French789e6662011-08-09 18:44:44 +0000843 cifs_in_send_dec(ses->server);
844 cifs_save_when_sent(midQ);
Jeff Layton72ca5452008-12-01 07:09:36 -0500845 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000846
Steve French79a58d12007-07-06 22:44:50 +0000847 if (rc < 0) {
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500848 delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000849 return rc;
850 }
851
852 /* Wait for a reply - allow signals to interrupt. */
853 rc = wait_event_interruptible(ses->server->response_q,
Steve French79a58d12007-07-06 22:44:50 +0000854 (!(midQ->midState == MID_REQUEST_SUBMITTED)) ||
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000855 ((ses->server->tcpStatus != CifsGood) &&
856 (ses->server->tcpStatus != CifsNew)));
857
858 /* Were we interrupted by a signal ? */
859 if ((rc == -ERESTARTSYS) &&
860 (midQ->midState == MID_REQUEST_SUBMITTED) &&
861 ((ses->server->tcpStatus == CifsGood) ||
862 (ses->server->tcpStatus == CifsNew))) {
863
864 if (in_buf->Command == SMB_COM_TRANSACTION2) {
865 /* POSIX lock. We send a NT_CANCEL SMB to cause the
866 blocking lock to return. */
Jeff Layton76dcc262011-01-11 07:24:24 -0500867 rc = send_nt_cancel(ses->server, in_buf, midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000868 if (rc) {
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500869 delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000870 return rc;
871 }
872 } else {
873 /* Windows lock. We send a LOCKINGX_CANCEL_LOCK
874 to cause the blocking lock to return. */
875
876 rc = send_lock_cancel(xid, tcon, in_buf, out_buf);
877
878 /* If we get -ENOLCK back the lock may have
879 already been removed. Don't exit in this case. */
880 if (rc && rc != -ENOLCK) {
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500881 delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000882 return rc;
883 }
884 }
885
Jeff Layton1be912d2011-01-28 07:08:28 -0500886 rc = wait_for_response(ses->server, midQ);
887 if (rc) {
Jeff Layton2db7c582011-01-28 07:08:28 -0500888 send_nt_cancel(ses->server, in_buf, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500889 spin_lock(&GlobalMid_Lock);
890 if (midQ->midState == MID_REQUEST_SUBMITTED) {
891 /* no longer considered to be "in-flight" */
892 midQ->callback = DeleteMidQEntry;
893 spin_unlock(&GlobalMid_Lock);
894 return rc;
895 }
896 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000897 }
Jeff Layton1be912d2011-01-28 07:08:28 -0500898
899 /* We got the response - restart system call. */
900 rstart = 1;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000901 }
902
Jeff Layton3c1105d2011-05-22 07:09:13 -0400903 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -0500904 if (rc != 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000905 return rc;
Steve French50c2f752007-07-13 00:33:32 +0000906
Volker Lendecke17c8bfe2008-12-06 16:38:19 +0100907 /* rcvd frame is ok */
Jeff Layton2c8f9812011-05-19 16:22:52 -0400908 if (out_buf == NULL || midQ->midState != MID_RESPONSE_RECEIVED) {
Volker Lendecke17c8bfe2008-12-06 16:38:19 +0100909 rc = -EIO;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000910 cERROR(1, "Bad MID state?");
Volker Lendecke698e96a2008-12-06 16:39:31 +0100911 goto out;
Volker Lendecke17c8bfe2008-12-06 16:38:19 +0100912 }
913
Jeff Layton2c8f9812011-05-19 16:22:52 -0400914 *pbytes_returned = be32_to_cpu(midQ->resp_buf->smb_buf_length);
915 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
916 rc = cifs_check_receive(midQ, ses->server, 0);
Volker Lendecke17c8bfe2008-12-06 16:38:19 +0100917out:
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500918 delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000919 if (rstart && rc == -EACCES)
920 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return rc;
922}