Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/transport.c |
| 3 | * |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 4 | * Copyright (C) International Business Machines Corp., 2002,2008 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Author(s): Steve French (sfrench@us.ibm.com) |
Steve French | 14a441a2b | 2006-07-16 04:32:51 +0000 | [diff] [blame] | 6 | * Jeremy Allison (jra@samba.org) 2006. |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 7 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * This library is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU Lesser General Public License as published |
| 10 | * by the Free Software Foundation; either version 2.1 of the License, or |
| 11 | * (at your option) any later version. |
| 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 French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | #include <linux/fs.h> |
| 24 | #include <linux/list.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 25 | #include <linux/gfp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/wait.h> |
| 27 | #include <linux/net.h> |
| 28 | #include <linux/delay.h> |
Jeff Layton | f06ac72 | 2011-10-19 15:30:40 -0400 | [diff] [blame] | 29 | #include <linux/freezer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #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 French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | extern mempool_t *cifs_mid_poolp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Jeff Layton | 2b84a36c | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 40 | static void |
| 41 | wake_up_task(struct mid_q_entry *mid) |
| 42 | { |
| 43 | wake_up_process(mid->callback_data); |
| 44 | } |
| 45 | |
Jeff Layton | a6827c1 | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 46 | struct mid_q_entry * |
Jeff Layton | 24b9b06 | 2008-12-01 07:09:34 -0500 | [diff] [blame] | 47 | AllocMidQEntry(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | { |
| 49 | struct mid_q_entry *temp; |
| 50 | |
Jeff Layton | 24b9b06 | 2008-12-01 07:09:34 -0500 | [diff] [blame] | 51 | if (server == NULL) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 52 | cERROR(1, "Null TCP session in AllocMidQEntry"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | return NULL; |
| 54 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 55 | |
Pekka Enberg | 232087c | 2008-09-15 13:22:54 +0300 | [diff] [blame] | 56 | temp = mempool_alloc(cifs_mid_poolp, GFP_NOFS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | if (temp == NULL) |
| 58 | return temp; |
| 59 | else { |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 60 | memset(temp, 0, sizeof(struct mid_q_entry)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | temp->mid = smb_buffer->Mid; /* always LE */ |
| 62 | temp->pid = current->pid; |
| 63 | temp->command = smb_buffer->Command; |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 64 | cFYI(1, "For smb_command %d", temp->command); |
Steve French | 1047abc | 2005-10-11 19:58:06 -0700 | [diff] [blame] | 65 | /* do_gettimeofday(&temp->when_sent);*/ /* easier to use jiffies */ |
| 66 | /* when mid allocated can be before when sent */ |
| 67 | temp->when_alloc = jiffies; |
Jeff Layton | 2b84a36c | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 68 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | } |
| 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | atomic_inc(&midCount); |
| 78 | temp->midState = MID_REQUEST_ALLOCATED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | return temp; |
| 80 | } |
| 81 | |
Jeff Layton | 766fdbb | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 82 | void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | DeleteMidQEntry(struct mid_q_entry *midEntry) |
| 84 | { |
Steve French | 1047abc | 2005-10-11 19:58:06 -0700 | [diff] [blame] | 85 | #ifdef CONFIG_CIFS_STATS2 |
| 86 | unsigned long now; |
| 87 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | midEntry->midState = MID_FREE; |
Jeff Layton | 8097531 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 89 | atomic_dec(&midCount); |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 90 | if (midEntry->largeBuf) |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 91 | cifs_buf_release(midEntry->resp_buf); |
| 92 | else |
| 93 | cifs_small_buf_release(midEntry->resp_buf); |
Steve French | 1047abc | 2005-10-11 19:58:06 -0700 | [diff] [blame] | 94 | #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 French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 98 | if ((now - midEntry->when_alloc) > HZ) { |
| 99 | if ((cifsFYI & CIFS_TIMER) && |
Steve French | 1047abc | 2005-10-11 19:58:06 -0700 | [diff] [blame] | 100 | (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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | mempool_free(midEntry, cifs_mid_poolp); |
| 111 | } |
| 112 | |
Jeff Layton | ddc8cf8 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 113 | static void |
| 114 | delete_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 French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 123 | static int |
Jeff Layton | 0496e02 | 2008-12-30 12:39:16 -0500 | [diff] [blame] | 124 | smb_sendv(struct TCP_Server_Info *server, struct kvec *iov, int n_vec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | { |
| 126 | int rc = 0; |
| 127 | int i = 0; |
| 128 | struct msghdr smb_msg; |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 129 | 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 French | be8e3b0 | 2011-04-29 05:40:20 +0000 | [diff] [blame] | 133 | unsigned int smb_buf_length = be32_to_cpu(smb_buffer->smb_buf_length); |
Steve French | edf1ae4 | 2008-10-29 00:47:57 +0000 | [diff] [blame] | 134 | struct socket *ssocket = server->ssocket; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 135 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 136 | if (ssocket == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | return -ENOTSOCK; /* BB eventually add reconnect code here */ |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 138 | |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 139 | smb_msg.msg_name = (struct sockaddr *) &server->dstaddr; |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 140 | smb_msg.msg_namelen = sizeof(struct sockaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | smb_msg.msg_control = NULL; |
| 142 | smb_msg.msg_controllen = 0; |
Jeff Layton | 0496e02 | 2008-12-30 12:39:16 -0500 | [diff] [blame] | 143 | if (server->noblocksnd) |
Steve French | edf1ae4 | 2008-10-29 00:47:57 +0000 | [diff] [blame] | 144 | smb_msg.msg_flags = MSG_DONTWAIT + MSG_NOSIGNAL; |
| 145 | else |
| 146 | smb_msg.msg_flags = MSG_NOSIGNAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 148 | total_len = 0; |
| 149 | for (i = 0; i < n_vec; i++) |
| 150 | total_len += iov[i].iov_len; |
| 151 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 152 | cFYI(1, "Sending smb: total_len %d", total_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | dump_smb(smb_buffer, len); |
| 154 | |
Shirish Pargaonkar | 1768035 | 2008-07-29 21:26:13 +0000 | [diff] [blame] | 155 | i = 0; |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 156 | while (total_len) { |
| 157 | rc = kernel_sendmsg(ssocket, &smb_msg, &iov[first_vec], |
| 158 | n_vec - first_vec, total_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | if ((rc == -ENOSPC) || (rc == -EAGAIN)) { |
| 160 | i++; |
Steve French | da505c3 | 2009-01-19 03:49:35 +0000 | [diff] [blame] | 161 | /* 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 Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 180 | cERROR(1, "sends on sock %p stuck for 15 seconds", |
| 181 | ssocket); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | rc = -EAGAIN; |
| 183 | break; |
| 184 | } |
Steve French | 68058e7 | 2005-10-10 10:34:22 -0700 | [diff] [blame] | 185 | msleep(1 << i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | continue; |
| 187 | } |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 188 | if (rc < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | break; |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 190 | |
Steve French | 61de800 | 2008-10-30 20:15:22 +0000 | [diff] [blame] | 191 | if (rc == total_len) { |
| 192 | total_len = 0; |
| 193 | break; |
| 194 | } else if (rc > total_len) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 195 | cERROR(1, "sent %d requested %d", rc, total_len); |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 196 | break; |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 197 | } |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 198 | if (rc == 0) { |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 199 | /* should never happen, letting socket clear before |
| 200 | retrying is our only obvious option here */ |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 201 | cERROR(1, "tcp sent no data"); |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 202 | msleep(500); |
| 203 | continue; |
| 204 | } |
| 205 | total_len -= rc; |
Steve French | 68058e7 | 2005-10-10 10:34:22 -0700 | [diff] [blame] | 206 | /* the line below resets i */ |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 207 | 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 French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 219 | } |
Steve French | 5e1253b | 2005-10-10 14:06:37 -0700 | [diff] [blame] | 220 | i = 0; /* in case we get ENOSPC on the next send */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | } |
| 222 | |
Steve French | edf1ae4 | 2008-10-29 00:47:57 +0000 | [diff] [blame] | 223 | if ((total_len > 0) && (total_len != smb_buf_length + 4)) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 224 | cFYI(1, "partial send (%d remaining), terminating session", |
| 225 | total_len); |
Steve French | edf1ae4 | 2008-10-29 00:47:57 +0000 | [diff] [blame] | 226 | /* 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 Layton | d804d41 | 2011-01-28 15:05:43 -0500 | [diff] [blame] | 233 | if (rc < 0 && rc != -EINTR) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 234 | cERROR(1, "Error %d sending data on socket to server", rc); |
Jeff Layton | d804d41 | 2011-01-28 15:05:43 -0500 | [diff] [blame] | 235 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 238 | /* Don't want to modify the buffer as a |
| 239 | side effect of this call. */ |
Steve French | be8e3b0 | 2011-04-29 05:40:20 +0000 | [diff] [blame] | 240 | smb_buffer->smb_buf_length = cpu_to_be32(smb_buf_length); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 241 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | return rc; |
| 243 | } |
| 244 | |
Jeff Layton | 0496e02 | 2008-12-30 12:39:16 -0500 | [diff] [blame] | 245 | int |
| 246 | smb_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 | |
Jeff Layton | c5797a9 | 2011-01-11 07:24:01 -0500 | [diff] [blame] | 257 | static int wait_for_free_request(struct TCP_Server_Info *server, |
| 258 | const int long_op) |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 259 | { |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 260 | if (long_op == CIFS_ASYNC_OP) { |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 261 | /* oplock breaks must not be held up */ |
Jeff Layton | c5797a9 | 2011-01-11 07:24:01 -0500 | [diff] [blame] | 262 | atomic_inc(&server->inFlight); |
Volker Lendecke | 27a97a6 | 2008-12-08 20:59:39 +0000 | [diff] [blame] | 263 | return 0; |
| 264 | } |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 265 | |
Volker Lendecke | 27a97a6 | 2008-12-08 20:59:39 +0000 | [diff] [blame] | 266 | spin_lock(&GlobalMid_Lock); |
| 267 | while (1) { |
Jeff Layton | c5797a9 | 2011-01-11 07:24:01 -0500 | [diff] [blame] | 268 | if (atomic_read(&server->inFlight) >= cifs_max_pending) { |
Volker Lendecke | 27a97a6 | 2008-12-08 20:59:39 +0000 | [diff] [blame] | 269 | spin_unlock(&GlobalMid_Lock); |
Steve French | 789e666 | 2011-08-09 18:44:44 +0000 | [diff] [blame] | 270 | cifs_num_waiters_inc(server); |
Jeff Layton | c5797a9 | 2011-01-11 07:24:01 -0500 | [diff] [blame] | 271 | wait_event(server->request_q, |
| 272 | atomic_read(&server->inFlight) |
Volker Lendecke | 27a97a6 | 2008-12-08 20:59:39 +0000 | [diff] [blame] | 273 | < cifs_max_pending); |
Steve French | 789e666 | 2011-08-09 18:44:44 +0000 | [diff] [blame] | 274 | cifs_num_waiters_dec(server); |
Volker Lendecke | 27a97a6 | 2008-12-08 20:59:39 +0000 | [diff] [blame] | 275 | spin_lock(&GlobalMid_Lock); |
| 276 | } else { |
Jeff Layton | c5797a9 | 2011-01-11 07:24:01 -0500 | [diff] [blame] | 277 | if (server->tcpStatus == CifsExiting) { |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 278 | spin_unlock(&GlobalMid_Lock); |
Volker Lendecke | 27a97a6 | 2008-12-08 20:59:39 +0000 | [diff] [blame] | 279 | return -ENOENT; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 280 | } |
Volker Lendecke | 27a97a6 | 2008-12-08 20:59:39 +0000 | [diff] [blame] | 281 | |
| 282 | /* can not count locking commands against total |
| 283 | as they are allowed to block on server */ |
| 284 | |
| 285 | /* update # of requests on the wire to server */ |
| 286 | if (long_op != CIFS_BLOCKING_OP) |
Jeff Layton | c5797a9 | 2011-01-11 07:24:01 -0500 | [diff] [blame] | 287 | atomic_inc(&server->inFlight); |
Volker Lendecke | 27a97a6 | 2008-12-08 20:59:39 +0000 | [diff] [blame] | 288 | spin_unlock(&GlobalMid_Lock); |
| 289 | break; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 290 | } |
| 291 | } |
| 292 | return 0; |
| 293 | } |
| 294 | |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 295 | static int allocate_mid(struct cifs_ses *ses, struct smb_hdr *in_buf, |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 296 | struct mid_q_entry **ppmidQ) |
| 297 | { |
| 298 | if (ses->server->tcpStatus == CifsExiting) { |
| 299 | return -ENOENT; |
Volker Lendecke | 8fbbd36 | 2008-12-06 13:12:34 +0100 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | if (ses->server->tcpStatus == CifsNeedReconnect) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 303 | cFYI(1, "tcp session dead - return to caller to retry"); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 304 | return -EAGAIN; |
Volker Lendecke | 8fbbd36 | 2008-12-06 13:12:34 +0100 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | if (ses->status != CifsGood) { |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 308 | /* check if SMB session is bad because we are setting it up */ |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 309 | if ((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) && |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 310 | (in_buf->Command != SMB_COM_NEGOTIATE)) |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 311 | return -EAGAIN; |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 312 | /* else ok - we are setting up session */ |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 313 | } |
Jeff Layton | 24b9b06 | 2008-12-01 07:09:34 -0500 | [diff] [blame] | 314 | *ppmidQ = AllocMidQEntry(in_buf, ses->server); |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 315 | if (*ppmidQ == NULL) |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 316 | return -ENOMEM; |
Jeff Layton | ddc8cf8 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 317 | spin_lock(&GlobalMid_Lock); |
| 318 | list_add_tail(&(*ppmidQ)->qhead, &ses->server->pending_mid_q); |
| 319 | spin_unlock(&GlobalMid_Lock); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 320 | return 0; |
| 321 | } |
| 322 | |
Jeff Layton | 0ade640 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 323 | static int |
| 324 | wait_for_response(struct TCP_Server_Info *server, struct mid_q_entry *midQ) |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 325 | { |
Jeff Layton | 0ade640 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 326 | int error; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 327 | |
Jeff Layton | f06ac72 | 2011-10-19 15:30:40 -0400 | [diff] [blame] | 328 | error = wait_event_freezekillable(server->response_q, |
Jeff Layton | 0ade640 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 329 | midQ->midState != MID_REQUEST_SUBMITTED); |
| 330 | if (error < 0) |
| 331 | return -ERESTARTSYS; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 332 | |
Jeff Layton | 0ade640 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 333 | return 0; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 334 | } |
| 335 | |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 336 | |
| 337 | /* |
Jeff Layton | a6827c1 | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 338 | * Send a SMB request and set the callback function in the mid to handle |
| 339 | * the result. Caller is responsible for dealing with timeouts. |
| 340 | */ |
| 341 | int |
Jeff Layton | fcc31cb | 2011-05-19 16:22:53 -0400 | [diff] [blame] | 342 | cifs_call_async(struct TCP_Server_Info *server, struct kvec *iov, |
Jeff Layton | 44d22d8 | 2011-10-19 15:29:49 -0400 | [diff] [blame] | 343 | unsigned int nvec, mid_receive_t *receive, |
| 344 | mid_callback_t *callback, void *cbdata, bool ignore_pend) |
Jeff Layton | a6827c1 | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 345 | { |
| 346 | int rc; |
| 347 | struct mid_q_entry *mid; |
Jeff Layton | fcc31cb | 2011-05-19 16:22:53 -0400 | [diff] [blame] | 348 | struct smb_hdr *hdr = (struct smb_hdr *)iov[0].iov_base; |
Jeff Layton | a6827c1 | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 349 | |
Jeff Layton | 59ffd84 | 2011-05-19 16:22:55 -0400 | [diff] [blame] | 350 | rc = wait_for_free_request(server, ignore_pend ? CIFS_ASYNC_OP : 0); |
Jeff Layton | a6827c1 | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 351 | if (rc) |
| 352 | return rc; |
| 353 | |
Jeff Layton | e3f0dad | 2011-02-04 07:21:26 -0500 | [diff] [blame] | 354 | /* enable signing if server requires it */ |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 355 | if (server->sec_mode & (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) |
Jeff Layton | fcc31cb | 2011-05-19 16:22:53 -0400 | [diff] [blame] | 356 | hdr->Flags2 |= SMBFLG2_SECURITY_SIGNATURE; |
Jeff Layton | e3f0dad | 2011-02-04 07:21:26 -0500 | [diff] [blame] | 357 | |
Jeff Layton | a6827c1 | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 358 | mutex_lock(&server->srv_mutex); |
Jeff Layton | fcc31cb | 2011-05-19 16:22:53 -0400 | [diff] [blame] | 359 | mid = AllocMidQEntry(hdr, server); |
Jeff Layton | a6827c1 | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 360 | if (mid == NULL) { |
| 361 | mutex_unlock(&server->srv_mutex); |
Pavel Shilovsky | 0193e07 | 2011-08-03 23:12:18 +0400 | [diff] [blame] | 362 | atomic_dec(&server->inFlight); |
| 363 | wake_up(&server->request_q); |
Jeff Layton | a6827c1 | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 364 | return -ENOMEM; |
| 365 | } |
| 366 | |
| 367 | /* put it on the pending_mid_q */ |
| 368 | spin_lock(&GlobalMid_Lock); |
| 369 | list_add_tail(&mid->qhead, &server->pending_mid_q); |
| 370 | spin_unlock(&GlobalMid_Lock); |
| 371 | |
Jeff Layton | fcc31cb | 2011-05-19 16:22:53 -0400 | [diff] [blame] | 372 | rc = cifs_sign_smb2(iov, nvec, server, &mid->sequence_number); |
Jeff Layton | a6827c1 | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 373 | if (rc) { |
| 374 | mutex_unlock(&server->srv_mutex); |
| 375 | goto out_err; |
| 376 | } |
| 377 | |
Jeff Layton | 44d22d8 | 2011-10-19 15:29:49 -0400 | [diff] [blame] | 378 | mid->receive = receive; |
Jeff Layton | a6827c1 | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 379 | mid->callback = callback; |
| 380 | mid->callback_data = cbdata; |
| 381 | mid->midState = MID_REQUEST_SUBMITTED; |
Steve French | 789e666 | 2011-08-09 18:44:44 +0000 | [diff] [blame] | 382 | |
| 383 | cifs_in_send_inc(server); |
Jeff Layton | fcc31cb | 2011-05-19 16:22:53 -0400 | [diff] [blame] | 384 | rc = smb_sendv(server, iov, nvec); |
Steve French | 789e666 | 2011-08-09 18:44:44 +0000 | [diff] [blame] | 385 | cifs_in_send_dec(server); |
| 386 | cifs_save_when_sent(mid); |
Jeff Layton | a6827c1 | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 387 | mutex_unlock(&server->srv_mutex); |
Steve French | 789e666 | 2011-08-09 18:44:44 +0000 | [diff] [blame] | 388 | |
Jeff Layton | a6827c1 | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 389 | if (rc) |
| 390 | goto out_err; |
| 391 | |
| 392 | return rc; |
| 393 | out_err: |
| 394 | delete_mid(mid); |
| 395 | atomic_dec(&server->inFlight); |
| 396 | wake_up(&server->request_q); |
| 397 | return rc; |
| 398 | } |
| 399 | |
| 400 | /* |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 401 | * |
| 402 | * Send an SMB Request. No response info (other than return code) |
| 403 | * needs to be parsed. |
| 404 | * |
| 405 | * flags indicate the type of request buffer and how long to wait |
| 406 | * and whether to log NT STATUS code (error) before mapping it to POSIX error |
| 407 | * |
| 408 | */ |
| 409 | int |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 410 | SendReceiveNoRsp(const unsigned int xid, struct cifs_ses *ses, |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 411 | struct smb_hdr *in_buf, int flags) |
| 412 | { |
| 413 | int rc; |
| 414 | struct kvec iov[1]; |
| 415 | int resp_buf_type; |
| 416 | |
| 417 | iov[0].iov_base = (char *)in_buf; |
Steve French | be8e3b0 | 2011-04-29 05:40:20 +0000 | [diff] [blame] | 418 | iov[0].iov_len = be32_to_cpu(in_buf->smb_buf_length) + 4; |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 419 | flags |= CIFS_NO_RESP; |
| 420 | rc = SendReceive2(xid, ses, iov, 1, &resp_buf_type, flags); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 421 | cFYI(DBG2, "SendRcvNoRsp flags %d rc %d", flags, rc); |
Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 422 | |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 423 | return rc; |
| 424 | } |
| 425 | |
Jeff Layton | 053d503 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 426 | static int |
Jeff Layton | 3c1105d | 2011-05-22 07:09:13 -0400 | [diff] [blame] | 427 | cifs_sync_mid_result(struct mid_q_entry *mid, struct TCP_Server_Info *server) |
Jeff Layton | 053d503 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 428 | { |
| 429 | int rc = 0; |
| 430 | |
Jeff Layton | 74dd92a | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 431 | cFYI(1, "%s: cmd=%d mid=%d state=%d", __func__, mid->command, |
| 432 | mid->mid, mid->midState); |
Jeff Layton | 053d503 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 433 | |
Jeff Layton | 74dd92a | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 434 | spin_lock(&GlobalMid_Lock); |
| 435 | switch (mid->midState) { |
| 436 | case MID_RESPONSE_RECEIVED: |
Jeff Layton | 053d503 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 437 | spin_unlock(&GlobalMid_Lock); |
| 438 | return rc; |
Jeff Layton | 74dd92a | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 439 | case MID_RETRY_NEEDED: |
| 440 | rc = -EAGAIN; |
| 441 | break; |
Jeff Layton | 71823ba | 2011-02-10 08:03:50 -0500 | [diff] [blame] | 442 | case MID_RESPONSE_MALFORMED: |
| 443 | rc = -EIO; |
| 444 | break; |
Jeff Layton | 3c1105d | 2011-05-22 07:09:13 -0400 | [diff] [blame] | 445 | case MID_SHUTDOWN: |
| 446 | rc = -EHOSTDOWN; |
| 447 | break; |
Jeff Layton | 74dd92a | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 448 | default: |
Jeff Layton | 3c1105d | 2011-05-22 07:09:13 -0400 | [diff] [blame] | 449 | list_del_init(&mid->qhead); |
Jeff Layton | 74dd92a | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 450 | cERROR(1, "%s: invalid mid state mid=%d state=%d", __func__, |
| 451 | mid->mid, mid->midState); |
| 452 | rc = -EIO; |
Jeff Layton | 053d503 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 453 | } |
| 454 | spin_unlock(&GlobalMid_Lock); |
| 455 | |
Jeff Layton | 2b84a36c | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 456 | DeleteMidQEntry(mid); |
Jeff Layton | 053d503 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 457 | return rc; |
| 458 | } |
| 459 | |
Jeff Layton | 76dcc26 | 2011-01-11 07:24:24 -0500 | [diff] [blame] | 460 | /* |
| 461 | * An NT cancel request header looks just like the original request except: |
| 462 | * |
| 463 | * The Command is SMB_COM_NT_CANCEL |
| 464 | * The WordCount is zeroed out |
| 465 | * The ByteCount is zeroed out |
| 466 | * |
| 467 | * This function mangles an existing request buffer into a |
| 468 | * SMB_COM_NT_CANCEL request and then sends it. |
| 469 | */ |
| 470 | static int |
| 471 | send_nt_cancel(struct TCP_Server_Info *server, struct smb_hdr *in_buf, |
| 472 | struct mid_q_entry *mid) |
| 473 | { |
| 474 | int rc = 0; |
| 475 | |
| 476 | /* -4 for RFC1001 length and +2 for BCC field */ |
Steve French | be8e3b0 | 2011-04-29 05:40:20 +0000 | [diff] [blame] | 477 | in_buf->smb_buf_length = cpu_to_be32(sizeof(struct smb_hdr) - 4 + 2); |
Jeff Layton | 76dcc26 | 2011-01-11 07:24:24 -0500 | [diff] [blame] | 478 | in_buf->Command = SMB_COM_NT_CANCEL; |
| 479 | in_buf->WordCount = 0; |
Jeff Layton | 820a803 | 2011-05-04 08:05:26 -0400 | [diff] [blame] | 480 | put_bcc(0, in_buf); |
Jeff Layton | 76dcc26 | 2011-01-11 07:24:24 -0500 | [diff] [blame] | 481 | |
| 482 | mutex_lock(&server->srv_mutex); |
| 483 | rc = cifs_sign_smb(in_buf, server, &mid->sequence_number); |
| 484 | if (rc) { |
| 485 | mutex_unlock(&server->srv_mutex); |
| 486 | return rc; |
| 487 | } |
Steve French | be8e3b0 | 2011-04-29 05:40:20 +0000 | [diff] [blame] | 488 | rc = smb_send(server, in_buf, be32_to_cpu(in_buf->smb_buf_length)); |
Jeff Layton | 76dcc26 | 2011-01-11 07:24:24 -0500 | [diff] [blame] | 489 | mutex_unlock(&server->srv_mutex); |
| 490 | |
| 491 | cFYI(1, "issued NT_CANCEL for mid %u, rc = %d", |
| 492 | in_buf->Mid, rc); |
| 493 | |
| 494 | return rc; |
| 495 | } |
| 496 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | int |
Jeff Layton | 2c8f981 | 2011-05-19 16:22:52 -0400 | [diff] [blame] | 498 | cifs_check_receive(struct mid_q_entry *mid, struct TCP_Server_Info *server, |
| 499 | bool log_error) |
| 500 | { |
Jeff Layton | 826a95e | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 501 | unsigned int len = be32_to_cpu(mid->resp_buf->smb_buf_length) + 4; |
| 502 | |
| 503 | dump_smb(mid->resp_buf, min_t(u32, 92, len)); |
Jeff Layton | 2c8f981 | 2011-05-19 16:22:52 -0400 | [diff] [blame] | 504 | |
| 505 | /* convert the length into a more usable form */ |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 506 | if (server->sec_mode & (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) { |
Jeff Layton | 826a95e | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 507 | struct kvec iov; |
| 508 | |
| 509 | iov.iov_base = mid->resp_buf; |
| 510 | iov.iov_len = len; |
Jeff Layton | 2c8f981 | 2011-05-19 16:22:52 -0400 | [diff] [blame] | 511 | /* FIXME: add code to kill session */ |
Jeff Layton | 826a95e | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 512 | if (cifs_verify_signature(&iov, 1, server, |
Jeff Layton | 2c8f981 | 2011-05-19 16:22:52 -0400 | [diff] [blame] | 513 | mid->sequence_number + 1) != 0) |
| 514 | cERROR(1, "Unexpected SMB signature"); |
| 515 | } |
| 516 | |
| 517 | /* BB special case reconnect tid and uid here? */ |
| 518 | return map_smb_to_linux_error(mid->resp_buf, log_error); |
| 519 | } |
| 520 | |
| 521 | int |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 522 | SendReceive2(const unsigned int xid, struct cifs_ses *ses, |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 523 | struct kvec *iov, int n_vec, int *pRespBufType /* ret */, |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 524 | const int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | { |
| 526 | int rc = 0; |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 527 | int long_op; |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 528 | struct mid_q_entry *midQ; |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 529 | struct smb_hdr *in_buf = iov[0].iov_base; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 530 | |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 531 | long_op = flags & CIFS_TIMEOUT_MASK; |
| 532 | |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 533 | *pRespBufType = CIFS_NO_BUFFER; /* no response buf yet */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | |
Steve French | 4b8f930 | 2006-02-26 16:41:18 +0000 | [diff] [blame] | 535 | if ((ses == NULL) || (ses->server == NULL)) { |
| 536 | cifs_small_buf_release(in_buf); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 537 | cERROR(1, "Null session"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | return -EIO; |
| 539 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 541 | if (ses->server->tcpStatus == CifsExiting) { |
Steve French | 4b8f930 | 2006-02-26 16:41:18 +0000 | [diff] [blame] | 542 | cifs_small_buf_release(in_buf); |
Steve French | 31ca3bc | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 543 | return -ENOENT; |
Steve French | 4b8f930 | 2006-02-26 16:41:18 +0000 | [diff] [blame] | 544 | } |
Steve French | 31ca3bc | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 545 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 546 | /* Ensure that we do not send more than 50 overlapping requests |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | to the same server. We may make this configurable later or |
| 548 | use ses->maxReq */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | |
Jeff Layton | c5797a9 | 2011-01-11 07:24:01 -0500 | [diff] [blame] | 550 | rc = wait_for_free_request(ses->server, long_op); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 551 | if (rc) { |
| 552 | cifs_small_buf_release(in_buf); |
| 553 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | } |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 555 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 556 | /* make sure that we sign in the same order that we send on this socket |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | and avoid races inside tcp sendmsg code that could cause corruption |
| 558 | of smb data */ |
| 559 | |
Jeff Layton | 72ca545 | 2008-12-01 07:09:36 -0500 | [diff] [blame] | 560 | mutex_lock(&ses->server->srv_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 562 | rc = allocate_mid(ses, in_buf, &midQ); |
| 563 | if (rc) { |
Jeff Layton | 72ca545 | 2008-12-01 07:09:36 -0500 | [diff] [blame] | 564 | mutex_unlock(&ses->server->srv_mutex); |
Steve French | 4b8f930 | 2006-02-26 16:41:18 +0000 | [diff] [blame] | 565 | cifs_small_buf_release(in_buf); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 566 | /* Update # of requests on wire to server */ |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 567 | atomic_dec(&ses->server->inFlight); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 568 | wake_up(&ses->server->request_q); |
| 569 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | } |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 571 | rc = cifs_sign_smb2(iov, n_vec, ses->server, &midQ->sequence_number); |
Volker Lendecke | 829049c | 2008-12-06 16:00:53 +0100 | [diff] [blame] | 572 | if (rc) { |
| 573 | mutex_unlock(&ses->server->srv_mutex); |
| 574 | cifs_small_buf_release(in_buf); |
| 575 | goto out; |
| 576 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | |
| 578 | midQ->midState = MID_REQUEST_SUBMITTED; |
Steve French | 789e666 | 2011-08-09 18:44:44 +0000 | [diff] [blame] | 579 | cifs_in_send_inc(ses->server); |
Jeff Layton | 0496e02 | 2008-12-30 12:39:16 -0500 | [diff] [blame] | 580 | rc = smb_sendv(ses->server, iov, n_vec); |
Steve French | 789e666 | 2011-08-09 18:44:44 +0000 | [diff] [blame] | 581 | cifs_in_send_dec(ses->server); |
| 582 | cifs_save_when_sent(midQ); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 583 | |
Jeff Layton | 72ca545 | 2008-12-01 07:09:36 -0500 | [diff] [blame] | 584 | mutex_unlock(&ses->server->srv_mutex); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 585 | |
Jeff Layton | 2db7c58 | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 586 | if (rc < 0) { |
| 587 | cifs_small_buf_release(in_buf); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 588 | goto out; |
Jeff Layton | 2db7c58 | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 589 | } |
Steve French | 4b8f930 | 2006-02-26 16:41:18 +0000 | [diff] [blame] | 590 | |
Jeff Layton | 2db7c58 | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 591 | if (long_op == CIFS_ASYNC_OP) { |
| 592 | cifs_small_buf_release(in_buf); |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 593 | goto out; |
Jeff Layton | 2db7c58 | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 594 | } |
Jeff Layton | 0ade640 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 595 | |
| 596 | rc = wait_for_response(ses->server, midQ); |
Jeff Layton | 1be912d | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 597 | if (rc != 0) { |
Jeff Layton | 2db7c58 | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 598 | send_nt_cancel(ses->server, in_buf, midQ); |
Jeff Layton | 1be912d | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 599 | spin_lock(&GlobalMid_Lock); |
| 600 | if (midQ->midState == MID_REQUEST_SUBMITTED) { |
| 601 | midQ->callback = DeleteMidQEntry; |
| 602 | spin_unlock(&GlobalMid_Lock); |
Jeff Layton | 2db7c58 | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 603 | cifs_small_buf_release(in_buf); |
Jeff Layton | 1be912d | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 604 | atomic_dec(&ses->server->inFlight); |
| 605 | wake_up(&ses->server->request_q); |
| 606 | return rc; |
| 607 | } |
| 608 | spin_unlock(&GlobalMid_Lock); |
| 609 | } |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 610 | |
Jeff Layton | 2db7c58 | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 611 | cifs_small_buf_release(in_buf); |
| 612 | |
Jeff Layton | 3c1105d | 2011-05-22 07:09:13 -0400 | [diff] [blame] | 613 | rc = cifs_sync_mid_result(midQ, ses->server); |
Jeff Layton | 053d503 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 614 | if (rc != 0) { |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 615 | atomic_dec(&ses->server->inFlight); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 616 | wake_up(&ses->server->request_q); |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 617 | return rc; |
| 618 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 619 | |
Jeff Layton | 2c8f981 | 2011-05-19 16:22:52 -0400 | [diff] [blame] | 620 | if (!midQ->resp_buf || midQ->midState != MID_RESPONSE_RECEIVED) { |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 621 | rc = -EIO; |
Jeff Layton | 2c8f981 | 2011-05-19 16:22:52 -0400 | [diff] [blame] | 622 | cFYI(1, "Bad MID state?"); |
Steve French | 2b2bdfb | 2008-12-11 17:26:54 +0000 | [diff] [blame] | 623 | goto out; |
| 624 | } |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 625 | |
Jeff Layton | 2c8f981 | 2011-05-19 16:22:52 -0400 | [diff] [blame] | 626 | iov[0].iov_base = (char *)midQ->resp_buf; |
| 627 | iov[0].iov_len = be32_to_cpu(midQ->resp_buf->smb_buf_length) + 4; |
| 628 | if (midQ->largeBuf) |
| 629 | *pRespBufType = CIFS_LARGE_BUFFER; |
| 630 | else |
| 631 | *pRespBufType = CIFS_SMALL_BUFFER; |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 632 | |
Jeff Layton | 2c8f981 | 2011-05-19 16:22:52 -0400 | [diff] [blame] | 633 | rc = cifs_check_receive(midQ, ses->server, flags & CIFS_LOG_ERROR); |
Steve French | 2b2bdfb | 2008-12-11 17:26:54 +0000 | [diff] [blame] | 634 | |
Jeff Layton | 2c8f981 | 2011-05-19 16:22:52 -0400 | [diff] [blame] | 635 | /* mark it so buf will not be freed by delete_mid */ |
| 636 | if ((flags & CIFS_NO_RESP) == 0) |
| 637 | midQ->resp_buf = NULL; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 638 | out: |
Jeff Layton | ddc8cf8 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 639 | delete_mid(midQ); |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 640 | atomic_dec(&ses->server->inFlight); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 641 | wake_up(&ses->server->request_q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | |
| 643 | return rc; |
| 644 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | |
| 646 | int |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 647 | SendReceive(const unsigned int xid, struct cifs_ses *ses, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | struct smb_hdr *in_buf, struct smb_hdr *out_buf, |
| 649 | int *pbytes_returned, const int long_op) |
| 650 | { |
| 651 | int rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | struct mid_q_entry *midQ; |
| 653 | |
| 654 | if (ses == NULL) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 655 | cERROR(1, "Null smb session"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | return -EIO; |
| 657 | } |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 658 | if (ses->server == NULL) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 659 | cERROR(1, "Null tcp session"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | return -EIO; |
| 661 | } |
| 662 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 663 | if (ses->server->tcpStatus == CifsExiting) |
Steve French | 31ca3bc | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 664 | return -ENOENT; |
| 665 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 666 | /* Ensure that we do not send more than 50 overlapping requests |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | to the same server. We may make this configurable later or |
| 668 | use ses->maxReq */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | |
Steve French | be8e3b0 | 2011-04-29 05:40:20 +0000 | [diff] [blame] | 670 | if (be32_to_cpu(in_buf->smb_buf_length) > CIFSMaxBufSize + |
| 671 | MAX_CIFS_HDR_SIZE - 4) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 672 | cERROR(1, "Illegal length, greater than maximum frame, %d", |
Steve French | be8e3b0 | 2011-04-29 05:40:20 +0000 | [diff] [blame] | 673 | be32_to_cpu(in_buf->smb_buf_length)); |
Volker Lendecke | 6d9c6d5 | 2008-12-08 20:50:24 +0000 | [diff] [blame] | 674 | return -EIO; |
| 675 | } |
| 676 | |
Jeff Layton | c5797a9 | 2011-01-11 07:24:01 -0500 | [diff] [blame] | 677 | rc = wait_for_free_request(ses->server, long_op); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 678 | if (rc) |
| 679 | return rc; |
| 680 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 681 | /* make sure that we sign in the same order that we send on this socket |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | and avoid races inside tcp sendmsg code that could cause corruption |
| 683 | of smb data */ |
| 684 | |
Jeff Layton | 72ca545 | 2008-12-01 07:09:36 -0500 | [diff] [blame] | 685 | mutex_lock(&ses->server->srv_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 687 | rc = allocate_mid(ses, in_buf, &midQ); |
| 688 | if (rc) { |
Jeff Layton | 72ca545 | 2008-12-01 07:09:36 -0500 | [diff] [blame] | 689 | mutex_unlock(&ses->server->srv_mutex); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 690 | /* Update # of requests on wire to server */ |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 691 | atomic_dec(&ses->server->inFlight); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 692 | wake_up(&ses->server->request_q); |
| 693 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | } |
| 695 | |
Steve French | ad009ac | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 696 | rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number); |
Volker Lendecke | 829049c | 2008-12-06 16:00:53 +0100 | [diff] [blame] | 697 | if (rc) { |
| 698 | mutex_unlock(&ses->server->srv_mutex); |
| 699 | goto out; |
| 700 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | |
| 702 | midQ->midState = MID_REQUEST_SUBMITTED; |
Steve French | 789e666 | 2011-08-09 18:44:44 +0000 | [diff] [blame] | 703 | |
| 704 | cifs_in_send_inc(ses->server); |
Steve French | be8e3b0 | 2011-04-29 05:40:20 +0000 | [diff] [blame] | 705 | rc = smb_send(ses->server, in_buf, be32_to_cpu(in_buf->smb_buf_length)); |
Steve French | 789e666 | 2011-08-09 18:44:44 +0000 | [diff] [blame] | 706 | cifs_in_send_dec(ses->server); |
| 707 | cifs_save_when_sent(midQ); |
Jeff Layton | 72ca545 | 2008-12-01 07:09:36 -0500 | [diff] [blame] | 708 | mutex_unlock(&ses->server->srv_mutex); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 709 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 710 | if (rc < 0) |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 711 | goto out; |
| 712 | |
Jeff Layton | 0ade640 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 713 | if (long_op == CIFS_ASYNC_OP) |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 714 | goto out; |
Jeff Layton | 0ade640 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 715 | |
| 716 | rc = wait_for_response(ses->server, midQ); |
Jeff Layton | 1be912d | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 717 | if (rc != 0) { |
Jeff Layton | 2db7c58 | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 718 | send_nt_cancel(ses->server, in_buf, midQ); |
Jeff Layton | 1be912d | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 719 | spin_lock(&GlobalMid_Lock); |
| 720 | if (midQ->midState == MID_REQUEST_SUBMITTED) { |
| 721 | /* no longer considered to be "in-flight" */ |
| 722 | midQ->callback = DeleteMidQEntry; |
| 723 | spin_unlock(&GlobalMid_Lock); |
| 724 | atomic_dec(&ses->server->inFlight); |
| 725 | wake_up(&ses->server->request_q); |
| 726 | return rc; |
| 727 | } |
| 728 | spin_unlock(&GlobalMid_Lock); |
| 729 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | |
Jeff Layton | 3c1105d | 2011-05-22 07:09:13 -0400 | [diff] [blame] | 731 | rc = cifs_sync_mid_result(midQ, ses->server); |
Jeff Layton | 053d503 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 732 | if (rc != 0) { |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 733 | atomic_dec(&ses->server->inFlight); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 734 | wake_up(&ses->server->request_q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | return rc; |
| 736 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 737 | |
Jeff Layton | 2c8f981 | 2011-05-19 16:22:52 -0400 | [diff] [blame] | 738 | if (!midQ->resp_buf || !out_buf || |
| 739 | midQ->midState != MID_RESPONSE_RECEIVED) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | rc = -EIO; |
Jeff Layton | 2c8f981 | 2011-05-19 16:22:52 -0400 | [diff] [blame] | 741 | cERROR(1, "Bad MID state?"); |
Steve French | 2b2bdfb | 2008-12-11 17:26:54 +0000 | [diff] [blame] | 742 | goto out; |
| 743 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | |
Jeff Layton | 2c8f981 | 2011-05-19 16:22:52 -0400 | [diff] [blame] | 745 | *pbytes_returned = be32_to_cpu(midQ->resp_buf->smb_buf_length); |
| 746 | memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4); |
| 747 | rc = cifs_check_receive(midQ, ses->server, 0); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 748 | out: |
Jeff Layton | ddc8cf8 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 749 | delete_mid(midQ); |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 750 | atomic_dec(&ses->server->inFlight); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 751 | wake_up(&ses->server->request_q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | |
| 753 | return rc; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 754 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 756 | /* We send a LOCKINGX_CANCEL_LOCK to cause the Windows |
| 757 | blocking lock to return. */ |
| 758 | |
| 759 | static int |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 760 | send_lock_cancel(const unsigned int xid, struct cifs_tcon *tcon, |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 761 | struct smb_hdr *in_buf, |
| 762 | struct smb_hdr *out_buf) |
| 763 | { |
| 764 | int bytes_returned; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 765 | struct cifs_ses *ses = tcon->ses; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 766 | LOCK_REQ *pSMB = (LOCK_REQ *)in_buf; |
| 767 | |
| 768 | /* We just modify the current in_buf to change |
| 769 | the type of lock from LOCKING_ANDX_SHARED_LOCK |
| 770 | or LOCKING_ANDX_EXCLUSIVE_LOCK to |
| 771 | LOCKING_ANDX_CANCEL_LOCK. */ |
| 772 | |
| 773 | pSMB->LockType = LOCKING_ANDX_CANCEL_LOCK|LOCKING_ANDX_LARGE_FILES; |
| 774 | pSMB->Timeout = 0; |
| 775 | pSMB->hdr.Mid = GetNextMid(ses->server); |
| 776 | |
| 777 | return SendReceive(xid, ses, in_buf, out_buf, |
Jeff Layton | 7749981 | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 778 | &bytes_returned, 0); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 779 | } |
| 780 | |
| 781 | int |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 782 | SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon, |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 783 | struct smb_hdr *in_buf, struct smb_hdr *out_buf, |
| 784 | int *pbytes_returned) |
| 785 | { |
| 786 | int rc = 0; |
| 787 | int rstart = 0; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 788 | struct mid_q_entry *midQ; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 789 | struct cifs_ses *ses; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 790 | |
| 791 | if (tcon == NULL || tcon->ses == NULL) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 792 | cERROR(1, "Null smb session"); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 793 | return -EIO; |
| 794 | } |
| 795 | ses = tcon->ses; |
| 796 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 797 | if (ses->server == NULL) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 798 | cERROR(1, "Null tcp session"); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 799 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | } |
| 801 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 802 | if (ses->server->tcpStatus == CifsExiting) |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 803 | return -ENOENT; |
| 804 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 805 | /* Ensure that we do not send more than 50 overlapping requests |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 806 | to the same server. We may make this configurable later or |
| 807 | use ses->maxReq */ |
| 808 | |
Steve French | be8e3b0 | 2011-04-29 05:40:20 +0000 | [diff] [blame] | 809 | if (be32_to_cpu(in_buf->smb_buf_length) > CIFSMaxBufSize + |
| 810 | MAX_CIFS_HDR_SIZE - 4) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 811 | cERROR(1, "Illegal length, greater than maximum frame, %d", |
Steve French | be8e3b0 | 2011-04-29 05:40:20 +0000 | [diff] [blame] | 812 | be32_to_cpu(in_buf->smb_buf_length)); |
Volker Lendecke | 6d9c6d5 | 2008-12-08 20:50:24 +0000 | [diff] [blame] | 813 | return -EIO; |
| 814 | } |
| 815 | |
Jeff Layton | c5797a9 | 2011-01-11 07:24:01 -0500 | [diff] [blame] | 816 | rc = wait_for_free_request(ses->server, CIFS_BLOCKING_OP); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 817 | if (rc) |
| 818 | return rc; |
| 819 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 820 | /* make sure that we sign in the same order that we send on this socket |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 821 | and avoid races inside tcp sendmsg code that could cause corruption |
| 822 | of smb data */ |
| 823 | |
Jeff Layton | 72ca545 | 2008-12-01 07:09:36 -0500 | [diff] [blame] | 824 | mutex_lock(&ses->server->srv_mutex); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 825 | |
| 826 | rc = allocate_mid(ses, in_buf, &midQ); |
| 827 | if (rc) { |
Jeff Layton | 72ca545 | 2008-12-01 07:09:36 -0500 | [diff] [blame] | 828 | mutex_unlock(&ses->server->srv_mutex); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 829 | return rc; |
| 830 | } |
| 831 | |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 832 | rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number); |
Volker Lendecke | 829049c | 2008-12-06 16:00:53 +0100 | [diff] [blame] | 833 | if (rc) { |
Jeff Layton | ddc8cf8 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 834 | delete_mid(midQ); |
Volker Lendecke | 829049c | 2008-12-06 16:00:53 +0100 | [diff] [blame] | 835 | mutex_unlock(&ses->server->srv_mutex); |
| 836 | return rc; |
| 837 | } |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 838 | |
| 839 | midQ->midState = MID_REQUEST_SUBMITTED; |
Steve French | 789e666 | 2011-08-09 18:44:44 +0000 | [diff] [blame] | 840 | cifs_in_send_inc(ses->server); |
Steve French | be8e3b0 | 2011-04-29 05:40:20 +0000 | [diff] [blame] | 841 | rc = smb_send(ses->server, in_buf, be32_to_cpu(in_buf->smb_buf_length)); |
Steve French | 789e666 | 2011-08-09 18:44:44 +0000 | [diff] [blame] | 842 | cifs_in_send_dec(ses->server); |
| 843 | cifs_save_when_sent(midQ); |
Jeff Layton | 72ca545 | 2008-12-01 07:09:36 -0500 | [diff] [blame] | 844 | mutex_unlock(&ses->server->srv_mutex); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 845 | |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 846 | if (rc < 0) { |
Jeff Layton | ddc8cf8 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 847 | delete_mid(midQ); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 848 | return rc; |
| 849 | } |
| 850 | |
| 851 | /* Wait for a reply - allow signals to interrupt. */ |
| 852 | rc = wait_event_interruptible(ses->server->response_q, |
Steve French | 79a58d1 | 2007-07-06 22:44:50 +0000 | [diff] [blame] | 853 | (!(midQ->midState == MID_REQUEST_SUBMITTED)) || |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 854 | ((ses->server->tcpStatus != CifsGood) && |
| 855 | (ses->server->tcpStatus != CifsNew))); |
| 856 | |
| 857 | /* Were we interrupted by a signal ? */ |
| 858 | if ((rc == -ERESTARTSYS) && |
| 859 | (midQ->midState == MID_REQUEST_SUBMITTED) && |
| 860 | ((ses->server->tcpStatus == CifsGood) || |
| 861 | (ses->server->tcpStatus == CifsNew))) { |
| 862 | |
| 863 | if (in_buf->Command == SMB_COM_TRANSACTION2) { |
| 864 | /* POSIX lock. We send a NT_CANCEL SMB to cause the |
| 865 | blocking lock to return. */ |
Jeff Layton | 76dcc26 | 2011-01-11 07:24:24 -0500 | [diff] [blame] | 866 | rc = send_nt_cancel(ses->server, in_buf, midQ); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 867 | if (rc) { |
Jeff Layton | ddc8cf8 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 868 | delete_mid(midQ); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 869 | return rc; |
| 870 | } |
| 871 | } else { |
| 872 | /* Windows lock. We send a LOCKINGX_CANCEL_LOCK |
| 873 | to cause the blocking lock to return. */ |
| 874 | |
| 875 | rc = send_lock_cancel(xid, tcon, in_buf, out_buf); |
| 876 | |
| 877 | /* If we get -ENOLCK back the lock may have |
| 878 | already been removed. Don't exit in this case. */ |
| 879 | if (rc && rc != -ENOLCK) { |
Jeff Layton | ddc8cf8 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 880 | delete_mid(midQ); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 881 | return rc; |
| 882 | } |
| 883 | } |
| 884 | |
Jeff Layton | 1be912d | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 885 | rc = wait_for_response(ses->server, midQ); |
| 886 | if (rc) { |
Jeff Layton | 2db7c58 | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 887 | send_nt_cancel(ses->server, in_buf, midQ); |
Jeff Layton | 1be912d | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 888 | spin_lock(&GlobalMid_Lock); |
| 889 | if (midQ->midState == MID_REQUEST_SUBMITTED) { |
| 890 | /* no longer considered to be "in-flight" */ |
| 891 | midQ->callback = DeleteMidQEntry; |
| 892 | spin_unlock(&GlobalMid_Lock); |
| 893 | return rc; |
| 894 | } |
| 895 | spin_unlock(&GlobalMid_Lock); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 896 | } |
Jeff Layton | 1be912d | 2011-01-28 07:08:28 -0500 | [diff] [blame] | 897 | |
| 898 | /* We got the response - restart system call. */ |
| 899 | rstart = 1; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 900 | } |
| 901 | |
Jeff Layton | 3c1105d | 2011-05-22 07:09:13 -0400 | [diff] [blame] | 902 | rc = cifs_sync_mid_result(midQ, ses->server); |
Jeff Layton | 053d503 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 903 | if (rc != 0) |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 904 | return rc; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 905 | |
Volker Lendecke | 17c8bfe | 2008-12-06 16:38:19 +0100 | [diff] [blame] | 906 | /* rcvd frame is ok */ |
Jeff Layton | 2c8f981 | 2011-05-19 16:22:52 -0400 | [diff] [blame] | 907 | if (out_buf == NULL || midQ->midState != MID_RESPONSE_RECEIVED) { |
Volker Lendecke | 17c8bfe | 2008-12-06 16:38:19 +0100 | [diff] [blame] | 908 | rc = -EIO; |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 909 | cERROR(1, "Bad MID state?"); |
Volker Lendecke | 698e96a | 2008-12-06 16:39:31 +0100 | [diff] [blame] | 910 | goto out; |
Volker Lendecke | 17c8bfe | 2008-12-06 16:38:19 +0100 | [diff] [blame] | 911 | } |
| 912 | |
Jeff Layton | 2c8f981 | 2011-05-19 16:22:52 -0400 | [diff] [blame] | 913 | *pbytes_returned = be32_to_cpu(midQ->resp_buf->smb_buf_length); |
| 914 | memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4); |
| 915 | rc = cifs_check_receive(midQ, ses->server, 0); |
Volker Lendecke | 17c8bfe | 2008-12-06 16:38:19 +0100 | [diff] [blame] | 916 | out: |
Jeff Layton | ddc8cf8 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 917 | delete_mid(midQ); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 918 | if (rstart && rc == -EACCES) |
| 919 | return -ERESTARTSYS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | return rc; |
| 921 | } |