4 * Copyright (C) International Business Machines Corp., 2002,2005
5 * Author(s): Steve French (sfrench@us.ibm.com)
7 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published
9 * by the Free Software Foundation; either version 2.1 of the License, or
10 * (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15 * the GNU Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/list.h>
24 #include <linux/wait.h>
25 #include <linux/net.h>
26 #include <linux/delay.h>
27 #include <asm/uaccess.h>
28 #include <asm/processor.h>
29 #include <linux/mempool.h>
32 #include "cifsproto.h"
33 #include "cifs_debug.h"
35 extern mempool_t *cifs_mid_poolp;
36 extern kmem_cache_t *cifs_oplock_cachep;
38 static struct mid_q_entry *
39 AllocMidQEntry(struct smb_hdr *smb_buffer, struct cifsSesInfo *ses)
41 struct mid_q_entry *temp;
44 cERROR(1, ("Null session passed in to AllocMidQEntry "));
47 if (ses->server == NULL) {
48 cERROR(1, ("Null TCP session in AllocMidQEntry"));
52 temp = (struct mid_q_entry *) mempool_alloc(cifs_mid_poolp,SLAB_KERNEL | SLAB_NOFS);
56 memset(temp, 0, sizeof (struct mid_q_entry));
57 temp->mid = smb_buffer->Mid; /* always LE */
58 temp->pid = current->pid;
59 temp->command = smb_buffer->Command;
60 cFYI(1, ("For smb_command %d", temp->command));
61 do_gettimeofday(&temp->when_sent);
66 spin_lock(&GlobalMid_Lock);
67 list_add_tail(&temp->qhead, &ses->server->pending_mid_q);
68 atomic_inc(&midCount);
69 temp->midState = MID_REQUEST_ALLOCATED;
70 spin_unlock(&GlobalMid_Lock);
75 DeleteMidQEntry(struct mid_q_entry *midEntry)
77 spin_lock(&GlobalMid_Lock);
78 midEntry->midState = MID_FREE;
79 list_del(&midEntry->qhead);
80 atomic_dec(&midCount);
81 spin_unlock(&GlobalMid_Lock);
82 if(midEntry->largeBuf)
83 cifs_buf_release(midEntry->resp_buf);
85 cifs_small_buf_release(midEntry->resp_buf);
86 mempool_free(midEntry, cifs_mid_poolp);
89 struct oplock_q_entry *
90 AllocOplockQEntry(struct inode * pinode, __u16 fid, struct cifsTconInfo * tcon)
92 struct oplock_q_entry *temp;
93 if ((pinode== NULL) || (tcon == NULL)) {
94 cERROR(1, ("Null parms passed to AllocOplockQEntry"));
97 temp = (struct oplock_q_entry *) kmem_cache_alloc(cifs_oplock_cachep,
102 temp->pinode = pinode;
105 spin_lock(&GlobalMid_Lock);
106 list_add_tail(&temp->qhead, &GlobalOplock_Q);
107 spin_unlock(&GlobalMid_Lock);
113 void DeleteOplockQEntry(struct oplock_q_entry * oplockEntry)
115 spin_lock(&GlobalMid_Lock);
116 /* should we check if list empty first? */
117 list_del(&oplockEntry->qhead);
118 spin_unlock(&GlobalMid_Lock);
119 kmem_cache_free(cifs_oplock_cachep, oplockEntry);
123 smb_send(struct socket *ssocket, struct smb_hdr *smb_buffer,
124 unsigned int smb_buf_length, struct sockaddr *sin)
128 struct msghdr smb_msg;
130 unsigned len = smb_buf_length + 4;
133 return -ENOTSOCK; /* BB eventually add reconnect code here */
134 iov.iov_base = smb_buffer;
137 smb_msg.msg_name = sin;
138 smb_msg.msg_namelen = sizeof (struct sockaddr);
139 smb_msg.msg_control = NULL;
140 smb_msg.msg_controllen = 0;
141 smb_msg.msg_flags = MSG_DONTWAIT + MSG_NOSIGNAL; /* BB add more flags?*/
143 /* smb header is converted in header_assemble. bcc and rest of SMB word
144 area, and byte area if necessary, is converted to littleendian in
145 cifssmb.c and RFC1001 len is converted to bigendian in smb_send
146 Flags2 is converted in SendReceive */
148 smb_buffer->smb_buf_length = cpu_to_be32(smb_buffer->smb_buf_length);
149 cFYI(1, ("Sending smb of length %d ", smb_buf_length));
150 dump_smb(smb_buffer, len);
153 rc = kernel_sendmsg(ssocket, &smb_msg, &iov, 1, len);
154 if ((rc == -ENOSPC) || (rc == -EAGAIN)) {
158 ("sends on sock %p stuck for 30 seconds",
174 cERROR(1,("Error %d sending data on socket to server.", rc));
182 #ifdef CIFS_EXPERIMENTAL
183 /* BB finish off this function, adding support for writing set of pages as iovec */
184 /* and also adding support for operations that need to parse the response smb */
187 smb_sendv(struct socket *ssocket, struct smb_hdr *smb_buffer,
188 unsigned int smb_buf_length, struct kvec * write_vector /* page list */, struct sockaddr *sin)
192 struct msghdr smb_msg;
193 number_of_pages += 1; /* account for SMB header */
194 struct kvec * piov = kmalloc(number_of_pages * sizeof(struct kvec));
195 unsigned len = smb_buf_length + 4;
198 return -ENOTSOCK; /* BB eventually add reconnect code here */
199 iov.iov_base = smb_buffer;
202 smb_msg.msg_name = sin;
203 smb_msg.msg_namelen = sizeof (struct sockaddr);
204 smb_msg.msg_control = NULL;
205 smb_msg.msg_controllen = 0;
206 smb_msg.msg_flags = MSG_DONTWAIT + MSG_NOSIGNAL; /* BB add more flags?*/
208 /* smb header is converted in header_assemble. bcc and rest of SMB word
209 area, and byte area if necessary, is converted to littleendian in
210 cifssmb.c and RFC1001 len is converted to bigendian in smb_send
211 Flags2 is converted in SendReceive */
213 smb_buffer->smb_buf_length = cpu_to_be32(smb_buffer->smb_buf_length);
214 cFYI(1, ("Sending smb of length %d ", smb_buf_length));
215 dump_smb(smb_buffer, len);
218 rc = kernel_sendmsg(ssocket, &smb_msg, &iov, number_of_pages, len?);
219 if ((rc == -ENOSPC) || (rc == -EAGAIN)) {
223 ("sends on sock %p stuck for 30 seconds",
239 cERROR(1,("Error %d sending data on socket to server.", rc));
249 CIFSSendRcv(const unsigned int xid, struct cifsSesInfo *ses,
250 struct smb_hdr *in_buf, struct kvec * write_vector /* page list */, int *pbytes_returned, const int long_op)
253 unsigned long timeout = 15 * HZ;
254 struct mid_q_entry *midQ = NULL;
257 cERROR(1,("Null smb session"));
260 if(ses->server == NULL) {
261 cERROR(1,("Null tcp session"));
264 if(pbytes_returned == NULL)
267 *pbytes_returned = 0;
271 /* Ensure that we do not send more than 50 overlapping requests
272 to the same server. We may make this configurable later or
275 /* oplock breaks must not be held up */
276 atomic_inc(&ses->server->inFlight);
278 spin_lock(&GlobalMid_Lock);
280 if(atomic_read(&ses->server->inFlight) >= cifs_max_pending){
281 spin_unlock(&GlobalMid_Lock);
282 wait_event(ses->server->request_q,
283 atomic_read(&ses->server->inFlight)
285 spin_lock(&GlobalMid_Lock);
287 if(ses->server->tcpStatus == CifsExiting) {
288 spin_unlock(&GlobalMid_Lock);
292 /* can not count locking commands against total since
293 they are allowed to block on server */
296 /* update # of requests on the wire to server */
297 atomic_inc(&ses->server->inFlight);
299 spin_unlock(&GlobalMid_Lock);
304 /* make sure that we sign in the same order that we send on this socket
305 and avoid races inside tcp sendmsg code that could cause corruption
308 down(&ses->server->tcpSem);
310 if (ses->server->tcpStatus == CifsExiting) {
313 } else if (ses->server->tcpStatus == CifsNeedReconnect) {
314 cFYI(1,("tcp session dead - return to caller to retry"));
317 } else if (ses->status != CifsGood) {
318 /* check if SMB session is bad because we are setting it up */
319 if((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) &&
320 (in_buf->Command != SMB_COM_NEGOTIATE)) {
323 } /* else ok - we are setting up session */
325 midQ = AllocMidQEntry(in_buf, ses);
327 up(&ses->server->tcpSem);
328 /* If not lock req, update # of requests on wire to server */
330 atomic_dec(&ses->server->inFlight);
331 wake_up(&ses->server->request_q);
336 if (in_buf->smb_buf_length > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
337 up(&ses->server->tcpSem);
339 ("Illegal length, greater than maximum frame, %d ",
340 in_buf->smb_buf_length));
341 DeleteMidQEntry(midQ);
342 /* If not lock req, update # of requests on wire to server */
344 atomic_dec(&ses->server->inFlight);
345 wake_up(&ses->server->request_q);
350 /* BB can we sign efficiently in this path? */
351 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
353 midQ->midState = MID_REQUEST_SUBMITTED;
354 /* rc = smb_sendv(ses->server->ssocket, in_buf, in_buf->smb_buf_length, piovec,
355 (struct sockaddr *) &(ses->server->addr.sockAddr));*/
357 DeleteMidQEntry(midQ);
358 up(&ses->server->tcpSem);
359 /* If not lock req, update # of requests on wire to server */
361 atomic_dec(&ses->server->inFlight);
362 wake_up(&ses->server->request_q);
366 up(&ses->server->tcpSem);
369 DeleteMidQEntry(midQ);
372 atomic_dec(&ses->server->inFlight);
373 wake_up(&ses->server->request_q);
380 #endif /* CIFS_EXPERIMENTAL */
383 SendReceive(const unsigned int xid, struct cifsSesInfo *ses,
384 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
385 int *pbytes_returned, const int long_op)
388 unsigned int receive_len;
389 unsigned long timeout;
390 struct mid_q_entry *midQ;
393 cERROR(1,("Null smb session"));
396 if(ses->server == NULL) {
397 cERROR(1,("Null tcp session"));
401 /* Ensure that we do not send more than 50 overlapping requests
402 to the same server. We may make this configurable later or
405 /* oplock breaks must not be held up */
406 atomic_inc(&ses->server->inFlight);
408 spin_lock(&GlobalMid_Lock);
410 if(atomic_read(&ses->server->inFlight) >= cifs_max_pending){
411 spin_unlock(&GlobalMid_Lock);
412 wait_event(ses->server->request_q,
413 atomic_read(&ses->server->inFlight)
415 spin_lock(&GlobalMid_Lock);
417 if(ses->server->tcpStatus == CifsExiting) {
418 spin_unlock(&GlobalMid_Lock);
422 /* can not count locking commands against total since
423 they are allowed to block on server */
426 /* update # of requests on the wire to server */
427 atomic_inc(&ses->server->inFlight);
429 spin_unlock(&GlobalMid_Lock);
434 /* make sure that we sign in the same order that we send on this socket
435 and avoid races inside tcp sendmsg code that could cause corruption
438 down(&ses->server->tcpSem);
440 if (ses->server->tcpStatus == CifsExiting) {
443 } else if (ses->server->tcpStatus == CifsNeedReconnect) {
444 cFYI(1,("tcp session dead - return to caller to retry"));
447 } else if (ses->status != CifsGood) {
448 /* check if SMB session is bad because we are setting it up */
449 if((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) &&
450 (in_buf->Command != SMB_COM_NEGOTIATE)) {
453 } /* else ok - we are setting up session */
455 midQ = AllocMidQEntry(in_buf, ses);
457 up(&ses->server->tcpSem);
458 /* If not lock req, update # of requests on wire to server */
460 atomic_dec(&ses->server->inFlight);
461 wake_up(&ses->server->request_q);
466 if (in_buf->smb_buf_length > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
467 up(&ses->server->tcpSem);
469 ("Illegal length, greater than maximum frame, %d ",
470 in_buf->smb_buf_length));
471 DeleteMidQEntry(midQ);
472 /* If not lock req, update # of requests on wire to server */
474 atomic_dec(&ses->server->inFlight);
475 wake_up(&ses->server->request_q);
480 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
482 midQ->midState = MID_REQUEST_SUBMITTED;
483 rc = smb_send(ses->server->ssocket, in_buf, in_buf->smb_buf_length,
484 (struct sockaddr *) &(ses->server->addr.sockAddr));
486 DeleteMidQEntry(midQ);
487 up(&ses->server->tcpSem);
488 /* If not lock req, update # of requests on wire to server */
490 atomic_dec(&ses->server->inFlight);
491 wake_up(&ses->server->request_q);
495 up(&ses->server->tcpSem);
497 goto cifs_no_response_exit;
498 else if (long_op == 2) /* writes past end of file can take looooong time */
500 else if (long_op == 1)
501 timeout = 45 * HZ; /* should be greater than
502 servers oplock break timeout (about 43 seconds) */
503 else if (long_op > 2) {
504 timeout = MAX_SCHEDULE_TIMEOUT;
507 /* wait for 15 seconds or until woken up due to response arriving or
508 due to last connection to this server being unmounted */
509 if (signal_pending(current)) {
510 /* if signal pending do not hold up user for full smb timeout
511 but we still give response a change to complete */
515 /* No user interrupts in wait - wreaks havoc with performance */
516 if(timeout != MAX_SCHEDULE_TIMEOUT) {
518 wait_event(ses->server->response_q,
519 (!(midQ->midState & MID_REQUEST_SUBMITTED)) ||
520 time_after(jiffies, timeout) ||
521 ((ses->server->tcpStatus != CifsGood) &&
522 (ses->server->tcpStatus != CifsNew)));
524 wait_event(ses->server->response_q,
525 (!(midQ->midState & MID_REQUEST_SUBMITTED)) ||
526 ((ses->server->tcpStatus != CifsGood) &&
527 (ses->server->tcpStatus != CifsNew)));
530 spin_lock(&GlobalMid_Lock);
531 if (midQ->resp_buf) {
532 spin_unlock(&GlobalMid_Lock);
533 receive_len = be32_to_cpu(*(__be32 *)midQ->resp_buf);
535 cERROR(1,("No response buffer"));
536 if(midQ->midState == MID_REQUEST_SUBMITTED) {
537 if(ses->server->tcpStatus == CifsExiting)
540 ses->server->tcpStatus = CifsNeedReconnect;
541 midQ->midState = MID_RETRY_NEEDED;
545 if (rc != -EHOSTDOWN) {
546 if(midQ->midState == MID_RETRY_NEEDED) {
548 cFYI(1,("marking request for retry"));
553 spin_unlock(&GlobalMid_Lock);
554 DeleteMidQEntry(midQ);
555 /* If not lock req, update # of requests on wire to server */
557 atomic_dec(&ses->server->inFlight);
558 wake_up(&ses->server->request_q);
563 if (receive_len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE) {
564 cERROR(1, ("Frame too large received. Length: %d Xid: %d",
567 } else { /* rcvd frame is ok */
569 if (midQ->resp_buf && out_buf
570 && (midQ->midState == MID_RESPONSE_RECEIVED)) {
571 out_buf->smb_buf_length = receive_len;
572 memcpy((char *)out_buf + 4,
573 (char *)midQ->resp_buf + 4,
576 dump_smb(out_buf, 92);
577 /* convert the length into a more usable form */
578 if((receive_len > 24) &&
579 (ses->server->secMode & (SECMODE_SIGN_REQUIRED |
580 SECMODE_SIGN_ENABLED))) {
581 rc = cifs_verify_signature(out_buf,
582 ses->server->mac_signing_key,
583 midQ->sequence_number+1);
585 cERROR(1,("Unexpected packet signature received from server"));
586 /* BB FIXME - add code to kill session here */
590 *pbytes_returned = out_buf->smb_buf_length;
592 /* BB special case reconnect tid and uid here? */
593 rc = map_smb_to_linux_error(out_buf);
595 /* convert ByteCount if necessary */
597 sizeof (struct smb_hdr) -
598 4 /* do not count RFC1001 header */ +
599 (2 * out_buf->WordCount) + 2 /* bcc */ )
600 BCC(out_buf) = le16_to_cpu(BCC(out_buf));
603 cFYI(1,("Bad MID state? "));
606 cifs_no_response_exit:
607 DeleteMidQEntry(midQ);
610 atomic_dec(&ses->server->inFlight);
611 wake_up(&ses->server->request_q);
617 up(&ses->server->tcpSem);
618 /* If not lock req, update # of requests on wire to server */
620 atomic_dec(&ses->server->inFlight);
621 wake_up(&ses->server->request_q);